7d062294aa5b7c7fbb3ad78049d475a92bbe98dc
[binutils-gdb.git] / gdb / ada-lang.c
1 /* Ada language support routines for GDB, the GNU debugger.
2
3 Copyright (C) 1992-2020 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20
21 #include "defs.h"
22 #include <ctype.h>
23 #include "gdb_regex.h"
24 #include "frame.h"
25 #include "symtab.h"
26 #include "gdbtypes.h"
27 #include "gdbcmd.h"
28 #include "expression.h"
29 #include "parser-defs.h"
30 #include "language.h"
31 #include "varobj.h"
32 #include "inferior.h"
33 #include "symfile.h"
34 #include "objfiles.h"
35 #include "breakpoint.h"
36 #include "gdbcore.h"
37 #include "hashtab.h"
38 #include "gdb_obstack.h"
39 #include "ada-lang.h"
40 #include "completer.h"
41 #include "ui-out.h"
42 #include "block.h"
43 #include "infcall.h"
44 #include "annotate.h"
45 #include "valprint.h"
46 #include "source.h"
47 #include "observable.h"
48 #include "stack.h"
49 #include "typeprint.h"
50 #include "namespace.h"
51 #include "cli/cli-style.h"
52
53 #include "value.h"
54 #include "mi/mi-common.h"
55 #include "arch-utils.h"
56 #include "cli/cli-utils.h"
57 #include "gdbsupport/function-view.h"
58 #include "gdbsupport/byte-vector.h"
59 #include <algorithm>
60
61 /* Define whether or not the C operator '/' truncates towards zero for
62 differently signed operands (truncation direction is undefined in C).
63 Copied from valarith.c. */
64
65 #ifndef TRUNCATION_TOWARDS_ZERO
66 #define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2)
67 #endif
68
69 static struct type *desc_base_type (struct type *);
70
71 static struct type *desc_bounds_type (struct type *);
72
73 static struct value *desc_bounds (struct value *);
74
75 static int fat_pntr_bounds_bitpos (struct type *);
76
77 static int fat_pntr_bounds_bitsize (struct type *);
78
79 static struct type *desc_data_target_type (struct type *);
80
81 static struct value *desc_data (struct value *);
82
83 static int fat_pntr_data_bitpos (struct type *);
84
85 static int fat_pntr_data_bitsize (struct type *);
86
87 static struct value *desc_one_bound (struct value *, int, int);
88
89 static int desc_bound_bitpos (struct type *, int, int);
90
91 static int desc_bound_bitsize (struct type *, int, int);
92
93 static struct type *desc_index_type (struct type *, int);
94
95 static int desc_arity (struct type *);
96
97 static int ada_type_match (struct type *, struct type *, int);
98
99 static int ada_args_match (struct symbol *, struct value **, int);
100
101 static struct value *make_array_descriptor (struct type *, struct value *);
102
103 static void ada_add_block_symbols (struct obstack *,
104 const struct block *,
105 const lookup_name_info &lookup_name,
106 domain_enum, struct objfile *);
107
108 static void ada_add_all_symbols (struct obstack *, const struct block *,
109 const lookup_name_info &lookup_name,
110 domain_enum, int, int *);
111
112 static int is_nonfunction (struct block_symbol *, int);
113
114 static void add_defn_to_vec (struct obstack *, struct symbol *,
115 const struct block *);
116
117 static int num_defns_collected (struct obstack *);
118
119 static struct block_symbol *defns_collected (struct obstack *, int);
120
121 static struct value *resolve_subexp (expression_up *, int *, int,
122 struct type *, int,
123 innermost_block_tracker *);
124
125 static void replace_operator_with_call (expression_up *, int, int, int,
126 struct symbol *, const struct block *);
127
128 static int possible_user_operator_p (enum exp_opcode, struct value **);
129
130 static const char *ada_decoded_op_name (enum exp_opcode);
131
132 static int numeric_type_p (struct type *);
133
134 static int integer_type_p (struct type *);
135
136 static int scalar_type_p (struct type *);
137
138 static int discrete_type_p (struct type *);
139
140 static struct type *ada_lookup_struct_elt_type (struct type *, const char *,
141 int, int);
142
143 static struct value *evaluate_subexp_type (struct expression *, int *);
144
145 static struct type *ada_find_parallel_type_with_name (struct type *,
146 const char *);
147
148 static int is_dynamic_field (struct type *, int);
149
150 static struct type *to_fixed_variant_branch_type (struct type *,
151 const gdb_byte *,
152 CORE_ADDR, struct value *);
153
154 static struct type *to_fixed_array_type (struct type *, struct value *, int);
155
156 static struct type *to_fixed_range_type (struct type *, struct value *);
157
158 static struct type *to_static_fixed_type (struct type *);
159 static struct type *static_unwrap_type (struct type *type);
160
161 static struct value *unwrap_value (struct value *);
162
163 static struct type *constrained_packed_array_type (struct type *, long *);
164
165 static struct type *decode_constrained_packed_array_type (struct type *);
166
167 static long decode_packed_array_bitsize (struct type *);
168
169 static struct value *decode_constrained_packed_array (struct value *);
170
171 static int ada_is_unconstrained_packed_array_type (struct type *);
172
173 static struct value *value_subscript_packed (struct value *, int,
174 struct value **);
175
176 static struct value *coerce_unspec_val_to_type (struct value *,
177 struct type *);
178
179 static int lesseq_defined_than (struct symbol *, struct symbol *);
180
181 static int equiv_types (struct type *, struct type *);
182
183 static int is_name_suffix (const char *);
184
185 static int advance_wild_match (const char **, const char *, char);
186
187 static bool wild_match (const char *name, const char *patn);
188
189 static struct value *ada_coerce_ref (struct value *);
190
191 static LONGEST pos_atr (struct value *);
192
193 static struct value *value_pos_atr (struct type *, struct value *);
194
195 static struct value *val_atr (struct type *, LONGEST);
196
197 static struct value *value_val_atr (struct type *, struct value *);
198
199 static struct symbol *standard_lookup (const char *, const struct block *,
200 domain_enum);
201
202 static struct value *ada_search_struct_field (const char *, struct value *, int,
203 struct type *);
204
205 static int find_struct_field (const char *, struct type *, int,
206 struct type **, int *, int *, int *, int *);
207
208 static int ada_resolve_function (struct block_symbol *, int,
209 struct value **, int, const char *,
210 struct type *, int);
211
212 static int ada_is_direct_array_type (struct type *);
213
214 static struct value *ada_index_struct_field (int, struct value *, int,
215 struct type *);
216
217 static struct value *assign_aggregate (struct value *, struct value *,
218 struct expression *,
219 int *, enum noside);
220
221 static void aggregate_assign_from_choices (struct value *, struct value *,
222 struct expression *,
223 int *, LONGEST *, int *,
224 int, LONGEST, LONGEST);
225
226 static void aggregate_assign_positional (struct value *, struct value *,
227 struct expression *,
228 int *, LONGEST *, int *, int,
229 LONGEST, LONGEST);
230
231
232 static void aggregate_assign_others (struct value *, struct value *,
233 struct expression *,
234 int *, LONGEST *, int, LONGEST, LONGEST);
235
236
237 static void add_component_interval (LONGEST, LONGEST, LONGEST *, int *, int);
238
239
240 static struct value *ada_evaluate_subexp (struct type *, struct expression *,
241 int *, enum noside);
242
243 static void ada_forward_operator_length (struct expression *, int, int *,
244 int *);
245
246 static struct type *ada_find_any_type (const char *name);
247
248 static symbol_name_matcher_ftype *ada_get_symbol_name_matcher
249 (const lookup_name_info &lookup_name);
250
251 \f
252
253 /* The result of a symbol lookup to be stored in our symbol cache. */
254
255 struct cache_entry
256 {
257 /* The name used to perform the lookup. */
258 const char *name;
259 /* The namespace used during the lookup. */
260 domain_enum domain;
261 /* The symbol returned by the lookup, or NULL if no matching symbol
262 was found. */
263 struct symbol *sym;
264 /* The block where the symbol was found, or NULL if no matching
265 symbol was found. */
266 const struct block *block;
267 /* A pointer to the next entry with the same hash. */
268 struct cache_entry *next;
269 };
270
271 /* The Ada symbol cache, used to store the result of Ada-mode symbol
272 lookups in the course of executing the user's commands.
273
274 The cache is implemented using a simple, fixed-sized hash.
275 The size is fixed on the grounds that there are not likely to be
276 all that many symbols looked up during any given session, regardless
277 of the size of the symbol table. If we decide to go to a resizable
278 table, let's just use the stuff from libiberty instead. */
279
280 #define HASH_SIZE 1009
281
282 struct ada_symbol_cache
283 {
284 /* An obstack used to store the entries in our cache. */
285 struct obstack cache_space;
286
287 /* The root of the hash table used to implement our symbol cache. */
288 struct cache_entry *root[HASH_SIZE];
289 };
290
291 static void ada_free_symbol_cache (struct ada_symbol_cache *sym_cache);
292
293 /* Maximum-sized dynamic type. */
294 static unsigned int varsize_limit;
295
296 static const char ada_completer_word_break_characters[] =
297 #ifdef VMS
298 " \t\n!@#%^&*()+=|~`}{[]\";:?/,-";
299 #else
300 " \t\n!@#$%^&*()+=|~`}{[]\";:?/,-";
301 #endif
302
303 /* The name of the symbol to use to get the name of the main subprogram. */
304 static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[]
305 = "__gnat_ada_main_program_name";
306
307 /* Limit on the number of warnings to raise per expression evaluation. */
308 static int warning_limit = 2;
309
310 /* Number of warning messages issued; reset to 0 by cleanups after
311 expression evaluation. */
312 static int warnings_issued = 0;
313
314 static const char * const known_runtime_file_name_patterns[] = {
315 ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL
316 };
317
318 static const char * const known_auxiliary_function_name_patterns[] = {
319 ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL
320 };
321
322 /* Maintenance-related settings for this module. */
323
324 static struct cmd_list_element *maint_set_ada_cmdlist;
325 static struct cmd_list_element *maint_show_ada_cmdlist;
326
327 /* The "maintenance ada set/show ignore-descriptive-type" value. */
328
329 static bool ada_ignore_descriptive_types_p = false;
330
331 /* Inferior-specific data. */
332
333 /* Per-inferior data for this module. */
334
335 struct ada_inferior_data
336 {
337 /* The ada__tags__type_specific_data type, which is used when decoding
338 tagged types. With older versions of GNAT, this type was directly
339 accessible through a component ("tsd") in the object tag. But this
340 is no longer the case, so we cache it for each inferior. */
341 struct type *tsd_type = nullptr;
342
343 /* The exception_support_info data. This data is used to determine
344 how to implement support for Ada exception catchpoints in a given
345 inferior. */
346 const struct exception_support_info *exception_info = nullptr;
347 };
348
349 /* Our key to this module's inferior data. */
350 static const struct inferior_key<ada_inferior_data> ada_inferior_data;
351
352 /* Return our inferior data for the given inferior (INF).
353
354 This function always returns a valid pointer to an allocated
355 ada_inferior_data structure. If INF's inferior data has not
356 been previously set, this functions creates a new one with all
357 fields set to zero, sets INF's inferior to it, and then returns
358 a pointer to that newly allocated ada_inferior_data. */
359
360 static struct ada_inferior_data *
361 get_ada_inferior_data (struct inferior *inf)
362 {
363 struct ada_inferior_data *data;
364
365 data = ada_inferior_data.get (inf);
366 if (data == NULL)
367 data = ada_inferior_data.emplace (inf);
368
369 return data;
370 }
371
372 /* Perform all necessary cleanups regarding our module's inferior data
373 that is required after the inferior INF just exited. */
374
375 static void
376 ada_inferior_exit (struct inferior *inf)
377 {
378 ada_inferior_data.clear (inf);
379 }
380
381
382 /* program-space-specific data. */
383
384 /* This module's per-program-space data. */
385 struct ada_pspace_data
386 {
387 ~ada_pspace_data ()
388 {
389 if (sym_cache != NULL)
390 ada_free_symbol_cache (sym_cache);
391 }
392
393 /* The Ada symbol cache. */
394 struct ada_symbol_cache *sym_cache = nullptr;
395 };
396
397 /* Key to our per-program-space data. */
398 static const struct program_space_key<ada_pspace_data> ada_pspace_data_handle;
399
400 /* Return this module's data for the given program space (PSPACE).
401 If not is found, add a zero'ed one now.
402
403 This function always returns a valid object. */
404
405 static struct ada_pspace_data *
406 get_ada_pspace_data (struct program_space *pspace)
407 {
408 struct ada_pspace_data *data;
409
410 data = ada_pspace_data_handle.get (pspace);
411 if (data == NULL)
412 data = ada_pspace_data_handle.emplace (pspace);
413
414 return data;
415 }
416
417 /* Utilities */
418
419 /* If TYPE is a TYPE_CODE_TYPEDEF type, return the target type after
420 all typedef layers have been peeled. Otherwise, return TYPE.
421
422 Normally, we really expect a typedef type to only have 1 typedef layer.
423 In other words, we really expect the target type of a typedef type to be
424 a non-typedef type. This is particularly true for Ada units, because
425 the language does not have a typedef vs not-typedef distinction.
426 In that respect, the Ada compiler has been trying to eliminate as many
427 typedef definitions in the debugging information, since they generally
428 do not bring any extra information (we still use typedef under certain
429 circumstances related mostly to the GNAT encoding).
430
431 Unfortunately, we have seen situations where the debugging information
432 generated by the compiler leads to such multiple typedef layers. For
433 instance, consider the following example with stabs:
434
435 .stabs "pck__float_array___XUP:Tt(0,46)=s16P_ARRAY:(0,47)=[...]"[...]
436 .stabs "pck__float_array___XUP:t(0,36)=(0,46)",128,0,6,0
437
438 This is an error in the debugging information which causes type
439 pck__float_array___XUP to be defined twice, and the second time,
440 it is defined as a typedef of a typedef.
441
442 This is on the fringe of legality as far as debugging information is
443 concerned, and certainly unexpected. But it is easy to handle these
444 situations correctly, so we can afford to be lenient in this case. */
445
446 static struct type *
447 ada_typedef_target_type (struct type *type)
448 {
449 while (type->code () == TYPE_CODE_TYPEDEF)
450 type = TYPE_TARGET_TYPE (type);
451 return type;
452 }
453
454 /* Given DECODED_NAME a string holding a symbol name in its
455 decoded form (ie using the Ada dotted notation), returns
456 its unqualified name. */
457
458 static const char *
459 ada_unqualified_name (const char *decoded_name)
460 {
461 const char *result;
462
463 /* If the decoded name starts with '<', it means that the encoded
464 name does not follow standard naming conventions, and thus that
465 it is not your typical Ada symbol name. Trying to unqualify it
466 is therefore pointless and possibly erroneous. */
467 if (decoded_name[0] == '<')
468 return decoded_name;
469
470 result = strrchr (decoded_name, '.');
471 if (result != NULL)
472 result++; /* Skip the dot... */
473 else
474 result = decoded_name;
475
476 return result;
477 }
478
479 /* Return a string starting with '<', followed by STR, and '>'. */
480
481 static std::string
482 add_angle_brackets (const char *str)
483 {
484 return string_printf ("<%s>", str);
485 }
486
487 /* Assuming V points to an array of S objects, make sure that it contains at
488 least M objects, updating V and S as necessary. */
489
490 #define GROW_VECT(v, s, m) \
491 if ((s) < (m)) (v) = (char *) grow_vect (v, &(s), m, sizeof *(v));
492
493 /* Assuming VECT points to an array of *SIZE objects of size
494 ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects,
495 updating *SIZE as necessary and returning the (new) array. */
496
497 static void *
498 grow_vect (void *vect, size_t *size, size_t min_size, int element_size)
499 {
500 if (*size < min_size)
501 {
502 *size *= 2;
503 if (*size < min_size)
504 *size = min_size;
505 vect = xrealloc (vect, *size * element_size);
506 }
507 return vect;
508 }
509
510 /* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing
511 suffix of FIELD_NAME beginning "___". */
512
513 static int
514 field_name_match (const char *field_name, const char *target)
515 {
516 int len = strlen (target);
517
518 return
519 (strncmp (field_name, target, len) == 0
520 && (field_name[len] == '\0'
521 || (startswith (field_name + len, "___")
522 && strcmp (field_name + strlen (field_name) - 6,
523 "___XVN") != 0)));
524 }
525
526
527 /* Assuming TYPE is a TYPE_CODE_STRUCT or a TYPE_CODE_TYPDEF to
528 a TYPE_CODE_STRUCT, find the field whose name matches FIELD_NAME,
529 and return its index. This function also handles fields whose name
530 have ___ suffixes because the compiler sometimes alters their name
531 by adding such a suffix to represent fields with certain constraints.
532 If the field could not be found, return a negative number if
533 MAYBE_MISSING is set. Otherwise raise an error. */
534
535 int
536 ada_get_field_index (const struct type *type, const char *field_name,
537 int maybe_missing)
538 {
539 int fieldno;
540 struct type *struct_type = check_typedef ((struct type *) type);
541
542 for (fieldno = 0; fieldno < struct_type->num_fields (); fieldno++)
543 if (field_name_match (TYPE_FIELD_NAME (struct_type, fieldno), field_name))
544 return fieldno;
545
546 if (!maybe_missing)
547 error (_("Unable to find field %s in struct %s. Aborting"),
548 field_name, struct_type->name ());
549
550 return -1;
551 }
552
553 /* The length of the prefix of NAME prior to any "___" suffix. */
554
555 int
556 ada_name_prefix_len (const char *name)
557 {
558 if (name == NULL)
559 return 0;
560 else
561 {
562 const char *p = strstr (name, "___");
563
564 if (p == NULL)
565 return strlen (name);
566 else
567 return p - name;
568 }
569 }
570
571 /* Return non-zero if SUFFIX is a suffix of STR.
572 Return zero if STR is null. */
573
574 static int
575 is_suffix (const char *str, const char *suffix)
576 {
577 int len1, len2;
578
579 if (str == NULL)
580 return 0;
581 len1 = strlen (str);
582 len2 = strlen (suffix);
583 return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0);
584 }
585
586 /* The contents of value VAL, treated as a value of type TYPE. The
587 result is an lval in memory if VAL is. */
588
589 static struct value *
590 coerce_unspec_val_to_type (struct value *val, struct type *type)
591 {
592 type = ada_check_typedef (type);
593 if (value_type (val) == type)
594 return val;
595 else
596 {
597 struct value *result;
598
599 /* Make sure that the object size is not unreasonable before
600 trying to allocate some memory for it. */
601 ada_ensure_varsize_limit (type);
602
603 if (value_lazy (val)
604 || TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val)))
605 result = allocate_value_lazy (type);
606 else
607 {
608 result = allocate_value (type);
609 value_contents_copy_raw (result, 0, val, 0, TYPE_LENGTH (type));
610 }
611 set_value_component_location (result, val);
612 set_value_bitsize (result, value_bitsize (val));
613 set_value_bitpos (result, value_bitpos (val));
614 if (VALUE_LVAL (result) == lval_memory)
615 set_value_address (result, value_address (val));
616 return result;
617 }
618 }
619
620 static const gdb_byte *
621 cond_offset_host (const gdb_byte *valaddr, long offset)
622 {
623 if (valaddr == NULL)
624 return NULL;
625 else
626 return valaddr + offset;
627 }
628
629 static CORE_ADDR
630 cond_offset_target (CORE_ADDR address, long offset)
631 {
632 if (address == 0)
633 return 0;
634 else
635 return address + offset;
636 }
637
638 /* Issue a warning (as for the definition of warning in utils.c, but
639 with exactly one argument rather than ...), unless the limit on the
640 number of warnings has passed during the evaluation of the current
641 expression. */
642
643 /* FIXME: cagney/2004-10-10: This function is mimicking the behavior
644 provided by "complaint". */
645 static void lim_warning (const char *format, ...) ATTRIBUTE_PRINTF (1, 2);
646
647 static void
648 lim_warning (const char *format, ...)
649 {
650 va_list args;
651
652 va_start (args, format);
653 warnings_issued += 1;
654 if (warnings_issued <= warning_limit)
655 vwarning (format, args);
656
657 va_end (args);
658 }
659
660 /* Issue an error if the size of an object of type T is unreasonable,
661 i.e. if it would be a bad idea to allocate a value of this type in
662 GDB. */
663
664 void
665 ada_ensure_varsize_limit (const struct type *type)
666 {
667 if (TYPE_LENGTH (type) > varsize_limit)
668 error (_("object size is larger than varsize-limit"));
669 }
670
671 /* Maximum value of a SIZE-byte signed integer type. */
672 static LONGEST
673 max_of_size (int size)
674 {
675 LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2);
676
677 return top_bit | (top_bit - 1);
678 }
679
680 /* Minimum value of a SIZE-byte signed integer type. */
681 static LONGEST
682 min_of_size (int size)
683 {
684 return -max_of_size (size) - 1;
685 }
686
687 /* Maximum value of a SIZE-byte unsigned integer type. */
688 static ULONGEST
689 umax_of_size (int size)
690 {
691 ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1);
692
693 return top_bit | (top_bit - 1);
694 }
695
696 /* Maximum value of integral type T, as a signed quantity. */
697 static LONGEST
698 max_of_type (struct type *t)
699 {
700 if (t->is_unsigned ())
701 return (LONGEST) umax_of_size (TYPE_LENGTH (t));
702 else
703 return max_of_size (TYPE_LENGTH (t));
704 }
705
706 /* Minimum value of integral type T, as a signed quantity. */
707 static LONGEST
708 min_of_type (struct type *t)
709 {
710 if (t->is_unsigned ())
711 return 0;
712 else
713 return min_of_size (TYPE_LENGTH (t));
714 }
715
716 /* The largest value in the domain of TYPE, a discrete type, as an integer. */
717 LONGEST
718 ada_discrete_type_high_bound (struct type *type)
719 {
720 type = resolve_dynamic_type (type, {}, 0);
721 switch (type->code ())
722 {
723 case TYPE_CODE_RANGE:
724 {
725 const dynamic_prop &high = type->bounds ()->high;
726
727 if (high.kind () == PROP_CONST)
728 return high.const_val ();
729 else
730 {
731 gdb_assert (high.kind () == PROP_UNDEFINED);
732
733 /* This happens when trying to evaluate a type's dynamic bound
734 without a live target. There is nothing relevant for us to
735 return here, so return 0. */
736 return 0;
737 }
738 }
739 case TYPE_CODE_ENUM:
740 return TYPE_FIELD_ENUMVAL (type, type->num_fields () - 1);
741 case TYPE_CODE_BOOL:
742 return 1;
743 case TYPE_CODE_CHAR:
744 case TYPE_CODE_INT:
745 return max_of_type (type);
746 default:
747 error (_("Unexpected type in ada_discrete_type_high_bound."));
748 }
749 }
750
751 /* The smallest value in the domain of TYPE, a discrete type, as an integer. */
752 LONGEST
753 ada_discrete_type_low_bound (struct type *type)
754 {
755 type = resolve_dynamic_type (type, {}, 0);
756 switch (type->code ())
757 {
758 case TYPE_CODE_RANGE:
759 {
760 const dynamic_prop &low = type->bounds ()->low;
761
762 if (low.kind () == PROP_CONST)
763 return low.const_val ();
764 else
765 {
766 gdb_assert (low.kind () == PROP_UNDEFINED);
767
768 /* This happens when trying to evaluate a type's dynamic bound
769 without a live target. There is nothing relevant for us to
770 return here, so return 0. */
771 return 0;
772 }
773 }
774 case TYPE_CODE_ENUM:
775 return TYPE_FIELD_ENUMVAL (type, 0);
776 case TYPE_CODE_BOOL:
777 return 0;
778 case TYPE_CODE_CHAR:
779 case TYPE_CODE_INT:
780 return min_of_type (type);
781 default:
782 error (_("Unexpected type in ada_discrete_type_low_bound."));
783 }
784 }
785
786 /* The identity on non-range types. For range types, the underlying
787 non-range scalar type. */
788
789 static struct type *
790 get_base_type (struct type *type)
791 {
792 while (type != NULL && type->code () == TYPE_CODE_RANGE)
793 {
794 if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL)
795 return type;
796 type = TYPE_TARGET_TYPE (type);
797 }
798 return type;
799 }
800
801 /* Return a decoded version of the given VALUE. This means returning
802 a value whose type is obtained by applying all the GNAT-specific
803 encodings, making the resulting type a static but standard description
804 of the initial type. */
805
806 struct value *
807 ada_get_decoded_value (struct value *value)
808 {
809 struct type *type = ada_check_typedef (value_type (value));
810
811 if (ada_is_array_descriptor_type (type)
812 || (ada_is_constrained_packed_array_type (type)
813 && type->code () != TYPE_CODE_PTR))
814 {
815 if (type->code () == TYPE_CODE_TYPEDEF) /* array access type. */
816 value = ada_coerce_to_simple_array_ptr (value);
817 else
818 value = ada_coerce_to_simple_array (value);
819 }
820 else
821 value = ada_to_fixed_value (value);
822
823 return value;
824 }
825
826 /* Same as ada_get_decoded_value, but with the given TYPE.
827 Because there is no associated actual value for this type,
828 the resulting type might be a best-effort approximation in
829 the case of dynamic types. */
830
831 struct type *
832 ada_get_decoded_type (struct type *type)
833 {
834 type = to_static_fixed_type (type);
835 if (ada_is_constrained_packed_array_type (type))
836 type = ada_coerce_to_simple_array_type (type);
837 return type;
838 }
839
840 \f
841
842 /* Language Selection */
843
844 /* If the main program is in Ada, return language_ada, otherwise return LANG
845 (the main program is in Ada iif the adainit symbol is found). */
846
847 static enum language
848 ada_update_initial_language (enum language lang)
849 {
850 if (lookup_minimal_symbol ("adainit", NULL, NULL).minsym != NULL)
851 return language_ada;
852
853 return lang;
854 }
855
856 /* If the main procedure is written in Ada, then return its name.
857 The result is good until the next call. Return NULL if the main
858 procedure doesn't appear to be in Ada. */
859
860 char *
861 ada_main_name (void)
862 {
863 struct bound_minimal_symbol msym;
864 static gdb::unique_xmalloc_ptr<char> main_program_name;
865
866 /* For Ada, the name of the main procedure is stored in a specific
867 string constant, generated by the binder. Look for that symbol,
868 extract its address, and then read that string. If we didn't find
869 that string, then most probably the main procedure is not written
870 in Ada. */
871 msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL);
872
873 if (msym.minsym != NULL)
874 {
875 CORE_ADDR main_program_name_addr = BMSYMBOL_VALUE_ADDRESS (msym);
876 if (main_program_name_addr == 0)
877 error (_("Invalid address for Ada main program name."));
878
879 main_program_name = target_read_string (main_program_name_addr, 1024);
880 return main_program_name.get ();
881 }
882
883 /* The main procedure doesn't seem to be in Ada. */
884 return NULL;
885 }
886 \f
887 /* Symbols */
888
889 /* Table of Ada operators and their GNAT-encoded names. Last entry is pair
890 of NULLs. */
891
892 const struct ada_opname_map ada_opname_table[] = {
893 {"Oadd", "\"+\"", BINOP_ADD},
894 {"Osubtract", "\"-\"", BINOP_SUB},
895 {"Omultiply", "\"*\"", BINOP_MUL},
896 {"Odivide", "\"/\"", BINOP_DIV},
897 {"Omod", "\"mod\"", BINOP_MOD},
898 {"Orem", "\"rem\"", BINOP_REM},
899 {"Oexpon", "\"**\"", BINOP_EXP},
900 {"Olt", "\"<\"", BINOP_LESS},
901 {"Ole", "\"<=\"", BINOP_LEQ},
902 {"Ogt", "\">\"", BINOP_GTR},
903 {"Oge", "\">=\"", BINOP_GEQ},
904 {"Oeq", "\"=\"", BINOP_EQUAL},
905 {"One", "\"/=\"", BINOP_NOTEQUAL},
906 {"Oand", "\"and\"", BINOP_BITWISE_AND},
907 {"Oor", "\"or\"", BINOP_BITWISE_IOR},
908 {"Oxor", "\"xor\"", BINOP_BITWISE_XOR},
909 {"Oconcat", "\"&\"", BINOP_CONCAT},
910 {"Oabs", "\"abs\"", UNOP_ABS},
911 {"Onot", "\"not\"", UNOP_LOGICAL_NOT},
912 {"Oadd", "\"+\"", UNOP_PLUS},
913 {"Osubtract", "\"-\"", UNOP_NEG},
914 {NULL, NULL}
915 };
916
917 /* The "encoded" form of DECODED, according to GNAT conventions. If
918 THROW_ERRORS, throw an error if invalid operator name is found.
919 Otherwise, return the empty string in that case. */
920
921 static std::string
922 ada_encode_1 (const char *decoded, bool throw_errors)
923 {
924 if (decoded == NULL)
925 return {};
926
927 std::string encoding_buffer;
928 for (const char *p = decoded; *p != '\0'; p += 1)
929 {
930 if (*p == '.')
931 encoding_buffer.append ("__");
932 else if (*p == '"')
933 {
934 const struct ada_opname_map *mapping;
935
936 for (mapping = ada_opname_table;
937 mapping->encoded != NULL
938 && !startswith (p, mapping->decoded); mapping += 1)
939 ;
940 if (mapping->encoded == NULL)
941 {
942 if (throw_errors)
943 error (_("invalid Ada operator name: %s"), p);
944 else
945 return {};
946 }
947 encoding_buffer.append (mapping->encoded);
948 break;
949 }
950 else
951 encoding_buffer.push_back (*p);
952 }
953
954 return encoding_buffer;
955 }
956
957 /* The "encoded" form of DECODED, according to GNAT conventions. */
958
959 std::string
960 ada_encode (const char *decoded)
961 {
962 return ada_encode_1 (decoded, true);
963 }
964
965 /* Return NAME folded to lower case, or, if surrounded by single
966 quotes, unfolded, but with the quotes stripped away. Result good
967 to next call. */
968
969 static char *
970 ada_fold_name (gdb::string_view name)
971 {
972 static char *fold_buffer = NULL;
973 static size_t fold_buffer_size = 0;
974
975 int len = name.size ();
976 GROW_VECT (fold_buffer, fold_buffer_size, len + 1);
977
978 if (name[0] == '\'')
979 {
980 strncpy (fold_buffer, name.data () + 1, len - 2);
981 fold_buffer[len - 2] = '\000';
982 }
983 else
984 {
985 int i;
986
987 for (i = 0; i <= len; i += 1)
988 fold_buffer[i] = tolower (name[i]);
989 }
990
991 return fold_buffer;
992 }
993
994 /* Return nonzero if C is either a digit or a lowercase alphabet character. */
995
996 static int
997 is_lower_alphanum (const char c)
998 {
999 return (isdigit (c) || (isalpha (c) && islower (c)));
1000 }
1001
1002 /* ENCODED is the linkage name of a symbol and LEN contains its length.
1003 This function saves in LEN the length of that same symbol name but
1004 without either of these suffixes:
1005 . .{DIGIT}+
1006 . ${DIGIT}+
1007 . ___{DIGIT}+
1008 . __{DIGIT}+.
1009
1010 These are suffixes introduced by the compiler for entities such as
1011 nested subprogram for instance, in order to avoid name clashes.
1012 They do not serve any purpose for the debugger. */
1013
1014 static void
1015 ada_remove_trailing_digits (const char *encoded, int *len)
1016 {
1017 if (*len > 1 && isdigit (encoded[*len - 1]))
1018 {
1019 int i = *len - 2;
1020
1021 while (i > 0 && isdigit (encoded[i]))
1022 i--;
1023 if (i >= 0 && encoded[i] == '.')
1024 *len = i;
1025 else if (i >= 0 && encoded[i] == '$')
1026 *len = i;
1027 else if (i >= 2 && startswith (encoded + i - 2, "___"))
1028 *len = i - 2;
1029 else if (i >= 1 && startswith (encoded + i - 1, "__"))
1030 *len = i - 1;
1031 }
1032 }
1033
1034 /* Remove the suffix introduced by the compiler for protected object
1035 subprograms. */
1036
1037 static void
1038 ada_remove_po_subprogram_suffix (const char *encoded, int *len)
1039 {
1040 /* Remove trailing N. */
1041
1042 /* Protected entry subprograms are broken into two
1043 separate subprograms: The first one is unprotected, and has
1044 a 'N' suffix; the second is the protected version, and has
1045 the 'P' suffix. The second calls the first one after handling
1046 the protection. Since the P subprograms are internally generated,
1047 we leave these names undecoded, giving the user a clue that this
1048 entity is internal. */
1049
1050 if (*len > 1
1051 && encoded[*len - 1] == 'N'
1052 && (isdigit (encoded[*len - 2]) || islower (encoded[*len - 2])))
1053 *len = *len - 1;
1054 }
1055
1056 /* If ENCODED follows the GNAT entity encoding conventions, then return
1057 the decoded form of ENCODED. Otherwise, return "<%s>" where "%s" is
1058 replaced by ENCODED. */
1059
1060 std::string
1061 ada_decode (const char *encoded)
1062 {
1063 int i, j;
1064 int len0;
1065 const char *p;
1066 int at_start_name;
1067 std::string decoded;
1068
1069 /* With function descriptors on PPC64, the value of a symbol named
1070 ".FN", if it exists, is the entry point of the function "FN". */
1071 if (encoded[0] == '.')
1072 encoded += 1;
1073
1074 /* The name of the Ada main procedure starts with "_ada_".
1075 This prefix is not part of the decoded name, so skip this part
1076 if we see this prefix. */
1077 if (startswith (encoded, "_ada_"))
1078 encoded += 5;
1079
1080 /* If the name starts with '_', then it is not a properly encoded
1081 name, so do not attempt to decode it. Similarly, if the name
1082 starts with '<', the name should not be decoded. */
1083 if (encoded[0] == '_' || encoded[0] == '<')
1084 goto Suppress;
1085
1086 len0 = strlen (encoded);
1087
1088 ada_remove_trailing_digits (encoded, &len0);
1089 ada_remove_po_subprogram_suffix (encoded, &len0);
1090
1091 /* Remove the ___X.* suffix if present. Do not forget to verify that
1092 the suffix is located before the current "end" of ENCODED. We want
1093 to avoid re-matching parts of ENCODED that have previously been
1094 marked as discarded (by decrementing LEN0). */
1095 p = strstr (encoded, "___");
1096 if (p != NULL && p - encoded < len0 - 3)
1097 {
1098 if (p[3] == 'X')
1099 len0 = p - encoded;
1100 else
1101 goto Suppress;
1102 }
1103
1104 /* Remove any trailing TKB suffix. It tells us that this symbol
1105 is for the body of a task, but that information does not actually
1106 appear in the decoded name. */
1107
1108 if (len0 > 3 && startswith (encoded + len0 - 3, "TKB"))
1109 len0 -= 3;
1110
1111 /* Remove any trailing TB suffix. The TB suffix is slightly different
1112 from the TKB suffix because it is used for non-anonymous task
1113 bodies. */
1114
1115 if (len0 > 2 && startswith (encoded + len0 - 2, "TB"))
1116 len0 -= 2;
1117
1118 /* Remove trailing "B" suffixes. */
1119 /* FIXME: brobecker/2006-04-19: Not sure what this are used for... */
1120
1121 if (len0 > 1 && startswith (encoded + len0 - 1, "B"))
1122 len0 -= 1;
1123
1124 /* Make decoded big enough for possible expansion by operator name. */
1125
1126 decoded.resize (2 * len0 + 1, 'X');
1127
1128 /* Remove trailing __{digit}+ or trailing ${digit}+. */
1129
1130 if (len0 > 1 && isdigit (encoded[len0 - 1]))
1131 {
1132 i = len0 - 2;
1133 while ((i >= 0 && isdigit (encoded[i]))
1134 || (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1])))
1135 i -= 1;
1136 if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_')
1137 len0 = i - 1;
1138 else if (encoded[i] == '$')
1139 len0 = i;
1140 }
1141
1142 /* The first few characters that are not alphabetic are not part
1143 of any encoding we use, so we can copy them over verbatim. */
1144
1145 for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1)
1146 decoded[j] = encoded[i];
1147
1148 at_start_name = 1;
1149 while (i < len0)
1150 {
1151 /* Is this a symbol function? */
1152 if (at_start_name && encoded[i] == 'O')
1153 {
1154 int k;
1155
1156 for (k = 0; ada_opname_table[k].encoded != NULL; k += 1)
1157 {
1158 int op_len = strlen (ada_opname_table[k].encoded);
1159 if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1,
1160 op_len - 1) == 0)
1161 && !isalnum (encoded[i + op_len]))
1162 {
1163 strcpy (&decoded.front() + j, ada_opname_table[k].decoded);
1164 at_start_name = 0;
1165 i += op_len;
1166 j += strlen (ada_opname_table[k].decoded);
1167 break;
1168 }
1169 }
1170 if (ada_opname_table[k].encoded != NULL)
1171 continue;
1172 }
1173 at_start_name = 0;
1174
1175 /* Replace "TK__" with "__", which will eventually be translated
1176 into "." (just below). */
1177
1178 if (i < len0 - 4 && startswith (encoded + i, "TK__"))
1179 i += 2;
1180
1181 /* Replace "__B_{DIGITS}+__" sequences by "__", which will eventually
1182 be translated into "." (just below). These are internal names
1183 generated for anonymous blocks inside which our symbol is nested. */
1184
1185 if (len0 - i > 5 && encoded [i] == '_' && encoded [i+1] == '_'
1186 && encoded [i+2] == 'B' && encoded [i+3] == '_'
1187 && isdigit (encoded [i+4]))
1188 {
1189 int k = i + 5;
1190
1191 while (k < len0 && isdigit (encoded[k]))
1192 k++; /* Skip any extra digit. */
1193
1194 /* Double-check that the "__B_{DIGITS}+" sequence we found
1195 is indeed followed by "__". */
1196 if (len0 - k > 2 && encoded [k] == '_' && encoded [k+1] == '_')
1197 i = k;
1198 }
1199
1200 /* Remove _E{DIGITS}+[sb] */
1201
1202 /* Just as for protected object subprograms, there are 2 categories
1203 of subprograms created by the compiler for each entry. The first
1204 one implements the actual entry code, and has a suffix following
1205 the convention above; the second one implements the barrier and
1206 uses the same convention as above, except that the 'E' is replaced
1207 by a 'B'.
1208
1209 Just as above, we do not decode the name of barrier functions
1210 to give the user a clue that the code he is debugging has been
1211 internally generated. */
1212
1213 if (len0 - i > 3 && encoded [i] == '_' && encoded[i+1] == 'E'
1214 && isdigit (encoded[i+2]))
1215 {
1216 int k = i + 3;
1217
1218 while (k < len0 && isdigit (encoded[k]))
1219 k++;
1220
1221 if (k < len0
1222 && (encoded[k] == 'b' || encoded[k] == 's'))
1223 {
1224 k++;
1225 /* Just as an extra precaution, make sure that if this
1226 suffix is followed by anything else, it is a '_'.
1227 Otherwise, we matched this sequence by accident. */
1228 if (k == len0
1229 || (k < len0 && encoded[k] == '_'))
1230 i = k;
1231 }
1232 }
1233
1234 /* Remove trailing "N" in [a-z0-9]+N__. The N is added by
1235 the GNAT front-end in protected object subprograms. */
1236
1237 if (i < len0 + 3
1238 && encoded[i] == 'N' && encoded[i+1] == '_' && encoded[i+2] == '_')
1239 {
1240 /* Backtrack a bit up until we reach either the begining of
1241 the encoded name, or "__". Make sure that we only find
1242 digits or lowercase characters. */
1243 const char *ptr = encoded + i - 1;
1244
1245 while (ptr >= encoded && is_lower_alphanum (ptr[0]))
1246 ptr--;
1247 if (ptr < encoded
1248 || (ptr > encoded && ptr[0] == '_' && ptr[-1] == '_'))
1249 i++;
1250 }
1251
1252 if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1]))
1253 {
1254 /* This is a X[bn]* sequence not separated from the previous
1255 part of the name with a non-alpha-numeric character (in other
1256 words, immediately following an alpha-numeric character), then
1257 verify that it is placed at the end of the encoded name. If
1258 not, then the encoding is not valid and we should abort the
1259 decoding. Otherwise, just skip it, it is used in body-nested
1260 package names. */
1261 do
1262 i += 1;
1263 while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n'));
1264 if (i < len0)
1265 goto Suppress;
1266 }
1267 else if (i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_')
1268 {
1269 /* Replace '__' by '.'. */
1270 decoded[j] = '.';
1271 at_start_name = 1;
1272 i += 2;
1273 j += 1;
1274 }
1275 else
1276 {
1277 /* It's a character part of the decoded name, so just copy it
1278 over. */
1279 decoded[j] = encoded[i];
1280 i += 1;
1281 j += 1;
1282 }
1283 }
1284 decoded.resize (j);
1285
1286 /* Decoded names should never contain any uppercase character.
1287 Double-check this, and abort the decoding if we find one. */
1288
1289 for (i = 0; i < decoded.length(); ++i)
1290 if (isupper (decoded[i]) || decoded[i] == ' ')
1291 goto Suppress;
1292
1293 return decoded;
1294
1295 Suppress:
1296 if (encoded[0] == '<')
1297 decoded = encoded;
1298 else
1299 decoded = '<' + std::string(encoded) + '>';
1300 return decoded;
1301
1302 }
1303
1304 /* Table for keeping permanent unique copies of decoded names. Once
1305 allocated, names in this table are never released. While this is a
1306 storage leak, it should not be significant unless there are massive
1307 changes in the set of decoded names in successive versions of a
1308 symbol table loaded during a single session. */
1309 static struct htab *decoded_names_store;
1310
1311 /* Returns the decoded name of GSYMBOL, as for ada_decode, caching it
1312 in the language-specific part of GSYMBOL, if it has not been
1313 previously computed. Tries to save the decoded name in the same
1314 obstack as GSYMBOL, if possible, and otherwise on the heap (so that,
1315 in any case, the decoded symbol has a lifetime at least that of
1316 GSYMBOL).
1317 The GSYMBOL parameter is "mutable" in the C++ sense: logically
1318 const, but nevertheless modified to a semantically equivalent form
1319 when a decoded name is cached in it. */
1320
1321 const char *
1322 ada_decode_symbol (const struct general_symbol_info *arg)
1323 {
1324 struct general_symbol_info *gsymbol = (struct general_symbol_info *) arg;
1325 const char **resultp =
1326 &gsymbol->language_specific.demangled_name;
1327
1328 if (!gsymbol->ada_mangled)
1329 {
1330 std::string decoded = ada_decode (gsymbol->linkage_name ());
1331 struct obstack *obstack = gsymbol->language_specific.obstack;
1332
1333 gsymbol->ada_mangled = 1;
1334
1335 if (obstack != NULL)
1336 *resultp = obstack_strdup (obstack, decoded.c_str ());
1337 else
1338 {
1339 /* Sometimes, we can't find a corresponding objfile, in
1340 which case, we put the result on the heap. Since we only
1341 decode when needed, we hope this usually does not cause a
1342 significant memory leak (FIXME). */
1343
1344 char **slot = (char **) htab_find_slot (decoded_names_store,
1345 decoded.c_str (), INSERT);
1346
1347 if (*slot == NULL)
1348 *slot = xstrdup (decoded.c_str ());
1349 *resultp = *slot;
1350 }
1351 }
1352
1353 return *resultp;
1354 }
1355
1356 static char *
1357 ada_la_decode (const char *encoded, int options)
1358 {
1359 return xstrdup (ada_decode (encoded).c_str ());
1360 }
1361
1362 \f
1363
1364 /* Arrays */
1365
1366 /* Assuming that INDEX_DESC_TYPE is an ___XA structure, a structure
1367 generated by the GNAT compiler to describe the index type used
1368 for each dimension of an array, check whether it follows the latest
1369 known encoding. If not, fix it up to conform to the latest encoding.
1370 Otherwise, do nothing. This function also does nothing if
1371 INDEX_DESC_TYPE is NULL.
1372
1373 The GNAT encoding used to describe the array index type evolved a bit.
1374 Initially, the information would be provided through the name of each
1375 field of the structure type only, while the type of these fields was
1376 described as unspecified and irrelevant. The debugger was then expected
1377 to perform a global type lookup using the name of that field in order
1378 to get access to the full index type description. Because these global
1379 lookups can be very expensive, the encoding was later enhanced to make
1380 the global lookup unnecessary by defining the field type as being
1381 the full index type description.
1382
1383 The purpose of this routine is to allow us to support older versions
1384 of the compiler by detecting the use of the older encoding, and by
1385 fixing up the INDEX_DESC_TYPE to follow the new one (at this point,
1386 we essentially replace each field's meaningless type by the associated
1387 index subtype). */
1388
1389 void
1390 ada_fixup_array_indexes_type (struct type *index_desc_type)
1391 {
1392 int i;
1393
1394 if (index_desc_type == NULL)
1395 return;
1396 gdb_assert (index_desc_type->num_fields () > 0);
1397
1398 /* Check if INDEX_DESC_TYPE follows the older encoding (it is sufficient
1399 to check one field only, no need to check them all). If not, return
1400 now.
1401
1402 If our INDEX_DESC_TYPE was generated using the older encoding,
1403 the field type should be a meaningless integer type whose name
1404 is not equal to the field name. */
1405 if (index_desc_type->field (0).type ()->name () != NULL
1406 && strcmp (index_desc_type->field (0).type ()->name (),
1407 TYPE_FIELD_NAME (index_desc_type, 0)) == 0)
1408 return;
1409
1410 /* Fixup each field of INDEX_DESC_TYPE. */
1411 for (i = 0; i < index_desc_type->num_fields (); i++)
1412 {
1413 const char *name = TYPE_FIELD_NAME (index_desc_type, i);
1414 struct type *raw_type = ada_check_typedef (ada_find_any_type (name));
1415
1416 if (raw_type)
1417 index_desc_type->field (i).set_type (raw_type);
1418 }
1419 }
1420
1421 /* The desc_* routines return primitive portions of array descriptors
1422 (fat pointers). */
1423
1424 /* The descriptor or array type, if any, indicated by TYPE; removes
1425 level of indirection, if needed. */
1426
1427 static struct type *
1428 desc_base_type (struct type *type)
1429 {
1430 if (type == NULL)
1431 return NULL;
1432 type = ada_check_typedef (type);
1433 if (type->code () == TYPE_CODE_TYPEDEF)
1434 type = ada_typedef_target_type (type);
1435
1436 if (type != NULL
1437 && (type->code () == TYPE_CODE_PTR
1438 || type->code () == TYPE_CODE_REF))
1439 return ada_check_typedef (TYPE_TARGET_TYPE (type));
1440 else
1441 return type;
1442 }
1443
1444 /* True iff TYPE indicates a "thin" array pointer type. */
1445
1446 static int
1447 is_thin_pntr (struct type *type)
1448 {
1449 return
1450 is_suffix (ada_type_name (desc_base_type (type)), "___XUT")
1451 || is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE");
1452 }
1453
1454 /* The descriptor type for thin pointer type TYPE. */
1455
1456 static struct type *
1457 thin_descriptor_type (struct type *type)
1458 {
1459 struct type *base_type = desc_base_type (type);
1460
1461 if (base_type == NULL)
1462 return NULL;
1463 if (is_suffix (ada_type_name (base_type), "___XVE"))
1464 return base_type;
1465 else
1466 {
1467 struct type *alt_type = ada_find_parallel_type (base_type, "___XVE");
1468
1469 if (alt_type == NULL)
1470 return base_type;
1471 else
1472 return alt_type;
1473 }
1474 }
1475
1476 /* A pointer to the array data for thin-pointer value VAL. */
1477
1478 static struct value *
1479 thin_data_pntr (struct value *val)
1480 {
1481 struct type *type = ada_check_typedef (value_type (val));
1482 struct type *data_type = desc_data_target_type (thin_descriptor_type (type));
1483
1484 data_type = lookup_pointer_type (data_type);
1485
1486 if (type->code () == TYPE_CODE_PTR)
1487 return value_cast (data_type, value_copy (val));
1488 else
1489 return value_from_longest (data_type, value_address (val));
1490 }
1491
1492 /* True iff TYPE indicates a "thick" array pointer type. */
1493
1494 static int
1495 is_thick_pntr (struct type *type)
1496 {
1497 type = desc_base_type (type);
1498 return (type != NULL && type->code () == TYPE_CODE_STRUCT
1499 && lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL);
1500 }
1501
1502 /* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1503 pointer to one, the type of its bounds data; otherwise, NULL. */
1504
1505 static struct type *
1506 desc_bounds_type (struct type *type)
1507 {
1508 struct type *r;
1509
1510 type = desc_base_type (type);
1511
1512 if (type == NULL)
1513 return NULL;
1514 else if (is_thin_pntr (type))
1515 {
1516 type = thin_descriptor_type (type);
1517 if (type == NULL)
1518 return NULL;
1519 r = lookup_struct_elt_type (type, "BOUNDS", 1);
1520 if (r != NULL)
1521 return ada_check_typedef (r);
1522 }
1523 else if (type->code () == TYPE_CODE_STRUCT)
1524 {
1525 r = lookup_struct_elt_type (type, "P_BOUNDS", 1);
1526 if (r != NULL)
1527 return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r)));
1528 }
1529 return NULL;
1530 }
1531
1532 /* If ARR is an array descriptor (fat or thin pointer), or pointer to
1533 one, a pointer to its bounds data. Otherwise NULL. */
1534
1535 static struct value *
1536 desc_bounds (struct value *arr)
1537 {
1538 struct type *type = ada_check_typedef (value_type (arr));
1539
1540 if (is_thin_pntr (type))
1541 {
1542 struct type *bounds_type =
1543 desc_bounds_type (thin_descriptor_type (type));
1544 LONGEST addr;
1545
1546 if (bounds_type == NULL)
1547 error (_("Bad GNAT array descriptor"));
1548
1549 /* NOTE: The following calculation is not really kosher, but
1550 since desc_type is an XVE-encoded type (and shouldn't be),
1551 the correct calculation is a real pain. FIXME (and fix GCC). */
1552 if (type->code () == TYPE_CODE_PTR)
1553 addr = value_as_long (arr);
1554 else
1555 addr = value_address (arr);
1556
1557 return
1558 value_from_longest (lookup_pointer_type (bounds_type),
1559 addr - TYPE_LENGTH (bounds_type));
1560 }
1561
1562 else if (is_thick_pntr (type))
1563 {
1564 struct value *p_bounds = value_struct_elt (&arr, NULL, "P_BOUNDS", NULL,
1565 _("Bad GNAT array descriptor"));
1566 struct type *p_bounds_type = value_type (p_bounds);
1567
1568 if (p_bounds_type
1569 && p_bounds_type->code () == TYPE_CODE_PTR)
1570 {
1571 struct type *target_type = TYPE_TARGET_TYPE (p_bounds_type);
1572
1573 if (target_type->is_stub ())
1574 p_bounds = value_cast (lookup_pointer_type
1575 (ada_check_typedef (target_type)),
1576 p_bounds);
1577 }
1578 else
1579 error (_("Bad GNAT array descriptor"));
1580
1581 return p_bounds;
1582 }
1583 else
1584 return NULL;
1585 }
1586
1587 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1588 position of the field containing the address of the bounds data. */
1589
1590 static int
1591 fat_pntr_bounds_bitpos (struct type *type)
1592 {
1593 return TYPE_FIELD_BITPOS (desc_base_type (type), 1);
1594 }
1595
1596 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1597 size of the field containing the address of the bounds data. */
1598
1599 static int
1600 fat_pntr_bounds_bitsize (struct type *type)
1601 {
1602 type = desc_base_type (type);
1603
1604 if (TYPE_FIELD_BITSIZE (type, 1) > 0)
1605 return TYPE_FIELD_BITSIZE (type, 1);
1606 else
1607 return 8 * TYPE_LENGTH (ada_check_typedef (type->field (1).type ()));
1608 }
1609
1610 /* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1611 pointer to one, the type of its array data (a array-with-no-bounds type);
1612 otherwise, NULL. Use ada_type_of_array to get an array type with bounds
1613 data. */
1614
1615 static struct type *
1616 desc_data_target_type (struct type *type)
1617 {
1618 type = desc_base_type (type);
1619
1620 /* NOTE: The following is bogus; see comment in desc_bounds. */
1621 if (is_thin_pntr (type))
1622 return desc_base_type (thin_descriptor_type (type)->field (1).type ());
1623 else if (is_thick_pntr (type))
1624 {
1625 struct type *data_type = lookup_struct_elt_type (type, "P_ARRAY", 1);
1626
1627 if (data_type
1628 && ada_check_typedef (data_type)->code () == TYPE_CODE_PTR)
1629 return ada_check_typedef (TYPE_TARGET_TYPE (data_type));
1630 }
1631
1632 return NULL;
1633 }
1634
1635 /* If ARR is an array descriptor (fat or thin pointer), a pointer to
1636 its array data. */
1637
1638 static struct value *
1639 desc_data (struct value *arr)
1640 {
1641 struct type *type = value_type (arr);
1642
1643 if (is_thin_pntr (type))
1644 return thin_data_pntr (arr);
1645 else if (is_thick_pntr (type))
1646 return value_struct_elt (&arr, NULL, "P_ARRAY", NULL,
1647 _("Bad GNAT array descriptor"));
1648 else
1649 return NULL;
1650 }
1651
1652
1653 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1654 position of the field containing the address of the data. */
1655
1656 static int
1657 fat_pntr_data_bitpos (struct type *type)
1658 {
1659 return TYPE_FIELD_BITPOS (desc_base_type (type), 0);
1660 }
1661
1662 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1663 size of the field containing the address of the data. */
1664
1665 static int
1666 fat_pntr_data_bitsize (struct type *type)
1667 {
1668 type = desc_base_type (type);
1669
1670 if (TYPE_FIELD_BITSIZE (type, 0) > 0)
1671 return TYPE_FIELD_BITSIZE (type, 0);
1672 else
1673 return TARGET_CHAR_BIT * TYPE_LENGTH (type->field (0).type ());
1674 }
1675
1676 /* If BOUNDS is an array-bounds structure (or pointer to one), return
1677 the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1678 bound, if WHICH is 1. The first bound is I=1. */
1679
1680 static struct value *
1681 desc_one_bound (struct value *bounds, int i, int which)
1682 {
1683 char bound_name[20];
1684 xsnprintf (bound_name, sizeof (bound_name), "%cB%d",
1685 which ? 'U' : 'L', i - 1);
1686 return value_struct_elt (&bounds, NULL, bound_name, NULL,
1687 _("Bad GNAT array descriptor bounds"));
1688 }
1689
1690 /* If BOUNDS is an array-bounds structure type, return the bit position
1691 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1692 bound, if WHICH is 1. The first bound is I=1. */
1693
1694 static int
1695 desc_bound_bitpos (struct type *type, int i, int which)
1696 {
1697 return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2);
1698 }
1699
1700 /* If BOUNDS is an array-bounds structure type, return the bit field size
1701 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1702 bound, if WHICH is 1. The first bound is I=1. */
1703
1704 static int
1705 desc_bound_bitsize (struct type *type, int i, int which)
1706 {
1707 type = desc_base_type (type);
1708
1709 if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0)
1710 return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2);
1711 else
1712 return 8 * TYPE_LENGTH (type->field (2 * i + which - 2).type ());
1713 }
1714
1715 /* If TYPE is the type of an array-bounds structure, the type of its
1716 Ith bound (numbering from 1). Otherwise, NULL. */
1717
1718 static struct type *
1719 desc_index_type (struct type *type, int i)
1720 {
1721 type = desc_base_type (type);
1722
1723 if (type->code () == TYPE_CODE_STRUCT)
1724 {
1725 char bound_name[20];
1726 xsnprintf (bound_name, sizeof (bound_name), "LB%d", i - 1);
1727 return lookup_struct_elt_type (type, bound_name, 1);
1728 }
1729 else
1730 return NULL;
1731 }
1732
1733 /* The number of index positions in the array-bounds type TYPE.
1734 Return 0 if TYPE is NULL. */
1735
1736 static int
1737 desc_arity (struct type *type)
1738 {
1739 type = desc_base_type (type);
1740
1741 if (type != NULL)
1742 return type->num_fields () / 2;
1743 return 0;
1744 }
1745
1746 /* Non-zero iff TYPE is a simple array type (not a pointer to one) or
1747 an array descriptor type (representing an unconstrained array
1748 type). */
1749
1750 static int
1751 ada_is_direct_array_type (struct type *type)
1752 {
1753 if (type == NULL)
1754 return 0;
1755 type = ada_check_typedef (type);
1756 return (type->code () == TYPE_CODE_ARRAY
1757 || ada_is_array_descriptor_type (type));
1758 }
1759
1760 /* Non-zero iff TYPE represents any kind of array in Ada, or a pointer
1761 * to one. */
1762
1763 static int
1764 ada_is_array_type (struct type *type)
1765 {
1766 while (type != NULL
1767 && (type->code () == TYPE_CODE_PTR
1768 || type->code () == TYPE_CODE_REF))
1769 type = TYPE_TARGET_TYPE (type);
1770 return ada_is_direct_array_type (type);
1771 }
1772
1773 /* Non-zero iff TYPE is a simple array type or pointer to one. */
1774
1775 int
1776 ada_is_simple_array_type (struct type *type)
1777 {
1778 if (type == NULL)
1779 return 0;
1780 type = ada_check_typedef (type);
1781 return (type->code () == TYPE_CODE_ARRAY
1782 || (type->code () == TYPE_CODE_PTR
1783 && (ada_check_typedef (TYPE_TARGET_TYPE (type))->code ()
1784 == TYPE_CODE_ARRAY)));
1785 }
1786
1787 /* Non-zero iff TYPE belongs to a GNAT array descriptor. */
1788
1789 int
1790 ada_is_array_descriptor_type (struct type *type)
1791 {
1792 struct type *data_type = desc_data_target_type (type);
1793
1794 if (type == NULL)
1795 return 0;
1796 type = ada_check_typedef (type);
1797 return (data_type != NULL
1798 && data_type->code () == TYPE_CODE_ARRAY
1799 && desc_arity (desc_bounds_type (type)) > 0);
1800 }
1801
1802 /* Non-zero iff type is a partially mal-formed GNAT array
1803 descriptor. FIXME: This is to compensate for some problems with
1804 debugging output from GNAT. Re-examine periodically to see if it
1805 is still needed. */
1806
1807 int
1808 ada_is_bogus_array_descriptor (struct type *type)
1809 {
1810 return
1811 type != NULL
1812 && type->code () == TYPE_CODE_STRUCT
1813 && (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL
1814 || lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL)
1815 && !ada_is_array_descriptor_type (type);
1816 }
1817
1818
1819 /* If ARR has a record type in the form of a standard GNAT array descriptor,
1820 (fat pointer) returns the type of the array data described---specifically,
1821 a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled
1822 in from the descriptor; otherwise, they are left unspecified. If
1823 the ARR denotes a null array descriptor and BOUNDS is non-zero,
1824 returns NULL. The result is simply the type of ARR if ARR is not
1825 a descriptor. */
1826
1827 static struct type *
1828 ada_type_of_array (struct value *arr, int bounds)
1829 {
1830 if (ada_is_constrained_packed_array_type (value_type (arr)))
1831 return decode_constrained_packed_array_type (value_type (arr));
1832
1833 if (!ada_is_array_descriptor_type (value_type (arr)))
1834 return value_type (arr);
1835
1836 if (!bounds)
1837 {
1838 struct type *array_type =
1839 ada_check_typedef (desc_data_target_type (value_type (arr)));
1840
1841 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1842 TYPE_FIELD_BITSIZE (array_type, 0) =
1843 decode_packed_array_bitsize (value_type (arr));
1844
1845 return array_type;
1846 }
1847 else
1848 {
1849 struct type *elt_type;
1850 int arity;
1851 struct value *descriptor;
1852
1853 elt_type = ada_array_element_type (value_type (arr), -1);
1854 arity = ada_array_arity (value_type (arr));
1855
1856 if (elt_type == NULL || arity == 0)
1857 return ada_check_typedef (value_type (arr));
1858
1859 descriptor = desc_bounds (arr);
1860 if (value_as_long (descriptor) == 0)
1861 return NULL;
1862 while (arity > 0)
1863 {
1864 struct type *range_type = alloc_type_copy (value_type (arr));
1865 struct type *array_type = alloc_type_copy (value_type (arr));
1866 struct value *low = desc_one_bound (descriptor, arity, 0);
1867 struct value *high = desc_one_bound (descriptor, arity, 1);
1868
1869 arity -= 1;
1870 create_static_range_type (range_type, value_type (low),
1871 longest_to_int (value_as_long (low)),
1872 longest_to_int (value_as_long (high)));
1873 elt_type = create_array_type (array_type, elt_type, range_type);
1874
1875 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1876 {
1877 /* We need to store the element packed bitsize, as well as
1878 recompute the array size, because it was previously
1879 computed based on the unpacked element size. */
1880 LONGEST lo = value_as_long (low);
1881 LONGEST hi = value_as_long (high);
1882
1883 TYPE_FIELD_BITSIZE (elt_type, 0) =
1884 decode_packed_array_bitsize (value_type (arr));
1885 /* If the array has no element, then the size is already
1886 zero, and does not need to be recomputed. */
1887 if (lo < hi)
1888 {
1889 int array_bitsize =
1890 (hi - lo + 1) * TYPE_FIELD_BITSIZE (elt_type, 0);
1891
1892 TYPE_LENGTH (array_type) = (array_bitsize + 7) / 8;
1893 }
1894 }
1895 }
1896
1897 return lookup_pointer_type (elt_type);
1898 }
1899 }
1900
1901 /* If ARR does not represent an array, returns ARR unchanged.
1902 Otherwise, returns either a standard GDB array with bounds set
1903 appropriately or, if ARR is a non-null fat pointer, a pointer to a standard
1904 GDB array. Returns NULL if ARR is a null fat pointer. */
1905
1906 struct value *
1907 ada_coerce_to_simple_array_ptr (struct value *arr)
1908 {
1909 if (ada_is_array_descriptor_type (value_type (arr)))
1910 {
1911 struct type *arrType = ada_type_of_array (arr, 1);
1912
1913 if (arrType == NULL)
1914 return NULL;
1915 return value_cast (arrType, value_copy (desc_data (arr)));
1916 }
1917 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1918 return decode_constrained_packed_array (arr);
1919 else
1920 return arr;
1921 }
1922
1923 /* If ARR does not represent an array, returns ARR unchanged.
1924 Otherwise, returns a standard GDB array describing ARR (which may
1925 be ARR itself if it already is in the proper form). */
1926
1927 struct value *
1928 ada_coerce_to_simple_array (struct value *arr)
1929 {
1930 if (ada_is_array_descriptor_type (value_type (arr)))
1931 {
1932 struct value *arrVal = ada_coerce_to_simple_array_ptr (arr);
1933
1934 if (arrVal == NULL)
1935 error (_("Bounds unavailable for null array pointer."));
1936 ada_ensure_varsize_limit (TYPE_TARGET_TYPE (value_type (arrVal)));
1937 return value_ind (arrVal);
1938 }
1939 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1940 return decode_constrained_packed_array (arr);
1941 else
1942 return arr;
1943 }
1944
1945 /* If TYPE represents a GNAT array type, return it translated to an
1946 ordinary GDB array type (possibly with BITSIZE fields indicating
1947 packing). For other types, is the identity. */
1948
1949 struct type *
1950 ada_coerce_to_simple_array_type (struct type *type)
1951 {
1952 if (ada_is_constrained_packed_array_type (type))
1953 return decode_constrained_packed_array_type (type);
1954
1955 if (ada_is_array_descriptor_type (type))
1956 return ada_check_typedef (desc_data_target_type (type));
1957
1958 return type;
1959 }
1960
1961 /* Non-zero iff TYPE represents a standard GNAT packed-array type. */
1962
1963 static int
1964 ada_is_gnat_encoded_packed_array_type (struct type *type)
1965 {
1966 if (type == NULL)
1967 return 0;
1968 type = desc_base_type (type);
1969 type = ada_check_typedef (type);
1970 return
1971 ada_type_name (type) != NULL
1972 && strstr (ada_type_name (type), "___XP") != NULL;
1973 }
1974
1975 /* Non-zero iff TYPE represents a standard GNAT constrained
1976 packed-array type. */
1977
1978 int
1979 ada_is_constrained_packed_array_type (struct type *type)
1980 {
1981 return ada_is_gnat_encoded_packed_array_type (type)
1982 && !ada_is_array_descriptor_type (type);
1983 }
1984
1985 /* Non-zero iff TYPE represents an array descriptor for a
1986 unconstrained packed-array type. */
1987
1988 static int
1989 ada_is_unconstrained_packed_array_type (struct type *type)
1990 {
1991 if (!ada_is_array_descriptor_type (type))
1992 return 0;
1993
1994 if (ada_is_gnat_encoded_packed_array_type (type))
1995 return 1;
1996
1997 /* If we saw GNAT encodings, then the above code is sufficient.
1998 However, with minimal encodings, we will just have a thick
1999 pointer instead. */
2000 if (is_thick_pntr (type))
2001 {
2002 type = desc_base_type (type);
2003 /* The structure's first field is a pointer to an array, so this
2004 fetches the array type. */
2005 type = TYPE_TARGET_TYPE (type->field (0).type ());
2006 /* Now we can see if the array elements are packed. */
2007 return TYPE_FIELD_BITSIZE (type, 0) > 0;
2008 }
2009
2010 return 0;
2011 }
2012
2013 /* Return true if TYPE is a (Gnat-encoded) constrained packed array
2014 type, or if it is an ordinary (non-Gnat-encoded) packed array. */
2015
2016 static bool
2017 ada_is_any_packed_array_type (struct type *type)
2018 {
2019 return (ada_is_constrained_packed_array_type (type)
2020 || (type->code () == TYPE_CODE_ARRAY
2021 && TYPE_FIELD_BITSIZE (type, 0) % 8 != 0));
2022 }
2023
2024 /* Given that TYPE encodes a packed array type (constrained or unconstrained),
2025 return the size of its elements in bits. */
2026
2027 static long
2028 decode_packed_array_bitsize (struct type *type)
2029 {
2030 const char *raw_name;
2031 const char *tail;
2032 long bits;
2033
2034 /* Access to arrays implemented as fat pointers are encoded as a typedef
2035 of the fat pointer type. We need the name of the fat pointer type
2036 to do the decoding, so strip the typedef layer. */
2037 if (type->code () == TYPE_CODE_TYPEDEF)
2038 type = ada_typedef_target_type (type);
2039
2040 raw_name = ada_type_name (ada_check_typedef (type));
2041 if (!raw_name)
2042 raw_name = ada_type_name (desc_base_type (type));
2043
2044 if (!raw_name)
2045 return 0;
2046
2047 tail = strstr (raw_name, "___XP");
2048 if (tail == nullptr)
2049 {
2050 gdb_assert (is_thick_pntr (type));
2051 /* The structure's first field is a pointer to an array, so this
2052 fetches the array type. */
2053 type = TYPE_TARGET_TYPE (type->field (0).type ());
2054 /* Now we can see if the array elements are packed. */
2055 return TYPE_FIELD_BITSIZE (type, 0);
2056 }
2057
2058 if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1)
2059 {
2060 lim_warning
2061 (_("could not understand bit size information on packed array"));
2062 return 0;
2063 }
2064
2065 return bits;
2066 }
2067
2068 /* Given that TYPE is a standard GDB array type with all bounds filled
2069 in, and that the element size of its ultimate scalar constituents
2070 (that is, either its elements, or, if it is an array of arrays, its
2071 elements' elements, etc.) is *ELT_BITS, return an identical type,
2072 but with the bit sizes of its elements (and those of any
2073 constituent arrays) recorded in the BITSIZE components of its
2074 TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size
2075 in bits.
2076
2077 Note that, for arrays whose index type has an XA encoding where
2078 a bound references a record discriminant, getting that discriminant,
2079 and therefore the actual value of that bound, is not possible
2080 because none of the given parameters gives us access to the record.
2081 This function assumes that it is OK in the context where it is being
2082 used to return an array whose bounds are still dynamic and where
2083 the length is arbitrary. */
2084
2085 static struct type *
2086 constrained_packed_array_type (struct type *type, long *elt_bits)
2087 {
2088 struct type *new_elt_type;
2089 struct type *new_type;
2090 struct type *index_type_desc;
2091 struct type *index_type;
2092 LONGEST low_bound, high_bound;
2093
2094 type = ada_check_typedef (type);
2095 if (type->code () != TYPE_CODE_ARRAY)
2096 return type;
2097
2098 index_type_desc = ada_find_parallel_type (type, "___XA");
2099 if (index_type_desc)
2100 index_type = to_fixed_range_type (index_type_desc->field (0).type (),
2101 NULL);
2102 else
2103 index_type = type->index_type ();
2104
2105 new_type = alloc_type_copy (type);
2106 new_elt_type =
2107 constrained_packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)),
2108 elt_bits);
2109 create_array_type (new_type, new_elt_type, index_type);
2110 TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits;
2111 new_type->set_name (ada_type_name (type));
2112
2113 if ((check_typedef (index_type)->code () == TYPE_CODE_RANGE
2114 && is_dynamic_type (check_typedef (index_type)))
2115 || get_discrete_bounds (index_type, &low_bound, &high_bound) < 0)
2116 low_bound = high_bound = 0;
2117 if (high_bound < low_bound)
2118 *elt_bits = TYPE_LENGTH (new_type) = 0;
2119 else
2120 {
2121 *elt_bits *= (high_bound - low_bound + 1);
2122 TYPE_LENGTH (new_type) =
2123 (*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2124 }
2125
2126 new_type->set_is_fixed_instance (true);
2127 return new_type;
2128 }
2129
2130 /* The array type encoded by TYPE, where
2131 ada_is_constrained_packed_array_type (TYPE). */
2132
2133 static struct type *
2134 decode_constrained_packed_array_type (struct type *type)
2135 {
2136 const char *raw_name = ada_type_name (ada_check_typedef (type));
2137 char *name;
2138 const char *tail;
2139 struct type *shadow_type;
2140 long bits;
2141
2142 if (!raw_name)
2143 raw_name = ada_type_name (desc_base_type (type));
2144
2145 if (!raw_name)
2146 return NULL;
2147
2148 name = (char *) alloca (strlen (raw_name) + 1);
2149 tail = strstr (raw_name, "___XP");
2150 type = desc_base_type (type);
2151
2152 memcpy (name, raw_name, tail - raw_name);
2153 name[tail - raw_name] = '\000';
2154
2155 shadow_type = ada_find_parallel_type_with_name (type, name);
2156
2157 if (shadow_type == NULL)
2158 {
2159 lim_warning (_("could not find bounds information on packed array"));
2160 return NULL;
2161 }
2162 shadow_type = check_typedef (shadow_type);
2163
2164 if (shadow_type->code () != TYPE_CODE_ARRAY)
2165 {
2166 lim_warning (_("could not understand bounds "
2167 "information on packed array"));
2168 return NULL;
2169 }
2170
2171 bits = decode_packed_array_bitsize (type);
2172 return constrained_packed_array_type (shadow_type, &bits);
2173 }
2174
2175 /* Helper function for decode_constrained_packed_array. Set the field
2176 bitsize on a series of packed arrays. Returns the number of
2177 elements in TYPE. */
2178
2179 static LONGEST
2180 recursively_update_array_bitsize (struct type *type)
2181 {
2182 gdb_assert (type->code () == TYPE_CODE_ARRAY);
2183
2184 LONGEST low, high;
2185 if (get_discrete_bounds (type->index_type (), &low, &high) < 0
2186 || low > high)
2187 return 0;
2188 LONGEST our_len = high - low + 1;
2189
2190 struct type *elt_type = TYPE_TARGET_TYPE (type);
2191 if (elt_type->code () == TYPE_CODE_ARRAY)
2192 {
2193 LONGEST elt_len = recursively_update_array_bitsize (elt_type);
2194 LONGEST elt_bitsize = elt_len * TYPE_FIELD_BITSIZE (elt_type, 0);
2195 TYPE_FIELD_BITSIZE (type, 0) = elt_bitsize;
2196
2197 TYPE_LENGTH (type) = ((our_len * elt_bitsize + HOST_CHAR_BIT - 1)
2198 / HOST_CHAR_BIT);
2199 }
2200
2201 return our_len;
2202 }
2203
2204 /* Given that ARR is a struct value *indicating a GNAT constrained packed
2205 array, returns a simple array that denotes that array. Its type is a
2206 standard GDB array type except that the BITSIZEs of the array
2207 target types are set to the number of bits in each element, and the
2208 type length is set appropriately. */
2209
2210 static struct value *
2211 decode_constrained_packed_array (struct value *arr)
2212 {
2213 struct type *type;
2214
2215 /* If our value is a pointer, then dereference it. Likewise if
2216 the value is a reference. Make sure that this operation does not
2217 cause the target type to be fixed, as this would indirectly cause
2218 this array to be decoded. The rest of the routine assumes that
2219 the array hasn't been decoded yet, so we use the basic "coerce_ref"
2220 and "value_ind" routines to perform the dereferencing, as opposed
2221 to using "ada_coerce_ref" or "ada_value_ind". */
2222 arr = coerce_ref (arr);
2223 if (ada_check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
2224 arr = value_ind (arr);
2225
2226 type = decode_constrained_packed_array_type (value_type (arr));
2227 if (type == NULL)
2228 {
2229 error (_("can't unpack array"));
2230 return NULL;
2231 }
2232
2233 /* Decoding the packed array type could not correctly set the field
2234 bitsizes for any dimension except the innermost, because the
2235 bounds may be variable and were not passed to that function. So,
2236 we further resolve the array bounds here and then update the
2237 sizes. */
2238 const gdb_byte *valaddr = value_contents_for_printing (arr);
2239 CORE_ADDR address = value_address (arr);
2240 gdb::array_view<const gdb_byte> view
2241 = gdb::make_array_view (valaddr, TYPE_LENGTH (type));
2242 type = resolve_dynamic_type (type, view, address);
2243 recursively_update_array_bitsize (type);
2244
2245 if (type_byte_order (value_type (arr)) == BFD_ENDIAN_BIG
2246 && ada_is_modular_type (value_type (arr)))
2247 {
2248 /* This is a (right-justified) modular type representing a packed
2249 array with no wrapper. In order to interpret the value through
2250 the (left-justified) packed array type we just built, we must
2251 first left-justify it. */
2252 int bit_size, bit_pos;
2253 ULONGEST mod;
2254
2255 mod = ada_modulus (value_type (arr)) - 1;
2256 bit_size = 0;
2257 while (mod > 0)
2258 {
2259 bit_size += 1;
2260 mod >>= 1;
2261 }
2262 bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size;
2263 arr = ada_value_primitive_packed_val (arr, NULL,
2264 bit_pos / HOST_CHAR_BIT,
2265 bit_pos % HOST_CHAR_BIT,
2266 bit_size,
2267 type);
2268 }
2269
2270 return coerce_unspec_val_to_type (arr, type);
2271 }
2272
2273
2274 /* The value of the element of packed array ARR at the ARITY indices
2275 given in IND. ARR must be a simple array. */
2276
2277 static struct value *
2278 value_subscript_packed (struct value *arr, int arity, struct value **ind)
2279 {
2280 int i;
2281 int bits, elt_off, bit_off;
2282 long elt_total_bit_offset;
2283 struct type *elt_type;
2284 struct value *v;
2285
2286 bits = 0;
2287 elt_total_bit_offset = 0;
2288 elt_type = ada_check_typedef (value_type (arr));
2289 for (i = 0; i < arity; i += 1)
2290 {
2291 if (elt_type->code () != TYPE_CODE_ARRAY
2292 || TYPE_FIELD_BITSIZE (elt_type, 0) == 0)
2293 error
2294 (_("attempt to do packed indexing of "
2295 "something other than a packed array"));
2296 else
2297 {
2298 struct type *range_type = elt_type->index_type ();
2299 LONGEST lowerbound, upperbound;
2300 LONGEST idx;
2301
2302 if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
2303 {
2304 lim_warning (_("don't know bounds of array"));
2305 lowerbound = upperbound = 0;
2306 }
2307
2308 idx = pos_atr (ind[i]);
2309 if (idx < lowerbound || idx > upperbound)
2310 lim_warning (_("packed array index %ld out of bounds"),
2311 (long) idx);
2312 bits = TYPE_FIELD_BITSIZE (elt_type, 0);
2313 elt_total_bit_offset += (idx - lowerbound) * bits;
2314 elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type));
2315 }
2316 }
2317 elt_off = elt_total_bit_offset / HOST_CHAR_BIT;
2318 bit_off = elt_total_bit_offset % HOST_CHAR_BIT;
2319
2320 v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off,
2321 bits, elt_type);
2322 return v;
2323 }
2324
2325 /* Non-zero iff TYPE includes negative integer values. */
2326
2327 static int
2328 has_negatives (struct type *type)
2329 {
2330 switch (type->code ())
2331 {
2332 default:
2333 return 0;
2334 case TYPE_CODE_INT:
2335 return !type->is_unsigned ();
2336 case TYPE_CODE_RANGE:
2337 return type->bounds ()->low.const_val () - type->bounds ()->bias < 0;
2338 }
2339 }
2340
2341 /* With SRC being a buffer containing BIT_SIZE bits of data at BIT_OFFSET,
2342 unpack that data into UNPACKED. UNPACKED_LEN is the size in bytes of
2343 the unpacked buffer.
2344
2345 The size of the unpacked buffer (UNPACKED_LEN) is expected to be large
2346 enough to contain at least BIT_OFFSET bits. If not, an error is raised.
2347
2348 IS_BIG_ENDIAN is nonzero if the data is stored in big endian mode,
2349 zero otherwise.
2350
2351 IS_SIGNED_TYPE is nonzero if the data corresponds to a signed type.
2352
2353 IS_SCALAR is nonzero if the data corresponds to a signed type. */
2354
2355 static void
2356 ada_unpack_from_contents (const gdb_byte *src, int bit_offset, int bit_size,
2357 gdb_byte *unpacked, int unpacked_len,
2358 int is_big_endian, int is_signed_type,
2359 int is_scalar)
2360 {
2361 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2362 int src_idx; /* Index into the source area */
2363 int src_bytes_left; /* Number of source bytes left to process. */
2364 int srcBitsLeft; /* Number of source bits left to move */
2365 int unusedLS; /* Number of bits in next significant
2366 byte of source that are unused */
2367
2368 int unpacked_idx; /* Index into the unpacked buffer */
2369 int unpacked_bytes_left; /* Number of bytes left to set in unpacked. */
2370
2371 unsigned long accum; /* Staging area for bits being transferred */
2372 int accumSize; /* Number of meaningful bits in accum */
2373 unsigned char sign;
2374
2375 /* Transmit bytes from least to most significant; delta is the direction
2376 the indices move. */
2377 int delta = is_big_endian ? -1 : 1;
2378
2379 /* Make sure that unpacked is large enough to receive the BIT_SIZE
2380 bits from SRC. .*/
2381 if ((bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT > unpacked_len)
2382 error (_("Cannot unpack %d bits into buffer of %d bytes"),
2383 bit_size, unpacked_len);
2384
2385 srcBitsLeft = bit_size;
2386 src_bytes_left = src_len;
2387 unpacked_bytes_left = unpacked_len;
2388 sign = 0;
2389
2390 if (is_big_endian)
2391 {
2392 src_idx = src_len - 1;
2393 if (is_signed_type
2394 && ((src[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1))))
2395 sign = ~0;
2396
2397 unusedLS =
2398 (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT)
2399 % HOST_CHAR_BIT;
2400
2401 if (is_scalar)
2402 {
2403 accumSize = 0;
2404 unpacked_idx = unpacked_len - 1;
2405 }
2406 else
2407 {
2408 /* Non-scalar values must be aligned at a byte boundary... */
2409 accumSize =
2410 (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT;
2411 /* ... And are placed at the beginning (most-significant) bytes
2412 of the target. */
2413 unpacked_idx = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT - 1;
2414 unpacked_bytes_left = unpacked_idx + 1;
2415 }
2416 }
2417 else
2418 {
2419 int sign_bit_offset = (bit_size + bit_offset - 1) % 8;
2420
2421 src_idx = unpacked_idx = 0;
2422 unusedLS = bit_offset;
2423 accumSize = 0;
2424
2425 if (is_signed_type && (src[src_len - 1] & (1 << sign_bit_offset)))
2426 sign = ~0;
2427 }
2428
2429 accum = 0;
2430 while (src_bytes_left > 0)
2431 {
2432 /* Mask for removing bits of the next source byte that are not
2433 part of the value. */
2434 unsigned int unusedMSMask =
2435 (1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) -
2436 1;
2437 /* Sign-extend bits for this byte. */
2438 unsigned int signMask = sign & ~unusedMSMask;
2439
2440 accum |=
2441 (((src[src_idx] >> unusedLS) & unusedMSMask) | signMask) << accumSize;
2442 accumSize += HOST_CHAR_BIT - unusedLS;
2443 if (accumSize >= HOST_CHAR_BIT)
2444 {
2445 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2446 accumSize -= HOST_CHAR_BIT;
2447 accum >>= HOST_CHAR_BIT;
2448 unpacked_bytes_left -= 1;
2449 unpacked_idx += delta;
2450 }
2451 srcBitsLeft -= HOST_CHAR_BIT - unusedLS;
2452 unusedLS = 0;
2453 src_bytes_left -= 1;
2454 src_idx += delta;
2455 }
2456 while (unpacked_bytes_left > 0)
2457 {
2458 accum |= sign << accumSize;
2459 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2460 accumSize -= HOST_CHAR_BIT;
2461 if (accumSize < 0)
2462 accumSize = 0;
2463 accum >>= HOST_CHAR_BIT;
2464 unpacked_bytes_left -= 1;
2465 unpacked_idx += delta;
2466 }
2467 }
2468
2469 /* Create a new value of type TYPE from the contents of OBJ starting
2470 at byte OFFSET, and bit offset BIT_OFFSET within that byte,
2471 proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then
2472 assigning through the result will set the field fetched from.
2473 VALADDR is ignored unless OBJ is NULL, in which case,
2474 VALADDR+OFFSET must address the start of storage containing the
2475 packed value. The value returned in this case is never an lval.
2476 Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */
2477
2478 struct value *
2479 ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
2480 long offset, int bit_offset, int bit_size,
2481 struct type *type)
2482 {
2483 struct value *v;
2484 const gdb_byte *src; /* First byte containing data to unpack */
2485 gdb_byte *unpacked;
2486 const int is_scalar = is_scalar_type (type);
2487 const int is_big_endian = type_byte_order (type) == BFD_ENDIAN_BIG;
2488 gdb::byte_vector staging;
2489
2490 type = ada_check_typedef (type);
2491
2492 if (obj == NULL)
2493 src = valaddr + offset;
2494 else
2495 src = value_contents (obj) + offset;
2496
2497 if (is_dynamic_type (type))
2498 {
2499 /* The length of TYPE might by dynamic, so we need to resolve
2500 TYPE in order to know its actual size, which we then use
2501 to create the contents buffer of the value we return.
2502 The difficulty is that the data containing our object is
2503 packed, and therefore maybe not at a byte boundary. So, what
2504 we do, is unpack the data into a byte-aligned buffer, and then
2505 use that buffer as our object's value for resolving the type. */
2506 int staging_len = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2507 staging.resize (staging_len);
2508
2509 ada_unpack_from_contents (src, bit_offset, bit_size,
2510 staging.data (), staging.size (),
2511 is_big_endian, has_negatives (type),
2512 is_scalar);
2513 type = resolve_dynamic_type (type, staging, 0);
2514 if (TYPE_LENGTH (type) < (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT)
2515 {
2516 /* This happens when the length of the object is dynamic,
2517 and is actually smaller than the space reserved for it.
2518 For instance, in an array of variant records, the bit_size
2519 we're given is the array stride, which is constant and
2520 normally equal to the maximum size of its element.
2521 But, in reality, each element only actually spans a portion
2522 of that stride. */
2523 bit_size = TYPE_LENGTH (type) * HOST_CHAR_BIT;
2524 }
2525 }
2526
2527 if (obj == NULL)
2528 {
2529 v = allocate_value (type);
2530 src = valaddr + offset;
2531 }
2532 else if (VALUE_LVAL (obj) == lval_memory && value_lazy (obj))
2533 {
2534 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2535 gdb_byte *buf;
2536
2537 v = value_at (type, value_address (obj) + offset);
2538 buf = (gdb_byte *) alloca (src_len);
2539 read_memory (value_address (v), buf, src_len);
2540 src = buf;
2541 }
2542 else
2543 {
2544 v = allocate_value (type);
2545 src = value_contents (obj) + offset;
2546 }
2547
2548 if (obj != NULL)
2549 {
2550 long new_offset = offset;
2551
2552 set_value_component_location (v, obj);
2553 set_value_bitpos (v, bit_offset + value_bitpos (obj));
2554 set_value_bitsize (v, bit_size);
2555 if (value_bitpos (v) >= HOST_CHAR_BIT)
2556 {
2557 ++new_offset;
2558 set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT);
2559 }
2560 set_value_offset (v, new_offset);
2561
2562 /* Also set the parent value. This is needed when trying to
2563 assign a new value (in inferior memory). */
2564 set_value_parent (v, obj);
2565 }
2566 else
2567 set_value_bitsize (v, bit_size);
2568 unpacked = value_contents_writeable (v);
2569
2570 if (bit_size == 0)
2571 {
2572 memset (unpacked, 0, TYPE_LENGTH (type));
2573 return v;
2574 }
2575
2576 if (staging.size () == TYPE_LENGTH (type))
2577 {
2578 /* Small short-cut: If we've unpacked the data into a buffer
2579 of the same size as TYPE's length, then we can reuse that,
2580 instead of doing the unpacking again. */
2581 memcpy (unpacked, staging.data (), staging.size ());
2582 }
2583 else
2584 ada_unpack_from_contents (src, bit_offset, bit_size,
2585 unpacked, TYPE_LENGTH (type),
2586 is_big_endian, has_negatives (type), is_scalar);
2587
2588 return v;
2589 }
2590
2591 /* Store the contents of FROMVAL into the location of TOVAL.
2592 Return a new value with the location of TOVAL and contents of
2593 FROMVAL. Handles assignment into packed fields that have
2594 floating-point or non-scalar types. */
2595
2596 static struct value *
2597 ada_value_assign (struct value *toval, struct value *fromval)
2598 {
2599 struct type *type = value_type (toval);
2600 int bits = value_bitsize (toval);
2601
2602 toval = ada_coerce_ref (toval);
2603 fromval = ada_coerce_ref (fromval);
2604
2605 if (ada_is_direct_array_type (value_type (toval)))
2606 toval = ada_coerce_to_simple_array (toval);
2607 if (ada_is_direct_array_type (value_type (fromval)))
2608 fromval = ada_coerce_to_simple_array (fromval);
2609
2610 if (!deprecated_value_modifiable (toval))
2611 error (_("Left operand of assignment is not a modifiable lvalue."));
2612
2613 if (VALUE_LVAL (toval) == lval_memory
2614 && bits > 0
2615 && (type->code () == TYPE_CODE_FLT
2616 || type->code () == TYPE_CODE_STRUCT))
2617 {
2618 int len = (value_bitpos (toval)
2619 + bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2620 int from_size;
2621 gdb_byte *buffer = (gdb_byte *) alloca (len);
2622 struct value *val;
2623 CORE_ADDR to_addr = value_address (toval);
2624
2625 if (type->code () == TYPE_CODE_FLT)
2626 fromval = value_cast (type, fromval);
2627
2628 read_memory (to_addr, buffer, len);
2629 from_size = value_bitsize (fromval);
2630 if (from_size == 0)
2631 from_size = TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT;
2632
2633 const int is_big_endian = type_byte_order (type) == BFD_ENDIAN_BIG;
2634 ULONGEST from_offset = 0;
2635 if (is_big_endian && is_scalar_type (value_type (fromval)))
2636 from_offset = from_size - bits;
2637 copy_bitwise (buffer, value_bitpos (toval),
2638 value_contents (fromval), from_offset,
2639 bits, is_big_endian);
2640 write_memory_with_notification (to_addr, buffer, len);
2641
2642 val = value_copy (toval);
2643 memcpy (value_contents_raw (val), value_contents (fromval),
2644 TYPE_LENGTH (type));
2645 deprecated_set_value_type (val, type);
2646
2647 return val;
2648 }
2649
2650 return value_assign (toval, fromval);
2651 }
2652
2653
2654 /* Given that COMPONENT is a memory lvalue that is part of the lvalue
2655 CONTAINER, assign the contents of VAL to COMPONENTS's place in
2656 CONTAINER. Modifies the VALUE_CONTENTS of CONTAINER only, not
2657 COMPONENT, and not the inferior's memory. The current contents
2658 of COMPONENT are ignored.
2659
2660 Although not part of the initial design, this function also works
2661 when CONTAINER and COMPONENT are not_lval's: it works as if CONTAINER
2662 had a null address, and COMPONENT had an address which is equal to
2663 its offset inside CONTAINER. */
2664
2665 static void
2666 value_assign_to_component (struct value *container, struct value *component,
2667 struct value *val)
2668 {
2669 LONGEST offset_in_container =
2670 (LONGEST) (value_address (component) - value_address (container));
2671 int bit_offset_in_container =
2672 value_bitpos (component) - value_bitpos (container);
2673 int bits;
2674
2675 val = value_cast (value_type (component), val);
2676
2677 if (value_bitsize (component) == 0)
2678 bits = TARGET_CHAR_BIT * TYPE_LENGTH (value_type (component));
2679 else
2680 bits = value_bitsize (component);
2681
2682 if (type_byte_order (value_type (container)) == BFD_ENDIAN_BIG)
2683 {
2684 int src_offset;
2685
2686 if (is_scalar_type (check_typedef (value_type (component))))
2687 src_offset
2688 = TYPE_LENGTH (value_type (component)) * TARGET_CHAR_BIT - bits;
2689 else
2690 src_offset = 0;
2691 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2692 value_bitpos (container) + bit_offset_in_container,
2693 value_contents (val), src_offset, bits, 1);
2694 }
2695 else
2696 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2697 value_bitpos (container) + bit_offset_in_container,
2698 value_contents (val), 0, bits, 0);
2699 }
2700
2701 /* Determine if TYPE is an access to an unconstrained array. */
2702
2703 bool
2704 ada_is_access_to_unconstrained_array (struct type *type)
2705 {
2706 return (type->code () == TYPE_CODE_TYPEDEF
2707 && is_thick_pntr (ada_typedef_target_type (type)));
2708 }
2709
2710 /* The value of the element of array ARR at the ARITY indices given in IND.
2711 ARR may be either a simple array, GNAT array descriptor, or pointer
2712 thereto. */
2713
2714 struct value *
2715 ada_value_subscript (struct value *arr, int arity, struct value **ind)
2716 {
2717 int k;
2718 struct value *elt;
2719 struct type *elt_type;
2720
2721 elt = ada_coerce_to_simple_array (arr);
2722
2723 elt_type = ada_check_typedef (value_type (elt));
2724 if (elt_type->code () == TYPE_CODE_ARRAY
2725 && TYPE_FIELD_BITSIZE (elt_type, 0) > 0)
2726 return value_subscript_packed (elt, arity, ind);
2727
2728 for (k = 0; k < arity; k += 1)
2729 {
2730 struct type *saved_elt_type = TYPE_TARGET_TYPE (elt_type);
2731
2732 if (elt_type->code () != TYPE_CODE_ARRAY)
2733 error (_("too many subscripts (%d expected)"), k);
2734
2735 elt = value_subscript (elt, pos_atr (ind[k]));
2736
2737 if (ada_is_access_to_unconstrained_array (saved_elt_type)
2738 && value_type (elt)->code () != TYPE_CODE_TYPEDEF)
2739 {
2740 /* The element is a typedef to an unconstrained array,
2741 except that the value_subscript call stripped the
2742 typedef layer. The typedef layer is GNAT's way to
2743 specify that the element is, at the source level, an
2744 access to the unconstrained array, rather than the
2745 unconstrained array. So, we need to restore that
2746 typedef layer, which we can do by forcing the element's
2747 type back to its original type. Otherwise, the returned
2748 value is going to be printed as the array, rather
2749 than as an access. Another symptom of the same issue
2750 would be that an expression trying to dereference the
2751 element would also be improperly rejected. */
2752 deprecated_set_value_type (elt, saved_elt_type);
2753 }
2754
2755 elt_type = ada_check_typedef (value_type (elt));
2756 }
2757
2758 return elt;
2759 }
2760
2761 /* Assuming ARR is a pointer to a GDB array, the value of the element
2762 of *ARR at the ARITY indices given in IND.
2763 Does not read the entire array into memory.
2764
2765 Note: Unlike what one would expect, this function is used instead of
2766 ada_value_subscript for basically all non-packed array types. The reason
2767 for this is that a side effect of doing our own pointer arithmetics instead
2768 of relying on value_subscript is that there is no implicit typedef peeling.
2769 This is important for arrays of array accesses, where it allows us to
2770 preserve the fact that the array's element is an array access, where the
2771 access part os encoded in a typedef layer. */
2772
2773 static struct value *
2774 ada_value_ptr_subscript (struct value *arr, int arity, struct value **ind)
2775 {
2776 int k;
2777 struct value *array_ind = ada_value_ind (arr);
2778 struct type *type
2779 = check_typedef (value_enclosing_type (array_ind));
2780
2781 if (type->code () == TYPE_CODE_ARRAY
2782 && TYPE_FIELD_BITSIZE (type, 0) > 0)
2783 return value_subscript_packed (array_ind, arity, ind);
2784
2785 for (k = 0; k < arity; k += 1)
2786 {
2787 LONGEST lwb, upb;
2788
2789 if (type->code () != TYPE_CODE_ARRAY)
2790 error (_("too many subscripts (%d expected)"), k);
2791 arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
2792 value_copy (arr));
2793 get_discrete_bounds (type->index_type (), &lwb, &upb);
2794 arr = value_ptradd (arr, pos_atr (ind[k]) - lwb);
2795 type = TYPE_TARGET_TYPE (type);
2796 }
2797
2798 return value_ind (arr);
2799 }
2800
2801 /* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the
2802 actual type of ARRAY_PTR is ignored), returns the Ada slice of
2803 HIGH'Pos-LOW'Pos+1 elements starting at index LOW. The lower bound of
2804 this array is LOW, as per Ada rules. */
2805 static struct value *
2806 ada_value_slice_from_ptr (struct value *array_ptr, struct type *type,
2807 int low, int high)
2808 {
2809 struct type *type0 = ada_check_typedef (type);
2810 struct type *base_index_type = TYPE_TARGET_TYPE (type0->index_type ());
2811 struct type *index_type
2812 = create_static_range_type (NULL, base_index_type, low, high);
2813 struct type *slice_type = create_array_type_with_stride
2814 (NULL, TYPE_TARGET_TYPE (type0), index_type,
2815 type0->dyn_prop (DYN_PROP_BYTE_STRIDE),
2816 TYPE_FIELD_BITSIZE (type0, 0));
2817 int base_low = ada_discrete_type_low_bound (type0->index_type ());
2818 LONGEST base_low_pos, low_pos;
2819 CORE_ADDR base;
2820
2821 if (!discrete_position (base_index_type, low, &low_pos)
2822 || !discrete_position (base_index_type, base_low, &base_low_pos))
2823 {
2824 warning (_("unable to get positions in slice, use bounds instead"));
2825 low_pos = low;
2826 base_low_pos = base_low;
2827 }
2828
2829 ULONGEST stride = TYPE_FIELD_BITSIZE (slice_type, 0) / 8;
2830 if (stride == 0)
2831 stride = TYPE_LENGTH (TYPE_TARGET_TYPE (type0));
2832
2833 base = value_as_address (array_ptr) + (low_pos - base_low_pos) * stride;
2834 return value_at_lazy (slice_type, base);
2835 }
2836
2837
2838 static struct value *
2839 ada_value_slice (struct value *array, int low, int high)
2840 {
2841 struct type *type = ada_check_typedef (value_type (array));
2842 struct type *base_index_type = TYPE_TARGET_TYPE (type->index_type ());
2843 struct type *index_type
2844 = create_static_range_type (NULL, type->index_type (), low, high);
2845 struct type *slice_type = create_array_type_with_stride
2846 (NULL, TYPE_TARGET_TYPE (type), index_type,
2847 type->dyn_prop (DYN_PROP_BYTE_STRIDE),
2848 TYPE_FIELD_BITSIZE (type, 0));
2849 LONGEST low_pos, high_pos;
2850
2851 if (!discrete_position (base_index_type, low, &low_pos)
2852 || !discrete_position (base_index_type, high, &high_pos))
2853 {
2854 warning (_("unable to get positions in slice, use bounds instead"));
2855 low_pos = low;
2856 high_pos = high;
2857 }
2858
2859 return value_cast (slice_type,
2860 value_slice (array, low, high_pos - low_pos + 1));
2861 }
2862
2863 /* If type is a record type in the form of a standard GNAT array
2864 descriptor, returns the number of dimensions for type. If arr is a
2865 simple array, returns the number of "array of"s that prefix its
2866 type designation. Otherwise, returns 0. */
2867
2868 int
2869 ada_array_arity (struct type *type)
2870 {
2871 int arity;
2872
2873 if (type == NULL)
2874 return 0;
2875
2876 type = desc_base_type (type);
2877
2878 arity = 0;
2879 if (type->code () == TYPE_CODE_STRUCT)
2880 return desc_arity (desc_bounds_type (type));
2881 else
2882 while (type->code () == TYPE_CODE_ARRAY)
2883 {
2884 arity += 1;
2885 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
2886 }
2887
2888 return arity;
2889 }
2890
2891 /* If TYPE is a record type in the form of a standard GNAT array
2892 descriptor or a simple array type, returns the element type for
2893 TYPE after indexing by NINDICES indices, or by all indices if
2894 NINDICES is -1. Otherwise, returns NULL. */
2895
2896 struct type *
2897 ada_array_element_type (struct type *type, int nindices)
2898 {
2899 type = desc_base_type (type);
2900
2901 if (type->code () == TYPE_CODE_STRUCT)
2902 {
2903 int k;
2904 struct type *p_array_type;
2905
2906 p_array_type = desc_data_target_type (type);
2907
2908 k = ada_array_arity (type);
2909 if (k == 0)
2910 return NULL;
2911
2912 /* Initially p_array_type = elt_type(*)[]...(k times)...[]. */
2913 if (nindices >= 0 && k > nindices)
2914 k = nindices;
2915 while (k > 0 && p_array_type != NULL)
2916 {
2917 p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type));
2918 k -= 1;
2919 }
2920 return p_array_type;
2921 }
2922 else if (type->code () == TYPE_CODE_ARRAY)
2923 {
2924 while (nindices != 0 && type->code () == TYPE_CODE_ARRAY)
2925 {
2926 type = TYPE_TARGET_TYPE (type);
2927 nindices -= 1;
2928 }
2929 return type;
2930 }
2931
2932 return NULL;
2933 }
2934
2935 /* The type of nth index in arrays of given type (n numbering from 1).
2936 Does not examine memory. Throws an error if N is invalid or TYPE
2937 is not an array type. NAME is the name of the Ada attribute being
2938 evaluated ('range, 'first, 'last, or 'length); it is used in building
2939 the error message. */
2940
2941 static struct type *
2942 ada_index_type (struct type *type, int n, const char *name)
2943 {
2944 struct type *result_type;
2945
2946 type = desc_base_type (type);
2947
2948 if (n < 0 || n > ada_array_arity (type))
2949 error (_("invalid dimension number to '%s"), name);
2950
2951 if (ada_is_simple_array_type (type))
2952 {
2953 int i;
2954
2955 for (i = 1; i < n; i += 1)
2956 type = TYPE_TARGET_TYPE (type);
2957 result_type = TYPE_TARGET_TYPE (type->index_type ());
2958 /* FIXME: The stabs type r(0,0);bound;bound in an array type
2959 has a target type of TYPE_CODE_UNDEF. We compensate here, but
2960 perhaps stabsread.c would make more sense. */
2961 if (result_type && result_type->code () == TYPE_CODE_UNDEF)
2962 result_type = NULL;
2963 }
2964 else
2965 {
2966 result_type = desc_index_type (desc_bounds_type (type), n);
2967 if (result_type == NULL)
2968 error (_("attempt to take bound of something that is not an array"));
2969 }
2970
2971 return result_type;
2972 }
2973
2974 /* Given that arr is an array type, returns the lower bound of the
2975 Nth index (numbering from 1) if WHICH is 0, and the upper bound if
2976 WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an
2977 array-descriptor type. It works for other arrays with bounds supplied
2978 by run-time quantities other than discriminants. */
2979
2980 static LONGEST
2981 ada_array_bound_from_type (struct type *arr_type, int n, int which)
2982 {
2983 struct type *type, *index_type_desc, *index_type;
2984 int i;
2985
2986 gdb_assert (which == 0 || which == 1);
2987
2988 if (ada_is_constrained_packed_array_type (arr_type))
2989 arr_type = decode_constrained_packed_array_type (arr_type);
2990
2991 if (arr_type == NULL || !ada_is_simple_array_type (arr_type))
2992 return (LONGEST) - which;
2993
2994 if (arr_type->code () == TYPE_CODE_PTR)
2995 type = TYPE_TARGET_TYPE (arr_type);
2996 else
2997 type = arr_type;
2998
2999 if (type->is_fixed_instance ())
3000 {
3001 /* The array has already been fixed, so we do not need to
3002 check the parallel ___XA type again. That encoding has
3003 already been applied, so ignore it now. */
3004 index_type_desc = NULL;
3005 }
3006 else
3007 {
3008 index_type_desc = ada_find_parallel_type (type, "___XA");
3009 ada_fixup_array_indexes_type (index_type_desc);
3010 }
3011
3012 if (index_type_desc != NULL)
3013 index_type = to_fixed_range_type (index_type_desc->field (n - 1).type (),
3014 NULL);
3015 else
3016 {
3017 struct type *elt_type = check_typedef (type);
3018
3019 for (i = 1; i < n; i++)
3020 elt_type = check_typedef (TYPE_TARGET_TYPE (elt_type));
3021
3022 index_type = elt_type->index_type ();
3023 }
3024
3025 return
3026 (LONGEST) (which == 0
3027 ? ada_discrete_type_low_bound (index_type)
3028 : ada_discrete_type_high_bound (index_type));
3029 }
3030
3031 /* Given that arr is an array value, returns the lower bound of the
3032 nth index (numbering from 1) if WHICH is 0, and the upper bound if
3033 WHICH is 1. This routine will also work for arrays with bounds
3034 supplied by run-time quantities other than discriminants. */
3035
3036 static LONGEST
3037 ada_array_bound (struct value *arr, int n, int which)
3038 {
3039 struct type *arr_type;
3040
3041 if (check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
3042 arr = value_ind (arr);
3043 arr_type = value_enclosing_type (arr);
3044
3045 if (ada_is_constrained_packed_array_type (arr_type))
3046 return ada_array_bound (decode_constrained_packed_array (arr), n, which);
3047 else if (ada_is_simple_array_type (arr_type))
3048 return ada_array_bound_from_type (arr_type, n, which);
3049 else
3050 return value_as_long (desc_one_bound (desc_bounds (arr), n, which));
3051 }
3052
3053 /* Given that arr is an array value, returns the length of the
3054 nth index. This routine will also work for arrays with bounds
3055 supplied by run-time quantities other than discriminants.
3056 Does not work for arrays indexed by enumeration types with representation
3057 clauses at the moment. */
3058
3059 static LONGEST
3060 ada_array_length (struct value *arr, int n)
3061 {
3062 struct type *arr_type, *index_type;
3063 int low, high;
3064
3065 if (check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
3066 arr = value_ind (arr);
3067 arr_type = value_enclosing_type (arr);
3068
3069 if (ada_is_constrained_packed_array_type (arr_type))
3070 return ada_array_length (decode_constrained_packed_array (arr), n);
3071
3072 if (ada_is_simple_array_type (arr_type))
3073 {
3074 low = ada_array_bound_from_type (arr_type, n, 0);
3075 high = ada_array_bound_from_type (arr_type, n, 1);
3076 }
3077 else
3078 {
3079 low = value_as_long (desc_one_bound (desc_bounds (arr), n, 0));
3080 high = value_as_long (desc_one_bound (desc_bounds (arr), n, 1));
3081 }
3082
3083 arr_type = check_typedef (arr_type);
3084 index_type = ada_index_type (arr_type, n, "length");
3085 if (index_type != NULL)
3086 {
3087 struct type *base_type;
3088 if (index_type->code () == TYPE_CODE_RANGE)
3089 base_type = TYPE_TARGET_TYPE (index_type);
3090 else
3091 base_type = index_type;
3092
3093 low = pos_atr (value_from_longest (base_type, low));
3094 high = pos_atr (value_from_longest (base_type, high));
3095 }
3096 return high - low + 1;
3097 }
3098
3099 /* An array whose type is that of ARR_TYPE (an array type), with
3100 bounds LOW to HIGH, but whose contents are unimportant. If HIGH is
3101 less than LOW, then LOW-1 is used. */
3102
3103 static struct value *
3104 empty_array (struct type *arr_type, int low, int high)
3105 {
3106 struct type *arr_type0 = ada_check_typedef (arr_type);
3107 struct type *index_type
3108 = create_static_range_type
3109 (NULL, TYPE_TARGET_TYPE (arr_type0->index_type ()), low,
3110 high < low ? low - 1 : high);
3111 struct type *elt_type = ada_array_element_type (arr_type0, 1);
3112
3113 return allocate_value (create_array_type (NULL, elt_type, index_type));
3114 }
3115 \f
3116
3117 /* Name resolution */
3118
3119 /* The "decoded" name for the user-definable Ada operator corresponding
3120 to OP. */
3121
3122 static const char *
3123 ada_decoded_op_name (enum exp_opcode op)
3124 {
3125 int i;
3126
3127 for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
3128 {
3129 if (ada_opname_table[i].op == op)
3130 return ada_opname_table[i].decoded;
3131 }
3132 error (_("Could not find operator name for opcode"));
3133 }
3134
3135 /* Returns true (non-zero) iff decoded name N0 should appear before N1
3136 in a listing of choices during disambiguation (see sort_choices, below).
3137 The idea is that overloadings of a subprogram name from the
3138 same package should sort in their source order. We settle for ordering
3139 such symbols by their trailing number (__N or $N). */
3140
3141 static int
3142 encoded_ordered_before (const char *N0, const char *N1)
3143 {
3144 if (N1 == NULL)
3145 return 0;
3146 else if (N0 == NULL)
3147 return 1;
3148 else
3149 {
3150 int k0, k1;
3151
3152 for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1)
3153 ;
3154 for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1)
3155 ;
3156 if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000'
3157 && (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000')
3158 {
3159 int n0, n1;
3160
3161 n0 = k0;
3162 while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_')
3163 n0 -= 1;
3164 n1 = k1;
3165 while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_')
3166 n1 -= 1;
3167 if (n0 == n1 && strncmp (N0, N1, n0) == 0)
3168 return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1));
3169 }
3170 return (strcmp (N0, N1) < 0);
3171 }
3172 }
3173
3174 /* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the
3175 encoded names. */
3176
3177 static void
3178 sort_choices (struct block_symbol syms[], int nsyms)
3179 {
3180 int i;
3181
3182 for (i = 1; i < nsyms; i += 1)
3183 {
3184 struct block_symbol sym = syms[i];
3185 int j;
3186
3187 for (j = i - 1; j >= 0; j -= 1)
3188 {
3189 if (encoded_ordered_before (syms[j].symbol->linkage_name (),
3190 sym.symbol->linkage_name ()))
3191 break;
3192 syms[j + 1] = syms[j];
3193 }
3194 syms[j + 1] = sym;
3195 }
3196 }
3197
3198 /* Whether GDB should display formals and return types for functions in the
3199 overloads selection menu. */
3200 static bool print_signatures = true;
3201
3202 /* Print the signature for SYM on STREAM according to the FLAGS options. For
3203 all but functions, the signature is just the name of the symbol. For
3204 functions, this is the name of the function, the list of types for formals
3205 and the return type (if any). */
3206
3207 static void
3208 ada_print_symbol_signature (struct ui_file *stream, struct symbol *sym,
3209 const struct type_print_options *flags)
3210 {
3211 struct type *type = SYMBOL_TYPE (sym);
3212
3213 fprintf_filtered (stream, "%s", sym->print_name ());
3214 if (!print_signatures
3215 || type == NULL
3216 || type->code () != TYPE_CODE_FUNC)
3217 return;
3218
3219 if (type->num_fields () > 0)
3220 {
3221 int i;
3222
3223 fprintf_filtered (stream, " (");
3224 for (i = 0; i < type->num_fields (); ++i)
3225 {
3226 if (i > 0)
3227 fprintf_filtered (stream, "; ");
3228 ada_print_type (type->field (i).type (), NULL, stream, -1, 0,
3229 flags);
3230 }
3231 fprintf_filtered (stream, ")");
3232 }
3233 if (TYPE_TARGET_TYPE (type) != NULL
3234 && TYPE_TARGET_TYPE (type)->code () != TYPE_CODE_VOID)
3235 {
3236 fprintf_filtered (stream, " return ");
3237 ada_print_type (TYPE_TARGET_TYPE (type), NULL, stream, -1, 0, flags);
3238 }
3239 }
3240
3241 /* Read and validate a set of numeric choices from the user in the
3242 range 0 .. N_CHOICES-1. Place the results in increasing
3243 order in CHOICES[0 .. N-1], and return N.
3244
3245 The user types choices as a sequence of numbers on one line
3246 separated by blanks, encoding them as follows:
3247
3248 + A choice of 0 means to cancel the selection, throwing an error.
3249 + If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1.
3250 + The user chooses k by typing k+IS_ALL_CHOICE+1.
3251
3252 The user is not allowed to choose more than MAX_RESULTS values.
3253
3254 ANNOTATION_SUFFIX, if present, is used to annotate the input
3255 prompts (for use with the -f switch). */
3256
3257 static int
3258 get_selections (int *choices, int n_choices, int max_results,
3259 int is_all_choice, const char *annotation_suffix)
3260 {
3261 const char *args;
3262 const char *prompt;
3263 int n_chosen;
3264 int first_choice = is_all_choice ? 2 : 1;
3265
3266 prompt = getenv ("PS2");
3267 if (prompt == NULL)
3268 prompt = "> ";
3269
3270 args = command_line_input (prompt, annotation_suffix);
3271
3272 if (args == NULL)
3273 error_no_arg (_("one or more choice numbers"));
3274
3275 n_chosen = 0;
3276
3277 /* Set choices[0 .. n_chosen-1] to the users' choices in ascending
3278 order, as given in args. Choices are validated. */
3279 while (1)
3280 {
3281 char *args2;
3282 int choice, j;
3283
3284 args = skip_spaces (args);
3285 if (*args == '\0' && n_chosen == 0)
3286 error_no_arg (_("one or more choice numbers"));
3287 else if (*args == '\0')
3288 break;
3289
3290 choice = strtol (args, &args2, 10);
3291 if (args == args2 || choice < 0
3292 || choice > n_choices + first_choice - 1)
3293 error (_("Argument must be choice number"));
3294 args = args2;
3295
3296 if (choice == 0)
3297 error (_("cancelled"));
3298
3299 if (choice < first_choice)
3300 {
3301 n_chosen = n_choices;
3302 for (j = 0; j < n_choices; j += 1)
3303 choices[j] = j;
3304 break;
3305 }
3306 choice -= first_choice;
3307
3308 for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1)
3309 {
3310 }
3311
3312 if (j < 0 || choice != choices[j])
3313 {
3314 int k;
3315
3316 for (k = n_chosen - 1; k > j; k -= 1)
3317 choices[k + 1] = choices[k];
3318 choices[j + 1] = choice;
3319 n_chosen += 1;
3320 }
3321 }
3322
3323 if (n_chosen > max_results)
3324 error (_("Select no more than %d of the above"), max_results);
3325
3326 return n_chosen;
3327 }
3328
3329 /* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0
3330 by asking the user (if necessary), returning the number selected,
3331 and setting the first elements of SYMS items. Error if no symbols
3332 selected. */
3333
3334 /* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought
3335 to be re-integrated one of these days. */
3336
3337 static int
3338 user_select_syms (struct block_symbol *syms, int nsyms, int max_results)
3339 {
3340 int i;
3341 int *chosen = XALLOCAVEC (int , nsyms);
3342 int n_chosen;
3343 int first_choice = (max_results == 1) ? 1 : 2;
3344 const char *select_mode = multiple_symbols_select_mode ();
3345
3346 if (max_results < 1)
3347 error (_("Request to select 0 symbols!"));
3348 if (nsyms <= 1)
3349 return nsyms;
3350
3351 if (select_mode == multiple_symbols_cancel)
3352 error (_("\
3353 canceled because the command is ambiguous\n\
3354 See set/show multiple-symbol."));
3355
3356 /* If select_mode is "all", then return all possible symbols.
3357 Only do that if more than one symbol can be selected, of course.
3358 Otherwise, display the menu as usual. */
3359 if (select_mode == multiple_symbols_all && max_results > 1)
3360 return nsyms;
3361
3362 printf_filtered (_("[0] cancel\n"));
3363 if (max_results > 1)
3364 printf_filtered (_("[1] all\n"));
3365
3366 sort_choices (syms, nsyms);
3367
3368 for (i = 0; i < nsyms; i += 1)
3369 {
3370 if (syms[i].symbol == NULL)
3371 continue;
3372
3373 if (SYMBOL_CLASS (syms[i].symbol) == LOC_BLOCK)
3374 {
3375 struct symtab_and_line sal =
3376 find_function_start_sal (syms[i].symbol, 1);
3377
3378 printf_filtered ("[%d] ", i + first_choice);
3379 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3380 &type_print_raw_options);
3381 if (sal.symtab == NULL)
3382 printf_filtered (_(" at %p[<no source file available>%p]:%d\n"),
3383 metadata_style.style ().ptr (), nullptr, sal.line);
3384 else
3385 printf_filtered
3386 (_(" at %ps:%d\n"),
3387 styled_string (file_name_style.style (),
3388 symtab_to_filename_for_display (sal.symtab)),
3389 sal.line);
3390 continue;
3391 }
3392 else
3393 {
3394 int is_enumeral =
3395 (SYMBOL_CLASS (syms[i].symbol) == LOC_CONST
3396 && SYMBOL_TYPE (syms[i].symbol) != NULL
3397 && SYMBOL_TYPE (syms[i].symbol)->code () == TYPE_CODE_ENUM);
3398 struct symtab *symtab = NULL;
3399
3400 if (SYMBOL_OBJFILE_OWNED (syms[i].symbol))
3401 symtab = symbol_symtab (syms[i].symbol);
3402
3403 if (SYMBOL_LINE (syms[i].symbol) != 0 && symtab != NULL)
3404 {
3405 printf_filtered ("[%d] ", i + first_choice);
3406 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3407 &type_print_raw_options);
3408 printf_filtered (_(" at %s:%d\n"),
3409 symtab_to_filename_for_display (symtab),
3410 SYMBOL_LINE (syms[i].symbol));
3411 }
3412 else if (is_enumeral
3413 && SYMBOL_TYPE (syms[i].symbol)->name () != NULL)
3414 {
3415 printf_filtered (("[%d] "), i + first_choice);
3416 ada_print_type (SYMBOL_TYPE (syms[i].symbol), NULL,
3417 gdb_stdout, -1, 0, &type_print_raw_options);
3418 printf_filtered (_("'(%s) (enumeral)\n"),
3419 syms[i].symbol->print_name ());
3420 }
3421 else
3422 {
3423 printf_filtered ("[%d] ", i + first_choice);
3424 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3425 &type_print_raw_options);
3426
3427 if (symtab != NULL)
3428 printf_filtered (is_enumeral
3429 ? _(" in %s (enumeral)\n")
3430 : _(" at %s:?\n"),
3431 symtab_to_filename_for_display (symtab));
3432 else
3433 printf_filtered (is_enumeral
3434 ? _(" (enumeral)\n")
3435 : _(" at ?\n"));
3436 }
3437 }
3438 }
3439
3440 n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1,
3441 "overload-choice");
3442
3443 for (i = 0; i < n_chosen; i += 1)
3444 syms[i] = syms[chosen[i]];
3445
3446 return n_chosen;
3447 }
3448
3449 /* Resolve the operator of the subexpression beginning at
3450 position *POS of *EXPP. "Resolving" consists of replacing
3451 the symbols that have undefined namespaces in OP_VAR_VALUE nodes
3452 with their resolutions, replacing built-in operators with
3453 function calls to user-defined operators, where appropriate, and,
3454 when DEPROCEDURE_P is non-zero, converting function-valued variables
3455 into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions
3456 are as in ada_resolve, above. */
3457
3458 static struct value *
3459 resolve_subexp (expression_up *expp, int *pos, int deprocedure_p,
3460 struct type *context_type, int parse_completion,
3461 innermost_block_tracker *tracker)
3462 {
3463 int pc = *pos;
3464 int i;
3465 struct expression *exp; /* Convenience: == *expp. */
3466 enum exp_opcode op = (*expp)->elts[pc].opcode;
3467 struct value **argvec; /* Vector of operand types (alloca'ed). */
3468 int nargs; /* Number of operands. */
3469 int oplen;
3470
3471 argvec = NULL;
3472 nargs = 0;
3473 exp = expp->get ();
3474
3475 /* Pass one: resolve operands, saving their types and updating *pos,
3476 if needed. */
3477 switch (op)
3478 {
3479 case OP_FUNCALL:
3480 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3481 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3482 *pos += 7;
3483 else
3484 {
3485 *pos += 3;
3486 resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3487 }
3488 nargs = longest_to_int (exp->elts[pc + 1].longconst);
3489 break;
3490
3491 case UNOP_ADDR:
3492 *pos += 1;
3493 resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3494 break;
3495
3496 case UNOP_QUAL:
3497 *pos += 3;
3498 resolve_subexp (expp, pos, 1, check_typedef (exp->elts[pc + 1].type),
3499 parse_completion, tracker);
3500 break;
3501
3502 case OP_ATR_MODULUS:
3503 case OP_ATR_SIZE:
3504 case OP_ATR_TAG:
3505 case OP_ATR_FIRST:
3506 case OP_ATR_LAST:
3507 case OP_ATR_LENGTH:
3508 case OP_ATR_POS:
3509 case OP_ATR_VAL:
3510 case OP_ATR_MIN:
3511 case OP_ATR_MAX:
3512 case TERNOP_IN_RANGE:
3513 case BINOP_IN_BOUNDS:
3514 case UNOP_IN_RANGE:
3515 case OP_AGGREGATE:
3516 case OP_OTHERS:
3517 case OP_CHOICES:
3518 case OP_POSITIONAL:
3519 case OP_DISCRETE_RANGE:
3520 case OP_NAME:
3521 ada_forward_operator_length (exp, pc, &oplen, &nargs);
3522 *pos += oplen;
3523 break;
3524
3525 case BINOP_ASSIGN:
3526 {
3527 struct value *arg1;
3528
3529 *pos += 1;
3530 arg1 = resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3531 if (arg1 == NULL)
3532 resolve_subexp (expp, pos, 1, NULL, parse_completion, tracker);
3533 else
3534 resolve_subexp (expp, pos, 1, value_type (arg1), parse_completion,
3535 tracker);
3536 break;
3537 }
3538
3539 case UNOP_CAST:
3540 *pos += 3;
3541 nargs = 1;
3542 break;
3543
3544 case BINOP_ADD:
3545 case BINOP_SUB:
3546 case BINOP_MUL:
3547 case BINOP_DIV:
3548 case BINOP_REM:
3549 case BINOP_MOD:
3550 case BINOP_EXP:
3551 case BINOP_CONCAT:
3552 case BINOP_LOGICAL_AND:
3553 case BINOP_LOGICAL_OR:
3554 case BINOP_BITWISE_AND:
3555 case BINOP_BITWISE_IOR:
3556 case BINOP_BITWISE_XOR:
3557
3558 case BINOP_EQUAL:
3559 case BINOP_NOTEQUAL:
3560 case BINOP_LESS:
3561 case BINOP_GTR:
3562 case BINOP_LEQ:
3563 case BINOP_GEQ:
3564
3565 case BINOP_REPEAT:
3566 case BINOP_SUBSCRIPT:
3567 case BINOP_COMMA:
3568 *pos += 1;
3569 nargs = 2;
3570 break;
3571
3572 case UNOP_NEG:
3573 case UNOP_PLUS:
3574 case UNOP_LOGICAL_NOT:
3575 case UNOP_ABS:
3576 case UNOP_IND:
3577 *pos += 1;
3578 nargs = 1;
3579 break;
3580
3581 case OP_LONG:
3582 case OP_FLOAT:
3583 case OP_VAR_VALUE:
3584 case OP_VAR_MSYM_VALUE:
3585 *pos += 4;
3586 break;
3587
3588 case OP_TYPE:
3589 case OP_BOOL:
3590 case OP_LAST:
3591 case OP_INTERNALVAR:
3592 *pos += 3;
3593 break;
3594
3595 case UNOP_MEMVAL:
3596 *pos += 3;
3597 nargs = 1;
3598 break;
3599
3600 case OP_REGISTER:
3601 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3602 break;
3603
3604 case STRUCTOP_STRUCT:
3605 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3606 nargs = 1;
3607 break;
3608
3609 case TERNOP_SLICE:
3610 *pos += 1;
3611 nargs = 3;
3612 break;
3613
3614 case OP_STRING:
3615 break;
3616
3617 default:
3618 error (_("Unexpected operator during name resolution"));
3619 }
3620
3621 argvec = XALLOCAVEC (struct value *, nargs + 1);
3622 for (i = 0; i < nargs; i += 1)
3623 argvec[i] = resolve_subexp (expp, pos, 1, NULL, parse_completion,
3624 tracker);
3625 argvec[i] = NULL;
3626 exp = expp->get ();
3627
3628 /* Pass two: perform any resolution on principal operator. */
3629 switch (op)
3630 {
3631 default:
3632 break;
3633
3634 case OP_VAR_VALUE:
3635 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
3636 {
3637 std::vector<struct block_symbol> candidates;
3638 int n_candidates;
3639
3640 n_candidates =
3641 ada_lookup_symbol_list (exp->elts[pc + 2].symbol->linkage_name (),
3642 exp->elts[pc + 1].block, VAR_DOMAIN,
3643 &candidates);
3644
3645 if (n_candidates > 1)
3646 {
3647 /* Types tend to get re-introduced locally, so if there
3648 are any local symbols that are not types, first filter
3649 out all types. */
3650 int j;
3651 for (j = 0; j < n_candidates; j += 1)
3652 switch (SYMBOL_CLASS (candidates[j].symbol))
3653 {
3654 case LOC_REGISTER:
3655 case LOC_ARG:
3656 case LOC_REF_ARG:
3657 case LOC_REGPARM_ADDR:
3658 case LOC_LOCAL:
3659 case LOC_COMPUTED:
3660 goto FoundNonType;
3661 default:
3662 break;
3663 }
3664 FoundNonType:
3665 if (j < n_candidates)
3666 {
3667 j = 0;
3668 while (j < n_candidates)
3669 {
3670 if (SYMBOL_CLASS (candidates[j].symbol) == LOC_TYPEDEF)
3671 {
3672 candidates[j] = candidates[n_candidates - 1];
3673 n_candidates -= 1;
3674 }
3675 else
3676 j += 1;
3677 }
3678 }
3679 }
3680
3681 if (n_candidates == 0)
3682 error (_("No definition found for %s"),
3683 exp->elts[pc + 2].symbol->print_name ());
3684 else if (n_candidates == 1)
3685 i = 0;
3686 else if (deprocedure_p
3687 && !is_nonfunction (candidates.data (), n_candidates))
3688 {
3689 i = ada_resolve_function
3690 (candidates.data (), n_candidates, NULL, 0,
3691 exp->elts[pc + 2].symbol->linkage_name (),
3692 context_type, parse_completion);
3693 if (i < 0)
3694 error (_("Could not find a match for %s"),
3695 exp->elts[pc + 2].symbol->print_name ());
3696 }
3697 else
3698 {
3699 printf_filtered (_("Multiple matches for %s\n"),
3700 exp->elts[pc + 2].symbol->print_name ());
3701 user_select_syms (candidates.data (), n_candidates, 1);
3702 i = 0;
3703 }
3704
3705 exp->elts[pc + 1].block = candidates[i].block;
3706 exp->elts[pc + 2].symbol = candidates[i].symbol;
3707 tracker->update (candidates[i]);
3708 }
3709
3710 if (deprocedure_p
3711 && (SYMBOL_TYPE (exp->elts[pc + 2].symbol)->code ()
3712 == TYPE_CODE_FUNC))
3713 {
3714 replace_operator_with_call (expp, pc, 0, 4,
3715 exp->elts[pc + 2].symbol,
3716 exp->elts[pc + 1].block);
3717 exp = expp->get ();
3718 }
3719 break;
3720
3721 case OP_FUNCALL:
3722 {
3723 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3724 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3725 {
3726 std::vector<struct block_symbol> candidates;
3727 int n_candidates;
3728
3729 n_candidates =
3730 ada_lookup_symbol_list (exp->elts[pc + 5].symbol->linkage_name (),
3731 exp->elts[pc + 4].block, VAR_DOMAIN,
3732 &candidates);
3733
3734 if (n_candidates == 1)
3735 i = 0;
3736 else
3737 {
3738 i = ada_resolve_function
3739 (candidates.data (), n_candidates,
3740 argvec, nargs,
3741 exp->elts[pc + 5].symbol->linkage_name (),
3742 context_type, parse_completion);
3743 if (i < 0)
3744 error (_("Could not find a match for %s"),
3745 exp->elts[pc + 5].symbol->print_name ());
3746 }
3747
3748 exp->elts[pc + 4].block = candidates[i].block;
3749 exp->elts[pc + 5].symbol = candidates[i].symbol;
3750 tracker->update (candidates[i]);
3751 }
3752 }
3753 break;
3754 case BINOP_ADD:
3755 case BINOP_SUB:
3756 case BINOP_MUL:
3757 case BINOP_DIV:
3758 case BINOP_REM:
3759 case BINOP_MOD:
3760 case BINOP_CONCAT:
3761 case BINOP_BITWISE_AND:
3762 case BINOP_BITWISE_IOR:
3763 case BINOP_BITWISE_XOR:
3764 case BINOP_EQUAL:
3765 case BINOP_NOTEQUAL:
3766 case BINOP_LESS:
3767 case BINOP_GTR:
3768 case BINOP_LEQ:
3769 case BINOP_GEQ:
3770 case BINOP_EXP:
3771 case UNOP_NEG:
3772 case UNOP_PLUS:
3773 case UNOP_LOGICAL_NOT:
3774 case UNOP_ABS:
3775 if (possible_user_operator_p (op, argvec))
3776 {
3777 std::vector<struct block_symbol> candidates;
3778 int n_candidates;
3779
3780 n_candidates =
3781 ada_lookup_symbol_list (ada_decoded_op_name (op),
3782 NULL, VAR_DOMAIN,
3783 &candidates);
3784
3785 i = ada_resolve_function (candidates.data (), n_candidates, argvec,
3786 nargs, ada_decoded_op_name (op), NULL,
3787 parse_completion);
3788 if (i < 0)
3789 break;
3790
3791 replace_operator_with_call (expp, pc, nargs, 1,
3792 candidates[i].symbol,
3793 candidates[i].block);
3794 exp = expp->get ();
3795 }
3796 break;
3797
3798 case OP_TYPE:
3799 case OP_REGISTER:
3800 return NULL;
3801 }
3802
3803 *pos = pc;
3804 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
3805 return evaluate_var_msym_value (EVAL_AVOID_SIDE_EFFECTS,
3806 exp->elts[pc + 1].objfile,
3807 exp->elts[pc + 2].msymbol);
3808 else
3809 return evaluate_subexp_type (exp, pos);
3810 }
3811
3812 /* Return non-zero if formal type FTYPE matches actual type ATYPE. If
3813 MAY_DEREF is non-zero, the formal may be a pointer and the actual
3814 a non-pointer. */
3815 /* The term "match" here is rather loose. The match is heuristic and
3816 liberal. */
3817
3818 static int
3819 ada_type_match (struct type *ftype, struct type *atype, int may_deref)
3820 {
3821 ftype = ada_check_typedef (ftype);
3822 atype = ada_check_typedef (atype);
3823
3824 if (ftype->code () == TYPE_CODE_REF)
3825 ftype = TYPE_TARGET_TYPE (ftype);
3826 if (atype->code () == TYPE_CODE_REF)
3827 atype = TYPE_TARGET_TYPE (atype);
3828
3829 switch (ftype->code ())
3830 {
3831 default:
3832 return ftype->code () == atype->code ();
3833 case TYPE_CODE_PTR:
3834 if (atype->code () == TYPE_CODE_PTR)
3835 return ada_type_match (TYPE_TARGET_TYPE (ftype),
3836 TYPE_TARGET_TYPE (atype), 0);
3837 else
3838 return (may_deref
3839 && ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0));
3840 case TYPE_CODE_INT:
3841 case TYPE_CODE_ENUM:
3842 case TYPE_CODE_RANGE:
3843 switch (atype->code ())
3844 {
3845 case TYPE_CODE_INT:
3846 case TYPE_CODE_ENUM:
3847 case TYPE_CODE_RANGE:
3848 return 1;
3849 default:
3850 return 0;
3851 }
3852
3853 case TYPE_CODE_ARRAY:
3854 return (atype->code () == TYPE_CODE_ARRAY
3855 || ada_is_array_descriptor_type (atype));
3856
3857 case TYPE_CODE_STRUCT:
3858 if (ada_is_array_descriptor_type (ftype))
3859 return (atype->code () == TYPE_CODE_ARRAY
3860 || ada_is_array_descriptor_type (atype));
3861 else
3862 return (atype->code () == TYPE_CODE_STRUCT
3863 && !ada_is_array_descriptor_type (atype));
3864
3865 case TYPE_CODE_UNION:
3866 case TYPE_CODE_FLT:
3867 return (atype->code () == ftype->code ());
3868 }
3869 }
3870
3871 /* Return non-zero if the formals of FUNC "sufficiently match" the
3872 vector of actual argument types ACTUALS of size N_ACTUALS. FUNC
3873 may also be an enumeral, in which case it is treated as a 0-
3874 argument function. */
3875
3876 static int
3877 ada_args_match (struct symbol *func, struct value **actuals, int n_actuals)
3878 {
3879 int i;
3880 struct type *func_type = SYMBOL_TYPE (func);
3881
3882 if (SYMBOL_CLASS (func) == LOC_CONST
3883 && func_type->code () == TYPE_CODE_ENUM)
3884 return (n_actuals == 0);
3885 else if (func_type == NULL || func_type->code () != TYPE_CODE_FUNC)
3886 return 0;
3887
3888 if (func_type->num_fields () != n_actuals)
3889 return 0;
3890
3891 for (i = 0; i < n_actuals; i += 1)
3892 {
3893 if (actuals[i] == NULL)
3894 return 0;
3895 else
3896 {
3897 struct type *ftype = ada_check_typedef (func_type->field (i).type ());
3898 struct type *atype = ada_check_typedef (value_type (actuals[i]));
3899
3900 if (!ada_type_match (ftype, atype, 1))
3901 return 0;
3902 }
3903 }
3904 return 1;
3905 }
3906
3907 /* False iff function type FUNC_TYPE definitely does not produce a value
3908 compatible with type CONTEXT_TYPE. Conservatively returns 1 if
3909 FUNC_TYPE is not a valid function type with a non-null return type
3910 or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */
3911
3912 static int
3913 return_match (struct type *func_type, struct type *context_type)
3914 {
3915 struct type *return_type;
3916
3917 if (func_type == NULL)
3918 return 1;
3919
3920 if (func_type->code () == TYPE_CODE_FUNC)
3921 return_type = get_base_type (TYPE_TARGET_TYPE (func_type));
3922 else
3923 return_type = get_base_type (func_type);
3924 if (return_type == NULL)
3925 return 1;
3926
3927 context_type = get_base_type (context_type);
3928
3929 if (return_type->code () == TYPE_CODE_ENUM)
3930 return context_type == NULL || return_type == context_type;
3931 else if (context_type == NULL)
3932 return return_type->code () != TYPE_CODE_VOID;
3933 else
3934 return return_type->code () == context_type->code ();
3935 }
3936
3937
3938 /* Returns the index in SYMS[0..NSYMS-1] that contains the symbol for the
3939 function (if any) that matches the types of the NARGS arguments in
3940 ARGS. If CONTEXT_TYPE is non-null and there is at least one match
3941 that returns that type, then eliminate matches that don't. If
3942 CONTEXT_TYPE is void and there is at least one match that does not
3943 return void, eliminate all matches that do.
3944
3945 Asks the user if there is more than one match remaining. Returns -1
3946 if there is no such symbol or none is selected. NAME is used
3947 solely for messages. May re-arrange and modify SYMS in
3948 the process; the index returned is for the modified vector. */
3949
3950 static int
3951 ada_resolve_function (struct block_symbol syms[],
3952 int nsyms, struct value **args, int nargs,
3953 const char *name, struct type *context_type,
3954 int parse_completion)
3955 {
3956 int fallback;
3957 int k;
3958 int m; /* Number of hits */
3959
3960 m = 0;
3961 /* In the first pass of the loop, we only accept functions matching
3962 context_type. If none are found, we add a second pass of the loop
3963 where every function is accepted. */
3964 for (fallback = 0; m == 0 && fallback < 2; fallback++)
3965 {
3966 for (k = 0; k < nsyms; k += 1)
3967 {
3968 struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].symbol));
3969
3970 if (ada_args_match (syms[k].symbol, args, nargs)
3971 && (fallback || return_match (type, context_type)))
3972 {
3973 syms[m] = syms[k];
3974 m += 1;
3975 }
3976 }
3977 }
3978
3979 /* If we got multiple matches, ask the user which one to use. Don't do this
3980 interactive thing during completion, though, as the purpose of the
3981 completion is providing a list of all possible matches. Prompting the
3982 user to filter it down would be completely unexpected in this case. */
3983 if (m == 0)
3984 return -1;
3985 else if (m > 1 && !parse_completion)
3986 {
3987 printf_filtered (_("Multiple matches for %s\n"), name);
3988 user_select_syms (syms, m, 1);
3989 return 0;
3990 }
3991 return 0;
3992 }
3993
3994 /* Replace the operator of length OPLEN at position PC in *EXPP with a call
3995 on the function identified by SYM and BLOCK, and taking NARGS
3996 arguments. Update *EXPP as needed to hold more space. */
3997
3998 static void
3999 replace_operator_with_call (expression_up *expp, int pc, int nargs,
4000 int oplen, struct symbol *sym,
4001 const struct block *block)
4002 {
4003 /* We want to add 6 more elements (3 for funcall, 4 for function
4004 symbol, -OPLEN for operator being replaced) to the
4005 expression. */
4006 struct expression *exp = expp->get ();
4007 int save_nelts = exp->nelts;
4008 exp->nelts = exp->nelts + 7 - oplen;
4009 exp->resize (exp->nelts);
4010
4011 memmove (exp->elts + pc + 7, exp->elts + pc + oplen,
4012 EXP_ELEM_TO_BYTES (save_nelts - pc - oplen));
4013
4014 exp->elts[pc].opcode = exp->elts[pc + 2].opcode = OP_FUNCALL;
4015 exp->elts[pc + 1].longconst = (LONGEST) nargs;
4016
4017 exp->elts[pc + 3].opcode = exp->elts[pc + 6].opcode = OP_VAR_VALUE;
4018 exp->elts[pc + 4].block = block;
4019 exp->elts[pc + 5].symbol = sym;
4020 }
4021
4022 /* Type-class predicates */
4023
4024 /* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type),
4025 or FLOAT). */
4026
4027 static int
4028 numeric_type_p (struct type *type)
4029 {
4030 if (type == NULL)
4031 return 0;
4032 else
4033 {
4034 switch (type->code ())
4035 {
4036 case TYPE_CODE_INT:
4037 case TYPE_CODE_FLT:
4038 return 1;
4039 case TYPE_CODE_RANGE:
4040 return (type == TYPE_TARGET_TYPE (type)
4041 || numeric_type_p (TYPE_TARGET_TYPE (type)));
4042 default:
4043 return 0;
4044 }
4045 }
4046 }
4047
4048 /* True iff TYPE is integral (an INT or RANGE of INTs). */
4049
4050 static int
4051 integer_type_p (struct type *type)
4052 {
4053 if (type == NULL)
4054 return 0;
4055 else
4056 {
4057 switch (type->code ())
4058 {
4059 case TYPE_CODE_INT:
4060 return 1;
4061 case TYPE_CODE_RANGE:
4062 return (type == TYPE_TARGET_TYPE (type)
4063 || integer_type_p (TYPE_TARGET_TYPE (type)));
4064 default:
4065 return 0;
4066 }
4067 }
4068 }
4069
4070 /* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */
4071
4072 static int
4073 scalar_type_p (struct type *type)
4074 {
4075 if (type == NULL)
4076 return 0;
4077 else
4078 {
4079 switch (type->code ())
4080 {
4081 case TYPE_CODE_INT:
4082 case TYPE_CODE_RANGE:
4083 case TYPE_CODE_ENUM:
4084 case TYPE_CODE_FLT:
4085 return 1;
4086 default:
4087 return 0;
4088 }
4089 }
4090 }
4091
4092 /* True iff TYPE is discrete (INT, RANGE, ENUM). */
4093
4094 static int
4095 discrete_type_p (struct type *type)
4096 {
4097 if (type == NULL)
4098 return 0;
4099 else
4100 {
4101 switch (type->code ())
4102 {
4103 case TYPE_CODE_INT:
4104 case TYPE_CODE_RANGE:
4105 case TYPE_CODE_ENUM:
4106 case TYPE_CODE_BOOL:
4107 return 1;
4108 default:
4109 return 0;
4110 }
4111 }
4112 }
4113
4114 /* Returns non-zero if OP with operands in the vector ARGS could be
4115 a user-defined function. Errs on the side of pre-defined operators
4116 (i.e., result 0). */
4117
4118 static int
4119 possible_user_operator_p (enum exp_opcode op, struct value *args[])
4120 {
4121 struct type *type0 =
4122 (args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0]));
4123 struct type *type1 =
4124 (args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1]));
4125
4126 if (type0 == NULL)
4127 return 0;
4128
4129 switch (op)
4130 {
4131 default:
4132 return 0;
4133
4134 case BINOP_ADD:
4135 case BINOP_SUB:
4136 case BINOP_MUL:
4137 case BINOP_DIV:
4138 return (!(numeric_type_p (type0) && numeric_type_p (type1)));
4139
4140 case BINOP_REM:
4141 case BINOP_MOD:
4142 case BINOP_BITWISE_AND:
4143 case BINOP_BITWISE_IOR:
4144 case BINOP_BITWISE_XOR:
4145 return (!(integer_type_p (type0) && integer_type_p (type1)));
4146
4147 case BINOP_EQUAL:
4148 case BINOP_NOTEQUAL:
4149 case BINOP_LESS:
4150 case BINOP_GTR:
4151 case BINOP_LEQ:
4152 case BINOP_GEQ:
4153 return (!(scalar_type_p (type0) && scalar_type_p (type1)));
4154
4155 case BINOP_CONCAT:
4156 return !ada_is_array_type (type0) || !ada_is_array_type (type1);
4157
4158 case BINOP_EXP:
4159 return (!(numeric_type_p (type0) && integer_type_p (type1)));
4160
4161 case UNOP_NEG:
4162 case UNOP_PLUS:
4163 case UNOP_LOGICAL_NOT:
4164 case UNOP_ABS:
4165 return (!numeric_type_p (type0));
4166
4167 }
4168 }
4169 \f
4170 /* Renaming */
4171
4172 /* NOTES:
4173
4174 1. In the following, we assume that a renaming type's name may
4175 have an ___XD suffix. It would be nice if this went away at some
4176 point.
4177 2. We handle both the (old) purely type-based representation of
4178 renamings and the (new) variable-based encoding. At some point,
4179 it is devoutly to be hoped that the former goes away
4180 (FIXME: hilfinger-2007-07-09).
4181 3. Subprogram renamings are not implemented, although the XRS
4182 suffix is recognized (FIXME: hilfinger-2007-07-09). */
4183
4184 /* If SYM encodes a renaming,
4185
4186 <renaming> renames <renamed entity>,
4187
4188 sets *LEN to the length of the renamed entity's name,
4189 *RENAMED_ENTITY to that name (not null-terminated), and *RENAMING_EXPR to
4190 the string describing the subcomponent selected from the renamed
4191 entity. Returns ADA_NOT_RENAMING if SYM does not encode a renaming
4192 (in which case, the values of *RENAMED_ENTITY, *LEN, and *RENAMING_EXPR
4193 are undefined). Otherwise, returns a value indicating the category
4194 of entity renamed: an object (ADA_OBJECT_RENAMING), exception
4195 (ADA_EXCEPTION_RENAMING), package (ADA_PACKAGE_RENAMING), or
4196 subprogram (ADA_SUBPROGRAM_RENAMING). Does no allocation; the
4197 strings returned in *RENAMED_ENTITY and *RENAMING_EXPR should not be
4198 deallocated. The values of RENAMED_ENTITY, LEN, or RENAMING_EXPR
4199 may be NULL, in which case they are not assigned.
4200
4201 [Currently, however, GCC does not generate subprogram renamings.] */
4202
4203 enum ada_renaming_category
4204 ada_parse_renaming (struct symbol *sym,
4205 const char **renamed_entity, int *len,
4206 const char **renaming_expr)
4207 {
4208 enum ada_renaming_category kind;
4209 const char *info;
4210 const char *suffix;
4211
4212 if (sym == NULL)
4213 return ADA_NOT_RENAMING;
4214 switch (SYMBOL_CLASS (sym))
4215 {
4216 default:
4217 return ADA_NOT_RENAMING;
4218 case LOC_LOCAL:
4219 case LOC_STATIC:
4220 case LOC_COMPUTED:
4221 case LOC_OPTIMIZED_OUT:
4222 info = strstr (sym->linkage_name (), "___XR");
4223 if (info == NULL)
4224 return ADA_NOT_RENAMING;
4225 switch (info[5])
4226 {
4227 case '_':
4228 kind = ADA_OBJECT_RENAMING;
4229 info += 6;
4230 break;
4231 case 'E':
4232 kind = ADA_EXCEPTION_RENAMING;
4233 info += 7;
4234 break;
4235 case 'P':
4236 kind = ADA_PACKAGE_RENAMING;
4237 info += 7;
4238 break;
4239 case 'S':
4240 kind = ADA_SUBPROGRAM_RENAMING;
4241 info += 7;
4242 break;
4243 default:
4244 return ADA_NOT_RENAMING;
4245 }
4246 }
4247
4248 if (renamed_entity != NULL)
4249 *renamed_entity = info;
4250 suffix = strstr (info, "___XE");
4251 if (suffix == NULL || suffix == info)
4252 return ADA_NOT_RENAMING;
4253 if (len != NULL)
4254 *len = strlen (info) - strlen (suffix);
4255 suffix += 5;
4256 if (renaming_expr != NULL)
4257 *renaming_expr = suffix;
4258 return kind;
4259 }
4260
4261 /* Compute the value of the given RENAMING_SYM, which is expected to
4262 be a symbol encoding a renaming expression. BLOCK is the block
4263 used to evaluate the renaming. */
4264
4265 static struct value *
4266 ada_read_renaming_var_value (struct symbol *renaming_sym,
4267 const struct block *block)
4268 {
4269 const char *sym_name;
4270
4271 sym_name = renaming_sym->linkage_name ();
4272 expression_up expr = parse_exp_1 (&sym_name, 0, block, 0);
4273 return evaluate_expression (expr.get ());
4274 }
4275 \f
4276
4277 /* Evaluation: Function Calls */
4278
4279 /* Return an lvalue containing the value VAL. This is the identity on
4280 lvalues, and otherwise has the side-effect of allocating memory
4281 in the inferior where a copy of the value contents is copied. */
4282
4283 static struct value *
4284 ensure_lval (struct value *val)
4285 {
4286 if (VALUE_LVAL (val) == not_lval
4287 || VALUE_LVAL (val) == lval_internalvar)
4288 {
4289 int len = TYPE_LENGTH (ada_check_typedef (value_type (val)));
4290 const CORE_ADDR addr =
4291 value_as_long (value_allocate_space_in_inferior (len));
4292
4293 VALUE_LVAL (val) = lval_memory;
4294 set_value_address (val, addr);
4295 write_memory (addr, value_contents (val), len);
4296 }
4297
4298 return val;
4299 }
4300
4301 /* Given ARG, a value of type (pointer or reference to a)*
4302 structure/union, extract the component named NAME from the ultimate
4303 target structure/union and return it as a value with its
4304 appropriate type.
4305
4306 The routine searches for NAME among all members of the structure itself
4307 and (recursively) among all members of any wrapper members
4308 (e.g., '_parent').
4309
4310 If NO_ERR, then simply return NULL in case of error, rather than
4311 calling error. */
4312
4313 static struct value *
4314 ada_value_struct_elt (struct value *arg, const char *name, int no_err)
4315 {
4316 struct type *t, *t1;
4317 struct value *v;
4318 int check_tag;
4319
4320 v = NULL;
4321 t1 = t = ada_check_typedef (value_type (arg));
4322 if (t->code () == TYPE_CODE_REF)
4323 {
4324 t1 = TYPE_TARGET_TYPE (t);
4325 if (t1 == NULL)
4326 goto BadValue;
4327 t1 = ada_check_typedef (t1);
4328 if (t1->code () == TYPE_CODE_PTR)
4329 {
4330 arg = coerce_ref (arg);
4331 t = t1;
4332 }
4333 }
4334
4335 while (t->code () == TYPE_CODE_PTR)
4336 {
4337 t1 = TYPE_TARGET_TYPE (t);
4338 if (t1 == NULL)
4339 goto BadValue;
4340 t1 = ada_check_typedef (t1);
4341 if (t1->code () == TYPE_CODE_PTR)
4342 {
4343 arg = value_ind (arg);
4344 t = t1;
4345 }
4346 else
4347 break;
4348 }
4349
4350 if (t1->code () != TYPE_CODE_STRUCT && t1->code () != TYPE_CODE_UNION)
4351 goto BadValue;
4352
4353 if (t1 == t)
4354 v = ada_search_struct_field (name, arg, 0, t);
4355 else
4356 {
4357 int bit_offset, bit_size, byte_offset;
4358 struct type *field_type;
4359 CORE_ADDR address;
4360
4361 if (t->code () == TYPE_CODE_PTR)
4362 address = value_address (ada_value_ind (arg));
4363 else
4364 address = value_address (ada_coerce_ref (arg));
4365
4366 /* Check to see if this is a tagged type. We also need to handle
4367 the case where the type is a reference to a tagged type, but
4368 we have to be careful to exclude pointers to tagged types.
4369 The latter should be shown as usual (as a pointer), whereas
4370 a reference should mostly be transparent to the user. */
4371
4372 if (ada_is_tagged_type (t1, 0)
4373 || (t1->code () == TYPE_CODE_REF
4374 && ada_is_tagged_type (TYPE_TARGET_TYPE (t1), 0)))
4375 {
4376 /* We first try to find the searched field in the current type.
4377 If not found then let's look in the fixed type. */
4378
4379 if (!find_struct_field (name, t1, 0,
4380 &field_type, &byte_offset, &bit_offset,
4381 &bit_size, NULL))
4382 check_tag = 1;
4383 else
4384 check_tag = 0;
4385 }
4386 else
4387 check_tag = 0;
4388
4389 /* Convert to fixed type in all cases, so that we have proper
4390 offsets to each field in unconstrained record types. */
4391 t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL,
4392 address, NULL, check_tag);
4393
4394 /* Resolve the dynamic type as well. */
4395 arg = value_from_contents_and_address (t1, nullptr, address);
4396 t1 = value_type (arg);
4397
4398 if (find_struct_field (name, t1, 0,
4399 &field_type, &byte_offset, &bit_offset,
4400 &bit_size, NULL))
4401 {
4402 if (bit_size != 0)
4403 {
4404 if (t->code () == TYPE_CODE_REF)
4405 arg = ada_coerce_ref (arg);
4406 else
4407 arg = ada_value_ind (arg);
4408 v = ada_value_primitive_packed_val (arg, NULL, byte_offset,
4409 bit_offset, bit_size,
4410 field_type);
4411 }
4412 else
4413 v = value_at_lazy (field_type, address + byte_offset);
4414 }
4415 }
4416
4417 if (v != NULL || no_err)
4418 return v;
4419 else
4420 error (_("There is no member named %s."), name);
4421
4422 BadValue:
4423 if (no_err)
4424 return NULL;
4425 else
4426 error (_("Attempt to extract a component of "
4427 "a value that is not a record."));
4428 }
4429
4430 /* Return the value ACTUAL, converted to be an appropriate value for a
4431 formal of type FORMAL_TYPE. Use *SP as a stack pointer for
4432 allocating any necessary descriptors (fat pointers), or copies of
4433 values not residing in memory, updating it as needed. */
4434
4435 struct value *
4436 ada_convert_actual (struct value *actual, struct type *formal_type0)
4437 {
4438 struct type *actual_type = ada_check_typedef (value_type (actual));
4439 struct type *formal_type = ada_check_typedef (formal_type0);
4440 struct type *formal_target =
4441 formal_type->code () == TYPE_CODE_PTR
4442 ? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type;
4443 struct type *actual_target =
4444 actual_type->code () == TYPE_CODE_PTR
4445 ? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type;
4446
4447 if (ada_is_array_descriptor_type (formal_target)
4448 && actual_target->code () == TYPE_CODE_ARRAY)
4449 return make_array_descriptor (formal_type, actual);
4450 else if (formal_type->code () == TYPE_CODE_PTR
4451 || formal_type->code () == TYPE_CODE_REF)
4452 {
4453 struct value *result;
4454
4455 if (formal_target->code () == TYPE_CODE_ARRAY
4456 && ada_is_array_descriptor_type (actual_target))
4457 result = desc_data (actual);
4458 else if (formal_type->code () != TYPE_CODE_PTR)
4459 {
4460 if (VALUE_LVAL (actual) != lval_memory)
4461 {
4462 struct value *val;
4463
4464 actual_type = ada_check_typedef (value_type (actual));
4465 val = allocate_value (actual_type);
4466 memcpy ((char *) value_contents_raw (val),
4467 (char *) value_contents (actual),
4468 TYPE_LENGTH (actual_type));
4469 actual = ensure_lval (val);
4470 }
4471 result = value_addr (actual);
4472 }
4473 else
4474 return actual;
4475 return value_cast_pointers (formal_type, result, 0);
4476 }
4477 else if (actual_type->code () == TYPE_CODE_PTR)
4478 return ada_value_ind (actual);
4479 else if (ada_is_aligner_type (formal_type))
4480 {
4481 /* We need to turn this parameter into an aligner type
4482 as well. */
4483 struct value *aligner = allocate_value (formal_type);
4484 struct value *component = ada_value_struct_elt (aligner, "F", 0);
4485
4486 value_assign_to_component (aligner, component, actual);
4487 return aligner;
4488 }
4489
4490 return actual;
4491 }
4492
4493 /* Convert VALUE (which must be an address) to a CORE_ADDR that is a pointer of
4494 type TYPE. This is usually an inefficient no-op except on some targets
4495 (such as AVR) where the representation of a pointer and an address
4496 differs. */
4497
4498 static CORE_ADDR
4499 value_pointer (struct value *value, struct type *type)
4500 {
4501 struct gdbarch *gdbarch = get_type_arch (type);
4502 unsigned len = TYPE_LENGTH (type);
4503 gdb_byte *buf = (gdb_byte *) alloca (len);
4504 CORE_ADDR addr;
4505
4506 addr = value_address (value);
4507 gdbarch_address_to_pointer (gdbarch, type, buf, addr);
4508 addr = extract_unsigned_integer (buf, len, type_byte_order (type));
4509 return addr;
4510 }
4511
4512
4513 /* Push a descriptor of type TYPE for array value ARR on the stack at
4514 *SP, updating *SP to reflect the new descriptor. Return either
4515 an lvalue representing the new descriptor, or (if TYPE is a pointer-
4516 to-descriptor type rather than a descriptor type), a struct value *
4517 representing a pointer to this descriptor. */
4518
4519 static struct value *
4520 make_array_descriptor (struct type *type, struct value *arr)
4521 {
4522 struct type *bounds_type = desc_bounds_type (type);
4523 struct type *desc_type = desc_base_type (type);
4524 struct value *descriptor = allocate_value (desc_type);
4525 struct value *bounds = allocate_value (bounds_type);
4526 int i;
4527
4528 for (i = ada_array_arity (ada_check_typedef (value_type (arr)));
4529 i > 0; i -= 1)
4530 {
4531 modify_field (value_type (bounds), value_contents_writeable (bounds),
4532 ada_array_bound (arr, i, 0),
4533 desc_bound_bitpos (bounds_type, i, 0),
4534 desc_bound_bitsize (bounds_type, i, 0));
4535 modify_field (value_type (bounds), value_contents_writeable (bounds),
4536 ada_array_bound (arr, i, 1),
4537 desc_bound_bitpos (bounds_type, i, 1),
4538 desc_bound_bitsize (bounds_type, i, 1));
4539 }
4540
4541 bounds = ensure_lval (bounds);
4542
4543 modify_field (value_type (descriptor),
4544 value_contents_writeable (descriptor),
4545 value_pointer (ensure_lval (arr),
4546 desc_type->field (0).type ()),
4547 fat_pntr_data_bitpos (desc_type),
4548 fat_pntr_data_bitsize (desc_type));
4549
4550 modify_field (value_type (descriptor),
4551 value_contents_writeable (descriptor),
4552 value_pointer (bounds,
4553 desc_type->field (1).type ()),
4554 fat_pntr_bounds_bitpos (desc_type),
4555 fat_pntr_bounds_bitsize (desc_type));
4556
4557 descriptor = ensure_lval (descriptor);
4558
4559 if (type->code () == TYPE_CODE_PTR)
4560 return value_addr (descriptor);
4561 else
4562 return descriptor;
4563 }
4564 \f
4565 /* Symbol Cache Module */
4566
4567 /* Performance measurements made as of 2010-01-15 indicate that
4568 this cache does bring some noticeable improvements. Depending
4569 on the type of entity being printed, the cache can make it as much
4570 as an order of magnitude faster than without it.
4571
4572 The descriptive type DWARF extension has significantly reduced
4573 the need for this cache, at least when DWARF is being used. However,
4574 even in this case, some expensive name-based symbol searches are still
4575 sometimes necessary - to find an XVZ variable, mostly. */
4576
4577 /* Initialize the contents of SYM_CACHE. */
4578
4579 static void
4580 ada_init_symbol_cache (struct ada_symbol_cache *sym_cache)
4581 {
4582 obstack_init (&sym_cache->cache_space);
4583 memset (sym_cache->root, '\000', sizeof (sym_cache->root));
4584 }
4585
4586 /* Free the memory used by SYM_CACHE. */
4587
4588 static void
4589 ada_free_symbol_cache (struct ada_symbol_cache *sym_cache)
4590 {
4591 obstack_free (&sym_cache->cache_space, NULL);
4592 xfree (sym_cache);
4593 }
4594
4595 /* Return the symbol cache associated to the given program space PSPACE.
4596 If not allocated for this PSPACE yet, allocate and initialize one. */
4597
4598 static struct ada_symbol_cache *
4599 ada_get_symbol_cache (struct program_space *pspace)
4600 {
4601 struct ada_pspace_data *pspace_data = get_ada_pspace_data (pspace);
4602
4603 if (pspace_data->sym_cache == NULL)
4604 {
4605 pspace_data->sym_cache = XCNEW (struct ada_symbol_cache);
4606 ada_init_symbol_cache (pspace_data->sym_cache);
4607 }
4608
4609 return pspace_data->sym_cache;
4610 }
4611
4612 /* Clear all entries from the symbol cache. */
4613
4614 static void
4615 ada_clear_symbol_cache (void)
4616 {
4617 struct ada_symbol_cache *sym_cache
4618 = ada_get_symbol_cache (current_program_space);
4619
4620 obstack_free (&sym_cache->cache_space, NULL);
4621 ada_init_symbol_cache (sym_cache);
4622 }
4623
4624 /* Search our cache for an entry matching NAME and DOMAIN.
4625 Return it if found, or NULL otherwise. */
4626
4627 static struct cache_entry **
4628 find_entry (const char *name, domain_enum domain)
4629 {
4630 struct ada_symbol_cache *sym_cache
4631 = ada_get_symbol_cache (current_program_space);
4632 int h = msymbol_hash (name) % HASH_SIZE;
4633 struct cache_entry **e;
4634
4635 for (e = &sym_cache->root[h]; *e != NULL; e = &(*e)->next)
4636 {
4637 if (domain == (*e)->domain && strcmp (name, (*e)->name) == 0)
4638 return e;
4639 }
4640 return NULL;
4641 }
4642
4643 /* Search the symbol cache for an entry matching NAME and DOMAIN.
4644 Return 1 if found, 0 otherwise.
4645
4646 If an entry was found and SYM is not NULL, set *SYM to the entry's
4647 SYM. Same principle for BLOCK if not NULL. */
4648
4649 static int
4650 lookup_cached_symbol (const char *name, domain_enum domain,
4651 struct symbol **sym, const struct block **block)
4652 {
4653 struct cache_entry **e = find_entry (name, domain);
4654
4655 if (e == NULL)
4656 return 0;
4657 if (sym != NULL)
4658 *sym = (*e)->sym;
4659 if (block != NULL)
4660 *block = (*e)->block;
4661 return 1;
4662 }
4663
4664 /* Assuming that (SYM, BLOCK) is the result of the lookup of NAME
4665 in domain DOMAIN, save this result in our symbol cache. */
4666
4667 static void
4668 cache_symbol (const char *name, domain_enum domain, struct symbol *sym,
4669 const struct block *block)
4670 {
4671 struct ada_symbol_cache *sym_cache
4672 = ada_get_symbol_cache (current_program_space);
4673 int h;
4674 struct cache_entry *e;
4675
4676 /* Symbols for builtin types don't have a block.
4677 For now don't cache such symbols. */
4678 if (sym != NULL && !SYMBOL_OBJFILE_OWNED (sym))
4679 return;
4680
4681 /* If the symbol is a local symbol, then do not cache it, as a search
4682 for that symbol depends on the context. To determine whether
4683 the symbol is local or not, we check the block where we found it
4684 against the global and static blocks of its associated symtab. */
4685 if (sym
4686 && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)),
4687 GLOBAL_BLOCK) != block
4688 && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)),
4689 STATIC_BLOCK) != block)
4690 return;
4691
4692 h = msymbol_hash (name) % HASH_SIZE;
4693 e = XOBNEW (&sym_cache->cache_space, cache_entry);
4694 e->next = sym_cache->root[h];
4695 sym_cache->root[h] = e;
4696 e->name = obstack_strdup (&sym_cache->cache_space, name);
4697 e->sym = sym;
4698 e->domain = domain;
4699 e->block = block;
4700 }
4701 \f
4702 /* Symbol Lookup */
4703
4704 /* Return the symbol name match type that should be used used when
4705 searching for all symbols matching LOOKUP_NAME.
4706
4707 LOOKUP_NAME is expected to be a symbol name after transformation
4708 for Ada lookups. */
4709
4710 static symbol_name_match_type
4711 name_match_type_from_name (const char *lookup_name)
4712 {
4713 return (strstr (lookup_name, "__") == NULL
4714 ? symbol_name_match_type::WILD
4715 : symbol_name_match_type::FULL);
4716 }
4717
4718 /* Return the result of a standard (literal, C-like) lookup of NAME in
4719 given DOMAIN, visible from lexical block BLOCK. */
4720
4721 static struct symbol *
4722 standard_lookup (const char *name, const struct block *block,
4723 domain_enum domain)
4724 {
4725 /* Initialize it just to avoid a GCC false warning. */
4726 struct block_symbol sym = {};
4727
4728 if (lookup_cached_symbol (name, domain, &sym.symbol, NULL))
4729 return sym.symbol;
4730 ada_lookup_encoded_symbol (name, block, domain, &sym);
4731 cache_symbol (name, domain, sym.symbol, sym.block);
4732 return sym.symbol;
4733 }
4734
4735
4736 /* Non-zero iff there is at least one non-function/non-enumeral symbol
4737 in the symbol fields of SYMS[0..N-1]. We treat enumerals as functions,
4738 since they contend in overloading in the same way. */
4739 static int
4740 is_nonfunction (struct block_symbol syms[], int n)
4741 {
4742 int i;
4743
4744 for (i = 0; i < n; i += 1)
4745 if (SYMBOL_TYPE (syms[i].symbol)->code () != TYPE_CODE_FUNC
4746 && (SYMBOL_TYPE (syms[i].symbol)->code () != TYPE_CODE_ENUM
4747 || SYMBOL_CLASS (syms[i].symbol) != LOC_CONST))
4748 return 1;
4749
4750 return 0;
4751 }
4752
4753 /* If true (non-zero), then TYPE0 and TYPE1 represent equivalent
4754 struct types. Otherwise, they may not. */
4755
4756 static int
4757 equiv_types (struct type *type0, struct type *type1)
4758 {
4759 if (type0 == type1)
4760 return 1;
4761 if (type0 == NULL || type1 == NULL
4762 || type0->code () != type1->code ())
4763 return 0;
4764 if ((type0->code () == TYPE_CODE_STRUCT
4765 || type0->code () == TYPE_CODE_ENUM)
4766 && ada_type_name (type0) != NULL && ada_type_name (type1) != NULL
4767 && strcmp (ada_type_name (type0), ada_type_name (type1)) == 0)
4768 return 1;
4769
4770 return 0;
4771 }
4772
4773 /* True iff SYM0 represents the same entity as SYM1, or one that is
4774 no more defined than that of SYM1. */
4775
4776 static int
4777 lesseq_defined_than (struct symbol *sym0, struct symbol *sym1)
4778 {
4779 if (sym0 == sym1)
4780 return 1;
4781 if (SYMBOL_DOMAIN (sym0) != SYMBOL_DOMAIN (sym1)
4782 || SYMBOL_CLASS (sym0) != SYMBOL_CLASS (sym1))
4783 return 0;
4784
4785 switch (SYMBOL_CLASS (sym0))
4786 {
4787 case LOC_UNDEF:
4788 return 1;
4789 case LOC_TYPEDEF:
4790 {
4791 struct type *type0 = SYMBOL_TYPE (sym0);
4792 struct type *type1 = SYMBOL_TYPE (sym1);
4793 const char *name0 = sym0->linkage_name ();
4794 const char *name1 = sym1->linkage_name ();
4795 int len0 = strlen (name0);
4796
4797 return
4798 type0->code () == type1->code ()
4799 && (equiv_types (type0, type1)
4800 || (len0 < strlen (name1) && strncmp (name0, name1, len0) == 0
4801 && startswith (name1 + len0, "___XV")));
4802 }
4803 case LOC_CONST:
4804 return SYMBOL_VALUE (sym0) == SYMBOL_VALUE (sym1)
4805 && equiv_types (SYMBOL_TYPE (sym0), SYMBOL_TYPE (sym1));
4806
4807 case LOC_STATIC:
4808 {
4809 const char *name0 = sym0->linkage_name ();
4810 const char *name1 = sym1->linkage_name ();
4811 return (strcmp (name0, name1) == 0
4812 && SYMBOL_VALUE_ADDRESS (sym0) == SYMBOL_VALUE_ADDRESS (sym1));
4813 }
4814
4815 default:
4816 return 0;
4817 }
4818 }
4819
4820 /* Append (SYM,BLOCK,SYMTAB) to the end of the array of struct block_symbol
4821 records in OBSTACKP. Do nothing if SYM is a duplicate. */
4822
4823 static void
4824 add_defn_to_vec (struct obstack *obstackp,
4825 struct symbol *sym,
4826 const struct block *block)
4827 {
4828 int i;
4829 struct block_symbol *prevDefns = defns_collected (obstackp, 0);
4830
4831 /* Do not try to complete stub types, as the debugger is probably
4832 already scanning all symbols matching a certain name at the
4833 time when this function is called. Trying to replace the stub
4834 type by its associated full type will cause us to restart a scan
4835 which may lead to an infinite recursion. Instead, the client
4836 collecting the matching symbols will end up collecting several
4837 matches, with at least one of them complete. It can then filter
4838 out the stub ones if needed. */
4839
4840 for (i = num_defns_collected (obstackp) - 1; i >= 0; i -= 1)
4841 {
4842 if (lesseq_defined_than (sym, prevDefns[i].symbol))
4843 return;
4844 else if (lesseq_defined_than (prevDefns[i].symbol, sym))
4845 {
4846 prevDefns[i].symbol = sym;
4847 prevDefns[i].block = block;
4848 return;
4849 }
4850 }
4851
4852 {
4853 struct block_symbol info;
4854
4855 info.symbol = sym;
4856 info.block = block;
4857 obstack_grow (obstackp, &info, sizeof (struct block_symbol));
4858 }
4859 }
4860
4861 /* Number of block_symbol structures currently collected in current vector in
4862 OBSTACKP. */
4863
4864 static int
4865 num_defns_collected (struct obstack *obstackp)
4866 {
4867 return obstack_object_size (obstackp) / sizeof (struct block_symbol);
4868 }
4869
4870 /* Vector of block_symbol structures currently collected in current vector in
4871 OBSTACKP. If FINISH, close off the vector and return its final address. */
4872
4873 static struct block_symbol *
4874 defns_collected (struct obstack *obstackp, int finish)
4875 {
4876 if (finish)
4877 return (struct block_symbol *) obstack_finish (obstackp);
4878 else
4879 return (struct block_symbol *) obstack_base (obstackp);
4880 }
4881
4882 /* Return a bound minimal symbol matching NAME according to Ada
4883 decoding rules. Returns an invalid symbol if there is no such
4884 minimal symbol. Names prefixed with "standard__" are handled
4885 specially: "standard__" is first stripped off, and only static and
4886 global symbols are searched. */
4887
4888 struct bound_minimal_symbol
4889 ada_lookup_simple_minsym (const char *name)
4890 {
4891 struct bound_minimal_symbol result;
4892
4893 memset (&result, 0, sizeof (result));
4894
4895 symbol_name_match_type match_type = name_match_type_from_name (name);
4896 lookup_name_info lookup_name (name, match_type);
4897
4898 symbol_name_matcher_ftype *match_name
4899 = ada_get_symbol_name_matcher (lookup_name);
4900
4901 for (objfile *objfile : current_program_space->objfiles ())
4902 {
4903 for (minimal_symbol *msymbol : objfile->msymbols ())
4904 {
4905 if (match_name (msymbol->linkage_name (), lookup_name, NULL)
4906 && MSYMBOL_TYPE (msymbol) != mst_solib_trampoline)
4907 {
4908 result.minsym = msymbol;
4909 result.objfile = objfile;
4910 break;
4911 }
4912 }
4913 }
4914
4915 return result;
4916 }
4917
4918 /* For all subprograms that statically enclose the subprogram of the
4919 selected frame, add symbols matching identifier NAME in DOMAIN
4920 and their blocks to the list of data in OBSTACKP, as for
4921 ada_add_block_symbols (q.v.). If WILD_MATCH_P, treat as NAME
4922 with a wildcard prefix. */
4923
4924 static void
4925 add_symbols_from_enclosing_procs (struct obstack *obstackp,
4926 const lookup_name_info &lookup_name,
4927 domain_enum domain)
4928 {
4929 }
4930
4931 /* True if TYPE is definitely an artificial type supplied to a symbol
4932 for which no debugging information was given in the symbol file. */
4933
4934 static int
4935 is_nondebugging_type (struct type *type)
4936 {
4937 const char *name = ada_type_name (type);
4938
4939 return (name != NULL && strcmp (name, "<variable, no debug info>") == 0);
4940 }
4941
4942 /* Return nonzero if TYPE1 and TYPE2 are two enumeration types
4943 that are deemed "identical" for practical purposes.
4944
4945 This function assumes that TYPE1 and TYPE2 are both TYPE_CODE_ENUM
4946 types and that their number of enumerals is identical (in other
4947 words, type1->num_fields () == type2->num_fields ()). */
4948
4949 static int
4950 ada_identical_enum_types_p (struct type *type1, struct type *type2)
4951 {
4952 int i;
4953
4954 /* The heuristic we use here is fairly conservative. We consider
4955 that 2 enumerate types are identical if they have the same
4956 number of enumerals and that all enumerals have the same
4957 underlying value and name. */
4958
4959 /* All enums in the type should have an identical underlying value. */
4960 for (i = 0; i < type1->num_fields (); i++)
4961 if (TYPE_FIELD_ENUMVAL (type1, i) != TYPE_FIELD_ENUMVAL (type2, i))
4962 return 0;
4963
4964 /* All enumerals should also have the same name (modulo any numerical
4965 suffix). */
4966 for (i = 0; i < type1->num_fields (); i++)
4967 {
4968 const char *name_1 = TYPE_FIELD_NAME (type1, i);
4969 const char *name_2 = TYPE_FIELD_NAME (type2, i);
4970 int len_1 = strlen (name_1);
4971 int len_2 = strlen (name_2);
4972
4973 ada_remove_trailing_digits (TYPE_FIELD_NAME (type1, i), &len_1);
4974 ada_remove_trailing_digits (TYPE_FIELD_NAME (type2, i), &len_2);
4975 if (len_1 != len_2
4976 || strncmp (TYPE_FIELD_NAME (type1, i),
4977 TYPE_FIELD_NAME (type2, i),
4978 len_1) != 0)
4979 return 0;
4980 }
4981
4982 return 1;
4983 }
4984
4985 /* Return nonzero if all the symbols in SYMS are all enumeral symbols
4986 that are deemed "identical" for practical purposes. Sometimes,
4987 enumerals are not strictly identical, but their types are so similar
4988 that they can be considered identical.
4989
4990 For instance, consider the following code:
4991
4992 type Color is (Black, Red, Green, Blue, White);
4993 type RGB_Color is new Color range Red .. Blue;
4994
4995 Type RGB_Color is a subrange of an implicit type which is a copy
4996 of type Color. If we call that implicit type RGB_ColorB ("B" is
4997 for "Base Type"), then type RGB_ColorB is a copy of type Color.
4998 As a result, when an expression references any of the enumeral
4999 by name (Eg. "print green"), the expression is technically
5000 ambiguous and the user should be asked to disambiguate. But
5001 doing so would only hinder the user, since it wouldn't matter
5002 what choice he makes, the outcome would always be the same.
5003 So, for practical purposes, we consider them as the same. */
5004
5005 static int
5006 symbols_are_identical_enums (const std::vector<struct block_symbol> &syms)
5007 {
5008 int i;
5009
5010 /* Before performing a thorough comparison check of each type,
5011 we perform a series of inexpensive checks. We expect that these
5012 checks will quickly fail in the vast majority of cases, and thus
5013 help prevent the unnecessary use of a more expensive comparison.
5014 Said comparison also expects us to make some of these checks
5015 (see ada_identical_enum_types_p). */
5016
5017 /* Quick check: All symbols should have an enum type. */
5018 for (i = 0; i < syms.size (); i++)
5019 if (SYMBOL_TYPE (syms[i].symbol)->code () != TYPE_CODE_ENUM)
5020 return 0;
5021
5022 /* Quick check: They should all have the same value. */
5023 for (i = 1; i < syms.size (); i++)
5024 if (SYMBOL_VALUE (syms[i].symbol) != SYMBOL_VALUE (syms[0].symbol))
5025 return 0;
5026
5027 /* Quick check: They should all have the same number of enumerals. */
5028 for (i = 1; i < syms.size (); i++)
5029 if (SYMBOL_TYPE (syms[i].symbol)->num_fields ()
5030 != SYMBOL_TYPE (syms[0].symbol)->num_fields ())
5031 return 0;
5032
5033 /* All the sanity checks passed, so we might have a set of
5034 identical enumeration types. Perform a more complete
5035 comparison of the type of each symbol. */
5036 for (i = 1; i < syms.size (); i++)
5037 if (!ada_identical_enum_types_p (SYMBOL_TYPE (syms[i].symbol),
5038 SYMBOL_TYPE (syms[0].symbol)))
5039 return 0;
5040
5041 return 1;
5042 }
5043
5044 /* Remove any non-debugging symbols in SYMS that definitely
5045 duplicate other symbols in the list (The only case I know of where
5046 this happens is when object files containing stabs-in-ecoff are
5047 linked with files containing ordinary ecoff debugging symbols (or no
5048 debugging symbols)). Modifies SYMS to squeeze out deleted entries.
5049 Returns the number of items in the modified list. */
5050
5051 static int
5052 remove_extra_symbols (std::vector<struct block_symbol> *syms)
5053 {
5054 int i, j;
5055
5056 /* We should never be called with less than 2 symbols, as there
5057 cannot be any extra symbol in that case. But it's easy to
5058 handle, since we have nothing to do in that case. */
5059 if (syms->size () < 2)
5060 return syms->size ();
5061
5062 i = 0;
5063 while (i < syms->size ())
5064 {
5065 int remove_p = 0;
5066
5067 /* If two symbols have the same name and one of them is a stub type,
5068 the get rid of the stub. */
5069
5070 if (SYMBOL_TYPE ((*syms)[i].symbol)->is_stub ()
5071 && (*syms)[i].symbol->linkage_name () != NULL)
5072 {
5073 for (j = 0; j < syms->size (); j++)
5074 {
5075 if (j != i
5076 && !SYMBOL_TYPE ((*syms)[j].symbol)->is_stub ()
5077 && (*syms)[j].symbol->linkage_name () != NULL
5078 && strcmp ((*syms)[i].symbol->linkage_name (),
5079 (*syms)[j].symbol->linkage_name ()) == 0)
5080 remove_p = 1;
5081 }
5082 }
5083
5084 /* Two symbols with the same name, same class and same address
5085 should be identical. */
5086
5087 else if ((*syms)[i].symbol->linkage_name () != NULL
5088 && SYMBOL_CLASS ((*syms)[i].symbol) == LOC_STATIC
5089 && is_nondebugging_type (SYMBOL_TYPE ((*syms)[i].symbol)))
5090 {
5091 for (j = 0; j < syms->size (); j += 1)
5092 {
5093 if (i != j
5094 && (*syms)[j].symbol->linkage_name () != NULL
5095 && strcmp ((*syms)[i].symbol->linkage_name (),
5096 (*syms)[j].symbol->linkage_name ()) == 0
5097 && SYMBOL_CLASS ((*syms)[i].symbol)
5098 == SYMBOL_CLASS ((*syms)[j].symbol)
5099 && SYMBOL_VALUE_ADDRESS ((*syms)[i].symbol)
5100 == SYMBOL_VALUE_ADDRESS ((*syms)[j].symbol))
5101 remove_p = 1;
5102 }
5103 }
5104
5105 if (remove_p)
5106 syms->erase (syms->begin () + i);
5107 else
5108 i += 1;
5109 }
5110
5111 /* If all the remaining symbols are identical enumerals, then
5112 just keep the first one and discard the rest.
5113
5114 Unlike what we did previously, we do not discard any entry
5115 unless they are ALL identical. This is because the symbol
5116 comparison is not a strict comparison, but rather a practical
5117 comparison. If all symbols are considered identical, then
5118 we can just go ahead and use the first one and discard the rest.
5119 But if we cannot reduce the list to a single element, we have
5120 to ask the user to disambiguate anyways. And if we have to
5121 present a multiple-choice menu, it's less confusing if the list
5122 isn't missing some choices that were identical and yet distinct. */
5123 if (symbols_are_identical_enums (*syms))
5124 syms->resize (1);
5125
5126 return syms->size ();
5127 }
5128
5129 /* Given a type that corresponds to a renaming entity, use the type name
5130 to extract the scope (package name or function name, fully qualified,
5131 and following the GNAT encoding convention) where this renaming has been
5132 defined. */
5133
5134 static std::string
5135 xget_renaming_scope (struct type *renaming_type)
5136 {
5137 /* The renaming types adhere to the following convention:
5138 <scope>__<rename>___<XR extension>.
5139 So, to extract the scope, we search for the "___XR" extension,
5140 and then backtrack until we find the first "__". */
5141
5142 const char *name = renaming_type->name ();
5143 const char *suffix = strstr (name, "___XR");
5144 const char *last;
5145
5146 /* Now, backtrack a bit until we find the first "__". Start looking
5147 at suffix - 3, as the <rename> part is at least one character long. */
5148
5149 for (last = suffix - 3; last > name; last--)
5150 if (last[0] == '_' && last[1] == '_')
5151 break;
5152
5153 /* Make a copy of scope and return it. */
5154 return std::string (name, last);
5155 }
5156
5157 /* Return nonzero if NAME corresponds to a package name. */
5158
5159 static int
5160 is_package_name (const char *name)
5161 {
5162 /* Here, We take advantage of the fact that no symbols are generated
5163 for packages, while symbols are generated for each function.
5164 So the condition for NAME represent a package becomes equivalent
5165 to NAME not existing in our list of symbols. There is only one
5166 small complication with library-level functions (see below). */
5167
5168 /* If it is a function that has not been defined at library level,
5169 then we should be able to look it up in the symbols. */
5170 if (standard_lookup (name, NULL, VAR_DOMAIN) != NULL)
5171 return 0;
5172
5173 /* Library-level function names start with "_ada_". See if function
5174 "_ada_" followed by NAME can be found. */
5175
5176 /* Do a quick check that NAME does not contain "__", since library-level
5177 functions names cannot contain "__" in them. */
5178 if (strstr (name, "__") != NULL)
5179 return 0;
5180
5181 std::string fun_name = string_printf ("_ada_%s", name);
5182
5183 return (standard_lookup (fun_name.c_str (), NULL, VAR_DOMAIN) == NULL);
5184 }
5185
5186 /* Return nonzero if SYM corresponds to a renaming entity that is
5187 not visible from FUNCTION_NAME. */
5188
5189 static int
5190 old_renaming_is_invisible (const struct symbol *sym, const char *function_name)
5191 {
5192 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
5193 return 0;
5194
5195 std::string scope = xget_renaming_scope (SYMBOL_TYPE (sym));
5196
5197 /* If the rename has been defined in a package, then it is visible. */
5198 if (is_package_name (scope.c_str ()))
5199 return 0;
5200
5201 /* Check that the rename is in the current function scope by checking
5202 that its name starts with SCOPE. */
5203
5204 /* If the function name starts with "_ada_", it means that it is
5205 a library-level function. Strip this prefix before doing the
5206 comparison, as the encoding for the renaming does not contain
5207 this prefix. */
5208 if (startswith (function_name, "_ada_"))
5209 function_name += 5;
5210
5211 return !startswith (function_name, scope.c_str ());
5212 }
5213
5214 /* Remove entries from SYMS that corresponds to a renaming entity that
5215 is not visible from the function associated with CURRENT_BLOCK or
5216 that is superfluous due to the presence of more specific renaming
5217 information. Places surviving symbols in the initial entries of
5218 SYMS and returns the number of surviving symbols.
5219
5220 Rationale:
5221 First, in cases where an object renaming is implemented as a
5222 reference variable, GNAT may produce both the actual reference
5223 variable and the renaming encoding. In this case, we discard the
5224 latter.
5225
5226 Second, GNAT emits a type following a specified encoding for each renaming
5227 entity. Unfortunately, STABS currently does not support the definition
5228 of types that are local to a given lexical block, so all renamings types
5229 are emitted at library level. As a consequence, if an application
5230 contains two renaming entities using the same name, and a user tries to
5231 print the value of one of these entities, the result of the ada symbol
5232 lookup will also contain the wrong renaming type.
5233
5234 This function partially covers for this limitation by attempting to
5235 remove from the SYMS list renaming symbols that should be visible
5236 from CURRENT_BLOCK. However, there does not seem be a 100% reliable
5237 method with the current information available. The implementation
5238 below has a couple of limitations (FIXME: brobecker-2003-05-12):
5239
5240 - When the user tries to print a rename in a function while there
5241 is another rename entity defined in a package: Normally, the
5242 rename in the function has precedence over the rename in the
5243 package, so the latter should be removed from the list. This is
5244 currently not the case.
5245
5246 - This function will incorrectly remove valid renames if
5247 the CURRENT_BLOCK corresponds to a function which symbol name
5248 has been changed by an "Export" pragma. As a consequence,
5249 the user will be unable to print such rename entities. */
5250
5251 static int
5252 remove_irrelevant_renamings (std::vector<struct block_symbol> *syms,
5253 const struct block *current_block)
5254 {
5255 struct symbol *current_function;
5256 const char *current_function_name;
5257 int i;
5258 int is_new_style_renaming;
5259
5260 /* If there is both a renaming foo___XR... encoded as a variable and
5261 a simple variable foo in the same block, discard the latter.
5262 First, zero out such symbols, then compress. */
5263 is_new_style_renaming = 0;
5264 for (i = 0; i < syms->size (); i += 1)
5265 {
5266 struct symbol *sym = (*syms)[i].symbol;
5267 const struct block *block = (*syms)[i].block;
5268 const char *name;
5269 const char *suffix;
5270
5271 if (sym == NULL || SYMBOL_CLASS (sym) == LOC_TYPEDEF)
5272 continue;
5273 name = sym->linkage_name ();
5274 suffix = strstr (name, "___XR");
5275
5276 if (suffix != NULL)
5277 {
5278 int name_len = suffix - name;
5279 int j;
5280
5281 is_new_style_renaming = 1;
5282 for (j = 0; j < syms->size (); j += 1)
5283 if (i != j && (*syms)[j].symbol != NULL
5284 && strncmp (name, (*syms)[j].symbol->linkage_name (),
5285 name_len) == 0
5286 && block == (*syms)[j].block)
5287 (*syms)[j].symbol = NULL;
5288 }
5289 }
5290 if (is_new_style_renaming)
5291 {
5292 int j, k;
5293
5294 for (j = k = 0; j < syms->size (); j += 1)
5295 if ((*syms)[j].symbol != NULL)
5296 {
5297 (*syms)[k] = (*syms)[j];
5298 k += 1;
5299 }
5300 return k;
5301 }
5302
5303 /* Extract the function name associated to CURRENT_BLOCK.
5304 Abort if unable to do so. */
5305
5306 if (current_block == NULL)
5307 return syms->size ();
5308
5309 current_function = block_linkage_function (current_block);
5310 if (current_function == NULL)
5311 return syms->size ();
5312
5313 current_function_name = current_function->linkage_name ();
5314 if (current_function_name == NULL)
5315 return syms->size ();
5316
5317 /* Check each of the symbols, and remove it from the list if it is
5318 a type corresponding to a renaming that is out of the scope of
5319 the current block. */
5320
5321 i = 0;
5322 while (i < syms->size ())
5323 {
5324 if (ada_parse_renaming ((*syms)[i].symbol, NULL, NULL, NULL)
5325 == ADA_OBJECT_RENAMING
5326 && old_renaming_is_invisible ((*syms)[i].symbol,
5327 current_function_name))
5328 syms->erase (syms->begin () + i);
5329 else
5330 i += 1;
5331 }
5332
5333 return syms->size ();
5334 }
5335
5336 /* Add to OBSTACKP all symbols from BLOCK (and its super-blocks)
5337 whose name and domain match NAME and DOMAIN respectively.
5338 If no match was found, then extend the search to "enclosing"
5339 routines (in other words, if we're inside a nested function,
5340 search the symbols defined inside the enclosing functions).
5341 If WILD_MATCH_P is nonzero, perform the naming matching in
5342 "wild" mode (see function "wild_match" for more info).
5343
5344 Note: This function assumes that OBSTACKP has 0 (zero) element in it. */
5345
5346 static void
5347 ada_add_local_symbols (struct obstack *obstackp,
5348 const lookup_name_info &lookup_name,
5349 const struct block *block, domain_enum domain)
5350 {
5351 int block_depth = 0;
5352
5353 while (block != NULL)
5354 {
5355 block_depth += 1;
5356 ada_add_block_symbols (obstackp, block, lookup_name, domain, NULL);
5357
5358 /* If we found a non-function match, assume that's the one. */
5359 if (is_nonfunction (defns_collected (obstackp, 0),
5360 num_defns_collected (obstackp)))
5361 return;
5362
5363 block = BLOCK_SUPERBLOCK (block);
5364 }
5365
5366 /* If no luck so far, try to find NAME as a local symbol in some lexically
5367 enclosing subprogram. */
5368 if (num_defns_collected (obstackp) == 0 && block_depth > 2)
5369 add_symbols_from_enclosing_procs (obstackp, lookup_name, domain);
5370 }
5371
5372 /* An object of this type is used as the user_data argument when
5373 calling the map_matching_symbols method. */
5374
5375 struct match_data
5376 {
5377 struct objfile *objfile;
5378 struct obstack *obstackp;
5379 struct symbol *arg_sym;
5380 int found_sym;
5381 };
5382
5383 /* A callback for add_nonlocal_symbols that adds symbol, found in BSYM,
5384 to a list of symbols. DATA is a pointer to a struct match_data *
5385 containing the obstack that collects the symbol list, the file that SYM
5386 must come from, a flag indicating whether a non-argument symbol has
5387 been found in the current block, and the last argument symbol
5388 passed in SYM within the current block (if any). When SYM is null,
5389 marking the end of a block, the argument symbol is added if no
5390 other has been found. */
5391
5392 static bool
5393 aux_add_nonlocal_symbols (struct block_symbol *bsym,
5394 struct match_data *data)
5395 {
5396 const struct block *block = bsym->block;
5397 struct symbol *sym = bsym->symbol;
5398
5399 if (sym == NULL)
5400 {
5401 if (!data->found_sym && data->arg_sym != NULL)
5402 add_defn_to_vec (data->obstackp,
5403 fixup_symbol_section (data->arg_sym, data->objfile),
5404 block);
5405 data->found_sym = 0;
5406 data->arg_sym = NULL;
5407 }
5408 else
5409 {
5410 if (SYMBOL_CLASS (sym) == LOC_UNRESOLVED)
5411 return true;
5412 else if (SYMBOL_IS_ARGUMENT (sym))
5413 data->arg_sym = sym;
5414 else
5415 {
5416 data->found_sym = 1;
5417 add_defn_to_vec (data->obstackp,
5418 fixup_symbol_section (sym, data->objfile),
5419 block);
5420 }
5421 }
5422 return true;
5423 }
5424
5425 /* Helper for add_nonlocal_symbols. Find symbols in DOMAIN which are
5426 targeted by renamings matching LOOKUP_NAME in BLOCK. Add these
5427 symbols to OBSTACKP. Return whether we found such symbols. */
5428
5429 static int
5430 ada_add_block_renamings (struct obstack *obstackp,
5431 const struct block *block,
5432 const lookup_name_info &lookup_name,
5433 domain_enum domain)
5434 {
5435 struct using_direct *renaming;
5436 int defns_mark = num_defns_collected (obstackp);
5437
5438 symbol_name_matcher_ftype *name_match
5439 = ada_get_symbol_name_matcher (lookup_name);
5440
5441 for (renaming = block_using (block);
5442 renaming != NULL;
5443 renaming = renaming->next)
5444 {
5445 const char *r_name;
5446
5447 /* Avoid infinite recursions: skip this renaming if we are actually
5448 already traversing it.
5449
5450 Currently, symbol lookup in Ada don't use the namespace machinery from
5451 C++/Fortran support: skip namespace imports that use them. */
5452 if (renaming->searched
5453 || (renaming->import_src != NULL
5454 && renaming->import_src[0] != '\0')
5455 || (renaming->import_dest != NULL
5456 && renaming->import_dest[0] != '\0'))
5457 continue;
5458 renaming->searched = 1;
5459
5460 /* TODO: here, we perform another name-based symbol lookup, which can
5461 pull its own multiple overloads. In theory, we should be able to do
5462 better in this case since, in DWARF, DW_AT_import is a DIE reference,
5463 not a simple name. But in order to do this, we would need to enhance
5464 the DWARF reader to associate a symbol to this renaming, instead of a
5465 name. So, for now, we do something simpler: re-use the C++/Fortran
5466 namespace machinery. */
5467 r_name = (renaming->alias != NULL
5468 ? renaming->alias
5469 : renaming->declaration);
5470 if (name_match (r_name, lookup_name, NULL))
5471 {
5472 lookup_name_info decl_lookup_name (renaming->declaration,
5473 lookup_name.match_type ());
5474 ada_add_all_symbols (obstackp, block, decl_lookup_name, domain,
5475 1, NULL);
5476 }
5477 renaming->searched = 0;
5478 }
5479 return num_defns_collected (obstackp) != defns_mark;
5480 }
5481
5482 /* Implements compare_names, but only applying the comparision using
5483 the given CASING. */
5484
5485 static int
5486 compare_names_with_case (const char *string1, const char *string2,
5487 enum case_sensitivity casing)
5488 {
5489 while (*string1 != '\0' && *string2 != '\0')
5490 {
5491 char c1, c2;
5492
5493 if (isspace (*string1) || isspace (*string2))
5494 return strcmp_iw_ordered (string1, string2);
5495
5496 if (casing == case_sensitive_off)
5497 {
5498 c1 = tolower (*string1);
5499 c2 = tolower (*string2);
5500 }
5501 else
5502 {
5503 c1 = *string1;
5504 c2 = *string2;
5505 }
5506 if (c1 != c2)
5507 break;
5508
5509 string1 += 1;
5510 string2 += 1;
5511 }
5512
5513 switch (*string1)
5514 {
5515 case '(':
5516 return strcmp_iw_ordered (string1, string2);
5517 case '_':
5518 if (*string2 == '\0')
5519 {
5520 if (is_name_suffix (string1))
5521 return 0;
5522 else
5523 return 1;
5524 }
5525 /* FALLTHROUGH */
5526 default:
5527 if (*string2 == '(')
5528 return strcmp_iw_ordered (string1, string2);
5529 else
5530 {
5531 if (casing == case_sensitive_off)
5532 return tolower (*string1) - tolower (*string2);
5533 else
5534 return *string1 - *string2;
5535 }
5536 }
5537 }
5538
5539 /* Compare STRING1 to STRING2, with results as for strcmp.
5540 Compatible with strcmp_iw_ordered in that...
5541
5542 strcmp_iw_ordered (STRING1, STRING2) <= 0
5543
5544 ... implies...
5545
5546 compare_names (STRING1, STRING2) <= 0
5547
5548 (they may differ as to what symbols compare equal). */
5549
5550 static int
5551 compare_names (const char *string1, const char *string2)
5552 {
5553 int result;
5554
5555 /* Similar to what strcmp_iw_ordered does, we need to perform
5556 a case-insensitive comparison first, and only resort to
5557 a second, case-sensitive, comparison if the first one was
5558 not sufficient to differentiate the two strings. */
5559
5560 result = compare_names_with_case (string1, string2, case_sensitive_off);
5561 if (result == 0)
5562 result = compare_names_with_case (string1, string2, case_sensitive_on);
5563
5564 return result;
5565 }
5566
5567 /* Convenience function to get at the Ada encoded lookup name for
5568 LOOKUP_NAME, as a C string. */
5569
5570 static const char *
5571 ada_lookup_name (const lookup_name_info &lookup_name)
5572 {
5573 return lookup_name.ada ().lookup_name ().c_str ();
5574 }
5575
5576 /* Add to OBSTACKP all non-local symbols whose name and domain match
5577 LOOKUP_NAME and DOMAIN respectively. The search is performed on
5578 GLOBAL_BLOCK symbols if GLOBAL is non-zero, or on STATIC_BLOCK
5579 symbols otherwise. */
5580
5581 static void
5582 add_nonlocal_symbols (struct obstack *obstackp,
5583 const lookup_name_info &lookup_name,
5584 domain_enum domain, int global)
5585 {
5586 struct match_data data;
5587
5588 memset (&data, 0, sizeof data);
5589 data.obstackp = obstackp;
5590
5591 bool is_wild_match = lookup_name.ada ().wild_match_p ();
5592
5593 auto callback = [&] (struct block_symbol *bsym)
5594 {
5595 return aux_add_nonlocal_symbols (bsym, &data);
5596 };
5597
5598 for (objfile *objfile : current_program_space->objfiles ())
5599 {
5600 data.objfile = objfile;
5601
5602 objfile->sf->qf->map_matching_symbols (objfile, lookup_name,
5603 domain, global, callback,
5604 (is_wild_match
5605 ? NULL : compare_names));
5606
5607 for (compunit_symtab *cu : objfile->compunits ())
5608 {
5609 const struct block *global_block
5610 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cu), GLOBAL_BLOCK);
5611
5612 if (ada_add_block_renamings (obstackp, global_block, lookup_name,
5613 domain))
5614 data.found_sym = 1;
5615 }
5616 }
5617
5618 if (num_defns_collected (obstackp) == 0 && global && !is_wild_match)
5619 {
5620 const char *name = ada_lookup_name (lookup_name);
5621 std::string bracket_name = std::string ("<_ada_") + name + '>';
5622 lookup_name_info name1 (bracket_name, symbol_name_match_type::FULL);
5623
5624 for (objfile *objfile : current_program_space->objfiles ())
5625 {
5626 data.objfile = objfile;
5627 objfile->sf->qf->map_matching_symbols (objfile, name1,
5628 domain, global, callback,
5629 compare_names);
5630 }
5631 }
5632 }
5633
5634 /* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if
5635 FULL_SEARCH is non-zero, enclosing scope and in global scopes,
5636 returning the number of matches. Add these to OBSTACKP.
5637
5638 When FULL_SEARCH is non-zero, any non-function/non-enumeral
5639 symbol match within the nest of blocks whose innermost member is BLOCK,
5640 is the one match returned (no other matches in that or
5641 enclosing blocks is returned). If there are any matches in or
5642 surrounding BLOCK, then these alone are returned.
5643
5644 Names prefixed with "standard__" are handled specially:
5645 "standard__" is first stripped off (by the lookup_name
5646 constructor), and only static and global symbols are searched.
5647
5648 If MADE_GLOBAL_LOOKUP_P is non-null, set it before return to whether we had
5649 to lookup global symbols. */
5650
5651 static void
5652 ada_add_all_symbols (struct obstack *obstackp,
5653 const struct block *block,
5654 const lookup_name_info &lookup_name,
5655 domain_enum domain,
5656 int full_search,
5657 int *made_global_lookup_p)
5658 {
5659 struct symbol *sym;
5660
5661 if (made_global_lookup_p)
5662 *made_global_lookup_p = 0;
5663
5664 /* Special case: If the user specifies a symbol name inside package
5665 Standard, do a non-wild matching of the symbol name without
5666 the "standard__" prefix. This was primarily introduced in order
5667 to allow the user to specifically access the standard exceptions
5668 using, for instance, Standard.Constraint_Error when Constraint_Error
5669 is ambiguous (due to the user defining its own Constraint_Error
5670 entity inside its program). */
5671 if (lookup_name.ada ().standard_p ())
5672 block = NULL;
5673
5674 /* Check the non-global symbols. If we have ANY match, then we're done. */
5675
5676 if (block != NULL)
5677 {
5678 if (full_search)
5679 ada_add_local_symbols (obstackp, lookup_name, block, domain);
5680 else
5681 {
5682 /* In the !full_search case we're are being called by
5683 iterate_over_symbols, and we don't want to search
5684 superblocks. */
5685 ada_add_block_symbols (obstackp, block, lookup_name, domain, NULL);
5686 }
5687 if (num_defns_collected (obstackp) > 0 || !full_search)
5688 return;
5689 }
5690
5691 /* No non-global symbols found. Check our cache to see if we have
5692 already performed this search before. If we have, then return
5693 the same result. */
5694
5695 if (lookup_cached_symbol (ada_lookup_name (lookup_name),
5696 domain, &sym, &block))
5697 {
5698 if (sym != NULL)
5699 add_defn_to_vec (obstackp, sym, block);
5700 return;
5701 }
5702
5703 if (made_global_lookup_p)
5704 *made_global_lookup_p = 1;
5705
5706 /* Search symbols from all global blocks. */
5707
5708 add_nonlocal_symbols (obstackp, lookup_name, domain, 1);
5709
5710 /* Now add symbols from all per-file blocks if we've gotten no hits
5711 (not strictly correct, but perhaps better than an error). */
5712
5713 if (num_defns_collected (obstackp) == 0)
5714 add_nonlocal_symbols (obstackp, lookup_name, domain, 0);
5715 }
5716
5717 /* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if FULL_SEARCH
5718 is non-zero, enclosing scope and in global scopes, returning the number of
5719 matches.
5720 Fills *RESULTS with (SYM,BLOCK) tuples, indicating the symbols
5721 found and the blocks and symbol tables (if any) in which they were
5722 found.
5723
5724 When full_search is non-zero, any non-function/non-enumeral
5725 symbol match within the nest of blocks whose innermost member is BLOCK,
5726 is the one match returned (no other matches in that or
5727 enclosing blocks is returned). If there are any matches in or
5728 surrounding BLOCK, then these alone are returned.
5729
5730 Names prefixed with "standard__" are handled specially: "standard__"
5731 is first stripped off, and only static and global symbols are searched. */
5732
5733 static int
5734 ada_lookup_symbol_list_worker (const lookup_name_info &lookup_name,
5735 const struct block *block,
5736 domain_enum domain,
5737 std::vector<struct block_symbol> *results,
5738 int full_search)
5739 {
5740 int syms_from_global_search;
5741 int ndefns;
5742 auto_obstack obstack;
5743
5744 ada_add_all_symbols (&obstack, block, lookup_name,
5745 domain, full_search, &syms_from_global_search);
5746
5747 ndefns = num_defns_collected (&obstack);
5748
5749 struct block_symbol *base = defns_collected (&obstack, 1);
5750 for (int i = 0; i < ndefns; ++i)
5751 results->push_back (base[i]);
5752
5753 ndefns = remove_extra_symbols (results);
5754
5755 if (ndefns == 0 && full_search && syms_from_global_search)
5756 cache_symbol (ada_lookup_name (lookup_name), domain, NULL, NULL);
5757
5758 if (ndefns == 1 && full_search && syms_from_global_search)
5759 cache_symbol (ada_lookup_name (lookup_name), domain,
5760 (*results)[0].symbol, (*results)[0].block);
5761
5762 ndefns = remove_irrelevant_renamings (results, block);
5763
5764 return ndefns;
5765 }
5766
5767 /* Find symbols in DOMAIN matching NAME, in BLOCK and enclosing scope and
5768 in global scopes, returning the number of matches, and filling *RESULTS
5769 with (SYM,BLOCK) tuples.
5770
5771 See ada_lookup_symbol_list_worker for further details. */
5772
5773 int
5774 ada_lookup_symbol_list (const char *name, const struct block *block,
5775 domain_enum domain,
5776 std::vector<struct block_symbol> *results)
5777 {
5778 symbol_name_match_type name_match_type = name_match_type_from_name (name);
5779 lookup_name_info lookup_name (name, name_match_type);
5780
5781 return ada_lookup_symbol_list_worker (lookup_name, block, domain, results, 1);
5782 }
5783
5784 /* The result is as for ada_lookup_symbol_list with FULL_SEARCH set
5785 to 1, but choosing the first symbol found if there are multiple
5786 choices.
5787
5788 The result is stored in *INFO, which must be non-NULL.
5789 If no match is found, INFO->SYM is set to NULL. */
5790
5791 void
5792 ada_lookup_encoded_symbol (const char *name, const struct block *block,
5793 domain_enum domain,
5794 struct block_symbol *info)
5795 {
5796 /* Since we already have an encoded name, wrap it in '<>' to force a
5797 verbatim match. Otherwise, if the name happens to not look like
5798 an encoded name (because it doesn't include a "__"),
5799 ada_lookup_name_info would re-encode/fold it again, and that
5800 would e.g., incorrectly lowercase object renaming names like
5801 "R28b" -> "r28b". */
5802 std::string verbatim = std::string ("<") + name + '>';
5803
5804 gdb_assert (info != NULL);
5805 *info = ada_lookup_symbol (verbatim.c_str (), block, domain);
5806 }
5807
5808 /* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing
5809 scope and in global scopes, or NULL if none. NAME is folded and
5810 encoded first. Otherwise, the result is as for ada_lookup_symbol_list,
5811 choosing the first symbol if there are multiple choices. */
5812
5813 struct block_symbol
5814 ada_lookup_symbol (const char *name, const struct block *block0,
5815 domain_enum domain)
5816 {
5817 std::vector<struct block_symbol> candidates;
5818 int n_candidates;
5819
5820 n_candidates = ada_lookup_symbol_list (name, block0, domain, &candidates);
5821
5822 if (n_candidates == 0)
5823 return {};
5824
5825 block_symbol info = candidates[0];
5826 info.symbol = fixup_symbol_section (info.symbol, NULL);
5827 return info;
5828 }
5829
5830
5831 /* True iff STR is a possible encoded suffix of a normal Ada name
5832 that is to be ignored for matching purposes. Suffixes of parallel
5833 names (e.g., XVE) are not included here. Currently, the possible suffixes
5834 are given by any of the regular expressions:
5835
5836 [.$][0-9]+ [nested subprogram suffix, on platforms such as GNU/Linux]
5837 ___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX]
5838 TKB [subprogram suffix for task bodies]
5839 _E[0-9]+[bs]$ [protected object entry suffixes]
5840 (X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$
5841
5842 Also, any leading "__[0-9]+" sequence is skipped before the suffix
5843 match is performed. This sequence is used to differentiate homonyms,
5844 is an optional part of a valid name suffix. */
5845
5846 static int
5847 is_name_suffix (const char *str)
5848 {
5849 int k;
5850 const char *matching;
5851 const int len = strlen (str);
5852
5853 /* Skip optional leading __[0-9]+. */
5854
5855 if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2]))
5856 {
5857 str += 3;
5858 while (isdigit (str[0]))
5859 str += 1;
5860 }
5861
5862 /* [.$][0-9]+ */
5863
5864 if (str[0] == '.' || str[0] == '$')
5865 {
5866 matching = str + 1;
5867 while (isdigit (matching[0]))
5868 matching += 1;
5869 if (matching[0] == '\0')
5870 return 1;
5871 }
5872
5873 /* ___[0-9]+ */
5874
5875 if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_')
5876 {
5877 matching = str + 3;
5878 while (isdigit (matching[0]))
5879 matching += 1;
5880 if (matching[0] == '\0')
5881 return 1;
5882 }
5883
5884 /* "TKB" suffixes are used for subprograms implementing task bodies. */
5885
5886 if (strcmp (str, "TKB") == 0)
5887 return 1;
5888
5889 #if 0
5890 /* FIXME: brobecker/2005-09-23: Protected Object subprograms end
5891 with a N at the end. Unfortunately, the compiler uses the same
5892 convention for other internal types it creates. So treating
5893 all entity names that end with an "N" as a name suffix causes
5894 some regressions. For instance, consider the case of an enumerated
5895 type. To support the 'Image attribute, it creates an array whose
5896 name ends with N.
5897 Having a single character like this as a suffix carrying some
5898 information is a bit risky. Perhaps we should change the encoding
5899 to be something like "_N" instead. In the meantime, do not do
5900 the following check. */
5901 /* Protected Object Subprograms */
5902 if (len == 1 && str [0] == 'N')
5903 return 1;
5904 #endif
5905
5906 /* _E[0-9]+[bs]$ */
5907 if (len > 3 && str[0] == '_' && str [1] == 'E' && isdigit (str[2]))
5908 {
5909 matching = str + 3;
5910 while (isdigit (matching[0]))
5911 matching += 1;
5912 if ((matching[0] == 'b' || matching[0] == 's')
5913 && matching [1] == '\0')
5914 return 1;
5915 }
5916
5917 /* ??? We should not modify STR directly, as we are doing below. This
5918 is fine in this case, but may become problematic later if we find
5919 that this alternative did not work, and want to try matching
5920 another one from the begining of STR. Since we modified it, we
5921 won't be able to find the begining of the string anymore! */
5922 if (str[0] == 'X')
5923 {
5924 str += 1;
5925 while (str[0] != '_' && str[0] != '\0')
5926 {
5927 if (str[0] != 'n' && str[0] != 'b')
5928 return 0;
5929 str += 1;
5930 }
5931 }
5932
5933 if (str[0] == '\000')
5934 return 1;
5935
5936 if (str[0] == '_')
5937 {
5938 if (str[1] != '_' || str[2] == '\000')
5939 return 0;
5940 if (str[2] == '_')
5941 {
5942 if (strcmp (str + 3, "JM") == 0)
5943 return 1;
5944 /* FIXME: brobecker/2004-09-30: GNAT will soon stop using
5945 the LJM suffix in favor of the JM one. But we will
5946 still accept LJM as a valid suffix for a reasonable
5947 amount of time, just to allow ourselves to debug programs
5948 compiled using an older version of GNAT. */
5949 if (strcmp (str + 3, "LJM") == 0)
5950 return 1;
5951 if (str[3] != 'X')
5952 return 0;
5953 if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B'
5954 || str[4] == 'U' || str[4] == 'P')
5955 return 1;
5956 if (str[4] == 'R' && str[5] != 'T')
5957 return 1;
5958 return 0;
5959 }
5960 if (!isdigit (str[2]))
5961 return 0;
5962 for (k = 3; str[k] != '\0'; k += 1)
5963 if (!isdigit (str[k]) && str[k] != '_')
5964 return 0;
5965 return 1;
5966 }
5967 if (str[0] == '$' && isdigit (str[1]))
5968 {
5969 for (k = 2; str[k] != '\0'; k += 1)
5970 if (!isdigit (str[k]) && str[k] != '_')
5971 return 0;
5972 return 1;
5973 }
5974 return 0;
5975 }
5976
5977 /* Return non-zero if the string starting at NAME and ending before
5978 NAME_END contains no capital letters. */
5979
5980 static int
5981 is_valid_name_for_wild_match (const char *name0)
5982 {
5983 std::string decoded_name = ada_decode (name0);
5984 int i;
5985
5986 /* If the decoded name starts with an angle bracket, it means that
5987 NAME0 does not follow the GNAT encoding format. It should then
5988 not be allowed as a possible wild match. */
5989 if (decoded_name[0] == '<')
5990 return 0;
5991
5992 for (i=0; decoded_name[i] != '\0'; i++)
5993 if (isalpha (decoded_name[i]) && !islower (decoded_name[i]))
5994 return 0;
5995
5996 return 1;
5997 }
5998
5999 /* Advance *NAMEP to next occurrence in the string NAME0 of the TARGET0
6000 character which could start a simple name. Assumes that *NAMEP points
6001 somewhere inside the string beginning at NAME0. */
6002
6003 static int
6004 advance_wild_match (const char **namep, const char *name0, char target0)
6005 {
6006 const char *name = *namep;
6007
6008 while (1)
6009 {
6010 char t0, t1;
6011
6012 t0 = *name;
6013 if (t0 == '_')
6014 {
6015 t1 = name[1];
6016 if ((t1 >= 'a' && t1 <= 'z') || (t1 >= '0' && t1 <= '9'))
6017 {
6018 name += 1;
6019 if (name == name0 + 5 && startswith (name0, "_ada"))
6020 break;
6021 else
6022 name += 1;
6023 }
6024 else if (t1 == '_' && ((name[2] >= 'a' && name[2] <= 'z')
6025 || name[2] == target0))
6026 {
6027 name += 2;
6028 break;
6029 }
6030 else
6031 return 0;
6032 }
6033 else if ((t0 >= 'a' && t0 <= 'z') || (t0 >= '0' && t0 <= '9'))
6034 name += 1;
6035 else
6036 return 0;
6037 }
6038
6039 *namep = name;
6040 return 1;
6041 }
6042
6043 /* Return true iff NAME encodes a name of the form prefix.PATN.
6044 Ignores any informational suffixes of NAME (i.e., for which
6045 is_name_suffix is true). Assumes that PATN is a lower-cased Ada
6046 simple name. */
6047
6048 static bool
6049 wild_match (const char *name, const char *patn)
6050 {
6051 const char *p;
6052 const char *name0 = name;
6053
6054 while (1)
6055 {
6056 const char *match = name;
6057
6058 if (*name == *patn)
6059 {
6060 for (name += 1, p = patn + 1; *p != '\0'; name += 1, p += 1)
6061 if (*p != *name)
6062 break;
6063 if (*p == '\0' && is_name_suffix (name))
6064 return match == name0 || is_valid_name_for_wild_match (name0);
6065
6066 if (name[-1] == '_')
6067 name -= 1;
6068 }
6069 if (!advance_wild_match (&name, name0, *patn))
6070 return false;
6071 }
6072 }
6073
6074 /* Returns true iff symbol name SYM_NAME matches SEARCH_NAME, ignoring
6075 any trailing suffixes that encode debugging information or leading
6076 _ada_ on SYM_NAME (see is_name_suffix commentary for the debugging
6077 information that is ignored). */
6078
6079 static bool
6080 full_match (const char *sym_name, const char *search_name)
6081 {
6082 size_t search_name_len = strlen (search_name);
6083
6084 if (strncmp (sym_name, search_name, search_name_len) == 0
6085 && is_name_suffix (sym_name + search_name_len))
6086 return true;
6087
6088 if (startswith (sym_name, "_ada_")
6089 && strncmp (sym_name + 5, search_name, search_name_len) == 0
6090 && is_name_suffix (sym_name + search_name_len + 5))
6091 return true;
6092
6093 return false;
6094 }
6095
6096 /* Add symbols from BLOCK matching LOOKUP_NAME in DOMAIN to vector
6097 *defn_symbols, updating the list of symbols in OBSTACKP (if
6098 necessary). OBJFILE is the section containing BLOCK. */
6099
6100 static void
6101 ada_add_block_symbols (struct obstack *obstackp,
6102 const struct block *block,
6103 const lookup_name_info &lookup_name,
6104 domain_enum domain, struct objfile *objfile)
6105 {
6106 struct block_iterator iter;
6107 /* A matching argument symbol, if any. */
6108 struct symbol *arg_sym;
6109 /* Set true when we find a matching non-argument symbol. */
6110 int found_sym;
6111 struct symbol *sym;
6112
6113 arg_sym = NULL;
6114 found_sym = 0;
6115 for (sym = block_iter_match_first (block, lookup_name, &iter);
6116 sym != NULL;
6117 sym = block_iter_match_next (lookup_name, &iter))
6118 {
6119 if (symbol_matches_domain (sym->language (), SYMBOL_DOMAIN (sym), domain))
6120 {
6121 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6122 {
6123 if (SYMBOL_IS_ARGUMENT (sym))
6124 arg_sym = sym;
6125 else
6126 {
6127 found_sym = 1;
6128 add_defn_to_vec (obstackp,
6129 fixup_symbol_section (sym, objfile),
6130 block);
6131 }
6132 }
6133 }
6134 }
6135
6136 /* Handle renamings. */
6137
6138 if (ada_add_block_renamings (obstackp, block, lookup_name, domain))
6139 found_sym = 1;
6140
6141 if (!found_sym && arg_sym != NULL)
6142 {
6143 add_defn_to_vec (obstackp,
6144 fixup_symbol_section (arg_sym, objfile),
6145 block);
6146 }
6147
6148 if (!lookup_name.ada ().wild_match_p ())
6149 {
6150 arg_sym = NULL;
6151 found_sym = 0;
6152 const std::string &ada_lookup_name = lookup_name.ada ().lookup_name ();
6153 const char *name = ada_lookup_name.c_str ();
6154 size_t name_len = ada_lookup_name.size ();
6155
6156 ALL_BLOCK_SYMBOLS (block, iter, sym)
6157 {
6158 if (symbol_matches_domain (sym->language (),
6159 SYMBOL_DOMAIN (sym), domain))
6160 {
6161 int cmp;
6162
6163 cmp = (int) '_' - (int) sym->linkage_name ()[0];
6164 if (cmp == 0)
6165 {
6166 cmp = !startswith (sym->linkage_name (), "_ada_");
6167 if (cmp == 0)
6168 cmp = strncmp (name, sym->linkage_name () + 5,
6169 name_len);
6170 }
6171
6172 if (cmp == 0
6173 && is_name_suffix (sym->linkage_name () + name_len + 5))
6174 {
6175 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6176 {
6177 if (SYMBOL_IS_ARGUMENT (sym))
6178 arg_sym = sym;
6179 else
6180 {
6181 found_sym = 1;
6182 add_defn_to_vec (obstackp,
6183 fixup_symbol_section (sym, objfile),
6184 block);
6185 }
6186 }
6187 }
6188 }
6189 }
6190
6191 /* NOTE: This really shouldn't be needed for _ada_ symbols.
6192 They aren't parameters, right? */
6193 if (!found_sym && arg_sym != NULL)
6194 {
6195 add_defn_to_vec (obstackp,
6196 fixup_symbol_section (arg_sym, objfile),
6197 block);
6198 }
6199 }
6200 }
6201 \f
6202
6203 /* Symbol Completion */
6204
6205 /* See symtab.h. */
6206
6207 bool
6208 ada_lookup_name_info::matches
6209 (const char *sym_name,
6210 symbol_name_match_type match_type,
6211 completion_match_result *comp_match_res) const
6212 {
6213 bool match = false;
6214 const char *text = m_encoded_name.c_str ();
6215 size_t text_len = m_encoded_name.size ();
6216
6217 /* First, test against the fully qualified name of the symbol. */
6218
6219 if (strncmp (sym_name, text, text_len) == 0)
6220 match = true;
6221
6222 std::string decoded_name = ada_decode (sym_name);
6223 if (match && !m_encoded_p)
6224 {
6225 /* One needed check before declaring a positive match is to verify
6226 that iff we are doing a verbatim match, the decoded version
6227 of the symbol name starts with '<'. Otherwise, this symbol name
6228 is not a suitable completion. */
6229
6230 bool has_angle_bracket = (decoded_name[0] == '<');
6231 match = (has_angle_bracket == m_verbatim_p);
6232 }
6233
6234 if (match && !m_verbatim_p)
6235 {
6236 /* When doing non-verbatim match, another check that needs to
6237 be done is to verify that the potentially matching symbol name
6238 does not include capital letters, because the ada-mode would
6239 not be able to understand these symbol names without the
6240 angle bracket notation. */
6241 const char *tmp;
6242
6243 for (tmp = sym_name; *tmp != '\0' && !isupper (*tmp); tmp++);
6244 if (*tmp != '\0')
6245 match = false;
6246 }
6247
6248 /* Second: Try wild matching... */
6249
6250 if (!match && m_wild_match_p)
6251 {
6252 /* Since we are doing wild matching, this means that TEXT
6253 may represent an unqualified symbol name. We therefore must
6254 also compare TEXT against the unqualified name of the symbol. */
6255 sym_name = ada_unqualified_name (decoded_name.c_str ());
6256
6257 if (strncmp (sym_name, text, text_len) == 0)
6258 match = true;
6259 }
6260
6261 /* Finally: If we found a match, prepare the result to return. */
6262
6263 if (!match)
6264 return false;
6265
6266 if (comp_match_res != NULL)
6267 {
6268 std::string &match_str = comp_match_res->match.storage ();
6269
6270 if (!m_encoded_p)
6271 match_str = ada_decode (sym_name);
6272 else
6273 {
6274 if (m_verbatim_p)
6275 match_str = add_angle_brackets (sym_name);
6276 else
6277 match_str = sym_name;
6278
6279 }
6280
6281 comp_match_res->set_match (match_str.c_str ());
6282 }
6283
6284 return true;
6285 }
6286
6287 /* Field Access */
6288
6289 /* Return non-zero if TYPE is a pointer to the GNAT dispatch table used
6290 for tagged types. */
6291
6292 static int
6293 ada_is_dispatch_table_ptr_type (struct type *type)
6294 {
6295 const char *name;
6296
6297 if (type->code () != TYPE_CODE_PTR)
6298 return 0;
6299
6300 name = TYPE_TARGET_TYPE (type)->name ();
6301 if (name == NULL)
6302 return 0;
6303
6304 return (strcmp (name, "ada__tags__dispatch_table") == 0);
6305 }
6306
6307 /* Return non-zero if TYPE is an interface tag. */
6308
6309 static int
6310 ada_is_interface_tag (struct type *type)
6311 {
6312 const char *name = type->name ();
6313
6314 if (name == NULL)
6315 return 0;
6316
6317 return (strcmp (name, "ada__tags__interface_tag") == 0);
6318 }
6319
6320 /* True if field number FIELD_NUM in struct or union type TYPE is supposed
6321 to be invisible to users. */
6322
6323 int
6324 ada_is_ignored_field (struct type *type, int field_num)
6325 {
6326 if (field_num < 0 || field_num > type->num_fields ())
6327 return 1;
6328
6329 /* Check the name of that field. */
6330 {
6331 const char *name = TYPE_FIELD_NAME (type, field_num);
6332
6333 /* Anonymous field names should not be printed.
6334 brobecker/2007-02-20: I don't think this can actually happen
6335 but we don't want to print the value of anonymous fields anyway. */
6336 if (name == NULL)
6337 return 1;
6338
6339 /* Normally, fields whose name start with an underscore ("_")
6340 are fields that have been internally generated by the compiler,
6341 and thus should not be printed. The "_parent" field is special,
6342 however: This is a field internally generated by the compiler
6343 for tagged types, and it contains the components inherited from
6344 the parent type. This field should not be printed as is, but
6345 should not be ignored either. */
6346 if (name[0] == '_' && !startswith (name, "_parent"))
6347 return 1;
6348 }
6349
6350 /* If this is the dispatch table of a tagged type or an interface tag,
6351 then ignore. */
6352 if (ada_is_tagged_type (type, 1)
6353 && (ada_is_dispatch_table_ptr_type (type->field (field_num).type ())
6354 || ada_is_interface_tag (type->field (field_num).type ())))
6355 return 1;
6356
6357 /* Not a special field, so it should not be ignored. */
6358 return 0;
6359 }
6360
6361 /* True iff TYPE has a tag field. If REFOK, then TYPE may also be a
6362 pointer or reference type whose ultimate target has a tag field. */
6363
6364 int
6365 ada_is_tagged_type (struct type *type, int refok)
6366 {
6367 return (ada_lookup_struct_elt_type (type, "_tag", refok, 1) != NULL);
6368 }
6369
6370 /* True iff TYPE represents the type of X'Tag */
6371
6372 int
6373 ada_is_tag_type (struct type *type)
6374 {
6375 type = ada_check_typedef (type);
6376
6377 if (type == NULL || type->code () != TYPE_CODE_PTR)
6378 return 0;
6379 else
6380 {
6381 const char *name = ada_type_name (TYPE_TARGET_TYPE (type));
6382
6383 return (name != NULL
6384 && strcmp (name, "ada__tags__dispatch_table") == 0);
6385 }
6386 }
6387
6388 /* The type of the tag on VAL. */
6389
6390 static struct type *
6391 ada_tag_type (struct value *val)
6392 {
6393 return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0);
6394 }
6395
6396 /* Return 1 if TAG follows the old scheme for Ada tags (used for Ada 95,
6397 retired at Ada 05). */
6398
6399 static int
6400 is_ada95_tag (struct value *tag)
6401 {
6402 return ada_value_struct_elt (tag, "tsd", 1) != NULL;
6403 }
6404
6405 /* The value of the tag on VAL. */
6406
6407 static struct value *
6408 ada_value_tag (struct value *val)
6409 {
6410 return ada_value_struct_elt (val, "_tag", 0);
6411 }
6412
6413 /* The value of the tag on the object of type TYPE whose contents are
6414 saved at VALADDR, if it is non-null, or is at memory address
6415 ADDRESS. */
6416
6417 static struct value *
6418 value_tag_from_contents_and_address (struct type *type,
6419 const gdb_byte *valaddr,
6420 CORE_ADDR address)
6421 {
6422 int tag_byte_offset;
6423 struct type *tag_type;
6424
6425 if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset,
6426 NULL, NULL, NULL))
6427 {
6428 const gdb_byte *valaddr1 = ((valaddr == NULL)
6429 ? NULL
6430 : valaddr + tag_byte_offset);
6431 CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset;
6432
6433 return value_from_contents_and_address (tag_type, valaddr1, address1);
6434 }
6435 return NULL;
6436 }
6437
6438 static struct type *
6439 type_from_tag (struct value *tag)
6440 {
6441 gdb::unique_xmalloc_ptr<char> type_name = ada_tag_name (tag);
6442
6443 if (type_name != NULL)
6444 return ada_find_any_type (ada_encode (type_name.get ()).c_str ());
6445 return NULL;
6446 }
6447
6448 /* Given a value OBJ of a tagged type, return a value of this
6449 type at the base address of the object. The base address, as
6450 defined in Ada.Tags, it is the address of the primary tag of
6451 the object, and therefore where the field values of its full
6452 view can be fetched. */
6453
6454 struct value *
6455 ada_tag_value_at_base_address (struct value *obj)
6456 {
6457 struct value *val;
6458 LONGEST offset_to_top = 0;
6459 struct type *ptr_type, *obj_type;
6460 struct value *tag;
6461 CORE_ADDR base_address;
6462
6463 obj_type = value_type (obj);
6464
6465 /* It is the responsability of the caller to deref pointers. */
6466
6467 if (obj_type->code () == TYPE_CODE_PTR || obj_type->code () == TYPE_CODE_REF)
6468 return obj;
6469
6470 tag = ada_value_tag (obj);
6471 if (!tag)
6472 return obj;
6473
6474 /* Base addresses only appeared with Ada 05 and multiple inheritance. */
6475
6476 if (is_ada95_tag (tag))
6477 return obj;
6478
6479 ptr_type = language_lookup_primitive_type
6480 (language_def (language_ada), target_gdbarch(), "storage_offset");
6481 ptr_type = lookup_pointer_type (ptr_type);
6482 val = value_cast (ptr_type, tag);
6483 if (!val)
6484 return obj;
6485
6486 /* It is perfectly possible that an exception be raised while
6487 trying to determine the base address, just like for the tag;
6488 see ada_tag_name for more details. We do not print the error
6489 message for the same reason. */
6490
6491 try
6492 {
6493 offset_to_top = value_as_long (value_ind (value_ptradd (val, -2)));
6494 }
6495
6496 catch (const gdb_exception_error &e)
6497 {
6498 return obj;
6499 }
6500
6501 /* If offset is null, nothing to do. */
6502
6503 if (offset_to_top == 0)
6504 return obj;
6505
6506 /* -1 is a special case in Ada.Tags; however, what should be done
6507 is not quite clear from the documentation. So do nothing for
6508 now. */
6509
6510 if (offset_to_top == -1)
6511 return obj;
6512
6513 /* OFFSET_TO_TOP used to be a positive value to be subtracted
6514 from the base address. This was however incompatible with
6515 C++ dispatch table: C++ uses a *negative* value to *add*
6516 to the base address. Ada's convention has therefore been
6517 changed in GNAT 19.0w 20171023: since then, C++ and Ada
6518 use the same convention. Here, we support both cases by
6519 checking the sign of OFFSET_TO_TOP. */
6520
6521 if (offset_to_top > 0)
6522 offset_to_top = -offset_to_top;
6523
6524 base_address = value_address (obj) + offset_to_top;
6525 tag = value_tag_from_contents_and_address (obj_type, NULL, base_address);
6526
6527 /* Make sure that we have a proper tag at the new address.
6528 Otherwise, offset_to_top is bogus (which can happen when
6529 the object is not initialized yet). */
6530
6531 if (!tag)
6532 return obj;
6533
6534 obj_type = type_from_tag (tag);
6535
6536 if (!obj_type)
6537 return obj;
6538
6539 return value_from_contents_and_address (obj_type, NULL, base_address);
6540 }
6541
6542 /* Return the "ada__tags__type_specific_data" type. */
6543
6544 static struct type *
6545 ada_get_tsd_type (struct inferior *inf)
6546 {
6547 struct ada_inferior_data *data = get_ada_inferior_data (inf);
6548
6549 if (data->tsd_type == 0)
6550 data->tsd_type = ada_find_any_type ("ada__tags__type_specific_data");
6551 return data->tsd_type;
6552 }
6553
6554 /* Return the TSD (type-specific data) associated to the given TAG.
6555 TAG is assumed to be the tag of a tagged-type entity.
6556
6557 May return NULL if we are unable to get the TSD. */
6558
6559 static struct value *
6560 ada_get_tsd_from_tag (struct value *tag)
6561 {
6562 struct value *val;
6563 struct type *type;
6564
6565 /* First option: The TSD is simply stored as a field of our TAG.
6566 Only older versions of GNAT would use this format, but we have
6567 to test it first, because there are no visible markers for
6568 the current approach except the absence of that field. */
6569
6570 val = ada_value_struct_elt (tag, "tsd", 1);
6571 if (val)
6572 return val;
6573
6574 /* Try the second representation for the dispatch table (in which
6575 there is no explicit 'tsd' field in the referent of the tag pointer,
6576 and instead the tsd pointer is stored just before the dispatch
6577 table. */
6578
6579 type = ada_get_tsd_type (current_inferior());
6580 if (type == NULL)
6581 return NULL;
6582 type = lookup_pointer_type (lookup_pointer_type (type));
6583 val = value_cast (type, tag);
6584 if (val == NULL)
6585 return NULL;
6586 return value_ind (value_ptradd (val, -1));
6587 }
6588
6589 /* Given the TSD of a tag (type-specific data), return a string
6590 containing the name of the associated type.
6591
6592 May return NULL if we are unable to determine the tag name. */
6593
6594 static gdb::unique_xmalloc_ptr<char>
6595 ada_tag_name_from_tsd (struct value *tsd)
6596 {
6597 char *p;
6598 struct value *val;
6599
6600 val = ada_value_struct_elt (tsd, "expanded_name", 1);
6601 if (val == NULL)
6602 return NULL;
6603 gdb::unique_xmalloc_ptr<char> buffer
6604 = target_read_string (value_as_address (val), INT_MAX);
6605 if (buffer == nullptr)
6606 return nullptr;
6607
6608 for (p = buffer.get (); *p != '\0'; ++p)
6609 {
6610 if (isalpha (*p))
6611 *p = tolower (*p);
6612 }
6613
6614 return buffer;
6615 }
6616
6617 /* The type name of the dynamic type denoted by the 'tag value TAG, as
6618 a C string.
6619
6620 Return NULL if the TAG is not an Ada tag, or if we were unable to
6621 determine the name of that tag. */
6622
6623 gdb::unique_xmalloc_ptr<char>
6624 ada_tag_name (struct value *tag)
6625 {
6626 gdb::unique_xmalloc_ptr<char> name;
6627
6628 if (!ada_is_tag_type (value_type (tag)))
6629 return NULL;
6630
6631 /* It is perfectly possible that an exception be raised while trying
6632 to determine the TAG's name, even under normal circumstances:
6633 The associated variable may be uninitialized or corrupted, for
6634 instance. We do not let any exception propagate past this point.
6635 instead we return NULL.
6636
6637 We also do not print the error message either (which often is very
6638 low-level (Eg: "Cannot read memory at 0x[...]"), but instead let
6639 the caller print a more meaningful message if necessary. */
6640 try
6641 {
6642 struct value *tsd = ada_get_tsd_from_tag (tag);
6643
6644 if (tsd != NULL)
6645 name = ada_tag_name_from_tsd (tsd);
6646 }
6647 catch (const gdb_exception_error &e)
6648 {
6649 }
6650
6651 return name;
6652 }
6653
6654 /* The parent type of TYPE, or NULL if none. */
6655
6656 struct type *
6657 ada_parent_type (struct type *type)
6658 {
6659 int i;
6660
6661 type = ada_check_typedef (type);
6662
6663 if (type == NULL || type->code () != TYPE_CODE_STRUCT)
6664 return NULL;
6665
6666 for (i = 0; i < type->num_fields (); i += 1)
6667 if (ada_is_parent_field (type, i))
6668 {
6669 struct type *parent_type = type->field (i).type ();
6670
6671 /* If the _parent field is a pointer, then dereference it. */
6672 if (parent_type->code () == TYPE_CODE_PTR)
6673 parent_type = TYPE_TARGET_TYPE (parent_type);
6674 /* If there is a parallel XVS type, get the actual base type. */
6675 parent_type = ada_get_base_type (parent_type);
6676
6677 return ada_check_typedef (parent_type);
6678 }
6679
6680 return NULL;
6681 }
6682
6683 /* True iff field number FIELD_NUM of structure type TYPE contains the
6684 parent-type (inherited) fields of a derived type. Assumes TYPE is
6685 a structure type with at least FIELD_NUM+1 fields. */
6686
6687 int
6688 ada_is_parent_field (struct type *type, int field_num)
6689 {
6690 const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num);
6691
6692 return (name != NULL
6693 && (startswith (name, "PARENT")
6694 || startswith (name, "_parent")));
6695 }
6696
6697 /* True iff field number FIELD_NUM of structure type TYPE is a
6698 transparent wrapper field (which should be silently traversed when doing
6699 field selection and flattened when printing). Assumes TYPE is a
6700 structure type with at least FIELD_NUM+1 fields. Such fields are always
6701 structures. */
6702
6703 int
6704 ada_is_wrapper_field (struct type *type, int field_num)
6705 {
6706 const char *name = TYPE_FIELD_NAME (type, field_num);
6707
6708 if (name != NULL && strcmp (name, "RETVAL") == 0)
6709 {
6710 /* This happens in functions with "out" or "in out" parameters
6711 which are passed by copy. For such functions, GNAT describes
6712 the function's return type as being a struct where the return
6713 value is in a field called RETVAL, and where the other "out"
6714 or "in out" parameters are fields of that struct. This is not
6715 a wrapper. */
6716 return 0;
6717 }
6718
6719 return (name != NULL
6720 && (startswith (name, "PARENT")
6721 || strcmp (name, "REP") == 0
6722 || startswith (name, "_parent")
6723 || name[0] == 'S' || name[0] == 'R' || name[0] == 'O'));
6724 }
6725
6726 /* True iff field number FIELD_NUM of structure or union type TYPE
6727 is a variant wrapper. Assumes TYPE is a structure type with at least
6728 FIELD_NUM+1 fields. */
6729
6730 int
6731 ada_is_variant_part (struct type *type, int field_num)
6732 {
6733 /* Only Ada types are eligible. */
6734 if (!ADA_TYPE_P (type))
6735 return 0;
6736
6737 struct type *field_type = type->field (field_num).type ();
6738
6739 return (field_type->code () == TYPE_CODE_UNION
6740 || (is_dynamic_field (type, field_num)
6741 && (TYPE_TARGET_TYPE (field_type)->code ()
6742 == TYPE_CODE_UNION)));
6743 }
6744
6745 /* Assuming that VAR_TYPE is a variant wrapper (type of the variant part)
6746 whose discriminants are contained in the record type OUTER_TYPE,
6747 returns the type of the controlling discriminant for the variant.
6748 May return NULL if the type could not be found. */
6749
6750 struct type *
6751 ada_variant_discrim_type (struct type *var_type, struct type *outer_type)
6752 {
6753 const char *name = ada_variant_discrim_name (var_type);
6754
6755 return ada_lookup_struct_elt_type (outer_type, name, 1, 1);
6756 }
6757
6758 /* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a
6759 valid field number within it, returns 1 iff field FIELD_NUM of TYPE
6760 represents a 'when others' clause; otherwise 0. */
6761
6762 static int
6763 ada_is_others_clause (struct type *type, int field_num)
6764 {
6765 const char *name = TYPE_FIELD_NAME (type, field_num);
6766
6767 return (name != NULL && name[0] == 'O');
6768 }
6769
6770 /* Assuming that TYPE0 is the type of the variant part of a record,
6771 returns the name of the discriminant controlling the variant.
6772 The value is valid until the next call to ada_variant_discrim_name. */
6773
6774 const char *
6775 ada_variant_discrim_name (struct type *type0)
6776 {
6777 static char *result = NULL;
6778 static size_t result_len = 0;
6779 struct type *type;
6780 const char *name;
6781 const char *discrim_end;
6782 const char *discrim_start;
6783
6784 if (type0->code () == TYPE_CODE_PTR)
6785 type = TYPE_TARGET_TYPE (type0);
6786 else
6787 type = type0;
6788
6789 name = ada_type_name (type);
6790
6791 if (name == NULL || name[0] == '\000')
6792 return "";
6793
6794 for (discrim_end = name + strlen (name) - 6; discrim_end != name;
6795 discrim_end -= 1)
6796 {
6797 if (startswith (discrim_end, "___XVN"))
6798 break;
6799 }
6800 if (discrim_end == name)
6801 return "";
6802
6803 for (discrim_start = discrim_end; discrim_start != name + 3;
6804 discrim_start -= 1)
6805 {
6806 if (discrim_start == name + 1)
6807 return "";
6808 if ((discrim_start > name + 3
6809 && startswith (discrim_start - 3, "___"))
6810 || discrim_start[-1] == '.')
6811 break;
6812 }
6813
6814 GROW_VECT (result, result_len, discrim_end - discrim_start + 1);
6815 strncpy (result, discrim_start, discrim_end - discrim_start);
6816 result[discrim_end - discrim_start] = '\0';
6817 return result;
6818 }
6819
6820 /* Scan STR for a subtype-encoded number, beginning at position K.
6821 Put the position of the character just past the number scanned in
6822 *NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL.
6823 Return 1 if there was a valid number at the given position, and 0
6824 otherwise. A "subtype-encoded" number consists of the absolute value
6825 in decimal, followed by the letter 'm' to indicate a negative number.
6826 Assumes 0m does not occur. */
6827
6828 int
6829 ada_scan_number (const char str[], int k, LONGEST * R, int *new_k)
6830 {
6831 ULONGEST RU;
6832
6833 if (!isdigit (str[k]))
6834 return 0;
6835
6836 /* Do it the hard way so as not to make any assumption about
6837 the relationship of unsigned long (%lu scan format code) and
6838 LONGEST. */
6839 RU = 0;
6840 while (isdigit (str[k]))
6841 {
6842 RU = RU * 10 + (str[k] - '0');
6843 k += 1;
6844 }
6845
6846 if (str[k] == 'm')
6847 {
6848 if (R != NULL)
6849 *R = (-(LONGEST) (RU - 1)) - 1;
6850 k += 1;
6851 }
6852 else if (R != NULL)
6853 *R = (LONGEST) RU;
6854
6855 /* NOTE on the above: Technically, C does not say what the results of
6856 - (LONGEST) RU or (LONGEST) -RU are for RU == largest positive
6857 number representable as a LONGEST (although either would probably work
6858 in most implementations). When RU>0, the locution in the then branch
6859 above is always equivalent to the negative of RU. */
6860
6861 if (new_k != NULL)
6862 *new_k = k;
6863 return 1;
6864 }
6865
6866 /* Assuming that TYPE is a variant part wrapper type (a VARIANTS field),
6867 and FIELD_NUM is a valid field number within it, returns 1 iff VAL is
6868 in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */
6869
6870 static int
6871 ada_in_variant (LONGEST val, struct type *type, int field_num)
6872 {
6873 const char *name = TYPE_FIELD_NAME (type, field_num);
6874 int p;
6875
6876 p = 0;
6877 while (1)
6878 {
6879 switch (name[p])
6880 {
6881 case '\0':
6882 return 0;
6883 case 'S':
6884 {
6885 LONGEST W;
6886
6887 if (!ada_scan_number (name, p + 1, &W, &p))
6888 return 0;
6889 if (val == W)
6890 return 1;
6891 break;
6892 }
6893 case 'R':
6894 {
6895 LONGEST L, U;
6896
6897 if (!ada_scan_number (name, p + 1, &L, &p)
6898 || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p))
6899 return 0;
6900 if (val >= L && val <= U)
6901 return 1;
6902 break;
6903 }
6904 case 'O':
6905 return 1;
6906 default:
6907 return 0;
6908 }
6909 }
6910 }
6911
6912 /* FIXME: Lots of redundancy below. Try to consolidate. */
6913
6914 /* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type
6915 ARG_TYPE, extract and return the value of one of its (non-static)
6916 fields. FIELDNO says which field. Differs from value_primitive_field
6917 only in that it can handle packed values of arbitrary type. */
6918
6919 struct value *
6920 ada_value_primitive_field (struct value *arg1, int offset, int fieldno,
6921 struct type *arg_type)
6922 {
6923 struct type *type;
6924
6925 arg_type = ada_check_typedef (arg_type);
6926 type = arg_type->field (fieldno).type ();
6927
6928 /* Handle packed fields. It might be that the field is not packed
6929 relative to its containing structure, but the structure itself is
6930 packed; in this case we must take the bit-field path. */
6931 if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0 || value_bitpos (arg1) != 0)
6932 {
6933 int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno);
6934 int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno);
6935
6936 return ada_value_primitive_packed_val (arg1, value_contents (arg1),
6937 offset + bit_pos / 8,
6938 bit_pos % 8, bit_size, type);
6939 }
6940 else
6941 return value_primitive_field (arg1, offset, fieldno, arg_type);
6942 }
6943
6944 /* Find field with name NAME in object of type TYPE. If found,
6945 set the following for each argument that is non-null:
6946 - *FIELD_TYPE_P to the field's type;
6947 - *BYTE_OFFSET_P to OFFSET + the byte offset of the field within
6948 an object of that type;
6949 - *BIT_OFFSET_P to the bit offset modulo byte size of the field;
6950 - *BIT_SIZE_P to its size in bits if the field is packed, and
6951 0 otherwise;
6952 If INDEX_P is non-null, increment *INDEX_P by the number of source-visible
6953 fields up to but not including the desired field, or by the total
6954 number of fields if not found. A NULL value of NAME never
6955 matches; the function just counts visible fields in this case.
6956
6957 Notice that we need to handle when a tagged record hierarchy
6958 has some components with the same name, like in this scenario:
6959
6960 type Top_T is tagged record
6961 N : Integer := 1;
6962 U : Integer := 974;
6963 A : Integer := 48;
6964 end record;
6965
6966 type Middle_T is new Top.Top_T with record
6967 N : Character := 'a';
6968 C : Integer := 3;
6969 end record;
6970
6971 type Bottom_T is new Middle.Middle_T with record
6972 N : Float := 4.0;
6973 C : Character := '5';
6974 X : Integer := 6;
6975 A : Character := 'J';
6976 end record;
6977
6978 Let's say we now have a variable declared and initialized as follow:
6979
6980 TC : Top_A := new Bottom_T;
6981
6982 And then we use this variable to call this function
6983
6984 procedure Assign (Obj: in out Top_T; TV : Integer);
6985
6986 as follow:
6987
6988 Assign (Top_T (B), 12);
6989
6990 Now, we're in the debugger, and we're inside that procedure
6991 then and we want to print the value of obj.c:
6992
6993 Usually, the tagged record or one of the parent type owns the
6994 component to print and there's no issue but in this particular
6995 case, what does it mean to ask for Obj.C? Since the actual
6996 type for object is type Bottom_T, it could mean two things: type
6997 component C from the Middle_T view, but also component C from
6998 Bottom_T. So in that "undefined" case, when the component is
6999 not found in the non-resolved type (which includes all the
7000 components of the parent type), then resolve it and see if we
7001 get better luck once expanded.
7002
7003 In the case of homonyms in the derived tagged type, we don't
7004 guaranty anything, and pick the one that's easiest for us
7005 to program.
7006
7007 Returns 1 if found, 0 otherwise. */
7008
7009 static int
7010 find_struct_field (const char *name, struct type *type, int offset,
7011 struct type **field_type_p,
7012 int *byte_offset_p, int *bit_offset_p, int *bit_size_p,
7013 int *index_p)
7014 {
7015 int i;
7016 int parent_offset = -1;
7017
7018 type = ada_check_typedef (type);
7019
7020 if (field_type_p != NULL)
7021 *field_type_p = NULL;
7022 if (byte_offset_p != NULL)
7023 *byte_offset_p = 0;
7024 if (bit_offset_p != NULL)
7025 *bit_offset_p = 0;
7026 if (bit_size_p != NULL)
7027 *bit_size_p = 0;
7028
7029 for (i = 0; i < type->num_fields (); i += 1)
7030 {
7031 int bit_pos = TYPE_FIELD_BITPOS (type, i);
7032 int fld_offset = offset + bit_pos / 8;
7033 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7034
7035 if (t_field_name == NULL)
7036 continue;
7037
7038 else if (ada_is_parent_field (type, i))
7039 {
7040 /* This is a field pointing us to the parent type of a tagged
7041 type. As hinted in this function's documentation, we give
7042 preference to fields in the current record first, so what
7043 we do here is just record the index of this field before
7044 we skip it. If it turns out we couldn't find our field
7045 in the current record, then we'll get back to it and search
7046 inside it whether the field might exist in the parent. */
7047
7048 parent_offset = i;
7049 continue;
7050 }
7051
7052 else if (name != NULL && field_name_match (t_field_name, name))
7053 {
7054 int bit_size = TYPE_FIELD_BITSIZE (type, i);
7055
7056 if (field_type_p != NULL)
7057 *field_type_p = type->field (i).type ();
7058 if (byte_offset_p != NULL)
7059 *byte_offset_p = fld_offset;
7060 if (bit_offset_p != NULL)
7061 *bit_offset_p = bit_pos % 8;
7062 if (bit_size_p != NULL)
7063 *bit_size_p = bit_size;
7064 return 1;
7065 }
7066 else if (ada_is_wrapper_field (type, i))
7067 {
7068 if (find_struct_field (name, type->field (i).type (), fld_offset,
7069 field_type_p, byte_offset_p, bit_offset_p,
7070 bit_size_p, index_p))
7071 return 1;
7072 }
7073 else if (ada_is_variant_part (type, i))
7074 {
7075 /* PNH: Wait. Do we ever execute this section, or is ARG always of
7076 fixed type?? */
7077 int j;
7078 struct type *field_type
7079 = ada_check_typedef (type->field (i).type ());
7080
7081 for (j = 0; j < field_type->num_fields (); j += 1)
7082 {
7083 if (find_struct_field (name, field_type->field (j).type (),
7084 fld_offset
7085 + TYPE_FIELD_BITPOS (field_type, j) / 8,
7086 field_type_p, byte_offset_p,
7087 bit_offset_p, bit_size_p, index_p))
7088 return 1;
7089 }
7090 }
7091 else if (index_p != NULL)
7092 *index_p += 1;
7093 }
7094
7095 /* Field not found so far. If this is a tagged type which
7096 has a parent, try finding that field in the parent now. */
7097
7098 if (parent_offset != -1)
7099 {
7100 int bit_pos = TYPE_FIELD_BITPOS (type, parent_offset);
7101 int fld_offset = offset + bit_pos / 8;
7102
7103 if (find_struct_field (name, type->field (parent_offset).type (),
7104 fld_offset, field_type_p, byte_offset_p,
7105 bit_offset_p, bit_size_p, index_p))
7106 return 1;
7107 }
7108
7109 return 0;
7110 }
7111
7112 /* Number of user-visible fields in record type TYPE. */
7113
7114 static int
7115 num_visible_fields (struct type *type)
7116 {
7117 int n;
7118
7119 n = 0;
7120 find_struct_field (NULL, type, 0, NULL, NULL, NULL, NULL, &n);
7121 return n;
7122 }
7123
7124 /* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes,
7125 and search in it assuming it has (class) type TYPE.
7126 If found, return value, else return NULL.
7127
7128 Searches recursively through wrapper fields (e.g., '_parent').
7129
7130 In the case of homonyms in the tagged types, please refer to the
7131 long explanation in find_struct_field's function documentation. */
7132
7133 static struct value *
7134 ada_search_struct_field (const char *name, struct value *arg, int offset,
7135 struct type *type)
7136 {
7137 int i;
7138 int parent_offset = -1;
7139
7140 type = ada_check_typedef (type);
7141 for (i = 0; i < type->num_fields (); i += 1)
7142 {
7143 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7144
7145 if (t_field_name == NULL)
7146 continue;
7147
7148 else if (ada_is_parent_field (type, i))
7149 {
7150 /* This is a field pointing us to the parent type of a tagged
7151 type. As hinted in this function's documentation, we give
7152 preference to fields in the current record first, so what
7153 we do here is just record the index of this field before
7154 we skip it. If it turns out we couldn't find our field
7155 in the current record, then we'll get back to it and search
7156 inside it whether the field might exist in the parent. */
7157
7158 parent_offset = i;
7159 continue;
7160 }
7161
7162 else if (field_name_match (t_field_name, name))
7163 return ada_value_primitive_field (arg, offset, i, type);
7164
7165 else if (ada_is_wrapper_field (type, i))
7166 {
7167 struct value *v = /* Do not let indent join lines here. */
7168 ada_search_struct_field (name, arg,
7169 offset + TYPE_FIELD_BITPOS (type, i) / 8,
7170 type->field (i).type ());
7171
7172 if (v != NULL)
7173 return v;
7174 }
7175
7176 else if (ada_is_variant_part (type, i))
7177 {
7178 /* PNH: Do we ever get here? See find_struct_field. */
7179 int j;
7180 struct type *field_type = ada_check_typedef (type->field (i).type ());
7181 int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8;
7182
7183 for (j = 0; j < field_type->num_fields (); j += 1)
7184 {
7185 struct value *v = ada_search_struct_field /* Force line
7186 break. */
7187 (name, arg,
7188 var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8,
7189 field_type->field (j).type ());
7190
7191 if (v != NULL)
7192 return v;
7193 }
7194 }
7195 }
7196
7197 /* Field not found so far. If this is a tagged type which
7198 has a parent, try finding that field in the parent now. */
7199
7200 if (parent_offset != -1)
7201 {
7202 struct value *v = ada_search_struct_field (
7203 name, arg, offset + TYPE_FIELD_BITPOS (type, parent_offset) / 8,
7204 type->field (parent_offset).type ());
7205
7206 if (v != NULL)
7207 return v;
7208 }
7209
7210 return NULL;
7211 }
7212
7213 static struct value *ada_index_struct_field_1 (int *, struct value *,
7214 int, struct type *);
7215
7216
7217 /* Return field #INDEX in ARG, where the index is that returned by
7218 * find_struct_field through its INDEX_P argument. Adjust the address
7219 * of ARG by OFFSET bytes, and search in it assuming it has (class) type TYPE.
7220 * If found, return value, else return NULL. */
7221
7222 static struct value *
7223 ada_index_struct_field (int index, struct value *arg, int offset,
7224 struct type *type)
7225 {
7226 return ada_index_struct_field_1 (&index, arg, offset, type);
7227 }
7228
7229
7230 /* Auxiliary function for ada_index_struct_field. Like
7231 * ada_index_struct_field, but takes index from *INDEX_P and modifies
7232 * *INDEX_P. */
7233
7234 static struct value *
7235 ada_index_struct_field_1 (int *index_p, struct value *arg, int offset,
7236 struct type *type)
7237 {
7238 int i;
7239 type = ada_check_typedef (type);
7240
7241 for (i = 0; i < type->num_fields (); i += 1)
7242 {
7243 if (TYPE_FIELD_NAME (type, i) == NULL)
7244 continue;
7245 else if (ada_is_wrapper_field (type, i))
7246 {
7247 struct value *v = /* Do not let indent join lines here. */
7248 ada_index_struct_field_1 (index_p, arg,
7249 offset + TYPE_FIELD_BITPOS (type, i) / 8,
7250 type->field (i).type ());
7251
7252 if (v != NULL)
7253 return v;
7254 }
7255
7256 else if (ada_is_variant_part (type, i))
7257 {
7258 /* PNH: Do we ever get here? See ada_search_struct_field,
7259 find_struct_field. */
7260 error (_("Cannot assign this kind of variant record"));
7261 }
7262 else if (*index_p == 0)
7263 return ada_value_primitive_field (arg, offset, i, type);
7264 else
7265 *index_p -= 1;
7266 }
7267 return NULL;
7268 }
7269
7270 /* Return a string representation of type TYPE. */
7271
7272 static std::string
7273 type_as_string (struct type *type)
7274 {
7275 string_file tmp_stream;
7276
7277 type_print (type, "", &tmp_stream, -1);
7278
7279 return std::move (tmp_stream.string ());
7280 }
7281
7282 /* Given a type TYPE, look up the type of the component of type named NAME.
7283 If DISPP is non-null, add its byte displacement from the beginning of a
7284 structure (pointed to by a value) of type TYPE to *DISPP (does not
7285 work for packed fields).
7286
7287 Matches any field whose name has NAME as a prefix, possibly
7288 followed by "___".
7289
7290 TYPE can be either a struct or union. If REFOK, TYPE may also
7291 be a (pointer or reference)+ to a struct or union, and the
7292 ultimate target type will be searched.
7293
7294 Looks recursively into variant clauses and parent types.
7295
7296 In the case of homonyms in the tagged types, please refer to the
7297 long explanation in find_struct_field's function documentation.
7298
7299 If NOERR is nonzero, return NULL if NAME is not suitably defined or
7300 TYPE is not a type of the right kind. */
7301
7302 static struct type *
7303 ada_lookup_struct_elt_type (struct type *type, const char *name, int refok,
7304 int noerr)
7305 {
7306 int i;
7307 int parent_offset = -1;
7308
7309 if (name == NULL)
7310 goto BadName;
7311
7312 if (refok && type != NULL)
7313 while (1)
7314 {
7315 type = ada_check_typedef (type);
7316 if (type->code () != TYPE_CODE_PTR && type->code () != TYPE_CODE_REF)
7317 break;
7318 type = TYPE_TARGET_TYPE (type);
7319 }
7320
7321 if (type == NULL
7322 || (type->code () != TYPE_CODE_STRUCT
7323 && type->code () != TYPE_CODE_UNION))
7324 {
7325 if (noerr)
7326 return NULL;
7327
7328 error (_("Type %s is not a structure or union type"),
7329 type != NULL ? type_as_string (type).c_str () : _("(null)"));
7330 }
7331
7332 type = to_static_fixed_type (type);
7333
7334 for (i = 0; i < type->num_fields (); i += 1)
7335 {
7336 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7337 struct type *t;
7338
7339 if (t_field_name == NULL)
7340 continue;
7341
7342 else if (ada_is_parent_field (type, i))
7343 {
7344 /* This is a field pointing us to the parent type of a tagged
7345 type. As hinted in this function's documentation, we give
7346 preference to fields in the current record first, so what
7347 we do here is just record the index of this field before
7348 we skip it. If it turns out we couldn't find our field
7349 in the current record, then we'll get back to it and search
7350 inside it whether the field might exist in the parent. */
7351
7352 parent_offset = i;
7353 continue;
7354 }
7355
7356 else if (field_name_match (t_field_name, name))
7357 return type->field (i).type ();
7358
7359 else if (ada_is_wrapper_field (type, i))
7360 {
7361 t = ada_lookup_struct_elt_type (type->field (i).type (), name,
7362 0, 1);
7363 if (t != NULL)
7364 return t;
7365 }
7366
7367 else if (ada_is_variant_part (type, i))
7368 {
7369 int j;
7370 struct type *field_type = ada_check_typedef (type->field (i).type ());
7371
7372 for (j = field_type->num_fields () - 1; j >= 0; j -= 1)
7373 {
7374 /* FIXME pnh 2008/01/26: We check for a field that is
7375 NOT wrapped in a struct, since the compiler sometimes
7376 generates these for unchecked variant types. Revisit
7377 if the compiler changes this practice. */
7378 const char *v_field_name = TYPE_FIELD_NAME (field_type, j);
7379
7380 if (v_field_name != NULL
7381 && field_name_match (v_field_name, name))
7382 t = field_type->field (j).type ();
7383 else
7384 t = ada_lookup_struct_elt_type (field_type->field (j).type (),
7385 name, 0, 1);
7386
7387 if (t != NULL)
7388 return t;
7389 }
7390 }
7391
7392 }
7393
7394 /* Field not found so far. If this is a tagged type which
7395 has a parent, try finding that field in the parent now. */
7396
7397 if (parent_offset != -1)
7398 {
7399 struct type *t;
7400
7401 t = ada_lookup_struct_elt_type (type->field (parent_offset).type (),
7402 name, 0, 1);
7403 if (t != NULL)
7404 return t;
7405 }
7406
7407 BadName:
7408 if (!noerr)
7409 {
7410 const char *name_str = name != NULL ? name : _("<null>");
7411
7412 error (_("Type %s has no component named %s"),
7413 type_as_string (type).c_str (), name_str);
7414 }
7415
7416 return NULL;
7417 }
7418
7419 /* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7420 within a value of type OUTER_TYPE, return true iff VAR_TYPE
7421 represents an unchecked union (that is, the variant part of a
7422 record that is named in an Unchecked_Union pragma). */
7423
7424 static int
7425 is_unchecked_variant (struct type *var_type, struct type *outer_type)
7426 {
7427 const char *discrim_name = ada_variant_discrim_name (var_type);
7428
7429 return (ada_lookup_struct_elt_type (outer_type, discrim_name, 0, 1) == NULL);
7430 }
7431
7432
7433 /* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7434 within OUTER, determine which variant clause (field number in VAR_TYPE,
7435 numbering from 0) is applicable. Returns -1 if none are. */
7436
7437 int
7438 ada_which_variant_applies (struct type *var_type, struct value *outer)
7439 {
7440 int others_clause;
7441 int i;
7442 const char *discrim_name = ada_variant_discrim_name (var_type);
7443 struct value *discrim;
7444 LONGEST discrim_val;
7445
7446 /* Using plain value_from_contents_and_address here causes problems
7447 because we will end up trying to resolve a type that is currently
7448 being constructed. */
7449 discrim = ada_value_struct_elt (outer, discrim_name, 1);
7450 if (discrim == NULL)
7451 return -1;
7452 discrim_val = value_as_long (discrim);
7453
7454 others_clause = -1;
7455 for (i = 0; i < var_type->num_fields (); i += 1)
7456 {
7457 if (ada_is_others_clause (var_type, i))
7458 others_clause = i;
7459 else if (ada_in_variant (discrim_val, var_type, i))
7460 return i;
7461 }
7462
7463 return others_clause;
7464 }
7465 \f
7466
7467
7468 /* Dynamic-Sized Records */
7469
7470 /* Strategy: The type ostensibly attached to a value with dynamic size
7471 (i.e., a size that is not statically recorded in the debugging
7472 data) does not accurately reflect the size or layout of the value.
7473 Our strategy is to convert these values to values with accurate,
7474 conventional types that are constructed on the fly. */
7475
7476 /* There is a subtle and tricky problem here. In general, we cannot
7477 determine the size of dynamic records without its data. However,
7478 the 'struct value' data structure, which GDB uses to represent
7479 quantities in the inferior process (the target), requires the size
7480 of the type at the time of its allocation in order to reserve space
7481 for GDB's internal copy of the data. That's why the
7482 'to_fixed_xxx_type' routines take (target) addresses as parameters,
7483 rather than struct value*s.
7484
7485 However, GDB's internal history variables ($1, $2, etc.) are
7486 struct value*s containing internal copies of the data that are not, in
7487 general, the same as the data at their corresponding addresses in
7488 the target. Fortunately, the types we give to these values are all
7489 conventional, fixed-size types (as per the strategy described
7490 above), so that we don't usually have to perform the
7491 'to_fixed_xxx_type' conversions to look at their values.
7492 Unfortunately, there is one exception: if one of the internal
7493 history variables is an array whose elements are unconstrained
7494 records, then we will need to create distinct fixed types for each
7495 element selected. */
7496
7497 /* The upshot of all of this is that many routines take a (type, host
7498 address, target address) triple as arguments to represent a value.
7499 The host address, if non-null, is supposed to contain an internal
7500 copy of the relevant data; otherwise, the program is to consult the
7501 target at the target address. */
7502
7503 /* Assuming that VAL0 represents a pointer value, the result of
7504 dereferencing it. Differs from value_ind in its treatment of
7505 dynamic-sized types. */
7506
7507 struct value *
7508 ada_value_ind (struct value *val0)
7509 {
7510 struct value *val = value_ind (val0);
7511
7512 if (ada_is_tagged_type (value_type (val), 0))
7513 val = ada_tag_value_at_base_address (val);
7514
7515 return ada_to_fixed_value (val);
7516 }
7517
7518 /* The value resulting from dereferencing any "reference to"
7519 qualifiers on VAL0. */
7520
7521 static struct value *
7522 ada_coerce_ref (struct value *val0)
7523 {
7524 if (value_type (val0)->code () == TYPE_CODE_REF)
7525 {
7526 struct value *val = val0;
7527
7528 val = coerce_ref (val);
7529
7530 if (ada_is_tagged_type (value_type (val), 0))
7531 val = ada_tag_value_at_base_address (val);
7532
7533 return ada_to_fixed_value (val);
7534 }
7535 else
7536 return val0;
7537 }
7538
7539 /* Return the bit alignment required for field #F of template type TYPE. */
7540
7541 static unsigned int
7542 field_alignment (struct type *type, int f)
7543 {
7544 const char *name = TYPE_FIELD_NAME (type, f);
7545 int len;
7546 int align_offset;
7547
7548 /* The field name should never be null, unless the debugging information
7549 is somehow malformed. In this case, we assume the field does not
7550 require any alignment. */
7551 if (name == NULL)
7552 return 1;
7553
7554 len = strlen (name);
7555
7556 if (!isdigit (name[len - 1]))
7557 return 1;
7558
7559 if (isdigit (name[len - 2]))
7560 align_offset = len - 2;
7561 else
7562 align_offset = len - 1;
7563
7564 if (align_offset < 7 || !startswith (name + align_offset - 6, "___XV"))
7565 return TARGET_CHAR_BIT;
7566
7567 return atoi (name + align_offset) * TARGET_CHAR_BIT;
7568 }
7569
7570 /* Find a typedef or tag symbol named NAME. Ignores ambiguity. */
7571
7572 static struct symbol *
7573 ada_find_any_type_symbol (const char *name)
7574 {
7575 struct symbol *sym;
7576
7577 sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN);
7578 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
7579 return sym;
7580
7581 sym = standard_lookup (name, NULL, STRUCT_DOMAIN);
7582 return sym;
7583 }
7584
7585 /* Find a type named NAME. Ignores ambiguity. This routine will look
7586 solely for types defined by debug info, it will not search the GDB
7587 primitive types. */
7588
7589 static struct type *
7590 ada_find_any_type (const char *name)
7591 {
7592 struct symbol *sym = ada_find_any_type_symbol (name);
7593
7594 if (sym != NULL)
7595 return SYMBOL_TYPE (sym);
7596
7597 return NULL;
7598 }
7599
7600 /* Given NAME_SYM and an associated BLOCK, find a "renaming" symbol
7601 associated with NAME_SYM's name. NAME_SYM may itself be a renaming
7602 symbol, in which case it is returned. Otherwise, this looks for
7603 symbols whose name is that of NAME_SYM suffixed with "___XR".
7604 Return symbol if found, and NULL otherwise. */
7605
7606 static bool
7607 ada_is_renaming_symbol (struct symbol *name_sym)
7608 {
7609 const char *name = name_sym->linkage_name ();
7610 return strstr (name, "___XR") != NULL;
7611 }
7612
7613 /* Because of GNAT encoding conventions, several GDB symbols may match a
7614 given type name. If the type denoted by TYPE0 is to be preferred to
7615 that of TYPE1 for purposes of type printing, return non-zero;
7616 otherwise return 0. */
7617
7618 int
7619 ada_prefer_type (struct type *type0, struct type *type1)
7620 {
7621 if (type1 == NULL)
7622 return 1;
7623 else if (type0 == NULL)
7624 return 0;
7625 else if (type1->code () == TYPE_CODE_VOID)
7626 return 1;
7627 else if (type0->code () == TYPE_CODE_VOID)
7628 return 0;
7629 else if (type1->name () == NULL && type0->name () != NULL)
7630 return 1;
7631 else if (ada_is_constrained_packed_array_type (type0))
7632 return 1;
7633 else if (ada_is_array_descriptor_type (type0)
7634 && !ada_is_array_descriptor_type (type1))
7635 return 1;
7636 else
7637 {
7638 const char *type0_name = type0->name ();
7639 const char *type1_name = type1->name ();
7640
7641 if (type0_name != NULL && strstr (type0_name, "___XR") != NULL
7642 && (type1_name == NULL || strstr (type1_name, "___XR") == NULL))
7643 return 1;
7644 }
7645 return 0;
7646 }
7647
7648 /* The name of TYPE, which is its TYPE_NAME. Null if TYPE is
7649 null. */
7650
7651 const char *
7652 ada_type_name (struct type *type)
7653 {
7654 if (type == NULL)
7655 return NULL;
7656 return type->name ();
7657 }
7658
7659 /* Search the list of "descriptive" types associated to TYPE for a type
7660 whose name is NAME. */
7661
7662 static struct type *
7663 find_parallel_type_by_descriptive_type (struct type *type, const char *name)
7664 {
7665 struct type *result, *tmp;
7666
7667 if (ada_ignore_descriptive_types_p)
7668 return NULL;
7669
7670 /* If there no descriptive-type info, then there is no parallel type
7671 to be found. */
7672 if (!HAVE_GNAT_AUX_INFO (type))
7673 return NULL;
7674
7675 result = TYPE_DESCRIPTIVE_TYPE (type);
7676 while (result != NULL)
7677 {
7678 const char *result_name = ada_type_name (result);
7679
7680 if (result_name == NULL)
7681 {
7682 warning (_("unexpected null name on descriptive type"));
7683 return NULL;
7684 }
7685
7686 /* If the names match, stop. */
7687 if (strcmp (result_name, name) == 0)
7688 break;
7689
7690 /* Otherwise, look at the next item on the list, if any. */
7691 if (HAVE_GNAT_AUX_INFO (result))
7692 tmp = TYPE_DESCRIPTIVE_TYPE (result);
7693 else
7694 tmp = NULL;
7695
7696 /* If not found either, try after having resolved the typedef. */
7697 if (tmp != NULL)
7698 result = tmp;
7699 else
7700 {
7701 result = check_typedef (result);
7702 if (HAVE_GNAT_AUX_INFO (result))
7703 result = TYPE_DESCRIPTIVE_TYPE (result);
7704 else
7705 result = NULL;
7706 }
7707 }
7708
7709 /* If we didn't find a match, see whether this is a packed array. With
7710 older compilers, the descriptive type information is either absent or
7711 irrelevant when it comes to packed arrays so the above lookup fails.
7712 Fall back to using a parallel lookup by name in this case. */
7713 if (result == NULL && ada_is_constrained_packed_array_type (type))
7714 return ada_find_any_type (name);
7715
7716 return result;
7717 }
7718
7719 /* Find a parallel type to TYPE with the specified NAME, using the
7720 descriptive type taken from the debugging information, if available,
7721 and otherwise using the (slower) name-based method. */
7722
7723 static struct type *
7724 ada_find_parallel_type_with_name (struct type *type, const char *name)
7725 {
7726 struct type *result = NULL;
7727
7728 if (HAVE_GNAT_AUX_INFO (type))
7729 result = find_parallel_type_by_descriptive_type (type, name);
7730 else
7731 result = ada_find_any_type (name);
7732
7733 return result;
7734 }
7735
7736 /* Same as above, but specify the name of the parallel type by appending
7737 SUFFIX to the name of TYPE. */
7738
7739 struct type *
7740 ada_find_parallel_type (struct type *type, const char *suffix)
7741 {
7742 char *name;
7743 const char *type_name = ada_type_name (type);
7744 int len;
7745
7746 if (type_name == NULL)
7747 return NULL;
7748
7749 len = strlen (type_name);
7750
7751 name = (char *) alloca (len + strlen (suffix) + 1);
7752
7753 strcpy (name, type_name);
7754 strcpy (name + len, suffix);
7755
7756 return ada_find_parallel_type_with_name (type, name);
7757 }
7758
7759 /* If TYPE is a variable-size record type, return the corresponding template
7760 type describing its fields. Otherwise, return NULL. */
7761
7762 static struct type *
7763 dynamic_template_type (struct type *type)
7764 {
7765 type = ada_check_typedef (type);
7766
7767 if (type == NULL || type->code () != TYPE_CODE_STRUCT
7768 || ada_type_name (type) == NULL)
7769 return NULL;
7770 else
7771 {
7772 int len = strlen (ada_type_name (type));
7773
7774 if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0)
7775 return type;
7776 else
7777 return ada_find_parallel_type (type, "___XVE");
7778 }
7779 }
7780
7781 /* Assuming that TEMPL_TYPE is a union or struct type, returns
7782 non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */
7783
7784 static int
7785 is_dynamic_field (struct type *templ_type, int field_num)
7786 {
7787 const char *name = TYPE_FIELD_NAME (templ_type, field_num);
7788
7789 return name != NULL
7790 && templ_type->field (field_num).type ()->code () == TYPE_CODE_PTR
7791 && strstr (name, "___XVL") != NULL;
7792 }
7793
7794 /* The index of the variant field of TYPE, or -1 if TYPE does not
7795 represent a variant record type. */
7796
7797 static int
7798 variant_field_index (struct type *type)
7799 {
7800 int f;
7801
7802 if (type == NULL || type->code () != TYPE_CODE_STRUCT)
7803 return -1;
7804
7805 for (f = 0; f < type->num_fields (); f += 1)
7806 {
7807 if (ada_is_variant_part (type, f))
7808 return f;
7809 }
7810 return -1;
7811 }
7812
7813 /* A record type with no fields. */
7814
7815 static struct type *
7816 empty_record (struct type *templ)
7817 {
7818 struct type *type = alloc_type_copy (templ);
7819
7820 type->set_code (TYPE_CODE_STRUCT);
7821 INIT_NONE_SPECIFIC (type);
7822 type->set_name ("<empty>");
7823 TYPE_LENGTH (type) = 0;
7824 return type;
7825 }
7826
7827 /* An ordinary record type (with fixed-length fields) that describes
7828 the value of type TYPE at VALADDR or ADDRESS (see comments at
7829 the beginning of this section) VAL according to GNAT conventions.
7830 DVAL0 should describe the (portion of a) record that contains any
7831 necessary discriminants. It should be NULL if value_type (VAL) is
7832 an outer-level type (i.e., as opposed to a branch of a variant.) A
7833 variant field (unless unchecked) is replaced by a particular branch
7834 of the variant.
7835
7836 If not KEEP_DYNAMIC_FIELDS, then all fields whose position or
7837 length are not statically known are discarded. As a consequence,
7838 VALADDR, ADDRESS and DVAL0 are ignored.
7839
7840 NOTE: Limitations: For now, we assume that dynamic fields and
7841 variants occupy whole numbers of bytes. However, they need not be
7842 byte-aligned. */
7843
7844 struct type *
7845 ada_template_to_fixed_record_type_1 (struct type *type,
7846 const gdb_byte *valaddr,
7847 CORE_ADDR address, struct value *dval0,
7848 int keep_dynamic_fields)
7849 {
7850 struct value *mark = value_mark ();
7851 struct value *dval;
7852 struct type *rtype;
7853 int nfields, bit_len;
7854 int variant_field;
7855 long off;
7856 int fld_bit_len;
7857 int f;
7858
7859 /* Compute the number of fields in this record type that are going
7860 to be processed: unless keep_dynamic_fields, this includes only
7861 fields whose position and length are static will be processed. */
7862 if (keep_dynamic_fields)
7863 nfields = type->num_fields ();
7864 else
7865 {
7866 nfields = 0;
7867 while (nfields < type->num_fields ()
7868 && !ada_is_variant_part (type, nfields)
7869 && !is_dynamic_field (type, nfields))
7870 nfields++;
7871 }
7872
7873 rtype = alloc_type_copy (type);
7874 rtype->set_code (TYPE_CODE_STRUCT);
7875 INIT_NONE_SPECIFIC (rtype);
7876 rtype->set_num_fields (nfields);
7877 rtype->set_fields
7878 ((struct field *) TYPE_ZALLOC (rtype, nfields * sizeof (struct field)));
7879 rtype->set_name (ada_type_name (type));
7880 rtype->set_is_fixed_instance (true);
7881
7882 off = 0;
7883 bit_len = 0;
7884 variant_field = -1;
7885
7886 for (f = 0; f < nfields; f += 1)
7887 {
7888 off = align_up (off, field_alignment (type, f))
7889 + TYPE_FIELD_BITPOS (type, f);
7890 SET_FIELD_BITPOS (rtype->field (f), off);
7891 TYPE_FIELD_BITSIZE (rtype, f) = 0;
7892
7893 if (ada_is_variant_part (type, f))
7894 {
7895 variant_field = f;
7896 fld_bit_len = 0;
7897 }
7898 else if (is_dynamic_field (type, f))
7899 {
7900 const gdb_byte *field_valaddr = valaddr;
7901 CORE_ADDR field_address = address;
7902 struct type *field_type =
7903 TYPE_TARGET_TYPE (type->field (f).type ());
7904
7905 if (dval0 == NULL)
7906 {
7907 /* rtype's length is computed based on the run-time
7908 value of discriminants. If the discriminants are not
7909 initialized, the type size may be completely bogus and
7910 GDB may fail to allocate a value for it. So check the
7911 size first before creating the value. */
7912 ada_ensure_varsize_limit (rtype);
7913 /* Using plain value_from_contents_and_address here
7914 causes problems because we will end up trying to
7915 resolve a type that is currently being
7916 constructed. */
7917 dval = value_from_contents_and_address_unresolved (rtype,
7918 valaddr,
7919 address);
7920 rtype = value_type (dval);
7921 }
7922 else
7923 dval = dval0;
7924
7925 /* If the type referenced by this field is an aligner type, we need
7926 to unwrap that aligner type, because its size might not be set.
7927 Keeping the aligner type would cause us to compute the wrong
7928 size for this field, impacting the offset of the all the fields
7929 that follow this one. */
7930 if (ada_is_aligner_type (field_type))
7931 {
7932 long field_offset = TYPE_FIELD_BITPOS (field_type, f);
7933
7934 field_valaddr = cond_offset_host (field_valaddr, field_offset);
7935 field_address = cond_offset_target (field_address, field_offset);
7936 field_type = ada_aligned_type (field_type);
7937 }
7938
7939 field_valaddr = cond_offset_host (field_valaddr,
7940 off / TARGET_CHAR_BIT);
7941 field_address = cond_offset_target (field_address,
7942 off / TARGET_CHAR_BIT);
7943
7944 /* Get the fixed type of the field. Note that, in this case,
7945 we do not want to get the real type out of the tag: if
7946 the current field is the parent part of a tagged record,
7947 we will get the tag of the object. Clearly wrong: the real
7948 type of the parent is not the real type of the child. We
7949 would end up in an infinite loop. */
7950 field_type = ada_get_base_type (field_type);
7951 field_type = ada_to_fixed_type (field_type, field_valaddr,
7952 field_address, dval, 0);
7953 /* If the field size is already larger than the maximum
7954 object size, then the record itself will necessarily
7955 be larger than the maximum object size. We need to make
7956 this check now, because the size might be so ridiculously
7957 large (due to an uninitialized variable in the inferior)
7958 that it would cause an overflow when adding it to the
7959 record size. */
7960 ada_ensure_varsize_limit (field_type);
7961
7962 rtype->field (f).set_type (field_type);
7963 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
7964 /* The multiplication can potentially overflow. But because
7965 the field length has been size-checked just above, and
7966 assuming that the maximum size is a reasonable value,
7967 an overflow should not happen in practice. So rather than
7968 adding overflow recovery code to this already complex code,
7969 we just assume that it's not going to happen. */
7970 fld_bit_len =
7971 TYPE_LENGTH (rtype->field (f).type ()) * TARGET_CHAR_BIT;
7972 }
7973 else
7974 {
7975 /* Note: If this field's type is a typedef, it is important
7976 to preserve the typedef layer.
7977
7978 Otherwise, we might be transforming a typedef to a fat
7979 pointer (encoding a pointer to an unconstrained array),
7980 into a basic fat pointer (encoding an unconstrained
7981 array). As both types are implemented using the same
7982 structure, the typedef is the only clue which allows us
7983 to distinguish between the two options. Stripping it
7984 would prevent us from printing this field appropriately. */
7985 rtype->field (f).set_type (type->field (f).type ());
7986 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
7987 if (TYPE_FIELD_BITSIZE (type, f) > 0)
7988 fld_bit_len =
7989 TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f);
7990 else
7991 {
7992 struct type *field_type = type->field (f).type ();
7993
7994 /* We need to be careful of typedefs when computing
7995 the length of our field. If this is a typedef,
7996 get the length of the target type, not the length
7997 of the typedef. */
7998 if (field_type->code () == TYPE_CODE_TYPEDEF)
7999 field_type = ada_typedef_target_type (field_type);
8000
8001 fld_bit_len =
8002 TYPE_LENGTH (ada_check_typedef (field_type)) * TARGET_CHAR_BIT;
8003 }
8004 }
8005 if (off + fld_bit_len > bit_len)
8006 bit_len = off + fld_bit_len;
8007 off += fld_bit_len;
8008 TYPE_LENGTH (rtype) =
8009 align_up (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
8010 }
8011
8012 /* We handle the variant part, if any, at the end because of certain
8013 odd cases in which it is re-ordered so as NOT to be the last field of
8014 the record. This can happen in the presence of representation
8015 clauses. */
8016 if (variant_field >= 0)
8017 {
8018 struct type *branch_type;
8019
8020 off = TYPE_FIELD_BITPOS (rtype, variant_field);
8021
8022 if (dval0 == NULL)
8023 {
8024 /* Using plain value_from_contents_and_address here causes
8025 problems because we will end up trying to resolve a type
8026 that is currently being constructed. */
8027 dval = value_from_contents_and_address_unresolved (rtype, valaddr,
8028 address);
8029 rtype = value_type (dval);
8030 }
8031 else
8032 dval = dval0;
8033
8034 branch_type =
8035 to_fixed_variant_branch_type
8036 (type->field (variant_field).type (),
8037 cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
8038 cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
8039 if (branch_type == NULL)
8040 {
8041 for (f = variant_field + 1; f < rtype->num_fields (); f += 1)
8042 rtype->field (f - 1) = rtype->field (f);
8043 rtype->set_num_fields (rtype->num_fields () - 1);
8044 }
8045 else
8046 {
8047 rtype->field (variant_field).set_type (branch_type);
8048 TYPE_FIELD_NAME (rtype, variant_field) = "S";
8049 fld_bit_len =
8050 TYPE_LENGTH (rtype->field (variant_field).type ()) *
8051 TARGET_CHAR_BIT;
8052 if (off + fld_bit_len > bit_len)
8053 bit_len = off + fld_bit_len;
8054 TYPE_LENGTH (rtype) =
8055 align_up (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
8056 }
8057 }
8058
8059 /* According to exp_dbug.ads, the size of TYPE for variable-size records
8060 should contain the alignment of that record, which should be a strictly
8061 positive value. If null or negative, then something is wrong, most
8062 probably in the debug info. In that case, we don't round up the size
8063 of the resulting type. If this record is not part of another structure,
8064 the current RTYPE length might be good enough for our purposes. */
8065 if (TYPE_LENGTH (type) <= 0)
8066 {
8067 if (rtype->name ())
8068 warning (_("Invalid type size for `%s' detected: %s."),
8069 rtype->name (), pulongest (TYPE_LENGTH (type)));
8070 else
8071 warning (_("Invalid type size for <unnamed> detected: %s."),
8072 pulongest (TYPE_LENGTH (type)));
8073 }
8074 else
8075 {
8076 TYPE_LENGTH (rtype) = align_up (TYPE_LENGTH (rtype),
8077 TYPE_LENGTH (type));
8078 }
8079
8080 value_free_to_mark (mark);
8081 if (TYPE_LENGTH (rtype) > varsize_limit)
8082 error (_("record type with dynamic size is larger than varsize-limit"));
8083 return rtype;
8084 }
8085
8086 /* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS
8087 of 1. */
8088
8089 static struct type *
8090 template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr,
8091 CORE_ADDR address, struct value *dval0)
8092 {
8093 return ada_template_to_fixed_record_type_1 (type, valaddr,
8094 address, dval0, 1);
8095 }
8096
8097 /* An ordinary record type in which ___XVL-convention fields and
8098 ___XVU- and ___XVN-convention field types in TYPE0 are replaced with
8099 static approximations, containing all possible fields. Uses
8100 no runtime values. Useless for use in values, but that's OK,
8101 since the results are used only for type determinations. Works on both
8102 structs and unions. Representation note: to save space, we memorize
8103 the result of this function in the TYPE_TARGET_TYPE of the
8104 template type. */
8105
8106 static struct type *
8107 template_to_static_fixed_type (struct type *type0)
8108 {
8109 struct type *type;
8110 int nfields;
8111 int f;
8112
8113 /* No need no do anything if the input type is already fixed. */
8114 if (type0->is_fixed_instance ())
8115 return type0;
8116
8117 /* Likewise if we already have computed the static approximation. */
8118 if (TYPE_TARGET_TYPE (type0) != NULL)
8119 return TYPE_TARGET_TYPE (type0);
8120
8121 /* Don't clone TYPE0 until we are sure we are going to need a copy. */
8122 type = type0;
8123 nfields = type0->num_fields ();
8124
8125 /* Whether or not we cloned TYPE0, cache the result so that we don't do
8126 recompute all over next time. */
8127 TYPE_TARGET_TYPE (type0) = type;
8128
8129 for (f = 0; f < nfields; f += 1)
8130 {
8131 struct type *field_type = type0->field (f).type ();
8132 struct type *new_type;
8133
8134 if (is_dynamic_field (type0, f))
8135 {
8136 field_type = ada_check_typedef (field_type);
8137 new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type));
8138 }
8139 else
8140 new_type = static_unwrap_type (field_type);
8141
8142 if (new_type != field_type)
8143 {
8144 /* Clone TYPE0 only the first time we get a new field type. */
8145 if (type == type0)
8146 {
8147 TYPE_TARGET_TYPE (type0) = type = alloc_type_copy (type0);
8148 type->set_code (type0->code ());
8149 INIT_NONE_SPECIFIC (type);
8150 type->set_num_fields (nfields);
8151
8152 field *fields =
8153 ((struct field *)
8154 TYPE_ALLOC (type, nfields * sizeof (struct field)));
8155 memcpy (fields, type0->fields (),
8156 sizeof (struct field) * nfields);
8157 type->set_fields (fields);
8158
8159 type->set_name (ada_type_name (type0));
8160 type->set_is_fixed_instance (true);
8161 TYPE_LENGTH (type) = 0;
8162 }
8163 type->field (f).set_type (new_type);
8164 TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f);
8165 }
8166 }
8167
8168 return type;
8169 }
8170
8171 /* Given an object of type TYPE whose contents are at VALADDR and
8172 whose address in memory is ADDRESS, returns a revision of TYPE,
8173 which should be a non-dynamic-sized record, in which the variant
8174 part, if any, is replaced with the appropriate branch. Looks
8175 for discriminant values in DVAL0, which can be NULL if the record
8176 contains the necessary discriminant values. */
8177
8178 static struct type *
8179 to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr,
8180 CORE_ADDR address, struct value *dval0)
8181 {
8182 struct value *mark = value_mark ();
8183 struct value *dval;
8184 struct type *rtype;
8185 struct type *branch_type;
8186 int nfields = type->num_fields ();
8187 int variant_field = variant_field_index (type);
8188
8189 if (variant_field == -1)
8190 return type;
8191
8192 if (dval0 == NULL)
8193 {
8194 dval = value_from_contents_and_address (type, valaddr, address);
8195 type = value_type (dval);
8196 }
8197 else
8198 dval = dval0;
8199
8200 rtype = alloc_type_copy (type);
8201 rtype->set_code (TYPE_CODE_STRUCT);
8202 INIT_NONE_SPECIFIC (rtype);
8203 rtype->set_num_fields (nfields);
8204
8205 field *fields =
8206 (struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field));
8207 memcpy (fields, type->fields (), sizeof (struct field) * nfields);
8208 rtype->set_fields (fields);
8209
8210 rtype->set_name (ada_type_name (type));
8211 rtype->set_is_fixed_instance (true);
8212 TYPE_LENGTH (rtype) = TYPE_LENGTH (type);
8213
8214 branch_type = to_fixed_variant_branch_type
8215 (type->field (variant_field).type (),
8216 cond_offset_host (valaddr,
8217 TYPE_FIELD_BITPOS (type, variant_field)
8218 / TARGET_CHAR_BIT),
8219 cond_offset_target (address,
8220 TYPE_FIELD_BITPOS (type, variant_field)
8221 / TARGET_CHAR_BIT), dval);
8222 if (branch_type == NULL)
8223 {
8224 int f;
8225
8226 for (f = variant_field + 1; f < nfields; f += 1)
8227 rtype->field (f - 1) = rtype->field (f);
8228 rtype->set_num_fields (rtype->num_fields () - 1);
8229 }
8230 else
8231 {
8232 rtype->field (variant_field).set_type (branch_type);
8233 TYPE_FIELD_NAME (rtype, variant_field) = "S";
8234 TYPE_FIELD_BITSIZE (rtype, variant_field) = 0;
8235 TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type);
8236 }
8237 TYPE_LENGTH (rtype) -= TYPE_LENGTH (type->field (variant_field).type ());
8238
8239 value_free_to_mark (mark);
8240 return rtype;
8241 }
8242
8243 /* An ordinary record type (with fixed-length fields) that describes
8244 the value at (TYPE0, VALADDR, ADDRESS) [see explanation at
8245 beginning of this section]. Any necessary discriminants' values
8246 should be in DVAL, a record value; it may be NULL if the object
8247 at ADDR itself contains any necessary discriminant values.
8248 Additionally, VALADDR and ADDRESS may also be NULL if no discriminant
8249 values from the record are needed. Except in the case that DVAL,
8250 VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless
8251 unchecked) is replaced by a particular branch of the variant.
8252
8253 NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0
8254 is questionable and may be removed. It can arise during the
8255 processing of an unconstrained-array-of-record type where all the
8256 variant branches have exactly the same size. This is because in
8257 such cases, the compiler does not bother to use the XVS convention
8258 when encoding the record. I am currently dubious of this
8259 shortcut and suspect the compiler should be altered. FIXME. */
8260
8261 static struct type *
8262 to_fixed_record_type (struct type *type0, const gdb_byte *valaddr,
8263 CORE_ADDR address, struct value *dval)
8264 {
8265 struct type *templ_type;
8266
8267 if (type0->is_fixed_instance ())
8268 return type0;
8269
8270 templ_type = dynamic_template_type (type0);
8271
8272 if (templ_type != NULL)
8273 return template_to_fixed_record_type (templ_type, valaddr, address, dval);
8274 else if (variant_field_index (type0) >= 0)
8275 {
8276 if (dval == NULL && valaddr == NULL && address == 0)
8277 return type0;
8278 return to_record_with_fixed_variant_part (type0, valaddr, address,
8279 dval);
8280 }
8281 else
8282 {
8283 type0->set_is_fixed_instance (true);
8284 return type0;
8285 }
8286
8287 }
8288
8289 /* An ordinary record type (with fixed-length fields) that describes
8290 the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a
8291 union type. Any necessary discriminants' values should be in DVAL,
8292 a record value. That is, this routine selects the appropriate
8293 branch of the union at ADDR according to the discriminant value
8294 indicated in the union's type name. Returns VAR_TYPE0 itself if
8295 it represents a variant subject to a pragma Unchecked_Union. */
8296
8297 static struct type *
8298 to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr,
8299 CORE_ADDR address, struct value *dval)
8300 {
8301 int which;
8302 struct type *templ_type;
8303 struct type *var_type;
8304
8305 if (var_type0->code () == TYPE_CODE_PTR)
8306 var_type = TYPE_TARGET_TYPE (var_type0);
8307 else
8308 var_type = var_type0;
8309
8310 templ_type = ada_find_parallel_type (var_type, "___XVU");
8311
8312 if (templ_type != NULL)
8313 var_type = templ_type;
8314
8315 if (is_unchecked_variant (var_type, value_type (dval)))
8316 return var_type0;
8317 which = ada_which_variant_applies (var_type, dval);
8318
8319 if (which < 0)
8320 return empty_record (var_type);
8321 else if (is_dynamic_field (var_type, which))
8322 return to_fixed_record_type
8323 (TYPE_TARGET_TYPE (var_type->field (which).type ()),
8324 valaddr, address, dval);
8325 else if (variant_field_index (var_type->field (which).type ()) >= 0)
8326 return
8327 to_fixed_record_type
8328 (var_type->field (which).type (), valaddr, address, dval);
8329 else
8330 return var_type->field (which).type ();
8331 }
8332
8333 /* Assuming RANGE_TYPE is a TYPE_CODE_RANGE, return nonzero if
8334 ENCODING_TYPE, a type following the GNAT conventions for discrete
8335 type encodings, only carries redundant information. */
8336
8337 static int
8338 ada_is_redundant_range_encoding (struct type *range_type,
8339 struct type *encoding_type)
8340 {
8341 const char *bounds_str;
8342 int n;
8343 LONGEST lo, hi;
8344
8345 gdb_assert (range_type->code () == TYPE_CODE_RANGE);
8346
8347 if (get_base_type (range_type)->code ()
8348 != get_base_type (encoding_type)->code ())
8349 {
8350 /* The compiler probably used a simple base type to describe
8351 the range type instead of the range's actual base type,
8352 expecting us to get the real base type from the encoding
8353 anyway. In this situation, the encoding cannot be ignored
8354 as redundant. */
8355 return 0;
8356 }
8357
8358 if (is_dynamic_type (range_type))
8359 return 0;
8360
8361 if (encoding_type->name () == NULL)
8362 return 0;
8363
8364 bounds_str = strstr (encoding_type->name (), "___XDLU_");
8365 if (bounds_str == NULL)
8366 return 0;
8367
8368 n = 8; /* Skip "___XDLU_". */
8369 if (!ada_scan_number (bounds_str, n, &lo, &n))
8370 return 0;
8371 if (range_type->bounds ()->low.const_val () != lo)
8372 return 0;
8373
8374 n += 2; /* Skip the "__" separator between the two bounds. */
8375 if (!ada_scan_number (bounds_str, n, &hi, &n))
8376 return 0;
8377 if (range_type->bounds ()->high.const_val () != hi)
8378 return 0;
8379
8380 return 1;
8381 }
8382
8383 /* Given the array type ARRAY_TYPE, return nonzero if DESC_TYPE,
8384 a type following the GNAT encoding for describing array type
8385 indices, only carries redundant information. */
8386
8387 static int
8388 ada_is_redundant_index_type_desc (struct type *array_type,
8389 struct type *desc_type)
8390 {
8391 struct type *this_layer = check_typedef (array_type);
8392 int i;
8393
8394 for (i = 0; i < desc_type->num_fields (); i++)
8395 {
8396 if (!ada_is_redundant_range_encoding (this_layer->index_type (),
8397 desc_type->field (i).type ()))
8398 return 0;
8399 this_layer = check_typedef (TYPE_TARGET_TYPE (this_layer));
8400 }
8401
8402 return 1;
8403 }
8404
8405 /* Assuming that TYPE0 is an array type describing the type of a value
8406 at ADDR, and that DVAL describes a record containing any
8407 discriminants used in TYPE0, returns a type for the value that
8408 contains no dynamic components (that is, no components whose sizes
8409 are determined by run-time quantities). Unless IGNORE_TOO_BIG is
8410 true, gives an error message if the resulting type's size is over
8411 varsize_limit. */
8412
8413 static struct type *
8414 to_fixed_array_type (struct type *type0, struct value *dval,
8415 int ignore_too_big)
8416 {
8417 struct type *index_type_desc;
8418 struct type *result;
8419 int constrained_packed_array_p;
8420 static const char *xa_suffix = "___XA";
8421
8422 type0 = ada_check_typedef (type0);
8423 if (type0->is_fixed_instance ())
8424 return type0;
8425
8426 constrained_packed_array_p = ada_is_constrained_packed_array_type (type0);
8427 if (constrained_packed_array_p)
8428 {
8429 type0 = decode_constrained_packed_array_type (type0);
8430 if (type0 == nullptr)
8431 error (_("could not decode constrained packed array type"));
8432 }
8433
8434 index_type_desc = ada_find_parallel_type (type0, xa_suffix);
8435
8436 /* As mentioned in exp_dbug.ads, for non bit-packed arrays an
8437 encoding suffixed with 'P' may still be generated. If so,
8438 it should be used to find the XA type. */
8439
8440 if (index_type_desc == NULL)
8441 {
8442 const char *type_name = ada_type_name (type0);
8443
8444 if (type_name != NULL)
8445 {
8446 const int len = strlen (type_name);
8447 char *name = (char *) alloca (len + strlen (xa_suffix));
8448
8449 if (type_name[len - 1] == 'P')
8450 {
8451 strcpy (name, type_name);
8452 strcpy (name + len - 1, xa_suffix);
8453 index_type_desc = ada_find_parallel_type_with_name (type0, name);
8454 }
8455 }
8456 }
8457
8458 ada_fixup_array_indexes_type (index_type_desc);
8459 if (index_type_desc != NULL
8460 && ada_is_redundant_index_type_desc (type0, index_type_desc))
8461 {
8462 /* Ignore this ___XA parallel type, as it does not bring any
8463 useful information. This allows us to avoid creating fixed
8464 versions of the array's index types, which would be identical
8465 to the original ones. This, in turn, can also help avoid
8466 the creation of fixed versions of the array itself. */
8467 index_type_desc = NULL;
8468 }
8469
8470 if (index_type_desc == NULL)
8471 {
8472 struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0));
8473
8474 /* NOTE: elt_type---the fixed version of elt_type0---should never
8475 depend on the contents of the array in properly constructed
8476 debugging data. */
8477 /* Create a fixed version of the array element type.
8478 We're not providing the address of an element here,
8479 and thus the actual object value cannot be inspected to do
8480 the conversion. This should not be a problem, since arrays of
8481 unconstrained objects are not allowed. In particular, all
8482 the elements of an array of a tagged type should all be of
8483 the same type specified in the debugging info. No need to
8484 consult the object tag. */
8485 struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval, 1);
8486
8487 /* Make sure we always create a new array type when dealing with
8488 packed array types, since we're going to fix-up the array
8489 type length and element bitsize a little further down. */
8490 if (elt_type0 == elt_type && !constrained_packed_array_p)
8491 result = type0;
8492 else
8493 result = create_array_type (alloc_type_copy (type0),
8494 elt_type, type0->index_type ());
8495 }
8496 else
8497 {
8498 int i;
8499 struct type *elt_type0;
8500
8501 elt_type0 = type0;
8502 for (i = index_type_desc->num_fields (); i > 0; i -= 1)
8503 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
8504
8505 /* NOTE: result---the fixed version of elt_type0---should never
8506 depend on the contents of the array in properly constructed
8507 debugging data. */
8508 /* Create a fixed version of the array element type.
8509 We're not providing the address of an element here,
8510 and thus the actual object value cannot be inspected to do
8511 the conversion. This should not be a problem, since arrays of
8512 unconstrained objects are not allowed. In particular, all
8513 the elements of an array of a tagged type should all be of
8514 the same type specified in the debugging info. No need to
8515 consult the object tag. */
8516 result =
8517 ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval, 1);
8518
8519 elt_type0 = type0;
8520 for (i = index_type_desc->num_fields () - 1; i >= 0; i -= 1)
8521 {
8522 struct type *range_type =
8523 to_fixed_range_type (index_type_desc->field (i).type (), dval);
8524
8525 result = create_array_type (alloc_type_copy (elt_type0),
8526 result, range_type);
8527 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
8528 }
8529 if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit)
8530 error (_("array type with dynamic size is larger than varsize-limit"));
8531 }
8532
8533 /* We want to preserve the type name. This can be useful when
8534 trying to get the type name of a value that has already been
8535 printed (for instance, if the user did "print VAR; whatis $". */
8536 result->set_name (type0->name ());
8537
8538 if (constrained_packed_array_p)
8539 {
8540 /* So far, the resulting type has been created as if the original
8541 type was a regular (non-packed) array type. As a result, the
8542 bitsize of the array elements needs to be set again, and the array
8543 length needs to be recomputed based on that bitsize. */
8544 int len = TYPE_LENGTH (result) / TYPE_LENGTH (TYPE_TARGET_TYPE (result));
8545 int elt_bitsize = TYPE_FIELD_BITSIZE (type0, 0);
8546
8547 TYPE_FIELD_BITSIZE (result, 0) = TYPE_FIELD_BITSIZE (type0, 0);
8548 TYPE_LENGTH (result) = len * elt_bitsize / HOST_CHAR_BIT;
8549 if (TYPE_LENGTH (result) * HOST_CHAR_BIT < len * elt_bitsize)
8550 TYPE_LENGTH (result)++;
8551 }
8552
8553 result->set_is_fixed_instance (true);
8554 return result;
8555 }
8556
8557
8558 /* A standard type (containing no dynamically sized components)
8559 corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS)
8560 DVAL describes a record containing any discriminants used in TYPE0,
8561 and may be NULL if there are none, or if the object of type TYPE at
8562 ADDRESS or in VALADDR contains these discriminants.
8563
8564 If CHECK_TAG is not null, in the case of tagged types, this function
8565 attempts to locate the object's tag and use it to compute the actual
8566 type. However, when ADDRESS is null, we cannot use it to determine the
8567 location of the tag, and therefore compute the tagged type's actual type.
8568 So we return the tagged type without consulting the tag. */
8569
8570 static struct type *
8571 ada_to_fixed_type_1 (struct type *type, const gdb_byte *valaddr,
8572 CORE_ADDR address, struct value *dval, int check_tag)
8573 {
8574 type = ada_check_typedef (type);
8575
8576 /* Only un-fixed types need to be handled here. */
8577 if (!HAVE_GNAT_AUX_INFO (type))
8578 return type;
8579
8580 switch (type->code ())
8581 {
8582 default:
8583 return type;
8584 case TYPE_CODE_STRUCT:
8585 {
8586 struct type *static_type = to_static_fixed_type (type);
8587 struct type *fixed_record_type =
8588 to_fixed_record_type (type, valaddr, address, NULL);
8589
8590 /* If STATIC_TYPE is a tagged type and we know the object's address,
8591 then we can determine its tag, and compute the object's actual
8592 type from there. Note that we have to use the fixed record
8593 type (the parent part of the record may have dynamic fields
8594 and the way the location of _tag is expressed may depend on
8595 them). */
8596
8597 if (check_tag && address != 0 && ada_is_tagged_type (static_type, 0))
8598 {
8599 struct value *tag =
8600 value_tag_from_contents_and_address
8601 (fixed_record_type,
8602 valaddr,
8603 address);
8604 struct type *real_type = type_from_tag (tag);
8605 struct value *obj =
8606 value_from_contents_and_address (fixed_record_type,
8607 valaddr,
8608 address);
8609 fixed_record_type = value_type (obj);
8610 if (real_type != NULL)
8611 return to_fixed_record_type
8612 (real_type, NULL,
8613 value_address (ada_tag_value_at_base_address (obj)), NULL);
8614 }
8615
8616 /* Check to see if there is a parallel ___XVZ variable.
8617 If there is, then it provides the actual size of our type. */
8618 else if (ada_type_name (fixed_record_type) != NULL)
8619 {
8620 const char *name = ada_type_name (fixed_record_type);
8621 char *xvz_name
8622 = (char *) alloca (strlen (name) + 7 /* "___XVZ\0" */);
8623 bool xvz_found = false;
8624 LONGEST size;
8625
8626 xsnprintf (xvz_name, strlen (name) + 7, "%s___XVZ", name);
8627 try
8628 {
8629 xvz_found = get_int_var_value (xvz_name, size);
8630 }
8631 catch (const gdb_exception_error &except)
8632 {
8633 /* We found the variable, but somehow failed to read
8634 its value. Rethrow the same error, but with a little
8635 bit more information, to help the user understand
8636 what went wrong (Eg: the variable might have been
8637 optimized out). */
8638 throw_error (except.error,
8639 _("unable to read value of %s (%s)"),
8640 xvz_name, except.what ());
8641 }
8642
8643 if (xvz_found && TYPE_LENGTH (fixed_record_type) != size)
8644 {
8645 fixed_record_type = copy_type (fixed_record_type);
8646 TYPE_LENGTH (fixed_record_type) = size;
8647
8648 /* The FIXED_RECORD_TYPE may have be a stub. We have
8649 observed this when the debugging info is STABS, and
8650 apparently it is something that is hard to fix.
8651
8652 In practice, we don't need the actual type definition
8653 at all, because the presence of the XVZ variable allows us
8654 to assume that there must be a XVS type as well, which we
8655 should be able to use later, when we need the actual type
8656 definition.
8657
8658 In the meantime, pretend that the "fixed" type we are
8659 returning is NOT a stub, because this can cause trouble
8660 when using this type to create new types targeting it.
8661 Indeed, the associated creation routines often check
8662 whether the target type is a stub and will try to replace
8663 it, thus using a type with the wrong size. This, in turn,
8664 might cause the new type to have the wrong size too.
8665 Consider the case of an array, for instance, where the size
8666 of the array is computed from the number of elements in
8667 our array multiplied by the size of its element. */
8668 fixed_record_type->set_is_stub (false);
8669 }
8670 }
8671 return fixed_record_type;
8672 }
8673 case TYPE_CODE_ARRAY:
8674 return to_fixed_array_type (type, dval, 1);
8675 case TYPE_CODE_UNION:
8676 if (dval == NULL)
8677 return type;
8678 else
8679 return to_fixed_variant_branch_type (type, valaddr, address, dval);
8680 }
8681 }
8682
8683 /* The same as ada_to_fixed_type_1, except that it preserves the type
8684 if it is a TYPE_CODE_TYPEDEF of a type that is already fixed.
8685
8686 The typedef layer needs be preserved in order to differentiate between
8687 arrays and array pointers when both types are implemented using the same
8688 fat pointer. In the array pointer case, the pointer is encoded as
8689 a typedef of the pointer type. For instance, considering:
8690
8691 type String_Access is access String;
8692 S1 : String_Access := null;
8693
8694 To the debugger, S1 is defined as a typedef of type String. But
8695 to the user, it is a pointer. So if the user tries to print S1,
8696 we should not dereference the array, but print the array address
8697 instead.
8698
8699 If we didn't preserve the typedef layer, we would lose the fact that
8700 the type is to be presented as a pointer (needs de-reference before
8701 being printed). And we would also use the source-level type name. */
8702
8703 struct type *
8704 ada_to_fixed_type (struct type *type, const gdb_byte *valaddr,
8705 CORE_ADDR address, struct value *dval, int check_tag)
8706
8707 {
8708 struct type *fixed_type =
8709 ada_to_fixed_type_1 (type, valaddr, address, dval, check_tag);
8710
8711 /* If TYPE is a typedef and its target type is the same as the FIXED_TYPE,
8712 then preserve the typedef layer.
8713
8714 Implementation note: We can only check the main-type portion of
8715 the TYPE and FIXED_TYPE, because eliminating the typedef layer
8716 from TYPE now returns a type that has the same instance flags
8717 as TYPE. For instance, if TYPE is a "typedef const", and its
8718 target type is a "struct", then the typedef elimination will return
8719 a "const" version of the target type. See check_typedef for more
8720 details about how the typedef layer elimination is done.
8721
8722 brobecker/2010-11-19: It seems to me that the only case where it is
8723 useful to preserve the typedef layer is when dealing with fat pointers.
8724 Perhaps, we could add a check for that and preserve the typedef layer
8725 only in that situation. But this seems unnecessary so far, probably
8726 because we call check_typedef/ada_check_typedef pretty much everywhere.
8727 */
8728 if (type->code () == TYPE_CODE_TYPEDEF
8729 && (TYPE_MAIN_TYPE (ada_typedef_target_type (type))
8730 == TYPE_MAIN_TYPE (fixed_type)))
8731 return type;
8732
8733 return fixed_type;
8734 }
8735
8736 /* A standard (static-sized) type corresponding as well as possible to
8737 TYPE0, but based on no runtime data. */
8738
8739 static struct type *
8740 to_static_fixed_type (struct type *type0)
8741 {
8742 struct type *type;
8743
8744 if (type0 == NULL)
8745 return NULL;
8746
8747 if (type0->is_fixed_instance ())
8748 return type0;
8749
8750 type0 = ada_check_typedef (type0);
8751
8752 switch (type0->code ())
8753 {
8754 default:
8755 return type0;
8756 case TYPE_CODE_STRUCT:
8757 type = dynamic_template_type (type0);
8758 if (type != NULL)
8759 return template_to_static_fixed_type (type);
8760 else
8761 return template_to_static_fixed_type (type0);
8762 case TYPE_CODE_UNION:
8763 type = ada_find_parallel_type (type0, "___XVU");
8764 if (type != NULL)
8765 return template_to_static_fixed_type (type);
8766 else
8767 return template_to_static_fixed_type (type0);
8768 }
8769 }
8770
8771 /* A static approximation of TYPE with all type wrappers removed. */
8772
8773 static struct type *
8774 static_unwrap_type (struct type *type)
8775 {
8776 if (ada_is_aligner_type (type))
8777 {
8778 struct type *type1 = ada_check_typedef (type)->field (0).type ();
8779 if (ada_type_name (type1) == NULL)
8780 type1->set_name (ada_type_name (type));
8781
8782 return static_unwrap_type (type1);
8783 }
8784 else
8785 {
8786 struct type *raw_real_type = ada_get_base_type (type);
8787
8788 if (raw_real_type == type)
8789 return type;
8790 else
8791 return to_static_fixed_type (raw_real_type);
8792 }
8793 }
8794
8795 /* In some cases, incomplete and private types require
8796 cross-references that are not resolved as records (for example,
8797 type Foo;
8798 type FooP is access Foo;
8799 V: FooP;
8800 type Foo is array ...;
8801 ). In these cases, since there is no mechanism for producing
8802 cross-references to such types, we instead substitute for FooP a
8803 stub enumeration type that is nowhere resolved, and whose tag is
8804 the name of the actual type. Call these types "non-record stubs". */
8805
8806 /* A type equivalent to TYPE that is not a non-record stub, if one
8807 exists, otherwise TYPE. */
8808
8809 struct type *
8810 ada_check_typedef (struct type *type)
8811 {
8812 if (type == NULL)
8813 return NULL;
8814
8815 /* If our type is an access to an unconstrained array, which is encoded
8816 as a TYPE_CODE_TYPEDEF of a fat pointer, then we're done.
8817 We don't want to strip the TYPE_CODE_TYPDEF layer, because this is
8818 what allows us to distinguish between fat pointers that represent
8819 array types, and fat pointers that represent array access types
8820 (in both cases, the compiler implements them as fat pointers). */
8821 if (ada_is_access_to_unconstrained_array (type))
8822 return type;
8823
8824 type = check_typedef (type);
8825 if (type == NULL || type->code () != TYPE_CODE_ENUM
8826 || !type->is_stub ()
8827 || type->name () == NULL)
8828 return type;
8829 else
8830 {
8831 const char *name = type->name ();
8832 struct type *type1 = ada_find_any_type (name);
8833
8834 if (type1 == NULL)
8835 return type;
8836
8837 /* TYPE1 might itself be a TYPE_CODE_TYPEDEF (this can happen with
8838 stubs pointing to arrays, as we don't create symbols for array
8839 types, only for the typedef-to-array types). If that's the case,
8840 strip the typedef layer. */
8841 if (type1->code () == TYPE_CODE_TYPEDEF)
8842 type1 = ada_check_typedef (type1);
8843
8844 return type1;
8845 }
8846 }
8847
8848 /* A value representing the data at VALADDR/ADDRESS as described by
8849 type TYPE0, but with a standard (static-sized) type that correctly
8850 describes it. If VAL0 is not NULL and TYPE0 already is a standard
8851 type, then return VAL0 [this feature is simply to avoid redundant
8852 creation of struct values]. */
8853
8854 static struct value *
8855 ada_to_fixed_value_create (struct type *type0, CORE_ADDR address,
8856 struct value *val0)
8857 {
8858 struct type *type = ada_to_fixed_type (type0, 0, address, NULL, 1);
8859
8860 if (type == type0 && val0 != NULL)
8861 return val0;
8862
8863 if (VALUE_LVAL (val0) != lval_memory)
8864 {
8865 /* Our value does not live in memory; it could be a convenience
8866 variable, for instance. Create a not_lval value using val0's
8867 contents. */
8868 return value_from_contents (type, value_contents (val0));
8869 }
8870
8871 return value_from_contents_and_address (type, 0, address);
8872 }
8873
8874 /* A value representing VAL, but with a standard (static-sized) type
8875 that correctly describes it. Does not necessarily create a new
8876 value. */
8877
8878 struct value *
8879 ada_to_fixed_value (struct value *val)
8880 {
8881 val = unwrap_value (val);
8882 val = ada_to_fixed_value_create (value_type (val), value_address (val), val);
8883 return val;
8884 }
8885 \f
8886
8887 /* Attributes */
8888
8889 /* Table mapping attribute numbers to names.
8890 NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */
8891
8892 static const char * const attribute_names[] = {
8893 "<?>",
8894
8895 "first",
8896 "last",
8897 "length",
8898 "image",
8899 "max",
8900 "min",
8901 "modulus",
8902 "pos",
8903 "size",
8904 "tag",
8905 "val",
8906 0
8907 };
8908
8909 static const char *
8910 ada_attribute_name (enum exp_opcode n)
8911 {
8912 if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL)
8913 return attribute_names[n - OP_ATR_FIRST + 1];
8914 else
8915 return attribute_names[0];
8916 }
8917
8918 /* Evaluate the 'POS attribute applied to ARG. */
8919
8920 static LONGEST
8921 pos_atr (struct value *arg)
8922 {
8923 struct value *val = coerce_ref (arg);
8924 struct type *type = value_type (val);
8925 LONGEST result;
8926
8927 if (!discrete_type_p (type))
8928 error (_("'POS only defined on discrete types"));
8929
8930 if (!discrete_position (type, value_as_long (val), &result))
8931 error (_("enumeration value is invalid: can't find 'POS"));
8932
8933 return result;
8934 }
8935
8936 static struct value *
8937 value_pos_atr (struct type *type, struct value *arg)
8938 {
8939 return value_from_longest (type, pos_atr (arg));
8940 }
8941
8942 /* Evaluate the TYPE'VAL attribute applied to ARG. */
8943
8944 static struct value *
8945 val_atr (struct type *type, LONGEST val)
8946 {
8947 gdb_assert (discrete_type_p (type));
8948 if (type->code () == TYPE_CODE_RANGE)
8949 type = TYPE_TARGET_TYPE (type);
8950 if (type->code () == TYPE_CODE_ENUM)
8951 {
8952 if (val < 0 || val >= type->num_fields ())
8953 error (_("argument to 'VAL out of range"));
8954 val = TYPE_FIELD_ENUMVAL (type, val);
8955 }
8956 return value_from_longest (type, val);
8957 }
8958
8959 static struct value *
8960 value_val_atr (struct type *type, struct value *arg)
8961 {
8962 if (!discrete_type_p (type))
8963 error (_("'VAL only defined on discrete types"));
8964 if (!integer_type_p (value_type (arg)))
8965 error (_("'VAL requires integral argument"));
8966
8967 return val_atr (type, value_as_long (arg));
8968 }
8969 \f
8970
8971 /* Evaluation */
8972
8973 /* True if TYPE appears to be an Ada character type.
8974 [At the moment, this is true only for Character and Wide_Character;
8975 It is a heuristic test that could stand improvement]. */
8976
8977 bool
8978 ada_is_character_type (struct type *type)
8979 {
8980 const char *name;
8981
8982 /* If the type code says it's a character, then assume it really is,
8983 and don't check any further. */
8984 if (type->code () == TYPE_CODE_CHAR)
8985 return true;
8986
8987 /* Otherwise, assume it's a character type iff it is a discrete type
8988 with a known character type name. */
8989 name = ada_type_name (type);
8990 return (name != NULL
8991 && (type->code () == TYPE_CODE_INT
8992 || type->code () == TYPE_CODE_RANGE)
8993 && (strcmp (name, "character") == 0
8994 || strcmp (name, "wide_character") == 0
8995 || strcmp (name, "wide_wide_character") == 0
8996 || strcmp (name, "unsigned char") == 0));
8997 }
8998
8999 /* True if TYPE appears to be an Ada string type. */
9000
9001 bool
9002 ada_is_string_type (struct type *type)
9003 {
9004 type = ada_check_typedef (type);
9005 if (type != NULL
9006 && type->code () != TYPE_CODE_PTR
9007 && (ada_is_simple_array_type (type)
9008 || ada_is_array_descriptor_type (type))
9009 && ada_array_arity (type) == 1)
9010 {
9011 struct type *elttype = ada_array_element_type (type, 1);
9012
9013 return ada_is_character_type (elttype);
9014 }
9015 else
9016 return false;
9017 }
9018
9019 /* The compiler sometimes provides a parallel XVS type for a given
9020 PAD type. Normally, it is safe to follow the PAD type directly,
9021 but older versions of the compiler have a bug that causes the offset
9022 of its "F" field to be wrong. Following that field in that case
9023 would lead to incorrect results, but this can be worked around
9024 by ignoring the PAD type and using the associated XVS type instead.
9025
9026 Set to True if the debugger should trust the contents of PAD types.
9027 Otherwise, ignore the PAD type if there is a parallel XVS type. */
9028 static bool trust_pad_over_xvs = true;
9029
9030 /* True if TYPE is a struct type introduced by the compiler to force the
9031 alignment of a value. Such types have a single field with a
9032 distinctive name. */
9033
9034 int
9035 ada_is_aligner_type (struct type *type)
9036 {
9037 type = ada_check_typedef (type);
9038
9039 if (!trust_pad_over_xvs && ada_find_parallel_type (type, "___XVS") != NULL)
9040 return 0;
9041
9042 return (type->code () == TYPE_CODE_STRUCT
9043 && type->num_fields () == 1
9044 && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0);
9045 }
9046
9047 /* If there is an ___XVS-convention type parallel to SUBTYPE, return
9048 the parallel type. */
9049
9050 struct type *
9051 ada_get_base_type (struct type *raw_type)
9052 {
9053 struct type *real_type_namer;
9054 struct type *raw_real_type;
9055
9056 if (raw_type == NULL || raw_type->code () != TYPE_CODE_STRUCT)
9057 return raw_type;
9058
9059 if (ada_is_aligner_type (raw_type))
9060 /* The encoding specifies that we should always use the aligner type.
9061 So, even if this aligner type has an associated XVS type, we should
9062 simply ignore it.
9063
9064 According to the compiler gurus, an XVS type parallel to an aligner
9065 type may exist because of a stabs limitation. In stabs, aligner
9066 types are empty because the field has a variable-sized type, and
9067 thus cannot actually be used as an aligner type. As a result,
9068 we need the associated parallel XVS type to decode the type.
9069 Since the policy in the compiler is to not change the internal
9070 representation based on the debugging info format, we sometimes
9071 end up having a redundant XVS type parallel to the aligner type. */
9072 return raw_type;
9073
9074 real_type_namer = ada_find_parallel_type (raw_type, "___XVS");
9075 if (real_type_namer == NULL
9076 || real_type_namer->code () != TYPE_CODE_STRUCT
9077 || real_type_namer->num_fields () != 1)
9078 return raw_type;
9079
9080 if (real_type_namer->field (0).type ()->code () != TYPE_CODE_REF)
9081 {
9082 /* This is an older encoding form where the base type needs to be
9083 looked up by name. We prefer the newer encoding because it is
9084 more efficient. */
9085 raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0));
9086 if (raw_real_type == NULL)
9087 return raw_type;
9088 else
9089 return raw_real_type;
9090 }
9091
9092 /* The field in our XVS type is a reference to the base type. */
9093 return TYPE_TARGET_TYPE (real_type_namer->field (0).type ());
9094 }
9095
9096 /* The type of value designated by TYPE, with all aligners removed. */
9097
9098 struct type *
9099 ada_aligned_type (struct type *type)
9100 {
9101 if (ada_is_aligner_type (type))
9102 return ada_aligned_type (type->field (0).type ());
9103 else
9104 return ada_get_base_type (type);
9105 }
9106
9107
9108 /* The address of the aligned value in an object at address VALADDR
9109 having type TYPE. Assumes ada_is_aligner_type (TYPE). */
9110
9111 const gdb_byte *
9112 ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr)
9113 {
9114 if (ada_is_aligner_type (type))
9115 return ada_aligned_value_addr (type->field (0).type (),
9116 valaddr +
9117 TYPE_FIELD_BITPOS (type,
9118 0) / TARGET_CHAR_BIT);
9119 else
9120 return valaddr;
9121 }
9122
9123
9124
9125 /* The printed representation of an enumeration literal with encoded
9126 name NAME. The value is good to the next call of ada_enum_name. */
9127 const char *
9128 ada_enum_name (const char *name)
9129 {
9130 static char *result;
9131 static size_t result_len = 0;
9132 const char *tmp;
9133
9134 /* First, unqualify the enumeration name:
9135 1. Search for the last '.' character. If we find one, then skip
9136 all the preceding characters, the unqualified name starts
9137 right after that dot.
9138 2. Otherwise, we may be debugging on a target where the compiler
9139 translates dots into "__". Search forward for double underscores,
9140 but stop searching when we hit an overloading suffix, which is
9141 of the form "__" followed by digits. */
9142
9143 tmp = strrchr (name, '.');
9144 if (tmp != NULL)
9145 name = tmp + 1;
9146 else
9147 {
9148 while ((tmp = strstr (name, "__")) != NULL)
9149 {
9150 if (isdigit (tmp[2]))
9151 break;
9152 else
9153 name = tmp + 2;
9154 }
9155 }
9156
9157 if (name[0] == 'Q')
9158 {
9159 int v;
9160
9161 if (name[1] == 'U' || name[1] == 'W')
9162 {
9163 if (sscanf (name + 2, "%x", &v) != 1)
9164 return name;
9165 }
9166 else if (((name[1] >= '0' && name[1] <= '9')
9167 || (name[1] >= 'a' && name[1] <= 'z'))
9168 && name[2] == '\0')
9169 {
9170 GROW_VECT (result, result_len, 4);
9171 xsnprintf (result, result_len, "'%c'", name[1]);
9172 return result;
9173 }
9174 else
9175 return name;
9176
9177 GROW_VECT (result, result_len, 16);
9178 if (isascii (v) && isprint (v))
9179 xsnprintf (result, result_len, "'%c'", v);
9180 else if (name[1] == 'U')
9181 xsnprintf (result, result_len, "[\"%02x\"]", v);
9182 else
9183 xsnprintf (result, result_len, "[\"%04x\"]", v);
9184
9185 return result;
9186 }
9187 else
9188 {
9189 tmp = strstr (name, "__");
9190 if (tmp == NULL)
9191 tmp = strstr (name, "$");
9192 if (tmp != NULL)
9193 {
9194 GROW_VECT (result, result_len, tmp - name + 1);
9195 strncpy (result, name, tmp - name);
9196 result[tmp - name] = '\0';
9197 return result;
9198 }
9199
9200 return name;
9201 }
9202 }
9203
9204 /* Evaluate the subexpression of EXP starting at *POS as for
9205 evaluate_type, updating *POS to point just past the evaluated
9206 expression. */
9207
9208 static struct value *
9209 evaluate_subexp_type (struct expression *exp, int *pos)
9210 {
9211 return evaluate_subexp (nullptr, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
9212 }
9213
9214 /* If VAL is wrapped in an aligner or subtype wrapper, return the
9215 value it wraps. */
9216
9217 static struct value *
9218 unwrap_value (struct value *val)
9219 {
9220 struct type *type = ada_check_typedef (value_type (val));
9221
9222 if (ada_is_aligner_type (type))
9223 {
9224 struct value *v = ada_value_struct_elt (val, "F", 0);
9225 struct type *val_type = ada_check_typedef (value_type (v));
9226
9227 if (ada_type_name (val_type) == NULL)
9228 val_type->set_name (ada_type_name (type));
9229
9230 return unwrap_value (v);
9231 }
9232 else
9233 {
9234 struct type *raw_real_type =
9235 ada_check_typedef (ada_get_base_type (type));
9236
9237 /* If there is no parallel XVS or XVE type, then the value is
9238 already unwrapped. Return it without further modification. */
9239 if ((type == raw_real_type)
9240 && ada_find_parallel_type (type, "___XVE") == NULL)
9241 return val;
9242
9243 return
9244 coerce_unspec_val_to_type
9245 (val, ada_to_fixed_type (raw_real_type, 0,
9246 value_address (val),
9247 NULL, 1));
9248 }
9249 }
9250
9251 static struct value *
9252 cast_from_gnat_encoded_fixed_point_type (struct type *type, struct value *arg)
9253 {
9254 struct value *scale
9255 = gnat_encoded_fixed_point_scaling_factor (value_type (arg));
9256 arg = value_cast (value_type (scale), arg);
9257
9258 arg = value_binop (arg, scale, BINOP_MUL);
9259 return value_cast (type, arg);
9260 }
9261
9262 static struct value *
9263 cast_to_gnat_encoded_fixed_point_type (struct type *type, struct value *arg)
9264 {
9265 if (type == value_type (arg))
9266 return arg;
9267
9268 struct value *scale = gnat_encoded_fixed_point_scaling_factor (type);
9269 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg)))
9270 arg = cast_from_gnat_encoded_fixed_point_type (value_type (scale), arg);
9271 else
9272 arg = value_cast (value_type (scale), arg);
9273
9274 arg = value_binop (arg, scale, BINOP_DIV);
9275 return value_cast (type, arg);
9276 }
9277
9278 /* Given two array types T1 and T2, return nonzero iff both arrays
9279 contain the same number of elements. */
9280
9281 static int
9282 ada_same_array_size_p (struct type *t1, struct type *t2)
9283 {
9284 LONGEST lo1, hi1, lo2, hi2;
9285
9286 /* Get the array bounds in order to verify that the size of
9287 the two arrays match. */
9288 if (!get_array_bounds (t1, &lo1, &hi1)
9289 || !get_array_bounds (t2, &lo2, &hi2))
9290 error (_("unable to determine array bounds"));
9291
9292 /* To make things easier for size comparison, normalize a bit
9293 the case of empty arrays by making sure that the difference
9294 between upper bound and lower bound is always -1. */
9295 if (lo1 > hi1)
9296 hi1 = lo1 - 1;
9297 if (lo2 > hi2)
9298 hi2 = lo2 - 1;
9299
9300 return (hi1 - lo1 == hi2 - lo2);
9301 }
9302
9303 /* Assuming that VAL is an array of integrals, and TYPE represents
9304 an array with the same number of elements, but with wider integral
9305 elements, return an array "casted" to TYPE. In practice, this
9306 means that the returned array is built by casting each element
9307 of the original array into TYPE's (wider) element type. */
9308
9309 static struct value *
9310 ada_promote_array_of_integrals (struct type *type, struct value *val)
9311 {
9312 struct type *elt_type = TYPE_TARGET_TYPE (type);
9313 LONGEST lo, hi;
9314 struct value *res;
9315 LONGEST i;
9316
9317 /* Verify that both val and type are arrays of scalars, and
9318 that the size of val's elements is smaller than the size
9319 of type's element. */
9320 gdb_assert (type->code () == TYPE_CODE_ARRAY);
9321 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (type)));
9322 gdb_assert (value_type (val)->code () == TYPE_CODE_ARRAY);
9323 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (value_type (val))));
9324 gdb_assert (TYPE_LENGTH (TYPE_TARGET_TYPE (type))
9325 > TYPE_LENGTH (TYPE_TARGET_TYPE (value_type (val))));
9326
9327 if (!get_array_bounds (type, &lo, &hi))
9328 error (_("unable to determine array bounds"));
9329
9330 res = allocate_value (type);
9331
9332 /* Promote each array element. */
9333 for (i = 0; i < hi - lo + 1; i++)
9334 {
9335 struct value *elt = value_cast (elt_type, value_subscript (val, lo + i));
9336
9337 memcpy (value_contents_writeable (res) + (i * TYPE_LENGTH (elt_type)),
9338 value_contents_all (elt), TYPE_LENGTH (elt_type));
9339 }
9340
9341 return res;
9342 }
9343
9344 /* Coerce VAL as necessary for assignment to an lval of type TYPE, and
9345 return the converted value. */
9346
9347 static struct value *
9348 coerce_for_assign (struct type *type, struct value *val)
9349 {
9350 struct type *type2 = value_type (val);
9351
9352 if (type == type2)
9353 return val;
9354
9355 type2 = ada_check_typedef (type2);
9356 type = ada_check_typedef (type);
9357
9358 if (type2->code () == TYPE_CODE_PTR
9359 && type->code () == TYPE_CODE_ARRAY)
9360 {
9361 val = ada_value_ind (val);
9362 type2 = value_type (val);
9363 }
9364
9365 if (type2->code () == TYPE_CODE_ARRAY
9366 && type->code () == TYPE_CODE_ARRAY)
9367 {
9368 if (!ada_same_array_size_p (type, type2))
9369 error (_("cannot assign arrays of different length"));
9370
9371 if (is_integral_type (TYPE_TARGET_TYPE (type))
9372 && is_integral_type (TYPE_TARGET_TYPE (type2))
9373 && TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9374 < TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9375 {
9376 /* Allow implicit promotion of the array elements to
9377 a wider type. */
9378 return ada_promote_array_of_integrals (type, val);
9379 }
9380
9381 if (TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9382 != TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9383 error (_("Incompatible types in assignment"));
9384 deprecated_set_value_type (val, type);
9385 }
9386 return val;
9387 }
9388
9389 static struct value *
9390 ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
9391 {
9392 struct value *val;
9393 struct type *type1, *type2;
9394 LONGEST v, v1, v2;
9395
9396 arg1 = coerce_ref (arg1);
9397 arg2 = coerce_ref (arg2);
9398 type1 = get_base_type (ada_check_typedef (value_type (arg1)));
9399 type2 = get_base_type (ada_check_typedef (value_type (arg2)));
9400
9401 if (type1->code () != TYPE_CODE_INT
9402 || type2->code () != TYPE_CODE_INT)
9403 return value_binop (arg1, arg2, op);
9404
9405 switch (op)
9406 {
9407 case BINOP_MOD:
9408 case BINOP_DIV:
9409 case BINOP_REM:
9410 break;
9411 default:
9412 return value_binop (arg1, arg2, op);
9413 }
9414
9415 v2 = value_as_long (arg2);
9416 if (v2 == 0)
9417 error (_("second operand of %s must not be zero."), op_string (op));
9418
9419 if (type1->is_unsigned () || op == BINOP_MOD)
9420 return value_binop (arg1, arg2, op);
9421
9422 v1 = value_as_long (arg1);
9423 switch (op)
9424 {
9425 case BINOP_DIV:
9426 v = v1 / v2;
9427 if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0)
9428 v += v > 0 ? -1 : 1;
9429 break;
9430 case BINOP_REM:
9431 v = v1 % v2;
9432 if (v * v1 < 0)
9433 v -= v2;
9434 break;
9435 default:
9436 /* Should not reach this point. */
9437 v = 0;
9438 }
9439
9440 val = allocate_value (type1);
9441 store_unsigned_integer (value_contents_raw (val),
9442 TYPE_LENGTH (value_type (val)),
9443 type_byte_order (type1), v);
9444 return val;
9445 }
9446
9447 static int
9448 ada_value_equal (struct value *arg1, struct value *arg2)
9449 {
9450 if (ada_is_direct_array_type (value_type (arg1))
9451 || ada_is_direct_array_type (value_type (arg2)))
9452 {
9453 struct type *arg1_type, *arg2_type;
9454
9455 /* Automatically dereference any array reference before
9456 we attempt to perform the comparison. */
9457 arg1 = ada_coerce_ref (arg1);
9458 arg2 = ada_coerce_ref (arg2);
9459
9460 arg1 = ada_coerce_to_simple_array (arg1);
9461 arg2 = ada_coerce_to_simple_array (arg2);
9462
9463 arg1_type = ada_check_typedef (value_type (arg1));
9464 arg2_type = ada_check_typedef (value_type (arg2));
9465
9466 if (arg1_type->code () != TYPE_CODE_ARRAY
9467 || arg2_type->code () != TYPE_CODE_ARRAY)
9468 error (_("Attempt to compare array with non-array"));
9469 /* FIXME: The following works only for types whose
9470 representations use all bits (no padding or undefined bits)
9471 and do not have user-defined equality. */
9472 return (TYPE_LENGTH (arg1_type) == TYPE_LENGTH (arg2_type)
9473 && memcmp (value_contents (arg1), value_contents (arg2),
9474 TYPE_LENGTH (arg1_type)) == 0);
9475 }
9476 return value_equal (arg1, arg2);
9477 }
9478
9479 /* Total number of component associations in the aggregate starting at
9480 index PC in EXP. Assumes that index PC is the start of an
9481 OP_AGGREGATE. */
9482
9483 static int
9484 num_component_specs (struct expression *exp, int pc)
9485 {
9486 int n, m, i;
9487
9488 m = exp->elts[pc + 1].longconst;
9489 pc += 3;
9490 n = 0;
9491 for (i = 0; i < m; i += 1)
9492 {
9493 switch (exp->elts[pc].opcode)
9494 {
9495 default:
9496 n += 1;
9497 break;
9498 case OP_CHOICES:
9499 n += exp->elts[pc + 1].longconst;
9500 break;
9501 }
9502 ada_evaluate_subexp (NULL, exp, &pc, EVAL_SKIP);
9503 }
9504 return n;
9505 }
9506
9507 /* Assign the result of evaluating EXP starting at *POS to the INDEXth
9508 component of LHS (a simple array or a record), updating *POS past
9509 the expression, assuming that LHS is contained in CONTAINER. Does
9510 not modify the inferior's memory, nor does it modify LHS (unless
9511 LHS == CONTAINER). */
9512
9513 static void
9514 assign_component (struct value *container, struct value *lhs, LONGEST index,
9515 struct expression *exp, int *pos)
9516 {
9517 struct value *mark = value_mark ();
9518 struct value *elt;
9519 struct type *lhs_type = check_typedef (value_type (lhs));
9520
9521 if (lhs_type->code () == TYPE_CODE_ARRAY)
9522 {
9523 struct type *index_type = builtin_type (exp->gdbarch)->builtin_int;
9524 struct value *index_val = value_from_longest (index_type, index);
9525
9526 elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val));
9527 }
9528 else
9529 {
9530 elt = ada_index_struct_field (index, lhs, 0, value_type (lhs));
9531 elt = ada_to_fixed_value (elt);
9532 }
9533
9534 if (exp->elts[*pos].opcode == OP_AGGREGATE)
9535 assign_aggregate (container, elt, exp, pos, EVAL_NORMAL);
9536 else
9537 value_assign_to_component (container, elt,
9538 ada_evaluate_subexp (NULL, exp, pos,
9539 EVAL_NORMAL));
9540
9541 value_free_to_mark (mark);
9542 }
9543
9544 /* Assuming that LHS represents an lvalue having a record or array
9545 type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment
9546 of that aggregate's value to LHS, advancing *POS past the
9547 aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an
9548 lvalue containing LHS (possibly LHS itself). Does not modify
9549 the inferior's memory, nor does it modify the contents of
9550 LHS (unless == CONTAINER). Returns the modified CONTAINER. */
9551
9552 static struct value *
9553 assign_aggregate (struct value *container,
9554 struct value *lhs, struct expression *exp,
9555 int *pos, enum noside noside)
9556 {
9557 struct type *lhs_type;
9558 int n = exp->elts[*pos+1].longconst;
9559 LONGEST low_index, high_index;
9560 int num_specs;
9561 LONGEST *indices;
9562 int max_indices, num_indices;
9563 int i;
9564
9565 *pos += 3;
9566 if (noside != EVAL_NORMAL)
9567 {
9568 for (i = 0; i < n; i += 1)
9569 ada_evaluate_subexp (NULL, exp, pos, noside);
9570 return container;
9571 }
9572
9573 container = ada_coerce_ref (container);
9574 if (ada_is_direct_array_type (value_type (container)))
9575 container = ada_coerce_to_simple_array (container);
9576 lhs = ada_coerce_ref (lhs);
9577 if (!deprecated_value_modifiable (lhs))
9578 error (_("Left operand of assignment is not a modifiable lvalue."));
9579
9580 lhs_type = check_typedef (value_type (lhs));
9581 if (ada_is_direct_array_type (lhs_type))
9582 {
9583 lhs = ada_coerce_to_simple_array (lhs);
9584 lhs_type = check_typedef (value_type (lhs));
9585 low_index = lhs_type->bounds ()->low.const_val ();
9586 high_index = lhs_type->bounds ()->high.const_val ();
9587 }
9588 else if (lhs_type->code () == TYPE_CODE_STRUCT)
9589 {
9590 low_index = 0;
9591 high_index = num_visible_fields (lhs_type) - 1;
9592 }
9593 else
9594 error (_("Left-hand side must be array or record."));
9595
9596 num_specs = num_component_specs (exp, *pos - 3);
9597 max_indices = 4 * num_specs + 4;
9598 indices = XALLOCAVEC (LONGEST, max_indices);
9599 indices[0] = indices[1] = low_index - 1;
9600 indices[2] = indices[3] = high_index + 1;
9601 num_indices = 4;
9602
9603 for (i = 0; i < n; i += 1)
9604 {
9605 switch (exp->elts[*pos].opcode)
9606 {
9607 case OP_CHOICES:
9608 aggregate_assign_from_choices (container, lhs, exp, pos, indices,
9609 &num_indices, max_indices,
9610 low_index, high_index);
9611 break;
9612 case OP_POSITIONAL:
9613 aggregate_assign_positional (container, lhs, exp, pos, indices,
9614 &num_indices, max_indices,
9615 low_index, high_index);
9616 break;
9617 case OP_OTHERS:
9618 if (i != n-1)
9619 error (_("Misplaced 'others' clause"));
9620 aggregate_assign_others (container, lhs, exp, pos, indices,
9621 num_indices, low_index, high_index);
9622 break;
9623 default:
9624 error (_("Internal error: bad aggregate clause"));
9625 }
9626 }
9627
9628 return container;
9629 }
9630
9631 /* Assign into the component of LHS indexed by the OP_POSITIONAL
9632 construct at *POS, updating *POS past the construct, given that
9633 the positions are relative to lower bound LOW, where HIGH is the
9634 upper bound. Record the position in INDICES[0 .. MAX_INDICES-1]
9635 updating *NUM_INDICES as needed. CONTAINER is as for
9636 assign_aggregate. */
9637 static void
9638 aggregate_assign_positional (struct value *container,
9639 struct value *lhs, struct expression *exp,
9640 int *pos, LONGEST *indices, int *num_indices,
9641 int max_indices, LONGEST low, LONGEST high)
9642 {
9643 LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low;
9644
9645 if (ind - 1 == high)
9646 warning (_("Extra components in aggregate ignored."));
9647 if (ind <= high)
9648 {
9649 add_component_interval (ind, ind, indices, num_indices, max_indices);
9650 *pos += 3;
9651 assign_component (container, lhs, ind, exp, pos);
9652 }
9653 else
9654 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9655 }
9656
9657 /* Assign into the components of LHS indexed by the OP_CHOICES
9658 construct at *POS, updating *POS past the construct, given that
9659 the allowable indices are LOW..HIGH. Record the indices assigned
9660 to in INDICES[0 .. MAX_INDICES-1], updating *NUM_INDICES as
9661 needed. CONTAINER is as for assign_aggregate. */
9662 static void
9663 aggregate_assign_from_choices (struct value *container,
9664 struct value *lhs, struct expression *exp,
9665 int *pos, LONGEST *indices, int *num_indices,
9666 int max_indices, LONGEST low, LONGEST high)
9667 {
9668 int j;
9669 int n_choices = longest_to_int (exp->elts[*pos+1].longconst);
9670 int choice_pos, expr_pc;
9671 int is_array = ada_is_direct_array_type (value_type (lhs));
9672
9673 choice_pos = *pos += 3;
9674
9675 for (j = 0; j < n_choices; j += 1)
9676 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9677 expr_pc = *pos;
9678 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9679
9680 for (j = 0; j < n_choices; j += 1)
9681 {
9682 LONGEST lower, upper;
9683 enum exp_opcode op = exp->elts[choice_pos].opcode;
9684
9685 if (op == OP_DISCRETE_RANGE)
9686 {
9687 choice_pos += 1;
9688 lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
9689 EVAL_NORMAL));
9690 upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
9691 EVAL_NORMAL));
9692 }
9693 else if (is_array)
9694 {
9695 lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos,
9696 EVAL_NORMAL));
9697 upper = lower;
9698 }
9699 else
9700 {
9701 int ind;
9702 const char *name;
9703
9704 switch (op)
9705 {
9706 case OP_NAME:
9707 name = &exp->elts[choice_pos + 2].string;
9708 break;
9709 case OP_VAR_VALUE:
9710 name = exp->elts[choice_pos + 2].symbol->natural_name ();
9711 break;
9712 default:
9713 error (_("Invalid record component association."));
9714 }
9715 ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP);
9716 ind = 0;
9717 if (! find_struct_field (name, value_type (lhs), 0,
9718 NULL, NULL, NULL, NULL, &ind))
9719 error (_("Unknown component name: %s."), name);
9720 lower = upper = ind;
9721 }
9722
9723 if (lower <= upper && (lower < low || upper > high))
9724 error (_("Index in component association out of bounds."));
9725
9726 add_component_interval (lower, upper, indices, num_indices,
9727 max_indices);
9728 while (lower <= upper)
9729 {
9730 int pos1;
9731
9732 pos1 = expr_pc;
9733 assign_component (container, lhs, lower, exp, &pos1);
9734 lower += 1;
9735 }
9736 }
9737 }
9738
9739 /* Assign the value of the expression in the OP_OTHERS construct in
9740 EXP at *POS into the components of LHS indexed from LOW .. HIGH that
9741 have not been previously assigned. The index intervals already assigned
9742 are in INDICES[0 .. NUM_INDICES-1]. Updates *POS to after the
9743 OP_OTHERS clause. CONTAINER is as for assign_aggregate. */
9744 static void
9745 aggregate_assign_others (struct value *container,
9746 struct value *lhs, struct expression *exp,
9747 int *pos, LONGEST *indices, int num_indices,
9748 LONGEST low, LONGEST high)
9749 {
9750 int i;
9751 int expr_pc = *pos + 1;
9752
9753 for (i = 0; i < num_indices - 2; i += 2)
9754 {
9755 LONGEST ind;
9756
9757 for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1)
9758 {
9759 int localpos;
9760
9761 localpos = expr_pc;
9762 assign_component (container, lhs, ind, exp, &localpos);
9763 }
9764 }
9765 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9766 }
9767
9768 /* Add the interval [LOW .. HIGH] to the sorted set of intervals
9769 [ INDICES[0] .. INDICES[1] ],..., [ INDICES[*SIZE-2] .. INDICES[*SIZE-1] ],
9770 modifying *SIZE as needed. It is an error if *SIZE exceeds
9771 MAX_SIZE. The resulting intervals do not overlap. */
9772 static void
9773 add_component_interval (LONGEST low, LONGEST high,
9774 LONGEST* indices, int *size, int max_size)
9775 {
9776 int i, j;
9777
9778 for (i = 0; i < *size; i += 2) {
9779 if (high >= indices[i] && low <= indices[i + 1])
9780 {
9781 int kh;
9782
9783 for (kh = i + 2; kh < *size; kh += 2)
9784 if (high < indices[kh])
9785 break;
9786 if (low < indices[i])
9787 indices[i] = low;
9788 indices[i + 1] = indices[kh - 1];
9789 if (high > indices[i + 1])
9790 indices[i + 1] = high;
9791 memcpy (indices + i + 2, indices + kh, *size - kh);
9792 *size -= kh - i - 2;
9793 return;
9794 }
9795 else if (high < indices[i])
9796 break;
9797 }
9798
9799 if (*size == max_size)
9800 error (_("Internal error: miscounted aggregate components."));
9801 *size += 2;
9802 for (j = *size-1; j >= i+2; j -= 1)
9803 indices[j] = indices[j - 2];
9804 indices[i] = low;
9805 indices[i + 1] = high;
9806 }
9807
9808 /* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2
9809 is different. */
9810
9811 static struct value *
9812 ada_value_cast (struct type *type, struct value *arg2)
9813 {
9814 if (type == ada_check_typedef (value_type (arg2)))
9815 return arg2;
9816
9817 if (ada_is_gnat_encoded_fixed_point_type (type))
9818 return cast_to_gnat_encoded_fixed_point_type (type, arg2);
9819
9820 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
9821 return cast_from_gnat_encoded_fixed_point_type (type, arg2);
9822
9823 return value_cast (type, arg2);
9824 }
9825
9826 /* Evaluating Ada expressions, and printing their result.
9827 ------------------------------------------------------
9828
9829 1. Introduction:
9830 ----------------
9831
9832 We usually evaluate an Ada expression in order to print its value.
9833 We also evaluate an expression in order to print its type, which
9834 happens during the EVAL_AVOID_SIDE_EFFECTS phase of the evaluation,
9835 but we'll focus mostly on the EVAL_NORMAL phase. In practice, the
9836 EVAL_AVOID_SIDE_EFFECTS phase allows us to simplify certain aspects of
9837 the evaluation compared to the EVAL_NORMAL, but is otherwise very
9838 similar.
9839
9840 Evaluating expressions is a little more complicated for Ada entities
9841 than it is for entities in languages such as C. The main reason for
9842 this is that Ada provides types whose definition might be dynamic.
9843 One example of such types is variant records. Or another example
9844 would be an array whose bounds can only be known at run time.
9845
9846 The following description is a general guide as to what should be
9847 done (and what should NOT be done) in order to evaluate an expression
9848 involving such types, and when. This does not cover how the semantic
9849 information is encoded by GNAT as this is covered separatly. For the
9850 document used as the reference for the GNAT encoding, see exp_dbug.ads
9851 in the GNAT sources.
9852
9853 Ideally, we should embed each part of this description next to its
9854 associated code. Unfortunately, the amount of code is so vast right
9855 now that it's hard to see whether the code handling a particular
9856 situation might be duplicated or not. One day, when the code is
9857 cleaned up, this guide might become redundant with the comments
9858 inserted in the code, and we might want to remove it.
9859
9860 2. ``Fixing'' an Entity, the Simple Case:
9861 -----------------------------------------
9862
9863 When evaluating Ada expressions, the tricky issue is that they may
9864 reference entities whose type contents and size are not statically
9865 known. Consider for instance a variant record:
9866
9867 type Rec (Empty : Boolean := True) is record
9868 case Empty is
9869 when True => null;
9870 when False => Value : Integer;
9871 end case;
9872 end record;
9873 Yes : Rec := (Empty => False, Value => 1);
9874 No : Rec := (empty => True);
9875
9876 The size and contents of that record depends on the value of the
9877 descriminant (Rec.Empty). At this point, neither the debugging
9878 information nor the associated type structure in GDB are able to
9879 express such dynamic types. So what the debugger does is to create
9880 "fixed" versions of the type that applies to the specific object.
9881 We also informally refer to this operation as "fixing" an object,
9882 which means creating its associated fixed type.
9883
9884 Example: when printing the value of variable "Yes" above, its fixed
9885 type would look like this:
9886
9887 type Rec is record
9888 Empty : Boolean;
9889 Value : Integer;
9890 end record;
9891
9892 On the other hand, if we printed the value of "No", its fixed type
9893 would become:
9894
9895 type Rec is record
9896 Empty : Boolean;
9897 end record;
9898
9899 Things become a little more complicated when trying to fix an entity
9900 with a dynamic type that directly contains another dynamic type,
9901 such as an array of variant records, for instance. There are
9902 two possible cases: Arrays, and records.
9903
9904 3. ``Fixing'' Arrays:
9905 ---------------------
9906
9907 The type structure in GDB describes an array in terms of its bounds,
9908 and the type of its elements. By design, all elements in the array
9909 have the same type and we cannot represent an array of variant elements
9910 using the current type structure in GDB. When fixing an array,
9911 we cannot fix the array element, as we would potentially need one
9912 fixed type per element of the array. As a result, the best we can do
9913 when fixing an array is to produce an array whose bounds and size
9914 are correct (allowing us to read it from memory), but without having
9915 touched its element type. Fixing each element will be done later,
9916 when (if) necessary.
9917
9918 Arrays are a little simpler to handle than records, because the same
9919 amount of memory is allocated for each element of the array, even if
9920 the amount of space actually used by each element differs from element
9921 to element. Consider for instance the following array of type Rec:
9922
9923 type Rec_Array is array (1 .. 2) of Rec;
9924
9925 The actual amount of memory occupied by each element might be different
9926 from element to element, depending on the value of their discriminant.
9927 But the amount of space reserved for each element in the array remains
9928 fixed regardless. So we simply need to compute that size using
9929 the debugging information available, from which we can then determine
9930 the array size (we multiply the number of elements of the array by
9931 the size of each element).
9932
9933 The simplest case is when we have an array of a constrained element
9934 type. For instance, consider the following type declarations:
9935
9936 type Bounded_String (Max_Size : Integer) is
9937 Length : Integer;
9938 Buffer : String (1 .. Max_Size);
9939 end record;
9940 type Bounded_String_Array is array (1 ..2) of Bounded_String (80);
9941
9942 In this case, the compiler describes the array as an array of
9943 variable-size elements (identified by its XVS suffix) for which
9944 the size can be read in the parallel XVZ variable.
9945
9946 In the case of an array of an unconstrained element type, the compiler
9947 wraps the array element inside a private PAD type. This type should not
9948 be shown to the user, and must be "unwrap"'ed before printing. Note
9949 that we also use the adjective "aligner" in our code to designate
9950 these wrapper types.
9951
9952 In some cases, the size allocated for each element is statically
9953 known. In that case, the PAD type already has the correct size,
9954 and the array element should remain unfixed.
9955
9956 But there are cases when this size is not statically known.
9957 For instance, assuming that "Five" is an integer variable:
9958
9959 type Dynamic is array (1 .. Five) of Integer;
9960 type Wrapper (Has_Length : Boolean := False) is record
9961 Data : Dynamic;
9962 case Has_Length is
9963 when True => Length : Integer;
9964 when False => null;
9965 end case;
9966 end record;
9967 type Wrapper_Array is array (1 .. 2) of Wrapper;
9968
9969 Hello : Wrapper_Array := (others => (Has_Length => True,
9970 Data => (others => 17),
9971 Length => 1));
9972
9973
9974 The debugging info would describe variable Hello as being an
9975 array of a PAD type. The size of that PAD type is not statically
9976 known, but can be determined using a parallel XVZ variable.
9977 In that case, a copy of the PAD type with the correct size should
9978 be used for the fixed array.
9979
9980 3. ``Fixing'' record type objects:
9981 ----------------------------------
9982
9983 Things are slightly different from arrays in the case of dynamic
9984 record types. In this case, in order to compute the associated
9985 fixed type, we need to determine the size and offset of each of
9986 its components. This, in turn, requires us to compute the fixed
9987 type of each of these components.
9988
9989 Consider for instance the example:
9990
9991 type Bounded_String (Max_Size : Natural) is record
9992 Str : String (1 .. Max_Size);
9993 Length : Natural;
9994 end record;
9995 My_String : Bounded_String (Max_Size => 10);
9996
9997 In that case, the position of field "Length" depends on the size
9998 of field Str, which itself depends on the value of the Max_Size
9999 discriminant. In order to fix the type of variable My_String,
10000 we need to fix the type of field Str. Therefore, fixing a variant
10001 record requires us to fix each of its components.
10002
10003 However, if a component does not have a dynamic size, the component
10004 should not be fixed. In particular, fields that use a PAD type
10005 should not fixed. Here is an example where this might happen
10006 (assuming type Rec above):
10007
10008 type Container (Big : Boolean) is record
10009 First : Rec;
10010 After : Integer;
10011 case Big is
10012 when True => Another : Integer;
10013 when False => null;
10014 end case;
10015 end record;
10016 My_Container : Container := (Big => False,
10017 First => (Empty => True),
10018 After => 42);
10019
10020 In that example, the compiler creates a PAD type for component First,
10021 whose size is constant, and then positions the component After just
10022 right after it. The offset of component After is therefore constant
10023 in this case.
10024
10025 The debugger computes the position of each field based on an algorithm
10026 that uses, among other things, the actual position and size of the field
10027 preceding it. Let's now imagine that the user is trying to print
10028 the value of My_Container. If the type fixing was recursive, we would
10029 end up computing the offset of field After based on the size of the
10030 fixed version of field First. And since in our example First has
10031 only one actual field, the size of the fixed type is actually smaller
10032 than the amount of space allocated to that field, and thus we would
10033 compute the wrong offset of field After.
10034
10035 To make things more complicated, we need to watch out for dynamic
10036 components of variant records (identified by the ___XVL suffix in
10037 the component name). Even if the target type is a PAD type, the size
10038 of that type might not be statically known. So the PAD type needs
10039 to be unwrapped and the resulting type needs to be fixed. Otherwise,
10040 we might end up with the wrong size for our component. This can be
10041 observed with the following type declarations:
10042
10043 type Octal is new Integer range 0 .. 7;
10044 type Octal_Array is array (Positive range <>) of Octal;
10045 pragma Pack (Octal_Array);
10046
10047 type Octal_Buffer (Size : Positive) is record
10048 Buffer : Octal_Array (1 .. Size);
10049 Length : Integer;
10050 end record;
10051
10052 In that case, Buffer is a PAD type whose size is unset and needs
10053 to be computed by fixing the unwrapped type.
10054
10055 4. When to ``Fix'' un-``Fixed'' sub-elements of an entity:
10056 ----------------------------------------------------------
10057
10058 Lastly, when should the sub-elements of an entity that remained unfixed
10059 thus far, be actually fixed?
10060
10061 The answer is: Only when referencing that element. For instance
10062 when selecting one component of a record, this specific component
10063 should be fixed at that point in time. Or when printing the value
10064 of a record, each component should be fixed before its value gets
10065 printed. Similarly for arrays, the element of the array should be
10066 fixed when printing each element of the array, or when extracting
10067 one element out of that array. On the other hand, fixing should
10068 not be performed on the elements when taking a slice of an array!
10069
10070 Note that one of the side effects of miscomputing the offset and
10071 size of each field is that we end up also miscomputing the size
10072 of the containing type. This can have adverse results when computing
10073 the value of an entity. GDB fetches the value of an entity based
10074 on the size of its type, and thus a wrong size causes GDB to fetch
10075 the wrong amount of memory. In the case where the computed size is
10076 too small, GDB fetches too little data to print the value of our
10077 entity. Results in this case are unpredictable, as we usually read
10078 past the buffer containing the data =:-o. */
10079
10080 /* Evaluate a subexpression of EXP, at index *POS, and return a value
10081 for that subexpression cast to TO_TYPE. Advance *POS over the
10082 subexpression. */
10083
10084 static value *
10085 ada_evaluate_subexp_for_cast (expression *exp, int *pos,
10086 enum noside noside, struct type *to_type)
10087 {
10088 int pc = *pos;
10089
10090 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE
10091 || exp->elts[pc].opcode == OP_VAR_VALUE)
10092 {
10093 (*pos) += 4;
10094
10095 value *val;
10096 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
10097 {
10098 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10099 return value_zero (to_type, not_lval);
10100
10101 val = evaluate_var_msym_value (noside,
10102 exp->elts[pc + 1].objfile,
10103 exp->elts[pc + 2].msymbol);
10104 }
10105 else
10106 val = evaluate_var_value (noside,
10107 exp->elts[pc + 1].block,
10108 exp->elts[pc + 2].symbol);
10109
10110 if (noside == EVAL_SKIP)
10111 return eval_skip_value (exp);
10112
10113 val = ada_value_cast (to_type, val);
10114
10115 /* Follow the Ada language semantics that do not allow taking
10116 an address of the result of a cast (view conversion in Ada). */
10117 if (VALUE_LVAL (val) == lval_memory)
10118 {
10119 if (value_lazy (val))
10120 value_fetch_lazy (val);
10121 VALUE_LVAL (val) = not_lval;
10122 }
10123 return val;
10124 }
10125
10126 value *val = evaluate_subexp (to_type, exp, pos, noside);
10127 if (noside == EVAL_SKIP)
10128 return eval_skip_value (exp);
10129 return ada_value_cast (to_type, val);
10130 }
10131
10132 /* Implement the evaluate_exp routine in the exp_descriptor structure
10133 for the Ada language. */
10134
10135 static struct value *
10136 ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
10137 int *pos, enum noside noside)
10138 {
10139 enum exp_opcode op;
10140 int tem;
10141 int pc;
10142 int preeval_pos;
10143 struct value *arg1 = NULL, *arg2 = NULL, *arg3;
10144 struct type *type;
10145 int nargs, oplen;
10146 struct value **argvec;
10147
10148 pc = *pos;
10149 *pos += 1;
10150 op = exp->elts[pc].opcode;
10151
10152 switch (op)
10153 {
10154 default:
10155 *pos -= 1;
10156 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10157
10158 if (noside == EVAL_NORMAL)
10159 arg1 = unwrap_value (arg1);
10160
10161 /* If evaluating an OP_FLOAT and an EXPECT_TYPE was provided,
10162 then we need to perform the conversion manually, because
10163 evaluate_subexp_standard doesn't do it. This conversion is
10164 necessary in Ada because the different kinds of float/fixed
10165 types in Ada have different representations.
10166
10167 Similarly, we need to perform the conversion from OP_LONG
10168 ourselves. */
10169 if ((op == OP_FLOAT || op == OP_LONG) && expect_type != NULL)
10170 arg1 = ada_value_cast (expect_type, arg1);
10171
10172 return arg1;
10173
10174 case OP_STRING:
10175 {
10176 struct value *result;
10177
10178 *pos -= 1;
10179 result = evaluate_subexp_standard (expect_type, exp, pos, noside);
10180 /* The result type will have code OP_STRING, bashed there from
10181 OP_ARRAY. Bash it back. */
10182 if (value_type (result)->code () == TYPE_CODE_STRING)
10183 value_type (result)->set_code (TYPE_CODE_ARRAY);
10184 return result;
10185 }
10186
10187 case UNOP_CAST:
10188 (*pos) += 2;
10189 type = exp->elts[pc + 1].type;
10190 return ada_evaluate_subexp_for_cast (exp, pos, noside, type);
10191
10192 case UNOP_QUAL:
10193 (*pos) += 2;
10194 type = exp->elts[pc + 1].type;
10195 return ada_evaluate_subexp (type, exp, pos, noside);
10196
10197 case BINOP_ASSIGN:
10198 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10199 if (exp->elts[*pos].opcode == OP_AGGREGATE)
10200 {
10201 arg1 = assign_aggregate (arg1, arg1, exp, pos, noside);
10202 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10203 return arg1;
10204 return ada_value_assign (arg1, arg1);
10205 }
10206 /* Force the evaluation of the rhs ARG2 to the type of the lhs ARG1,
10207 except if the lhs of our assignment is a convenience variable.
10208 In the case of assigning to a convenience variable, the lhs
10209 should be exactly the result of the evaluation of the rhs. */
10210 type = value_type (arg1);
10211 if (VALUE_LVAL (arg1) == lval_internalvar)
10212 type = NULL;
10213 arg2 = evaluate_subexp (type, exp, pos, noside);
10214 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10215 return arg1;
10216 if (VALUE_LVAL (arg1) == lval_internalvar)
10217 {
10218 /* Nothing. */
10219 }
10220 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
10221 arg2 = cast_to_gnat_encoded_fixed_point_type (value_type (arg1), arg2);
10222 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
10223 error
10224 (_("Fixed-point values must be assigned to fixed-point variables"));
10225 else
10226 arg2 = coerce_for_assign (value_type (arg1), arg2);
10227 return ada_value_assign (arg1, arg2);
10228
10229 case BINOP_ADD:
10230 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10231 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10232 if (noside == EVAL_SKIP)
10233 goto nosideret;
10234 if (value_type (arg1)->code () == TYPE_CODE_PTR)
10235 return (value_from_longest
10236 (value_type (arg1),
10237 value_as_long (arg1) + value_as_long (arg2)));
10238 if (value_type (arg2)->code () == TYPE_CODE_PTR)
10239 return (value_from_longest
10240 (value_type (arg2),
10241 value_as_long (arg1) + value_as_long (arg2)));
10242 if ((ada_is_gnat_encoded_fixed_point_type (value_type (arg1))
10243 || ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
10244 && value_type (arg1) != value_type (arg2))
10245 error (_("Operands of fixed-point addition must have the same type"));
10246 /* Do the addition, and cast the result to the type of the first
10247 argument. We cannot cast the result to a reference type, so if
10248 ARG1 is a reference type, find its underlying type. */
10249 type = value_type (arg1);
10250 while (type->code () == TYPE_CODE_REF)
10251 type = TYPE_TARGET_TYPE (type);
10252 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10253 return value_cast (type, value_binop (arg1, arg2, BINOP_ADD));
10254
10255 case BINOP_SUB:
10256 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10257 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10258 if (noside == EVAL_SKIP)
10259 goto nosideret;
10260 if (value_type (arg1)->code () == TYPE_CODE_PTR)
10261 return (value_from_longest
10262 (value_type (arg1),
10263 value_as_long (arg1) - value_as_long (arg2)));
10264 if (value_type (arg2)->code () == TYPE_CODE_PTR)
10265 return (value_from_longest
10266 (value_type (arg2),
10267 value_as_long (arg1) - value_as_long (arg2)));
10268 if ((ada_is_gnat_encoded_fixed_point_type (value_type (arg1))
10269 || ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
10270 && value_type (arg1) != value_type (arg2))
10271 error (_("Operands of fixed-point subtraction "
10272 "must have the same type"));
10273 /* Do the substraction, and cast the result to the type of the first
10274 argument. We cannot cast the result to a reference type, so if
10275 ARG1 is a reference type, find its underlying type. */
10276 type = value_type (arg1);
10277 while (type->code () == TYPE_CODE_REF)
10278 type = TYPE_TARGET_TYPE (type);
10279 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10280 return value_cast (type, value_binop (arg1, arg2, BINOP_SUB));
10281
10282 case BINOP_MUL:
10283 case BINOP_DIV:
10284 case BINOP_REM:
10285 case BINOP_MOD:
10286 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10287 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10288 if (noside == EVAL_SKIP)
10289 goto nosideret;
10290 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10291 {
10292 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10293 return value_zero (value_type (arg1), not_lval);
10294 }
10295 else
10296 {
10297 type = builtin_type (exp->gdbarch)->builtin_double;
10298 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
10299 arg1 = cast_from_gnat_encoded_fixed_point_type (type, arg1);
10300 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
10301 arg2 = cast_from_gnat_encoded_fixed_point_type (type, arg2);
10302 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10303 return ada_value_binop (arg1, arg2, op);
10304 }
10305
10306 case BINOP_EQUAL:
10307 case BINOP_NOTEQUAL:
10308 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10309 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
10310 if (noside == EVAL_SKIP)
10311 goto nosideret;
10312 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10313 tem = 0;
10314 else
10315 {
10316 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10317 tem = ada_value_equal (arg1, arg2);
10318 }
10319 if (op == BINOP_NOTEQUAL)
10320 tem = !tem;
10321 type = language_bool_type (exp->language_defn, exp->gdbarch);
10322 return value_from_longest (type, (LONGEST) tem);
10323
10324 case UNOP_NEG:
10325 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10326 if (noside == EVAL_SKIP)
10327 goto nosideret;
10328 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
10329 return value_cast (value_type (arg1), value_neg (arg1));
10330 else
10331 {
10332 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10333 return value_neg (arg1);
10334 }
10335
10336 case BINOP_LOGICAL_AND:
10337 case BINOP_LOGICAL_OR:
10338 case UNOP_LOGICAL_NOT:
10339 {
10340 struct value *val;
10341
10342 *pos -= 1;
10343 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10344 type = language_bool_type (exp->language_defn, exp->gdbarch);
10345 return value_cast (type, val);
10346 }
10347
10348 case BINOP_BITWISE_AND:
10349 case BINOP_BITWISE_IOR:
10350 case BINOP_BITWISE_XOR:
10351 {
10352 struct value *val;
10353
10354 arg1 = evaluate_subexp (nullptr, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
10355 *pos = pc;
10356 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10357
10358 return value_cast (value_type (arg1), val);
10359 }
10360
10361 case OP_VAR_VALUE:
10362 *pos -= 1;
10363
10364 if (noside == EVAL_SKIP)
10365 {
10366 *pos += 4;
10367 goto nosideret;
10368 }
10369
10370 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
10371 /* Only encountered when an unresolved symbol occurs in a
10372 context other than a function call, in which case, it is
10373 invalid. */
10374 error (_("Unexpected unresolved symbol, %s, during evaluation"),
10375 exp->elts[pc + 2].symbol->print_name ());
10376
10377 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10378 {
10379 type = static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
10380 /* Check to see if this is a tagged type. We also need to handle
10381 the case where the type is a reference to a tagged type, but
10382 we have to be careful to exclude pointers to tagged types.
10383 The latter should be shown as usual (as a pointer), whereas
10384 a reference should mostly be transparent to the user. */
10385 if (ada_is_tagged_type (type, 0)
10386 || (type->code () == TYPE_CODE_REF
10387 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0)))
10388 {
10389 /* Tagged types are a little special in the fact that the real
10390 type is dynamic and can only be determined by inspecting the
10391 object's tag. This means that we need to get the object's
10392 value first (EVAL_NORMAL) and then extract the actual object
10393 type from its tag.
10394
10395 Note that we cannot skip the final step where we extract
10396 the object type from its tag, because the EVAL_NORMAL phase
10397 results in dynamic components being resolved into fixed ones.
10398 This can cause problems when trying to print the type
10399 description of tagged types whose parent has a dynamic size:
10400 We use the type name of the "_parent" component in order
10401 to print the name of the ancestor type in the type description.
10402 If that component had a dynamic size, the resolution into
10403 a fixed type would result in the loss of that type name,
10404 thus preventing us from printing the name of the ancestor
10405 type in the type description. */
10406 arg1 = evaluate_subexp (nullptr, exp, pos, EVAL_NORMAL);
10407
10408 if (type->code () != TYPE_CODE_REF)
10409 {
10410 struct type *actual_type;
10411
10412 actual_type = type_from_tag (ada_value_tag (arg1));
10413 if (actual_type == NULL)
10414 /* If, for some reason, we were unable to determine
10415 the actual type from the tag, then use the static
10416 approximation that we just computed as a fallback.
10417 This can happen if the debugging information is
10418 incomplete, for instance. */
10419 actual_type = type;
10420 return value_zero (actual_type, not_lval);
10421 }
10422 else
10423 {
10424 /* In the case of a ref, ada_coerce_ref takes care
10425 of determining the actual type. But the evaluation
10426 should return a ref as it should be valid to ask
10427 for its address; so rebuild a ref after coerce. */
10428 arg1 = ada_coerce_ref (arg1);
10429 return value_ref (arg1, TYPE_CODE_REF);
10430 }
10431 }
10432
10433 /* Records and unions for which GNAT encodings have been
10434 generated need to be statically fixed as well.
10435 Otherwise, non-static fixing produces a type where
10436 all dynamic properties are removed, which prevents "ptype"
10437 from being able to completely describe the type.
10438 For instance, a case statement in a variant record would be
10439 replaced by the relevant components based on the actual
10440 value of the discriminants. */
10441 if ((type->code () == TYPE_CODE_STRUCT
10442 && dynamic_template_type (type) != NULL)
10443 || (type->code () == TYPE_CODE_UNION
10444 && ada_find_parallel_type (type, "___XVU") != NULL))
10445 {
10446 *pos += 4;
10447 return value_zero (to_static_fixed_type (type), not_lval);
10448 }
10449 }
10450
10451 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10452 return ada_to_fixed_value (arg1);
10453
10454 case OP_FUNCALL:
10455 (*pos) += 2;
10456
10457 /* Allocate arg vector, including space for the function to be
10458 called in argvec[0] and a terminating NULL. */
10459 nargs = longest_to_int (exp->elts[pc + 1].longconst);
10460 argvec = XALLOCAVEC (struct value *, nargs + 2);
10461
10462 if (exp->elts[*pos].opcode == OP_VAR_VALUE
10463 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
10464 error (_("Unexpected unresolved symbol, %s, during evaluation"),
10465 exp->elts[pc + 5].symbol->print_name ());
10466 else
10467 {
10468 for (tem = 0; tem <= nargs; tem += 1)
10469 argvec[tem] = evaluate_subexp (nullptr, exp, pos, noside);
10470 argvec[tem] = 0;
10471
10472 if (noside == EVAL_SKIP)
10473 goto nosideret;
10474 }
10475
10476 if (ada_is_constrained_packed_array_type
10477 (desc_base_type (value_type (argvec[0]))))
10478 argvec[0] = ada_coerce_to_simple_array (argvec[0]);
10479 else if (value_type (argvec[0])->code () == TYPE_CODE_ARRAY
10480 && TYPE_FIELD_BITSIZE (value_type (argvec[0]), 0) != 0)
10481 /* This is a packed array that has already been fixed, and
10482 therefore already coerced to a simple array. Nothing further
10483 to do. */
10484 ;
10485 else if (value_type (argvec[0])->code () == TYPE_CODE_REF)
10486 {
10487 /* Make sure we dereference references so that all the code below
10488 feels like it's really handling the referenced value. Wrapping
10489 types (for alignment) may be there, so make sure we strip them as
10490 well. */
10491 argvec[0] = ada_to_fixed_value (coerce_ref (argvec[0]));
10492 }
10493 else if (value_type (argvec[0])->code () == TYPE_CODE_ARRAY
10494 && VALUE_LVAL (argvec[0]) == lval_memory)
10495 argvec[0] = value_addr (argvec[0]);
10496
10497 type = ada_check_typedef (value_type (argvec[0]));
10498
10499 /* Ada allows us to implicitly dereference arrays when subscripting
10500 them. So, if this is an array typedef (encoding use for array
10501 access types encoded as fat pointers), strip it now. */
10502 if (type->code () == TYPE_CODE_TYPEDEF)
10503 type = ada_typedef_target_type (type);
10504
10505 if (type->code () == TYPE_CODE_PTR)
10506 {
10507 switch (ada_check_typedef (TYPE_TARGET_TYPE (type))->code ())
10508 {
10509 case TYPE_CODE_FUNC:
10510 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
10511 break;
10512 case TYPE_CODE_ARRAY:
10513 break;
10514 case TYPE_CODE_STRUCT:
10515 if (noside != EVAL_AVOID_SIDE_EFFECTS)
10516 argvec[0] = ada_value_ind (argvec[0]);
10517 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
10518 break;
10519 default:
10520 error (_("cannot subscript or call something of type `%s'"),
10521 ada_type_name (value_type (argvec[0])));
10522 break;
10523 }
10524 }
10525
10526 switch (type->code ())
10527 {
10528 case TYPE_CODE_FUNC:
10529 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10530 {
10531 if (TYPE_TARGET_TYPE (type) == NULL)
10532 error_call_unknown_return_type (NULL);
10533 return allocate_value (TYPE_TARGET_TYPE (type));
10534 }
10535 return call_function_by_hand (argvec[0], NULL,
10536 gdb::make_array_view (argvec + 1,
10537 nargs));
10538 case TYPE_CODE_INTERNAL_FUNCTION:
10539 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10540 /* We don't know anything about what the internal
10541 function might return, but we have to return
10542 something. */
10543 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
10544 not_lval);
10545 else
10546 return call_internal_function (exp->gdbarch, exp->language_defn,
10547 argvec[0], nargs, argvec + 1);
10548
10549 case TYPE_CODE_STRUCT:
10550 {
10551 int arity;
10552
10553 arity = ada_array_arity (type);
10554 type = ada_array_element_type (type, nargs);
10555 if (type == NULL)
10556 error (_("cannot subscript or call a record"));
10557 if (arity != nargs)
10558 error (_("wrong number of subscripts; expecting %d"), arity);
10559 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10560 return value_zero (ada_aligned_type (type), lval_memory);
10561 return
10562 unwrap_value (ada_value_subscript
10563 (argvec[0], nargs, argvec + 1));
10564 }
10565 case TYPE_CODE_ARRAY:
10566 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10567 {
10568 type = ada_array_element_type (type, nargs);
10569 if (type == NULL)
10570 error (_("element type of array unknown"));
10571 else
10572 return value_zero (ada_aligned_type (type), lval_memory);
10573 }
10574 return
10575 unwrap_value (ada_value_subscript
10576 (ada_coerce_to_simple_array (argvec[0]),
10577 nargs, argvec + 1));
10578 case TYPE_CODE_PTR: /* Pointer to array */
10579 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10580 {
10581 type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1);
10582 type = ada_array_element_type (type, nargs);
10583 if (type == NULL)
10584 error (_("element type of array unknown"));
10585 else
10586 return value_zero (ada_aligned_type (type), lval_memory);
10587 }
10588 return
10589 unwrap_value (ada_value_ptr_subscript (argvec[0],
10590 nargs, argvec + 1));
10591
10592 default:
10593 error (_("Attempt to index or call something other than an "
10594 "array or function"));
10595 }
10596
10597 case TERNOP_SLICE:
10598 {
10599 struct value *array = evaluate_subexp (nullptr, exp, pos, noside);
10600 struct value *low_bound_val
10601 = evaluate_subexp (nullptr, exp, pos, noside);
10602 struct value *high_bound_val
10603 = evaluate_subexp (nullptr, exp, pos, noside);
10604 LONGEST low_bound;
10605 LONGEST high_bound;
10606
10607 low_bound_val = coerce_ref (low_bound_val);
10608 high_bound_val = coerce_ref (high_bound_val);
10609 low_bound = value_as_long (low_bound_val);
10610 high_bound = value_as_long (high_bound_val);
10611
10612 if (noside == EVAL_SKIP)
10613 goto nosideret;
10614
10615 /* If this is a reference to an aligner type, then remove all
10616 the aligners. */
10617 if (value_type (array)->code () == TYPE_CODE_REF
10618 && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array))))
10619 TYPE_TARGET_TYPE (value_type (array)) =
10620 ada_aligned_type (TYPE_TARGET_TYPE (value_type (array)));
10621
10622 if (ada_is_any_packed_array_type (value_type (array)))
10623 error (_("cannot slice a packed array"));
10624
10625 /* If this is a reference to an array or an array lvalue,
10626 convert to a pointer. */
10627 if (value_type (array)->code () == TYPE_CODE_REF
10628 || (value_type (array)->code () == TYPE_CODE_ARRAY
10629 && VALUE_LVAL (array) == lval_memory))
10630 array = value_addr (array);
10631
10632 if (noside == EVAL_AVOID_SIDE_EFFECTS
10633 && ada_is_array_descriptor_type (ada_check_typedef
10634 (value_type (array))))
10635 return empty_array (ada_type_of_array (array, 0), low_bound,
10636 high_bound);
10637
10638 array = ada_coerce_to_simple_array_ptr (array);
10639
10640 /* If we have more than one level of pointer indirection,
10641 dereference the value until we get only one level. */
10642 while (value_type (array)->code () == TYPE_CODE_PTR
10643 && (TYPE_TARGET_TYPE (value_type (array))->code ()
10644 == TYPE_CODE_PTR))
10645 array = value_ind (array);
10646
10647 /* Make sure we really do have an array type before going further,
10648 to avoid a SEGV when trying to get the index type or the target
10649 type later down the road if the debug info generated by
10650 the compiler is incorrect or incomplete. */
10651 if (!ada_is_simple_array_type (value_type (array)))
10652 error (_("cannot take slice of non-array"));
10653
10654 if (ada_check_typedef (value_type (array))->code ()
10655 == TYPE_CODE_PTR)
10656 {
10657 struct type *type0 = ada_check_typedef (value_type (array));
10658
10659 if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS)
10660 return empty_array (TYPE_TARGET_TYPE (type0), low_bound, high_bound);
10661 else
10662 {
10663 struct type *arr_type0 =
10664 to_fixed_array_type (TYPE_TARGET_TYPE (type0), NULL, 1);
10665
10666 return ada_value_slice_from_ptr (array, arr_type0,
10667 longest_to_int (low_bound),
10668 longest_to_int (high_bound));
10669 }
10670 }
10671 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10672 return array;
10673 else if (high_bound < low_bound)
10674 return empty_array (value_type (array), low_bound, high_bound);
10675 else
10676 return ada_value_slice (array, longest_to_int (low_bound),
10677 longest_to_int (high_bound));
10678 }
10679
10680 case UNOP_IN_RANGE:
10681 (*pos) += 2;
10682 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10683 type = check_typedef (exp->elts[pc + 1].type);
10684
10685 if (noside == EVAL_SKIP)
10686 goto nosideret;
10687
10688 switch (type->code ())
10689 {
10690 default:
10691 lim_warning (_("Membership test incompletely implemented; "
10692 "always returns true"));
10693 type = language_bool_type (exp->language_defn, exp->gdbarch);
10694 return value_from_longest (type, (LONGEST) 1);
10695
10696 case TYPE_CODE_RANGE:
10697 arg2 = value_from_longest (type,
10698 type->bounds ()->low.const_val ());
10699 arg3 = value_from_longest (type,
10700 type->bounds ()->high.const_val ());
10701 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10702 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10703 type = language_bool_type (exp->language_defn, exp->gdbarch);
10704 return
10705 value_from_longest (type,
10706 (value_less (arg1, arg3)
10707 || value_equal (arg1, arg3))
10708 && (value_less (arg2, arg1)
10709 || value_equal (arg2, arg1)));
10710 }
10711
10712 case BINOP_IN_BOUNDS:
10713 (*pos) += 2;
10714 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10715 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10716
10717 if (noside == EVAL_SKIP)
10718 goto nosideret;
10719
10720 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10721 {
10722 type = language_bool_type (exp->language_defn, exp->gdbarch);
10723 return value_zero (type, not_lval);
10724 }
10725
10726 tem = longest_to_int (exp->elts[pc + 1].longconst);
10727
10728 type = ada_index_type (value_type (arg2), tem, "range");
10729 if (!type)
10730 type = value_type (arg1);
10731
10732 arg3 = value_from_longest (type, ada_array_bound (arg2, tem, 1));
10733 arg2 = value_from_longest (type, ada_array_bound (arg2, tem, 0));
10734
10735 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10736 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10737 type = language_bool_type (exp->language_defn, exp->gdbarch);
10738 return
10739 value_from_longest (type,
10740 (value_less (arg1, arg3)
10741 || value_equal (arg1, arg3))
10742 && (value_less (arg2, arg1)
10743 || value_equal (arg2, arg1)));
10744
10745 case TERNOP_IN_RANGE:
10746 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10747 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10748 arg3 = evaluate_subexp (nullptr, exp, pos, noside);
10749
10750 if (noside == EVAL_SKIP)
10751 goto nosideret;
10752
10753 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10754 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10755 type = language_bool_type (exp->language_defn, exp->gdbarch);
10756 return
10757 value_from_longest (type,
10758 (value_less (arg1, arg3)
10759 || value_equal (arg1, arg3))
10760 && (value_less (arg2, arg1)
10761 || value_equal (arg2, arg1)));
10762
10763 case OP_ATR_FIRST:
10764 case OP_ATR_LAST:
10765 case OP_ATR_LENGTH:
10766 {
10767 struct type *type_arg;
10768
10769 if (exp->elts[*pos].opcode == OP_TYPE)
10770 {
10771 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10772 arg1 = NULL;
10773 type_arg = check_typedef (exp->elts[pc + 2].type);
10774 }
10775 else
10776 {
10777 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10778 type_arg = NULL;
10779 }
10780
10781 if (exp->elts[*pos].opcode != OP_LONG)
10782 error (_("Invalid operand to '%s"), ada_attribute_name (op));
10783 tem = longest_to_int (exp->elts[*pos + 2].longconst);
10784 *pos += 4;
10785
10786 if (noside == EVAL_SKIP)
10787 goto nosideret;
10788 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10789 {
10790 if (type_arg == NULL)
10791 type_arg = value_type (arg1);
10792
10793 if (ada_is_constrained_packed_array_type (type_arg))
10794 type_arg = decode_constrained_packed_array_type (type_arg);
10795
10796 if (!discrete_type_p (type_arg))
10797 {
10798 switch (op)
10799 {
10800 default: /* Should never happen. */
10801 error (_("unexpected attribute encountered"));
10802 case OP_ATR_FIRST:
10803 case OP_ATR_LAST:
10804 type_arg = ada_index_type (type_arg, tem,
10805 ada_attribute_name (op));
10806 break;
10807 case OP_ATR_LENGTH:
10808 type_arg = builtin_type (exp->gdbarch)->builtin_int;
10809 break;
10810 }
10811 }
10812
10813 return value_zero (type_arg, not_lval);
10814 }
10815 else if (type_arg == NULL)
10816 {
10817 arg1 = ada_coerce_ref (arg1);
10818
10819 if (ada_is_constrained_packed_array_type (value_type (arg1)))
10820 arg1 = ada_coerce_to_simple_array (arg1);
10821
10822 if (op == OP_ATR_LENGTH)
10823 type = builtin_type (exp->gdbarch)->builtin_int;
10824 else
10825 {
10826 type = ada_index_type (value_type (arg1), tem,
10827 ada_attribute_name (op));
10828 if (type == NULL)
10829 type = builtin_type (exp->gdbarch)->builtin_int;
10830 }
10831
10832 switch (op)
10833 {
10834 default: /* Should never happen. */
10835 error (_("unexpected attribute encountered"));
10836 case OP_ATR_FIRST:
10837 return value_from_longest
10838 (type, ada_array_bound (arg1, tem, 0));
10839 case OP_ATR_LAST:
10840 return value_from_longest
10841 (type, ada_array_bound (arg1, tem, 1));
10842 case OP_ATR_LENGTH:
10843 return value_from_longest
10844 (type, ada_array_length (arg1, tem));
10845 }
10846 }
10847 else if (discrete_type_p (type_arg))
10848 {
10849 struct type *range_type;
10850 const char *name = ada_type_name (type_arg);
10851
10852 range_type = NULL;
10853 if (name != NULL && type_arg->code () != TYPE_CODE_ENUM)
10854 range_type = to_fixed_range_type (type_arg, NULL);
10855 if (range_type == NULL)
10856 range_type = type_arg;
10857 switch (op)
10858 {
10859 default:
10860 error (_("unexpected attribute encountered"));
10861 case OP_ATR_FIRST:
10862 return value_from_longest
10863 (range_type, ada_discrete_type_low_bound (range_type));
10864 case OP_ATR_LAST:
10865 return value_from_longest
10866 (range_type, ada_discrete_type_high_bound (range_type));
10867 case OP_ATR_LENGTH:
10868 error (_("the 'length attribute applies only to array types"));
10869 }
10870 }
10871 else if (type_arg->code () == TYPE_CODE_FLT)
10872 error (_("unimplemented type attribute"));
10873 else
10874 {
10875 LONGEST low, high;
10876
10877 if (ada_is_constrained_packed_array_type (type_arg))
10878 type_arg = decode_constrained_packed_array_type (type_arg);
10879
10880 if (op == OP_ATR_LENGTH)
10881 type = builtin_type (exp->gdbarch)->builtin_int;
10882 else
10883 {
10884 type = ada_index_type (type_arg, tem, ada_attribute_name (op));
10885 if (type == NULL)
10886 type = builtin_type (exp->gdbarch)->builtin_int;
10887 }
10888
10889 switch (op)
10890 {
10891 default:
10892 error (_("unexpected attribute encountered"));
10893 case OP_ATR_FIRST:
10894 low = ada_array_bound_from_type (type_arg, tem, 0);
10895 return value_from_longest (type, low);
10896 case OP_ATR_LAST:
10897 high = ada_array_bound_from_type (type_arg, tem, 1);
10898 return value_from_longest (type, high);
10899 case OP_ATR_LENGTH:
10900 low = ada_array_bound_from_type (type_arg, tem, 0);
10901 high = ada_array_bound_from_type (type_arg, tem, 1);
10902 return value_from_longest (type, high - low + 1);
10903 }
10904 }
10905 }
10906
10907 case OP_ATR_TAG:
10908 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10909 if (noside == EVAL_SKIP)
10910 goto nosideret;
10911
10912 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10913 return value_zero (ada_tag_type (arg1), not_lval);
10914
10915 return ada_value_tag (arg1);
10916
10917 case OP_ATR_MIN:
10918 case OP_ATR_MAX:
10919 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10920 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10921 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10922 if (noside == EVAL_SKIP)
10923 goto nosideret;
10924 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10925 return value_zero (value_type (arg1), not_lval);
10926 else
10927 {
10928 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10929 return value_binop (arg1, arg2,
10930 op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
10931 }
10932
10933 case OP_ATR_MODULUS:
10934 {
10935 struct type *type_arg = check_typedef (exp->elts[pc + 2].type);
10936
10937 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10938 if (noside == EVAL_SKIP)
10939 goto nosideret;
10940
10941 if (!ada_is_modular_type (type_arg))
10942 error (_("'modulus must be applied to modular type"));
10943
10944 return value_from_longest (TYPE_TARGET_TYPE (type_arg),
10945 ada_modulus (type_arg));
10946 }
10947
10948
10949 case OP_ATR_POS:
10950 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10951 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10952 if (noside == EVAL_SKIP)
10953 goto nosideret;
10954 type = builtin_type (exp->gdbarch)->builtin_int;
10955 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10956 return value_zero (type, not_lval);
10957 else
10958 return value_pos_atr (type, arg1);
10959
10960 case OP_ATR_SIZE:
10961 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10962 type = value_type (arg1);
10963
10964 /* If the argument is a reference, then dereference its type, since
10965 the user is really asking for the size of the actual object,
10966 not the size of the pointer. */
10967 if (type->code () == TYPE_CODE_REF)
10968 type = TYPE_TARGET_TYPE (type);
10969
10970 if (noside == EVAL_SKIP)
10971 goto nosideret;
10972 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10973 return value_zero (builtin_type (exp->gdbarch)->builtin_int, not_lval);
10974 else
10975 return value_from_longest (builtin_type (exp->gdbarch)->builtin_int,
10976 TARGET_CHAR_BIT * TYPE_LENGTH (type));
10977
10978 case OP_ATR_VAL:
10979 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10980 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10981 type = exp->elts[pc + 2].type;
10982 if (noside == EVAL_SKIP)
10983 goto nosideret;
10984 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10985 return value_zero (type, not_lval);
10986 else
10987 return value_val_atr (type, arg1);
10988
10989 case BINOP_EXP:
10990 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10991 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10992 if (noside == EVAL_SKIP)
10993 goto nosideret;
10994 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10995 return value_zero (value_type (arg1), not_lval);
10996 else
10997 {
10998 /* For integer exponentiation operations,
10999 only promote the first argument. */
11000 if (is_integral_type (value_type (arg2)))
11001 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
11002 else
11003 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
11004
11005 return value_binop (arg1, arg2, op);
11006 }
11007
11008 case UNOP_PLUS:
11009 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11010 if (noside == EVAL_SKIP)
11011 goto nosideret;
11012 else
11013 return arg1;
11014
11015 case UNOP_ABS:
11016 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11017 if (noside == EVAL_SKIP)
11018 goto nosideret;
11019 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
11020 if (value_less (arg1, value_zero (value_type (arg1), not_lval)))
11021 return value_neg (arg1);
11022 else
11023 return arg1;
11024
11025 case UNOP_IND:
11026 preeval_pos = *pos;
11027 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11028 if (noside == EVAL_SKIP)
11029 goto nosideret;
11030 type = ada_check_typedef (value_type (arg1));
11031 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11032 {
11033 if (ada_is_array_descriptor_type (type))
11034 /* GDB allows dereferencing GNAT array descriptors. */
11035 {
11036 struct type *arrType = ada_type_of_array (arg1, 0);
11037
11038 if (arrType == NULL)
11039 error (_("Attempt to dereference null array pointer."));
11040 return value_at_lazy (arrType, 0);
11041 }
11042 else if (type->code () == TYPE_CODE_PTR
11043 || type->code () == TYPE_CODE_REF
11044 /* In C you can dereference an array to get the 1st elt. */
11045 || type->code () == TYPE_CODE_ARRAY)
11046 {
11047 /* As mentioned in the OP_VAR_VALUE case, tagged types can
11048 only be determined by inspecting the object's tag.
11049 This means that we need to evaluate completely the
11050 expression in order to get its type. */
11051
11052 if ((type->code () == TYPE_CODE_REF
11053 || type->code () == TYPE_CODE_PTR)
11054 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0))
11055 {
11056 arg1
11057 = evaluate_subexp (nullptr, exp, &preeval_pos, EVAL_NORMAL);
11058 type = value_type (ada_value_ind (arg1));
11059 }
11060 else
11061 {
11062 type = to_static_fixed_type
11063 (ada_aligned_type
11064 (ada_check_typedef (TYPE_TARGET_TYPE (type))));
11065 }
11066 ada_ensure_varsize_limit (type);
11067 return value_zero (type, lval_memory);
11068 }
11069 else if (type->code () == TYPE_CODE_INT)
11070 {
11071 /* GDB allows dereferencing an int. */
11072 if (expect_type == NULL)
11073 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
11074 lval_memory);
11075 else
11076 {
11077 expect_type =
11078 to_static_fixed_type (ada_aligned_type (expect_type));
11079 return value_zero (expect_type, lval_memory);
11080 }
11081 }
11082 else
11083 error (_("Attempt to take contents of a non-pointer value."));
11084 }
11085 arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */
11086 type = ada_check_typedef (value_type (arg1));
11087
11088 if (type->code () == TYPE_CODE_INT)
11089 /* GDB allows dereferencing an int. If we were given
11090 the expect_type, then use that as the target type.
11091 Otherwise, assume that the target type is an int. */
11092 {
11093 if (expect_type != NULL)
11094 return ada_value_ind (value_cast (lookup_pointer_type (expect_type),
11095 arg1));
11096 else
11097 return value_at_lazy (builtin_type (exp->gdbarch)->builtin_int,
11098 (CORE_ADDR) value_as_address (arg1));
11099 }
11100
11101 if (ada_is_array_descriptor_type (type))
11102 /* GDB allows dereferencing GNAT array descriptors. */
11103 return ada_coerce_to_simple_array (arg1);
11104 else
11105 return ada_value_ind (arg1);
11106
11107 case STRUCTOP_STRUCT:
11108 tem = longest_to_int (exp->elts[pc + 1].longconst);
11109 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
11110 preeval_pos = *pos;
11111 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11112 if (noside == EVAL_SKIP)
11113 goto nosideret;
11114 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11115 {
11116 struct type *type1 = value_type (arg1);
11117
11118 if (ada_is_tagged_type (type1, 1))
11119 {
11120 type = ada_lookup_struct_elt_type (type1,
11121 &exp->elts[pc + 2].string,
11122 1, 1);
11123
11124 /* If the field is not found, check if it exists in the
11125 extension of this object's type. This means that we
11126 need to evaluate completely the expression. */
11127
11128 if (type == NULL)
11129 {
11130 arg1
11131 = evaluate_subexp (nullptr, exp, &preeval_pos, EVAL_NORMAL);
11132 arg1 = ada_value_struct_elt (arg1,
11133 &exp->elts[pc + 2].string,
11134 0);
11135 arg1 = unwrap_value (arg1);
11136 type = value_type (ada_to_fixed_value (arg1));
11137 }
11138 }
11139 else
11140 type =
11141 ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1,
11142 0);
11143
11144 return value_zero (ada_aligned_type (type), lval_memory);
11145 }
11146 else
11147 {
11148 arg1 = ada_value_struct_elt (arg1, &exp->elts[pc + 2].string, 0);
11149 arg1 = unwrap_value (arg1);
11150 return ada_to_fixed_value (arg1);
11151 }
11152
11153 case OP_TYPE:
11154 /* The value is not supposed to be used. This is here to make it
11155 easier to accommodate expressions that contain types. */
11156 (*pos) += 2;
11157 if (noside == EVAL_SKIP)
11158 goto nosideret;
11159 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11160 return allocate_value (exp->elts[pc + 1].type);
11161 else
11162 error (_("Attempt to use a type name as an expression"));
11163
11164 case OP_AGGREGATE:
11165 case OP_CHOICES:
11166 case OP_OTHERS:
11167 case OP_DISCRETE_RANGE:
11168 case OP_POSITIONAL:
11169 case OP_NAME:
11170 if (noside == EVAL_NORMAL)
11171 switch (op)
11172 {
11173 case OP_NAME:
11174 error (_("Undefined name, ambiguous name, or renaming used in "
11175 "component association: %s."), &exp->elts[pc+2].string);
11176 case OP_AGGREGATE:
11177 error (_("Aggregates only allowed on the right of an assignment"));
11178 default:
11179 internal_error (__FILE__, __LINE__,
11180 _("aggregate apparently mangled"));
11181 }
11182
11183 ada_forward_operator_length (exp, pc, &oplen, &nargs);
11184 *pos += oplen - 1;
11185 for (tem = 0; tem < nargs; tem += 1)
11186 ada_evaluate_subexp (NULL, exp, pos, noside);
11187 goto nosideret;
11188 }
11189
11190 nosideret:
11191 return eval_skip_value (exp);
11192 }
11193 \f
11194
11195 /* Fixed point */
11196
11197 /* If TYPE encodes an Ada fixed-point type, return the suffix of the
11198 type name that encodes the 'small and 'delta information.
11199 Otherwise, return NULL. */
11200
11201 static const char *
11202 gnat_encoded_fixed_point_type_info (struct type *type)
11203 {
11204 const char *name = ada_type_name (type);
11205 enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : type->code ();
11206
11207 if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL)
11208 {
11209 const char *tail = strstr (name, "___XF_");
11210
11211 if (tail == NULL)
11212 return NULL;
11213 else
11214 return tail + 5;
11215 }
11216 else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type)
11217 return gnat_encoded_fixed_point_type_info (TYPE_TARGET_TYPE (type));
11218 else
11219 return NULL;
11220 }
11221
11222 /* Returns non-zero iff TYPE represents an Ada fixed-point type. */
11223
11224 int
11225 ada_is_gnat_encoded_fixed_point_type (struct type *type)
11226 {
11227 return gnat_encoded_fixed_point_type_info (type) != NULL;
11228 }
11229
11230 /* Return non-zero iff TYPE represents a System.Address type. */
11231
11232 int
11233 ada_is_system_address_type (struct type *type)
11234 {
11235 return (type->name () && strcmp (type->name (), "system__address") == 0);
11236 }
11237
11238 /* Assuming that TYPE is the representation of an Ada fixed-point
11239 type, return the target floating-point type to be used to represent
11240 of this type during internal computation. */
11241
11242 static struct type *
11243 ada_scaling_type (struct type *type)
11244 {
11245 return builtin_type (get_type_arch (type))->builtin_long_double;
11246 }
11247
11248 /* Assuming that TYPE is the representation of an Ada fixed-point
11249 type, return its delta, or NULL if the type is malformed and the
11250 delta cannot be determined. */
11251
11252 struct value *
11253 gnat_encoded_fixed_point_delta (struct type *type)
11254 {
11255 const char *encoding = gnat_encoded_fixed_point_type_info (type);
11256 struct type *scale_type = ada_scaling_type (type);
11257
11258 long long num, den;
11259
11260 if (sscanf (encoding, "_%lld_%lld", &num, &den) < 2)
11261 return nullptr;
11262 else
11263 return value_binop (value_from_longest (scale_type, num),
11264 value_from_longest (scale_type, den), BINOP_DIV);
11265 }
11266
11267 /* Assuming that ada_is_gnat_encoded_fixed_point_type (TYPE), return
11268 the scaling factor ('SMALL value) associated with the type. */
11269
11270 struct value *
11271 gnat_encoded_fixed_point_scaling_factor (struct type *type)
11272 {
11273 const char *encoding = gnat_encoded_fixed_point_type_info (type);
11274 struct type *scale_type = ada_scaling_type (type);
11275
11276 long long num0, den0, num1, den1;
11277 int n;
11278
11279 n = sscanf (encoding, "_%lld_%lld_%lld_%lld",
11280 &num0, &den0, &num1, &den1);
11281
11282 if (n < 2)
11283 return value_from_longest (scale_type, 1);
11284 else if (n == 4)
11285 return value_binop (value_from_longest (scale_type, num1),
11286 value_from_longest (scale_type, den1), BINOP_DIV);
11287 else
11288 return value_binop (value_from_longest (scale_type, num0),
11289 value_from_longest (scale_type, den0), BINOP_DIV);
11290 }
11291
11292 \f
11293
11294 /* Range types */
11295
11296 /* Scan STR beginning at position K for a discriminant name, and
11297 return the value of that discriminant field of DVAL in *PX. If
11298 PNEW_K is not null, put the position of the character beyond the
11299 name scanned in *PNEW_K. Return 1 if successful; return 0 and do
11300 not alter *PX and *PNEW_K if unsuccessful. */
11301
11302 static int
11303 scan_discrim_bound (const char *str, int k, struct value *dval, LONGEST * px,
11304 int *pnew_k)
11305 {
11306 static char *bound_buffer = NULL;
11307 static size_t bound_buffer_len = 0;
11308 const char *pstart, *pend, *bound;
11309 struct value *bound_val;
11310
11311 if (dval == NULL || str == NULL || str[k] == '\0')
11312 return 0;
11313
11314 pstart = str + k;
11315 pend = strstr (pstart, "__");
11316 if (pend == NULL)
11317 {
11318 bound = pstart;
11319 k += strlen (bound);
11320 }
11321 else
11322 {
11323 int len = pend - pstart;
11324
11325 /* Strip __ and beyond. */
11326 GROW_VECT (bound_buffer, bound_buffer_len, len + 1);
11327 strncpy (bound_buffer, pstart, len);
11328 bound_buffer[len] = '\0';
11329
11330 bound = bound_buffer;
11331 k = pend - str;
11332 }
11333
11334 bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval));
11335 if (bound_val == NULL)
11336 return 0;
11337
11338 *px = value_as_long (bound_val);
11339 if (pnew_k != NULL)
11340 *pnew_k = k;
11341 return 1;
11342 }
11343
11344 /* Value of variable named NAME in the current environment. If
11345 no such variable found, then if ERR_MSG is null, returns 0, and
11346 otherwise causes an error with message ERR_MSG. */
11347
11348 static struct value *
11349 get_var_value (const char *name, const char *err_msg)
11350 {
11351 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
11352
11353 std::vector<struct block_symbol> syms;
11354 int nsyms = ada_lookup_symbol_list_worker (lookup_name,
11355 get_selected_block (0),
11356 VAR_DOMAIN, &syms, 1);
11357
11358 if (nsyms != 1)
11359 {
11360 if (err_msg == NULL)
11361 return 0;
11362 else
11363 error (("%s"), err_msg);
11364 }
11365
11366 return value_of_variable (syms[0].symbol, syms[0].block);
11367 }
11368
11369 /* Value of integer variable named NAME in the current environment.
11370 If no such variable is found, returns false. Otherwise, sets VALUE
11371 to the variable's value and returns true. */
11372
11373 bool
11374 get_int_var_value (const char *name, LONGEST &value)
11375 {
11376 struct value *var_val = get_var_value (name, 0);
11377
11378 if (var_val == 0)
11379 return false;
11380
11381 value = value_as_long (var_val);
11382 return true;
11383 }
11384
11385
11386 /* Return a range type whose base type is that of the range type named
11387 NAME in the current environment, and whose bounds are calculated
11388 from NAME according to the GNAT range encoding conventions.
11389 Extract discriminant values, if needed, from DVAL. ORIG_TYPE is the
11390 corresponding range type from debug information; fall back to using it
11391 if symbol lookup fails. If a new type must be created, allocate it
11392 like ORIG_TYPE was. The bounds information, in general, is encoded
11393 in NAME, the base type given in the named range type. */
11394
11395 static struct type *
11396 to_fixed_range_type (struct type *raw_type, struct value *dval)
11397 {
11398 const char *name;
11399 struct type *base_type;
11400 const char *subtype_info;
11401
11402 gdb_assert (raw_type != NULL);
11403 gdb_assert (raw_type->name () != NULL);
11404
11405 if (raw_type->code () == TYPE_CODE_RANGE)
11406 base_type = TYPE_TARGET_TYPE (raw_type);
11407 else
11408 base_type = raw_type;
11409
11410 name = raw_type->name ();
11411 subtype_info = strstr (name, "___XD");
11412 if (subtype_info == NULL)
11413 {
11414 LONGEST L = ada_discrete_type_low_bound (raw_type);
11415 LONGEST U = ada_discrete_type_high_bound (raw_type);
11416
11417 if (L < INT_MIN || U > INT_MAX)
11418 return raw_type;
11419 else
11420 return create_static_range_type (alloc_type_copy (raw_type), raw_type,
11421 L, U);
11422 }
11423 else
11424 {
11425 static char *name_buf = NULL;
11426 static size_t name_len = 0;
11427 int prefix_len = subtype_info - name;
11428 LONGEST L, U;
11429 struct type *type;
11430 const char *bounds_str;
11431 int n;
11432
11433 GROW_VECT (name_buf, name_len, prefix_len + 5);
11434 strncpy (name_buf, name, prefix_len);
11435 name_buf[prefix_len] = '\0';
11436
11437 subtype_info += 5;
11438 bounds_str = strchr (subtype_info, '_');
11439 n = 1;
11440
11441 if (*subtype_info == 'L')
11442 {
11443 if (!ada_scan_number (bounds_str, n, &L, &n)
11444 && !scan_discrim_bound (bounds_str, n, dval, &L, &n))
11445 return raw_type;
11446 if (bounds_str[n] == '_')
11447 n += 2;
11448 else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */
11449 n += 1;
11450 subtype_info += 1;
11451 }
11452 else
11453 {
11454 strcpy (name_buf + prefix_len, "___L");
11455 if (!get_int_var_value (name_buf, L))
11456 {
11457 lim_warning (_("Unknown lower bound, using 1."));
11458 L = 1;
11459 }
11460 }
11461
11462 if (*subtype_info == 'U')
11463 {
11464 if (!ada_scan_number (bounds_str, n, &U, &n)
11465 && !scan_discrim_bound (bounds_str, n, dval, &U, &n))
11466 return raw_type;
11467 }
11468 else
11469 {
11470 strcpy (name_buf + prefix_len, "___U");
11471 if (!get_int_var_value (name_buf, U))
11472 {
11473 lim_warning (_("Unknown upper bound, using %ld."), (long) L);
11474 U = L;
11475 }
11476 }
11477
11478 type = create_static_range_type (alloc_type_copy (raw_type),
11479 base_type, L, U);
11480 /* create_static_range_type alters the resulting type's length
11481 to match the size of the base_type, which is not what we want.
11482 Set it back to the original range type's length. */
11483 TYPE_LENGTH (type) = TYPE_LENGTH (raw_type);
11484 type->set_name (name);
11485 return type;
11486 }
11487 }
11488
11489 /* True iff NAME is the name of a range type. */
11490
11491 int
11492 ada_is_range_type_name (const char *name)
11493 {
11494 return (name != NULL && strstr (name, "___XD"));
11495 }
11496 \f
11497
11498 /* Modular types */
11499
11500 /* True iff TYPE is an Ada modular type. */
11501
11502 int
11503 ada_is_modular_type (struct type *type)
11504 {
11505 struct type *subranged_type = get_base_type (type);
11506
11507 return (subranged_type != NULL && type->code () == TYPE_CODE_RANGE
11508 && subranged_type->code () == TYPE_CODE_INT
11509 && subranged_type->is_unsigned ());
11510 }
11511
11512 /* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */
11513
11514 ULONGEST
11515 ada_modulus (struct type *type)
11516 {
11517 const dynamic_prop &high = type->bounds ()->high;
11518
11519 if (high.kind () == PROP_CONST)
11520 return (ULONGEST) high.const_val () + 1;
11521
11522 /* If TYPE is unresolved, the high bound might be a location list. Return
11523 0, for lack of a better value to return. */
11524 return 0;
11525 }
11526 \f
11527
11528 /* Ada exception catchpoint support:
11529 ---------------------------------
11530
11531 We support 3 kinds of exception catchpoints:
11532 . catchpoints on Ada exceptions
11533 . catchpoints on unhandled Ada exceptions
11534 . catchpoints on failed assertions
11535
11536 Exceptions raised during failed assertions, or unhandled exceptions
11537 could perfectly be caught with the general catchpoint on Ada exceptions.
11538 However, we can easily differentiate these two special cases, and having
11539 the option to distinguish these two cases from the rest can be useful
11540 to zero-in on certain situations.
11541
11542 Exception catchpoints are a specialized form of breakpoint,
11543 since they rely on inserting breakpoints inside known routines
11544 of the GNAT runtime. The implementation therefore uses a standard
11545 breakpoint structure of the BP_BREAKPOINT type, but with its own set
11546 of breakpoint_ops.
11547
11548 Support in the runtime for exception catchpoints have been changed
11549 a few times already, and these changes affect the implementation
11550 of these catchpoints. In order to be able to support several
11551 variants of the runtime, we use a sniffer that will determine
11552 the runtime variant used by the program being debugged. */
11553
11554 /* Ada's standard exceptions.
11555
11556 The Ada 83 standard also defined Numeric_Error. But there so many
11557 situations where it was unclear from the Ada 83 Reference Manual
11558 (RM) whether Constraint_Error or Numeric_Error should be raised,
11559 that the ARG (Ada Rapporteur Group) eventually issued a Binding
11560 Interpretation saying that anytime the RM says that Numeric_Error
11561 should be raised, the implementation may raise Constraint_Error.
11562 Ada 95 went one step further and pretty much removed Numeric_Error
11563 from the list of standard exceptions (it made it a renaming of
11564 Constraint_Error, to help preserve compatibility when compiling
11565 an Ada83 compiler). As such, we do not include Numeric_Error from
11566 this list of standard exceptions. */
11567
11568 static const char * const standard_exc[] = {
11569 "constraint_error",
11570 "program_error",
11571 "storage_error",
11572 "tasking_error"
11573 };
11574
11575 typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void);
11576
11577 /* A structure that describes how to support exception catchpoints
11578 for a given executable. */
11579
11580 struct exception_support_info
11581 {
11582 /* The name of the symbol to break on in order to insert
11583 a catchpoint on exceptions. */
11584 const char *catch_exception_sym;
11585
11586 /* The name of the symbol to break on in order to insert
11587 a catchpoint on unhandled exceptions. */
11588 const char *catch_exception_unhandled_sym;
11589
11590 /* The name of the symbol to break on in order to insert
11591 a catchpoint on failed assertions. */
11592 const char *catch_assert_sym;
11593
11594 /* The name of the symbol to break on in order to insert
11595 a catchpoint on exception handling. */
11596 const char *catch_handlers_sym;
11597
11598 /* Assuming that the inferior just triggered an unhandled exception
11599 catchpoint, this function is responsible for returning the address
11600 in inferior memory where the name of that exception is stored.
11601 Return zero if the address could not be computed. */
11602 ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr;
11603 };
11604
11605 static CORE_ADDR ada_unhandled_exception_name_addr (void);
11606 static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void);
11607
11608 /* The following exception support info structure describes how to
11609 implement exception catchpoints with the latest version of the
11610 Ada runtime (as of 2019-08-??). */
11611
11612 static const struct exception_support_info default_exception_support_info =
11613 {
11614 "__gnat_debug_raise_exception", /* catch_exception_sym */
11615 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11616 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
11617 "__gnat_begin_handler_v1", /* catch_handlers_sym */
11618 ada_unhandled_exception_name_addr
11619 };
11620
11621 /* The following exception support info structure describes how to
11622 implement exception catchpoints with an earlier version of the
11623 Ada runtime (as of 2007-03-06) using v0 of the EH ABI. */
11624
11625 static const struct exception_support_info exception_support_info_v0 =
11626 {
11627 "__gnat_debug_raise_exception", /* catch_exception_sym */
11628 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11629 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
11630 "__gnat_begin_handler", /* catch_handlers_sym */
11631 ada_unhandled_exception_name_addr
11632 };
11633
11634 /* The following exception support info structure describes how to
11635 implement exception catchpoints with a slightly older version
11636 of the Ada runtime. */
11637
11638 static const struct exception_support_info exception_support_info_fallback =
11639 {
11640 "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */
11641 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11642 "system__assertions__raise_assert_failure", /* catch_assert_sym */
11643 "__gnat_begin_handler", /* catch_handlers_sym */
11644 ada_unhandled_exception_name_addr_from_raise
11645 };
11646
11647 /* Return nonzero if we can detect the exception support routines
11648 described in EINFO.
11649
11650 This function errors out if an abnormal situation is detected
11651 (for instance, if we find the exception support routines, but
11652 that support is found to be incomplete). */
11653
11654 static int
11655 ada_has_this_exception_support (const struct exception_support_info *einfo)
11656 {
11657 struct symbol *sym;
11658
11659 /* The symbol we're looking up is provided by a unit in the GNAT runtime
11660 that should be compiled with debugging information. As a result, we
11661 expect to find that symbol in the symtabs. */
11662
11663 sym = standard_lookup (einfo->catch_exception_sym, NULL, VAR_DOMAIN);
11664 if (sym == NULL)
11665 {
11666 /* Perhaps we did not find our symbol because the Ada runtime was
11667 compiled without debugging info, or simply stripped of it.
11668 It happens on some GNU/Linux distributions for instance, where
11669 users have to install a separate debug package in order to get
11670 the runtime's debugging info. In that situation, let the user
11671 know why we cannot insert an Ada exception catchpoint.
11672
11673 Note: Just for the purpose of inserting our Ada exception
11674 catchpoint, we could rely purely on the associated minimal symbol.
11675 But we would be operating in degraded mode anyway, since we are
11676 still lacking the debugging info needed later on to extract
11677 the name of the exception being raised (this name is printed in
11678 the catchpoint message, and is also used when trying to catch
11679 a specific exception). We do not handle this case for now. */
11680 struct bound_minimal_symbol msym
11681 = lookup_minimal_symbol (einfo->catch_exception_sym, NULL, NULL);
11682
11683 if (msym.minsym && MSYMBOL_TYPE (msym.minsym) != mst_solib_trampoline)
11684 error (_("Your Ada runtime appears to be missing some debugging "
11685 "information.\nCannot insert Ada exception catchpoint "
11686 "in this configuration."));
11687
11688 return 0;
11689 }
11690
11691 /* Make sure that the symbol we found corresponds to a function. */
11692
11693 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
11694 {
11695 error (_("Symbol \"%s\" is not a function (class = %d)"),
11696 sym->linkage_name (), SYMBOL_CLASS (sym));
11697 return 0;
11698 }
11699
11700 sym = standard_lookup (einfo->catch_handlers_sym, NULL, VAR_DOMAIN);
11701 if (sym == NULL)
11702 {
11703 struct bound_minimal_symbol msym
11704 = lookup_minimal_symbol (einfo->catch_handlers_sym, NULL, NULL);
11705
11706 if (msym.minsym && MSYMBOL_TYPE (msym.minsym) != mst_solib_trampoline)
11707 error (_("Your Ada runtime appears to be missing some debugging "
11708 "information.\nCannot insert Ada exception catchpoint "
11709 "in this configuration."));
11710
11711 return 0;
11712 }
11713
11714 /* Make sure that the symbol we found corresponds to a function. */
11715
11716 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
11717 {
11718 error (_("Symbol \"%s\" is not a function (class = %d)"),
11719 sym->linkage_name (), SYMBOL_CLASS (sym));
11720 return 0;
11721 }
11722
11723 return 1;
11724 }
11725
11726 /* Inspect the Ada runtime and determine which exception info structure
11727 should be used to provide support for exception catchpoints.
11728
11729 This function will always set the per-inferior exception_info,
11730 or raise an error. */
11731
11732 static void
11733 ada_exception_support_info_sniffer (void)
11734 {
11735 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11736
11737 /* If the exception info is already known, then no need to recompute it. */
11738 if (data->exception_info != NULL)
11739 return;
11740
11741 /* Check the latest (default) exception support info. */
11742 if (ada_has_this_exception_support (&default_exception_support_info))
11743 {
11744 data->exception_info = &default_exception_support_info;
11745 return;
11746 }
11747
11748 /* Try the v0 exception suport info. */
11749 if (ada_has_this_exception_support (&exception_support_info_v0))
11750 {
11751 data->exception_info = &exception_support_info_v0;
11752 return;
11753 }
11754
11755 /* Try our fallback exception suport info. */
11756 if (ada_has_this_exception_support (&exception_support_info_fallback))
11757 {
11758 data->exception_info = &exception_support_info_fallback;
11759 return;
11760 }
11761
11762 /* Sometimes, it is normal for us to not be able to find the routine
11763 we are looking for. This happens when the program is linked with
11764 the shared version of the GNAT runtime, and the program has not been
11765 started yet. Inform the user of these two possible causes if
11766 applicable. */
11767
11768 if (ada_update_initial_language (language_unknown) != language_ada)
11769 error (_("Unable to insert catchpoint. Is this an Ada main program?"));
11770
11771 /* If the symbol does not exist, then check that the program is
11772 already started, to make sure that shared libraries have been
11773 loaded. If it is not started, this may mean that the symbol is
11774 in a shared library. */
11775
11776 if (inferior_ptid.pid () == 0)
11777 error (_("Unable to insert catchpoint. Try to start the program first."));
11778
11779 /* At this point, we know that we are debugging an Ada program and
11780 that the inferior has been started, but we still are not able to
11781 find the run-time symbols. That can mean that we are in
11782 configurable run time mode, or that a-except as been optimized
11783 out by the linker... In any case, at this point it is not worth
11784 supporting this feature. */
11785
11786 error (_("Cannot insert Ada exception catchpoints in this configuration."));
11787 }
11788
11789 /* True iff FRAME is very likely to be that of a function that is
11790 part of the runtime system. This is all very heuristic, but is
11791 intended to be used as advice as to what frames are uninteresting
11792 to most users. */
11793
11794 static int
11795 is_known_support_routine (struct frame_info *frame)
11796 {
11797 enum language func_lang;
11798 int i;
11799 const char *fullname;
11800
11801 /* If this code does not have any debugging information (no symtab),
11802 This cannot be any user code. */
11803
11804 symtab_and_line sal = find_frame_sal (frame);
11805 if (sal.symtab == NULL)
11806 return 1;
11807
11808 /* If there is a symtab, but the associated source file cannot be
11809 located, then assume this is not user code: Selecting a frame
11810 for which we cannot display the code would not be very helpful
11811 for the user. This should also take care of case such as VxWorks
11812 where the kernel has some debugging info provided for a few units. */
11813
11814 fullname = symtab_to_fullname (sal.symtab);
11815 if (access (fullname, R_OK) != 0)
11816 return 1;
11817
11818 /* Check the unit filename against the Ada runtime file naming.
11819 We also check the name of the objfile against the name of some
11820 known system libraries that sometimes come with debugging info
11821 too. */
11822
11823 for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1)
11824 {
11825 re_comp (known_runtime_file_name_patterns[i]);
11826 if (re_exec (lbasename (sal.symtab->filename)))
11827 return 1;
11828 if (SYMTAB_OBJFILE (sal.symtab) != NULL
11829 && re_exec (objfile_name (SYMTAB_OBJFILE (sal.symtab))))
11830 return 1;
11831 }
11832
11833 /* Check whether the function is a GNAT-generated entity. */
11834
11835 gdb::unique_xmalloc_ptr<char> func_name
11836 = find_frame_funname (frame, &func_lang, NULL);
11837 if (func_name == NULL)
11838 return 1;
11839
11840 for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1)
11841 {
11842 re_comp (known_auxiliary_function_name_patterns[i]);
11843 if (re_exec (func_name.get ()))
11844 return 1;
11845 }
11846
11847 return 0;
11848 }
11849
11850 /* Find the first frame that contains debugging information and that is not
11851 part of the Ada run-time, starting from FI and moving upward. */
11852
11853 void
11854 ada_find_printable_frame (struct frame_info *fi)
11855 {
11856 for (; fi != NULL; fi = get_prev_frame (fi))
11857 {
11858 if (!is_known_support_routine (fi))
11859 {
11860 select_frame (fi);
11861 break;
11862 }
11863 }
11864
11865 }
11866
11867 /* Assuming that the inferior just triggered an unhandled exception
11868 catchpoint, return the address in inferior memory where the name
11869 of the exception is stored.
11870
11871 Return zero if the address could not be computed. */
11872
11873 static CORE_ADDR
11874 ada_unhandled_exception_name_addr (void)
11875 {
11876 return parse_and_eval_address ("e.full_name");
11877 }
11878
11879 /* Same as ada_unhandled_exception_name_addr, except that this function
11880 should be used when the inferior uses an older version of the runtime,
11881 where the exception name needs to be extracted from a specific frame
11882 several frames up in the callstack. */
11883
11884 static CORE_ADDR
11885 ada_unhandled_exception_name_addr_from_raise (void)
11886 {
11887 int frame_level;
11888 struct frame_info *fi;
11889 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11890
11891 /* To determine the name of this exception, we need to select
11892 the frame corresponding to RAISE_SYM_NAME. This frame is
11893 at least 3 levels up, so we simply skip the first 3 frames
11894 without checking the name of their associated function. */
11895 fi = get_current_frame ();
11896 for (frame_level = 0; frame_level < 3; frame_level += 1)
11897 if (fi != NULL)
11898 fi = get_prev_frame (fi);
11899
11900 while (fi != NULL)
11901 {
11902 enum language func_lang;
11903
11904 gdb::unique_xmalloc_ptr<char> func_name
11905 = find_frame_funname (fi, &func_lang, NULL);
11906 if (func_name != NULL)
11907 {
11908 if (strcmp (func_name.get (),
11909 data->exception_info->catch_exception_sym) == 0)
11910 break; /* We found the frame we were looking for... */
11911 }
11912 fi = get_prev_frame (fi);
11913 }
11914
11915 if (fi == NULL)
11916 return 0;
11917
11918 select_frame (fi);
11919 return parse_and_eval_address ("id.full_name");
11920 }
11921
11922 /* Assuming the inferior just triggered an Ada exception catchpoint
11923 (of any type), return the address in inferior memory where the name
11924 of the exception is stored, if applicable.
11925
11926 Assumes the selected frame is the current frame.
11927
11928 Return zero if the address could not be computed, or if not relevant. */
11929
11930 static CORE_ADDR
11931 ada_exception_name_addr_1 (enum ada_exception_catchpoint_kind ex,
11932 struct breakpoint *b)
11933 {
11934 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11935
11936 switch (ex)
11937 {
11938 case ada_catch_exception:
11939 return (parse_and_eval_address ("e.full_name"));
11940 break;
11941
11942 case ada_catch_exception_unhandled:
11943 return data->exception_info->unhandled_exception_name_addr ();
11944 break;
11945
11946 case ada_catch_handlers:
11947 return 0; /* The runtimes does not provide access to the exception
11948 name. */
11949 break;
11950
11951 case ada_catch_assert:
11952 return 0; /* Exception name is not relevant in this case. */
11953 break;
11954
11955 default:
11956 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
11957 break;
11958 }
11959
11960 return 0; /* Should never be reached. */
11961 }
11962
11963 /* Assuming the inferior is stopped at an exception catchpoint,
11964 return the message which was associated to the exception, if
11965 available. Return NULL if the message could not be retrieved.
11966
11967 Note: The exception message can be associated to an exception
11968 either through the use of the Raise_Exception function, or
11969 more simply (Ada 2005 and later), via:
11970
11971 raise Exception_Name with "exception message";
11972
11973 */
11974
11975 static gdb::unique_xmalloc_ptr<char>
11976 ada_exception_message_1 (void)
11977 {
11978 struct value *e_msg_val;
11979 int e_msg_len;
11980
11981 /* For runtimes that support this feature, the exception message
11982 is passed as an unbounded string argument called "message". */
11983 e_msg_val = parse_and_eval ("message");
11984 if (e_msg_val == NULL)
11985 return NULL; /* Exception message not supported. */
11986
11987 e_msg_val = ada_coerce_to_simple_array (e_msg_val);
11988 gdb_assert (e_msg_val != NULL);
11989 e_msg_len = TYPE_LENGTH (value_type (e_msg_val));
11990
11991 /* If the message string is empty, then treat it as if there was
11992 no exception message. */
11993 if (e_msg_len <= 0)
11994 return NULL;
11995
11996 gdb::unique_xmalloc_ptr<char> e_msg ((char *) xmalloc (e_msg_len + 1));
11997 read_memory (value_address (e_msg_val), (gdb_byte *) e_msg.get (),
11998 e_msg_len);
11999 e_msg.get ()[e_msg_len] = '\0';
12000
12001 return e_msg;
12002 }
12003
12004 /* Same as ada_exception_message_1, except that all exceptions are
12005 contained here (returning NULL instead). */
12006
12007 static gdb::unique_xmalloc_ptr<char>
12008 ada_exception_message (void)
12009 {
12010 gdb::unique_xmalloc_ptr<char> e_msg;
12011
12012 try
12013 {
12014 e_msg = ada_exception_message_1 ();
12015 }
12016 catch (const gdb_exception_error &e)
12017 {
12018 e_msg.reset (nullptr);
12019 }
12020
12021 return e_msg;
12022 }
12023
12024 /* Same as ada_exception_name_addr_1, except that it intercepts and contains
12025 any error that ada_exception_name_addr_1 might cause to be thrown.
12026 When an error is intercepted, a warning with the error message is printed,
12027 and zero is returned. */
12028
12029 static CORE_ADDR
12030 ada_exception_name_addr (enum ada_exception_catchpoint_kind ex,
12031 struct breakpoint *b)
12032 {
12033 CORE_ADDR result = 0;
12034
12035 try
12036 {
12037 result = ada_exception_name_addr_1 (ex, b);
12038 }
12039
12040 catch (const gdb_exception_error &e)
12041 {
12042 warning (_("failed to get exception name: %s"), e.what ());
12043 return 0;
12044 }
12045
12046 return result;
12047 }
12048
12049 static std::string ada_exception_catchpoint_cond_string
12050 (const char *excep_string,
12051 enum ada_exception_catchpoint_kind ex);
12052
12053 /* Ada catchpoints.
12054
12055 In the case of catchpoints on Ada exceptions, the catchpoint will
12056 stop the target on every exception the program throws. When a user
12057 specifies the name of a specific exception, we translate this
12058 request into a condition expression (in text form), and then parse
12059 it into an expression stored in each of the catchpoint's locations.
12060 We then use this condition to check whether the exception that was
12061 raised is the one the user is interested in. If not, then the
12062 target is resumed again. We store the name of the requested
12063 exception, in order to be able to re-set the condition expression
12064 when symbols change. */
12065
12066 /* An instance of this type is used to represent an Ada catchpoint
12067 breakpoint location. */
12068
12069 class ada_catchpoint_location : public bp_location
12070 {
12071 public:
12072 ada_catchpoint_location (breakpoint *owner)
12073 : bp_location (owner, bp_loc_software_breakpoint)
12074 {}
12075
12076 /* The condition that checks whether the exception that was raised
12077 is the specific exception the user specified on catchpoint
12078 creation. */
12079 expression_up excep_cond_expr;
12080 };
12081
12082 /* An instance of this type is used to represent an Ada catchpoint. */
12083
12084 struct ada_catchpoint : public breakpoint
12085 {
12086 explicit ada_catchpoint (enum ada_exception_catchpoint_kind kind)
12087 : m_kind (kind)
12088 {
12089 }
12090
12091 /* The name of the specific exception the user specified. */
12092 std::string excep_string;
12093
12094 /* What kind of catchpoint this is. */
12095 enum ada_exception_catchpoint_kind m_kind;
12096 };
12097
12098 /* Parse the exception condition string in the context of each of the
12099 catchpoint's locations, and store them for later evaluation. */
12100
12101 static void
12102 create_excep_cond_exprs (struct ada_catchpoint *c,
12103 enum ada_exception_catchpoint_kind ex)
12104 {
12105 struct bp_location *bl;
12106
12107 /* Nothing to do if there's no specific exception to catch. */
12108 if (c->excep_string.empty ())
12109 return;
12110
12111 /* Same if there are no locations... */
12112 if (c->loc == NULL)
12113 return;
12114
12115 /* Compute the condition expression in text form, from the specific
12116 expection we want to catch. */
12117 std::string cond_string
12118 = ada_exception_catchpoint_cond_string (c->excep_string.c_str (), ex);
12119
12120 /* Iterate over all the catchpoint's locations, and parse an
12121 expression for each. */
12122 for (bl = c->loc; bl != NULL; bl = bl->next)
12123 {
12124 struct ada_catchpoint_location *ada_loc
12125 = (struct ada_catchpoint_location *) bl;
12126 expression_up exp;
12127
12128 if (!bl->shlib_disabled)
12129 {
12130 const char *s;
12131
12132 s = cond_string.c_str ();
12133 try
12134 {
12135 exp = parse_exp_1 (&s, bl->address,
12136 block_for_pc (bl->address),
12137 0);
12138 }
12139 catch (const gdb_exception_error &e)
12140 {
12141 warning (_("failed to reevaluate internal exception condition "
12142 "for catchpoint %d: %s"),
12143 c->number, e.what ());
12144 }
12145 }
12146
12147 ada_loc->excep_cond_expr = std::move (exp);
12148 }
12149 }
12150
12151 /* Implement the ALLOCATE_LOCATION method in the breakpoint_ops
12152 structure for all exception catchpoint kinds. */
12153
12154 static struct bp_location *
12155 allocate_location_exception (struct breakpoint *self)
12156 {
12157 return new ada_catchpoint_location (self);
12158 }
12159
12160 /* Implement the RE_SET method in the breakpoint_ops structure for all
12161 exception catchpoint kinds. */
12162
12163 static void
12164 re_set_exception (struct breakpoint *b)
12165 {
12166 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12167
12168 /* Call the base class's method. This updates the catchpoint's
12169 locations. */
12170 bkpt_breakpoint_ops.re_set (b);
12171
12172 /* Reparse the exception conditional expressions. One for each
12173 location. */
12174 create_excep_cond_exprs (c, c->m_kind);
12175 }
12176
12177 /* Returns true if we should stop for this breakpoint hit. If the
12178 user specified a specific exception, we only want to cause a stop
12179 if the program thrown that exception. */
12180
12181 static int
12182 should_stop_exception (const struct bp_location *bl)
12183 {
12184 struct ada_catchpoint *c = (struct ada_catchpoint *) bl->owner;
12185 const struct ada_catchpoint_location *ada_loc
12186 = (const struct ada_catchpoint_location *) bl;
12187 int stop;
12188
12189 struct internalvar *var = lookup_internalvar ("_ada_exception");
12190 if (c->m_kind == ada_catch_assert)
12191 clear_internalvar (var);
12192 else
12193 {
12194 try
12195 {
12196 const char *expr;
12197
12198 if (c->m_kind == ada_catch_handlers)
12199 expr = ("GNAT_GCC_exception_Access(gcc_exception)"
12200 ".all.occurrence.id");
12201 else
12202 expr = "e";
12203
12204 struct value *exc = parse_and_eval (expr);
12205 set_internalvar (var, exc);
12206 }
12207 catch (const gdb_exception_error &ex)
12208 {
12209 clear_internalvar (var);
12210 }
12211 }
12212
12213 /* With no specific exception, should always stop. */
12214 if (c->excep_string.empty ())
12215 return 1;
12216
12217 if (ada_loc->excep_cond_expr == NULL)
12218 {
12219 /* We will have a NULL expression if back when we were creating
12220 the expressions, this location's had failed to parse. */
12221 return 1;
12222 }
12223
12224 stop = 1;
12225 try
12226 {
12227 struct value *mark;
12228
12229 mark = value_mark ();
12230 stop = value_true (evaluate_expression (ada_loc->excep_cond_expr.get ()));
12231 value_free_to_mark (mark);
12232 }
12233 catch (const gdb_exception &ex)
12234 {
12235 exception_fprintf (gdb_stderr, ex,
12236 _("Error in testing exception condition:\n"));
12237 }
12238
12239 return stop;
12240 }
12241
12242 /* Implement the CHECK_STATUS method in the breakpoint_ops structure
12243 for all exception catchpoint kinds. */
12244
12245 static void
12246 check_status_exception (bpstat bs)
12247 {
12248 bs->stop = should_stop_exception (bs->bp_location_at);
12249 }
12250
12251 /* Implement the PRINT_IT method in the breakpoint_ops structure
12252 for all exception catchpoint kinds. */
12253
12254 static enum print_stop_action
12255 print_it_exception (bpstat bs)
12256 {
12257 struct ui_out *uiout = current_uiout;
12258 struct breakpoint *b = bs->breakpoint_at;
12259
12260 annotate_catchpoint (b->number);
12261
12262 if (uiout->is_mi_like_p ())
12263 {
12264 uiout->field_string ("reason",
12265 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
12266 uiout->field_string ("disp", bpdisp_text (b->disposition));
12267 }
12268
12269 uiout->text (b->disposition == disp_del
12270 ? "\nTemporary catchpoint " : "\nCatchpoint ");
12271 uiout->field_signed ("bkptno", b->number);
12272 uiout->text (", ");
12273
12274 /* ada_exception_name_addr relies on the selected frame being the
12275 current frame. Need to do this here because this function may be
12276 called more than once when printing a stop, and below, we'll
12277 select the first frame past the Ada run-time (see
12278 ada_find_printable_frame). */
12279 select_frame (get_current_frame ());
12280
12281 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12282 switch (c->m_kind)
12283 {
12284 case ada_catch_exception:
12285 case ada_catch_exception_unhandled:
12286 case ada_catch_handlers:
12287 {
12288 const CORE_ADDR addr = ada_exception_name_addr (c->m_kind, b);
12289 char exception_name[256];
12290
12291 if (addr != 0)
12292 {
12293 read_memory (addr, (gdb_byte *) exception_name,
12294 sizeof (exception_name) - 1);
12295 exception_name [sizeof (exception_name) - 1] = '\0';
12296 }
12297 else
12298 {
12299 /* For some reason, we were unable to read the exception
12300 name. This could happen if the Runtime was compiled
12301 without debugging info, for instance. In that case,
12302 just replace the exception name by the generic string
12303 "exception" - it will read as "an exception" in the
12304 notification we are about to print. */
12305 memcpy (exception_name, "exception", sizeof ("exception"));
12306 }
12307 /* In the case of unhandled exception breakpoints, we print
12308 the exception name as "unhandled EXCEPTION_NAME", to make
12309 it clearer to the user which kind of catchpoint just got
12310 hit. We used ui_out_text to make sure that this extra
12311 info does not pollute the exception name in the MI case. */
12312 if (c->m_kind == ada_catch_exception_unhandled)
12313 uiout->text ("unhandled ");
12314 uiout->field_string ("exception-name", exception_name);
12315 }
12316 break;
12317 case ada_catch_assert:
12318 /* In this case, the name of the exception is not really
12319 important. Just print "failed assertion" to make it clearer
12320 that his program just hit an assertion-failure catchpoint.
12321 We used ui_out_text because this info does not belong in
12322 the MI output. */
12323 uiout->text ("failed assertion");
12324 break;
12325 }
12326
12327 gdb::unique_xmalloc_ptr<char> exception_message = ada_exception_message ();
12328 if (exception_message != NULL)
12329 {
12330 uiout->text (" (");
12331 uiout->field_string ("exception-message", exception_message.get ());
12332 uiout->text (")");
12333 }
12334
12335 uiout->text (" at ");
12336 ada_find_printable_frame (get_current_frame ());
12337
12338 return PRINT_SRC_AND_LOC;
12339 }
12340
12341 /* Implement the PRINT_ONE method in the breakpoint_ops structure
12342 for all exception catchpoint kinds. */
12343
12344 static void
12345 print_one_exception (struct breakpoint *b, struct bp_location **last_loc)
12346 {
12347 struct ui_out *uiout = current_uiout;
12348 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12349 struct value_print_options opts;
12350
12351 get_user_print_options (&opts);
12352
12353 if (opts.addressprint)
12354 uiout->field_skip ("addr");
12355
12356 annotate_field (5);
12357 switch (c->m_kind)
12358 {
12359 case ada_catch_exception:
12360 if (!c->excep_string.empty ())
12361 {
12362 std::string msg = string_printf (_("`%s' Ada exception"),
12363 c->excep_string.c_str ());
12364
12365 uiout->field_string ("what", msg);
12366 }
12367 else
12368 uiout->field_string ("what", "all Ada exceptions");
12369
12370 break;
12371
12372 case ada_catch_exception_unhandled:
12373 uiout->field_string ("what", "unhandled Ada exceptions");
12374 break;
12375
12376 case ada_catch_handlers:
12377 if (!c->excep_string.empty ())
12378 {
12379 uiout->field_fmt ("what",
12380 _("`%s' Ada exception handlers"),
12381 c->excep_string.c_str ());
12382 }
12383 else
12384 uiout->field_string ("what", "all Ada exceptions handlers");
12385 break;
12386
12387 case ada_catch_assert:
12388 uiout->field_string ("what", "failed Ada assertions");
12389 break;
12390
12391 default:
12392 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12393 break;
12394 }
12395 }
12396
12397 /* Implement the PRINT_MENTION method in the breakpoint_ops structure
12398 for all exception catchpoint kinds. */
12399
12400 static void
12401 print_mention_exception (struct breakpoint *b)
12402 {
12403 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12404 struct ui_out *uiout = current_uiout;
12405
12406 uiout->text (b->disposition == disp_del ? _("Temporary catchpoint ")
12407 : _("Catchpoint "));
12408 uiout->field_signed ("bkptno", b->number);
12409 uiout->text (": ");
12410
12411 switch (c->m_kind)
12412 {
12413 case ada_catch_exception:
12414 if (!c->excep_string.empty ())
12415 {
12416 std::string info = string_printf (_("`%s' Ada exception"),
12417 c->excep_string.c_str ());
12418 uiout->text (info.c_str ());
12419 }
12420 else
12421 uiout->text (_("all Ada exceptions"));
12422 break;
12423
12424 case ada_catch_exception_unhandled:
12425 uiout->text (_("unhandled Ada exceptions"));
12426 break;
12427
12428 case ada_catch_handlers:
12429 if (!c->excep_string.empty ())
12430 {
12431 std::string info
12432 = string_printf (_("`%s' Ada exception handlers"),
12433 c->excep_string.c_str ());
12434 uiout->text (info.c_str ());
12435 }
12436 else
12437 uiout->text (_("all Ada exceptions handlers"));
12438 break;
12439
12440 case ada_catch_assert:
12441 uiout->text (_("failed Ada assertions"));
12442 break;
12443
12444 default:
12445 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12446 break;
12447 }
12448 }
12449
12450 /* Implement the PRINT_RECREATE method in the breakpoint_ops structure
12451 for all exception catchpoint kinds. */
12452
12453 static void
12454 print_recreate_exception (struct breakpoint *b, struct ui_file *fp)
12455 {
12456 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12457
12458 switch (c->m_kind)
12459 {
12460 case ada_catch_exception:
12461 fprintf_filtered (fp, "catch exception");
12462 if (!c->excep_string.empty ())
12463 fprintf_filtered (fp, " %s", c->excep_string.c_str ());
12464 break;
12465
12466 case ada_catch_exception_unhandled:
12467 fprintf_filtered (fp, "catch exception unhandled");
12468 break;
12469
12470 case ada_catch_handlers:
12471 fprintf_filtered (fp, "catch handlers");
12472 break;
12473
12474 case ada_catch_assert:
12475 fprintf_filtered (fp, "catch assert");
12476 break;
12477
12478 default:
12479 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12480 }
12481 print_recreate_thread (b, fp);
12482 }
12483
12484 /* Virtual tables for various breakpoint types. */
12485 static struct breakpoint_ops catch_exception_breakpoint_ops;
12486 static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops;
12487 static struct breakpoint_ops catch_assert_breakpoint_ops;
12488 static struct breakpoint_ops catch_handlers_breakpoint_ops;
12489
12490 /* See ada-lang.h. */
12491
12492 bool
12493 is_ada_exception_catchpoint (breakpoint *bp)
12494 {
12495 return (bp->ops == &catch_exception_breakpoint_ops
12496 || bp->ops == &catch_exception_unhandled_breakpoint_ops
12497 || bp->ops == &catch_assert_breakpoint_ops
12498 || bp->ops == &catch_handlers_breakpoint_ops);
12499 }
12500
12501 /* Split the arguments specified in a "catch exception" command.
12502 Set EX to the appropriate catchpoint type.
12503 Set EXCEP_STRING to the name of the specific exception if
12504 specified by the user.
12505 IS_CATCH_HANDLERS_CMD: True if the arguments are for a
12506 "catch handlers" command. False otherwise.
12507 If a condition is found at the end of the arguments, the condition
12508 expression is stored in COND_STRING (memory must be deallocated
12509 after use). Otherwise COND_STRING is set to NULL. */
12510
12511 static void
12512 catch_ada_exception_command_split (const char *args,
12513 bool is_catch_handlers_cmd,
12514 enum ada_exception_catchpoint_kind *ex,
12515 std::string *excep_string,
12516 std::string *cond_string)
12517 {
12518 std::string exception_name;
12519
12520 exception_name = extract_arg (&args);
12521 if (exception_name == "if")
12522 {
12523 /* This is not an exception name; this is the start of a condition
12524 expression for a catchpoint on all exceptions. So, "un-get"
12525 this token, and set exception_name to NULL. */
12526 exception_name.clear ();
12527 args -= 2;
12528 }
12529
12530 /* Check to see if we have a condition. */
12531
12532 args = skip_spaces (args);
12533 if (startswith (args, "if")
12534 && (isspace (args[2]) || args[2] == '\0'))
12535 {
12536 args += 2;
12537 args = skip_spaces (args);
12538
12539 if (args[0] == '\0')
12540 error (_("Condition missing after `if' keyword"));
12541 *cond_string = args;
12542
12543 args += strlen (args);
12544 }
12545
12546 /* Check that we do not have any more arguments. Anything else
12547 is unexpected. */
12548
12549 if (args[0] != '\0')
12550 error (_("Junk at end of expression"));
12551
12552 if (is_catch_handlers_cmd)
12553 {
12554 /* Catch handling of exceptions. */
12555 *ex = ada_catch_handlers;
12556 *excep_string = exception_name;
12557 }
12558 else if (exception_name.empty ())
12559 {
12560 /* Catch all exceptions. */
12561 *ex = ada_catch_exception;
12562 excep_string->clear ();
12563 }
12564 else if (exception_name == "unhandled")
12565 {
12566 /* Catch unhandled exceptions. */
12567 *ex = ada_catch_exception_unhandled;
12568 excep_string->clear ();
12569 }
12570 else
12571 {
12572 /* Catch a specific exception. */
12573 *ex = ada_catch_exception;
12574 *excep_string = exception_name;
12575 }
12576 }
12577
12578 /* Return the name of the symbol on which we should break in order to
12579 implement a catchpoint of the EX kind. */
12580
12581 static const char *
12582 ada_exception_sym_name (enum ada_exception_catchpoint_kind ex)
12583 {
12584 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
12585
12586 gdb_assert (data->exception_info != NULL);
12587
12588 switch (ex)
12589 {
12590 case ada_catch_exception:
12591 return (data->exception_info->catch_exception_sym);
12592 break;
12593 case ada_catch_exception_unhandled:
12594 return (data->exception_info->catch_exception_unhandled_sym);
12595 break;
12596 case ada_catch_assert:
12597 return (data->exception_info->catch_assert_sym);
12598 break;
12599 case ada_catch_handlers:
12600 return (data->exception_info->catch_handlers_sym);
12601 break;
12602 default:
12603 internal_error (__FILE__, __LINE__,
12604 _("unexpected catchpoint kind (%d)"), ex);
12605 }
12606 }
12607
12608 /* Return the breakpoint ops "virtual table" used for catchpoints
12609 of the EX kind. */
12610
12611 static const struct breakpoint_ops *
12612 ada_exception_breakpoint_ops (enum ada_exception_catchpoint_kind ex)
12613 {
12614 switch (ex)
12615 {
12616 case ada_catch_exception:
12617 return (&catch_exception_breakpoint_ops);
12618 break;
12619 case ada_catch_exception_unhandled:
12620 return (&catch_exception_unhandled_breakpoint_ops);
12621 break;
12622 case ada_catch_assert:
12623 return (&catch_assert_breakpoint_ops);
12624 break;
12625 case ada_catch_handlers:
12626 return (&catch_handlers_breakpoint_ops);
12627 break;
12628 default:
12629 internal_error (__FILE__, __LINE__,
12630 _("unexpected catchpoint kind (%d)"), ex);
12631 }
12632 }
12633
12634 /* Return the condition that will be used to match the current exception
12635 being raised with the exception that the user wants to catch. This
12636 assumes that this condition is used when the inferior just triggered
12637 an exception catchpoint.
12638 EX: the type of catchpoints used for catching Ada exceptions. */
12639
12640 static std::string
12641 ada_exception_catchpoint_cond_string (const char *excep_string,
12642 enum ada_exception_catchpoint_kind ex)
12643 {
12644 int i;
12645 bool is_standard_exc = false;
12646 std::string result;
12647
12648 if (ex == ada_catch_handlers)
12649 {
12650 /* For exception handlers catchpoints, the condition string does
12651 not use the same parameter as for the other exceptions. */
12652 result = ("long_integer (GNAT_GCC_exception_Access"
12653 "(gcc_exception).all.occurrence.id)");
12654 }
12655 else
12656 result = "long_integer (e)";
12657
12658 /* The standard exceptions are a special case. They are defined in
12659 runtime units that have been compiled without debugging info; if
12660 EXCEP_STRING is the not-fully-qualified name of a standard
12661 exception (e.g. "constraint_error") then, during the evaluation
12662 of the condition expression, the symbol lookup on this name would
12663 *not* return this standard exception. The catchpoint condition
12664 may then be set only on user-defined exceptions which have the
12665 same not-fully-qualified name (e.g. my_package.constraint_error).
12666
12667 To avoid this unexcepted behavior, these standard exceptions are
12668 systematically prefixed by "standard". This means that "catch
12669 exception constraint_error" is rewritten into "catch exception
12670 standard.constraint_error".
12671
12672 If an exception named constraint_error is defined in another package of
12673 the inferior program, then the only way to specify this exception as a
12674 breakpoint condition is to use its fully-qualified named:
12675 e.g. my_package.constraint_error. */
12676
12677 for (i = 0; i < sizeof (standard_exc) / sizeof (char *); i++)
12678 {
12679 if (strcmp (standard_exc [i], excep_string) == 0)
12680 {
12681 is_standard_exc = true;
12682 break;
12683 }
12684 }
12685
12686 result += " = ";
12687
12688 if (is_standard_exc)
12689 string_appendf (result, "long_integer (&standard.%s)", excep_string);
12690 else
12691 string_appendf (result, "long_integer (&%s)", excep_string);
12692
12693 return result;
12694 }
12695
12696 /* Return the symtab_and_line that should be used to insert an exception
12697 catchpoint of the TYPE kind.
12698
12699 ADDR_STRING returns the name of the function where the real
12700 breakpoint that implements the catchpoints is set, depending on the
12701 type of catchpoint we need to create. */
12702
12703 static struct symtab_and_line
12704 ada_exception_sal (enum ada_exception_catchpoint_kind ex,
12705 std::string *addr_string, const struct breakpoint_ops **ops)
12706 {
12707 const char *sym_name;
12708 struct symbol *sym;
12709
12710 /* First, find out which exception support info to use. */
12711 ada_exception_support_info_sniffer ();
12712
12713 /* Then lookup the function on which we will break in order to catch
12714 the Ada exceptions requested by the user. */
12715 sym_name = ada_exception_sym_name (ex);
12716 sym = standard_lookup (sym_name, NULL, VAR_DOMAIN);
12717
12718 if (sym == NULL)
12719 error (_("Catchpoint symbol not found: %s"), sym_name);
12720
12721 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
12722 error (_("Unable to insert catchpoint. %s is not a function."), sym_name);
12723
12724 /* Set ADDR_STRING. */
12725 *addr_string = sym_name;
12726
12727 /* Set OPS. */
12728 *ops = ada_exception_breakpoint_ops (ex);
12729
12730 return find_function_start_sal (sym, 1);
12731 }
12732
12733 /* Create an Ada exception catchpoint.
12734
12735 EX_KIND is the kind of exception catchpoint to be created.
12736
12737 If EXCEPT_STRING is empty, this catchpoint is expected to trigger
12738 for all exceptions. Otherwise, EXCEPT_STRING indicates the name
12739 of the exception to which this catchpoint applies.
12740
12741 COND_STRING, if not empty, is the catchpoint condition.
12742
12743 TEMPFLAG, if nonzero, means that the underlying breakpoint
12744 should be temporary.
12745
12746 FROM_TTY is the usual argument passed to all commands implementations. */
12747
12748 void
12749 create_ada_exception_catchpoint (struct gdbarch *gdbarch,
12750 enum ada_exception_catchpoint_kind ex_kind,
12751 const std::string &excep_string,
12752 const std::string &cond_string,
12753 int tempflag,
12754 int disabled,
12755 int from_tty)
12756 {
12757 std::string addr_string;
12758 const struct breakpoint_ops *ops = NULL;
12759 struct symtab_and_line sal = ada_exception_sal (ex_kind, &addr_string, &ops);
12760
12761 std::unique_ptr<ada_catchpoint> c (new ada_catchpoint (ex_kind));
12762 init_ada_exception_breakpoint (c.get (), gdbarch, sal, addr_string.c_str (),
12763 ops, tempflag, disabled, from_tty);
12764 c->excep_string = excep_string;
12765 create_excep_cond_exprs (c.get (), ex_kind);
12766 if (!cond_string.empty ())
12767 set_breakpoint_condition (c.get (), cond_string.c_str (), from_tty, false);
12768 install_breakpoint (0, std::move (c), 1);
12769 }
12770
12771 /* Implement the "catch exception" command. */
12772
12773 static void
12774 catch_ada_exception_command (const char *arg_entry, int from_tty,
12775 struct cmd_list_element *command)
12776 {
12777 const char *arg = arg_entry;
12778 struct gdbarch *gdbarch = get_current_arch ();
12779 int tempflag;
12780 enum ada_exception_catchpoint_kind ex_kind;
12781 std::string excep_string;
12782 std::string cond_string;
12783
12784 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12785
12786 if (!arg)
12787 arg = "";
12788 catch_ada_exception_command_split (arg, false, &ex_kind, &excep_string,
12789 &cond_string);
12790 create_ada_exception_catchpoint (gdbarch, ex_kind,
12791 excep_string, cond_string,
12792 tempflag, 1 /* enabled */,
12793 from_tty);
12794 }
12795
12796 /* Implement the "catch handlers" command. */
12797
12798 static void
12799 catch_ada_handlers_command (const char *arg_entry, int from_tty,
12800 struct cmd_list_element *command)
12801 {
12802 const char *arg = arg_entry;
12803 struct gdbarch *gdbarch = get_current_arch ();
12804 int tempflag;
12805 enum ada_exception_catchpoint_kind ex_kind;
12806 std::string excep_string;
12807 std::string cond_string;
12808
12809 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12810
12811 if (!arg)
12812 arg = "";
12813 catch_ada_exception_command_split (arg, true, &ex_kind, &excep_string,
12814 &cond_string);
12815 create_ada_exception_catchpoint (gdbarch, ex_kind,
12816 excep_string, cond_string,
12817 tempflag, 1 /* enabled */,
12818 from_tty);
12819 }
12820
12821 /* Completion function for the Ada "catch" commands. */
12822
12823 static void
12824 catch_ada_completer (struct cmd_list_element *cmd, completion_tracker &tracker,
12825 const char *text, const char *word)
12826 {
12827 std::vector<ada_exc_info> exceptions = ada_exceptions_list (NULL);
12828
12829 for (const ada_exc_info &info : exceptions)
12830 {
12831 if (startswith (info.name, word))
12832 tracker.add_completion (make_unique_xstrdup (info.name));
12833 }
12834 }
12835
12836 /* Split the arguments specified in a "catch assert" command.
12837
12838 ARGS contains the command's arguments (or the empty string if
12839 no arguments were passed).
12840
12841 If ARGS contains a condition, set COND_STRING to that condition
12842 (the memory needs to be deallocated after use). */
12843
12844 static void
12845 catch_ada_assert_command_split (const char *args, std::string &cond_string)
12846 {
12847 args = skip_spaces (args);
12848
12849 /* Check whether a condition was provided. */
12850 if (startswith (args, "if")
12851 && (isspace (args[2]) || args[2] == '\0'))
12852 {
12853 args += 2;
12854 args = skip_spaces (args);
12855 if (args[0] == '\0')
12856 error (_("condition missing after `if' keyword"));
12857 cond_string.assign (args);
12858 }
12859
12860 /* Otherwise, there should be no other argument at the end of
12861 the command. */
12862 else if (args[0] != '\0')
12863 error (_("Junk at end of arguments."));
12864 }
12865
12866 /* Implement the "catch assert" command. */
12867
12868 static void
12869 catch_assert_command (const char *arg_entry, int from_tty,
12870 struct cmd_list_element *command)
12871 {
12872 const char *arg = arg_entry;
12873 struct gdbarch *gdbarch = get_current_arch ();
12874 int tempflag;
12875 std::string cond_string;
12876
12877 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12878
12879 if (!arg)
12880 arg = "";
12881 catch_ada_assert_command_split (arg, cond_string);
12882 create_ada_exception_catchpoint (gdbarch, ada_catch_assert,
12883 "", cond_string,
12884 tempflag, 1 /* enabled */,
12885 from_tty);
12886 }
12887
12888 /* Return non-zero if the symbol SYM is an Ada exception object. */
12889
12890 static int
12891 ada_is_exception_sym (struct symbol *sym)
12892 {
12893 const char *type_name = SYMBOL_TYPE (sym)->name ();
12894
12895 return (SYMBOL_CLASS (sym) != LOC_TYPEDEF
12896 && SYMBOL_CLASS (sym) != LOC_BLOCK
12897 && SYMBOL_CLASS (sym) != LOC_CONST
12898 && SYMBOL_CLASS (sym) != LOC_UNRESOLVED
12899 && type_name != NULL && strcmp (type_name, "exception") == 0);
12900 }
12901
12902 /* Given a global symbol SYM, return non-zero iff SYM is a non-standard
12903 Ada exception object. This matches all exceptions except the ones
12904 defined by the Ada language. */
12905
12906 static int
12907 ada_is_non_standard_exception_sym (struct symbol *sym)
12908 {
12909 int i;
12910
12911 if (!ada_is_exception_sym (sym))
12912 return 0;
12913
12914 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
12915 if (strcmp (sym->linkage_name (), standard_exc[i]) == 0)
12916 return 0; /* A standard exception. */
12917
12918 /* Numeric_Error is also a standard exception, so exclude it.
12919 See the STANDARD_EXC description for more details as to why
12920 this exception is not listed in that array. */
12921 if (strcmp (sym->linkage_name (), "numeric_error") == 0)
12922 return 0;
12923
12924 return 1;
12925 }
12926
12927 /* A helper function for std::sort, comparing two struct ada_exc_info
12928 objects.
12929
12930 The comparison is determined first by exception name, and then
12931 by exception address. */
12932
12933 bool
12934 ada_exc_info::operator< (const ada_exc_info &other) const
12935 {
12936 int result;
12937
12938 result = strcmp (name, other.name);
12939 if (result < 0)
12940 return true;
12941 if (result == 0 && addr < other.addr)
12942 return true;
12943 return false;
12944 }
12945
12946 bool
12947 ada_exc_info::operator== (const ada_exc_info &other) const
12948 {
12949 return addr == other.addr && strcmp (name, other.name) == 0;
12950 }
12951
12952 /* Sort EXCEPTIONS using compare_ada_exception_info as the comparison
12953 routine, but keeping the first SKIP elements untouched.
12954
12955 All duplicates are also removed. */
12956
12957 static void
12958 sort_remove_dups_ada_exceptions_list (std::vector<ada_exc_info> *exceptions,
12959 int skip)
12960 {
12961 std::sort (exceptions->begin () + skip, exceptions->end ());
12962 exceptions->erase (std::unique (exceptions->begin () + skip, exceptions->end ()),
12963 exceptions->end ());
12964 }
12965
12966 /* Add all exceptions defined by the Ada standard whose name match
12967 a regular expression.
12968
12969 If PREG is not NULL, then this regexp_t object is used to
12970 perform the symbol name matching. Otherwise, no name-based
12971 filtering is performed.
12972
12973 EXCEPTIONS is a vector of exceptions to which matching exceptions
12974 gets pushed. */
12975
12976 static void
12977 ada_add_standard_exceptions (compiled_regex *preg,
12978 std::vector<ada_exc_info> *exceptions)
12979 {
12980 int i;
12981
12982 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
12983 {
12984 if (preg == NULL
12985 || preg->exec (standard_exc[i], 0, NULL, 0) == 0)
12986 {
12987 struct bound_minimal_symbol msymbol
12988 = ada_lookup_simple_minsym (standard_exc[i]);
12989
12990 if (msymbol.minsym != NULL)
12991 {
12992 struct ada_exc_info info
12993 = {standard_exc[i], BMSYMBOL_VALUE_ADDRESS (msymbol)};
12994
12995 exceptions->push_back (info);
12996 }
12997 }
12998 }
12999 }
13000
13001 /* Add all Ada exceptions defined locally and accessible from the given
13002 FRAME.
13003
13004 If PREG is not NULL, then this regexp_t object is used to
13005 perform the symbol name matching. Otherwise, no name-based
13006 filtering is performed.
13007
13008 EXCEPTIONS is a vector of exceptions to which matching exceptions
13009 gets pushed. */
13010
13011 static void
13012 ada_add_exceptions_from_frame (compiled_regex *preg,
13013 struct frame_info *frame,
13014 std::vector<ada_exc_info> *exceptions)
13015 {
13016 const struct block *block = get_frame_block (frame, 0);
13017
13018 while (block != 0)
13019 {
13020 struct block_iterator iter;
13021 struct symbol *sym;
13022
13023 ALL_BLOCK_SYMBOLS (block, iter, sym)
13024 {
13025 switch (SYMBOL_CLASS (sym))
13026 {
13027 case LOC_TYPEDEF:
13028 case LOC_BLOCK:
13029 case LOC_CONST:
13030 break;
13031 default:
13032 if (ada_is_exception_sym (sym))
13033 {
13034 struct ada_exc_info info = {sym->print_name (),
13035 SYMBOL_VALUE_ADDRESS (sym)};
13036
13037 exceptions->push_back (info);
13038 }
13039 }
13040 }
13041 if (BLOCK_FUNCTION (block) != NULL)
13042 break;
13043 block = BLOCK_SUPERBLOCK (block);
13044 }
13045 }
13046
13047 /* Return true if NAME matches PREG or if PREG is NULL. */
13048
13049 static bool
13050 name_matches_regex (const char *name, compiled_regex *preg)
13051 {
13052 return (preg == NULL
13053 || preg->exec (ada_decode (name).c_str (), 0, NULL, 0) == 0);
13054 }
13055
13056 /* Add all exceptions defined globally whose name name match
13057 a regular expression, excluding standard exceptions.
13058
13059 The reason we exclude standard exceptions is that they need
13060 to be handled separately: Standard exceptions are defined inside
13061 a runtime unit which is normally not compiled with debugging info,
13062 and thus usually do not show up in our symbol search. However,
13063 if the unit was in fact built with debugging info, we need to
13064 exclude them because they would duplicate the entry we found
13065 during the special loop that specifically searches for those
13066 standard exceptions.
13067
13068 If PREG is not NULL, then this regexp_t object is used to
13069 perform the symbol name matching. Otherwise, no name-based
13070 filtering is performed.
13071
13072 EXCEPTIONS is a vector of exceptions to which matching exceptions
13073 gets pushed. */
13074
13075 static void
13076 ada_add_global_exceptions (compiled_regex *preg,
13077 std::vector<ada_exc_info> *exceptions)
13078 {
13079 /* In Ada, the symbol "search name" is a linkage name, whereas the
13080 regular expression used to do the matching refers to the natural
13081 name. So match against the decoded name. */
13082 expand_symtabs_matching (NULL,
13083 lookup_name_info::match_any (),
13084 [&] (const char *search_name)
13085 {
13086 std::string decoded = ada_decode (search_name);
13087 return name_matches_regex (decoded.c_str (), preg);
13088 },
13089 NULL,
13090 VARIABLES_DOMAIN);
13091
13092 for (objfile *objfile : current_program_space->objfiles ())
13093 {
13094 for (compunit_symtab *s : objfile->compunits ())
13095 {
13096 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (s);
13097 int i;
13098
13099 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
13100 {
13101 const struct block *b = BLOCKVECTOR_BLOCK (bv, i);
13102 struct block_iterator iter;
13103 struct symbol *sym;
13104
13105 ALL_BLOCK_SYMBOLS (b, iter, sym)
13106 if (ada_is_non_standard_exception_sym (sym)
13107 && name_matches_regex (sym->natural_name (), preg))
13108 {
13109 struct ada_exc_info info
13110 = {sym->print_name (), SYMBOL_VALUE_ADDRESS (sym)};
13111
13112 exceptions->push_back (info);
13113 }
13114 }
13115 }
13116 }
13117 }
13118
13119 /* Implements ada_exceptions_list with the regular expression passed
13120 as a regex_t, rather than a string.
13121
13122 If not NULL, PREG is used to filter out exceptions whose names
13123 do not match. Otherwise, all exceptions are listed. */
13124
13125 static std::vector<ada_exc_info>
13126 ada_exceptions_list_1 (compiled_regex *preg)
13127 {
13128 std::vector<ada_exc_info> result;
13129 int prev_len;
13130
13131 /* First, list the known standard exceptions. These exceptions
13132 need to be handled separately, as they are usually defined in
13133 runtime units that have been compiled without debugging info. */
13134
13135 ada_add_standard_exceptions (preg, &result);
13136
13137 /* Next, find all exceptions whose scope is local and accessible
13138 from the currently selected frame. */
13139
13140 if (has_stack_frames ())
13141 {
13142 prev_len = result.size ();
13143 ada_add_exceptions_from_frame (preg, get_selected_frame (NULL),
13144 &result);
13145 if (result.size () > prev_len)
13146 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13147 }
13148
13149 /* Add all exceptions whose scope is global. */
13150
13151 prev_len = result.size ();
13152 ada_add_global_exceptions (preg, &result);
13153 if (result.size () > prev_len)
13154 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13155
13156 return result;
13157 }
13158
13159 /* Return a vector of ada_exc_info.
13160
13161 If REGEXP is NULL, all exceptions are included in the result.
13162 Otherwise, it should contain a valid regular expression,
13163 and only the exceptions whose names match that regular expression
13164 are included in the result.
13165
13166 The exceptions are sorted in the following order:
13167 - Standard exceptions (defined by the Ada language), in
13168 alphabetical order;
13169 - Exceptions only visible from the current frame, in
13170 alphabetical order;
13171 - Exceptions whose scope is global, in alphabetical order. */
13172
13173 std::vector<ada_exc_info>
13174 ada_exceptions_list (const char *regexp)
13175 {
13176 if (regexp == NULL)
13177 return ada_exceptions_list_1 (NULL);
13178
13179 compiled_regex reg (regexp, REG_NOSUB, _("invalid regular expression"));
13180 return ada_exceptions_list_1 (&reg);
13181 }
13182
13183 /* Implement the "info exceptions" command. */
13184
13185 static void
13186 info_exceptions_command (const char *regexp, int from_tty)
13187 {
13188 struct gdbarch *gdbarch = get_current_arch ();
13189
13190 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp);
13191
13192 if (regexp != NULL)
13193 printf_filtered
13194 (_("All Ada exceptions matching regular expression \"%s\":\n"), regexp);
13195 else
13196 printf_filtered (_("All defined Ada exceptions:\n"));
13197
13198 for (const ada_exc_info &info : exceptions)
13199 printf_filtered ("%s: %s\n", info.name, paddress (gdbarch, info.addr));
13200 }
13201
13202 /* Operators */
13203 /* Information about operators given special treatment in functions
13204 below. */
13205 /* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */
13206
13207 #define ADA_OPERATORS \
13208 OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \
13209 OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \
13210 OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \
13211 OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \
13212 OP_DEFN (OP_ATR_LAST, 1, 2, 0) \
13213 OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \
13214 OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \
13215 OP_DEFN (OP_ATR_MAX, 1, 3, 0) \
13216 OP_DEFN (OP_ATR_MIN, 1, 3, 0) \
13217 OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \
13218 OP_DEFN (OP_ATR_POS, 1, 2, 0) \
13219 OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \
13220 OP_DEFN (OP_ATR_TAG, 1, 1, 0) \
13221 OP_DEFN (OP_ATR_VAL, 1, 2, 0) \
13222 OP_DEFN (UNOP_QUAL, 3, 1, 0) \
13223 OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \
13224 OP_DEFN (OP_OTHERS, 1, 1, 0) \
13225 OP_DEFN (OP_POSITIONAL, 3, 1, 0) \
13226 OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0)
13227
13228 static void
13229 ada_operator_length (const struct expression *exp, int pc, int *oplenp,
13230 int *argsp)
13231 {
13232 switch (exp->elts[pc - 1].opcode)
13233 {
13234 default:
13235 operator_length_standard (exp, pc, oplenp, argsp);
13236 break;
13237
13238 #define OP_DEFN(op, len, args, binop) \
13239 case op: *oplenp = len; *argsp = args; break;
13240 ADA_OPERATORS;
13241 #undef OP_DEFN
13242
13243 case OP_AGGREGATE:
13244 *oplenp = 3;
13245 *argsp = longest_to_int (exp->elts[pc - 2].longconst);
13246 break;
13247
13248 case OP_CHOICES:
13249 *oplenp = 3;
13250 *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1;
13251 break;
13252 }
13253 }
13254
13255 /* Implementation of the exp_descriptor method operator_check. */
13256
13257 static int
13258 ada_operator_check (struct expression *exp, int pos,
13259 int (*objfile_func) (struct objfile *objfile, void *data),
13260 void *data)
13261 {
13262 const union exp_element *const elts = exp->elts;
13263 struct type *type = NULL;
13264
13265 switch (elts[pos].opcode)
13266 {
13267 case UNOP_IN_RANGE:
13268 case UNOP_QUAL:
13269 type = elts[pos + 1].type;
13270 break;
13271
13272 default:
13273 return operator_check_standard (exp, pos, objfile_func, data);
13274 }
13275
13276 /* Invoke callbacks for TYPE and OBJFILE if they were set as non-NULL. */
13277
13278 if (type && TYPE_OBJFILE (type)
13279 && (*objfile_func) (TYPE_OBJFILE (type), data))
13280 return 1;
13281
13282 return 0;
13283 }
13284
13285 /* As for operator_length, but assumes PC is pointing at the first
13286 element of the operator, and gives meaningful results only for the
13287 Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */
13288
13289 static void
13290 ada_forward_operator_length (struct expression *exp, int pc,
13291 int *oplenp, int *argsp)
13292 {
13293 switch (exp->elts[pc].opcode)
13294 {
13295 default:
13296 *oplenp = *argsp = 0;
13297 break;
13298
13299 #define OP_DEFN(op, len, args, binop) \
13300 case op: *oplenp = len; *argsp = args; break;
13301 ADA_OPERATORS;
13302 #undef OP_DEFN
13303
13304 case OP_AGGREGATE:
13305 *oplenp = 3;
13306 *argsp = longest_to_int (exp->elts[pc + 1].longconst);
13307 break;
13308
13309 case OP_CHOICES:
13310 *oplenp = 3;
13311 *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1;
13312 break;
13313
13314 case OP_STRING:
13315 case OP_NAME:
13316 {
13317 int len = longest_to_int (exp->elts[pc + 1].longconst);
13318
13319 *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1);
13320 *argsp = 0;
13321 break;
13322 }
13323 }
13324 }
13325
13326 static int
13327 ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
13328 {
13329 enum exp_opcode op = exp->elts[elt].opcode;
13330 int oplen, nargs;
13331 int pc = elt;
13332 int i;
13333
13334 ada_forward_operator_length (exp, elt, &oplen, &nargs);
13335
13336 switch (op)
13337 {
13338 /* Ada attributes ('Foo). */
13339 case OP_ATR_FIRST:
13340 case OP_ATR_LAST:
13341 case OP_ATR_LENGTH:
13342 case OP_ATR_IMAGE:
13343 case OP_ATR_MAX:
13344 case OP_ATR_MIN:
13345 case OP_ATR_MODULUS:
13346 case OP_ATR_POS:
13347 case OP_ATR_SIZE:
13348 case OP_ATR_TAG:
13349 case OP_ATR_VAL:
13350 break;
13351
13352 case UNOP_IN_RANGE:
13353 case UNOP_QUAL:
13354 /* XXX: gdb_sprint_host_address, type_sprint */
13355 fprintf_filtered (stream, _("Type @"));
13356 gdb_print_host_address (exp->elts[pc + 1].type, stream);
13357 fprintf_filtered (stream, " (");
13358 type_print (exp->elts[pc + 1].type, NULL, stream, 0);
13359 fprintf_filtered (stream, ")");
13360 break;
13361 case BINOP_IN_BOUNDS:
13362 fprintf_filtered (stream, " (%d)",
13363 longest_to_int (exp->elts[pc + 2].longconst));
13364 break;
13365 case TERNOP_IN_RANGE:
13366 break;
13367
13368 case OP_AGGREGATE:
13369 case OP_OTHERS:
13370 case OP_DISCRETE_RANGE:
13371 case OP_POSITIONAL:
13372 case OP_CHOICES:
13373 break;
13374
13375 case OP_NAME:
13376 case OP_STRING:
13377 {
13378 char *name = &exp->elts[elt + 2].string;
13379 int len = longest_to_int (exp->elts[elt + 1].longconst);
13380
13381 fprintf_filtered (stream, "Text: `%.*s'", len, name);
13382 break;
13383 }
13384
13385 default:
13386 return dump_subexp_body_standard (exp, stream, elt);
13387 }
13388
13389 elt += oplen;
13390 for (i = 0; i < nargs; i += 1)
13391 elt = dump_subexp (exp, stream, elt);
13392
13393 return elt;
13394 }
13395
13396 /* The Ada extension of print_subexp (q.v.). */
13397
13398 static void
13399 ada_print_subexp (struct expression *exp, int *pos,
13400 struct ui_file *stream, enum precedence prec)
13401 {
13402 int oplen, nargs, i;
13403 int pc = *pos;
13404 enum exp_opcode op = exp->elts[pc].opcode;
13405
13406 ada_forward_operator_length (exp, pc, &oplen, &nargs);
13407
13408 *pos += oplen;
13409 switch (op)
13410 {
13411 default:
13412 *pos -= oplen;
13413 print_subexp_standard (exp, pos, stream, prec);
13414 return;
13415
13416 case OP_VAR_VALUE:
13417 fputs_filtered (exp->elts[pc + 2].symbol->natural_name (), stream);
13418 return;
13419
13420 case BINOP_IN_BOUNDS:
13421 /* XXX: sprint_subexp */
13422 print_subexp (exp, pos, stream, PREC_SUFFIX);
13423 fputs_filtered (" in ", stream);
13424 print_subexp (exp, pos, stream, PREC_SUFFIX);
13425 fputs_filtered ("'range", stream);
13426 if (exp->elts[pc + 1].longconst > 1)
13427 fprintf_filtered (stream, "(%ld)",
13428 (long) exp->elts[pc + 1].longconst);
13429 return;
13430
13431 case TERNOP_IN_RANGE:
13432 if (prec >= PREC_EQUAL)
13433 fputs_filtered ("(", stream);
13434 /* XXX: sprint_subexp */
13435 print_subexp (exp, pos, stream, PREC_SUFFIX);
13436 fputs_filtered (" in ", stream);
13437 print_subexp (exp, pos, stream, PREC_EQUAL);
13438 fputs_filtered (" .. ", stream);
13439 print_subexp (exp, pos, stream, PREC_EQUAL);
13440 if (prec >= PREC_EQUAL)
13441 fputs_filtered (")", stream);
13442 return;
13443
13444 case OP_ATR_FIRST:
13445 case OP_ATR_LAST:
13446 case OP_ATR_LENGTH:
13447 case OP_ATR_IMAGE:
13448 case OP_ATR_MAX:
13449 case OP_ATR_MIN:
13450 case OP_ATR_MODULUS:
13451 case OP_ATR_POS:
13452 case OP_ATR_SIZE:
13453 case OP_ATR_TAG:
13454 case OP_ATR_VAL:
13455 if (exp->elts[*pos].opcode == OP_TYPE)
13456 {
13457 if (exp->elts[*pos + 1].type->code () != TYPE_CODE_VOID)
13458 LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0,
13459 &type_print_raw_options);
13460 *pos += 3;
13461 }
13462 else
13463 print_subexp (exp, pos, stream, PREC_SUFFIX);
13464 fprintf_filtered (stream, "'%s", ada_attribute_name (op));
13465 if (nargs > 1)
13466 {
13467 int tem;
13468
13469 for (tem = 1; tem < nargs; tem += 1)
13470 {
13471 fputs_filtered ((tem == 1) ? " (" : ", ", stream);
13472 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
13473 }
13474 fputs_filtered (")", stream);
13475 }
13476 return;
13477
13478 case UNOP_QUAL:
13479 type_print (exp->elts[pc + 1].type, "", stream, 0);
13480 fputs_filtered ("'(", stream);
13481 print_subexp (exp, pos, stream, PREC_PREFIX);
13482 fputs_filtered (")", stream);
13483 return;
13484
13485 case UNOP_IN_RANGE:
13486 /* XXX: sprint_subexp */
13487 print_subexp (exp, pos, stream, PREC_SUFFIX);
13488 fputs_filtered (" in ", stream);
13489 LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0,
13490 &type_print_raw_options);
13491 return;
13492
13493 case OP_DISCRETE_RANGE:
13494 print_subexp (exp, pos, stream, PREC_SUFFIX);
13495 fputs_filtered ("..", stream);
13496 print_subexp (exp, pos, stream, PREC_SUFFIX);
13497 return;
13498
13499 case OP_OTHERS:
13500 fputs_filtered ("others => ", stream);
13501 print_subexp (exp, pos, stream, PREC_SUFFIX);
13502 return;
13503
13504 case OP_CHOICES:
13505 for (i = 0; i < nargs-1; i += 1)
13506 {
13507 if (i > 0)
13508 fputs_filtered ("|", stream);
13509 print_subexp (exp, pos, stream, PREC_SUFFIX);
13510 }
13511 fputs_filtered (" => ", stream);
13512 print_subexp (exp, pos, stream, PREC_SUFFIX);
13513 return;
13514
13515 case OP_POSITIONAL:
13516 print_subexp (exp, pos, stream, PREC_SUFFIX);
13517 return;
13518
13519 case OP_AGGREGATE:
13520 fputs_filtered ("(", stream);
13521 for (i = 0; i < nargs; i += 1)
13522 {
13523 if (i > 0)
13524 fputs_filtered (", ", stream);
13525 print_subexp (exp, pos, stream, PREC_SUFFIX);
13526 }
13527 fputs_filtered (")", stream);
13528 return;
13529 }
13530 }
13531
13532 /* Table mapping opcodes into strings for printing operators
13533 and precedences of the operators. */
13534
13535 static const struct op_print ada_op_print_tab[] = {
13536 {":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
13537 {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
13538 {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
13539 {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
13540 {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
13541 {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
13542 {"=", BINOP_EQUAL, PREC_EQUAL, 0},
13543 {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
13544 {"<=", BINOP_LEQ, PREC_ORDER, 0},
13545 {">=", BINOP_GEQ, PREC_ORDER, 0},
13546 {">", BINOP_GTR, PREC_ORDER, 0},
13547 {"<", BINOP_LESS, PREC_ORDER, 0},
13548 {">>", BINOP_RSH, PREC_SHIFT, 0},
13549 {"<<", BINOP_LSH, PREC_SHIFT, 0},
13550 {"+", BINOP_ADD, PREC_ADD, 0},
13551 {"-", BINOP_SUB, PREC_ADD, 0},
13552 {"&", BINOP_CONCAT, PREC_ADD, 0},
13553 {"*", BINOP_MUL, PREC_MUL, 0},
13554 {"/", BINOP_DIV, PREC_MUL, 0},
13555 {"rem", BINOP_REM, PREC_MUL, 0},
13556 {"mod", BINOP_MOD, PREC_MUL, 0},
13557 {"**", BINOP_EXP, PREC_REPEAT, 0},
13558 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
13559 {"-", UNOP_NEG, PREC_PREFIX, 0},
13560 {"+", UNOP_PLUS, PREC_PREFIX, 0},
13561 {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
13562 {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0},
13563 {"abs ", UNOP_ABS, PREC_PREFIX, 0},
13564 {".all", UNOP_IND, PREC_SUFFIX, 1},
13565 {"'access", UNOP_ADDR, PREC_SUFFIX, 1},
13566 {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1},
13567 {NULL, OP_NULL, PREC_SUFFIX, 0}
13568 };
13569 \f
13570 /* Language vector */
13571
13572 static const struct exp_descriptor ada_exp_descriptor = {
13573 ada_print_subexp,
13574 ada_operator_length,
13575 ada_operator_check,
13576 ada_dump_subexp_body,
13577 ada_evaluate_subexp
13578 };
13579
13580 /* symbol_name_matcher_ftype adapter for wild_match. */
13581
13582 static bool
13583 do_wild_match (const char *symbol_search_name,
13584 const lookup_name_info &lookup_name,
13585 completion_match_result *comp_match_res)
13586 {
13587 return wild_match (symbol_search_name, ada_lookup_name (lookup_name));
13588 }
13589
13590 /* symbol_name_matcher_ftype adapter for full_match. */
13591
13592 static bool
13593 do_full_match (const char *symbol_search_name,
13594 const lookup_name_info &lookup_name,
13595 completion_match_result *comp_match_res)
13596 {
13597 return full_match (symbol_search_name, ada_lookup_name (lookup_name));
13598 }
13599
13600 /* symbol_name_matcher_ftype for exact (verbatim) matches. */
13601
13602 static bool
13603 do_exact_match (const char *symbol_search_name,
13604 const lookup_name_info &lookup_name,
13605 completion_match_result *comp_match_res)
13606 {
13607 return strcmp (symbol_search_name, ada_lookup_name (lookup_name)) == 0;
13608 }
13609
13610 /* Build the Ada lookup name for LOOKUP_NAME. */
13611
13612 ada_lookup_name_info::ada_lookup_name_info (const lookup_name_info &lookup_name)
13613 {
13614 gdb::string_view user_name = lookup_name.name ();
13615
13616 if (user_name[0] == '<')
13617 {
13618 if (user_name.back () == '>')
13619 m_encoded_name
13620 = gdb::to_string (user_name.substr (1, user_name.size () - 2));
13621 else
13622 m_encoded_name
13623 = gdb::to_string (user_name.substr (1, user_name.size () - 1));
13624 m_encoded_p = true;
13625 m_verbatim_p = true;
13626 m_wild_match_p = false;
13627 m_standard_p = false;
13628 }
13629 else
13630 {
13631 m_verbatim_p = false;
13632
13633 m_encoded_p = user_name.find ("__") != gdb::string_view::npos;
13634
13635 if (!m_encoded_p)
13636 {
13637 const char *folded = ada_fold_name (user_name);
13638 m_encoded_name = ada_encode_1 (folded, false);
13639 if (m_encoded_name.empty ())
13640 m_encoded_name = gdb::to_string (user_name);
13641 }
13642 else
13643 m_encoded_name = gdb::to_string (user_name);
13644
13645 /* Handle the 'package Standard' special case. See description
13646 of m_standard_p. */
13647 if (startswith (m_encoded_name.c_str (), "standard__"))
13648 {
13649 m_encoded_name = m_encoded_name.substr (sizeof ("standard__") - 1);
13650 m_standard_p = true;
13651 }
13652 else
13653 m_standard_p = false;
13654
13655 /* If the name contains a ".", then the user is entering a fully
13656 qualified entity name, and the match must not be done in wild
13657 mode. Similarly, if the user wants to complete what looks
13658 like an encoded name, the match must not be done in wild
13659 mode. Also, in the standard__ special case always do
13660 non-wild matching. */
13661 m_wild_match_p
13662 = (lookup_name.match_type () != symbol_name_match_type::FULL
13663 && !m_encoded_p
13664 && !m_standard_p
13665 && user_name.find ('.') == std::string::npos);
13666 }
13667 }
13668
13669 /* symbol_name_matcher_ftype method for Ada. This only handles
13670 completion mode. */
13671
13672 static bool
13673 ada_symbol_name_matches (const char *symbol_search_name,
13674 const lookup_name_info &lookup_name,
13675 completion_match_result *comp_match_res)
13676 {
13677 return lookup_name.ada ().matches (symbol_search_name,
13678 lookup_name.match_type (),
13679 comp_match_res);
13680 }
13681
13682 /* A name matcher that matches the symbol name exactly, with
13683 strcmp. */
13684
13685 static bool
13686 literal_symbol_name_matcher (const char *symbol_search_name,
13687 const lookup_name_info &lookup_name,
13688 completion_match_result *comp_match_res)
13689 {
13690 gdb::string_view name_view = lookup_name.name ();
13691
13692 if (lookup_name.completion_mode ()
13693 ? (strncmp (symbol_search_name, name_view.data (),
13694 name_view.size ()) == 0)
13695 : symbol_search_name == name_view)
13696 {
13697 if (comp_match_res != NULL)
13698 comp_match_res->set_match (symbol_search_name);
13699 return true;
13700 }
13701 else
13702 return false;
13703 }
13704
13705 /* Implement the "get_symbol_name_matcher" language_defn method for
13706 Ada. */
13707
13708 static symbol_name_matcher_ftype *
13709 ada_get_symbol_name_matcher (const lookup_name_info &lookup_name)
13710 {
13711 if (lookup_name.match_type () == symbol_name_match_type::SEARCH_NAME)
13712 return literal_symbol_name_matcher;
13713
13714 if (lookup_name.completion_mode ())
13715 return ada_symbol_name_matches;
13716 else
13717 {
13718 if (lookup_name.ada ().wild_match_p ())
13719 return do_wild_match;
13720 else if (lookup_name.ada ().verbatim_p ())
13721 return do_exact_match;
13722 else
13723 return do_full_match;
13724 }
13725 }
13726
13727 /* Class representing the Ada language. */
13728
13729 class ada_language : public language_defn
13730 {
13731 public:
13732 ada_language ()
13733 : language_defn (language_ada)
13734 { /* Nothing. */ }
13735
13736 /* See language.h. */
13737
13738 const char *name () const override
13739 { return "ada"; }
13740
13741 /* See language.h. */
13742
13743 const char *natural_name () const override
13744 { return "Ada"; }
13745
13746 /* See language.h. */
13747
13748 const std::vector<const char *> &filename_extensions () const override
13749 {
13750 static const std::vector<const char *> extensions
13751 = { ".adb", ".ads", ".a", ".ada", ".dg" };
13752 return extensions;
13753 }
13754
13755 /* Print an array element index using the Ada syntax. */
13756
13757 void print_array_index (struct type *index_type,
13758 LONGEST index,
13759 struct ui_file *stream,
13760 const value_print_options *options) const override
13761 {
13762 struct value *index_value = val_atr (index_type, index);
13763
13764 value_print (index_value, stream, options);
13765 fprintf_filtered (stream, " => ");
13766 }
13767
13768 /* Implement the "read_var_value" language_defn method for Ada. */
13769
13770 struct value *read_var_value (struct symbol *var,
13771 const struct block *var_block,
13772 struct frame_info *frame) const override
13773 {
13774 /* The only case where default_read_var_value is not sufficient
13775 is when VAR is a renaming... */
13776 if (frame != nullptr)
13777 {
13778 const struct block *frame_block = get_frame_block (frame, NULL);
13779 if (frame_block != nullptr && ada_is_renaming_symbol (var))
13780 return ada_read_renaming_var_value (var, frame_block);
13781 }
13782
13783 /* This is a typical case where we expect the default_read_var_value
13784 function to work. */
13785 return language_defn::read_var_value (var, var_block, frame);
13786 }
13787
13788 /* See language.h. */
13789 void language_arch_info (struct gdbarch *gdbarch,
13790 struct language_arch_info *lai) const override
13791 {
13792 const struct builtin_type *builtin = builtin_type (gdbarch);
13793
13794 /* Helper function to allow shorter lines below. */
13795 auto add = [&] (struct type *t)
13796 {
13797 lai->add_primitive_type (t);
13798 };
13799
13800 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13801 0, "integer"));
13802 add (arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
13803 0, "long_integer"));
13804 add (arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
13805 0, "short_integer"));
13806 struct type *char_type = arch_character_type (gdbarch, TARGET_CHAR_BIT,
13807 0, "character");
13808 lai->set_string_char_type (char_type);
13809 add (char_type);
13810 add (arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
13811 "float", gdbarch_float_format (gdbarch)));
13812 add (arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
13813 "long_float", gdbarch_double_format (gdbarch)));
13814 add (arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
13815 0, "long_long_integer"));
13816 add (arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
13817 "long_long_float",
13818 gdbarch_long_double_format (gdbarch)));
13819 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13820 0, "natural"));
13821 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13822 0, "positive"));
13823 add (builtin->builtin_void);
13824
13825 struct type *system_addr_ptr
13826 = lookup_pointer_type (arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT,
13827 "void"));
13828 system_addr_ptr->set_name ("system__address");
13829 add (system_addr_ptr);
13830
13831 /* Create the equivalent of the System.Storage_Elements.Storage_Offset
13832 type. This is a signed integral type whose size is the same as
13833 the size of addresses. */
13834 unsigned int addr_length = TYPE_LENGTH (system_addr_ptr);
13835 add (arch_integer_type (gdbarch, addr_length * HOST_CHAR_BIT, 0,
13836 "storage_offset"));
13837
13838 lai->set_bool_type (builtin->builtin_bool);
13839 }
13840
13841 /* See language.h. */
13842
13843 bool iterate_over_symbols
13844 (const struct block *block, const lookup_name_info &name,
13845 domain_enum domain,
13846 gdb::function_view<symbol_found_callback_ftype> callback) const override
13847 {
13848 std::vector<struct block_symbol> results;
13849
13850 ada_lookup_symbol_list_worker (name, block, domain, &results, 0);
13851 for (block_symbol &sym : results)
13852 {
13853 if (!callback (&sym))
13854 return false;
13855 }
13856
13857 return true;
13858 }
13859
13860 /* See language.h. */
13861 bool sniff_from_mangled_name (const char *mangled,
13862 char **out) const override
13863 {
13864 std::string demangled = ada_decode (mangled);
13865
13866 *out = NULL;
13867
13868 if (demangled != mangled && demangled[0] != '<')
13869 {
13870 /* Set the gsymbol language to Ada, but still return 0.
13871 Two reasons for that:
13872
13873 1. For Ada, we prefer computing the symbol's decoded name
13874 on the fly rather than pre-compute it, in order to save
13875 memory (Ada projects are typically very large).
13876
13877 2. There are some areas in the definition of the GNAT
13878 encoding where, with a bit of bad luck, we might be able
13879 to decode a non-Ada symbol, generating an incorrect
13880 demangled name (Eg: names ending with "TB" for instance
13881 are identified as task bodies and so stripped from
13882 the decoded name returned).
13883
13884 Returning true, here, but not setting *DEMANGLED, helps us get
13885 a little bit of the best of both worlds. Because we're last,
13886 we should not affect any of the other languages that were
13887 able to demangle the symbol before us; we get to correctly
13888 tag Ada symbols as such; and even if we incorrectly tagged a
13889 non-Ada symbol, which should be rare, any routing through the
13890 Ada language should be transparent (Ada tries to behave much
13891 like C/C++ with non-Ada symbols). */
13892 return true;
13893 }
13894
13895 return false;
13896 }
13897
13898 /* See language.h. */
13899
13900 char *demangle_symbol (const char *mangled, int options) const override
13901 {
13902 return ada_la_decode (mangled, options);
13903 }
13904
13905 /* See language.h. */
13906
13907 void print_type (struct type *type, const char *varstring,
13908 struct ui_file *stream, int show, int level,
13909 const struct type_print_options *flags) const override
13910 {
13911 ada_print_type (type, varstring, stream, show, level, flags);
13912 }
13913
13914 /* See language.h. */
13915
13916 const char *word_break_characters (void) const override
13917 {
13918 return ada_completer_word_break_characters;
13919 }
13920
13921 /* See language.h. */
13922
13923 void collect_symbol_completion_matches (completion_tracker &tracker,
13924 complete_symbol_mode mode,
13925 symbol_name_match_type name_match_type,
13926 const char *text, const char *word,
13927 enum type_code code) const override
13928 {
13929 struct symbol *sym;
13930 const struct block *b, *surrounding_static_block = 0;
13931 struct block_iterator iter;
13932
13933 gdb_assert (code == TYPE_CODE_UNDEF);
13934
13935 lookup_name_info lookup_name (text, name_match_type, true);
13936
13937 /* First, look at the partial symtab symbols. */
13938 expand_symtabs_matching (NULL,
13939 lookup_name,
13940 NULL,
13941 NULL,
13942 ALL_DOMAIN);
13943
13944 /* At this point scan through the misc symbol vectors and add each
13945 symbol you find to the list. Eventually we want to ignore
13946 anything that isn't a text symbol (everything else will be
13947 handled by the psymtab code above). */
13948
13949 for (objfile *objfile : current_program_space->objfiles ())
13950 {
13951 for (minimal_symbol *msymbol : objfile->msymbols ())
13952 {
13953 QUIT;
13954
13955 if (completion_skip_symbol (mode, msymbol))
13956 continue;
13957
13958 language symbol_language = msymbol->language ();
13959
13960 /* Ada minimal symbols won't have their language set to Ada. If
13961 we let completion_list_add_name compare using the
13962 default/C-like matcher, then when completing e.g., symbols in a
13963 package named "pck", we'd match internal Ada symbols like
13964 "pckS", which are invalid in an Ada expression, unless you wrap
13965 them in '<' '>' to request a verbatim match.
13966
13967 Unfortunately, some Ada encoded names successfully demangle as
13968 C++ symbols (using an old mangling scheme), such as "name__2Xn"
13969 -> "Xn::name(void)" and thus some Ada minimal symbols end up
13970 with the wrong language set. Paper over that issue here. */
13971 if (symbol_language == language_auto
13972 || symbol_language == language_cplus)
13973 symbol_language = language_ada;
13974
13975 completion_list_add_name (tracker,
13976 symbol_language,
13977 msymbol->linkage_name (),
13978 lookup_name, text, word);
13979 }
13980 }
13981
13982 /* Search upwards from currently selected frame (so that we can
13983 complete on local vars. */
13984
13985 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
13986 {
13987 if (!BLOCK_SUPERBLOCK (b))
13988 surrounding_static_block = b; /* For elmin of dups */
13989
13990 ALL_BLOCK_SYMBOLS (b, iter, sym)
13991 {
13992 if (completion_skip_symbol (mode, sym))
13993 continue;
13994
13995 completion_list_add_name (tracker,
13996 sym->language (),
13997 sym->linkage_name (),
13998 lookup_name, text, word);
13999 }
14000 }
14001
14002 /* Go through the symtabs and check the externs and statics for
14003 symbols which match. */
14004
14005 for (objfile *objfile : current_program_space->objfiles ())
14006 {
14007 for (compunit_symtab *s : objfile->compunits ())
14008 {
14009 QUIT;
14010 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), GLOBAL_BLOCK);
14011 ALL_BLOCK_SYMBOLS (b, iter, sym)
14012 {
14013 if (completion_skip_symbol (mode, sym))
14014 continue;
14015
14016 completion_list_add_name (tracker,
14017 sym->language (),
14018 sym->linkage_name (),
14019 lookup_name, text, word);
14020 }
14021 }
14022 }
14023
14024 for (objfile *objfile : current_program_space->objfiles ())
14025 {
14026 for (compunit_symtab *s : objfile->compunits ())
14027 {
14028 QUIT;
14029 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), STATIC_BLOCK);
14030 /* Don't do this block twice. */
14031 if (b == surrounding_static_block)
14032 continue;
14033 ALL_BLOCK_SYMBOLS (b, iter, sym)
14034 {
14035 if (completion_skip_symbol (mode, sym))
14036 continue;
14037
14038 completion_list_add_name (tracker,
14039 sym->language (),
14040 sym->linkage_name (),
14041 lookup_name, text, word);
14042 }
14043 }
14044 }
14045 }
14046
14047 /* See language.h. */
14048
14049 gdb::unique_xmalloc_ptr<char> watch_location_expression
14050 (struct type *type, CORE_ADDR addr) const override
14051 {
14052 type = check_typedef (TYPE_TARGET_TYPE (check_typedef (type)));
14053 std::string name = type_to_string (type);
14054 return gdb::unique_xmalloc_ptr<char>
14055 (xstrprintf ("{%s} %s", name.c_str (), core_addr_to_string (addr)));
14056 }
14057
14058 /* See language.h. */
14059
14060 void value_print (struct value *val, struct ui_file *stream,
14061 const struct value_print_options *options) const override
14062 {
14063 return ada_value_print (val, stream, options);
14064 }
14065
14066 /* See language.h. */
14067
14068 void value_print_inner
14069 (struct value *val, struct ui_file *stream, int recurse,
14070 const struct value_print_options *options) const override
14071 {
14072 return ada_value_print_inner (val, stream, recurse, options);
14073 }
14074
14075 /* See language.h. */
14076
14077 struct block_symbol lookup_symbol_nonlocal
14078 (const char *name, const struct block *block,
14079 const domain_enum domain) const override
14080 {
14081 struct block_symbol sym;
14082
14083 sym = ada_lookup_symbol (name, block_static_block (block), domain);
14084 if (sym.symbol != NULL)
14085 return sym;
14086
14087 /* If we haven't found a match at this point, try the primitive
14088 types. In other languages, this search is performed before
14089 searching for global symbols in order to short-circuit that
14090 global-symbol search if it happens that the name corresponds
14091 to a primitive type. But we cannot do the same in Ada, because
14092 it is perfectly legitimate for a program to declare a type which
14093 has the same name as a standard type. If looking up a type in
14094 that situation, we have traditionally ignored the primitive type
14095 in favor of user-defined types. This is why, unlike most other
14096 languages, we search the primitive types this late and only after
14097 having searched the global symbols without success. */
14098
14099 if (domain == VAR_DOMAIN)
14100 {
14101 struct gdbarch *gdbarch;
14102
14103 if (block == NULL)
14104 gdbarch = target_gdbarch ();
14105 else
14106 gdbarch = block_gdbarch (block);
14107 sym.symbol
14108 = language_lookup_primitive_type_as_symbol (this, gdbarch, name);
14109 if (sym.symbol != NULL)
14110 return sym;
14111 }
14112
14113 return {};
14114 }
14115
14116 /* See language.h. */
14117
14118 int parser (struct parser_state *ps) const override
14119 {
14120 warnings_issued = 0;
14121 return ada_parse (ps);
14122 }
14123
14124 /* See language.h.
14125
14126 Same as evaluate_type (*EXP), but resolves ambiguous symbol references
14127 (marked by OP_VAR_VALUE nodes in which the symbol has an undefined
14128 namespace) and converts operators that are user-defined into
14129 appropriate function calls. If CONTEXT_TYPE is non-null, it provides
14130 a preferred result type [at the moment, only type void has any
14131 effect---causing procedures to be preferred over functions in calls].
14132 A null CONTEXT_TYPE indicates that a non-void return type is
14133 preferred. May change (expand) *EXP. */
14134
14135 void post_parser (expression_up *expp, int void_context_p, int completing,
14136 innermost_block_tracker *tracker) const override
14137 {
14138 struct type *context_type = NULL;
14139 int pc = 0;
14140
14141 if (void_context_p)
14142 context_type = builtin_type ((*expp)->gdbarch)->builtin_void;
14143
14144 resolve_subexp (expp, &pc, 1, context_type, completing, tracker);
14145 }
14146
14147 /* See language.h. */
14148
14149 void emitchar (int ch, struct type *chtype,
14150 struct ui_file *stream, int quoter) const override
14151 {
14152 ada_emit_char (ch, chtype, stream, quoter, 1);
14153 }
14154
14155 /* See language.h. */
14156
14157 void printchar (int ch, struct type *chtype,
14158 struct ui_file *stream) const override
14159 {
14160 ada_printchar (ch, chtype, stream);
14161 }
14162
14163 /* See language.h. */
14164
14165 void printstr (struct ui_file *stream, struct type *elttype,
14166 const gdb_byte *string, unsigned int length,
14167 const char *encoding, int force_ellipses,
14168 const struct value_print_options *options) const override
14169 {
14170 ada_printstr (stream, elttype, string, length, encoding,
14171 force_ellipses, options);
14172 }
14173
14174 /* See language.h. */
14175
14176 void print_typedef (struct type *type, struct symbol *new_symbol,
14177 struct ui_file *stream) const override
14178 {
14179 ada_print_typedef (type, new_symbol, stream);
14180 }
14181
14182 /* See language.h. */
14183
14184 bool is_string_type_p (struct type *type) const override
14185 {
14186 return ada_is_string_type (type);
14187 }
14188
14189 /* See language.h. */
14190
14191 const char *struct_too_deep_ellipsis () const override
14192 { return "(...)"; }
14193
14194 /* See language.h. */
14195
14196 bool c_style_arrays_p () const override
14197 { return false; }
14198
14199 /* See language.h. */
14200
14201 bool store_sym_names_in_linkage_form_p () const override
14202 { return true; }
14203
14204 /* See language.h. */
14205
14206 const struct lang_varobj_ops *varobj_ops () const override
14207 { return &ada_varobj_ops; }
14208
14209 /* See language.h. */
14210
14211 const struct exp_descriptor *expression_ops () const override
14212 { return &ada_exp_descriptor; }
14213
14214 /* See language.h. */
14215
14216 const struct op_print *opcode_print_table () const override
14217 { return ada_op_print_tab; }
14218
14219 protected:
14220 /* See language.h. */
14221
14222 symbol_name_matcher_ftype *get_symbol_name_matcher_inner
14223 (const lookup_name_info &lookup_name) const override
14224 {
14225 return ada_get_symbol_name_matcher (lookup_name);
14226 }
14227 };
14228
14229 /* Single instance of the Ada language class. */
14230
14231 static ada_language ada_language_defn;
14232
14233 /* Command-list for the "set/show ada" prefix command. */
14234 static struct cmd_list_element *set_ada_list;
14235 static struct cmd_list_element *show_ada_list;
14236
14237 static void
14238 initialize_ada_catchpoint_ops (void)
14239 {
14240 struct breakpoint_ops *ops;
14241
14242 initialize_breakpoint_ops ();
14243
14244 ops = &catch_exception_breakpoint_ops;
14245 *ops = bkpt_breakpoint_ops;
14246 ops->allocate_location = allocate_location_exception;
14247 ops->re_set = re_set_exception;
14248 ops->check_status = check_status_exception;
14249 ops->print_it = print_it_exception;
14250 ops->print_one = print_one_exception;
14251 ops->print_mention = print_mention_exception;
14252 ops->print_recreate = print_recreate_exception;
14253
14254 ops = &catch_exception_unhandled_breakpoint_ops;
14255 *ops = bkpt_breakpoint_ops;
14256 ops->allocate_location = allocate_location_exception;
14257 ops->re_set = re_set_exception;
14258 ops->check_status = check_status_exception;
14259 ops->print_it = print_it_exception;
14260 ops->print_one = print_one_exception;
14261 ops->print_mention = print_mention_exception;
14262 ops->print_recreate = print_recreate_exception;
14263
14264 ops = &catch_assert_breakpoint_ops;
14265 *ops = bkpt_breakpoint_ops;
14266 ops->allocate_location = allocate_location_exception;
14267 ops->re_set = re_set_exception;
14268 ops->check_status = check_status_exception;
14269 ops->print_it = print_it_exception;
14270 ops->print_one = print_one_exception;
14271 ops->print_mention = print_mention_exception;
14272 ops->print_recreate = print_recreate_exception;
14273
14274 ops = &catch_handlers_breakpoint_ops;
14275 *ops = bkpt_breakpoint_ops;
14276 ops->allocate_location = allocate_location_exception;
14277 ops->re_set = re_set_exception;
14278 ops->check_status = check_status_exception;
14279 ops->print_it = print_it_exception;
14280 ops->print_one = print_one_exception;
14281 ops->print_mention = print_mention_exception;
14282 ops->print_recreate = print_recreate_exception;
14283 }
14284
14285 /* This module's 'new_objfile' observer. */
14286
14287 static void
14288 ada_new_objfile_observer (struct objfile *objfile)
14289 {
14290 ada_clear_symbol_cache ();
14291 }
14292
14293 /* This module's 'free_objfile' observer. */
14294
14295 static void
14296 ada_free_objfile_observer (struct objfile *objfile)
14297 {
14298 ada_clear_symbol_cache ();
14299 }
14300
14301 void _initialize_ada_language ();
14302 void
14303 _initialize_ada_language ()
14304 {
14305 initialize_ada_catchpoint_ops ();
14306
14307 add_basic_prefix_cmd ("ada", no_class,
14308 _("Prefix command for changing Ada-specific settings."),
14309 &set_ada_list, "set ada ", 0, &setlist);
14310
14311 add_show_prefix_cmd ("ada", no_class,
14312 _("Generic command for showing Ada-specific settings."),
14313 &show_ada_list, "show ada ", 0, &showlist);
14314
14315 add_setshow_boolean_cmd ("trust-PAD-over-XVS", class_obscure,
14316 &trust_pad_over_xvs, _("\
14317 Enable or disable an optimization trusting PAD types over XVS types."), _("\
14318 Show whether an optimization trusting PAD types over XVS types is activated."),
14319 _("\
14320 This is related to the encoding used by the GNAT compiler. The debugger\n\
14321 should normally trust the contents of PAD types, but certain older versions\n\
14322 of GNAT have a bug that sometimes causes the information in the PAD type\n\
14323 to be incorrect. Turning this setting \"off\" allows the debugger to\n\
14324 work around this bug. It is always safe to turn this option \"off\", but\n\
14325 this incurs a slight performance penalty, so it is recommended to NOT change\n\
14326 this option to \"off\" unless necessary."),
14327 NULL, NULL, &set_ada_list, &show_ada_list);
14328
14329 add_setshow_boolean_cmd ("print-signatures", class_vars,
14330 &print_signatures, _("\
14331 Enable or disable the output of formal and return types for functions in the \
14332 overloads selection menu."), _("\
14333 Show whether the output of formal and return types for functions in the \
14334 overloads selection menu is activated."),
14335 NULL, NULL, NULL, &set_ada_list, &show_ada_list);
14336
14337 add_catch_command ("exception", _("\
14338 Catch Ada exceptions, when raised.\n\
14339 Usage: catch exception [ARG] [if CONDITION]\n\
14340 Without any argument, stop when any Ada exception is raised.\n\
14341 If ARG is \"unhandled\" (without the quotes), only stop when the exception\n\
14342 being raised does not have a handler (and will therefore lead to the task's\n\
14343 termination).\n\
14344 Otherwise, the catchpoint only stops when the name of the exception being\n\
14345 raised is the same as ARG.\n\
14346 CONDITION is a boolean expression that is evaluated to see whether the\n\
14347 exception should cause a stop."),
14348 catch_ada_exception_command,
14349 catch_ada_completer,
14350 CATCH_PERMANENT,
14351 CATCH_TEMPORARY);
14352
14353 add_catch_command ("handlers", _("\
14354 Catch Ada exceptions, when handled.\n\
14355 Usage: catch handlers [ARG] [if CONDITION]\n\
14356 Without any argument, stop when any Ada exception is handled.\n\
14357 With an argument, catch only exceptions with the given name.\n\
14358 CONDITION is a boolean expression that is evaluated to see whether the\n\
14359 exception should cause a stop."),
14360 catch_ada_handlers_command,
14361 catch_ada_completer,
14362 CATCH_PERMANENT,
14363 CATCH_TEMPORARY);
14364 add_catch_command ("assert", _("\
14365 Catch failed Ada assertions, when raised.\n\
14366 Usage: catch assert [if CONDITION]\n\
14367 CONDITION is a boolean expression that is evaluated to see whether the\n\
14368 exception should cause a stop."),
14369 catch_assert_command,
14370 NULL,
14371 CATCH_PERMANENT,
14372 CATCH_TEMPORARY);
14373
14374 varsize_limit = 65536;
14375 add_setshow_uinteger_cmd ("varsize-limit", class_support,
14376 &varsize_limit, _("\
14377 Set the maximum number of bytes allowed in a variable-size object."), _("\
14378 Show the maximum number of bytes allowed in a variable-size object."), _("\
14379 Attempts to access an object whose size is not a compile-time constant\n\
14380 and exceeds this limit will cause an error."),
14381 NULL, NULL, &setlist, &showlist);
14382
14383 add_info ("exceptions", info_exceptions_command,
14384 _("\
14385 List all Ada exception names.\n\
14386 Usage: info exceptions [REGEXP]\n\
14387 If a regular expression is passed as an argument, only those matching\n\
14388 the regular expression are listed."));
14389
14390 add_basic_prefix_cmd ("ada", class_maintenance,
14391 _("Set Ada maintenance-related variables."),
14392 &maint_set_ada_cmdlist, "maintenance set ada ",
14393 0/*allow-unknown*/, &maintenance_set_cmdlist);
14394
14395 add_show_prefix_cmd ("ada", class_maintenance,
14396 _("Show Ada maintenance-related variables."),
14397 &maint_show_ada_cmdlist, "maintenance show ada ",
14398 0/*allow-unknown*/, &maintenance_show_cmdlist);
14399
14400 add_setshow_boolean_cmd
14401 ("ignore-descriptive-types", class_maintenance,
14402 &ada_ignore_descriptive_types_p,
14403 _("Set whether descriptive types generated by GNAT should be ignored."),
14404 _("Show whether descriptive types generated by GNAT should be ignored."),
14405 _("\
14406 When enabled, the debugger will stop using the DW_AT_GNAT_descriptive_type\n\
14407 DWARF attribute."),
14408 NULL, NULL, &maint_set_ada_cmdlist, &maint_show_ada_cmdlist);
14409
14410 decoded_names_store = htab_create_alloc (256, htab_hash_string, streq_hash,
14411 NULL, xcalloc, xfree);
14412
14413 /* The ada-lang observers. */
14414 gdb::observers::new_objfile.attach (ada_new_objfile_observer);
14415 gdb::observers::free_objfile.attach (ada_free_objfile_observer);
14416 gdb::observers::inferior_exit.attach (ada_inferior_exit);
14417 }