c3e562c0bc90fb4debd3c37ec415d37aea863e5e
[binutils-gdb.git] / gdb / ada-lang.c
1 /* Ada language support routines for GDB, the GNU debugger.
2
3 Copyright (C) 1992-2021 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 *, std::vector<LONGEST> &,
224 LONGEST, LONGEST);
225
226 static void aggregate_assign_positional (struct value *, struct value *,
227 struct expression *,
228 int *, std::vector<LONGEST> &,
229 LONGEST, LONGEST);
230
231
232 static void aggregate_assign_others (struct value *, struct value *,
233 struct expression *,
234 int *, std::vector<LONGEST> &,
235 LONGEST, LONGEST);
236
237
238 static void add_component_interval (LONGEST, LONGEST, std::vector<LONGEST> &);
239
240
241 static struct value *ada_evaluate_subexp (struct type *, struct expression *,
242 int *, enum noside);
243
244 static void ada_forward_operator_length (struct expression *, int, int *,
245 int *);
246
247 static struct type *ada_find_any_type (const char *name);
248
249 static symbol_name_matcher_ftype *ada_get_symbol_name_matcher
250 (const lookup_name_info &lookup_name);
251
252 \f
253
254 /* The result of a symbol lookup to be stored in our symbol cache. */
255
256 struct cache_entry
257 {
258 /* The name used to perform the lookup. */
259 const char *name;
260 /* The namespace used during the lookup. */
261 domain_enum domain;
262 /* The symbol returned by the lookup, or NULL if no matching symbol
263 was found. */
264 struct symbol *sym;
265 /* The block where the symbol was found, or NULL if no matching
266 symbol was found. */
267 const struct block *block;
268 /* A pointer to the next entry with the same hash. */
269 struct cache_entry *next;
270 };
271
272 /* The Ada symbol cache, used to store the result of Ada-mode symbol
273 lookups in the course of executing the user's commands.
274
275 The cache is implemented using a simple, fixed-sized hash.
276 The size is fixed on the grounds that there are not likely to be
277 all that many symbols looked up during any given session, regardless
278 of the size of the symbol table. If we decide to go to a resizable
279 table, let's just use the stuff from libiberty instead. */
280
281 #define HASH_SIZE 1009
282
283 struct ada_symbol_cache
284 {
285 /* An obstack used to store the entries in our cache. */
286 struct auto_obstack cache_space;
287
288 /* The root of the hash table used to implement our symbol cache. */
289 struct cache_entry *root[HASH_SIZE] {};
290 };
291
292 /* Maximum-sized dynamic type. */
293 static unsigned int varsize_limit;
294
295 static const char ada_completer_word_break_characters[] =
296 #ifdef VMS
297 " \t\n!@#%^&*()+=|~`}{[]\";:?/,-";
298 #else
299 " \t\n!@#$%^&*()+=|~`}{[]\";:?/,-";
300 #endif
301
302 /* The name of the symbol to use to get the name of the main subprogram. */
303 static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[]
304 = "__gnat_ada_main_program_name";
305
306 /* Limit on the number of warnings to raise per expression evaluation. */
307 static int warning_limit = 2;
308
309 /* Number of warning messages issued; reset to 0 by cleanups after
310 expression evaluation. */
311 static int warnings_issued = 0;
312
313 static const char * const known_runtime_file_name_patterns[] = {
314 ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL
315 };
316
317 static const char * const known_auxiliary_function_name_patterns[] = {
318 ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL
319 };
320
321 /* Maintenance-related settings for this module. */
322
323 static struct cmd_list_element *maint_set_ada_cmdlist;
324 static struct cmd_list_element *maint_show_ada_cmdlist;
325
326 /* The "maintenance ada set/show ignore-descriptive-type" value. */
327
328 static bool ada_ignore_descriptive_types_p = false;
329
330 /* Inferior-specific data. */
331
332 /* Per-inferior data for this module. */
333
334 struct ada_inferior_data
335 {
336 /* The ada__tags__type_specific_data type, which is used when decoding
337 tagged types. With older versions of GNAT, this type was directly
338 accessible through a component ("tsd") in the object tag. But this
339 is no longer the case, so we cache it for each inferior. */
340 struct type *tsd_type = nullptr;
341
342 /* The exception_support_info data. This data is used to determine
343 how to implement support for Ada exception catchpoints in a given
344 inferior. */
345 const struct exception_support_info *exception_info = nullptr;
346 };
347
348 /* Our key to this module's inferior data. */
349 static const struct inferior_key<ada_inferior_data> ada_inferior_data;
350
351 /* Return our inferior data for the given inferior (INF).
352
353 This function always returns a valid pointer to an allocated
354 ada_inferior_data structure. If INF's inferior data has not
355 been previously set, this functions creates a new one with all
356 fields set to zero, sets INF's inferior to it, and then returns
357 a pointer to that newly allocated ada_inferior_data. */
358
359 static struct ada_inferior_data *
360 get_ada_inferior_data (struct inferior *inf)
361 {
362 struct ada_inferior_data *data;
363
364 data = ada_inferior_data.get (inf);
365 if (data == NULL)
366 data = ada_inferior_data.emplace (inf);
367
368 return data;
369 }
370
371 /* Perform all necessary cleanups regarding our module's inferior data
372 that is required after the inferior INF just exited. */
373
374 static void
375 ada_inferior_exit (struct inferior *inf)
376 {
377 ada_inferior_data.clear (inf);
378 }
379
380
381 /* program-space-specific data. */
382
383 /* This module's per-program-space data. */
384 struct ada_pspace_data
385 {
386 /* The Ada symbol cache. */
387 std::unique_ptr<ada_symbol_cache> sym_cache;
388 };
389
390 /* Key to our per-program-space data. */
391 static const struct program_space_key<ada_pspace_data> ada_pspace_data_handle;
392
393 /* Return this module's data for the given program space (PSPACE).
394 If not is found, add a zero'ed one now.
395
396 This function always returns a valid object. */
397
398 static struct ada_pspace_data *
399 get_ada_pspace_data (struct program_space *pspace)
400 {
401 struct ada_pspace_data *data;
402
403 data = ada_pspace_data_handle.get (pspace);
404 if (data == NULL)
405 data = ada_pspace_data_handle.emplace (pspace);
406
407 return data;
408 }
409
410 /* Utilities */
411
412 /* If TYPE is a TYPE_CODE_TYPEDEF type, return the target type after
413 all typedef layers have been peeled. Otherwise, return TYPE.
414
415 Normally, we really expect a typedef type to only have 1 typedef layer.
416 In other words, we really expect the target type of a typedef type to be
417 a non-typedef type. This is particularly true for Ada units, because
418 the language does not have a typedef vs not-typedef distinction.
419 In that respect, the Ada compiler has been trying to eliminate as many
420 typedef definitions in the debugging information, since they generally
421 do not bring any extra information (we still use typedef under certain
422 circumstances related mostly to the GNAT encoding).
423
424 Unfortunately, we have seen situations where the debugging information
425 generated by the compiler leads to such multiple typedef layers. For
426 instance, consider the following example with stabs:
427
428 .stabs "pck__float_array___XUP:Tt(0,46)=s16P_ARRAY:(0,47)=[...]"[...]
429 .stabs "pck__float_array___XUP:t(0,36)=(0,46)",128,0,6,0
430
431 This is an error in the debugging information which causes type
432 pck__float_array___XUP to be defined twice, and the second time,
433 it is defined as a typedef of a typedef.
434
435 This is on the fringe of legality as far as debugging information is
436 concerned, and certainly unexpected. But it is easy to handle these
437 situations correctly, so we can afford to be lenient in this case. */
438
439 static struct type *
440 ada_typedef_target_type (struct type *type)
441 {
442 while (type->code () == TYPE_CODE_TYPEDEF)
443 type = TYPE_TARGET_TYPE (type);
444 return type;
445 }
446
447 /* Given DECODED_NAME a string holding a symbol name in its
448 decoded form (ie using the Ada dotted notation), returns
449 its unqualified name. */
450
451 static const char *
452 ada_unqualified_name (const char *decoded_name)
453 {
454 const char *result;
455
456 /* If the decoded name starts with '<', it means that the encoded
457 name does not follow standard naming conventions, and thus that
458 it is not your typical Ada symbol name. Trying to unqualify it
459 is therefore pointless and possibly erroneous. */
460 if (decoded_name[0] == '<')
461 return decoded_name;
462
463 result = strrchr (decoded_name, '.');
464 if (result != NULL)
465 result++; /* Skip the dot... */
466 else
467 result = decoded_name;
468
469 return result;
470 }
471
472 /* Return a string starting with '<', followed by STR, and '>'. */
473
474 static std::string
475 add_angle_brackets (const char *str)
476 {
477 return string_printf ("<%s>", str);
478 }
479
480 /* Assuming V points to an array of S objects, make sure that it contains at
481 least M objects, updating V and S as necessary. */
482
483 #define GROW_VECT(v, s, m) \
484 if ((s) < (m)) (v) = (char *) grow_vect (v, &(s), m, sizeof *(v));
485
486 /* Assuming VECT points to an array of *SIZE objects of size
487 ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects,
488 updating *SIZE as necessary and returning the (new) array. */
489
490 static void *
491 grow_vect (void *vect, size_t *size, size_t min_size, int element_size)
492 {
493 if (*size < min_size)
494 {
495 *size *= 2;
496 if (*size < min_size)
497 *size = min_size;
498 vect = xrealloc (vect, *size * element_size);
499 }
500 return vect;
501 }
502
503 /* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing
504 suffix of FIELD_NAME beginning "___". */
505
506 static int
507 field_name_match (const char *field_name, const char *target)
508 {
509 int len = strlen (target);
510
511 return
512 (strncmp (field_name, target, len) == 0
513 && (field_name[len] == '\0'
514 || (startswith (field_name + len, "___")
515 && strcmp (field_name + strlen (field_name) - 6,
516 "___XVN") != 0)));
517 }
518
519
520 /* Assuming TYPE is a TYPE_CODE_STRUCT or a TYPE_CODE_TYPDEF to
521 a TYPE_CODE_STRUCT, find the field whose name matches FIELD_NAME,
522 and return its index. This function also handles fields whose name
523 have ___ suffixes because the compiler sometimes alters their name
524 by adding such a suffix to represent fields with certain constraints.
525 If the field could not be found, return a negative number if
526 MAYBE_MISSING is set. Otherwise raise an error. */
527
528 int
529 ada_get_field_index (const struct type *type, const char *field_name,
530 int maybe_missing)
531 {
532 int fieldno;
533 struct type *struct_type = check_typedef ((struct type *) type);
534
535 for (fieldno = 0; fieldno < struct_type->num_fields (); fieldno++)
536 if (field_name_match (TYPE_FIELD_NAME (struct_type, fieldno), field_name))
537 return fieldno;
538
539 if (!maybe_missing)
540 error (_("Unable to find field %s in struct %s. Aborting"),
541 field_name, struct_type->name ());
542
543 return -1;
544 }
545
546 /* The length of the prefix of NAME prior to any "___" suffix. */
547
548 int
549 ada_name_prefix_len (const char *name)
550 {
551 if (name == NULL)
552 return 0;
553 else
554 {
555 const char *p = strstr (name, "___");
556
557 if (p == NULL)
558 return strlen (name);
559 else
560 return p - name;
561 }
562 }
563
564 /* Return non-zero if SUFFIX is a suffix of STR.
565 Return zero if STR is null. */
566
567 static int
568 is_suffix (const char *str, const char *suffix)
569 {
570 int len1, len2;
571
572 if (str == NULL)
573 return 0;
574 len1 = strlen (str);
575 len2 = strlen (suffix);
576 return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0);
577 }
578
579 /* The contents of value VAL, treated as a value of type TYPE. The
580 result is an lval in memory if VAL is. */
581
582 static struct value *
583 coerce_unspec_val_to_type (struct value *val, struct type *type)
584 {
585 type = ada_check_typedef (type);
586 if (value_type (val) == type)
587 return val;
588 else
589 {
590 struct value *result;
591
592 /* Make sure that the object size is not unreasonable before
593 trying to allocate some memory for it. */
594 ada_ensure_varsize_limit (type);
595
596 if (value_optimized_out (val))
597 result = allocate_optimized_out_value (type);
598 else if (value_lazy (val)
599 /* Be careful not to make a lazy not_lval value. */
600 || (VALUE_LVAL (val) != not_lval
601 && TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val))))
602 result = allocate_value_lazy (type);
603 else
604 {
605 result = allocate_value (type);
606 value_contents_copy (result, 0, val, 0, TYPE_LENGTH (type));
607 }
608 set_value_component_location (result, val);
609 set_value_bitsize (result, value_bitsize (val));
610 set_value_bitpos (result, value_bitpos (val));
611 if (VALUE_LVAL (result) == lval_memory)
612 set_value_address (result, value_address (val));
613 return result;
614 }
615 }
616
617 static const gdb_byte *
618 cond_offset_host (const gdb_byte *valaddr, long offset)
619 {
620 if (valaddr == NULL)
621 return NULL;
622 else
623 return valaddr + offset;
624 }
625
626 static CORE_ADDR
627 cond_offset_target (CORE_ADDR address, long offset)
628 {
629 if (address == 0)
630 return 0;
631 else
632 return address + offset;
633 }
634
635 /* Issue a warning (as for the definition of warning in utils.c, but
636 with exactly one argument rather than ...), unless the limit on the
637 number of warnings has passed during the evaluation of the current
638 expression. */
639
640 /* FIXME: cagney/2004-10-10: This function is mimicking the behavior
641 provided by "complaint". */
642 static void lim_warning (const char *format, ...) ATTRIBUTE_PRINTF (1, 2);
643
644 static void
645 lim_warning (const char *format, ...)
646 {
647 va_list args;
648
649 va_start (args, format);
650 warnings_issued += 1;
651 if (warnings_issued <= warning_limit)
652 vwarning (format, args);
653
654 va_end (args);
655 }
656
657 /* Issue an error if the size of an object of type T is unreasonable,
658 i.e. if it would be a bad idea to allocate a value of this type in
659 GDB. */
660
661 void
662 ada_ensure_varsize_limit (const struct type *type)
663 {
664 if (TYPE_LENGTH (type) > varsize_limit)
665 error (_("object size is larger than varsize-limit"));
666 }
667
668 /* Maximum value of a SIZE-byte signed integer type. */
669 static LONGEST
670 max_of_size (int size)
671 {
672 LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2);
673
674 return top_bit | (top_bit - 1);
675 }
676
677 /* Minimum value of a SIZE-byte signed integer type. */
678 static LONGEST
679 min_of_size (int size)
680 {
681 return -max_of_size (size) - 1;
682 }
683
684 /* Maximum value of a SIZE-byte unsigned integer type. */
685 static ULONGEST
686 umax_of_size (int size)
687 {
688 ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1);
689
690 return top_bit | (top_bit - 1);
691 }
692
693 /* Maximum value of integral type T, as a signed quantity. */
694 static LONGEST
695 max_of_type (struct type *t)
696 {
697 if (t->is_unsigned ())
698 return (LONGEST) umax_of_size (TYPE_LENGTH (t));
699 else
700 return max_of_size (TYPE_LENGTH (t));
701 }
702
703 /* Minimum value of integral type T, as a signed quantity. */
704 static LONGEST
705 min_of_type (struct type *t)
706 {
707 if (t->is_unsigned ())
708 return 0;
709 else
710 return min_of_size (TYPE_LENGTH (t));
711 }
712
713 /* The largest value in the domain of TYPE, a discrete type, as an integer. */
714 LONGEST
715 ada_discrete_type_high_bound (struct type *type)
716 {
717 type = resolve_dynamic_type (type, {}, 0);
718 switch (type->code ())
719 {
720 case TYPE_CODE_RANGE:
721 {
722 const dynamic_prop &high = type->bounds ()->high;
723
724 if (high.kind () == PROP_CONST)
725 return high.const_val ();
726 else
727 {
728 gdb_assert (high.kind () == PROP_UNDEFINED);
729
730 /* This happens when trying to evaluate a type's dynamic bound
731 without a live target. There is nothing relevant for us to
732 return here, so return 0. */
733 return 0;
734 }
735 }
736 case TYPE_CODE_ENUM:
737 return TYPE_FIELD_ENUMVAL (type, type->num_fields () - 1);
738 case TYPE_CODE_BOOL:
739 return 1;
740 case TYPE_CODE_CHAR:
741 case TYPE_CODE_INT:
742 return max_of_type (type);
743 default:
744 error (_("Unexpected type in ada_discrete_type_high_bound."));
745 }
746 }
747
748 /* The smallest value in the domain of TYPE, a discrete type, as an integer. */
749 LONGEST
750 ada_discrete_type_low_bound (struct type *type)
751 {
752 type = resolve_dynamic_type (type, {}, 0);
753 switch (type->code ())
754 {
755 case TYPE_CODE_RANGE:
756 {
757 const dynamic_prop &low = type->bounds ()->low;
758
759 if (low.kind () == PROP_CONST)
760 return low.const_val ();
761 else
762 {
763 gdb_assert (low.kind () == PROP_UNDEFINED);
764
765 /* This happens when trying to evaluate a type's dynamic bound
766 without a live target. There is nothing relevant for us to
767 return here, so return 0. */
768 return 0;
769 }
770 }
771 case TYPE_CODE_ENUM:
772 return TYPE_FIELD_ENUMVAL (type, 0);
773 case TYPE_CODE_BOOL:
774 return 0;
775 case TYPE_CODE_CHAR:
776 case TYPE_CODE_INT:
777 return min_of_type (type);
778 default:
779 error (_("Unexpected type in ada_discrete_type_low_bound."));
780 }
781 }
782
783 /* The identity on non-range types. For range types, the underlying
784 non-range scalar type. */
785
786 static struct type *
787 get_base_type (struct type *type)
788 {
789 while (type != NULL && type->code () == TYPE_CODE_RANGE)
790 {
791 if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL)
792 return type;
793 type = TYPE_TARGET_TYPE (type);
794 }
795 return type;
796 }
797
798 /* Return a decoded version of the given VALUE. This means returning
799 a value whose type is obtained by applying all the GNAT-specific
800 encodings, making the resulting type a static but standard description
801 of the initial type. */
802
803 struct value *
804 ada_get_decoded_value (struct value *value)
805 {
806 struct type *type = ada_check_typedef (value_type (value));
807
808 if (ada_is_array_descriptor_type (type)
809 || (ada_is_constrained_packed_array_type (type)
810 && type->code () != TYPE_CODE_PTR))
811 {
812 if (type->code () == TYPE_CODE_TYPEDEF) /* array access type. */
813 value = ada_coerce_to_simple_array_ptr (value);
814 else
815 value = ada_coerce_to_simple_array (value);
816 }
817 else
818 value = ada_to_fixed_value (value);
819
820 return value;
821 }
822
823 /* Same as ada_get_decoded_value, but with the given TYPE.
824 Because there is no associated actual value for this type,
825 the resulting type might be a best-effort approximation in
826 the case of dynamic types. */
827
828 struct type *
829 ada_get_decoded_type (struct type *type)
830 {
831 type = to_static_fixed_type (type);
832 if (ada_is_constrained_packed_array_type (type))
833 type = ada_coerce_to_simple_array_type (type);
834 return type;
835 }
836
837 \f
838
839 /* Language Selection */
840
841 /* If the main program is in Ada, return language_ada, otherwise return LANG
842 (the main program is in Ada iif the adainit symbol is found). */
843
844 static enum language
845 ada_update_initial_language (enum language lang)
846 {
847 if (lookup_minimal_symbol ("adainit", NULL, NULL).minsym != NULL)
848 return language_ada;
849
850 return lang;
851 }
852
853 /* If the main procedure is written in Ada, then return its name.
854 The result is good until the next call. Return NULL if the main
855 procedure doesn't appear to be in Ada. */
856
857 char *
858 ada_main_name (void)
859 {
860 struct bound_minimal_symbol msym;
861 static gdb::unique_xmalloc_ptr<char> main_program_name;
862
863 /* For Ada, the name of the main procedure is stored in a specific
864 string constant, generated by the binder. Look for that symbol,
865 extract its address, and then read that string. If we didn't find
866 that string, then most probably the main procedure is not written
867 in Ada. */
868 msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL);
869
870 if (msym.minsym != NULL)
871 {
872 CORE_ADDR main_program_name_addr = BMSYMBOL_VALUE_ADDRESS (msym);
873 if (main_program_name_addr == 0)
874 error (_("Invalid address for Ada main program name."));
875
876 main_program_name = target_read_string (main_program_name_addr, 1024);
877 return main_program_name.get ();
878 }
879
880 /* The main procedure doesn't seem to be in Ada. */
881 return NULL;
882 }
883 \f
884 /* Symbols */
885
886 /* Table of Ada operators and their GNAT-encoded names. Last entry is pair
887 of NULLs. */
888
889 const struct ada_opname_map ada_opname_table[] = {
890 {"Oadd", "\"+\"", BINOP_ADD},
891 {"Osubtract", "\"-\"", BINOP_SUB},
892 {"Omultiply", "\"*\"", BINOP_MUL},
893 {"Odivide", "\"/\"", BINOP_DIV},
894 {"Omod", "\"mod\"", BINOP_MOD},
895 {"Orem", "\"rem\"", BINOP_REM},
896 {"Oexpon", "\"**\"", BINOP_EXP},
897 {"Olt", "\"<\"", BINOP_LESS},
898 {"Ole", "\"<=\"", BINOP_LEQ},
899 {"Ogt", "\">\"", BINOP_GTR},
900 {"Oge", "\">=\"", BINOP_GEQ},
901 {"Oeq", "\"=\"", BINOP_EQUAL},
902 {"One", "\"/=\"", BINOP_NOTEQUAL},
903 {"Oand", "\"and\"", BINOP_BITWISE_AND},
904 {"Oor", "\"or\"", BINOP_BITWISE_IOR},
905 {"Oxor", "\"xor\"", BINOP_BITWISE_XOR},
906 {"Oconcat", "\"&\"", BINOP_CONCAT},
907 {"Oabs", "\"abs\"", UNOP_ABS},
908 {"Onot", "\"not\"", UNOP_LOGICAL_NOT},
909 {"Oadd", "\"+\"", UNOP_PLUS},
910 {"Osubtract", "\"-\"", UNOP_NEG},
911 {NULL, NULL}
912 };
913
914 /* The "encoded" form of DECODED, according to GNAT conventions. If
915 THROW_ERRORS, throw an error if invalid operator name is found.
916 Otherwise, return the empty string in that case. */
917
918 static std::string
919 ada_encode_1 (const char *decoded, bool throw_errors)
920 {
921 if (decoded == NULL)
922 return {};
923
924 std::string encoding_buffer;
925 for (const char *p = decoded; *p != '\0'; p += 1)
926 {
927 if (*p == '.')
928 encoding_buffer.append ("__");
929 else if (*p == '"')
930 {
931 const struct ada_opname_map *mapping;
932
933 for (mapping = ada_opname_table;
934 mapping->encoded != NULL
935 && !startswith (p, mapping->decoded); mapping += 1)
936 ;
937 if (mapping->encoded == NULL)
938 {
939 if (throw_errors)
940 error (_("invalid Ada operator name: %s"), p);
941 else
942 return {};
943 }
944 encoding_buffer.append (mapping->encoded);
945 break;
946 }
947 else
948 encoding_buffer.push_back (*p);
949 }
950
951 return encoding_buffer;
952 }
953
954 /* The "encoded" form of DECODED, according to GNAT conventions. */
955
956 std::string
957 ada_encode (const char *decoded)
958 {
959 return ada_encode_1 (decoded, true);
960 }
961
962 /* Return NAME folded to lower case, or, if surrounded by single
963 quotes, unfolded, but with the quotes stripped away. Result good
964 to next call. */
965
966 static char *
967 ada_fold_name (gdb::string_view name)
968 {
969 static char *fold_buffer = NULL;
970 static size_t fold_buffer_size = 0;
971
972 int len = name.size ();
973 GROW_VECT (fold_buffer, fold_buffer_size, len + 1);
974
975 if (!name.empty () && name[0] == '\'')
976 {
977 strncpy (fold_buffer, name.data () + 1, len - 2);
978 fold_buffer[len - 2] = '\000';
979 }
980 else
981 {
982 int i;
983
984 for (i = 0; i < len; i += 1)
985 fold_buffer[i] = tolower (name[i]);
986 fold_buffer[i] = '\0';
987 }
988
989 return fold_buffer;
990 }
991
992 /* Return nonzero if C is either a digit or a lowercase alphabet character. */
993
994 static int
995 is_lower_alphanum (const char c)
996 {
997 return (isdigit (c) || (isalpha (c) && islower (c)));
998 }
999
1000 /* ENCODED is the linkage name of a symbol and LEN contains its length.
1001 This function saves in LEN the length of that same symbol name but
1002 without either of these suffixes:
1003 . .{DIGIT}+
1004 . ${DIGIT}+
1005 . ___{DIGIT}+
1006 . __{DIGIT}+.
1007
1008 These are suffixes introduced by the compiler for entities such as
1009 nested subprogram for instance, in order to avoid name clashes.
1010 They do not serve any purpose for the debugger. */
1011
1012 static void
1013 ada_remove_trailing_digits (const char *encoded, int *len)
1014 {
1015 if (*len > 1 && isdigit (encoded[*len - 1]))
1016 {
1017 int i = *len - 2;
1018
1019 while (i > 0 && isdigit (encoded[i]))
1020 i--;
1021 if (i >= 0 && encoded[i] == '.')
1022 *len = i;
1023 else if (i >= 0 && encoded[i] == '$')
1024 *len = i;
1025 else if (i >= 2 && startswith (encoded + i - 2, "___"))
1026 *len = i - 2;
1027 else if (i >= 1 && startswith (encoded + i - 1, "__"))
1028 *len = i - 1;
1029 }
1030 }
1031
1032 /* Remove the suffix introduced by the compiler for protected object
1033 subprograms. */
1034
1035 static void
1036 ada_remove_po_subprogram_suffix (const char *encoded, int *len)
1037 {
1038 /* Remove trailing N. */
1039
1040 /* Protected entry subprograms are broken into two
1041 separate subprograms: The first one is unprotected, and has
1042 a 'N' suffix; the second is the protected version, and has
1043 the 'P' suffix. The second calls the first one after handling
1044 the protection. Since the P subprograms are internally generated,
1045 we leave these names undecoded, giving the user a clue that this
1046 entity is internal. */
1047
1048 if (*len > 1
1049 && encoded[*len - 1] == 'N'
1050 && (isdigit (encoded[*len - 2]) || islower (encoded[*len - 2])))
1051 *len = *len - 1;
1052 }
1053
1054 /* If ENCODED follows the GNAT entity encoding conventions, then return
1055 the decoded form of ENCODED. Otherwise, return "<%s>" where "%s" is
1056 replaced by ENCODED. */
1057
1058 std::string
1059 ada_decode (const char *encoded)
1060 {
1061 int i, j;
1062 int len0;
1063 const char *p;
1064 int at_start_name;
1065 std::string decoded;
1066
1067 /* With function descriptors on PPC64, the value of a symbol named
1068 ".FN", if it exists, is the entry point of the function "FN". */
1069 if (encoded[0] == '.')
1070 encoded += 1;
1071
1072 /* The name of the Ada main procedure starts with "_ada_".
1073 This prefix is not part of the decoded name, so skip this part
1074 if we see this prefix. */
1075 if (startswith (encoded, "_ada_"))
1076 encoded += 5;
1077
1078 /* If the name starts with '_', then it is not a properly encoded
1079 name, so do not attempt to decode it. Similarly, if the name
1080 starts with '<', the name should not be decoded. */
1081 if (encoded[0] == '_' || encoded[0] == '<')
1082 goto Suppress;
1083
1084 len0 = strlen (encoded);
1085
1086 ada_remove_trailing_digits (encoded, &len0);
1087 ada_remove_po_subprogram_suffix (encoded, &len0);
1088
1089 /* Remove the ___X.* suffix if present. Do not forget to verify that
1090 the suffix is located before the current "end" of ENCODED. We want
1091 to avoid re-matching parts of ENCODED that have previously been
1092 marked as discarded (by decrementing LEN0). */
1093 p = strstr (encoded, "___");
1094 if (p != NULL && p - encoded < len0 - 3)
1095 {
1096 if (p[3] == 'X')
1097 len0 = p - encoded;
1098 else
1099 goto Suppress;
1100 }
1101
1102 /* Remove any trailing TKB suffix. It tells us that this symbol
1103 is for the body of a task, but that information does not actually
1104 appear in the decoded name. */
1105
1106 if (len0 > 3 && startswith (encoded + len0 - 3, "TKB"))
1107 len0 -= 3;
1108
1109 /* Remove any trailing TB suffix. The TB suffix is slightly different
1110 from the TKB suffix because it is used for non-anonymous task
1111 bodies. */
1112
1113 if (len0 > 2 && startswith (encoded + len0 - 2, "TB"))
1114 len0 -= 2;
1115
1116 /* Remove trailing "B" suffixes. */
1117 /* FIXME: brobecker/2006-04-19: Not sure what this are used for... */
1118
1119 if (len0 > 1 && startswith (encoded + len0 - 1, "B"))
1120 len0 -= 1;
1121
1122 /* Make decoded big enough for possible expansion by operator name. */
1123
1124 decoded.resize (2 * len0 + 1, 'X');
1125
1126 /* Remove trailing __{digit}+ or trailing ${digit}+. */
1127
1128 if (len0 > 1 && isdigit (encoded[len0 - 1]))
1129 {
1130 i = len0 - 2;
1131 while ((i >= 0 && isdigit (encoded[i]))
1132 || (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1])))
1133 i -= 1;
1134 if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_')
1135 len0 = i - 1;
1136 else if (encoded[i] == '$')
1137 len0 = i;
1138 }
1139
1140 /* The first few characters that are not alphabetic are not part
1141 of any encoding we use, so we can copy them over verbatim. */
1142
1143 for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1)
1144 decoded[j] = encoded[i];
1145
1146 at_start_name = 1;
1147 while (i < len0)
1148 {
1149 /* Is this a symbol function? */
1150 if (at_start_name && encoded[i] == 'O')
1151 {
1152 int k;
1153
1154 for (k = 0; ada_opname_table[k].encoded != NULL; k += 1)
1155 {
1156 int op_len = strlen (ada_opname_table[k].encoded);
1157 if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1,
1158 op_len - 1) == 0)
1159 && !isalnum (encoded[i + op_len]))
1160 {
1161 strcpy (&decoded.front() + j, ada_opname_table[k].decoded);
1162 at_start_name = 0;
1163 i += op_len;
1164 j += strlen (ada_opname_table[k].decoded);
1165 break;
1166 }
1167 }
1168 if (ada_opname_table[k].encoded != NULL)
1169 continue;
1170 }
1171 at_start_name = 0;
1172
1173 /* Replace "TK__" with "__", which will eventually be translated
1174 into "." (just below). */
1175
1176 if (i < len0 - 4 && startswith (encoded + i, "TK__"))
1177 i += 2;
1178
1179 /* Replace "__B_{DIGITS}+__" sequences by "__", which will eventually
1180 be translated into "." (just below). These are internal names
1181 generated for anonymous blocks inside which our symbol is nested. */
1182
1183 if (len0 - i > 5 && encoded [i] == '_' && encoded [i+1] == '_'
1184 && encoded [i+2] == 'B' && encoded [i+3] == '_'
1185 && isdigit (encoded [i+4]))
1186 {
1187 int k = i + 5;
1188
1189 while (k < len0 && isdigit (encoded[k]))
1190 k++; /* Skip any extra digit. */
1191
1192 /* Double-check that the "__B_{DIGITS}+" sequence we found
1193 is indeed followed by "__". */
1194 if (len0 - k > 2 && encoded [k] == '_' && encoded [k+1] == '_')
1195 i = k;
1196 }
1197
1198 /* Remove _E{DIGITS}+[sb] */
1199
1200 /* Just as for protected object subprograms, there are 2 categories
1201 of subprograms created by the compiler for each entry. The first
1202 one implements the actual entry code, and has a suffix following
1203 the convention above; the second one implements the barrier and
1204 uses the same convention as above, except that the 'E' is replaced
1205 by a 'B'.
1206
1207 Just as above, we do not decode the name of barrier functions
1208 to give the user a clue that the code he is debugging has been
1209 internally generated. */
1210
1211 if (len0 - i > 3 && encoded [i] == '_' && encoded[i+1] == 'E'
1212 && isdigit (encoded[i+2]))
1213 {
1214 int k = i + 3;
1215
1216 while (k < len0 && isdigit (encoded[k]))
1217 k++;
1218
1219 if (k < len0
1220 && (encoded[k] == 'b' || encoded[k] == 's'))
1221 {
1222 k++;
1223 /* Just as an extra precaution, make sure that if this
1224 suffix is followed by anything else, it is a '_'.
1225 Otherwise, we matched this sequence by accident. */
1226 if (k == len0
1227 || (k < len0 && encoded[k] == '_'))
1228 i = k;
1229 }
1230 }
1231
1232 /* Remove trailing "N" in [a-z0-9]+N__. The N is added by
1233 the GNAT front-end in protected object subprograms. */
1234
1235 if (i < len0 + 3
1236 && encoded[i] == 'N' && encoded[i+1] == '_' && encoded[i+2] == '_')
1237 {
1238 /* Backtrack a bit up until we reach either the begining of
1239 the encoded name, or "__". Make sure that we only find
1240 digits or lowercase characters. */
1241 const char *ptr = encoded + i - 1;
1242
1243 while (ptr >= encoded && is_lower_alphanum (ptr[0]))
1244 ptr--;
1245 if (ptr < encoded
1246 || (ptr > encoded && ptr[0] == '_' && ptr[-1] == '_'))
1247 i++;
1248 }
1249
1250 if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1]))
1251 {
1252 /* This is a X[bn]* sequence not separated from the previous
1253 part of the name with a non-alpha-numeric character (in other
1254 words, immediately following an alpha-numeric character), then
1255 verify that it is placed at the end of the encoded name. If
1256 not, then the encoding is not valid and we should abort the
1257 decoding. Otherwise, just skip it, it is used in body-nested
1258 package names. */
1259 do
1260 i += 1;
1261 while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n'));
1262 if (i < len0)
1263 goto Suppress;
1264 }
1265 else if (i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_')
1266 {
1267 /* Replace '__' by '.'. */
1268 decoded[j] = '.';
1269 at_start_name = 1;
1270 i += 2;
1271 j += 1;
1272 }
1273 else
1274 {
1275 /* It's a character part of the decoded name, so just copy it
1276 over. */
1277 decoded[j] = encoded[i];
1278 i += 1;
1279 j += 1;
1280 }
1281 }
1282 decoded.resize (j);
1283
1284 /* Decoded names should never contain any uppercase character.
1285 Double-check this, and abort the decoding if we find one. */
1286
1287 for (i = 0; i < decoded.length(); ++i)
1288 if (isupper (decoded[i]) || decoded[i] == ' ')
1289 goto Suppress;
1290
1291 return decoded;
1292
1293 Suppress:
1294 if (encoded[0] == '<')
1295 decoded = encoded;
1296 else
1297 decoded = '<' + std::string(encoded) + '>';
1298 return decoded;
1299
1300 }
1301
1302 /* Table for keeping permanent unique copies of decoded names. Once
1303 allocated, names in this table are never released. While this is a
1304 storage leak, it should not be significant unless there are massive
1305 changes in the set of decoded names in successive versions of a
1306 symbol table loaded during a single session. */
1307 static struct htab *decoded_names_store;
1308
1309 /* Returns the decoded name of GSYMBOL, as for ada_decode, caching it
1310 in the language-specific part of GSYMBOL, if it has not been
1311 previously computed. Tries to save the decoded name in the same
1312 obstack as GSYMBOL, if possible, and otherwise on the heap (so that,
1313 in any case, the decoded symbol has a lifetime at least that of
1314 GSYMBOL).
1315 The GSYMBOL parameter is "mutable" in the C++ sense: logically
1316 const, but nevertheless modified to a semantically equivalent form
1317 when a decoded name is cached in it. */
1318
1319 const char *
1320 ada_decode_symbol (const struct general_symbol_info *arg)
1321 {
1322 struct general_symbol_info *gsymbol = (struct general_symbol_info *) arg;
1323 const char **resultp =
1324 &gsymbol->language_specific.demangled_name;
1325
1326 if (!gsymbol->ada_mangled)
1327 {
1328 std::string decoded = ada_decode (gsymbol->linkage_name ());
1329 struct obstack *obstack = gsymbol->language_specific.obstack;
1330
1331 gsymbol->ada_mangled = 1;
1332
1333 if (obstack != NULL)
1334 *resultp = obstack_strdup (obstack, decoded.c_str ());
1335 else
1336 {
1337 /* Sometimes, we can't find a corresponding objfile, in
1338 which case, we put the result on the heap. Since we only
1339 decode when needed, we hope this usually does not cause a
1340 significant memory leak (FIXME). */
1341
1342 char **slot = (char **) htab_find_slot (decoded_names_store,
1343 decoded.c_str (), INSERT);
1344
1345 if (*slot == NULL)
1346 *slot = xstrdup (decoded.c_str ());
1347 *resultp = *slot;
1348 }
1349 }
1350
1351 return *resultp;
1352 }
1353
1354 static char *
1355 ada_la_decode (const char *encoded, int options)
1356 {
1357 return xstrdup (ada_decode (encoded).c_str ());
1358 }
1359
1360 \f
1361
1362 /* Arrays */
1363
1364 /* Assuming that INDEX_DESC_TYPE is an ___XA structure, a structure
1365 generated by the GNAT compiler to describe the index type used
1366 for each dimension of an array, check whether it follows the latest
1367 known encoding. If not, fix it up to conform to the latest encoding.
1368 Otherwise, do nothing. This function also does nothing if
1369 INDEX_DESC_TYPE is NULL.
1370
1371 The GNAT encoding used to describe the array index type evolved a bit.
1372 Initially, the information would be provided through the name of each
1373 field of the structure type only, while the type of these fields was
1374 described as unspecified and irrelevant. The debugger was then expected
1375 to perform a global type lookup using the name of that field in order
1376 to get access to the full index type description. Because these global
1377 lookups can be very expensive, the encoding was later enhanced to make
1378 the global lookup unnecessary by defining the field type as being
1379 the full index type description.
1380
1381 The purpose of this routine is to allow us to support older versions
1382 of the compiler by detecting the use of the older encoding, and by
1383 fixing up the INDEX_DESC_TYPE to follow the new one (at this point,
1384 we essentially replace each field's meaningless type by the associated
1385 index subtype). */
1386
1387 void
1388 ada_fixup_array_indexes_type (struct type *index_desc_type)
1389 {
1390 int i;
1391
1392 if (index_desc_type == NULL)
1393 return;
1394 gdb_assert (index_desc_type->num_fields () > 0);
1395
1396 /* Check if INDEX_DESC_TYPE follows the older encoding (it is sufficient
1397 to check one field only, no need to check them all). If not, return
1398 now.
1399
1400 If our INDEX_DESC_TYPE was generated using the older encoding,
1401 the field type should be a meaningless integer type whose name
1402 is not equal to the field name. */
1403 if (index_desc_type->field (0).type ()->name () != NULL
1404 && strcmp (index_desc_type->field (0).type ()->name (),
1405 TYPE_FIELD_NAME (index_desc_type, 0)) == 0)
1406 return;
1407
1408 /* Fixup each field of INDEX_DESC_TYPE. */
1409 for (i = 0; i < index_desc_type->num_fields (); i++)
1410 {
1411 const char *name = TYPE_FIELD_NAME (index_desc_type, i);
1412 struct type *raw_type = ada_check_typedef (ada_find_any_type (name));
1413
1414 if (raw_type)
1415 index_desc_type->field (i).set_type (raw_type);
1416 }
1417 }
1418
1419 /* The desc_* routines return primitive portions of array descriptors
1420 (fat pointers). */
1421
1422 /* The descriptor or array type, if any, indicated by TYPE; removes
1423 level of indirection, if needed. */
1424
1425 static struct type *
1426 desc_base_type (struct type *type)
1427 {
1428 if (type == NULL)
1429 return NULL;
1430 type = ada_check_typedef (type);
1431 if (type->code () == TYPE_CODE_TYPEDEF)
1432 type = ada_typedef_target_type (type);
1433
1434 if (type != NULL
1435 && (type->code () == TYPE_CODE_PTR
1436 || type->code () == TYPE_CODE_REF))
1437 return ada_check_typedef (TYPE_TARGET_TYPE (type));
1438 else
1439 return type;
1440 }
1441
1442 /* True iff TYPE indicates a "thin" array pointer type. */
1443
1444 static int
1445 is_thin_pntr (struct type *type)
1446 {
1447 return
1448 is_suffix (ada_type_name (desc_base_type (type)), "___XUT")
1449 || is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE");
1450 }
1451
1452 /* The descriptor type for thin pointer type TYPE. */
1453
1454 static struct type *
1455 thin_descriptor_type (struct type *type)
1456 {
1457 struct type *base_type = desc_base_type (type);
1458
1459 if (base_type == NULL)
1460 return NULL;
1461 if (is_suffix (ada_type_name (base_type), "___XVE"))
1462 return base_type;
1463 else
1464 {
1465 struct type *alt_type = ada_find_parallel_type (base_type, "___XVE");
1466
1467 if (alt_type == NULL)
1468 return base_type;
1469 else
1470 return alt_type;
1471 }
1472 }
1473
1474 /* A pointer to the array data for thin-pointer value VAL. */
1475
1476 static struct value *
1477 thin_data_pntr (struct value *val)
1478 {
1479 struct type *type = ada_check_typedef (value_type (val));
1480 struct type *data_type = desc_data_target_type (thin_descriptor_type (type));
1481
1482 data_type = lookup_pointer_type (data_type);
1483
1484 if (type->code () == TYPE_CODE_PTR)
1485 return value_cast (data_type, value_copy (val));
1486 else
1487 return value_from_longest (data_type, value_address (val));
1488 }
1489
1490 /* True iff TYPE indicates a "thick" array pointer type. */
1491
1492 static int
1493 is_thick_pntr (struct type *type)
1494 {
1495 type = desc_base_type (type);
1496 return (type != NULL && type->code () == TYPE_CODE_STRUCT
1497 && lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL);
1498 }
1499
1500 /* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1501 pointer to one, the type of its bounds data; otherwise, NULL. */
1502
1503 static struct type *
1504 desc_bounds_type (struct type *type)
1505 {
1506 struct type *r;
1507
1508 type = desc_base_type (type);
1509
1510 if (type == NULL)
1511 return NULL;
1512 else if (is_thin_pntr (type))
1513 {
1514 type = thin_descriptor_type (type);
1515 if (type == NULL)
1516 return NULL;
1517 r = lookup_struct_elt_type (type, "BOUNDS", 1);
1518 if (r != NULL)
1519 return ada_check_typedef (r);
1520 }
1521 else if (type->code () == TYPE_CODE_STRUCT)
1522 {
1523 r = lookup_struct_elt_type (type, "P_BOUNDS", 1);
1524 if (r != NULL)
1525 return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r)));
1526 }
1527 return NULL;
1528 }
1529
1530 /* If ARR is an array descriptor (fat or thin pointer), or pointer to
1531 one, a pointer to its bounds data. Otherwise NULL. */
1532
1533 static struct value *
1534 desc_bounds (struct value *arr)
1535 {
1536 struct type *type = ada_check_typedef (value_type (arr));
1537
1538 if (is_thin_pntr (type))
1539 {
1540 struct type *bounds_type =
1541 desc_bounds_type (thin_descriptor_type (type));
1542 LONGEST addr;
1543
1544 if (bounds_type == NULL)
1545 error (_("Bad GNAT array descriptor"));
1546
1547 /* NOTE: The following calculation is not really kosher, but
1548 since desc_type is an XVE-encoded type (and shouldn't be),
1549 the correct calculation is a real pain. FIXME (and fix GCC). */
1550 if (type->code () == TYPE_CODE_PTR)
1551 addr = value_as_long (arr);
1552 else
1553 addr = value_address (arr);
1554
1555 return
1556 value_from_longest (lookup_pointer_type (bounds_type),
1557 addr - TYPE_LENGTH (bounds_type));
1558 }
1559
1560 else if (is_thick_pntr (type))
1561 {
1562 struct value *p_bounds = value_struct_elt (&arr, NULL, "P_BOUNDS", NULL,
1563 _("Bad GNAT array descriptor"));
1564 struct type *p_bounds_type = value_type (p_bounds);
1565
1566 if (p_bounds_type
1567 && p_bounds_type->code () == TYPE_CODE_PTR)
1568 {
1569 struct type *target_type = TYPE_TARGET_TYPE (p_bounds_type);
1570
1571 if (target_type->is_stub ())
1572 p_bounds = value_cast (lookup_pointer_type
1573 (ada_check_typedef (target_type)),
1574 p_bounds);
1575 }
1576 else
1577 error (_("Bad GNAT array descriptor"));
1578
1579 return p_bounds;
1580 }
1581 else
1582 return NULL;
1583 }
1584
1585 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1586 position of the field containing the address of the bounds data. */
1587
1588 static int
1589 fat_pntr_bounds_bitpos (struct type *type)
1590 {
1591 return TYPE_FIELD_BITPOS (desc_base_type (type), 1);
1592 }
1593
1594 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1595 size of the field containing the address of the bounds data. */
1596
1597 static int
1598 fat_pntr_bounds_bitsize (struct type *type)
1599 {
1600 type = desc_base_type (type);
1601
1602 if (TYPE_FIELD_BITSIZE (type, 1) > 0)
1603 return TYPE_FIELD_BITSIZE (type, 1);
1604 else
1605 return 8 * TYPE_LENGTH (ada_check_typedef (type->field (1).type ()));
1606 }
1607
1608 /* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1609 pointer to one, the type of its array data (a array-with-no-bounds type);
1610 otherwise, NULL. Use ada_type_of_array to get an array type with bounds
1611 data. */
1612
1613 static struct type *
1614 desc_data_target_type (struct type *type)
1615 {
1616 type = desc_base_type (type);
1617
1618 /* NOTE: The following is bogus; see comment in desc_bounds. */
1619 if (is_thin_pntr (type))
1620 return desc_base_type (thin_descriptor_type (type)->field (1).type ());
1621 else if (is_thick_pntr (type))
1622 {
1623 struct type *data_type = lookup_struct_elt_type (type, "P_ARRAY", 1);
1624
1625 if (data_type
1626 && ada_check_typedef (data_type)->code () == TYPE_CODE_PTR)
1627 return ada_check_typedef (TYPE_TARGET_TYPE (data_type));
1628 }
1629
1630 return NULL;
1631 }
1632
1633 /* If ARR is an array descriptor (fat or thin pointer), a pointer to
1634 its array data. */
1635
1636 static struct value *
1637 desc_data (struct value *arr)
1638 {
1639 struct type *type = value_type (arr);
1640
1641 if (is_thin_pntr (type))
1642 return thin_data_pntr (arr);
1643 else if (is_thick_pntr (type))
1644 return value_struct_elt (&arr, NULL, "P_ARRAY", NULL,
1645 _("Bad GNAT array descriptor"));
1646 else
1647 return NULL;
1648 }
1649
1650
1651 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1652 position of the field containing the address of the data. */
1653
1654 static int
1655 fat_pntr_data_bitpos (struct type *type)
1656 {
1657 return TYPE_FIELD_BITPOS (desc_base_type (type), 0);
1658 }
1659
1660 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1661 size of the field containing the address of the data. */
1662
1663 static int
1664 fat_pntr_data_bitsize (struct type *type)
1665 {
1666 type = desc_base_type (type);
1667
1668 if (TYPE_FIELD_BITSIZE (type, 0) > 0)
1669 return TYPE_FIELD_BITSIZE (type, 0);
1670 else
1671 return TARGET_CHAR_BIT * TYPE_LENGTH (type->field (0).type ());
1672 }
1673
1674 /* If BOUNDS is an array-bounds structure (or pointer to one), return
1675 the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1676 bound, if WHICH is 1. The first bound is I=1. */
1677
1678 static struct value *
1679 desc_one_bound (struct value *bounds, int i, int which)
1680 {
1681 char bound_name[20];
1682 xsnprintf (bound_name, sizeof (bound_name), "%cB%d",
1683 which ? 'U' : 'L', i - 1);
1684 return value_struct_elt (&bounds, NULL, bound_name, NULL,
1685 _("Bad GNAT array descriptor bounds"));
1686 }
1687
1688 /* If BOUNDS is an array-bounds structure type, return the bit position
1689 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1690 bound, if WHICH is 1. The first bound is I=1. */
1691
1692 static int
1693 desc_bound_bitpos (struct type *type, int i, int which)
1694 {
1695 return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2);
1696 }
1697
1698 /* If BOUNDS is an array-bounds structure type, return the bit field size
1699 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1700 bound, if WHICH is 1. The first bound is I=1. */
1701
1702 static int
1703 desc_bound_bitsize (struct type *type, int i, int which)
1704 {
1705 type = desc_base_type (type);
1706
1707 if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0)
1708 return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2);
1709 else
1710 return 8 * TYPE_LENGTH (type->field (2 * i + which - 2).type ());
1711 }
1712
1713 /* If TYPE is the type of an array-bounds structure, the type of its
1714 Ith bound (numbering from 1). Otherwise, NULL. */
1715
1716 static struct type *
1717 desc_index_type (struct type *type, int i)
1718 {
1719 type = desc_base_type (type);
1720
1721 if (type->code () == TYPE_CODE_STRUCT)
1722 {
1723 char bound_name[20];
1724 xsnprintf (bound_name, sizeof (bound_name), "LB%d", i - 1);
1725 return lookup_struct_elt_type (type, bound_name, 1);
1726 }
1727 else
1728 return NULL;
1729 }
1730
1731 /* The number of index positions in the array-bounds type TYPE.
1732 Return 0 if TYPE is NULL. */
1733
1734 static int
1735 desc_arity (struct type *type)
1736 {
1737 type = desc_base_type (type);
1738
1739 if (type != NULL)
1740 return type->num_fields () / 2;
1741 return 0;
1742 }
1743
1744 /* Non-zero iff TYPE is a simple array type (not a pointer to one) or
1745 an array descriptor type (representing an unconstrained array
1746 type). */
1747
1748 static int
1749 ada_is_direct_array_type (struct type *type)
1750 {
1751 if (type == NULL)
1752 return 0;
1753 type = ada_check_typedef (type);
1754 return (type->code () == TYPE_CODE_ARRAY
1755 || ada_is_array_descriptor_type (type));
1756 }
1757
1758 /* Non-zero iff TYPE represents any kind of array in Ada, or a pointer
1759 * to one. */
1760
1761 static int
1762 ada_is_array_type (struct type *type)
1763 {
1764 while (type != NULL
1765 && (type->code () == TYPE_CODE_PTR
1766 || type->code () == TYPE_CODE_REF))
1767 type = TYPE_TARGET_TYPE (type);
1768 return ada_is_direct_array_type (type);
1769 }
1770
1771 /* Non-zero iff TYPE is a simple array type or pointer to one. */
1772
1773 int
1774 ada_is_simple_array_type (struct type *type)
1775 {
1776 if (type == NULL)
1777 return 0;
1778 type = ada_check_typedef (type);
1779 return (type->code () == TYPE_CODE_ARRAY
1780 || (type->code () == TYPE_CODE_PTR
1781 && (ada_check_typedef (TYPE_TARGET_TYPE (type))->code ()
1782 == TYPE_CODE_ARRAY)));
1783 }
1784
1785 /* Non-zero iff TYPE belongs to a GNAT array descriptor. */
1786
1787 int
1788 ada_is_array_descriptor_type (struct type *type)
1789 {
1790 struct type *data_type = desc_data_target_type (type);
1791
1792 if (type == NULL)
1793 return 0;
1794 type = ada_check_typedef (type);
1795 return (data_type != NULL
1796 && data_type->code () == TYPE_CODE_ARRAY
1797 && desc_arity (desc_bounds_type (type)) > 0);
1798 }
1799
1800 /* Non-zero iff type is a partially mal-formed GNAT array
1801 descriptor. FIXME: This is to compensate for some problems with
1802 debugging output from GNAT. Re-examine periodically to see if it
1803 is still needed. */
1804
1805 int
1806 ada_is_bogus_array_descriptor (struct type *type)
1807 {
1808 return
1809 type != NULL
1810 && type->code () == TYPE_CODE_STRUCT
1811 && (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL
1812 || lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL)
1813 && !ada_is_array_descriptor_type (type);
1814 }
1815
1816
1817 /* If ARR has a record type in the form of a standard GNAT array descriptor,
1818 (fat pointer) returns the type of the array data described---specifically,
1819 a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled
1820 in from the descriptor; otherwise, they are left unspecified. If
1821 the ARR denotes a null array descriptor and BOUNDS is non-zero,
1822 returns NULL. The result is simply the type of ARR if ARR is not
1823 a descriptor. */
1824
1825 static struct type *
1826 ada_type_of_array (struct value *arr, int bounds)
1827 {
1828 if (ada_is_constrained_packed_array_type (value_type (arr)))
1829 return decode_constrained_packed_array_type (value_type (arr));
1830
1831 if (!ada_is_array_descriptor_type (value_type (arr)))
1832 return value_type (arr);
1833
1834 if (!bounds)
1835 {
1836 struct type *array_type =
1837 ada_check_typedef (desc_data_target_type (value_type (arr)));
1838
1839 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1840 TYPE_FIELD_BITSIZE (array_type, 0) =
1841 decode_packed_array_bitsize (value_type (arr));
1842
1843 return array_type;
1844 }
1845 else
1846 {
1847 struct type *elt_type;
1848 int arity;
1849 struct value *descriptor;
1850
1851 elt_type = ada_array_element_type (value_type (arr), -1);
1852 arity = ada_array_arity (value_type (arr));
1853
1854 if (elt_type == NULL || arity == 0)
1855 return ada_check_typedef (value_type (arr));
1856
1857 descriptor = desc_bounds (arr);
1858 if (value_as_long (descriptor) == 0)
1859 return NULL;
1860 while (arity > 0)
1861 {
1862 struct type *range_type = alloc_type_copy (value_type (arr));
1863 struct type *array_type = alloc_type_copy (value_type (arr));
1864 struct value *low = desc_one_bound (descriptor, arity, 0);
1865 struct value *high = desc_one_bound (descriptor, arity, 1);
1866
1867 arity -= 1;
1868 create_static_range_type (range_type, value_type (low),
1869 longest_to_int (value_as_long (low)),
1870 longest_to_int (value_as_long (high)));
1871 elt_type = create_array_type (array_type, elt_type, range_type);
1872
1873 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1874 {
1875 /* We need to store the element packed bitsize, as well as
1876 recompute the array size, because it was previously
1877 computed based on the unpacked element size. */
1878 LONGEST lo = value_as_long (low);
1879 LONGEST hi = value_as_long (high);
1880
1881 TYPE_FIELD_BITSIZE (elt_type, 0) =
1882 decode_packed_array_bitsize (value_type (arr));
1883 /* If the array has no element, then the size is already
1884 zero, and does not need to be recomputed. */
1885 if (lo < hi)
1886 {
1887 int array_bitsize =
1888 (hi - lo + 1) * TYPE_FIELD_BITSIZE (elt_type, 0);
1889
1890 TYPE_LENGTH (array_type) = (array_bitsize + 7) / 8;
1891 }
1892 }
1893 }
1894
1895 return lookup_pointer_type (elt_type);
1896 }
1897 }
1898
1899 /* If ARR does not represent an array, returns ARR unchanged.
1900 Otherwise, returns either a standard GDB array with bounds set
1901 appropriately or, if ARR is a non-null fat pointer, a pointer to a standard
1902 GDB array. Returns NULL if ARR is a null fat pointer. */
1903
1904 struct value *
1905 ada_coerce_to_simple_array_ptr (struct value *arr)
1906 {
1907 if (ada_is_array_descriptor_type (value_type (arr)))
1908 {
1909 struct type *arrType = ada_type_of_array (arr, 1);
1910
1911 if (arrType == NULL)
1912 return NULL;
1913 return value_cast (arrType, value_copy (desc_data (arr)));
1914 }
1915 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1916 return decode_constrained_packed_array (arr);
1917 else
1918 return arr;
1919 }
1920
1921 /* If ARR does not represent an array, returns ARR unchanged.
1922 Otherwise, returns a standard GDB array describing ARR (which may
1923 be ARR itself if it already is in the proper form). */
1924
1925 struct value *
1926 ada_coerce_to_simple_array (struct value *arr)
1927 {
1928 if (ada_is_array_descriptor_type (value_type (arr)))
1929 {
1930 struct value *arrVal = ada_coerce_to_simple_array_ptr (arr);
1931
1932 if (arrVal == NULL)
1933 error (_("Bounds unavailable for null array pointer."));
1934 ada_ensure_varsize_limit (TYPE_TARGET_TYPE (value_type (arrVal)));
1935 return value_ind (arrVal);
1936 }
1937 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1938 return decode_constrained_packed_array (arr);
1939 else
1940 return arr;
1941 }
1942
1943 /* If TYPE represents a GNAT array type, return it translated to an
1944 ordinary GDB array type (possibly with BITSIZE fields indicating
1945 packing). For other types, is the identity. */
1946
1947 struct type *
1948 ada_coerce_to_simple_array_type (struct type *type)
1949 {
1950 if (ada_is_constrained_packed_array_type (type))
1951 return decode_constrained_packed_array_type (type);
1952
1953 if (ada_is_array_descriptor_type (type))
1954 return ada_check_typedef (desc_data_target_type (type));
1955
1956 return type;
1957 }
1958
1959 /* Non-zero iff TYPE represents a standard GNAT packed-array type. */
1960
1961 static int
1962 ada_is_gnat_encoded_packed_array_type (struct type *type)
1963 {
1964 if (type == NULL)
1965 return 0;
1966 type = desc_base_type (type);
1967 type = ada_check_typedef (type);
1968 return
1969 ada_type_name (type) != NULL
1970 && strstr (ada_type_name (type), "___XP") != NULL;
1971 }
1972
1973 /* Non-zero iff TYPE represents a standard GNAT constrained
1974 packed-array type. */
1975
1976 int
1977 ada_is_constrained_packed_array_type (struct type *type)
1978 {
1979 return ada_is_gnat_encoded_packed_array_type (type)
1980 && !ada_is_array_descriptor_type (type);
1981 }
1982
1983 /* Non-zero iff TYPE represents an array descriptor for a
1984 unconstrained packed-array type. */
1985
1986 static int
1987 ada_is_unconstrained_packed_array_type (struct type *type)
1988 {
1989 if (!ada_is_array_descriptor_type (type))
1990 return 0;
1991
1992 if (ada_is_gnat_encoded_packed_array_type (type))
1993 return 1;
1994
1995 /* If we saw GNAT encodings, then the above code is sufficient.
1996 However, with minimal encodings, we will just have a thick
1997 pointer instead. */
1998 if (is_thick_pntr (type))
1999 {
2000 type = desc_base_type (type);
2001 /* The structure's first field is a pointer to an array, so this
2002 fetches the array type. */
2003 type = TYPE_TARGET_TYPE (type->field (0).type ());
2004 /* Now we can see if the array elements are packed. */
2005 return TYPE_FIELD_BITSIZE (type, 0) > 0;
2006 }
2007
2008 return 0;
2009 }
2010
2011 /* Return true if TYPE is a (Gnat-encoded) constrained packed array
2012 type, or if it is an ordinary (non-Gnat-encoded) packed array. */
2013
2014 static bool
2015 ada_is_any_packed_array_type (struct type *type)
2016 {
2017 return (ada_is_constrained_packed_array_type (type)
2018 || (type->code () == TYPE_CODE_ARRAY
2019 && TYPE_FIELD_BITSIZE (type, 0) % 8 != 0));
2020 }
2021
2022 /* Given that TYPE encodes a packed array type (constrained or unconstrained),
2023 return the size of its elements in bits. */
2024
2025 static long
2026 decode_packed_array_bitsize (struct type *type)
2027 {
2028 const char *raw_name;
2029 const char *tail;
2030 long bits;
2031
2032 /* Access to arrays implemented as fat pointers are encoded as a typedef
2033 of the fat pointer type. We need the name of the fat pointer type
2034 to do the decoding, so strip the typedef layer. */
2035 if (type->code () == TYPE_CODE_TYPEDEF)
2036 type = ada_typedef_target_type (type);
2037
2038 raw_name = ada_type_name (ada_check_typedef (type));
2039 if (!raw_name)
2040 raw_name = ada_type_name (desc_base_type (type));
2041
2042 if (!raw_name)
2043 return 0;
2044
2045 tail = strstr (raw_name, "___XP");
2046 if (tail == nullptr)
2047 {
2048 gdb_assert (is_thick_pntr (type));
2049 /* The structure's first field is a pointer to an array, so this
2050 fetches the array type. */
2051 type = TYPE_TARGET_TYPE (type->field (0).type ());
2052 /* Now we can see if the array elements are packed. */
2053 return TYPE_FIELD_BITSIZE (type, 0);
2054 }
2055
2056 if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1)
2057 {
2058 lim_warning
2059 (_("could not understand bit size information on packed array"));
2060 return 0;
2061 }
2062
2063 return bits;
2064 }
2065
2066 /* Given that TYPE is a standard GDB array type with all bounds filled
2067 in, and that the element size of its ultimate scalar constituents
2068 (that is, either its elements, or, if it is an array of arrays, its
2069 elements' elements, etc.) is *ELT_BITS, return an identical type,
2070 but with the bit sizes of its elements (and those of any
2071 constituent arrays) recorded in the BITSIZE components of its
2072 TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size
2073 in bits.
2074
2075 Note that, for arrays whose index type has an XA encoding where
2076 a bound references a record discriminant, getting that discriminant,
2077 and therefore the actual value of that bound, is not possible
2078 because none of the given parameters gives us access to the record.
2079 This function assumes that it is OK in the context where it is being
2080 used to return an array whose bounds are still dynamic and where
2081 the length is arbitrary. */
2082
2083 static struct type *
2084 constrained_packed_array_type (struct type *type, long *elt_bits)
2085 {
2086 struct type *new_elt_type;
2087 struct type *new_type;
2088 struct type *index_type_desc;
2089 struct type *index_type;
2090 LONGEST low_bound, high_bound;
2091
2092 type = ada_check_typedef (type);
2093 if (type->code () != TYPE_CODE_ARRAY)
2094 return type;
2095
2096 index_type_desc = ada_find_parallel_type (type, "___XA");
2097 if (index_type_desc)
2098 index_type = to_fixed_range_type (index_type_desc->field (0).type (),
2099 NULL);
2100 else
2101 index_type = type->index_type ();
2102
2103 new_type = alloc_type_copy (type);
2104 new_elt_type =
2105 constrained_packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)),
2106 elt_bits);
2107 create_array_type (new_type, new_elt_type, index_type);
2108 TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits;
2109 new_type->set_name (ada_type_name (type));
2110
2111 if ((check_typedef (index_type)->code () == TYPE_CODE_RANGE
2112 && is_dynamic_type (check_typedef (index_type)))
2113 || !get_discrete_bounds (index_type, &low_bound, &high_bound))
2114 low_bound = high_bound = 0;
2115 if (high_bound < low_bound)
2116 *elt_bits = TYPE_LENGTH (new_type) = 0;
2117 else
2118 {
2119 *elt_bits *= (high_bound - low_bound + 1);
2120 TYPE_LENGTH (new_type) =
2121 (*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2122 }
2123
2124 new_type->set_is_fixed_instance (true);
2125 return new_type;
2126 }
2127
2128 /* The array type encoded by TYPE, where
2129 ada_is_constrained_packed_array_type (TYPE). */
2130
2131 static struct type *
2132 decode_constrained_packed_array_type (struct type *type)
2133 {
2134 const char *raw_name = ada_type_name (ada_check_typedef (type));
2135 char *name;
2136 const char *tail;
2137 struct type *shadow_type;
2138 long bits;
2139
2140 if (!raw_name)
2141 raw_name = ada_type_name (desc_base_type (type));
2142
2143 if (!raw_name)
2144 return NULL;
2145
2146 name = (char *) alloca (strlen (raw_name) + 1);
2147 tail = strstr (raw_name, "___XP");
2148 type = desc_base_type (type);
2149
2150 memcpy (name, raw_name, tail - raw_name);
2151 name[tail - raw_name] = '\000';
2152
2153 shadow_type = ada_find_parallel_type_with_name (type, name);
2154
2155 if (shadow_type == NULL)
2156 {
2157 lim_warning (_("could not find bounds information on packed array"));
2158 return NULL;
2159 }
2160 shadow_type = check_typedef (shadow_type);
2161
2162 if (shadow_type->code () != TYPE_CODE_ARRAY)
2163 {
2164 lim_warning (_("could not understand bounds "
2165 "information on packed array"));
2166 return NULL;
2167 }
2168
2169 bits = decode_packed_array_bitsize (type);
2170 return constrained_packed_array_type (shadow_type, &bits);
2171 }
2172
2173 /* Helper function for decode_constrained_packed_array. Set the field
2174 bitsize on a series of packed arrays. Returns the number of
2175 elements in TYPE. */
2176
2177 static LONGEST
2178 recursively_update_array_bitsize (struct type *type)
2179 {
2180 gdb_assert (type->code () == TYPE_CODE_ARRAY);
2181
2182 LONGEST low, high;
2183 if (!get_discrete_bounds (type->index_type (), &low, &high)
2184 || low > high)
2185 return 0;
2186 LONGEST our_len = high - low + 1;
2187
2188 struct type *elt_type = TYPE_TARGET_TYPE (type);
2189 if (elt_type->code () == TYPE_CODE_ARRAY)
2190 {
2191 LONGEST elt_len = recursively_update_array_bitsize (elt_type);
2192 LONGEST elt_bitsize = elt_len * TYPE_FIELD_BITSIZE (elt_type, 0);
2193 TYPE_FIELD_BITSIZE (type, 0) = elt_bitsize;
2194
2195 TYPE_LENGTH (type) = ((our_len * elt_bitsize + HOST_CHAR_BIT - 1)
2196 / HOST_CHAR_BIT);
2197 }
2198
2199 return our_len;
2200 }
2201
2202 /* Given that ARR is a struct value *indicating a GNAT constrained packed
2203 array, returns a simple array that denotes that array. Its type is a
2204 standard GDB array type except that the BITSIZEs of the array
2205 target types are set to the number of bits in each element, and the
2206 type length is set appropriately. */
2207
2208 static struct value *
2209 decode_constrained_packed_array (struct value *arr)
2210 {
2211 struct type *type;
2212
2213 /* If our value is a pointer, then dereference it. Likewise if
2214 the value is a reference. Make sure that this operation does not
2215 cause the target type to be fixed, as this would indirectly cause
2216 this array to be decoded. The rest of the routine assumes that
2217 the array hasn't been decoded yet, so we use the basic "coerce_ref"
2218 and "value_ind" routines to perform the dereferencing, as opposed
2219 to using "ada_coerce_ref" or "ada_value_ind". */
2220 arr = coerce_ref (arr);
2221 if (ada_check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
2222 arr = value_ind (arr);
2223
2224 type = decode_constrained_packed_array_type (value_type (arr));
2225 if (type == NULL)
2226 {
2227 error (_("can't unpack array"));
2228 return NULL;
2229 }
2230
2231 /* Decoding the packed array type could not correctly set the field
2232 bitsizes for any dimension except the innermost, because the
2233 bounds may be variable and were not passed to that function. So,
2234 we further resolve the array bounds here and then update the
2235 sizes. */
2236 const gdb_byte *valaddr = value_contents_for_printing (arr);
2237 CORE_ADDR address = value_address (arr);
2238 gdb::array_view<const gdb_byte> view
2239 = gdb::make_array_view (valaddr, TYPE_LENGTH (type));
2240 type = resolve_dynamic_type (type, view, address);
2241 recursively_update_array_bitsize (type);
2242
2243 if (type_byte_order (value_type (arr)) == BFD_ENDIAN_BIG
2244 && ada_is_modular_type (value_type (arr)))
2245 {
2246 /* This is a (right-justified) modular type representing a packed
2247 array with no wrapper. In order to interpret the value through
2248 the (left-justified) packed array type we just built, we must
2249 first left-justify it. */
2250 int bit_size, bit_pos;
2251 ULONGEST mod;
2252
2253 mod = ada_modulus (value_type (arr)) - 1;
2254 bit_size = 0;
2255 while (mod > 0)
2256 {
2257 bit_size += 1;
2258 mod >>= 1;
2259 }
2260 bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size;
2261 arr = ada_value_primitive_packed_val (arr, NULL,
2262 bit_pos / HOST_CHAR_BIT,
2263 bit_pos % HOST_CHAR_BIT,
2264 bit_size,
2265 type);
2266 }
2267
2268 return coerce_unspec_val_to_type (arr, type);
2269 }
2270
2271
2272 /* The value of the element of packed array ARR at the ARITY indices
2273 given in IND. ARR must be a simple array. */
2274
2275 static struct value *
2276 value_subscript_packed (struct value *arr, int arity, struct value **ind)
2277 {
2278 int i;
2279 int bits, elt_off, bit_off;
2280 long elt_total_bit_offset;
2281 struct type *elt_type;
2282 struct value *v;
2283
2284 bits = 0;
2285 elt_total_bit_offset = 0;
2286 elt_type = ada_check_typedef (value_type (arr));
2287 for (i = 0; i < arity; i += 1)
2288 {
2289 if (elt_type->code () != TYPE_CODE_ARRAY
2290 || TYPE_FIELD_BITSIZE (elt_type, 0) == 0)
2291 error
2292 (_("attempt to do packed indexing of "
2293 "something other than a packed array"));
2294 else
2295 {
2296 struct type *range_type = elt_type->index_type ();
2297 LONGEST lowerbound, upperbound;
2298 LONGEST idx;
2299
2300 if (!get_discrete_bounds (range_type, &lowerbound, &upperbound))
2301 {
2302 lim_warning (_("don't know bounds of array"));
2303 lowerbound = upperbound = 0;
2304 }
2305
2306 idx = pos_atr (ind[i]);
2307 if (idx < lowerbound || idx > upperbound)
2308 lim_warning (_("packed array index %ld out of bounds"),
2309 (long) idx);
2310 bits = TYPE_FIELD_BITSIZE (elt_type, 0);
2311 elt_total_bit_offset += (idx - lowerbound) * bits;
2312 elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type));
2313 }
2314 }
2315 elt_off = elt_total_bit_offset / HOST_CHAR_BIT;
2316 bit_off = elt_total_bit_offset % HOST_CHAR_BIT;
2317
2318 v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off,
2319 bits, elt_type);
2320 return v;
2321 }
2322
2323 /* Non-zero iff TYPE includes negative integer values. */
2324
2325 static int
2326 has_negatives (struct type *type)
2327 {
2328 switch (type->code ())
2329 {
2330 default:
2331 return 0;
2332 case TYPE_CODE_INT:
2333 return !type->is_unsigned ();
2334 case TYPE_CODE_RANGE:
2335 return type->bounds ()->low.const_val () - type->bounds ()->bias < 0;
2336 }
2337 }
2338
2339 /* With SRC being a buffer containing BIT_SIZE bits of data at BIT_OFFSET,
2340 unpack that data into UNPACKED. UNPACKED_LEN is the size in bytes of
2341 the unpacked buffer.
2342
2343 The size of the unpacked buffer (UNPACKED_LEN) is expected to be large
2344 enough to contain at least BIT_OFFSET bits. If not, an error is raised.
2345
2346 IS_BIG_ENDIAN is nonzero if the data is stored in big endian mode,
2347 zero otherwise.
2348
2349 IS_SIGNED_TYPE is nonzero if the data corresponds to a signed type.
2350
2351 IS_SCALAR is nonzero if the data corresponds to a signed type. */
2352
2353 static void
2354 ada_unpack_from_contents (const gdb_byte *src, int bit_offset, int bit_size,
2355 gdb_byte *unpacked, int unpacked_len,
2356 int is_big_endian, int is_signed_type,
2357 int is_scalar)
2358 {
2359 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2360 int src_idx; /* Index into the source area */
2361 int src_bytes_left; /* Number of source bytes left to process. */
2362 int srcBitsLeft; /* Number of source bits left to move */
2363 int unusedLS; /* Number of bits in next significant
2364 byte of source that are unused */
2365
2366 int unpacked_idx; /* Index into the unpacked buffer */
2367 int unpacked_bytes_left; /* Number of bytes left to set in unpacked. */
2368
2369 unsigned long accum; /* Staging area for bits being transferred */
2370 int accumSize; /* Number of meaningful bits in accum */
2371 unsigned char sign;
2372
2373 /* Transmit bytes from least to most significant; delta is the direction
2374 the indices move. */
2375 int delta = is_big_endian ? -1 : 1;
2376
2377 /* Make sure that unpacked is large enough to receive the BIT_SIZE
2378 bits from SRC. .*/
2379 if ((bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT > unpacked_len)
2380 error (_("Cannot unpack %d bits into buffer of %d bytes"),
2381 bit_size, unpacked_len);
2382
2383 srcBitsLeft = bit_size;
2384 src_bytes_left = src_len;
2385 unpacked_bytes_left = unpacked_len;
2386 sign = 0;
2387
2388 if (is_big_endian)
2389 {
2390 src_idx = src_len - 1;
2391 if (is_signed_type
2392 && ((src[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1))))
2393 sign = ~0;
2394
2395 unusedLS =
2396 (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT)
2397 % HOST_CHAR_BIT;
2398
2399 if (is_scalar)
2400 {
2401 accumSize = 0;
2402 unpacked_idx = unpacked_len - 1;
2403 }
2404 else
2405 {
2406 /* Non-scalar values must be aligned at a byte boundary... */
2407 accumSize =
2408 (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT;
2409 /* ... And are placed at the beginning (most-significant) bytes
2410 of the target. */
2411 unpacked_idx = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT - 1;
2412 unpacked_bytes_left = unpacked_idx + 1;
2413 }
2414 }
2415 else
2416 {
2417 int sign_bit_offset = (bit_size + bit_offset - 1) % 8;
2418
2419 src_idx = unpacked_idx = 0;
2420 unusedLS = bit_offset;
2421 accumSize = 0;
2422
2423 if (is_signed_type && (src[src_len - 1] & (1 << sign_bit_offset)))
2424 sign = ~0;
2425 }
2426
2427 accum = 0;
2428 while (src_bytes_left > 0)
2429 {
2430 /* Mask for removing bits of the next source byte that are not
2431 part of the value. */
2432 unsigned int unusedMSMask =
2433 (1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) -
2434 1;
2435 /* Sign-extend bits for this byte. */
2436 unsigned int signMask = sign & ~unusedMSMask;
2437
2438 accum |=
2439 (((src[src_idx] >> unusedLS) & unusedMSMask) | signMask) << accumSize;
2440 accumSize += HOST_CHAR_BIT - unusedLS;
2441 if (accumSize >= HOST_CHAR_BIT)
2442 {
2443 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2444 accumSize -= HOST_CHAR_BIT;
2445 accum >>= HOST_CHAR_BIT;
2446 unpacked_bytes_left -= 1;
2447 unpacked_idx += delta;
2448 }
2449 srcBitsLeft -= HOST_CHAR_BIT - unusedLS;
2450 unusedLS = 0;
2451 src_bytes_left -= 1;
2452 src_idx += delta;
2453 }
2454 while (unpacked_bytes_left > 0)
2455 {
2456 accum |= sign << accumSize;
2457 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2458 accumSize -= HOST_CHAR_BIT;
2459 if (accumSize < 0)
2460 accumSize = 0;
2461 accum >>= HOST_CHAR_BIT;
2462 unpacked_bytes_left -= 1;
2463 unpacked_idx += delta;
2464 }
2465 }
2466
2467 /* Create a new value of type TYPE from the contents of OBJ starting
2468 at byte OFFSET, and bit offset BIT_OFFSET within that byte,
2469 proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then
2470 assigning through the result will set the field fetched from.
2471 VALADDR is ignored unless OBJ is NULL, in which case,
2472 VALADDR+OFFSET must address the start of storage containing the
2473 packed value. The value returned in this case is never an lval.
2474 Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */
2475
2476 struct value *
2477 ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
2478 long offset, int bit_offset, int bit_size,
2479 struct type *type)
2480 {
2481 struct value *v;
2482 const gdb_byte *src; /* First byte containing data to unpack */
2483 gdb_byte *unpacked;
2484 const int is_scalar = is_scalar_type (type);
2485 const int is_big_endian = type_byte_order (type) == BFD_ENDIAN_BIG;
2486 gdb::byte_vector staging;
2487
2488 type = ada_check_typedef (type);
2489
2490 if (obj == NULL)
2491 src = valaddr + offset;
2492 else
2493 src = value_contents (obj) + offset;
2494
2495 if (is_dynamic_type (type))
2496 {
2497 /* The length of TYPE might by dynamic, so we need to resolve
2498 TYPE in order to know its actual size, which we then use
2499 to create the contents buffer of the value we return.
2500 The difficulty is that the data containing our object is
2501 packed, and therefore maybe not at a byte boundary. So, what
2502 we do, is unpack the data into a byte-aligned buffer, and then
2503 use that buffer as our object's value for resolving the type. */
2504 int staging_len = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2505 staging.resize (staging_len);
2506
2507 ada_unpack_from_contents (src, bit_offset, bit_size,
2508 staging.data (), staging.size (),
2509 is_big_endian, has_negatives (type),
2510 is_scalar);
2511 type = resolve_dynamic_type (type, staging, 0);
2512 if (TYPE_LENGTH (type) < (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT)
2513 {
2514 /* This happens when the length of the object is dynamic,
2515 and is actually smaller than the space reserved for it.
2516 For instance, in an array of variant records, the bit_size
2517 we're given is the array stride, which is constant and
2518 normally equal to the maximum size of its element.
2519 But, in reality, each element only actually spans a portion
2520 of that stride. */
2521 bit_size = TYPE_LENGTH (type) * HOST_CHAR_BIT;
2522 }
2523 }
2524
2525 if (obj == NULL)
2526 {
2527 v = allocate_value (type);
2528 src = valaddr + offset;
2529 }
2530 else if (VALUE_LVAL (obj) == lval_memory && value_lazy (obj))
2531 {
2532 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2533 gdb_byte *buf;
2534
2535 v = value_at (type, value_address (obj) + offset);
2536 buf = (gdb_byte *) alloca (src_len);
2537 read_memory (value_address (v), buf, src_len);
2538 src = buf;
2539 }
2540 else
2541 {
2542 v = allocate_value (type);
2543 src = value_contents (obj) + offset;
2544 }
2545
2546 if (obj != NULL)
2547 {
2548 long new_offset = offset;
2549
2550 set_value_component_location (v, obj);
2551 set_value_bitpos (v, bit_offset + value_bitpos (obj));
2552 set_value_bitsize (v, bit_size);
2553 if (value_bitpos (v) >= HOST_CHAR_BIT)
2554 {
2555 ++new_offset;
2556 set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT);
2557 }
2558 set_value_offset (v, new_offset);
2559
2560 /* Also set the parent value. This is needed when trying to
2561 assign a new value (in inferior memory). */
2562 set_value_parent (v, obj);
2563 }
2564 else
2565 set_value_bitsize (v, bit_size);
2566 unpacked = value_contents_writeable (v);
2567
2568 if (bit_size == 0)
2569 {
2570 memset (unpacked, 0, TYPE_LENGTH (type));
2571 return v;
2572 }
2573
2574 if (staging.size () == TYPE_LENGTH (type))
2575 {
2576 /* Small short-cut: If we've unpacked the data into a buffer
2577 of the same size as TYPE's length, then we can reuse that,
2578 instead of doing the unpacking again. */
2579 memcpy (unpacked, staging.data (), staging.size ());
2580 }
2581 else
2582 ada_unpack_from_contents (src, bit_offset, bit_size,
2583 unpacked, TYPE_LENGTH (type),
2584 is_big_endian, has_negatives (type), is_scalar);
2585
2586 return v;
2587 }
2588
2589 /* Store the contents of FROMVAL into the location of TOVAL.
2590 Return a new value with the location of TOVAL and contents of
2591 FROMVAL. Handles assignment into packed fields that have
2592 floating-point or non-scalar types. */
2593
2594 static struct value *
2595 ada_value_assign (struct value *toval, struct value *fromval)
2596 {
2597 struct type *type = value_type (toval);
2598 int bits = value_bitsize (toval);
2599
2600 toval = ada_coerce_ref (toval);
2601 fromval = ada_coerce_ref (fromval);
2602
2603 if (ada_is_direct_array_type (value_type (toval)))
2604 toval = ada_coerce_to_simple_array (toval);
2605 if (ada_is_direct_array_type (value_type (fromval)))
2606 fromval = ada_coerce_to_simple_array (fromval);
2607
2608 if (!deprecated_value_modifiable (toval))
2609 error (_("Left operand of assignment is not a modifiable lvalue."));
2610
2611 if (VALUE_LVAL (toval) == lval_memory
2612 && bits > 0
2613 && (type->code () == TYPE_CODE_FLT
2614 || type->code () == TYPE_CODE_STRUCT))
2615 {
2616 int len = (value_bitpos (toval)
2617 + bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2618 int from_size;
2619 gdb_byte *buffer = (gdb_byte *) alloca (len);
2620 struct value *val;
2621 CORE_ADDR to_addr = value_address (toval);
2622
2623 if (type->code () == TYPE_CODE_FLT)
2624 fromval = value_cast (type, fromval);
2625
2626 read_memory (to_addr, buffer, len);
2627 from_size = value_bitsize (fromval);
2628 if (from_size == 0)
2629 from_size = TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT;
2630
2631 const int is_big_endian = type_byte_order (type) == BFD_ENDIAN_BIG;
2632 ULONGEST from_offset = 0;
2633 if (is_big_endian && is_scalar_type (value_type (fromval)))
2634 from_offset = from_size - bits;
2635 copy_bitwise (buffer, value_bitpos (toval),
2636 value_contents (fromval), from_offset,
2637 bits, is_big_endian);
2638 write_memory_with_notification (to_addr, buffer, len);
2639
2640 val = value_copy (toval);
2641 memcpy (value_contents_raw (val), value_contents (fromval),
2642 TYPE_LENGTH (type));
2643 deprecated_set_value_type (val, type);
2644
2645 return val;
2646 }
2647
2648 return value_assign (toval, fromval);
2649 }
2650
2651
2652 /* Given that COMPONENT is a memory lvalue that is part of the lvalue
2653 CONTAINER, assign the contents of VAL to COMPONENTS's place in
2654 CONTAINER. Modifies the VALUE_CONTENTS of CONTAINER only, not
2655 COMPONENT, and not the inferior's memory. The current contents
2656 of COMPONENT are ignored.
2657
2658 Although not part of the initial design, this function also works
2659 when CONTAINER and COMPONENT are not_lval's: it works as if CONTAINER
2660 had a null address, and COMPONENT had an address which is equal to
2661 its offset inside CONTAINER. */
2662
2663 static void
2664 value_assign_to_component (struct value *container, struct value *component,
2665 struct value *val)
2666 {
2667 LONGEST offset_in_container =
2668 (LONGEST) (value_address (component) - value_address (container));
2669 int bit_offset_in_container =
2670 value_bitpos (component) - value_bitpos (container);
2671 int bits;
2672
2673 val = value_cast (value_type (component), val);
2674
2675 if (value_bitsize (component) == 0)
2676 bits = TARGET_CHAR_BIT * TYPE_LENGTH (value_type (component));
2677 else
2678 bits = value_bitsize (component);
2679
2680 if (type_byte_order (value_type (container)) == BFD_ENDIAN_BIG)
2681 {
2682 int src_offset;
2683
2684 if (is_scalar_type (check_typedef (value_type (component))))
2685 src_offset
2686 = TYPE_LENGTH (value_type (component)) * TARGET_CHAR_BIT - bits;
2687 else
2688 src_offset = 0;
2689 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2690 value_bitpos (container) + bit_offset_in_container,
2691 value_contents (val), src_offset, bits, 1);
2692 }
2693 else
2694 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2695 value_bitpos (container) + bit_offset_in_container,
2696 value_contents (val), 0, bits, 0);
2697 }
2698
2699 /* Determine if TYPE is an access to an unconstrained array. */
2700
2701 bool
2702 ada_is_access_to_unconstrained_array (struct type *type)
2703 {
2704 return (type->code () == TYPE_CODE_TYPEDEF
2705 && is_thick_pntr (ada_typedef_target_type (type)));
2706 }
2707
2708 /* The value of the element of array ARR at the ARITY indices given in IND.
2709 ARR may be either a simple array, GNAT array descriptor, or pointer
2710 thereto. */
2711
2712 struct value *
2713 ada_value_subscript (struct value *arr, int arity, struct value **ind)
2714 {
2715 int k;
2716 struct value *elt;
2717 struct type *elt_type;
2718
2719 elt = ada_coerce_to_simple_array (arr);
2720
2721 elt_type = ada_check_typedef (value_type (elt));
2722 if (elt_type->code () == TYPE_CODE_ARRAY
2723 && TYPE_FIELD_BITSIZE (elt_type, 0) > 0)
2724 return value_subscript_packed (elt, arity, ind);
2725
2726 for (k = 0; k < arity; k += 1)
2727 {
2728 struct type *saved_elt_type = TYPE_TARGET_TYPE (elt_type);
2729
2730 if (elt_type->code () != TYPE_CODE_ARRAY)
2731 error (_("too many subscripts (%d expected)"), k);
2732
2733 elt = value_subscript (elt, pos_atr (ind[k]));
2734
2735 if (ada_is_access_to_unconstrained_array (saved_elt_type)
2736 && value_type (elt)->code () != TYPE_CODE_TYPEDEF)
2737 {
2738 /* The element is a typedef to an unconstrained array,
2739 except that the value_subscript call stripped the
2740 typedef layer. The typedef layer is GNAT's way to
2741 specify that the element is, at the source level, an
2742 access to the unconstrained array, rather than the
2743 unconstrained array. So, we need to restore that
2744 typedef layer, which we can do by forcing the element's
2745 type back to its original type. Otherwise, the returned
2746 value is going to be printed as the array, rather
2747 than as an access. Another symptom of the same issue
2748 would be that an expression trying to dereference the
2749 element would also be improperly rejected. */
2750 deprecated_set_value_type (elt, saved_elt_type);
2751 }
2752
2753 elt_type = ada_check_typedef (value_type (elt));
2754 }
2755
2756 return elt;
2757 }
2758
2759 /* Assuming ARR is a pointer to a GDB array, the value of the element
2760 of *ARR at the ARITY indices given in IND.
2761 Does not read the entire array into memory.
2762
2763 Note: Unlike what one would expect, this function is used instead of
2764 ada_value_subscript for basically all non-packed array types. The reason
2765 for this is that a side effect of doing our own pointer arithmetics instead
2766 of relying on value_subscript is that there is no implicit typedef peeling.
2767 This is important for arrays of array accesses, where it allows us to
2768 preserve the fact that the array's element is an array access, where the
2769 access part os encoded in a typedef layer. */
2770
2771 static struct value *
2772 ada_value_ptr_subscript (struct value *arr, int arity, struct value **ind)
2773 {
2774 int k;
2775 struct value *array_ind = ada_value_ind (arr);
2776 struct type *type
2777 = check_typedef (value_enclosing_type (array_ind));
2778
2779 if (type->code () == TYPE_CODE_ARRAY
2780 && TYPE_FIELD_BITSIZE (type, 0) > 0)
2781 return value_subscript_packed (array_ind, arity, ind);
2782
2783 for (k = 0; k < arity; k += 1)
2784 {
2785 LONGEST lwb, upb;
2786
2787 if (type->code () != TYPE_CODE_ARRAY)
2788 error (_("too many subscripts (%d expected)"), k);
2789 arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
2790 value_copy (arr));
2791 get_discrete_bounds (type->index_type (), &lwb, &upb);
2792 arr = value_ptradd (arr, pos_atr (ind[k]) - lwb);
2793 type = TYPE_TARGET_TYPE (type);
2794 }
2795
2796 return value_ind (arr);
2797 }
2798
2799 /* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the
2800 actual type of ARRAY_PTR is ignored), returns the Ada slice of
2801 HIGH'Pos-LOW'Pos+1 elements starting at index LOW. The lower bound of
2802 this array is LOW, as per Ada rules. */
2803 static struct value *
2804 ada_value_slice_from_ptr (struct value *array_ptr, struct type *type,
2805 int low, int high)
2806 {
2807 struct type *type0 = ada_check_typedef (type);
2808 struct type *base_index_type = TYPE_TARGET_TYPE (type0->index_type ());
2809 struct type *index_type
2810 = create_static_range_type (NULL, base_index_type, low, high);
2811 struct type *slice_type = create_array_type_with_stride
2812 (NULL, TYPE_TARGET_TYPE (type0), index_type,
2813 type0->dyn_prop (DYN_PROP_BYTE_STRIDE),
2814 TYPE_FIELD_BITSIZE (type0, 0));
2815 int base_low = ada_discrete_type_low_bound (type0->index_type ());
2816 gdb::optional<LONGEST> base_low_pos, low_pos;
2817 CORE_ADDR base;
2818
2819 low_pos = discrete_position (base_index_type, low);
2820 base_low_pos = discrete_position (base_index_type, base_low);
2821
2822 if (!low_pos.has_value () || !base_low_pos.has_value ())
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 gdb::optional<LONGEST> low_pos, high_pos;
2850
2851
2852 low_pos = discrete_position (base_index_type, low);
2853 high_pos = discrete_position (base_index_type, high);
2854
2855 if (!low_pos.has_value () || !high_pos.has_value ())
2856 {
2857 warning (_("unable to get positions in slice, use bounds instead"));
2858 low_pos = low;
2859 high_pos = high;
2860 }
2861
2862 return value_cast (slice_type,
2863 value_slice (array, low, *high_pos - *low_pos + 1));
2864 }
2865
2866 /* If type is a record type in the form of a standard GNAT array
2867 descriptor, returns the number of dimensions for type. If arr is a
2868 simple array, returns the number of "array of"s that prefix its
2869 type designation. Otherwise, returns 0. */
2870
2871 int
2872 ada_array_arity (struct type *type)
2873 {
2874 int arity;
2875
2876 if (type == NULL)
2877 return 0;
2878
2879 type = desc_base_type (type);
2880
2881 arity = 0;
2882 if (type->code () == TYPE_CODE_STRUCT)
2883 return desc_arity (desc_bounds_type (type));
2884 else
2885 while (type->code () == TYPE_CODE_ARRAY)
2886 {
2887 arity += 1;
2888 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
2889 }
2890
2891 return arity;
2892 }
2893
2894 /* If TYPE is a record type in the form of a standard GNAT array
2895 descriptor or a simple array type, returns the element type for
2896 TYPE after indexing by NINDICES indices, or by all indices if
2897 NINDICES is -1. Otherwise, returns NULL. */
2898
2899 struct type *
2900 ada_array_element_type (struct type *type, int nindices)
2901 {
2902 type = desc_base_type (type);
2903
2904 if (type->code () == TYPE_CODE_STRUCT)
2905 {
2906 int k;
2907 struct type *p_array_type;
2908
2909 p_array_type = desc_data_target_type (type);
2910
2911 k = ada_array_arity (type);
2912 if (k == 0)
2913 return NULL;
2914
2915 /* Initially p_array_type = elt_type(*)[]...(k times)...[]. */
2916 if (nindices >= 0 && k > nindices)
2917 k = nindices;
2918 while (k > 0 && p_array_type != NULL)
2919 {
2920 p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type));
2921 k -= 1;
2922 }
2923 return p_array_type;
2924 }
2925 else if (type->code () == TYPE_CODE_ARRAY)
2926 {
2927 while (nindices != 0 && type->code () == TYPE_CODE_ARRAY)
2928 {
2929 type = TYPE_TARGET_TYPE (type);
2930 nindices -= 1;
2931 }
2932 return type;
2933 }
2934
2935 return NULL;
2936 }
2937
2938 /* The type of nth index in arrays of given type (n numbering from 1).
2939 Does not examine memory. Throws an error if N is invalid or TYPE
2940 is not an array type. NAME is the name of the Ada attribute being
2941 evaluated ('range, 'first, 'last, or 'length); it is used in building
2942 the error message. */
2943
2944 static struct type *
2945 ada_index_type (struct type *type, int n, const char *name)
2946 {
2947 struct type *result_type;
2948
2949 type = desc_base_type (type);
2950
2951 if (n < 0 || n > ada_array_arity (type))
2952 error (_("invalid dimension number to '%s"), name);
2953
2954 if (ada_is_simple_array_type (type))
2955 {
2956 int i;
2957
2958 for (i = 1; i < n; i += 1)
2959 type = TYPE_TARGET_TYPE (type);
2960 result_type = TYPE_TARGET_TYPE (type->index_type ());
2961 /* FIXME: The stabs type r(0,0);bound;bound in an array type
2962 has a target type of TYPE_CODE_UNDEF. We compensate here, but
2963 perhaps stabsread.c would make more sense. */
2964 if (result_type && result_type->code () == TYPE_CODE_UNDEF)
2965 result_type = NULL;
2966 }
2967 else
2968 {
2969 result_type = desc_index_type (desc_bounds_type (type), n);
2970 if (result_type == NULL)
2971 error (_("attempt to take bound of something that is not an array"));
2972 }
2973
2974 return result_type;
2975 }
2976
2977 /* Given that arr is an array type, returns the lower bound of the
2978 Nth index (numbering from 1) if WHICH is 0, and the upper bound if
2979 WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an
2980 array-descriptor type. It works for other arrays with bounds supplied
2981 by run-time quantities other than discriminants. */
2982
2983 static LONGEST
2984 ada_array_bound_from_type (struct type *arr_type, int n, int which)
2985 {
2986 struct type *type, *index_type_desc, *index_type;
2987 int i;
2988
2989 gdb_assert (which == 0 || which == 1);
2990
2991 if (ada_is_constrained_packed_array_type (arr_type))
2992 arr_type = decode_constrained_packed_array_type (arr_type);
2993
2994 if (arr_type == NULL || !ada_is_simple_array_type (arr_type))
2995 return (LONGEST) - which;
2996
2997 if (arr_type->code () == TYPE_CODE_PTR)
2998 type = TYPE_TARGET_TYPE (arr_type);
2999 else
3000 type = arr_type;
3001
3002 if (type->is_fixed_instance ())
3003 {
3004 /* The array has already been fixed, so we do not need to
3005 check the parallel ___XA type again. That encoding has
3006 already been applied, so ignore it now. */
3007 index_type_desc = NULL;
3008 }
3009 else
3010 {
3011 index_type_desc = ada_find_parallel_type (type, "___XA");
3012 ada_fixup_array_indexes_type (index_type_desc);
3013 }
3014
3015 if (index_type_desc != NULL)
3016 index_type = to_fixed_range_type (index_type_desc->field (n - 1).type (),
3017 NULL);
3018 else
3019 {
3020 struct type *elt_type = check_typedef (type);
3021
3022 for (i = 1; i < n; i++)
3023 elt_type = check_typedef (TYPE_TARGET_TYPE (elt_type));
3024
3025 index_type = elt_type->index_type ();
3026 }
3027
3028 return
3029 (LONGEST) (which == 0
3030 ? ada_discrete_type_low_bound (index_type)
3031 : ada_discrete_type_high_bound (index_type));
3032 }
3033
3034 /* Given that arr is an array value, returns the lower bound of the
3035 nth index (numbering from 1) if WHICH is 0, and the upper bound if
3036 WHICH is 1. This routine will also work for arrays with bounds
3037 supplied by run-time quantities other than discriminants. */
3038
3039 static LONGEST
3040 ada_array_bound (struct value *arr, int n, int which)
3041 {
3042 struct type *arr_type;
3043
3044 if (check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
3045 arr = value_ind (arr);
3046 arr_type = value_enclosing_type (arr);
3047
3048 if (ada_is_constrained_packed_array_type (arr_type))
3049 return ada_array_bound (decode_constrained_packed_array (arr), n, which);
3050 else if (ada_is_simple_array_type (arr_type))
3051 return ada_array_bound_from_type (arr_type, n, which);
3052 else
3053 return value_as_long (desc_one_bound (desc_bounds (arr), n, which));
3054 }
3055
3056 /* Given that arr is an array value, returns the length of the
3057 nth index. This routine will also work for arrays with bounds
3058 supplied by run-time quantities other than discriminants.
3059 Does not work for arrays indexed by enumeration types with representation
3060 clauses at the moment. */
3061
3062 static LONGEST
3063 ada_array_length (struct value *arr, int n)
3064 {
3065 struct type *arr_type, *index_type;
3066 int low, high;
3067
3068 if (check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
3069 arr = value_ind (arr);
3070 arr_type = value_enclosing_type (arr);
3071
3072 if (ada_is_constrained_packed_array_type (arr_type))
3073 return ada_array_length (decode_constrained_packed_array (arr), n);
3074
3075 if (ada_is_simple_array_type (arr_type))
3076 {
3077 low = ada_array_bound_from_type (arr_type, n, 0);
3078 high = ada_array_bound_from_type (arr_type, n, 1);
3079 }
3080 else
3081 {
3082 low = value_as_long (desc_one_bound (desc_bounds (arr), n, 0));
3083 high = value_as_long (desc_one_bound (desc_bounds (arr), n, 1));
3084 }
3085
3086 arr_type = check_typedef (arr_type);
3087 index_type = ada_index_type (arr_type, n, "length");
3088 if (index_type != NULL)
3089 {
3090 struct type *base_type;
3091 if (index_type->code () == TYPE_CODE_RANGE)
3092 base_type = TYPE_TARGET_TYPE (index_type);
3093 else
3094 base_type = index_type;
3095
3096 low = pos_atr (value_from_longest (base_type, low));
3097 high = pos_atr (value_from_longest (base_type, high));
3098 }
3099 return high - low + 1;
3100 }
3101
3102 /* An array whose type is that of ARR_TYPE (an array type), with
3103 bounds LOW to HIGH, but whose contents are unimportant. If HIGH is
3104 less than LOW, then LOW-1 is used. */
3105
3106 static struct value *
3107 empty_array (struct type *arr_type, int low, int high)
3108 {
3109 struct type *arr_type0 = ada_check_typedef (arr_type);
3110 struct type *index_type
3111 = create_static_range_type
3112 (NULL, TYPE_TARGET_TYPE (arr_type0->index_type ()), low,
3113 high < low ? low - 1 : high);
3114 struct type *elt_type = ada_array_element_type (arr_type0, 1);
3115
3116 return allocate_value (create_array_type (NULL, elt_type, index_type));
3117 }
3118 \f
3119
3120 /* Name resolution */
3121
3122 /* The "decoded" name for the user-definable Ada operator corresponding
3123 to OP. */
3124
3125 static const char *
3126 ada_decoded_op_name (enum exp_opcode op)
3127 {
3128 int i;
3129
3130 for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
3131 {
3132 if (ada_opname_table[i].op == op)
3133 return ada_opname_table[i].decoded;
3134 }
3135 error (_("Could not find operator name for opcode"));
3136 }
3137
3138 /* Returns true (non-zero) iff decoded name N0 should appear before N1
3139 in a listing of choices during disambiguation (see sort_choices, below).
3140 The idea is that overloadings of a subprogram name from the
3141 same package should sort in their source order. We settle for ordering
3142 such symbols by their trailing number (__N or $N). */
3143
3144 static int
3145 encoded_ordered_before (const char *N0, const char *N1)
3146 {
3147 if (N1 == NULL)
3148 return 0;
3149 else if (N0 == NULL)
3150 return 1;
3151 else
3152 {
3153 int k0, k1;
3154
3155 for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1)
3156 ;
3157 for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1)
3158 ;
3159 if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000'
3160 && (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000')
3161 {
3162 int n0, n1;
3163
3164 n0 = k0;
3165 while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_')
3166 n0 -= 1;
3167 n1 = k1;
3168 while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_')
3169 n1 -= 1;
3170 if (n0 == n1 && strncmp (N0, N1, n0) == 0)
3171 return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1));
3172 }
3173 return (strcmp (N0, N1) < 0);
3174 }
3175 }
3176
3177 /* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the
3178 encoded names. */
3179
3180 static void
3181 sort_choices (struct block_symbol syms[], int nsyms)
3182 {
3183 int i;
3184
3185 for (i = 1; i < nsyms; i += 1)
3186 {
3187 struct block_symbol sym = syms[i];
3188 int j;
3189
3190 for (j = i - 1; j >= 0; j -= 1)
3191 {
3192 if (encoded_ordered_before (syms[j].symbol->linkage_name (),
3193 sym.symbol->linkage_name ()))
3194 break;
3195 syms[j + 1] = syms[j];
3196 }
3197 syms[j + 1] = sym;
3198 }
3199 }
3200
3201 /* Whether GDB should display formals and return types for functions in the
3202 overloads selection menu. */
3203 static bool print_signatures = true;
3204
3205 /* Print the signature for SYM on STREAM according to the FLAGS options. For
3206 all but functions, the signature is just the name of the symbol. For
3207 functions, this is the name of the function, the list of types for formals
3208 and the return type (if any). */
3209
3210 static void
3211 ada_print_symbol_signature (struct ui_file *stream, struct symbol *sym,
3212 const struct type_print_options *flags)
3213 {
3214 struct type *type = SYMBOL_TYPE (sym);
3215
3216 fprintf_filtered (stream, "%s", sym->print_name ());
3217 if (!print_signatures
3218 || type == NULL
3219 || type->code () != TYPE_CODE_FUNC)
3220 return;
3221
3222 if (type->num_fields () > 0)
3223 {
3224 int i;
3225
3226 fprintf_filtered (stream, " (");
3227 for (i = 0; i < type->num_fields (); ++i)
3228 {
3229 if (i > 0)
3230 fprintf_filtered (stream, "; ");
3231 ada_print_type (type->field (i).type (), NULL, stream, -1, 0,
3232 flags);
3233 }
3234 fprintf_filtered (stream, ")");
3235 }
3236 if (TYPE_TARGET_TYPE (type) != NULL
3237 && TYPE_TARGET_TYPE (type)->code () != TYPE_CODE_VOID)
3238 {
3239 fprintf_filtered (stream, " return ");
3240 ada_print_type (TYPE_TARGET_TYPE (type), NULL, stream, -1, 0, flags);
3241 }
3242 }
3243
3244 /* Read and validate a set of numeric choices from the user in the
3245 range 0 .. N_CHOICES-1. Place the results in increasing
3246 order in CHOICES[0 .. N-1], and return N.
3247
3248 The user types choices as a sequence of numbers on one line
3249 separated by blanks, encoding them as follows:
3250
3251 + A choice of 0 means to cancel the selection, throwing an error.
3252 + If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1.
3253 + The user chooses k by typing k+IS_ALL_CHOICE+1.
3254
3255 The user is not allowed to choose more than MAX_RESULTS values.
3256
3257 ANNOTATION_SUFFIX, if present, is used to annotate the input
3258 prompts (for use with the -f switch). */
3259
3260 static int
3261 get_selections (int *choices, int n_choices, int max_results,
3262 int is_all_choice, const char *annotation_suffix)
3263 {
3264 const char *args;
3265 const char *prompt;
3266 int n_chosen;
3267 int first_choice = is_all_choice ? 2 : 1;
3268
3269 prompt = getenv ("PS2");
3270 if (prompt == NULL)
3271 prompt = "> ";
3272
3273 args = command_line_input (prompt, annotation_suffix);
3274
3275 if (args == NULL)
3276 error_no_arg (_("one or more choice numbers"));
3277
3278 n_chosen = 0;
3279
3280 /* Set choices[0 .. n_chosen-1] to the users' choices in ascending
3281 order, as given in args. Choices are validated. */
3282 while (1)
3283 {
3284 char *args2;
3285 int choice, j;
3286
3287 args = skip_spaces (args);
3288 if (*args == '\0' && n_chosen == 0)
3289 error_no_arg (_("one or more choice numbers"));
3290 else if (*args == '\0')
3291 break;
3292
3293 choice = strtol (args, &args2, 10);
3294 if (args == args2 || choice < 0
3295 || choice > n_choices + first_choice - 1)
3296 error (_("Argument must be choice number"));
3297 args = args2;
3298
3299 if (choice == 0)
3300 error (_("cancelled"));
3301
3302 if (choice < first_choice)
3303 {
3304 n_chosen = n_choices;
3305 for (j = 0; j < n_choices; j += 1)
3306 choices[j] = j;
3307 break;
3308 }
3309 choice -= first_choice;
3310
3311 for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1)
3312 {
3313 }
3314
3315 if (j < 0 || choice != choices[j])
3316 {
3317 int k;
3318
3319 for (k = n_chosen - 1; k > j; k -= 1)
3320 choices[k + 1] = choices[k];
3321 choices[j + 1] = choice;
3322 n_chosen += 1;
3323 }
3324 }
3325
3326 if (n_chosen > max_results)
3327 error (_("Select no more than %d of the above"), max_results);
3328
3329 return n_chosen;
3330 }
3331
3332 /* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0
3333 by asking the user (if necessary), returning the number selected,
3334 and setting the first elements of SYMS items. Error if no symbols
3335 selected. */
3336
3337 /* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought
3338 to be re-integrated one of these days. */
3339
3340 static int
3341 user_select_syms (struct block_symbol *syms, int nsyms, int max_results)
3342 {
3343 int i;
3344 int *chosen = XALLOCAVEC (int , nsyms);
3345 int n_chosen;
3346 int first_choice = (max_results == 1) ? 1 : 2;
3347 const char *select_mode = multiple_symbols_select_mode ();
3348
3349 if (max_results < 1)
3350 error (_("Request to select 0 symbols!"));
3351 if (nsyms <= 1)
3352 return nsyms;
3353
3354 if (select_mode == multiple_symbols_cancel)
3355 error (_("\
3356 canceled because the command is ambiguous\n\
3357 See set/show multiple-symbol."));
3358
3359 /* If select_mode is "all", then return all possible symbols.
3360 Only do that if more than one symbol can be selected, of course.
3361 Otherwise, display the menu as usual. */
3362 if (select_mode == multiple_symbols_all && max_results > 1)
3363 return nsyms;
3364
3365 printf_filtered (_("[0] cancel\n"));
3366 if (max_results > 1)
3367 printf_filtered (_("[1] all\n"));
3368
3369 sort_choices (syms, nsyms);
3370
3371 for (i = 0; i < nsyms; i += 1)
3372 {
3373 if (syms[i].symbol == NULL)
3374 continue;
3375
3376 if (SYMBOL_CLASS (syms[i].symbol) == LOC_BLOCK)
3377 {
3378 struct symtab_and_line sal =
3379 find_function_start_sal (syms[i].symbol, 1);
3380
3381 printf_filtered ("[%d] ", i + first_choice);
3382 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3383 &type_print_raw_options);
3384 if (sal.symtab == NULL)
3385 printf_filtered (_(" at %p[<no source file available>%p]:%d\n"),
3386 metadata_style.style ().ptr (), nullptr, sal.line);
3387 else
3388 printf_filtered
3389 (_(" at %ps:%d\n"),
3390 styled_string (file_name_style.style (),
3391 symtab_to_filename_for_display (sal.symtab)),
3392 sal.line);
3393 continue;
3394 }
3395 else
3396 {
3397 int is_enumeral =
3398 (SYMBOL_CLASS (syms[i].symbol) == LOC_CONST
3399 && SYMBOL_TYPE (syms[i].symbol) != NULL
3400 && SYMBOL_TYPE (syms[i].symbol)->code () == TYPE_CODE_ENUM);
3401 struct symtab *symtab = NULL;
3402
3403 if (SYMBOL_OBJFILE_OWNED (syms[i].symbol))
3404 symtab = symbol_symtab (syms[i].symbol);
3405
3406 if (SYMBOL_LINE (syms[i].symbol) != 0 && symtab != NULL)
3407 {
3408 printf_filtered ("[%d] ", i + first_choice);
3409 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3410 &type_print_raw_options);
3411 printf_filtered (_(" at %s:%d\n"),
3412 symtab_to_filename_for_display (symtab),
3413 SYMBOL_LINE (syms[i].symbol));
3414 }
3415 else if (is_enumeral
3416 && SYMBOL_TYPE (syms[i].symbol)->name () != NULL)
3417 {
3418 printf_filtered (("[%d] "), i + first_choice);
3419 ada_print_type (SYMBOL_TYPE (syms[i].symbol), NULL,
3420 gdb_stdout, -1, 0, &type_print_raw_options);
3421 printf_filtered (_("'(%s) (enumeral)\n"),
3422 syms[i].symbol->print_name ());
3423 }
3424 else
3425 {
3426 printf_filtered ("[%d] ", i + first_choice);
3427 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3428 &type_print_raw_options);
3429
3430 if (symtab != NULL)
3431 printf_filtered (is_enumeral
3432 ? _(" in %s (enumeral)\n")
3433 : _(" at %s:?\n"),
3434 symtab_to_filename_for_display (symtab));
3435 else
3436 printf_filtered (is_enumeral
3437 ? _(" (enumeral)\n")
3438 : _(" at ?\n"));
3439 }
3440 }
3441 }
3442
3443 n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1,
3444 "overload-choice");
3445
3446 for (i = 0; i < n_chosen; i += 1)
3447 syms[i] = syms[chosen[i]];
3448
3449 return n_chosen;
3450 }
3451
3452 /* Resolve the operator of the subexpression beginning at
3453 position *POS of *EXPP. "Resolving" consists of replacing
3454 the symbols that have undefined namespaces in OP_VAR_VALUE nodes
3455 with their resolutions, replacing built-in operators with
3456 function calls to user-defined operators, where appropriate, and,
3457 when DEPROCEDURE_P is non-zero, converting function-valued variables
3458 into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions
3459 are as in ada_resolve, above. */
3460
3461 static struct value *
3462 resolve_subexp (expression_up *expp, int *pos, int deprocedure_p,
3463 struct type *context_type, int parse_completion,
3464 innermost_block_tracker *tracker)
3465 {
3466 int pc = *pos;
3467 int i;
3468 struct expression *exp; /* Convenience: == *expp. */
3469 enum exp_opcode op = (*expp)->elts[pc].opcode;
3470 struct value **argvec; /* Vector of operand types (alloca'ed). */
3471 int nargs; /* Number of operands. */
3472 int oplen;
3473 /* If we're resolving an expression like ARRAY(ARG...), then we set
3474 this to the type of the array, so we can use the index types as
3475 the expected types for resolution. */
3476 struct type *array_type = nullptr;
3477 /* The arity of ARRAY_TYPE. */
3478 int array_arity = 0;
3479
3480 argvec = NULL;
3481 nargs = 0;
3482 exp = expp->get ();
3483
3484 /* Pass one: resolve operands, saving their types and updating *pos,
3485 if needed. */
3486 switch (op)
3487 {
3488 case OP_FUNCALL:
3489 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3490 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3491 *pos += 7;
3492 else
3493 {
3494 *pos += 3;
3495 struct value *lhs = resolve_subexp (expp, pos, 0, NULL,
3496 parse_completion, tracker);
3497 struct type *lhstype = ada_check_typedef (value_type (lhs));
3498 array_arity = ada_array_arity (lhstype);
3499 if (array_arity > 0)
3500 array_type = lhstype;
3501 }
3502 nargs = longest_to_int (exp->elts[pc + 1].longconst);
3503 break;
3504
3505 case UNOP_ADDR:
3506 *pos += 1;
3507 resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3508 break;
3509
3510 case UNOP_QUAL:
3511 *pos += 3;
3512 resolve_subexp (expp, pos, 1, check_typedef (exp->elts[pc + 1].type),
3513 parse_completion, tracker);
3514 break;
3515
3516 case OP_ATR_MODULUS:
3517 case OP_ATR_SIZE:
3518 case OP_ATR_TAG:
3519 case OP_ATR_FIRST:
3520 case OP_ATR_LAST:
3521 case OP_ATR_LENGTH:
3522 case OP_ATR_POS:
3523 case OP_ATR_VAL:
3524 case OP_ATR_MIN:
3525 case OP_ATR_MAX:
3526 case TERNOP_IN_RANGE:
3527 case BINOP_IN_BOUNDS:
3528 case UNOP_IN_RANGE:
3529 case OP_AGGREGATE:
3530 case OP_OTHERS:
3531 case OP_CHOICES:
3532 case OP_POSITIONAL:
3533 case OP_DISCRETE_RANGE:
3534 case OP_NAME:
3535 ada_forward_operator_length (exp, pc, &oplen, &nargs);
3536 *pos += oplen;
3537 break;
3538
3539 case BINOP_ASSIGN:
3540 {
3541 struct value *arg1;
3542
3543 *pos += 1;
3544 arg1 = resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3545 if (arg1 == NULL)
3546 resolve_subexp (expp, pos, 1, NULL, parse_completion, tracker);
3547 else
3548 resolve_subexp (expp, pos, 1, value_type (arg1), parse_completion,
3549 tracker);
3550 break;
3551 }
3552
3553 case UNOP_CAST:
3554 *pos += 3;
3555 nargs = 1;
3556 break;
3557
3558 case BINOP_ADD:
3559 case BINOP_SUB:
3560 case BINOP_MUL:
3561 case BINOP_DIV:
3562 case BINOP_REM:
3563 case BINOP_MOD:
3564 case BINOP_EXP:
3565 case BINOP_CONCAT:
3566 case BINOP_LOGICAL_AND:
3567 case BINOP_LOGICAL_OR:
3568 case BINOP_BITWISE_AND:
3569 case BINOP_BITWISE_IOR:
3570 case BINOP_BITWISE_XOR:
3571
3572 case BINOP_EQUAL:
3573 case BINOP_NOTEQUAL:
3574 case BINOP_LESS:
3575 case BINOP_GTR:
3576 case BINOP_LEQ:
3577 case BINOP_GEQ:
3578
3579 case BINOP_REPEAT:
3580 case BINOP_SUBSCRIPT:
3581 case BINOP_COMMA:
3582 *pos += 1;
3583 nargs = 2;
3584 break;
3585
3586 case UNOP_NEG:
3587 case UNOP_PLUS:
3588 case UNOP_LOGICAL_NOT:
3589 case UNOP_ABS:
3590 case UNOP_IND:
3591 *pos += 1;
3592 nargs = 1;
3593 break;
3594
3595 case OP_LONG:
3596 case OP_FLOAT:
3597 case OP_VAR_VALUE:
3598 case OP_VAR_MSYM_VALUE:
3599 *pos += 4;
3600 break;
3601
3602 case OP_TYPE:
3603 case OP_BOOL:
3604 case OP_LAST:
3605 case OP_INTERNALVAR:
3606 *pos += 3;
3607 break;
3608
3609 case UNOP_MEMVAL:
3610 *pos += 3;
3611 nargs = 1;
3612 break;
3613
3614 case OP_REGISTER:
3615 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3616 break;
3617
3618 case STRUCTOP_STRUCT:
3619 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3620 nargs = 1;
3621 break;
3622
3623 case TERNOP_SLICE:
3624 *pos += 1;
3625 nargs = 3;
3626 break;
3627
3628 case OP_STRING:
3629 break;
3630
3631 default:
3632 error (_("Unexpected operator during name resolution"));
3633 }
3634
3635 argvec = XALLOCAVEC (struct value *, nargs + 1);
3636 for (i = 0; i < nargs; i += 1)
3637 {
3638 struct type *subtype = nullptr;
3639 if (i < array_arity)
3640 subtype = ada_index_type (array_type, i + 1, "array type");
3641 argvec[i] = resolve_subexp (expp, pos, 1, subtype, parse_completion,
3642 tracker);
3643 }
3644 argvec[i] = NULL;
3645 exp = expp->get ();
3646
3647 /* Pass two: perform any resolution on principal operator. */
3648 switch (op)
3649 {
3650 default:
3651 break;
3652
3653 case OP_VAR_VALUE:
3654 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
3655 {
3656 std::vector<struct block_symbol> candidates;
3657 int n_candidates;
3658
3659 n_candidates =
3660 ada_lookup_symbol_list (exp->elts[pc + 2].symbol->linkage_name (),
3661 exp->elts[pc + 1].block, VAR_DOMAIN,
3662 &candidates);
3663 /* Paranoia. */
3664 candidates.resize (n_candidates);
3665
3666 if (std::any_of (candidates.begin (),
3667 candidates.end (),
3668 [] (block_symbol &sym)
3669 {
3670 switch (SYMBOL_CLASS (sym.symbol))
3671 {
3672 case LOC_REGISTER:
3673 case LOC_ARG:
3674 case LOC_REF_ARG:
3675 case LOC_REGPARM_ADDR:
3676 case LOC_LOCAL:
3677 case LOC_COMPUTED:
3678 return true;
3679 default:
3680 return false;
3681 }
3682 }))
3683 {
3684 /* Types tend to get re-introduced locally, so if there
3685 are any local symbols that are not types, first filter
3686 out all types. */
3687 candidates.erase
3688 (std::remove_if
3689 (candidates.begin (),
3690 candidates.end (),
3691 [] (block_symbol &sym)
3692 {
3693 return SYMBOL_CLASS (sym.symbol) == LOC_TYPEDEF;
3694 }),
3695 candidates.end ());
3696 n_candidates = candidates.size ();
3697 }
3698
3699 if (n_candidates == 0)
3700 error (_("No definition found for %s"),
3701 exp->elts[pc + 2].symbol->print_name ());
3702 else if (n_candidates == 1)
3703 i = 0;
3704 else if (deprocedure_p
3705 && !is_nonfunction (candidates.data (), n_candidates))
3706 {
3707 i = ada_resolve_function
3708 (candidates.data (), n_candidates, NULL, 0,
3709 exp->elts[pc + 2].symbol->linkage_name (),
3710 context_type, parse_completion);
3711 if (i < 0)
3712 error (_("Could not find a match for %s"),
3713 exp->elts[pc + 2].symbol->print_name ());
3714 }
3715 else
3716 {
3717 printf_filtered (_("Multiple matches for %s\n"),
3718 exp->elts[pc + 2].symbol->print_name ());
3719 user_select_syms (candidates.data (), n_candidates, 1);
3720 i = 0;
3721 }
3722
3723 exp->elts[pc + 1].block = candidates[i].block;
3724 exp->elts[pc + 2].symbol = candidates[i].symbol;
3725 tracker->update (candidates[i]);
3726 }
3727
3728 if (deprocedure_p
3729 && (SYMBOL_TYPE (exp->elts[pc + 2].symbol)->code ()
3730 == TYPE_CODE_FUNC))
3731 {
3732 replace_operator_with_call (expp, pc, 0, 4,
3733 exp->elts[pc + 2].symbol,
3734 exp->elts[pc + 1].block);
3735 exp = expp->get ();
3736 }
3737 break;
3738
3739 case OP_FUNCALL:
3740 {
3741 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3742 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3743 {
3744 std::vector<struct block_symbol> candidates;
3745 int n_candidates;
3746
3747 n_candidates =
3748 ada_lookup_symbol_list (exp->elts[pc + 5].symbol->linkage_name (),
3749 exp->elts[pc + 4].block, VAR_DOMAIN,
3750 &candidates);
3751
3752 if (n_candidates == 1)
3753 i = 0;
3754 else
3755 {
3756 i = ada_resolve_function
3757 (candidates.data (), n_candidates,
3758 argvec, nargs,
3759 exp->elts[pc + 5].symbol->linkage_name (),
3760 context_type, parse_completion);
3761 if (i < 0)
3762 error (_("Could not find a match for %s"),
3763 exp->elts[pc + 5].symbol->print_name ());
3764 }
3765
3766 exp->elts[pc + 4].block = candidates[i].block;
3767 exp->elts[pc + 5].symbol = candidates[i].symbol;
3768 tracker->update (candidates[i]);
3769 }
3770 }
3771 break;
3772 case BINOP_ADD:
3773 case BINOP_SUB:
3774 case BINOP_MUL:
3775 case BINOP_DIV:
3776 case BINOP_REM:
3777 case BINOP_MOD:
3778 case BINOP_CONCAT:
3779 case BINOP_BITWISE_AND:
3780 case BINOP_BITWISE_IOR:
3781 case BINOP_BITWISE_XOR:
3782 case BINOP_EQUAL:
3783 case BINOP_NOTEQUAL:
3784 case BINOP_LESS:
3785 case BINOP_GTR:
3786 case BINOP_LEQ:
3787 case BINOP_GEQ:
3788 case BINOP_EXP:
3789 case UNOP_NEG:
3790 case UNOP_PLUS:
3791 case UNOP_LOGICAL_NOT:
3792 case UNOP_ABS:
3793 if (possible_user_operator_p (op, argvec))
3794 {
3795 std::vector<struct block_symbol> candidates;
3796 int n_candidates;
3797
3798 n_candidates =
3799 ada_lookup_symbol_list (ada_decoded_op_name (op),
3800 NULL, VAR_DOMAIN,
3801 &candidates);
3802
3803 i = ada_resolve_function (candidates.data (), n_candidates, argvec,
3804 nargs, ada_decoded_op_name (op), NULL,
3805 parse_completion);
3806 if (i < 0)
3807 break;
3808
3809 replace_operator_with_call (expp, pc, nargs, 1,
3810 candidates[i].symbol,
3811 candidates[i].block);
3812 exp = expp->get ();
3813 }
3814 break;
3815
3816 case OP_TYPE:
3817 case OP_REGISTER:
3818 return NULL;
3819 }
3820
3821 *pos = pc;
3822 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
3823 return evaluate_var_msym_value (EVAL_AVOID_SIDE_EFFECTS,
3824 exp->elts[pc + 1].objfile,
3825 exp->elts[pc + 2].msymbol);
3826 else
3827 return evaluate_subexp_type (exp, pos);
3828 }
3829
3830 /* Return non-zero if formal type FTYPE matches actual type ATYPE. If
3831 MAY_DEREF is non-zero, the formal may be a pointer and the actual
3832 a non-pointer. */
3833 /* The term "match" here is rather loose. The match is heuristic and
3834 liberal. */
3835
3836 static int
3837 ada_type_match (struct type *ftype, struct type *atype, int may_deref)
3838 {
3839 ftype = ada_check_typedef (ftype);
3840 atype = ada_check_typedef (atype);
3841
3842 if (ftype->code () == TYPE_CODE_REF)
3843 ftype = TYPE_TARGET_TYPE (ftype);
3844 if (atype->code () == TYPE_CODE_REF)
3845 atype = TYPE_TARGET_TYPE (atype);
3846
3847 switch (ftype->code ())
3848 {
3849 default:
3850 return ftype->code () == atype->code ();
3851 case TYPE_CODE_PTR:
3852 if (atype->code () == TYPE_CODE_PTR)
3853 return ada_type_match (TYPE_TARGET_TYPE (ftype),
3854 TYPE_TARGET_TYPE (atype), 0);
3855 else
3856 return (may_deref
3857 && ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0));
3858 case TYPE_CODE_INT:
3859 case TYPE_CODE_ENUM:
3860 case TYPE_CODE_RANGE:
3861 switch (atype->code ())
3862 {
3863 case TYPE_CODE_INT:
3864 case TYPE_CODE_ENUM:
3865 case TYPE_CODE_RANGE:
3866 return 1;
3867 default:
3868 return 0;
3869 }
3870
3871 case TYPE_CODE_ARRAY:
3872 return (atype->code () == TYPE_CODE_ARRAY
3873 || ada_is_array_descriptor_type (atype));
3874
3875 case TYPE_CODE_STRUCT:
3876 if (ada_is_array_descriptor_type (ftype))
3877 return (atype->code () == TYPE_CODE_ARRAY
3878 || ada_is_array_descriptor_type (atype));
3879 else
3880 return (atype->code () == TYPE_CODE_STRUCT
3881 && !ada_is_array_descriptor_type (atype));
3882
3883 case TYPE_CODE_UNION:
3884 case TYPE_CODE_FLT:
3885 return (atype->code () == ftype->code ());
3886 }
3887 }
3888
3889 /* Return non-zero if the formals of FUNC "sufficiently match" the
3890 vector of actual argument types ACTUALS of size N_ACTUALS. FUNC
3891 may also be an enumeral, in which case it is treated as a 0-
3892 argument function. */
3893
3894 static int
3895 ada_args_match (struct symbol *func, struct value **actuals, int n_actuals)
3896 {
3897 int i;
3898 struct type *func_type = SYMBOL_TYPE (func);
3899
3900 if (SYMBOL_CLASS (func) == LOC_CONST
3901 && func_type->code () == TYPE_CODE_ENUM)
3902 return (n_actuals == 0);
3903 else if (func_type == NULL || func_type->code () != TYPE_CODE_FUNC)
3904 return 0;
3905
3906 if (func_type->num_fields () != n_actuals)
3907 return 0;
3908
3909 for (i = 0; i < n_actuals; i += 1)
3910 {
3911 if (actuals[i] == NULL)
3912 return 0;
3913 else
3914 {
3915 struct type *ftype = ada_check_typedef (func_type->field (i).type ());
3916 struct type *atype = ada_check_typedef (value_type (actuals[i]));
3917
3918 if (!ada_type_match (ftype, atype, 1))
3919 return 0;
3920 }
3921 }
3922 return 1;
3923 }
3924
3925 /* False iff function type FUNC_TYPE definitely does not produce a value
3926 compatible with type CONTEXT_TYPE. Conservatively returns 1 if
3927 FUNC_TYPE is not a valid function type with a non-null return type
3928 or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */
3929
3930 static int
3931 return_match (struct type *func_type, struct type *context_type)
3932 {
3933 struct type *return_type;
3934
3935 if (func_type == NULL)
3936 return 1;
3937
3938 if (func_type->code () == TYPE_CODE_FUNC)
3939 return_type = get_base_type (TYPE_TARGET_TYPE (func_type));
3940 else
3941 return_type = get_base_type (func_type);
3942 if (return_type == NULL)
3943 return 1;
3944
3945 context_type = get_base_type (context_type);
3946
3947 if (return_type->code () == TYPE_CODE_ENUM)
3948 return context_type == NULL || return_type == context_type;
3949 else if (context_type == NULL)
3950 return return_type->code () != TYPE_CODE_VOID;
3951 else
3952 return return_type->code () == context_type->code ();
3953 }
3954
3955
3956 /* Returns the index in SYMS[0..NSYMS-1] that contains the symbol for the
3957 function (if any) that matches the types of the NARGS arguments in
3958 ARGS. If CONTEXT_TYPE is non-null and there is at least one match
3959 that returns that type, then eliminate matches that don't. If
3960 CONTEXT_TYPE is void and there is at least one match that does not
3961 return void, eliminate all matches that do.
3962
3963 Asks the user if there is more than one match remaining. Returns -1
3964 if there is no such symbol or none is selected. NAME is used
3965 solely for messages. May re-arrange and modify SYMS in
3966 the process; the index returned is for the modified vector. */
3967
3968 static int
3969 ada_resolve_function (struct block_symbol syms[],
3970 int nsyms, struct value **args, int nargs,
3971 const char *name, struct type *context_type,
3972 int parse_completion)
3973 {
3974 int fallback;
3975 int k;
3976 int m; /* Number of hits */
3977
3978 m = 0;
3979 /* In the first pass of the loop, we only accept functions matching
3980 context_type. If none are found, we add a second pass of the loop
3981 where every function is accepted. */
3982 for (fallback = 0; m == 0 && fallback < 2; fallback++)
3983 {
3984 for (k = 0; k < nsyms; k += 1)
3985 {
3986 struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].symbol));
3987
3988 if (ada_args_match (syms[k].symbol, args, nargs)
3989 && (fallback || return_match (type, context_type)))
3990 {
3991 syms[m] = syms[k];
3992 m += 1;
3993 }
3994 }
3995 }
3996
3997 /* If we got multiple matches, ask the user which one to use. Don't do this
3998 interactive thing during completion, though, as the purpose of the
3999 completion is providing a list of all possible matches. Prompting the
4000 user to filter it down would be completely unexpected in this case. */
4001 if (m == 0)
4002 return -1;
4003 else if (m > 1 && !parse_completion)
4004 {
4005 printf_filtered (_("Multiple matches for %s\n"), name);
4006 user_select_syms (syms, m, 1);
4007 return 0;
4008 }
4009 return 0;
4010 }
4011
4012 /* Replace the operator of length OPLEN at position PC in *EXPP with a call
4013 on the function identified by SYM and BLOCK, and taking NARGS
4014 arguments. Update *EXPP as needed to hold more space. */
4015
4016 static void
4017 replace_operator_with_call (expression_up *expp, int pc, int nargs,
4018 int oplen, struct symbol *sym,
4019 const struct block *block)
4020 {
4021 /* We want to add 6 more elements (3 for funcall, 4 for function
4022 symbol, -OPLEN for operator being replaced) to the
4023 expression. */
4024 struct expression *exp = expp->get ();
4025 int save_nelts = exp->nelts;
4026 int extra_elts = 7 - oplen;
4027 exp->nelts += extra_elts;
4028
4029 if (extra_elts > 0)
4030 exp->resize (exp->nelts);
4031 memmove (exp->elts + pc + 7, exp->elts + pc + oplen,
4032 EXP_ELEM_TO_BYTES (save_nelts - pc - oplen));
4033 if (extra_elts < 0)
4034 exp->resize (exp->nelts);
4035
4036 exp->elts[pc].opcode = exp->elts[pc + 2].opcode = OP_FUNCALL;
4037 exp->elts[pc + 1].longconst = (LONGEST) nargs;
4038
4039 exp->elts[pc + 3].opcode = exp->elts[pc + 6].opcode = OP_VAR_VALUE;
4040 exp->elts[pc + 4].block = block;
4041 exp->elts[pc + 5].symbol = sym;
4042 }
4043
4044 /* Type-class predicates */
4045
4046 /* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type),
4047 or FLOAT). */
4048
4049 static int
4050 numeric_type_p (struct type *type)
4051 {
4052 if (type == NULL)
4053 return 0;
4054 else
4055 {
4056 switch (type->code ())
4057 {
4058 case TYPE_CODE_INT:
4059 case TYPE_CODE_FLT:
4060 return 1;
4061 case TYPE_CODE_RANGE:
4062 return (type == TYPE_TARGET_TYPE (type)
4063 || numeric_type_p (TYPE_TARGET_TYPE (type)));
4064 default:
4065 return 0;
4066 }
4067 }
4068 }
4069
4070 /* True iff TYPE is integral (an INT or RANGE of INTs). */
4071
4072 static int
4073 integer_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 return 1;
4083 case TYPE_CODE_RANGE:
4084 return (type == TYPE_TARGET_TYPE (type)
4085 || integer_type_p (TYPE_TARGET_TYPE (type)));
4086 default:
4087 return 0;
4088 }
4089 }
4090 }
4091
4092 /* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */
4093
4094 static int
4095 scalar_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_FLT:
4107 return 1;
4108 default:
4109 return 0;
4110 }
4111 }
4112 }
4113
4114 /* True iff TYPE is discrete (INT, RANGE, ENUM). */
4115
4116 static int
4117 discrete_type_p (struct type *type)
4118 {
4119 if (type == NULL)
4120 return 0;
4121 else
4122 {
4123 switch (type->code ())
4124 {
4125 case TYPE_CODE_INT:
4126 case TYPE_CODE_RANGE:
4127 case TYPE_CODE_ENUM:
4128 case TYPE_CODE_BOOL:
4129 return 1;
4130 default:
4131 return 0;
4132 }
4133 }
4134 }
4135
4136 /* Returns non-zero if OP with operands in the vector ARGS could be
4137 a user-defined function. Errs on the side of pre-defined operators
4138 (i.e., result 0). */
4139
4140 static int
4141 possible_user_operator_p (enum exp_opcode op, struct value *args[])
4142 {
4143 struct type *type0 =
4144 (args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0]));
4145 struct type *type1 =
4146 (args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1]));
4147
4148 if (type0 == NULL)
4149 return 0;
4150
4151 switch (op)
4152 {
4153 default:
4154 return 0;
4155
4156 case BINOP_ADD:
4157 case BINOP_SUB:
4158 case BINOP_MUL:
4159 case BINOP_DIV:
4160 return (!(numeric_type_p (type0) && numeric_type_p (type1)));
4161
4162 case BINOP_REM:
4163 case BINOP_MOD:
4164 case BINOP_BITWISE_AND:
4165 case BINOP_BITWISE_IOR:
4166 case BINOP_BITWISE_XOR:
4167 return (!(integer_type_p (type0) && integer_type_p (type1)));
4168
4169 case BINOP_EQUAL:
4170 case BINOP_NOTEQUAL:
4171 case BINOP_LESS:
4172 case BINOP_GTR:
4173 case BINOP_LEQ:
4174 case BINOP_GEQ:
4175 return (!(scalar_type_p (type0) && scalar_type_p (type1)));
4176
4177 case BINOP_CONCAT:
4178 return !ada_is_array_type (type0) || !ada_is_array_type (type1);
4179
4180 case BINOP_EXP:
4181 return (!(numeric_type_p (type0) && integer_type_p (type1)));
4182
4183 case UNOP_NEG:
4184 case UNOP_PLUS:
4185 case UNOP_LOGICAL_NOT:
4186 case UNOP_ABS:
4187 return (!numeric_type_p (type0));
4188
4189 }
4190 }
4191 \f
4192 /* Renaming */
4193
4194 /* NOTES:
4195
4196 1. In the following, we assume that a renaming type's name may
4197 have an ___XD suffix. It would be nice if this went away at some
4198 point.
4199 2. We handle both the (old) purely type-based representation of
4200 renamings and the (new) variable-based encoding. At some point,
4201 it is devoutly to be hoped that the former goes away
4202 (FIXME: hilfinger-2007-07-09).
4203 3. Subprogram renamings are not implemented, although the XRS
4204 suffix is recognized (FIXME: hilfinger-2007-07-09). */
4205
4206 /* If SYM encodes a renaming,
4207
4208 <renaming> renames <renamed entity>,
4209
4210 sets *LEN to the length of the renamed entity's name,
4211 *RENAMED_ENTITY to that name (not null-terminated), and *RENAMING_EXPR to
4212 the string describing the subcomponent selected from the renamed
4213 entity. Returns ADA_NOT_RENAMING if SYM does not encode a renaming
4214 (in which case, the values of *RENAMED_ENTITY, *LEN, and *RENAMING_EXPR
4215 are undefined). Otherwise, returns a value indicating the category
4216 of entity renamed: an object (ADA_OBJECT_RENAMING), exception
4217 (ADA_EXCEPTION_RENAMING), package (ADA_PACKAGE_RENAMING), or
4218 subprogram (ADA_SUBPROGRAM_RENAMING). Does no allocation; the
4219 strings returned in *RENAMED_ENTITY and *RENAMING_EXPR should not be
4220 deallocated. The values of RENAMED_ENTITY, LEN, or RENAMING_EXPR
4221 may be NULL, in which case they are not assigned.
4222
4223 [Currently, however, GCC does not generate subprogram renamings.] */
4224
4225 enum ada_renaming_category
4226 ada_parse_renaming (struct symbol *sym,
4227 const char **renamed_entity, int *len,
4228 const char **renaming_expr)
4229 {
4230 enum ada_renaming_category kind;
4231 const char *info;
4232 const char *suffix;
4233
4234 if (sym == NULL)
4235 return ADA_NOT_RENAMING;
4236 switch (SYMBOL_CLASS (sym))
4237 {
4238 default:
4239 return ADA_NOT_RENAMING;
4240 case LOC_LOCAL:
4241 case LOC_STATIC:
4242 case LOC_COMPUTED:
4243 case LOC_OPTIMIZED_OUT:
4244 info = strstr (sym->linkage_name (), "___XR");
4245 if (info == NULL)
4246 return ADA_NOT_RENAMING;
4247 switch (info[5])
4248 {
4249 case '_':
4250 kind = ADA_OBJECT_RENAMING;
4251 info += 6;
4252 break;
4253 case 'E':
4254 kind = ADA_EXCEPTION_RENAMING;
4255 info += 7;
4256 break;
4257 case 'P':
4258 kind = ADA_PACKAGE_RENAMING;
4259 info += 7;
4260 break;
4261 case 'S':
4262 kind = ADA_SUBPROGRAM_RENAMING;
4263 info += 7;
4264 break;
4265 default:
4266 return ADA_NOT_RENAMING;
4267 }
4268 }
4269
4270 if (renamed_entity != NULL)
4271 *renamed_entity = info;
4272 suffix = strstr (info, "___XE");
4273 if (suffix == NULL || suffix == info)
4274 return ADA_NOT_RENAMING;
4275 if (len != NULL)
4276 *len = strlen (info) - strlen (suffix);
4277 suffix += 5;
4278 if (renaming_expr != NULL)
4279 *renaming_expr = suffix;
4280 return kind;
4281 }
4282
4283 /* Compute the value of the given RENAMING_SYM, which is expected to
4284 be a symbol encoding a renaming expression. BLOCK is the block
4285 used to evaluate the renaming. */
4286
4287 static struct value *
4288 ada_read_renaming_var_value (struct symbol *renaming_sym,
4289 const struct block *block)
4290 {
4291 const char *sym_name;
4292
4293 sym_name = renaming_sym->linkage_name ();
4294 expression_up expr = parse_exp_1 (&sym_name, 0, block, 0);
4295 return evaluate_expression (expr.get ());
4296 }
4297 \f
4298
4299 /* Evaluation: Function Calls */
4300
4301 /* Return an lvalue containing the value VAL. This is the identity on
4302 lvalues, and otherwise has the side-effect of allocating memory
4303 in the inferior where a copy of the value contents is copied. */
4304
4305 static struct value *
4306 ensure_lval (struct value *val)
4307 {
4308 if (VALUE_LVAL (val) == not_lval
4309 || VALUE_LVAL (val) == lval_internalvar)
4310 {
4311 int len = TYPE_LENGTH (ada_check_typedef (value_type (val)));
4312 const CORE_ADDR addr =
4313 value_as_long (value_allocate_space_in_inferior (len));
4314
4315 VALUE_LVAL (val) = lval_memory;
4316 set_value_address (val, addr);
4317 write_memory (addr, value_contents (val), len);
4318 }
4319
4320 return val;
4321 }
4322
4323 /* Given ARG, a value of type (pointer or reference to a)*
4324 structure/union, extract the component named NAME from the ultimate
4325 target structure/union and return it as a value with its
4326 appropriate type.
4327
4328 The routine searches for NAME among all members of the structure itself
4329 and (recursively) among all members of any wrapper members
4330 (e.g., '_parent').
4331
4332 If NO_ERR, then simply return NULL in case of error, rather than
4333 calling error. */
4334
4335 static struct value *
4336 ada_value_struct_elt (struct value *arg, const char *name, int no_err)
4337 {
4338 struct type *t, *t1;
4339 struct value *v;
4340 int check_tag;
4341
4342 v = NULL;
4343 t1 = t = ada_check_typedef (value_type (arg));
4344 if (t->code () == TYPE_CODE_REF)
4345 {
4346 t1 = TYPE_TARGET_TYPE (t);
4347 if (t1 == NULL)
4348 goto BadValue;
4349 t1 = ada_check_typedef (t1);
4350 if (t1->code () == TYPE_CODE_PTR)
4351 {
4352 arg = coerce_ref (arg);
4353 t = t1;
4354 }
4355 }
4356
4357 while (t->code () == TYPE_CODE_PTR)
4358 {
4359 t1 = TYPE_TARGET_TYPE (t);
4360 if (t1 == NULL)
4361 goto BadValue;
4362 t1 = ada_check_typedef (t1);
4363 if (t1->code () == TYPE_CODE_PTR)
4364 {
4365 arg = value_ind (arg);
4366 t = t1;
4367 }
4368 else
4369 break;
4370 }
4371
4372 if (t1->code () != TYPE_CODE_STRUCT && t1->code () != TYPE_CODE_UNION)
4373 goto BadValue;
4374
4375 if (t1 == t)
4376 v = ada_search_struct_field (name, arg, 0, t);
4377 else
4378 {
4379 int bit_offset, bit_size, byte_offset;
4380 struct type *field_type;
4381 CORE_ADDR address;
4382
4383 if (t->code () == TYPE_CODE_PTR)
4384 address = value_address (ada_value_ind (arg));
4385 else
4386 address = value_address (ada_coerce_ref (arg));
4387
4388 /* Check to see if this is a tagged type. We also need to handle
4389 the case where the type is a reference to a tagged type, but
4390 we have to be careful to exclude pointers to tagged types.
4391 The latter should be shown as usual (as a pointer), whereas
4392 a reference should mostly be transparent to the user. */
4393
4394 if (ada_is_tagged_type (t1, 0)
4395 || (t1->code () == TYPE_CODE_REF
4396 && ada_is_tagged_type (TYPE_TARGET_TYPE (t1), 0)))
4397 {
4398 /* We first try to find the searched field in the current type.
4399 If not found then let's look in the fixed type. */
4400
4401 if (!find_struct_field (name, t1, 0,
4402 &field_type, &byte_offset, &bit_offset,
4403 &bit_size, NULL))
4404 check_tag = 1;
4405 else
4406 check_tag = 0;
4407 }
4408 else
4409 check_tag = 0;
4410
4411 /* Convert to fixed type in all cases, so that we have proper
4412 offsets to each field in unconstrained record types. */
4413 t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL,
4414 address, NULL, check_tag);
4415
4416 /* Resolve the dynamic type as well. */
4417 arg = value_from_contents_and_address (t1, nullptr, address);
4418 t1 = value_type (arg);
4419
4420 if (find_struct_field (name, t1, 0,
4421 &field_type, &byte_offset, &bit_offset,
4422 &bit_size, NULL))
4423 {
4424 if (bit_size != 0)
4425 {
4426 if (t->code () == TYPE_CODE_REF)
4427 arg = ada_coerce_ref (arg);
4428 else
4429 arg = ada_value_ind (arg);
4430 v = ada_value_primitive_packed_val (arg, NULL, byte_offset,
4431 bit_offset, bit_size,
4432 field_type);
4433 }
4434 else
4435 v = value_at_lazy (field_type, address + byte_offset);
4436 }
4437 }
4438
4439 if (v != NULL || no_err)
4440 return v;
4441 else
4442 error (_("There is no member named %s."), name);
4443
4444 BadValue:
4445 if (no_err)
4446 return NULL;
4447 else
4448 error (_("Attempt to extract a component of "
4449 "a value that is not a record."));
4450 }
4451
4452 /* Return the value ACTUAL, converted to be an appropriate value for a
4453 formal of type FORMAL_TYPE. Use *SP as a stack pointer for
4454 allocating any necessary descriptors (fat pointers), or copies of
4455 values not residing in memory, updating it as needed. */
4456
4457 struct value *
4458 ada_convert_actual (struct value *actual, struct type *formal_type0)
4459 {
4460 struct type *actual_type = ada_check_typedef (value_type (actual));
4461 struct type *formal_type = ada_check_typedef (formal_type0);
4462 struct type *formal_target =
4463 formal_type->code () == TYPE_CODE_PTR
4464 ? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type;
4465 struct type *actual_target =
4466 actual_type->code () == TYPE_CODE_PTR
4467 ? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type;
4468
4469 if (ada_is_array_descriptor_type (formal_target)
4470 && actual_target->code () == TYPE_CODE_ARRAY)
4471 return make_array_descriptor (formal_type, actual);
4472 else if (formal_type->code () == TYPE_CODE_PTR
4473 || formal_type->code () == TYPE_CODE_REF)
4474 {
4475 struct value *result;
4476
4477 if (formal_target->code () == TYPE_CODE_ARRAY
4478 && ada_is_array_descriptor_type (actual_target))
4479 result = desc_data (actual);
4480 else if (formal_type->code () != TYPE_CODE_PTR)
4481 {
4482 if (VALUE_LVAL (actual) != lval_memory)
4483 {
4484 struct value *val;
4485
4486 actual_type = ada_check_typedef (value_type (actual));
4487 val = allocate_value (actual_type);
4488 memcpy ((char *) value_contents_raw (val),
4489 (char *) value_contents (actual),
4490 TYPE_LENGTH (actual_type));
4491 actual = ensure_lval (val);
4492 }
4493 result = value_addr (actual);
4494 }
4495 else
4496 return actual;
4497 return value_cast_pointers (formal_type, result, 0);
4498 }
4499 else if (actual_type->code () == TYPE_CODE_PTR)
4500 return ada_value_ind (actual);
4501 else if (ada_is_aligner_type (formal_type))
4502 {
4503 /* We need to turn this parameter into an aligner type
4504 as well. */
4505 struct value *aligner = allocate_value (formal_type);
4506 struct value *component = ada_value_struct_elt (aligner, "F", 0);
4507
4508 value_assign_to_component (aligner, component, actual);
4509 return aligner;
4510 }
4511
4512 return actual;
4513 }
4514
4515 /* Convert VALUE (which must be an address) to a CORE_ADDR that is a pointer of
4516 type TYPE. This is usually an inefficient no-op except on some targets
4517 (such as AVR) where the representation of a pointer and an address
4518 differs. */
4519
4520 static CORE_ADDR
4521 value_pointer (struct value *value, struct type *type)
4522 {
4523 unsigned len = TYPE_LENGTH (type);
4524 gdb_byte *buf = (gdb_byte *) alloca (len);
4525 CORE_ADDR addr;
4526
4527 addr = value_address (value);
4528 gdbarch_address_to_pointer (type->arch (), type, buf, addr);
4529 addr = extract_unsigned_integer (buf, len, type_byte_order (type));
4530 return addr;
4531 }
4532
4533
4534 /* Push a descriptor of type TYPE for array value ARR on the stack at
4535 *SP, updating *SP to reflect the new descriptor. Return either
4536 an lvalue representing the new descriptor, or (if TYPE is a pointer-
4537 to-descriptor type rather than a descriptor type), a struct value *
4538 representing a pointer to this descriptor. */
4539
4540 static struct value *
4541 make_array_descriptor (struct type *type, struct value *arr)
4542 {
4543 struct type *bounds_type = desc_bounds_type (type);
4544 struct type *desc_type = desc_base_type (type);
4545 struct value *descriptor = allocate_value (desc_type);
4546 struct value *bounds = allocate_value (bounds_type);
4547 int i;
4548
4549 for (i = ada_array_arity (ada_check_typedef (value_type (arr)));
4550 i > 0; i -= 1)
4551 {
4552 modify_field (value_type (bounds), value_contents_writeable (bounds),
4553 ada_array_bound (arr, i, 0),
4554 desc_bound_bitpos (bounds_type, i, 0),
4555 desc_bound_bitsize (bounds_type, i, 0));
4556 modify_field (value_type (bounds), value_contents_writeable (bounds),
4557 ada_array_bound (arr, i, 1),
4558 desc_bound_bitpos (bounds_type, i, 1),
4559 desc_bound_bitsize (bounds_type, i, 1));
4560 }
4561
4562 bounds = ensure_lval (bounds);
4563
4564 modify_field (value_type (descriptor),
4565 value_contents_writeable (descriptor),
4566 value_pointer (ensure_lval (arr),
4567 desc_type->field (0).type ()),
4568 fat_pntr_data_bitpos (desc_type),
4569 fat_pntr_data_bitsize (desc_type));
4570
4571 modify_field (value_type (descriptor),
4572 value_contents_writeable (descriptor),
4573 value_pointer (bounds,
4574 desc_type->field (1).type ()),
4575 fat_pntr_bounds_bitpos (desc_type),
4576 fat_pntr_bounds_bitsize (desc_type));
4577
4578 descriptor = ensure_lval (descriptor);
4579
4580 if (type->code () == TYPE_CODE_PTR)
4581 return value_addr (descriptor);
4582 else
4583 return descriptor;
4584 }
4585 \f
4586 /* Symbol Cache Module */
4587
4588 /* Performance measurements made as of 2010-01-15 indicate that
4589 this cache does bring some noticeable improvements. Depending
4590 on the type of entity being printed, the cache can make it as much
4591 as an order of magnitude faster than without it.
4592
4593 The descriptive type DWARF extension has significantly reduced
4594 the need for this cache, at least when DWARF is being used. However,
4595 even in this case, some expensive name-based symbol searches are still
4596 sometimes necessary - to find an XVZ variable, mostly. */
4597
4598 /* Return the symbol cache associated to the given program space PSPACE.
4599 If not allocated for this PSPACE yet, allocate and initialize one. */
4600
4601 static struct ada_symbol_cache *
4602 ada_get_symbol_cache (struct program_space *pspace)
4603 {
4604 struct ada_pspace_data *pspace_data = get_ada_pspace_data (pspace);
4605
4606 if (pspace_data->sym_cache == nullptr)
4607 pspace_data->sym_cache.reset (new ada_symbol_cache);
4608
4609 return pspace_data->sym_cache.get ();
4610 }
4611
4612 /* Clear all entries from the symbol cache. */
4613
4614 static void
4615 ada_clear_symbol_cache ()
4616 {
4617 struct ada_pspace_data *pspace_data
4618 = get_ada_pspace_data (current_program_space);
4619
4620 if (pspace_data->sym_cache != nullptr)
4621 pspace_data->sym_cache.reset ();
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 if (objfile->sf != nullptr)
5603 objfile->sf->qf->map_matching_symbols (objfile, lookup_name,
5604 domain, global, callback,
5605 (is_wild_match
5606 ? NULL : compare_names));
5607
5608 for (compunit_symtab *cu : objfile->compunits ())
5609 {
5610 const struct block *global_block
5611 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cu), GLOBAL_BLOCK);
5612
5613 if (ada_add_block_renamings (obstackp, global_block, lookup_name,
5614 domain))
5615 data.found_sym = 1;
5616 }
5617 }
5618
5619 if (num_defns_collected (obstackp) == 0 && global && !is_wild_match)
5620 {
5621 const char *name = ada_lookup_name (lookup_name);
5622 std::string bracket_name = std::string ("<_ada_") + name + '>';
5623 lookup_name_info name1 (bracket_name, symbol_name_match_type::FULL);
5624
5625 for (objfile *objfile : current_program_space->objfiles ())
5626 {
5627 data.objfile = objfile;
5628 if (objfile->sf != nullptr)
5629 objfile->sf->qf->map_matching_symbols (objfile, name1,
5630 domain, global, callback,
5631 compare_names);
5632 }
5633 }
5634 }
5635
5636 /* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if
5637 FULL_SEARCH is non-zero, enclosing scope and in global scopes,
5638 returning the number of matches. Add these to OBSTACKP.
5639
5640 When FULL_SEARCH is non-zero, any non-function/non-enumeral
5641 symbol match within the nest of blocks whose innermost member is BLOCK,
5642 is the one match returned (no other matches in that or
5643 enclosing blocks is returned). If there are any matches in or
5644 surrounding BLOCK, then these alone are returned.
5645
5646 Names prefixed with "standard__" are handled specially:
5647 "standard__" is first stripped off (by the lookup_name
5648 constructor), and only static and global symbols are searched.
5649
5650 If MADE_GLOBAL_LOOKUP_P is non-null, set it before return to whether we had
5651 to lookup global symbols. */
5652
5653 static void
5654 ada_add_all_symbols (struct obstack *obstackp,
5655 const struct block *block,
5656 const lookup_name_info &lookup_name,
5657 domain_enum domain,
5658 int full_search,
5659 int *made_global_lookup_p)
5660 {
5661 struct symbol *sym;
5662
5663 if (made_global_lookup_p)
5664 *made_global_lookup_p = 0;
5665
5666 /* Special case: If the user specifies a symbol name inside package
5667 Standard, do a non-wild matching of the symbol name without
5668 the "standard__" prefix. This was primarily introduced in order
5669 to allow the user to specifically access the standard exceptions
5670 using, for instance, Standard.Constraint_Error when Constraint_Error
5671 is ambiguous (due to the user defining its own Constraint_Error
5672 entity inside its program). */
5673 if (lookup_name.ada ().standard_p ())
5674 block = NULL;
5675
5676 /* Check the non-global symbols. If we have ANY match, then we're done. */
5677
5678 if (block != NULL)
5679 {
5680 if (full_search)
5681 ada_add_local_symbols (obstackp, lookup_name, block, domain);
5682 else
5683 {
5684 /* In the !full_search case we're are being called by
5685 iterate_over_symbols, and we don't want to search
5686 superblocks. */
5687 ada_add_block_symbols (obstackp, block, lookup_name, domain, NULL);
5688 }
5689 if (num_defns_collected (obstackp) > 0 || !full_search)
5690 return;
5691 }
5692
5693 /* No non-global symbols found. Check our cache to see if we have
5694 already performed this search before. If we have, then return
5695 the same result. */
5696
5697 if (lookup_cached_symbol (ada_lookup_name (lookup_name),
5698 domain, &sym, &block))
5699 {
5700 if (sym != NULL)
5701 add_defn_to_vec (obstackp, sym, block);
5702 return;
5703 }
5704
5705 if (made_global_lookup_p)
5706 *made_global_lookup_p = 1;
5707
5708 /* Search symbols from all global blocks. */
5709
5710 add_nonlocal_symbols (obstackp, lookup_name, domain, 1);
5711
5712 /* Now add symbols from all per-file blocks if we've gotten no hits
5713 (not strictly correct, but perhaps better than an error). */
5714
5715 if (num_defns_collected (obstackp) == 0)
5716 add_nonlocal_symbols (obstackp, lookup_name, domain, 0);
5717 }
5718
5719 /* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if FULL_SEARCH
5720 is non-zero, enclosing scope and in global scopes, returning the number of
5721 matches.
5722 Fills *RESULTS with (SYM,BLOCK) tuples, indicating the symbols
5723 found and the blocks and symbol tables (if any) in which they were
5724 found.
5725
5726 When full_search is non-zero, any non-function/non-enumeral
5727 symbol match within the nest of blocks whose innermost member is BLOCK,
5728 is the one match returned (no other matches in that or
5729 enclosing blocks is returned). If there are any matches in or
5730 surrounding BLOCK, then these alone are returned.
5731
5732 Names prefixed with "standard__" are handled specially: "standard__"
5733 is first stripped off, and only static and global symbols are searched. */
5734
5735 static int
5736 ada_lookup_symbol_list_worker (const lookup_name_info &lookup_name,
5737 const struct block *block,
5738 domain_enum domain,
5739 std::vector<struct block_symbol> *results,
5740 int full_search)
5741 {
5742 int syms_from_global_search;
5743 int ndefns;
5744 auto_obstack obstack;
5745
5746 ada_add_all_symbols (&obstack, block, lookup_name,
5747 domain, full_search, &syms_from_global_search);
5748
5749 ndefns = num_defns_collected (&obstack);
5750
5751 struct block_symbol *base = defns_collected (&obstack, 1);
5752 for (int i = 0; i < ndefns; ++i)
5753 results->push_back (base[i]);
5754
5755 ndefns = remove_extra_symbols (results);
5756
5757 if (ndefns == 0 && full_search && syms_from_global_search)
5758 cache_symbol (ada_lookup_name (lookup_name), domain, NULL, NULL);
5759
5760 if (ndefns == 1 && full_search && syms_from_global_search)
5761 cache_symbol (ada_lookup_name (lookup_name), domain,
5762 (*results)[0].symbol, (*results)[0].block);
5763
5764 ndefns = remove_irrelevant_renamings (results, block);
5765
5766 return ndefns;
5767 }
5768
5769 /* Find symbols in DOMAIN matching NAME, in BLOCK and enclosing scope and
5770 in global scopes, returning the number of matches, and filling *RESULTS
5771 with (SYM,BLOCK) tuples.
5772
5773 See ada_lookup_symbol_list_worker for further details. */
5774
5775 int
5776 ada_lookup_symbol_list (const char *name, const struct block *block,
5777 domain_enum domain,
5778 std::vector<struct block_symbol> *results)
5779 {
5780 symbol_name_match_type name_match_type = name_match_type_from_name (name);
5781 lookup_name_info lookup_name (name, name_match_type);
5782
5783 return ada_lookup_symbol_list_worker (lookup_name, block, domain, results, 1);
5784 }
5785
5786 /* The result is as for ada_lookup_symbol_list with FULL_SEARCH set
5787 to 1, but choosing the first symbol found if there are multiple
5788 choices.
5789
5790 The result is stored in *INFO, which must be non-NULL.
5791 If no match is found, INFO->SYM is set to NULL. */
5792
5793 void
5794 ada_lookup_encoded_symbol (const char *name, const struct block *block,
5795 domain_enum domain,
5796 struct block_symbol *info)
5797 {
5798 /* Since we already have an encoded name, wrap it in '<>' to force a
5799 verbatim match. Otherwise, if the name happens to not look like
5800 an encoded name (because it doesn't include a "__"),
5801 ada_lookup_name_info would re-encode/fold it again, and that
5802 would e.g., incorrectly lowercase object renaming names like
5803 "R28b" -> "r28b". */
5804 std::string verbatim = add_angle_brackets (name);
5805
5806 gdb_assert (info != NULL);
5807 *info = ada_lookup_symbol (verbatim.c_str (), block, domain);
5808 }
5809
5810 /* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing
5811 scope and in global scopes, or NULL if none. NAME is folded and
5812 encoded first. Otherwise, the result is as for ada_lookup_symbol_list,
5813 choosing the first symbol if there are multiple choices. */
5814
5815 struct block_symbol
5816 ada_lookup_symbol (const char *name, const struct block *block0,
5817 domain_enum domain)
5818 {
5819 std::vector<struct block_symbol> candidates;
5820 int n_candidates;
5821
5822 n_candidates = ada_lookup_symbol_list (name, block0, domain, &candidates);
5823
5824 if (n_candidates == 0)
5825 return {};
5826
5827 block_symbol info = candidates[0];
5828 info.symbol = fixup_symbol_section (info.symbol, NULL);
5829 return info;
5830 }
5831
5832
5833 /* True iff STR is a possible encoded suffix of a normal Ada name
5834 that is to be ignored for matching purposes. Suffixes of parallel
5835 names (e.g., XVE) are not included here. Currently, the possible suffixes
5836 are given by any of the regular expressions:
5837
5838 [.$][0-9]+ [nested subprogram suffix, on platforms such as GNU/Linux]
5839 ___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX]
5840 TKB [subprogram suffix for task bodies]
5841 _E[0-9]+[bs]$ [protected object entry suffixes]
5842 (X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$
5843
5844 Also, any leading "__[0-9]+" sequence is skipped before the suffix
5845 match is performed. This sequence is used to differentiate homonyms,
5846 is an optional part of a valid name suffix. */
5847
5848 static int
5849 is_name_suffix (const char *str)
5850 {
5851 int k;
5852 const char *matching;
5853 const int len = strlen (str);
5854
5855 /* Skip optional leading __[0-9]+. */
5856
5857 if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2]))
5858 {
5859 str += 3;
5860 while (isdigit (str[0]))
5861 str += 1;
5862 }
5863
5864 /* [.$][0-9]+ */
5865
5866 if (str[0] == '.' || str[0] == '$')
5867 {
5868 matching = str + 1;
5869 while (isdigit (matching[0]))
5870 matching += 1;
5871 if (matching[0] == '\0')
5872 return 1;
5873 }
5874
5875 /* ___[0-9]+ */
5876
5877 if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_')
5878 {
5879 matching = str + 3;
5880 while (isdigit (matching[0]))
5881 matching += 1;
5882 if (matching[0] == '\0')
5883 return 1;
5884 }
5885
5886 /* "TKB" suffixes are used for subprograms implementing task bodies. */
5887
5888 if (strcmp (str, "TKB") == 0)
5889 return 1;
5890
5891 #if 0
5892 /* FIXME: brobecker/2005-09-23: Protected Object subprograms end
5893 with a N at the end. Unfortunately, the compiler uses the same
5894 convention for other internal types it creates. So treating
5895 all entity names that end with an "N" as a name suffix causes
5896 some regressions. For instance, consider the case of an enumerated
5897 type. To support the 'Image attribute, it creates an array whose
5898 name ends with N.
5899 Having a single character like this as a suffix carrying some
5900 information is a bit risky. Perhaps we should change the encoding
5901 to be something like "_N" instead. In the meantime, do not do
5902 the following check. */
5903 /* Protected Object Subprograms */
5904 if (len == 1 && str [0] == 'N')
5905 return 1;
5906 #endif
5907
5908 /* _E[0-9]+[bs]$ */
5909 if (len > 3 && str[0] == '_' && str [1] == 'E' && isdigit (str[2]))
5910 {
5911 matching = str + 3;
5912 while (isdigit (matching[0]))
5913 matching += 1;
5914 if ((matching[0] == 'b' || matching[0] == 's')
5915 && matching [1] == '\0')
5916 return 1;
5917 }
5918
5919 /* ??? We should not modify STR directly, as we are doing below. This
5920 is fine in this case, but may become problematic later if we find
5921 that this alternative did not work, and want to try matching
5922 another one from the begining of STR. Since we modified it, we
5923 won't be able to find the begining of the string anymore! */
5924 if (str[0] == 'X')
5925 {
5926 str += 1;
5927 while (str[0] != '_' && str[0] != '\0')
5928 {
5929 if (str[0] != 'n' && str[0] != 'b')
5930 return 0;
5931 str += 1;
5932 }
5933 }
5934
5935 if (str[0] == '\000')
5936 return 1;
5937
5938 if (str[0] == '_')
5939 {
5940 if (str[1] != '_' || str[2] == '\000')
5941 return 0;
5942 if (str[2] == '_')
5943 {
5944 if (strcmp (str + 3, "JM") == 0)
5945 return 1;
5946 /* FIXME: brobecker/2004-09-30: GNAT will soon stop using
5947 the LJM suffix in favor of the JM one. But we will
5948 still accept LJM as a valid suffix for a reasonable
5949 amount of time, just to allow ourselves to debug programs
5950 compiled using an older version of GNAT. */
5951 if (strcmp (str + 3, "LJM") == 0)
5952 return 1;
5953 if (str[3] != 'X')
5954 return 0;
5955 if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B'
5956 || str[4] == 'U' || str[4] == 'P')
5957 return 1;
5958 if (str[4] == 'R' && str[5] != 'T')
5959 return 1;
5960 return 0;
5961 }
5962 if (!isdigit (str[2]))
5963 return 0;
5964 for (k = 3; str[k] != '\0'; k += 1)
5965 if (!isdigit (str[k]) && str[k] != '_')
5966 return 0;
5967 return 1;
5968 }
5969 if (str[0] == '$' && isdigit (str[1]))
5970 {
5971 for (k = 2; str[k] != '\0'; k += 1)
5972 if (!isdigit (str[k]) && str[k] != '_')
5973 return 0;
5974 return 1;
5975 }
5976 return 0;
5977 }
5978
5979 /* Return non-zero if the string starting at NAME and ending before
5980 NAME_END contains no capital letters. */
5981
5982 static int
5983 is_valid_name_for_wild_match (const char *name0)
5984 {
5985 std::string decoded_name = ada_decode (name0);
5986 int i;
5987
5988 /* If the decoded name starts with an angle bracket, it means that
5989 NAME0 does not follow the GNAT encoding format. It should then
5990 not be allowed as a possible wild match. */
5991 if (decoded_name[0] == '<')
5992 return 0;
5993
5994 for (i=0; decoded_name[i] != '\0'; i++)
5995 if (isalpha (decoded_name[i]) && !islower (decoded_name[i]))
5996 return 0;
5997
5998 return 1;
5999 }
6000
6001 /* Advance *NAMEP to next occurrence in the string NAME0 of the TARGET0
6002 character which could start a simple name. Assumes that *NAMEP points
6003 somewhere inside the string beginning at NAME0. */
6004
6005 static int
6006 advance_wild_match (const char **namep, const char *name0, char target0)
6007 {
6008 const char *name = *namep;
6009
6010 while (1)
6011 {
6012 char t0, t1;
6013
6014 t0 = *name;
6015 if (t0 == '_')
6016 {
6017 t1 = name[1];
6018 if ((t1 >= 'a' && t1 <= 'z') || (t1 >= '0' && t1 <= '9'))
6019 {
6020 name += 1;
6021 if (name == name0 + 5 && startswith (name0, "_ada"))
6022 break;
6023 else
6024 name += 1;
6025 }
6026 else if (t1 == '_' && ((name[2] >= 'a' && name[2] <= 'z')
6027 || name[2] == target0))
6028 {
6029 name += 2;
6030 break;
6031 }
6032 else if (t1 == '_' && name[2] == 'B' && name[3] == '_')
6033 {
6034 /* Names like "pkg__B_N__name", where N is a number, are
6035 block-local. We can handle these by simply skipping
6036 the "B_" here. */
6037 name += 4;
6038 }
6039 else
6040 return 0;
6041 }
6042 else if ((t0 >= 'a' && t0 <= 'z') || (t0 >= '0' && t0 <= '9'))
6043 name += 1;
6044 else
6045 return 0;
6046 }
6047
6048 *namep = name;
6049 return 1;
6050 }
6051
6052 /* Return true iff NAME encodes a name of the form prefix.PATN.
6053 Ignores any informational suffixes of NAME (i.e., for which
6054 is_name_suffix is true). Assumes that PATN is a lower-cased Ada
6055 simple name. */
6056
6057 static bool
6058 wild_match (const char *name, const char *patn)
6059 {
6060 const char *p;
6061 const char *name0 = name;
6062
6063 while (1)
6064 {
6065 const char *match = name;
6066
6067 if (*name == *patn)
6068 {
6069 for (name += 1, p = patn + 1; *p != '\0'; name += 1, p += 1)
6070 if (*p != *name)
6071 break;
6072 if (*p == '\0' && is_name_suffix (name))
6073 return match == name0 || is_valid_name_for_wild_match (name0);
6074
6075 if (name[-1] == '_')
6076 name -= 1;
6077 }
6078 if (!advance_wild_match (&name, name0, *patn))
6079 return false;
6080 }
6081 }
6082
6083 /* Add symbols from BLOCK matching LOOKUP_NAME in DOMAIN to vector
6084 *defn_symbols, updating the list of symbols in OBSTACKP (if
6085 necessary). OBJFILE is the section containing BLOCK. */
6086
6087 static void
6088 ada_add_block_symbols (struct obstack *obstackp,
6089 const struct block *block,
6090 const lookup_name_info &lookup_name,
6091 domain_enum domain, struct objfile *objfile)
6092 {
6093 struct block_iterator iter;
6094 /* A matching argument symbol, if any. */
6095 struct symbol *arg_sym;
6096 /* Set true when we find a matching non-argument symbol. */
6097 int found_sym;
6098 struct symbol *sym;
6099
6100 arg_sym = NULL;
6101 found_sym = 0;
6102 for (sym = block_iter_match_first (block, lookup_name, &iter);
6103 sym != NULL;
6104 sym = block_iter_match_next (lookup_name, &iter))
6105 {
6106 if (symbol_matches_domain (sym->language (), SYMBOL_DOMAIN (sym), domain))
6107 {
6108 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6109 {
6110 if (SYMBOL_IS_ARGUMENT (sym))
6111 arg_sym = sym;
6112 else
6113 {
6114 found_sym = 1;
6115 add_defn_to_vec (obstackp,
6116 fixup_symbol_section (sym, objfile),
6117 block);
6118 }
6119 }
6120 }
6121 }
6122
6123 /* Handle renamings. */
6124
6125 if (ada_add_block_renamings (obstackp, block, lookup_name, domain))
6126 found_sym = 1;
6127
6128 if (!found_sym && arg_sym != NULL)
6129 {
6130 add_defn_to_vec (obstackp,
6131 fixup_symbol_section (arg_sym, objfile),
6132 block);
6133 }
6134
6135 if (!lookup_name.ada ().wild_match_p ())
6136 {
6137 arg_sym = NULL;
6138 found_sym = 0;
6139 const std::string &ada_lookup_name = lookup_name.ada ().lookup_name ();
6140 const char *name = ada_lookup_name.c_str ();
6141 size_t name_len = ada_lookup_name.size ();
6142
6143 ALL_BLOCK_SYMBOLS (block, iter, sym)
6144 {
6145 if (symbol_matches_domain (sym->language (),
6146 SYMBOL_DOMAIN (sym), domain))
6147 {
6148 int cmp;
6149
6150 cmp = (int) '_' - (int) sym->linkage_name ()[0];
6151 if (cmp == 0)
6152 {
6153 cmp = !startswith (sym->linkage_name (), "_ada_");
6154 if (cmp == 0)
6155 cmp = strncmp (name, sym->linkage_name () + 5,
6156 name_len);
6157 }
6158
6159 if (cmp == 0
6160 && is_name_suffix (sym->linkage_name () + name_len + 5))
6161 {
6162 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6163 {
6164 if (SYMBOL_IS_ARGUMENT (sym))
6165 arg_sym = sym;
6166 else
6167 {
6168 found_sym = 1;
6169 add_defn_to_vec (obstackp,
6170 fixup_symbol_section (sym, objfile),
6171 block);
6172 }
6173 }
6174 }
6175 }
6176 }
6177
6178 /* NOTE: This really shouldn't be needed for _ada_ symbols.
6179 They aren't parameters, right? */
6180 if (!found_sym && arg_sym != NULL)
6181 {
6182 add_defn_to_vec (obstackp,
6183 fixup_symbol_section (arg_sym, objfile),
6184 block);
6185 }
6186 }
6187 }
6188 \f
6189
6190 /* Symbol Completion */
6191
6192 /* See symtab.h. */
6193
6194 bool
6195 ada_lookup_name_info::matches
6196 (const char *sym_name,
6197 symbol_name_match_type match_type,
6198 completion_match_result *comp_match_res) const
6199 {
6200 bool match = false;
6201 const char *text = m_encoded_name.c_str ();
6202 size_t text_len = m_encoded_name.size ();
6203
6204 /* First, test against the fully qualified name of the symbol. */
6205
6206 if (strncmp (sym_name, text, text_len) == 0)
6207 match = true;
6208
6209 std::string decoded_name = ada_decode (sym_name);
6210 if (match && !m_encoded_p)
6211 {
6212 /* One needed check before declaring a positive match is to verify
6213 that iff we are doing a verbatim match, the decoded version
6214 of the symbol name starts with '<'. Otherwise, this symbol name
6215 is not a suitable completion. */
6216
6217 bool has_angle_bracket = (decoded_name[0] == '<');
6218 match = (has_angle_bracket == m_verbatim_p);
6219 }
6220
6221 if (match && !m_verbatim_p)
6222 {
6223 /* When doing non-verbatim match, another check that needs to
6224 be done is to verify that the potentially matching symbol name
6225 does not include capital letters, because the ada-mode would
6226 not be able to understand these symbol names without the
6227 angle bracket notation. */
6228 const char *tmp;
6229
6230 for (tmp = sym_name; *tmp != '\0' && !isupper (*tmp); tmp++);
6231 if (*tmp != '\0')
6232 match = false;
6233 }
6234
6235 /* Second: Try wild matching... */
6236
6237 if (!match && m_wild_match_p)
6238 {
6239 /* Since we are doing wild matching, this means that TEXT
6240 may represent an unqualified symbol name. We therefore must
6241 also compare TEXT against the unqualified name of the symbol. */
6242 sym_name = ada_unqualified_name (decoded_name.c_str ());
6243
6244 if (strncmp (sym_name, text, text_len) == 0)
6245 match = true;
6246 }
6247
6248 /* Finally: If we found a match, prepare the result to return. */
6249
6250 if (!match)
6251 return false;
6252
6253 if (comp_match_res != NULL)
6254 {
6255 std::string &match_str = comp_match_res->match.storage ();
6256
6257 if (!m_encoded_p)
6258 match_str = ada_decode (sym_name);
6259 else
6260 {
6261 if (m_verbatim_p)
6262 match_str = add_angle_brackets (sym_name);
6263 else
6264 match_str = sym_name;
6265
6266 }
6267
6268 comp_match_res->set_match (match_str.c_str ());
6269 }
6270
6271 return true;
6272 }
6273
6274 /* Field Access */
6275
6276 /* Return non-zero if TYPE is a pointer to the GNAT dispatch table used
6277 for tagged types. */
6278
6279 static int
6280 ada_is_dispatch_table_ptr_type (struct type *type)
6281 {
6282 const char *name;
6283
6284 if (type->code () != TYPE_CODE_PTR)
6285 return 0;
6286
6287 name = TYPE_TARGET_TYPE (type)->name ();
6288 if (name == NULL)
6289 return 0;
6290
6291 return (strcmp (name, "ada__tags__dispatch_table") == 0);
6292 }
6293
6294 /* Return non-zero if TYPE is an interface tag. */
6295
6296 static int
6297 ada_is_interface_tag (struct type *type)
6298 {
6299 const char *name = type->name ();
6300
6301 if (name == NULL)
6302 return 0;
6303
6304 return (strcmp (name, "ada__tags__interface_tag") == 0);
6305 }
6306
6307 /* True if field number FIELD_NUM in struct or union type TYPE is supposed
6308 to be invisible to users. */
6309
6310 int
6311 ada_is_ignored_field (struct type *type, int field_num)
6312 {
6313 if (field_num < 0 || field_num > type->num_fields ())
6314 return 1;
6315
6316 /* Check the name of that field. */
6317 {
6318 const char *name = TYPE_FIELD_NAME (type, field_num);
6319
6320 /* Anonymous field names should not be printed.
6321 brobecker/2007-02-20: I don't think this can actually happen
6322 but we don't want to print the value of anonymous fields anyway. */
6323 if (name == NULL)
6324 return 1;
6325
6326 /* Normally, fields whose name start with an underscore ("_")
6327 are fields that have been internally generated by the compiler,
6328 and thus should not be printed. The "_parent" field is special,
6329 however: This is a field internally generated by the compiler
6330 for tagged types, and it contains the components inherited from
6331 the parent type. This field should not be printed as is, but
6332 should not be ignored either. */
6333 if (name[0] == '_' && !startswith (name, "_parent"))
6334 return 1;
6335 }
6336
6337 /* If this is the dispatch table of a tagged type or an interface tag,
6338 then ignore. */
6339 if (ada_is_tagged_type (type, 1)
6340 && (ada_is_dispatch_table_ptr_type (type->field (field_num).type ())
6341 || ada_is_interface_tag (type->field (field_num).type ())))
6342 return 1;
6343
6344 /* Not a special field, so it should not be ignored. */
6345 return 0;
6346 }
6347
6348 /* True iff TYPE has a tag field. If REFOK, then TYPE may also be a
6349 pointer or reference type whose ultimate target has a tag field. */
6350
6351 int
6352 ada_is_tagged_type (struct type *type, int refok)
6353 {
6354 return (ada_lookup_struct_elt_type (type, "_tag", refok, 1) != NULL);
6355 }
6356
6357 /* True iff TYPE represents the type of X'Tag */
6358
6359 int
6360 ada_is_tag_type (struct type *type)
6361 {
6362 type = ada_check_typedef (type);
6363
6364 if (type == NULL || type->code () != TYPE_CODE_PTR)
6365 return 0;
6366 else
6367 {
6368 const char *name = ada_type_name (TYPE_TARGET_TYPE (type));
6369
6370 return (name != NULL
6371 && strcmp (name, "ada__tags__dispatch_table") == 0);
6372 }
6373 }
6374
6375 /* The type of the tag on VAL. */
6376
6377 static struct type *
6378 ada_tag_type (struct value *val)
6379 {
6380 return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0);
6381 }
6382
6383 /* Return 1 if TAG follows the old scheme for Ada tags (used for Ada 95,
6384 retired at Ada 05). */
6385
6386 static int
6387 is_ada95_tag (struct value *tag)
6388 {
6389 return ada_value_struct_elt (tag, "tsd", 1) != NULL;
6390 }
6391
6392 /* The value of the tag on VAL. */
6393
6394 static struct value *
6395 ada_value_tag (struct value *val)
6396 {
6397 return ada_value_struct_elt (val, "_tag", 0);
6398 }
6399
6400 /* The value of the tag on the object of type TYPE whose contents are
6401 saved at VALADDR, if it is non-null, or is at memory address
6402 ADDRESS. */
6403
6404 static struct value *
6405 value_tag_from_contents_and_address (struct type *type,
6406 const gdb_byte *valaddr,
6407 CORE_ADDR address)
6408 {
6409 int tag_byte_offset;
6410 struct type *tag_type;
6411
6412 if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset,
6413 NULL, NULL, NULL))
6414 {
6415 const gdb_byte *valaddr1 = ((valaddr == NULL)
6416 ? NULL
6417 : valaddr + tag_byte_offset);
6418 CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset;
6419
6420 return value_from_contents_and_address (tag_type, valaddr1, address1);
6421 }
6422 return NULL;
6423 }
6424
6425 static struct type *
6426 type_from_tag (struct value *tag)
6427 {
6428 gdb::unique_xmalloc_ptr<char> type_name = ada_tag_name (tag);
6429
6430 if (type_name != NULL)
6431 return ada_find_any_type (ada_encode (type_name.get ()).c_str ());
6432 return NULL;
6433 }
6434
6435 /* Given a value OBJ of a tagged type, return a value of this
6436 type at the base address of the object. The base address, as
6437 defined in Ada.Tags, it is the address of the primary tag of
6438 the object, and therefore where the field values of its full
6439 view can be fetched. */
6440
6441 struct value *
6442 ada_tag_value_at_base_address (struct value *obj)
6443 {
6444 struct value *val;
6445 LONGEST offset_to_top = 0;
6446 struct type *ptr_type, *obj_type;
6447 struct value *tag;
6448 CORE_ADDR base_address;
6449
6450 obj_type = value_type (obj);
6451
6452 /* It is the responsability of the caller to deref pointers. */
6453
6454 if (obj_type->code () == TYPE_CODE_PTR || obj_type->code () == TYPE_CODE_REF)
6455 return obj;
6456
6457 tag = ada_value_tag (obj);
6458 if (!tag)
6459 return obj;
6460
6461 /* Base addresses only appeared with Ada 05 and multiple inheritance. */
6462
6463 if (is_ada95_tag (tag))
6464 return obj;
6465
6466 ptr_type = language_lookup_primitive_type
6467 (language_def (language_ada), target_gdbarch(), "storage_offset");
6468 ptr_type = lookup_pointer_type (ptr_type);
6469 val = value_cast (ptr_type, tag);
6470 if (!val)
6471 return obj;
6472
6473 /* It is perfectly possible that an exception be raised while
6474 trying to determine the base address, just like for the tag;
6475 see ada_tag_name for more details. We do not print the error
6476 message for the same reason. */
6477
6478 try
6479 {
6480 offset_to_top = value_as_long (value_ind (value_ptradd (val, -2)));
6481 }
6482
6483 catch (const gdb_exception_error &e)
6484 {
6485 return obj;
6486 }
6487
6488 /* If offset is null, nothing to do. */
6489
6490 if (offset_to_top == 0)
6491 return obj;
6492
6493 /* -1 is a special case in Ada.Tags; however, what should be done
6494 is not quite clear from the documentation. So do nothing for
6495 now. */
6496
6497 if (offset_to_top == -1)
6498 return obj;
6499
6500 /* OFFSET_TO_TOP used to be a positive value to be subtracted
6501 from the base address. This was however incompatible with
6502 C++ dispatch table: C++ uses a *negative* value to *add*
6503 to the base address. Ada's convention has therefore been
6504 changed in GNAT 19.0w 20171023: since then, C++ and Ada
6505 use the same convention. Here, we support both cases by
6506 checking the sign of OFFSET_TO_TOP. */
6507
6508 if (offset_to_top > 0)
6509 offset_to_top = -offset_to_top;
6510
6511 base_address = value_address (obj) + offset_to_top;
6512 tag = value_tag_from_contents_and_address (obj_type, NULL, base_address);
6513
6514 /* Make sure that we have a proper tag at the new address.
6515 Otherwise, offset_to_top is bogus (which can happen when
6516 the object is not initialized yet). */
6517
6518 if (!tag)
6519 return obj;
6520
6521 obj_type = type_from_tag (tag);
6522
6523 if (!obj_type)
6524 return obj;
6525
6526 return value_from_contents_and_address (obj_type, NULL, base_address);
6527 }
6528
6529 /* Return the "ada__tags__type_specific_data" type. */
6530
6531 static struct type *
6532 ada_get_tsd_type (struct inferior *inf)
6533 {
6534 struct ada_inferior_data *data = get_ada_inferior_data (inf);
6535
6536 if (data->tsd_type == 0)
6537 data->tsd_type = ada_find_any_type ("ada__tags__type_specific_data");
6538 return data->tsd_type;
6539 }
6540
6541 /* Return the TSD (type-specific data) associated to the given TAG.
6542 TAG is assumed to be the tag of a tagged-type entity.
6543
6544 May return NULL if we are unable to get the TSD. */
6545
6546 static struct value *
6547 ada_get_tsd_from_tag (struct value *tag)
6548 {
6549 struct value *val;
6550 struct type *type;
6551
6552 /* First option: The TSD is simply stored as a field of our TAG.
6553 Only older versions of GNAT would use this format, but we have
6554 to test it first, because there are no visible markers for
6555 the current approach except the absence of that field. */
6556
6557 val = ada_value_struct_elt (tag, "tsd", 1);
6558 if (val)
6559 return val;
6560
6561 /* Try the second representation for the dispatch table (in which
6562 there is no explicit 'tsd' field in the referent of the tag pointer,
6563 and instead the tsd pointer is stored just before the dispatch
6564 table. */
6565
6566 type = ada_get_tsd_type (current_inferior());
6567 if (type == NULL)
6568 return NULL;
6569 type = lookup_pointer_type (lookup_pointer_type (type));
6570 val = value_cast (type, tag);
6571 if (val == NULL)
6572 return NULL;
6573 return value_ind (value_ptradd (val, -1));
6574 }
6575
6576 /* Given the TSD of a tag (type-specific data), return a string
6577 containing the name of the associated type.
6578
6579 May return NULL if we are unable to determine the tag name. */
6580
6581 static gdb::unique_xmalloc_ptr<char>
6582 ada_tag_name_from_tsd (struct value *tsd)
6583 {
6584 char *p;
6585 struct value *val;
6586
6587 val = ada_value_struct_elt (tsd, "expanded_name", 1);
6588 if (val == NULL)
6589 return NULL;
6590 gdb::unique_xmalloc_ptr<char> buffer
6591 = target_read_string (value_as_address (val), INT_MAX);
6592 if (buffer == nullptr)
6593 return nullptr;
6594
6595 for (p = buffer.get (); *p != '\0'; ++p)
6596 {
6597 if (isalpha (*p))
6598 *p = tolower (*p);
6599 }
6600
6601 return buffer;
6602 }
6603
6604 /* The type name of the dynamic type denoted by the 'tag value TAG, as
6605 a C string.
6606
6607 Return NULL if the TAG is not an Ada tag, or if we were unable to
6608 determine the name of that tag. */
6609
6610 gdb::unique_xmalloc_ptr<char>
6611 ada_tag_name (struct value *tag)
6612 {
6613 gdb::unique_xmalloc_ptr<char> name;
6614
6615 if (!ada_is_tag_type (value_type (tag)))
6616 return NULL;
6617
6618 /* It is perfectly possible that an exception be raised while trying
6619 to determine the TAG's name, even under normal circumstances:
6620 The associated variable may be uninitialized or corrupted, for
6621 instance. We do not let any exception propagate past this point.
6622 instead we return NULL.
6623
6624 We also do not print the error message either (which often is very
6625 low-level (Eg: "Cannot read memory at 0x[...]"), but instead let
6626 the caller print a more meaningful message if necessary. */
6627 try
6628 {
6629 struct value *tsd = ada_get_tsd_from_tag (tag);
6630
6631 if (tsd != NULL)
6632 name = ada_tag_name_from_tsd (tsd);
6633 }
6634 catch (const gdb_exception_error &e)
6635 {
6636 }
6637
6638 return name;
6639 }
6640
6641 /* The parent type of TYPE, or NULL if none. */
6642
6643 struct type *
6644 ada_parent_type (struct type *type)
6645 {
6646 int i;
6647
6648 type = ada_check_typedef (type);
6649
6650 if (type == NULL || type->code () != TYPE_CODE_STRUCT)
6651 return NULL;
6652
6653 for (i = 0; i < type->num_fields (); i += 1)
6654 if (ada_is_parent_field (type, i))
6655 {
6656 struct type *parent_type = type->field (i).type ();
6657
6658 /* If the _parent field is a pointer, then dereference it. */
6659 if (parent_type->code () == TYPE_CODE_PTR)
6660 parent_type = TYPE_TARGET_TYPE (parent_type);
6661 /* If there is a parallel XVS type, get the actual base type. */
6662 parent_type = ada_get_base_type (parent_type);
6663
6664 return ada_check_typedef (parent_type);
6665 }
6666
6667 return NULL;
6668 }
6669
6670 /* True iff field number FIELD_NUM of structure type TYPE contains the
6671 parent-type (inherited) fields of a derived type. Assumes TYPE is
6672 a structure type with at least FIELD_NUM+1 fields. */
6673
6674 int
6675 ada_is_parent_field (struct type *type, int field_num)
6676 {
6677 const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num);
6678
6679 return (name != NULL
6680 && (startswith (name, "PARENT")
6681 || startswith (name, "_parent")));
6682 }
6683
6684 /* True iff field number FIELD_NUM of structure type TYPE is a
6685 transparent wrapper field (which should be silently traversed when doing
6686 field selection and flattened when printing). Assumes TYPE is a
6687 structure type with at least FIELD_NUM+1 fields. Such fields are always
6688 structures. */
6689
6690 int
6691 ada_is_wrapper_field (struct type *type, int field_num)
6692 {
6693 const char *name = TYPE_FIELD_NAME (type, field_num);
6694
6695 if (name != NULL && strcmp (name, "RETVAL") == 0)
6696 {
6697 /* This happens in functions with "out" or "in out" parameters
6698 which are passed by copy. For such functions, GNAT describes
6699 the function's return type as being a struct where the return
6700 value is in a field called RETVAL, and where the other "out"
6701 or "in out" parameters are fields of that struct. This is not
6702 a wrapper. */
6703 return 0;
6704 }
6705
6706 return (name != NULL
6707 && (startswith (name, "PARENT")
6708 || strcmp (name, "REP") == 0
6709 || startswith (name, "_parent")
6710 || name[0] == 'S' || name[0] == 'R' || name[0] == 'O'));
6711 }
6712
6713 /* True iff field number FIELD_NUM of structure or union type TYPE
6714 is a variant wrapper. Assumes TYPE is a structure type with at least
6715 FIELD_NUM+1 fields. */
6716
6717 int
6718 ada_is_variant_part (struct type *type, int field_num)
6719 {
6720 /* Only Ada types are eligible. */
6721 if (!ADA_TYPE_P (type))
6722 return 0;
6723
6724 struct type *field_type = type->field (field_num).type ();
6725
6726 return (field_type->code () == TYPE_CODE_UNION
6727 || (is_dynamic_field (type, field_num)
6728 && (TYPE_TARGET_TYPE (field_type)->code ()
6729 == TYPE_CODE_UNION)));
6730 }
6731
6732 /* Assuming that VAR_TYPE is a variant wrapper (type of the variant part)
6733 whose discriminants are contained in the record type OUTER_TYPE,
6734 returns the type of the controlling discriminant for the variant.
6735 May return NULL if the type could not be found. */
6736
6737 struct type *
6738 ada_variant_discrim_type (struct type *var_type, struct type *outer_type)
6739 {
6740 const char *name = ada_variant_discrim_name (var_type);
6741
6742 return ada_lookup_struct_elt_type (outer_type, name, 1, 1);
6743 }
6744
6745 /* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a
6746 valid field number within it, returns 1 iff field FIELD_NUM of TYPE
6747 represents a 'when others' clause; otherwise 0. */
6748
6749 static int
6750 ada_is_others_clause (struct type *type, int field_num)
6751 {
6752 const char *name = TYPE_FIELD_NAME (type, field_num);
6753
6754 return (name != NULL && name[0] == 'O');
6755 }
6756
6757 /* Assuming that TYPE0 is the type of the variant part of a record,
6758 returns the name of the discriminant controlling the variant.
6759 The value is valid until the next call to ada_variant_discrim_name. */
6760
6761 const char *
6762 ada_variant_discrim_name (struct type *type0)
6763 {
6764 static char *result = NULL;
6765 static size_t result_len = 0;
6766 struct type *type;
6767 const char *name;
6768 const char *discrim_end;
6769 const char *discrim_start;
6770
6771 if (type0->code () == TYPE_CODE_PTR)
6772 type = TYPE_TARGET_TYPE (type0);
6773 else
6774 type = type0;
6775
6776 name = ada_type_name (type);
6777
6778 if (name == NULL || name[0] == '\000')
6779 return "";
6780
6781 for (discrim_end = name + strlen (name) - 6; discrim_end != name;
6782 discrim_end -= 1)
6783 {
6784 if (startswith (discrim_end, "___XVN"))
6785 break;
6786 }
6787 if (discrim_end == name)
6788 return "";
6789
6790 for (discrim_start = discrim_end; discrim_start != name + 3;
6791 discrim_start -= 1)
6792 {
6793 if (discrim_start == name + 1)
6794 return "";
6795 if ((discrim_start > name + 3
6796 && startswith (discrim_start - 3, "___"))
6797 || discrim_start[-1] == '.')
6798 break;
6799 }
6800
6801 GROW_VECT (result, result_len, discrim_end - discrim_start + 1);
6802 strncpy (result, discrim_start, discrim_end - discrim_start);
6803 result[discrim_end - discrim_start] = '\0';
6804 return result;
6805 }
6806
6807 /* Scan STR for a subtype-encoded number, beginning at position K.
6808 Put the position of the character just past the number scanned in
6809 *NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL.
6810 Return 1 if there was a valid number at the given position, and 0
6811 otherwise. A "subtype-encoded" number consists of the absolute value
6812 in decimal, followed by the letter 'm' to indicate a negative number.
6813 Assumes 0m does not occur. */
6814
6815 int
6816 ada_scan_number (const char str[], int k, LONGEST * R, int *new_k)
6817 {
6818 ULONGEST RU;
6819
6820 if (!isdigit (str[k]))
6821 return 0;
6822
6823 /* Do it the hard way so as not to make any assumption about
6824 the relationship of unsigned long (%lu scan format code) and
6825 LONGEST. */
6826 RU = 0;
6827 while (isdigit (str[k]))
6828 {
6829 RU = RU * 10 + (str[k] - '0');
6830 k += 1;
6831 }
6832
6833 if (str[k] == 'm')
6834 {
6835 if (R != NULL)
6836 *R = (-(LONGEST) (RU - 1)) - 1;
6837 k += 1;
6838 }
6839 else if (R != NULL)
6840 *R = (LONGEST) RU;
6841
6842 /* NOTE on the above: Technically, C does not say what the results of
6843 - (LONGEST) RU or (LONGEST) -RU are for RU == largest positive
6844 number representable as a LONGEST (although either would probably work
6845 in most implementations). When RU>0, the locution in the then branch
6846 above is always equivalent to the negative of RU. */
6847
6848 if (new_k != NULL)
6849 *new_k = k;
6850 return 1;
6851 }
6852
6853 /* Assuming that TYPE is a variant part wrapper type (a VARIANTS field),
6854 and FIELD_NUM is a valid field number within it, returns 1 iff VAL is
6855 in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */
6856
6857 static int
6858 ada_in_variant (LONGEST val, struct type *type, int field_num)
6859 {
6860 const char *name = TYPE_FIELD_NAME (type, field_num);
6861 int p;
6862
6863 p = 0;
6864 while (1)
6865 {
6866 switch (name[p])
6867 {
6868 case '\0':
6869 return 0;
6870 case 'S':
6871 {
6872 LONGEST W;
6873
6874 if (!ada_scan_number (name, p + 1, &W, &p))
6875 return 0;
6876 if (val == W)
6877 return 1;
6878 break;
6879 }
6880 case 'R':
6881 {
6882 LONGEST L, U;
6883
6884 if (!ada_scan_number (name, p + 1, &L, &p)
6885 || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p))
6886 return 0;
6887 if (val >= L && val <= U)
6888 return 1;
6889 break;
6890 }
6891 case 'O':
6892 return 1;
6893 default:
6894 return 0;
6895 }
6896 }
6897 }
6898
6899 /* FIXME: Lots of redundancy below. Try to consolidate. */
6900
6901 /* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type
6902 ARG_TYPE, extract and return the value of one of its (non-static)
6903 fields. FIELDNO says which field. Differs from value_primitive_field
6904 only in that it can handle packed values of arbitrary type. */
6905
6906 struct value *
6907 ada_value_primitive_field (struct value *arg1, int offset, int fieldno,
6908 struct type *arg_type)
6909 {
6910 struct type *type;
6911
6912 arg_type = ada_check_typedef (arg_type);
6913 type = arg_type->field (fieldno).type ();
6914
6915 /* Handle packed fields. It might be that the field is not packed
6916 relative to its containing structure, but the structure itself is
6917 packed; in this case we must take the bit-field path. */
6918 if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0 || value_bitpos (arg1) != 0)
6919 {
6920 int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno);
6921 int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno);
6922
6923 return ada_value_primitive_packed_val (arg1, value_contents (arg1),
6924 offset + bit_pos / 8,
6925 bit_pos % 8, bit_size, type);
6926 }
6927 else
6928 return value_primitive_field (arg1, offset, fieldno, arg_type);
6929 }
6930
6931 /* Find field with name NAME in object of type TYPE. If found,
6932 set the following for each argument that is non-null:
6933 - *FIELD_TYPE_P to the field's type;
6934 - *BYTE_OFFSET_P to OFFSET + the byte offset of the field within
6935 an object of that type;
6936 - *BIT_OFFSET_P to the bit offset modulo byte size of the field;
6937 - *BIT_SIZE_P to its size in bits if the field is packed, and
6938 0 otherwise;
6939 If INDEX_P is non-null, increment *INDEX_P by the number of source-visible
6940 fields up to but not including the desired field, or by the total
6941 number of fields if not found. A NULL value of NAME never
6942 matches; the function just counts visible fields in this case.
6943
6944 Notice that we need to handle when a tagged record hierarchy
6945 has some components with the same name, like in this scenario:
6946
6947 type Top_T is tagged record
6948 N : Integer := 1;
6949 U : Integer := 974;
6950 A : Integer := 48;
6951 end record;
6952
6953 type Middle_T is new Top.Top_T with record
6954 N : Character := 'a';
6955 C : Integer := 3;
6956 end record;
6957
6958 type Bottom_T is new Middle.Middle_T with record
6959 N : Float := 4.0;
6960 C : Character := '5';
6961 X : Integer := 6;
6962 A : Character := 'J';
6963 end record;
6964
6965 Let's say we now have a variable declared and initialized as follow:
6966
6967 TC : Top_A := new Bottom_T;
6968
6969 And then we use this variable to call this function
6970
6971 procedure Assign (Obj: in out Top_T; TV : Integer);
6972
6973 as follow:
6974
6975 Assign (Top_T (B), 12);
6976
6977 Now, we're in the debugger, and we're inside that procedure
6978 then and we want to print the value of obj.c:
6979
6980 Usually, the tagged record or one of the parent type owns the
6981 component to print and there's no issue but in this particular
6982 case, what does it mean to ask for Obj.C? Since the actual
6983 type for object is type Bottom_T, it could mean two things: type
6984 component C from the Middle_T view, but also component C from
6985 Bottom_T. So in that "undefined" case, when the component is
6986 not found in the non-resolved type (which includes all the
6987 components of the parent type), then resolve it and see if we
6988 get better luck once expanded.
6989
6990 In the case of homonyms in the derived tagged type, we don't
6991 guaranty anything, and pick the one that's easiest for us
6992 to program.
6993
6994 Returns 1 if found, 0 otherwise. */
6995
6996 static int
6997 find_struct_field (const char *name, struct type *type, int offset,
6998 struct type **field_type_p,
6999 int *byte_offset_p, int *bit_offset_p, int *bit_size_p,
7000 int *index_p)
7001 {
7002 int i;
7003 int parent_offset = -1;
7004
7005 type = ada_check_typedef (type);
7006
7007 if (field_type_p != NULL)
7008 *field_type_p = NULL;
7009 if (byte_offset_p != NULL)
7010 *byte_offset_p = 0;
7011 if (bit_offset_p != NULL)
7012 *bit_offset_p = 0;
7013 if (bit_size_p != NULL)
7014 *bit_size_p = 0;
7015
7016 for (i = 0; i < type->num_fields (); i += 1)
7017 {
7018 int bit_pos = TYPE_FIELD_BITPOS (type, i);
7019 int fld_offset = offset + bit_pos / 8;
7020 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7021
7022 if (t_field_name == NULL)
7023 continue;
7024
7025 else if (ada_is_parent_field (type, i))
7026 {
7027 /* This is a field pointing us to the parent type of a tagged
7028 type. As hinted in this function's documentation, we give
7029 preference to fields in the current record first, so what
7030 we do here is just record the index of this field before
7031 we skip it. If it turns out we couldn't find our field
7032 in the current record, then we'll get back to it and search
7033 inside it whether the field might exist in the parent. */
7034
7035 parent_offset = i;
7036 continue;
7037 }
7038
7039 else if (name != NULL && field_name_match (t_field_name, name))
7040 {
7041 int bit_size = TYPE_FIELD_BITSIZE (type, i);
7042
7043 if (field_type_p != NULL)
7044 *field_type_p = type->field (i).type ();
7045 if (byte_offset_p != NULL)
7046 *byte_offset_p = fld_offset;
7047 if (bit_offset_p != NULL)
7048 *bit_offset_p = bit_pos % 8;
7049 if (bit_size_p != NULL)
7050 *bit_size_p = bit_size;
7051 return 1;
7052 }
7053 else if (ada_is_wrapper_field (type, i))
7054 {
7055 if (find_struct_field (name, type->field (i).type (), fld_offset,
7056 field_type_p, byte_offset_p, bit_offset_p,
7057 bit_size_p, index_p))
7058 return 1;
7059 }
7060 else if (ada_is_variant_part (type, i))
7061 {
7062 /* PNH: Wait. Do we ever execute this section, or is ARG always of
7063 fixed type?? */
7064 int j;
7065 struct type *field_type
7066 = ada_check_typedef (type->field (i).type ());
7067
7068 for (j = 0; j < field_type->num_fields (); j += 1)
7069 {
7070 if (find_struct_field (name, field_type->field (j).type (),
7071 fld_offset
7072 + TYPE_FIELD_BITPOS (field_type, j) / 8,
7073 field_type_p, byte_offset_p,
7074 bit_offset_p, bit_size_p, index_p))
7075 return 1;
7076 }
7077 }
7078 else if (index_p != NULL)
7079 *index_p += 1;
7080 }
7081
7082 /* Field not found so far. If this is a tagged type which
7083 has a parent, try finding that field in the parent now. */
7084
7085 if (parent_offset != -1)
7086 {
7087 int bit_pos = TYPE_FIELD_BITPOS (type, parent_offset);
7088 int fld_offset = offset + bit_pos / 8;
7089
7090 if (find_struct_field (name, type->field (parent_offset).type (),
7091 fld_offset, field_type_p, byte_offset_p,
7092 bit_offset_p, bit_size_p, index_p))
7093 return 1;
7094 }
7095
7096 return 0;
7097 }
7098
7099 /* Number of user-visible fields in record type TYPE. */
7100
7101 static int
7102 num_visible_fields (struct type *type)
7103 {
7104 int n;
7105
7106 n = 0;
7107 find_struct_field (NULL, type, 0, NULL, NULL, NULL, NULL, &n);
7108 return n;
7109 }
7110
7111 /* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes,
7112 and search in it assuming it has (class) type TYPE.
7113 If found, return value, else return NULL.
7114
7115 Searches recursively through wrapper fields (e.g., '_parent').
7116
7117 In the case of homonyms in the tagged types, please refer to the
7118 long explanation in find_struct_field's function documentation. */
7119
7120 static struct value *
7121 ada_search_struct_field (const char *name, struct value *arg, int offset,
7122 struct type *type)
7123 {
7124 int i;
7125 int parent_offset = -1;
7126
7127 type = ada_check_typedef (type);
7128 for (i = 0; i < type->num_fields (); i += 1)
7129 {
7130 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7131
7132 if (t_field_name == NULL)
7133 continue;
7134
7135 else if (ada_is_parent_field (type, i))
7136 {
7137 /* This is a field pointing us to the parent type of a tagged
7138 type. As hinted in this function's documentation, we give
7139 preference to fields in the current record first, so what
7140 we do here is just record the index of this field before
7141 we skip it. If it turns out we couldn't find our field
7142 in the current record, then we'll get back to it and search
7143 inside it whether the field might exist in the parent. */
7144
7145 parent_offset = i;
7146 continue;
7147 }
7148
7149 else if (field_name_match (t_field_name, name))
7150 return ada_value_primitive_field (arg, offset, i, type);
7151
7152 else if (ada_is_wrapper_field (type, i))
7153 {
7154 struct value *v = /* Do not let indent join lines here. */
7155 ada_search_struct_field (name, arg,
7156 offset + TYPE_FIELD_BITPOS (type, i) / 8,
7157 type->field (i).type ());
7158
7159 if (v != NULL)
7160 return v;
7161 }
7162
7163 else if (ada_is_variant_part (type, i))
7164 {
7165 /* PNH: Do we ever get here? See find_struct_field. */
7166 int j;
7167 struct type *field_type = ada_check_typedef (type->field (i).type ());
7168 int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8;
7169
7170 for (j = 0; j < field_type->num_fields (); j += 1)
7171 {
7172 struct value *v = ada_search_struct_field /* Force line
7173 break. */
7174 (name, arg,
7175 var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8,
7176 field_type->field (j).type ());
7177
7178 if (v != NULL)
7179 return v;
7180 }
7181 }
7182 }
7183
7184 /* Field not found so far. If this is a tagged type which
7185 has a parent, try finding that field in the parent now. */
7186
7187 if (parent_offset != -1)
7188 {
7189 struct value *v = ada_search_struct_field (
7190 name, arg, offset + TYPE_FIELD_BITPOS (type, parent_offset) / 8,
7191 type->field (parent_offset).type ());
7192
7193 if (v != NULL)
7194 return v;
7195 }
7196
7197 return NULL;
7198 }
7199
7200 static struct value *ada_index_struct_field_1 (int *, struct value *,
7201 int, struct type *);
7202
7203
7204 /* Return field #INDEX in ARG, where the index is that returned by
7205 * find_struct_field through its INDEX_P argument. Adjust the address
7206 * of ARG by OFFSET bytes, and search in it assuming it has (class) type TYPE.
7207 * If found, return value, else return NULL. */
7208
7209 static struct value *
7210 ada_index_struct_field (int index, struct value *arg, int offset,
7211 struct type *type)
7212 {
7213 return ada_index_struct_field_1 (&index, arg, offset, type);
7214 }
7215
7216
7217 /* Auxiliary function for ada_index_struct_field. Like
7218 * ada_index_struct_field, but takes index from *INDEX_P and modifies
7219 * *INDEX_P. */
7220
7221 static struct value *
7222 ada_index_struct_field_1 (int *index_p, struct value *arg, int offset,
7223 struct type *type)
7224 {
7225 int i;
7226 type = ada_check_typedef (type);
7227
7228 for (i = 0; i < type->num_fields (); i += 1)
7229 {
7230 if (TYPE_FIELD_NAME (type, i) == NULL)
7231 continue;
7232 else if (ada_is_wrapper_field (type, i))
7233 {
7234 struct value *v = /* Do not let indent join lines here. */
7235 ada_index_struct_field_1 (index_p, arg,
7236 offset + TYPE_FIELD_BITPOS (type, i) / 8,
7237 type->field (i).type ());
7238
7239 if (v != NULL)
7240 return v;
7241 }
7242
7243 else if (ada_is_variant_part (type, i))
7244 {
7245 /* PNH: Do we ever get here? See ada_search_struct_field,
7246 find_struct_field. */
7247 error (_("Cannot assign this kind of variant record"));
7248 }
7249 else if (*index_p == 0)
7250 return ada_value_primitive_field (arg, offset, i, type);
7251 else
7252 *index_p -= 1;
7253 }
7254 return NULL;
7255 }
7256
7257 /* Return a string representation of type TYPE. */
7258
7259 static std::string
7260 type_as_string (struct type *type)
7261 {
7262 string_file tmp_stream;
7263
7264 type_print (type, "", &tmp_stream, -1);
7265
7266 return std::move (tmp_stream.string ());
7267 }
7268
7269 /* Given a type TYPE, look up the type of the component of type named NAME.
7270 If DISPP is non-null, add its byte displacement from the beginning of a
7271 structure (pointed to by a value) of type TYPE to *DISPP (does not
7272 work for packed fields).
7273
7274 Matches any field whose name has NAME as a prefix, possibly
7275 followed by "___".
7276
7277 TYPE can be either a struct or union. If REFOK, TYPE may also
7278 be a (pointer or reference)+ to a struct or union, and the
7279 ultimate target type will be searched.
7280
7281 Looks recursively into variant clauses and parent types.
7282
7283 In the case of homonyms in the tagged types, please refer to the
7284 long explanation in find_struct_field's function documentation.
7285
7286 If NOERR is nonzero, return NULL if NAME is not suitably defined or
7287 TYPE is not a type of the right kind. */
7288
7289 static struct type *
7290 ada_lookup_struct_elt_type (struct type *type, const char *name, int refok,
7291 int noerr)
7292 {
7293 int i;
7294 int parent_offset = -1;
7295
7296 if (name == NULL)
7297 goto BadName;
7298
7299 if (refok && type != NULL)
7300 while (1)
7301 {
7302 type = ada_check_typedef (type);
7303 if (type->code () != TYPE_CODE_PTR && type->code () != TYPE_CODE_REF)
7304 break;
7305 type = TYPE_TARGET_TYPE (type);
7306 }
7307
7308 if (type == NULL
7309 || (type->code () != TYPE_CODE_STRUCT
7310 && type->code () != TYPE_CODE_UNION))
7311 {
7312 if (noerr)
7313 return NULL;
7314
7315 error (_("Type %s is not a structure or union type"),
7316 type != NULL ? type_as_string (type).c_str () : _("(null)"));
7317 }
7318
7319 type = to_static_fixed_type (type);
7320
7321 for (i = 0; i < type->num_fields (); i += 1)
7322 {
7323 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7324 struct type *t;
7325
7326 if (t_field_name == NULL)
7327 continue;
7328
7329 else if (ada_is_parent_field (type, i))
7330 {
7331 /* This is a field pointing us to the parent type of a tagged
7332 type. As hinted in this function's documentation, we give
7333 preference to fields in the current record first, so what
7334 we do here is just record the index of this field before
7335 we skip it. If it turns out we couldn't find our field
7336 in the current record, then we'll get back to it and search
7337 inside it whether the field might exist in the parent. */
7338
7339 parent_offset = i;
7340 continue;
7341 }
7342
7343 else if (field_name_match (t_field_name, name))
7344 return type->field (i).type ();
7345
7346 else if (ada_is_wrapper_field (type, i))
7347 {
7348 t = ada_lookup_struct_elt_type (type->field (i).type (), name,
7349 0, 1);
7350 if (t != NULL)
7351 return t;
7352 }
7353
7354 else if (ada_is_variant_part (type, i))
7355 {
7356 int j;
7357 struct type *field_type = ada_check_typedef (type->field (i).type ());
7358
7359 for (j = field_type->num_fields () - 1; j >= 0; j -= 1)
7360 {
7361 /* FIXME pnh 2008/01/26: We check for a field that is
7362 NOT wrapped in a struct, since the compiler sometimes
7363 generates these for unchecked variant types. Revisit
7364 if the compiler changes this practice. */
7365 const char *v_field_name = TYPE_FIELD_NAME (field_type, j);
7366
7367 if (v_field_name != NULL
7368 && field_name_match (v_field_name, name))
7369 t = field_type->field (j).type ();
7370 else
7371 t = ada_lookup_struct_elt_type (field_type->field (j).type (),
7372 name, 0, 1);
7373
7374 if (t != NULL)
7375 return t;
7376 }
7377 }
7378
7379 }
7380
7381 /* Field not found so far. If this is a tagged type which
7382 has a parent, try finding that field in the parent now. */
7383
7384 if (parent_offset != -1)
7385 {
7386 struct type *t;
7387
7388 t = ada_lookup_struct_elt_type (type->field (parent_offset).type (),
7389 name, 0, 1);
7390 if (t != NULL)
7391 return t;
7392 }
7393
7394 BadName:
7395 if (!noerr)
7396 {
7397 const char *name_str = name != NULL ? name : _("<null>");
7398
7399 error (_("Type %s has no component named %s"),
7400 type_as_string (type).c_str (), name_str);
7401 }
7402
7403 return NULL;
7404 }
7405
7406 /* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7407 within a value of type OUTER_TYPE, return true iff VAR_TYPE
7408 represents an unchecked union (that is, the variant part of a
7409 record that is named in an Unchecked_Union pragma). */
7410
7411 static int
7412 is_unchecked_variant (struct type *var_type, struct type *outer_type)
7413 {
7414 const char *discrim_name = ada_variant_discrim_name (var_type);
7415
7416 return (ada_lookup_struct_elt_type (outer_type, discrim_name, 0, 1) == NULL);
7417 }
7418
7419
7420 /* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7421 within OUTER, determine which variant clause (field number in VAR_TYPE,
7422 numbering from 0) is applicable. Returns -1 if none are. */
7423
7424 int
7425 ada_which_variant_applies (struct type *var_type, struct value *outer)
7426 {
7427 int others_clause;
7428 int i;
7429 const char *discrim_name = ada_variant_discrim_name (var_type);
7430 struct value *discrim;
7431 LONGEST discrim_val;
7432
7433 /* Using plain value_from_contents_and_address here causes problems
7434 because we will end up trying to resolve a type that is currently
7435 being constructed. */
7436 discrim = ada_value_struct_elt (outer, discrim_name, 1);
7437 if (discrim == NULL)
7438 return -1;
7439 discrim_val = value_as_long (discrim);
7440
7441 others_clause = -1;
7442 for (i = 0; i < var_type->num_fields (); i += 1)
7443 {
7444 if (ada_is_others_clause (var_type, i))
7445 others_clause = i;
7446 else if (ada_in_variant (discrim_val, var_type, i))
7447 return i;
7448 }
7449
7450 return others_clause;
7451 }
7452 \f
7453
7454
7455 /* Dynamic-Sized Records */
7456
7457 /* Strategy: The type ostensibly attached to a value with dynamic size
7458 (i.e., a size that is not statically recorded in the debugging
7459 data) does not accurately reflect the size or layout of the value.
7460 Our strategy is to convert these values to values with accurate,
7461 conventional types that are constructed on the fly. */
7462
7463 /* There is a subtle and tricky problem here. In general, we cannot
7464 determine the size of dynamic records without its data. However,
7465 the 'struct value' data structure, which GDB uses to represent
7466 quantities in the inferior process (the target), requires the size
7467 of the type at the time of its allocation in order to reserve space
7468 for GDB's internal copy of the data. That's why the
7469 'to_fixed_xxx_type' routines take (target) addresses as parameters,
7470 rather than struct value*s.
7471
7472 However, GDB's internal history variables ($1, $2, etc.) are
7473 struct value*s containing internal copies of the data that are not, in
7474 general, the same as the data at their corresponding addresses in
7475 the target. Fortunately, the types we give to these values are all
7476 conventional, fixed-size types (as per the strategy described
7477 above), so that we don't usually have to perform the
7478 'to_fixed_xxx_type' conversions to look at their values.
7479 Unfortunately, there is one exception: if one of the internal
7480 history variables is an array whose elements are unconstrained
7481 records, then we will need to create distinct fixed types for each
7482 element selected. */
7483
7484 /* The upshot of all of this is that many routines take a (type, host
7485 address, target address) triple as arguments to represent a value.
7486 The host address, if non-null, is supposed to contain an internal
7487 copy of the relevant data; otherwise, the program is to consult the
7488 target at the target address. */
7489
7490 /* Assuming that VAL0 represents a pointer value, the result of
7491 dereferencing it. Differs from value_ind in its treatment of
7492 dynamic-sized types. */
7493
7494 struct value *
7495 ada_value_ind (struct value *val0)
7496 {
7497 struct value *val = value_ind (val0);
7498
7499 if (ada_is_tagged_type (value_type (val), 0))
7500 val = ada_tag_value_at_base_address (val);
7501
7502 return ada_to_fixed_value (val);
7503 }
7504
7505 /* The value resulting from dereferencing any "reference to"
7506 qualifiers on VAL0. */
7507
7508 static struct value *
7509 ada_coerce_ref (struct value *val0)
7510 {
7511 if (value_type (val0)->code () == TYPE_CODE_REF)
7512 {
7513 struct value *val = val0;
7514
7515 val = coerce_ref (val);
7516
7517 if (ada_is_tagged_type (value_type (val), 0))
7518 val = ada_tag_value_at_base_address (val);
7519
7520 return ada_to_fixed_value (val);
7521 }
7522 else
7523 return val0;
7524 }
7525
7526 /* Return the bit alignment required for field #F of template type TYPE. */
7527
7528 static unsigned int
7529 field_alignment (struct type *type, int f)
7530 {
7531 const char *name = TYPE_FIELD_NAME (type, f);
7532 int len;
7533 int align_offset;
7534
7535 /* The field name should never be null, unless the debugging information
7536 is somehow malformed. In this case, we assume the field does not
7537 require any alignment. */
7538 if (name == NULL)
7539 return 1;
7540
7541 len = strlen (name);
7542
7543 if (!isdigit (name[len - 1]))
7544 return 1;
7545
7546 if (isdigit (name[len - 2]))
7547 align_offset = len - 2;
7548 else
7549 align_offset = len - 1;
7550
7551 if (align_offset < 7 || !startswith (name + align_offset - 6, "___XV"))
7552 return TARGET_CHAR_BIT;
7553
7554 return atoi (name + align_offset) * TARGET_CHAR_BIT;
7555 }
7556
7557 /* Find a typedef or tag symbol named NAME. Ignores ambiguity. */
7558
7559 static struct symbol *
7560 ada_find_any_type_symbol (const char *name)
7561 {
7562 struct symbol *sym;
7563
7564 sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN);
7565 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
7566 return sym;
7567
7568 sym = standard_lookup (name, NULL, STRUCT_DOMAIN);
7569 return sym;
7570 }
7571
7572 /* Find a type named NAME. Ignores ambiguity. This routine will look
7573 solely for types defined by debug info, it will not search the GDB
7574 primitive types. */
7575
7576 static struct type *
7577 ada_find_any_type (const char *name)
7578 {
7579 struct symbol *sym = ada_find_any_type_symbol (name);
7580
7581 if (sym != NULL)
7582 return SYMBOL_TYPE (sym);
7583
7584 return NULL;
7585 }
7586
7587 /* Given NAME_SYM and an associated BLOCK, find a "renaming" symbol
7588 associated with NAME_SYM's name. NAME_SYM may itself be a renaming
7589 symbol, in which case it is returned. Otherwise, this looks for
7590 symbols whose name is that of NAME_SYM suffixed with "___XR".
7591 Return symbol if found, and NULL otherwise. */
7592
7593 static bool
7594 ada_is_renaming_symbol (struct symbol *name_sym)
7595 {
7596 const char *name = name_sym->linkage_name ();
7597 return strstr (name, "___XR") != NULL;
7598 }
7599
7600 /* Because of GNAT encoding conventions, several GDB symbols may match a
7601 given type name. If the type denoted by TYPE0 is to be preferred to
7602 that of TYPE1 for purposes of type printing, return non-zero;
7603 otherwise return 0. */
7604
7605 int
7606 ada_prefer_type (struct type *type0, struct type *type1)
7607 {
7608 if (type1 == NULL)
7609 return 1;
7610 else if (type0 == NULL)
7611 return 0;
7612 else if (type1->code () == TYPE_CODE_VOID)
7613 return 1;
7614 else if (type0->code () == TYPE_CODE_VOID)
7615 return 0;
7616 else if (type1->name () == NULL && type0->name () != NULL)
7617 return 1;
7618 else if (ada_is_constrained_packed_array_type (type0))
7619 return 1;
7620 else if (ada_is_array_descriptor_type (type0)
7621 && !ada_is_array_descriptor_type (type1))
7622 return 1;
7623 else
7624 {
7625 const char *type0_name = type0->name ();
7626 const char *type1_name = type1->name ();
7627
7628 if (type0_name != NULL && strstr (type0_name, "___XR") != NULL
7629 && (type1_name == NULL || strstr (type1_name, "___XR") == NULL))
7630 return 1;
7631 }
7632 return 0;
7633 }
7634
7635 /* The name of TYPE, which is its TYPE_NAME. Null if TYPE is
7636 null. */
7637
7638 const char *
7639 ada_type_name (struct type *type)
7640 {
7641 if (type == NULL)
7642 return NULL;
7643 return type->name ();
7644 }
7645
7646 /* Search the list of "descriptive" types associated to TYPE for a type
7647 whose name is NAME. */
7648
7649 static struct type *
7650 find_parallel_type_by_descriptive_type (struct type *type, const char *name)
7651 {
7652 struct type *result, *tmp;
7653
7654 if (ada_ignore_descriptive_types_p)
7655 return NULL;
7656
7657 /* If there no descriptive-type info, then there is no parallel type
7658 to be found. */
7659 if (!HAVE_GNAT_AUX_INFO (type))
7660 return NULL;
7661
7662 result = TYPE_DESCRIPTIVE_TYPE (type);
7663 while (result != NULL)
7664 {
7665 const char *result_name = ada_type_name (result);
7666
7667 if (result_name == NULL)
7668 {
7669 warning (_("unexpected null name on descriptive type"));
7670 return NULL;
7671 }
7672
7673 /* If the names match, stop. */
7674 if (strcmp (result_name, name) == 0)
7675 break;
7676
7677 /* Otherwise, look at the next item on the list, if any. */
7678 if (HAVE_GNAT_AUX_INFO (result))
7679 tmp = TYPE_DESCRIPTIVE_TYPE (result);
7680 else
7681 tmp = NULL;
7682
7683 /* If not found either, try after having resolved the typedef. */
7684 if (tmp != NULL)
7685 result = tmp;
7686 else
7687 {
7688 result = check_typedef (result);
7689 if (HAVE_GNAT_AUX_INFO (result))
7690 result = TYPE_DESCRIPTIVE_TYPE (result);
7691 else
7692 result = NULL;
7693 }
7694 }
7695
7696 /* If we didn't find a match, see whether this is a packed array. With
7697 older compilers, the descriptive type information is either absent or
7698 irrelevant when it comes to packed arrays so the above lookup fails.
7699 Fall back to using a parallel lookup by name in this case. */
7700 if (result == NULL && ada_is_constrained_packed_array_type (type))
7701 return ada_find_any_type (name);
7702
7703 return result;
7704 }
7705
7706 /* Find a parallel type to TYPE with the specified NAME, using the
7707 descriptive type taken from the debugging information, if available,
7708 and otherwise using the (slower) name-based method. */
7709
7710 static struct type *
7711 ada_find_parallel_type_with_name (struct type *type, const char *name)
7712 {
7713 struct type *result = NULL;
7714
7715 if (HAVE_GNAT_AUX_INFO (type))
7716 result = find_parallel_type_by_descriptive_type (type, name);
7717 else
7718 result = ada_find_any_type (name);
7719
7720 return result;
7721 }
7722
7723 /* Same as above, but specify the name of the parallel type by appending
7724 SUFFIX to the name of TYPE. */
7725
7726 struct type *
7727 ada_find_parallel_type (struct type *type, const char *suffix)
7728 {
7729 char *name;
7730 const char *type_name = ada_type_name (type);
7731 int len;
7732
7733 if (type_name == NULL)
7734 return NULL;
7735
7736 len = strlen (type_name);
7737
7738 name = (char *) alloca (len + strlen (suffix) + 1);
7739
7740 strcpy (name, type_name);
7741 strcpy (name + len, suffix);
7742
7743 return ada_find_parallel_type_with_name (type, name);
7744 }
7745
7746 /* If TYPE is a variable-size record type, return the corresponding template
7747 type describing its fields. Otherwise, return NULL. */
7748
7749 static struct type *
7750 dynamic_template_type (struct type *type)
7751 {
7752 type = ada_check_typedef (type);
7753
7754 if (type == NULL || type->code () != TYPE_CODE_STRUCT
7755 || ada_type_name (type) == NULL)
7756 return NULL;
7757 else
7758 {
7759 int len = strlen (ada_type_name (type));
7760
7761 if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0)
7762 return type;
7763 else
7764 return ada_find_parallel_type (type, "___XVE");
7765 }
7766 }
7767
7768 /* Assuming that TEMPL_TYPE is a union or struct type, returns
7769 non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */
7770
7771 static int
7772 is_dynamic_field (struct type *templ_type, int field_num)
7773 {
7774 const char *name = TYPE_FIELD_NAME (templ_type, field_num);
7775
7776 return name != NULL
7777 && templ_type->field (field_num).type ()->code () == TYPE_CODE_PTR
7778 && strstr (name, "___XVL") != NULL;
7779 }
7780
7781 /* The index of the variant field of TYPE, or -1 if TYPE does not
7782 represent a variant record type. */
7783
7784 static int
7785 variant_field_index (struct type *type)
7786 {
7787 int f;
7788
7789 if (type == NULL || type->code () != TYPE_CODE_STRUCT)
7790 return -1;
7791
7792 for (f = 0; f < type->num_fields (); f += 1)
7793 {
7794 if (ada_is_variant_part (type, f))
7795 return f;
7796 }
7797 return -1;
7798 }
7799
7800 /* A record type with no fields. */
7801
7802 static struct type *
7803 empty_record (struct type *templ)
7804 {
7805 struct type *type = alloc_type_copy (templ);
7806
7807 type->set_code (TYPE_CODE_STRUCT);
7808 INIT_NONE_SPECIFIC (type);
7809 type->set_name ("<empty>");
7810 TYPE_LENGTH (type) = 0;
7811 return type;
7812 }
7813
7814 /* An ordinary record type (with fixed-length fields) that describes
7815 the value of type TYPE at VALADDR or ADDRESS (see comments at
7816 the beginning of this section) VAL according to GNAT conventions.
7817 DVAL0 should describe the (portion of a) record that contains any
7818 necessary discriminants. It should be NULL if value_type (VAL) is
7819 an outer-level type (i.e., as opposed to a branch of a variant.) A
7820 variant field (unless unchecked) is replaced by a particular branch
7821 of the variant.
7822
7823 If not KEEP_DYNAMIC_FIELDS, then all fields whose position or
7824 length are not statically known are discarded. As a consequence,
7825 VALADDR, ADDRESS and DVAL0 are ignored.
7826
7827 NOTE: Limitations: For now, we assume that dynamic fields and
7828 variants occupy whole numbers of bytes. However, they need not be
7829 byte-aligned. */
7830
7831 struct type *
7832 ada_template_to_fixed_record_type_1 (struct type *type,
7833 const gdb_byte *valaddr,
7834 CORE_ADDR address, struct value *dval0,
7835 int keep_dynamic_fields)
7836 {
7837 struct value *mark = value_mark ();
7838 struct value *dval;
7839 struct type *rtype;
7840 int nfields, bit_len;
7841 int variant_field;
7842 long off;
7843 int fld_bit_len;
7844 int f;
7845
7846 /* Compute the number of fields in this record type that are going
7847 to be processed: unless keep_dynamic_fields, this includes only
7848 fields whose position and length are static will be processed. */
7849 if (keep_dynamic_fields)
7850 nfields = type->num_fields ();
7851 else
7852 {
7853 nfields = 0;
7854 while (nfields < type->num_fields ()
7855 && !ada_is_variant_part (type, nfields)
7856 && !is_dynamic_field (type, nfields))
7857 nfields++;
7858 }
7859
7860 rtype = alloc_type_copy (type);
7861 rtype->set_code (TYPE_CODE_STRUCT);
7862 INIT_NONE_SPECIFIC (rtype);
7863 rtype->set_num_fields (nfields);
7864 rtype->set_fields
7865 ((struct field *) TYPE_ZALLOC (rtype, nfields * sizeof (struct field)));
7866 rtype->set_name (ada_type_name (type));
7867 rtype->set_is_fixed_instance (true);
7868
7869 off = 0;
7870 bit_len = 0;
7871 variant_field = -1;
7872
7873 for (f = 0; f < nfields; f += 1)
7874 {
7875 off = align_up (off, field_alignment (type, f))
7876 + TYPE_FIELD_BITPOS (type, f);
7877 SET_FIELD_BITPOS (rtype->field (f), off);
7878 TYPE_FIELD_BITSIZE (rtype, f) = 0;
7879
7880 if (ada_is_variant_part (type, f))
7881 {
7882 variant_field = f;
7883 fld_bit_len = 0;
7884 }
7885 else if (is_dynamic_field (type, f))
7886 {
7887 const gdb_byte *field_valaddr = valaddr;
7888 CORE_ADDR field_address = address;
7889 struct type *field_type =
7890 TYPE_TARGET_TYPE (type->field (f).type ());
7891
7892 if (dval0 == NULL)
7893 {
7894 /* rtype's length is computed based on the run-time
7895 value of discriminants. If the discriminants are not
7896 initialized, the type size may be completely bogus and
7897 GDB may fail to allocate a value for it. So check the
7898 size first before creating the value. */
7899 ada_ensure_varsize_limit (rtype);
7900 /* Using plain value_from_contents_and_address here
7901 causes problems because we will end up trying to
7902 resolve a type that is currently being
7903 constructed. */
7904 dval = value_from_contents_and_address_unresolved (rtype,
7905 valaddr,
7906 address);
7907 rtype = value_type (dval);
7908 }
7909 else
7910 dval = dval0;
7911
7912 /* If the type referenced by this field is an aligner type, we need
7913 to unwrap that aligner type, because its size might not be set.
7914 Keeping the aligner type would cause us to compute the wrong
7915 size for this field, impacting the offset of the all the fields
7916 that follow this one. */
7917 if (ada_is_aligner_type (field_type))
7918 {
7919 long field_offset = TYPE_FIELD_BITPOS (field_type, f);
7920
7921 field_valaddr = cond_offset_host (field_valaddr, field_offset);
7922 field_address = cond_offset_target (field_address, field_offset);
7923 field_type = ada_aligned_type (field_type);
7924 }
7925
7926 field_valaddr = cond_offset_host (field_valaddr,
7927 off / TARGET_CHAR_BIT);
7928 field_address = cond_offset_target (field_address,
7929 off / TARGET_CHAR_BIT);
7930
7931 /* Get the fixed type of the field. Note that, in this case,
7932 we do not want to get the real type out of the tag: if
7933 the current field is the parent part of a tagged record,
7934 we will get the tag of the object. Clearly wrong: the real
7935 type of the parent is not the real type of the child. We
7936 would end up in an infinite loop. */
7937 field_type = ada_get_base_type (field_type);
7938 field_type = ada_to_fixed_type (field_type, field_valaddr,
7939 field_address, dval, 0);
7940 /* If the field size is already larger than the maximum
7941 object size, then the record itself will necessarily
7942 be larger than the maximum object size. We need to make
7943 this check now, because the size might be so ridiculously
7944 large (due to an uninitialized variable in the inferior)
7945 that it would cause an overflow when adding it to the
7946 record size. */
7947 ada_ensure_varsize_limit (field_type);
7948
7949 rtype->field (f).set_type (field_type);
7950 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
7951 /* The multiplication can potentially overflow. But because
7952 the field length has been size-checked just above, and
7953 assuming that the maximum size is a reasonable value,
7954 an overflow should not happen in practice. So rather than
7955 adding overflow recovery code to this already complex code,
7956 we just assume that it's not going to happen. */
7957 fld_bit_len =
7958 TYPE_LENGTH (rtype->field (f).type ()) * TARGET_CHAR_BIT;
7959 }
7960 else
7961 {
7962 /* Note: If this field's type is a typedef, it is important
7963 to preserve the typedef layer.
7964
7965 Otherwise, we might be transforming a typedef to a fat
7966 pointer (encoding a pointer to an unconstrained array),
7967 into a basic fat pointer (encoding an unconstrained
7968 array). As both types are implemented using the same
7969 structure, the typedef is the only clue which allows us
7970 to distinguish between the two options. Stripping it
7971 would prevent us from printing this field appropriately. */
7972 rtype->field (f).set_type (type->field (f).type ());
7973 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
7974 if (TYPE_FIELD_BITSIZE (type, f) > 0)
7975 fld_bit_len =
7976 TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f);
7977 else
7978 {
7979 struct type *field_type = type->field (f).type ();
7980
7981 /* We need to be careful of typedefs when computing
7982 the length of our field. If this is a typedef,
7983 get the length of the target type, not the length
7984 of the typedef. */
7985 if (field_type->code () == TYPE_CODE_TYPEDEF)
7986 field_type = ada_typedef_target_type (field_type);
7987
7988 fld_bit_len =
7989 TYPE_LENGTH (ada_check_typedef (field_type)) * TARGET_CHAR_BIT;
7990 }
7991 }
7992 if (off + fld_bit_len > bit_len)
7993 bit_len = off + fld_bit_len;
7994 off += fld_bit_len;
7995 TYPE_LENGTH (rtype) =
7996 align_up (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
7997 }
7998
7999 /* We handle the variant part, if any, at the end because of certain
8000 odd cases in which it is re-ordered so as NOT to be the last field of
8001 the record. This can happen in the presence of representation
8002 clauses. */
8003 if (variant_field >= 0)
8004 {
8005 struct type *branch_type;
8006
8007 off = TYPE_FIELD_BITPOS (rtype, variant_field);
8008
8009 if (dval0 == NULL)
8010 {
8011 /* Using plain value_from_contents_and_address here causes
8012 problems because we will end up trying to resolve a type
8013 that is currently being constructed. */
8014 dval = value_from_contents_and_address_unresolved (rtype, valaddr,
8015 address);
8016 rtype = value_type (dval);
8017 }
8018 else
8019 dval = dval0;
8020
8021 branch_type =
8022 to_fixed_variant_branch_type
8023 (type->field (variant_field).type (),
8024 cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
8025 cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
8026 if (branch_type == NULL)
8027 {
8028 for (f = variant_field + 1; f < rtype->num_fields (); f += 1)
8029 rtype->field (f - 1) = rtype->field (f);
8030 rtype->set_num_fields (rtype->num_fields () - 1);
8031 }
8032 else
8033 {
8034 rtype->field (variant_field).set_type (branch_type);
8035 TYPE_FIELD_NAME (rtype, variant_field) = "S";
8036 fld_bit_len =
8037 TYPE_LENGTH (rtype->field (variant_field).type ()) *
8038 TARGET_CHAR_BIT;
8039 if (off + fld_bit_len > bit_len)
8040 bit_len = off + fld_bit_len;
8041 TYPE_LENGTH (rtype) =
8042 align_up (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
8043 }
8044 }
8045
8046 /* According to exp_dbug.ads, the size of TYPE for variable-size records
8047 should contain the alignment of that record, which should be a strictly
8048 positive value. If null or negative, then something is wrong, most
8049 probably in the debug info. In that case, we don't round up the size
8050 of the resulting type. If this record is not part of another structure,
8051 the current RTYPE length might be good enough for our purposes. */
8052 if (TYPE_LENGTH (type) <= 0)
8053 {
8054 if (rtype->name ())
8055 warning (_("Invalid type size for `%s' detected: %s."),
8056 rtype->name (), pulongest (TYPE_LENGTH (type)));
8057 else
8058 warning (_("Invalid type size for <unnamed> detected: %s."),
8059 pulongest (TYPE_LENGTH (type)));
8060 }
8061 else
8062 {
8063 TYPE_LENGTH (rtype) = align_up (TYPE_LENGTH (rtype),
8064 TYPE_LENGTH (type));
8065 }
8066
8067 value_free_to_mark (mark);
8068 if (TYPE_LENGTH (rtype) > varsize_limit)
8069 error (_("record type with dynamic size is larger than varsize-limit"));
8070 return rtype;
8071 }
8072
8073 /* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS
8074 of 1. */
8075
8076 static struct type *
8077 template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr,
8078 CORE_ADDR address, struct value *dval0)
8079 {
8080 return ada_template_to_fixed_record_type_1 (type, valaddr,
8081 address, dval0, 1);
8082 }
8083
8084 /* An ordinary record type in which ___XVL-convention fields and
8085 ___XVU- and ___XVN-convention field types in TYPE0 are replaced with
8086 static approximations, containing all possible fields. Uses
8087 no runtime values. Useless for use in values, but that's OK,
8088 since the results are used only for type determinations. Works on both
8089 structs and unions. Representation note: to save space, we memorize
8090 the result of this function in the TYPE_TARGET_TYPE of the
8091 template type. */
8092
8093 static struct type *
8094 template_to_static_fixed_type (struct type *type0)
8095 {
8096 struct type *type;
8097 int nfields;
8098 int f;
8099
8100 /* No need no do anything if the input type is already fixed. */
8101 if (type0->is_fixed_instance ())
8102 return type0;
8103
8104 /* Likewise if we already have computed the static approximation. */
8105 if (TYPE_TARGET_TYPE (type0) != NULL)
8106 return TYPE_TARGET_TYPE (type0);
8107
8108 /* Don't clone TYPE0 until we are sure we are going to need a copy. */
8109 type = type0;
8110 nfields = type0->num_fields ();
8111
8112 /* Whether or not we cloned TYPE0, cache the result so that we don't do
8113 recompute all over next time. */
8114 TYPE_TARGET_TYPE (type0) = type;
8115
8116 for (f = 0; f < nfields; f += 1)
8117 {
8118 struct type *field_type = type0->field (f).type ();
8119 struct type *new_type;
8120
8121 if (is_dynamic_field (type0, f))
8122 {
8123 field_type = ada_check_typedef (field_type);
8124 new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type));
8125 }
8126 else
8127 new_type = static_unwrap_type (field_type);
8128
8129 if (new_type != field_type)
8130 {
8131 /* Clone TYPE0 only the first time we get a new field type. */
8132 if (type == type0)
8133 {
8134 TYPE_TARGET_TYPE (type0) = type = alloc_type_copy (type0);
8135 type->set_code (type0->code ());
8136 INIT_NONE_SPECIFIC (type);
8137 type->set_num_fields (nfields);
8138
8139 field *fields =
8140 ((struct field *)
8141 TYPE_ALLOC (type, nfields * sizeof (struct field)));
8142 memcpy (fields, type0->fields (),
8143 sizeof (struct field) * nfields);
8144 type->set_fields (fields);
8145
8146 type->set_name (ada_type_name (type0));
8147 type->set_is_fixed_instance (true);
8148 TYPE_LENGTH (type) = 0;
8149 }
8150 type->field (f).set_type (new_type);
8151 TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f);
8152 }
8153 }
8154
8155 return type;
8156 }
8157
8158 /* Given an object of type TYPE whose contents are at VALADDR and
8159 whose address in memory is ADDRESS, returns a revision of TYPE,
8160 which should be a non-dynamic-sized record, in which the variant
8161 part, if any, is replaced with the appropriate branch. Looks
8162 for discriminant values in DVAL0, which can be NULL if the record
8163 contains the necessary discriminant values. */
8164
8165 static struct type *
8166 to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr,
8167 CORE_ADDR address, struct value *dval0)
8168 {
8169 struct value *mark = value_mark ();
8170 struct value *dval;
8171 struct type *rtype;
8172 struct type *branch_type;
8173 int nfields = type->num_fields ();
8174 int variant_field = variant_field_index (type);
8175
8176 if (variant_field == -1)
8177 return type;
8178
8179 if (dval0 == NULL)
8180 {
8181 dval = value_from_contents_and_address (type, valaddr, address);
8182 type = value_type (dval);
8183 }
8184 else
8185 dval = dval0;
8186
8187 rtype = alloc_type_copy (type);
8188 rtype->set_code (TYPE_CODE_STRUCT);
8189 INIT_NONE_SPECIFIC (rtype);
8190 rtype->set_num_fields (nfields);
8191
8192 field *fields =
8193 (struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field));
8194 memcpy (fields, type->fields (), sizeof (struct field) * nfields);
8195 rtype->set_fields (fields);
8196
8197 rtype->set_name (ada_type_name (type));
8198 rtype->set_is_fixed_instance (true);
8199 TYPE_LENGTH (rtype) = TYPE_LENGTH (type);
8200
8201 branch_type = to_fixed_variant_branch_type
8202 (type->field (variant_field).type (),
8203 cond_offset_host (valaddr,
8204 TYPE_FIELD_BITPOS (type, variant_field)
8205 / TARGET_CHAR_BIT),
8206 cond_offset_target (address,
8207 TYPE_FIELD_BITPOS (type, variant_field)
8208 / TARGET_CHAR_BIT), dval);
8209 if (branch_type == NULL)
8210 {
8211 int f;
8212
8213 for (f = variant_field + 1; f < nfields; f += 1)
8214 rtype->field (f - 1) = rtype->field (f);
8215 rtype->set_num_fields (rtype->num_fields () - 1);
8216 }
8217 else
8218 {
8219 rtype->field (variant_field).set_type (branch_type);
8220 TYPE_FIELD_NAME (rtype, variant_field) = "S";
8221 TYPE_FIELD_BITSIZE (rtype, variant_field) = 0;
8222 TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type);
8223 }
8224 TYPE_LENGTH (rtype) -= TYPE_LENGTH (type->field (variant_field).type ());
8225
8226 value_free_to_mark (mark);
8227 return rtype;
8228 }
8229
8230 /* An ordinary record type (with fixed-length fields) that describes
8231 the value at (TYPE0, VALADDR, ADDRESS) [see explanation at
8232 beginning of this section]. Any necessary discriminants' values
8233 should be in DVAL, a record value; it may be NULL if the object
8234 at ADDR itself contains any necessary discriminant values.
8235 Additionally, VALADDR and ADDRESS may also be NULL if no discriminant
8236 values from the record are needed. Except in the case that DVAL,
8237 VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless
8238 unchecked) is replaced by a particular branch of the variant.
8239
8240 NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0
8241 is questionable and may be removed. It can arise during the
8242 processing of an unconstrained-array-of-record type where all the
8243 variant branches have exactly the same size. This is because in
8244 such cases, the compiler does not bother to use the XVS convention
8245 when encoding the record. I am currently dubious of this
8246 shortcut and suspect the compiler should be altered. FIXME. */
8247
8248 static struct type *
8249 to_fixed_record_type (struct type *type0, const gdb_byte *valaddr,
8250 CORE_ADDR address, struct value *dval)
8251 {
8252 struct type *templ_type;
8253
8254 if (type0->is_fixed_instance ())
8255 return type0;
8256
8257 templ_type = dynamic_template_type (type0);
8258
8259 if (templ_type != NULL)
8260 return template_to_fixed_record_type (templ_type, valaddr, address, dval);
8261 else if (variant_field_index (type0) >= 0)
8262 {
8263 if (dval == NULL && valaddr == NULL && address == 0)
8264 return type0;
8265 return to_record_with_fixed_variant_part (type0, valaddr, address,
8266 dval);
8267 }
8268 else
8269 {
8270 type0->set_is_fixed_instance (true);
8271 return type0;
8272 }
8273
8274 }
8275
8276 /* An ordinary record type (with fixed-length fields) that describes
8277 the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a
8278 union type. Any necessary discriminants' values should be in DVAL,
8279 a record value. That is, this routine selects the appropriate
8280 branch of the union at ADDR according to the discriminant value
8281 indicated in the union's type name. Returns VAR_TYPE0 itself if
8282 it represents a variant subject to a pragma Unchecked_Union. */
8283
8284 static struct type *
8285 to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr,
8286 CORE_ADDR address, struct value *dval)
8287 {
8288 int which;
8289 struct type *templ_type;
8290 struct type *var_type;
8291
8292 if (var_type0->code () == TYPE_CODE_PTR)
8293 var_type = TYPE_TARGET_TYPE (var_type0);
8294 else
8295 var_type = var_type0;
8296
8297 templ_type = ada_find_parallel_type (var_type, "___XVU");
8298
8299 if (templ_type != NULL)
8300 var_type = templ_type;
8301
8302 if (is_unchecked_variant (var_type, value_type (dval)))
8303 return var_type0;
8304 which = ada_which_variant_applies (var_type, dval);
8305
8306 if (which < 0)
8307 return empty_record (var_type);
8308 else if (is_dynamic_field (var_type, which))
8309 return to_fixed_record_type
8310 (TYPE_TARGET_TYPE (var_type->field (which).type ()),
8311 valaddr, address, dval);
8312 else if (variant_field_index (var_type->field (which).type ()) >= 0)
8313 return
8314 to_fixed_record_type
8315 (var_type->field (which).type (), valaddr, address, dval);
8316 else
8317 return var_type->field (which).type ();
8318 }
8319
8320 /* Assuming RANGE_TYPE is a TYPE_CODE_RANGE, return nonzero if
8321 ENCODING_TYPE, a type following the GNAT conventions for discrete
8322 type encodings, only carries redundant information. */
8323
8324 static int
8325 ada_is_redundant_range_encoding (struct type *range_type,
8326 struct type *encoding_type)
8327 {
8328 const char *bounds_str;
8329 int n;
8330 LONGEST lo, hi;
8331
8332 gdb_assert (range_type->code () == TYPE_CODE_RANGE);
8333
8334 if (get_base_type (range_type)->code ()
8335 != get_base_type (encoding_type)->code ())
8336 {
8337 /* The compiler probably used a simple base type to describe
8338 the range type instead of the range's actual base type,
8339 expecting us to get the real base type from the encoding
8340 anyway. In this situation, the encoding cannot be ignored
8341 as redundant. */
8342 return 0;
8343 }
8344
8345 if (is_dynamic_type (range_type))
8346 return 0;
8347
8348 if (encoding_type->name () == NULL)
8349 return 0;
8350
8351 bounds_str = strstr (encoding_type->name (), "___XDLU_");
8352 if (bounds_str == NULL)
8353 return 0;
8354
8355 n = 8; /* Skip "___XDLU_". */
8356 if (!ada_scan_number (bounds_str, n, &lo, &n))
8357 return 0;
8358 if (range_type->bounds ()->low.const_val () != lo)
8359 return 0;
8360
8361 n += 2; /* Skip the "__" separator between the two bounds. */
8362 if (!ada_scan_number (bounds_str, n, &hi, &n))
8363 return 0;
8364 if (range_type->bounds ()->high.const_val () != hi)
8365 return 0;
8366
8367 return 1;
8368 }
8369
8370 /* Given the array type ARRAY_TYPE, return nonzero if DESC_TYPE,
8371 a type following the GNAT encoding for describing array type
8372 indices, only carries redundant information. */
8373
8374 static int
8375 ada_is_redundant_index_type_desc (struct type *array_type,
8376 struct type *desc_type)
8377 {
8378 struct type *this_layer = check_typedef (array_type);
8379 int i;
8380
8381 for (i = 0; i < desc_type->num_fields (); i++)
8382 {
8383 if (!ada_is_redundant_range_encoding (this_layer->index_type (),
8384 desc_type->field (i).type ()))
8385 return 0;
8386 this_layer = check_typedef (TYPE_TARGET_TYPE (this_layer));
8387 }
8388
8389 return 1;
8390 }
8391
8392 /* Assuming that TYPE0 is an array type describing the type of a value
8393 at ADDR, and that DVAL describes a record containing any
8394 discriminants used in TYPE0, returns a type for the value that
8395 contains no dynamic components (that is, no components whose sizes
8396 are determined by run-time quantities). Unless IGNORE_TOO_BIG is
8397 true, gives an error message if the resulting type's size is over
8398 varsize_limit. */
8399
8400 static struct type *
8401 to_fixed_array_type (struct type *type0, struct value *dval,
8402 int ignore_too_big)
8403 {
8404 struct type *index_type_desc;
8405 struct type *result;
8406 int constrained_packed_array_p;
8407 static const char *xa_suffix = "___XA";
8408
8409 type0 = ada_check_typedef (type0);
8410 if (type0->is_fixed_instance ())
8411 return type0;
8412
8413 constrained_packed_array_p = ada_is_constrained_packed_array_type (type0);
8414 if (constrained_packed_array_p)
8415 {
8416 type0 = decode_constrained_packed_array_type (type0);
8417 if (type0 == nullptr)
8418 error (_("could not decode constrained packed array type"));
8419 }
8420
8421 index_type_desc = ada_find_parallel_type (type0, xa_suffix);
8422
8423 /* As mentioned in exp_dbug.ads, for non bit-packed arrays an
8424 encoding suffixed with 'P' may still be generated. If so,
8425 it should be used to find the XA type. */
8426
8427 if (index_type_desc == NULL)
8428 {
8429 const char *type_name = ada_type_name (type0);
8430
8431 if (type_name != NULL)
8432 {
8433 const int len = strlen (type_name);
8434 char *name = (char *) alloca (len + strlen (xa_suffix));
8435
8436 if (type_name[len - 1] == 'P')
8437 {
8438 strcpy (name, type_name);
8439 strcpy (name + len - 1, xa_suffix);
8440 index_type_desc = ada_find_parallel_type_with_name (type0, name);
8441 }
8442 }
8443 }
8444
8445 ada_fixup_array_indexes_type (index_type_desc);
8446 if (index_type_desc != NULL
8447 && ada_is_redundant_index_type_desc (type0, index_type_desc))
8448 {
8449 /* Ignore this ___XA parallel type, as it does not bring any
8450 useful information. This allows us to avoid creating fixed
8451 versions of the array's index types, which would be identical
8452 to the original ones. This, in turn, can also help avoid
8453 the creation of fixed versions of the array itself. */
8454 index_type_desc = NULL;
8455 }
8456
8457 if (index_type_desc == NULL)
8458 {
8459 struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0));
8460
8461 /* NOTE: elt_type---the fixed version of elt_type0---should never
8462 depend on the contents of the array in properly constructed
8463 debugging data. */
8464 /* Create a fixed version of the array element type.
8465 We're not providing the address of an element here,
8466 and thus the actual object value cannot be inspected to do
8467 the conversion. This should not be a problem, since arrays of
8468 unconstrained objects are not allowed. In particular, all
8469 the elements of an array of a tagged type should all be of
8470 the same type specified in the debugging info. No need to
8471 consult the object tag. */
8472 struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval, 1);
8473
8474 /* Make sure we always create a new array type when dealing with
8475 packed array types, since we're going to fix-up the array
8476 type length and element bitsize a little further down. */
8477 if (elt_type0 == elt_type && !constrained_packed_array_p)
8478 result = type0;
8479 else
8480 result = create_array_type (alloc_type_copy (type0),
8481 elt_type, type0->index_type ());
8482 }
8483 else
8484 {
8485 int i;
8486 struct type *elt_type0;
8487
8488 elt_type0 = type0;
8489 for (i = index_type_desc->num_fields (); i > 0; i -= 1)
8490 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
8491
8492 /* NOTE: result---the fixed version of elt_type0---should never
8493 depend on the contents of the array in properly constructed
8494 debugging data. */
8495 /* Create a fixed version of the array element type.
8496 We're not providing the address of an element here,
8497 and thus the actual object value cannot be inspected to do
8498 the conversion. This should not be a problem, since arrays of
8499 unconstrained objects are not allowed. In particular, all
8500 the elements of an array of a tagged type should all be of
8501 the same type specified in the debugging info. No need to
8502 consult the object tag. */
8503 result =
8504 ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval, 1);
8505
8506 elt_type0 = type0;
8507 for (i = index_type_desc->num_fields () - 1; i >= 0; i -= 1)
8508 {
8509 struct type *range_type =
8510 to_fixed_range_type (index_type_desc->field (i).type (), dval);
8511
8512 result = create_array_type (alloc_type_copy (elt_type0),
8513 result, range_type);
8514 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
8515 }
8516 if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit)
8517 error (_("array type with dynamic size is larger than varsize-limit"));
8518 }
8519
8520 /* We want to preserve the type name. This can be useful when
8521 trying to get the type name of a value that has already been
8522 printed (for instance, if the user did "print VAR; whatis $". */
8523 result->set_name (type0->name ());
8524
8525 if (constrained_packed_array_p)
8526 {
8527 /* So far, the resulting type has been created as if the original
8528 type was a regular (non-packed) array type. As a result, the
8529 bitsize of the array elements needs to be set again, and the array
8530 length needs to be recomputed based on that bitsize. */
8531 int len = TYPE_LENGTH (result) / TYPE_LENGTH (TYPE_TARGET_TYPE (result));
8532 int elt_bitsize = TYPE_FIELD_BITSIZE (type0, 0);
8533
8534 TYPE_FIELD_BITSIZE (result, 0) = TYPE_FIELD_BITSIZE (type0, 0);
8535 TYPE_LENGTH (result) = len * elt_bitsize / HOST_CHAR_BIT;
8536 if (TYPE_LENGTH (result) * HOST_CHAR_BIT < len * elt_bitsize)
8537 TYPE_LENGTH (result)++;
8538 }
8539
8540 result->set_is_fixed_instance (true);
8541 return result;
8542 }
8543
8544
8545 /* A standard type (containing no dynamically sized components)
8546 corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS)
8547 DVAL describes a record containing any discriminants used in TYPE0,
8548 and may be NULL if there are none, or if the object of type TYPE at
8549 ADDRESS or in VALADDR contains these discriminants.
8550
8551 If CHECK_TAG is not null, in the case of tagged types, this function
8552 attempts to locate the object's tag and use it to compute the actual
8553 type. However, when ADDRESS is null, we cannot use it to determine the
8554 location of the tag, and therefore compute the tagged type's actual type.
8555 So we return the tagged type without consulting the tag. */
8556
8557 static struct type *
8558 ada_to_fixed_type_1 (struct type *type, const gdb_byte *valaddr,
8559 CORE_ADDR address, struct value *dval, int check_tag)
8560 {
8561 type = ada_check_typedef (type);
8562
8563 /* Only un-fixed types need to be handled here. */
8564 if (!HAVE_GNAT_AUX_INFO (type))
8565 return type;
8566
8567 switch (type->code ())
8568 {
8569 default:
8570 return type;
8571 case TYPE_CODE_STRUCT:
8572 {
8573 struct type *static_type = to_static_fixed_type (type);
8574 struct type *fixed_record_type =
8575 to_fixed_record_type (type, valaddr, address, NULL);
8576
8577 /* If STATIC_TYPE is a tagged type and we know the object's address,
8578 then we can determine its tag, and compute the object's actual
8579 type from there. Note that we have to use the fixed record
8580 type (the parent part of the record may have dynamic fields
8581 and the way the location of _tag is expressed may depend on
8582 them). */
8583
8584 if (check_tag && address != 0 && ada_is_tagged_type (static_type, 0))
8585 {
8586 struct value *tag =
8587 value_tag_from_contents_and_address
8588 (fixed_record_type,
8589 valaddr,
8590 address);
8591 struct type *real_type = type_from_tag (tag);
8592 struct value *obj =
8593 value_from_contents_and_address (fixed_record_type,
8594 valaddr,
8595 address);
8596 fixed_record_type = value_type (obj);
8597 if (real_type != NULL)
8598 return to_fixed_record_type
8599 (real_type, NULL,
8600 value_address (ada_tag_value_at_base_address (obj)), NULL);
8601 }
8602
8603 /* Check to see if there is a parallel ___XVZ variable.
8604 If there is, then it provides the actual size of our type. */
8605 else if (ada_type_name (fixed_record_type) != NULL)
8606 {
8607 const char *name = ada_type_name (fixed_record_type);
8608 char *xvz_name
8609 = (char *) alloca (strlen (name) + 7 /* "___XVZ\0" */);
8610 bool xvz_found = false;
8611 LONGEST size;
8612
8613 xsnprintf (xvz_name, strlen (name) + 7, "%s___XVZ", name);
8614 try
8615 {
8616 xvz_found = get_int_var_value (xvz_name, size);
8617 }
8618 catch (const gdb_exception_error &except)
8619 {
8620 /* We found the variable, but somehow failed to read
8621 its value. Rethrow the same error, but with a little
8622 bit more information, to help the user understand
8623 what went wrong (Eg: the variable might have been
8624 optimized out). */
8625 throw_error (except.error,
8626 _("unable to read value of %s (%s)"),
8627 xvz_name, except.what ());
8628 }
8629
8630 if (xvz_found && TYPE_LENGTH (fixed_record_type) != size)
8631 {
8632 fixed_record_type = copy_type (fixed_record_type);
8633 TYPE_LENGTH (fixed_record_type) = size;
8634
8635 /* The FIXED_RECORD_TYPE may have be a stub. We have
8636 observed this when the debugging info is STABS, and
8637 apparently it is something that is hard to fix.
8638
8639 In practice, we don't need the actual type definition
8640 at all, because the presence of the XVZ variable allows us
8641 to assume that there must be a XVS type as well, which we
8642 should be able to use later, when we need the actual type
8643 definition.
8644
8645 In the meantime, pretend that the "fixed" type we are
8646 returning is NOT a stub, because this can cause trouble
8647 when using this type to create new types targeting it.
8648 Indeed, the associated creation routines often check
8649 whether the target type is a stub and will try to replace
8650 it, thus using a type with the wrong size. This, in turn,
8651 might cause the new type to have the wrong size too.
8652 Consider the case of an array, for instance, where the size
8653 of the array is computed from the number of elements in
8654 our array multiplied by the size of its element. */
8655 fixed_record_type->set_is_stub (false);
8656 }
8657 }
8658 return fixed_record_type;
8659 }
8660 case TYPE_CODE_ARRAY:
8661 return to_fixed_array_type (type, dval, 1);
8662 case TYPE_CODE_UNION:
8663 if (dval == NULL)
8664 return type;
8665 else
8666 return to_fixed_variant_branch_type (type, valaddr, address, dval);
8667 }
8668 }
8669
8670 /* The same as ada_to_fixed_type_1, except that it preserves the type
8671 if it is a TYPE_CODE_TYPEDEF of a type that is already fixed.
8672
8673 The typedef layer needs be preserved in order to differentiate between
8674 arrays and array pointers when both types are implemented using the same
8675 fat pointer. In the array pointer case, the pointer is encoded as
8676 a typedef of the pointer type. For instance, considering:
8677
8678 type String_Access is access String;
8679 S1 : String_Access := null;
8680
8681 To the debugger, S1 is defined as a typedef of type String. But
8682 to the user, it is a pointer. So if the user tries to print S1,
8683 we should not dereference the array, but print the array address
8684 instead.
8685
8686 If we didn't preserve the typedef layer, we would lose the fact that
8687 the type is to be presented as a pointer (needs de-reference before
8688 being printed). And we would also use the source-level type name. */
8689
8690 struct type *
8691 ada_to_fixed_type (struct type *type, const gdb_byte *valaddr,
8692 CORE_ADDR address, struct value *dval, int check_tag)
8693
8694 {
8695 struct type *fixed_type =
8696 ada_to_fixed_type_1 (type, valaddr, address, dval, check_tag);
8697
8698 /* If TYPE is a typedef and its target type is the same as the FIXED_TYPE,
8699 then preserve the typedef layer.
8700
8701 Implementation note: We can only check the main-type portion of
8702 the TYPE and FIXED_TYPE, because eliminating the typedef layer
8703 from TYPE now returns a type that has the same instance flags
8704 as TYPE. For instance, if TYPE is a "typedef const", and its
8705 target type is a "struct", then the typedef elimination will return
8706 a "const" version of the target type. See check_typedef for more
8707 details about how the typedef layer elimination is done.
8708
8709 brobecker/2010-11-19: It seems to me that the only case where it is
8710 useful to preserve the typedef layer is when dealing with fat pointers.
8711 Perhaps, we could add a check for that and preserve the typedef layer
8712 only in that situation. But this seems unnecessary so far, probably
8713 because we call check_typedef/ada_check_typedef pretty much everywhere.
8714 */
8715 if (type->code () == TYPE_CODE_TYPEDEF
8716 && (TYPE_MAIN_TYPE (ada_typedef_target_type (type))
8717 == TYPE_MAIN_TYPE (fixed_type)))
8718 return type;
8719
8720 return fixed_type;
8721 }
8722
8723 /* A standard (static-sized) type corresponding as well as possible to
8724 TYPE0, but based on no runtime data. */
8725
8726 static struct type *
8727 to_static_fixed_type (struct type *type0)
8728 {
8729 struct type *type;
8730
8731 if (type0 == NULL)
8732 return NULL;
8733
8734 if (type0->is_fixed_instance ())
8735 return type0;
8736
8737 type0 = ada_check_typedef (type0);
8738
8739 switch (type0->code ())
8740 {
8741 default:
8742 return type0;
8743 case TYPE_CODE_STRUCT:
8744 type = dynamic_template_type (type0);
8745 if (type != NULL)
8746 return template_to_static_fixed_type (type);
8747 else
8748 return template_to_static_fixed_type (type0);
8749 case TYPE_CODE_UNION:
8750 type = ada_find_parallel_type (type0, "___XVU");
8751 if (type != NULL)
8752 return template_to_static_fixed_type (type);
8753 else
8754 return template_to_static_fixed_type (type0);
8755 }
8756 }
8757
8758 /* A static approximation of TYPE with all type wrappers removed. */
8759
8760 static struct type *
8761 static_unwrap_type (struct type *type)
8762 {
8763 if (ada_is_aligner_type (type))
8764 {
8765 struct type *type1 = ada_check_typedef (type)->field (0).type ();
8766 if (ada_type_name (type1) == NULL)
8767 type1->set_name (ada_type_name (type));
8768
8769 return static_unwrap_type (type1);
8770 }
8771 else
8772 {
8773 struct type *raw_real_type = ada_get_base_type (type);
8774
8775 if (raw_real_type == type)
8776 return type;
8777 else
8778 return to_static_fixed_type (raw_real_type);
8779 }
8780 }
8781
8782 /* In some cases, incomplete and private types require
8783 cross-references that are not resolved as records (for example,
8784 type Foo;
8785 type FooP is access Foo;
8786 V: FooP;
8787 type Foo is array ...;
8788 ). In these cases, since there is no mechanism for producing
8789 cross-references to such types, we instead substitute for FooP a
8790 stub enumeration type that is nowhere resolved, and whose tag is
8791 the name of the actual type. Call these types "non-record stubs". */
8792
8793 /* A type equivalent to TYPE that is not a non-record stub, if one
8794 exists, otherwise TYPE. */
8795
8796 struct type *
8797 ada_check_typedef (struct type *type)
8798 {
8799 if (type == NULL)
8800 return NULL;
8801
8802 /* If our type is an access to an unconstrained array, which is encoded
8803 as a TYPE_CODE_TYPEDEF of a fat pointer, then we're done.
8804 We don't want to strip the TYPE_CODE_TYPDEF layer, because this is
8805 what allows us to distinguish between fat pointers that represent
8806 array types, and fat pointers that represent array access types
8807 (in both cases, the compiler implements them as fat pointers). */
8808 if (ada_is_access_to_unconstrained_array (type))
8809 return type;
8810
8811 type = check_typedef (type);
8812 if (type == NULL || type->code () != TYPE_CODE_ENUM
8813 || !type->is_stub ()
8814 || type->name () == NULL)
8815 return type;
8816 else
8817 {
8818 const char *name = type->name ();
8819 struct type *type1 = ada_find_any_type (name);
8820
8821 if (type1 == NULL)
8822 return type;
8823
8824 /* TYPE1 might itself be a TYPE_CODE_TYPEDEF (this can happen with
8825 stubs pointing to arrays, as we don't create symbols for array
8826 types, only for the typedef-to-array types). If that's the case,
8827 strip the typedef layer. */
8828 if (type1->code () == TYPE_CODE_TYPEDEF)
8829 type1 = ada_check_typedef (type1);
8830
8831 return type1;
8832 }
8833 }
8834
8835 /* A value representing the data at VALADDR/ADDRESS as described by
8836 type TYPE0, but with a standard (static-sized) type that correctly
8837 describes it. If VAL0 is not NULL and TYPE0 already is a standard
8838 type, then return VAL0 [this feature is simply to avoid redundant
8839 creation of struct values]. */
8840
8841 static struct value *
8842 ada_to_fixed_value_create (struct type *type0, CORE_ADDR address,
8843 struct value *val0)
8844 {
8845 struct type *type = ada_to_fixed_type (type0, 0, address, NULL, 1);
8846
8847 if (type == type0 && val0 != NULL)
8848 return val0;
8849
8850 if (VALUE_LVAL (val0) != lval_memory)
8851 {
8852 /* Our value does not live in memory; it could be a convenience
8853 variable, for instance. Create a not_lval value using val0's
8854 contents. */
8855 return value_from_contents (type, value_contents (val0));
8856 }
8857
8858 return value_from_contents_and_address (type, 0, address);
8859 }
8860
8861 /* A value representing VAL, but with a standard (static-sized) type
8862 that correctly describes it. Does not necessarily create a new
8863 value. */
8864
8865 struct value *
8866 ada_to_fixed_value (struct value *val)
8867 {
8868 val = unwrap_value (val);
8869 val = ada_to_fixed_value_create (value_type (val), value_address (val), val);
8870 return val;
8871 }
8872 \f
8873
8874 /* Attributes */
8875
8876 /* Table mapping attribute numbers to names.
8877 NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */
8878
8879 static const char * const attribute_names[] = {
8880 "<?>",
8881
8882 "first",
8883 "last",
8884 "length",
8885 "image",
8886 "max",
8887 "min",
8888 "modulus",
8889 "pos",
8890 "size",
8891 "tag",
8892 "val",
8893 0
8894 };
8895
8896 static const char *
8897 ada_attribute_name (enum exp_opcode n)
8898 {
8899 if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL)
8900 return attribute_names[n - OP_ATR_FIRST + 1];
8901 else
8902 return attribute_names[0];
8903 }
8904
8905 /* Evaluate the 'POS attribute applied to ARG. */
8906
8907 static LONGEST
8908 pos_atr (struct value *arg)
8909 {
8910 struct value *val = coerce_ref (arg);
8911 struct type *type = value_type (val);
8912
8913 if (!discrete_type_p (type))
8914 error (_("'POS only defined on discrete types"));
8915
8916 gdb::optional<LONGEST> result = discrete_position (type, value_as_long (val));
8917 if (!result.has_value ())
8918 error (_("enumeration value is invalid: can't find 'POS"));
8919
8920 return *result;
8921 }
8922
8923 static struct value *
8924 value_pos_atr (struct type *type, struct value *arg)
8925 {
8926 return value_from_longest (type, pos_atr (arg));
8927 }
8928
8929 /* Evaluate the TYPE'VAL attribute applied to ARG. */
8930
8931 static struct value *
8932 val_atr (struct type *type, LONGEST val)
8933 {
8934 gdb_assert (discrete_type_p (type));
8935 if (type->code () == TYPE_CODE_RANGE)
8936 type = TYPE_TARGET_TYPE (type);
8937 if (type->code () == TYPE_CODE_ENUM)
8938 {
8939 if (val < 0 || val >= type->num_fields ())
8940 error (_("argument to 'VAL out of range"));
8941 val = TYPE_FIELD_ENUMVAL (type, val);
8942 }
8943 return value_from_longest (type, val);
8944 }
8945
8946 static struct value *
8947 value_val_atr (struct type *type, struct value *arg)
8948 {
8949 if (!discrete_type_p (type))
8950 error (_("'VAL only defined on discrete types"));
8951 if (!integer_type_p (value_type (arg)))
8952 error (_("'VAL requires integral argument"));
8953
8954 return val_atr (type, value_as_long (arg));
8955 }
8956 \f
8957
8958 /* Evaluation */
8959
8960 /* True if TYPE appears to be an Ada character type.
8961 [At the moment, this is true only for Character and Wide_Character;
8962 It is a heuristic test that could stand improvement]. */
8963
8964 bool
8965 ada_is_character_type (struct type *type)
8966 {
8967 const char *name;
8968
8969 /* If the type code says it's a character, then assume it really is,
8970 and don't check any further. */
8971 if (type->code () == TYPE_CODE_CHAR)
8972 return true;
8973
8974 /* Otherwise, assume it's a character type iff it is a discrete type
8975 with a known character type name. */
8976 name = ada_type_name (type);
8977 return (name != NULL
8978 && (type->code () == TYPE_CODE_INT
8979 || type->code () == TYPE_CODE_RANGE)
8980 && (strcmp (name, "character") == 0
8981 || strcmp (name, "wide_character") == 0
8982 || strcmp (name, "wide_wide_character") == 0
8983 || strcmp (name, "unsigned char") == 0));
8984 }
8985
8986 /* True if TYPE appears to be an Ada string type. */
8987
8988 bool
8989 ada_is_string_type (struct type *type)
8990 {
8991 type = ada_check_typedef (type);
8992 if (type != NULL
8993 && type->code () != TYPE_CODE_PTR
8994 && (ada_is_simple_array_type (type)
8995 || ada_is_array_descriptor_type (type))
8996 && ada_array_arity (type) == 1)
8997 {
8998 struct type *elttype = ada_array_element_type (type, 1);
8999
9000 return ada_is_character_type (elttype);
9001 }
9002 else
9003 return false;
9004 }
9005
9006 /* The compiler sometimes provides a parallel XVS type for a given
9007 PAD type. Normally, it is safe to follow the PAD type directly,
9008 but older versions of the compiler have a bug that causes the offset
9009 of its "F" field to be wrong. Following that field in that case
9010 would lead to incorrect results, but this can be worked around
9011 by ignoring the PAD type and using the associated XVS type instead.
9012
9013 Set to True if the debugger should trust the contents of PAD types.
9014 Otherwise, ignore the PAD type if there is a parallel XVS type. */
9015 static bool trust_pad_over_xvs = true;
9016
9017 /* True if TYPE is a struct type introduced by the compiler to force the
9018 alignment of a value. Such types have a single field with a
9019 distinctive name. */
9020
9021 int
9022 ada_is_aligner_type (struct type *type)
9023 {
9024 type = ada_check_typedef (type);
9025
9026 if (!trust_pad_over_xvs && ada_find_parallel_type (type, "___XVS") != NULL)
9027 return 0;
9028
9029 return (type->code () == TYPE_CODE_STRUCT
9030 && type->num_fields () == 1
9031 && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0);
9032 }
9033
9034 /* If there is an ___XVS-convention type parallel to SUBTYPE, return
9035 the parallel type. */
9036
9037 struct type *
9038 ada_get_base_type (struct type *raw_type)
9039 {
9040 struct type *real_type_namer;
9041 struct type *raw_real_type;
9042
9043 if (raw_type == NULL || raw_type->code () != TYPE_CODE_STRUCT)
9044 return raw_type;
9045
9046 if (ada_is_aligner_type (raw_type))
9047 /* The encoding specifies that we should always use the aligner type.
9048 So, even if this aligner type has an associated XVS type, we should
9049 simply ignore it.
9050
9051 According to the compiler gurus, an XVS type parallel to an aligner
9052 type may exist because of a stabs limitation. In stabs, aligner
9053 types are empty because the field has a variable-sized type, and
9054 thus cannot actually be used as an aligner type. As a result,
9055 we need the associated parallel XVS type to decode the type.
9056 Since the policy in the compiler is to not change the internal
9057 representation based on the debugging info format, we sometimes
9058 end up having a redundant XVS type parallel to the aligner type. */
9059 return raw_type;
9060
9061 real_type_namer = ada_find_parallel_type (raw_type, "___XVS");
9062 if (real_type_namer == NULL
9063 || real_type_namer->code () != TYPE_CODE_STRUCT
9064 || real_type_namer->num_fields () != 1)
9065 return raw_type;
9066
9067 if (real_type_namer->field (0).type ()->code () != TYPE_CODE_REF)
9068 {
9069 /* This is an older encoding form where the base type needs to be
9070 looked up by name. We prefer the newer encoding because it is
9071 more efficient. */
9072 raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0));
9073 if (raw_real_type == NULL)
9074 return raw_type;
9075 else
9076 return raw_real_type;
9077 }
9078
9079 /* The field in our XVS type is a reference to the base type. */
9080 return TYPE_TARGET_TYPE (real_type_namer->field (0).type ());
9081 }
9082
9083 /* The type of value designated by TYPE, with all aligners removed. */
9084
9085 struct type *
9086 ada_aligned_type (struct type *type)
9087 {
9088 if (ada_is_aligner_type (type))
9089 return ada_aligned_type (type->field (0).type ());
9090 else
9091 return ada_get_base_type (type);
9092 }
9093
9094
9095 /* The address of the aligned value in an object at address VALADDR
9096 having type TYPE. Assumes ada_is_aligner_type (TYPE). */
9097
9098 const gdb_byte *
9099 ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr)
9100 {
9101 if (ada_is_aligner_type (type))
9102 return ada_aligned_value_addr (type->field (0).type (),
9103 valaddr +
9104 TYPE_FIELD_BITPOS (type,
9105 0) / TARGET_CHAR_BIT);
9106 else
9107 return valaddr;
9108 }
9109
9110
9111
9112 /* The printed representation of an enumeration literal with encoded
9113 name NAME. The value is good to the next call of ada_enum_name. */
9114 const char *
9115 ada_enum_name (const char *name)
9116 {
9117 static char *result;
9118 static size_t result_len = 0;
9119 const char *tmp;
9120
9121 /* First, unqualify the enumeration name:
9122 1. Search for the last '.' character. If we find one, then skip
9123 all the preceding characters, the unqualified name starts
9124 right after that dot.
9125 2. Otherwise, we may be debugging on a target where the compiler
9126 translates dots into "__". Search forward for double underscores,
9127 but stop searching when we hit an overloading suffix, which is
9128 of the form "__" followed by digits. */
9129
9130 tmp = strrchr (name, '.');
9131 if (tmp != NULL)
9132 name = tmp + 1;
9133 else
9134 {
9135 while ((tmp = strstr (name, "__")) != NULL)
9136 {
9137 if (isdigit (tmp[2]))
9138 break;
9139 else
9140 name = tmp + 2;
9141 }
9142 }
9143
9144 if (name[0] == 'Q')
9145 {
9146 int v;
9147
9148 if (name[1] == 'U' || name[1] == 'W')
9149 {
9150 if (sscanf (name + 2, "%x", &v) != 1)
9151 return name;
9152 }
9153 else if (((name[1] >= '0' && name[1] <= '9')
9154 || (name[1] >= 'a' && name[1] <= 'z'))
9155 && name[2] == '\0')
9156 {
9157 GROW_VECT (result, result_len, 4);
9158 xsnprintf (result, result_len, "'%c'", name[1]);
9159 return result;
9160 }
9161 else
9162 return name;
9163
9164 GROW_VECT (result, result_len, 16);
9165 if (isascii (v) && isprint (v))
9166 xsnprintf (result, result_len, "'%c'", v);
9167 else if (name[1] == 'U')
9168 xsnprintf (result, result_len, "[\"%02x\"]", v);
9169 else
9170 xsnprintf (result, result_len, "[\"%04x\"]", v);
9171
9172 return result;
9173 }
9174 else
9175 {
9176 tmp = strstr (name, "__");
9177 if (tmp == NULL)
9178 tmp = strstr (name, "$");
9179 if (tmp != NULL)
9180 {
9181 GROW_VECT (result, result_len, tmp - name + 1);
9182 strncpy (result, name, tmp - name);
9183 result[tmp - name] = '\0';
9184 return result;
9185 }
9186
9187 return name;
9188 }
9189 }
9190
9191 /* Evaluate the subexpression of EXP starting at *POS as for
9192 evaluate_type, updating *POS to point just past the evaluated
9193 expression. */
9194
9195 static struct value *
9196 evaluate_subexp_type (struct expression *exp, int *pos)
9197 {
9198 return evaluate_subexp (nullptr, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
9199 }
9200
9201 /* If VAL is wrapped in an aligner or subtype wrapper, return the
9202 value it wraps. */
9203
9204 static struct value *
9205 unwrap_value (struct value *val)
9206 {
9207 struct type *type = ada_check_typedef (value_type (val));
9208
9209 if (ada_is_aligner_type (type))
9210 {
9211 struct value *v = ada_value_struct_elt (val, "F", 0);
9212 struct type *val_type = ada_check_typedef (value_type (v));
9213
9214 if (ada_type_name (val_type) == NULL)
9215 val_type->set_name (ada_type_name (type));
9216
9217 return unwrap_value (v);
9218 }
9219 else
9220 {
9221 struct type *raw_real_type =
9222 ada_check_typedef (ada_get_base_type (type));
9223
9224 /* If there is no parallel XVS or XVE type, then the value is
9225 already unwrapped. Return it without further modification. */
9226 if ((type == raw_real_type)
9227 && ada_find_parallel_type (type, "___XVE") == NULL)
9228 return val;
9229
9230 return
9231 coerce_unspec_val_to_type
9232 (val, ada_to_fixed_type (raw_real_type, 0,
9233 value_address (val),
9234 NULL, 1));
9235 }
9236 }
9237
9238 static struct value *
9239 cast_from_gnat_encoded_fixed_point_type (struct type *type, struct value *arg)
9240 {
9241 struct value *scale
9242 = gnat_encoded_fixed_point_scaling_factor (value_type (arg));
9243 arg = value_cast (value_type (scale), arg);
9244
9245 arg = value_binop (arg, scale, BINOP_MUL);
9246 return value_cast (type, arg);
9247 }
9248
9249 static struct value *
9250 cast_to_gnat_encoded_fixed_point_type (struct type *type, struct value *arg)
9251 {
9252 if (type == value_type (arg))
9253 return arg;
9254
9255 struct value *scale = gnat_encoded_fixed_point_scaling_factor (type);
9256 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg)))
9257 arg = cast_from_gnat_encoded_fixed_point_type (value_type (scale), arg);
9258 else
9259 arg = value_cast (value_type (scale), arg);
9260
9261 arg = value_binop (arg, scale, BINOP_DIV);
9262 return value_cast (type, arg);
9263 }
9264
9265 /* Given two array types T1 and T2, return nonzero iff both arrays
9266 contain the same number of elements. */
9267
9268 static int
9269 ada_same_array_size_p (struct type *t1, struct type *t2)
9270 {
9271 LONGEST lo1, hi1, lo2, hi2;
9272
9273 /* Get the array bounds in order to verify that the size of
9274 the two arrays match. */
9275 if (!get_array_bounds (t1, &lo1, &hi1)
9276 || !get_array_bounds (t2, &lo2, &hi2))
9277 error (_("unable to determine array bounds"));
9278
9279 /* To make things easier for size comparison, normalize a bit
9280 the case of empty arrays by making sure that the difference
9281 between upper bound and lower bound is always -1. */
9282 if (lo1 > hi1)
9283 hi1 = lo1 - 1;
9284 if (lo2 > hi2)
9285 hi2 = lo2 - 1;
9286
9287 return (hi1 - lo1 == hi2 - lo2);
9288 }
9289
9290 /* Assuming that VAL is an array of integrals, and TYPE represents
9291 an array with the same number of elements, but with wider integral
9292 elements, return an array "casted" to TYPE. In practice, this
9293 means that the returned array is built by casting each element
9294 of the original array into TYPE's (wider) element type. */
9295
9296 static struct value *
9297 ada_promote_array_of_integrals (struct type *type, struct value *val)
9298 {
9299 struct type *elt_type = TYPE_TARGET_TYPE (type);
9300 LONGEST lo, hi;
9301 struct value *res;
9302 LONGEST i;
9303
9304 /* Verify that both val and type are arrays of scalars, and
9305 that the size of val's elements is smaller than the size
9306 of type's element. */
9307 gdb_assert (type->code () == TYPE_CODE_ARRAY);
9308 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (type)));
9309 gdb_assert (value_type (val)->code () == TYPE_CODE_ARRAY);
9310 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (value_type (val))));
9311 gdb_assert (TYPE_LENGTH (TYPE_TARGET_TYPE (type))
9312 > TYPE_LENGTH (TYPE_TARGET_TYPE (value_type (val))));
9313
9314 if (!get_array_bounds (type, &lo, &hi))
9315 error (_("unable to determine array bounds"));
9316
9317 res = allocate_value (type);
9318
9319 /* Promote each array element. */
9320 for (i = 0; i < hi - lo + 1; i++)
9321 {
9322 struct value *elt = value_cast (elt_type, value_subscript (val, lo + i));
9323
9324 memcpy (value_contents_writeable (res) + (i * TYPE_LENGTH (elt_type)),
9325 value_contents_all (elt), TYPE_LENGTH (elt_type));
9326 }
9327
9328 return res;
9329 }
9330
9331 /* Coerce VAL as necessary for assignment to an lval of type TYPE, and
9332 return the converted value. */
9333
9334 static struct value *
9335 coerce_for_assign (struct type *type, struct value *val)
9336 {
9337 struct type *type2 = value_type (val);
9338
9339 if (type == type2)
9340 return val;
9341
9342 type2 = ada_check_typedef (type2);
9343 type = ada_check_typedef (type);
9344
9345 if (type2->code () == TYPE_CODE_PTR
9346 && type->code () == TYPE_CODE_ARRAY)
9347 {
9348 val = ada_value_ind (val);
9349 type2 = value_type (val);
9350 }
9351
9352 if (type2->code () == TYPE_CODE_ARRAY
9353 && type->code () == TYPE_CODE_ARRAY)
9354 {
9355 if (!ada_same_array_size_p (type, type2))
9356 error (_("cannot assign arrays of different length"));
9357
9358 if (is_integral_type (TYPE_TARGET_TYPE (type))
9359 && is_integral_type (TYPE_TARGET_TYPE (type2))
9360 && TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9361 < TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9362 {
9363 /* Allow implicit promotion of the array elements to
9364 a wider type. */
9365 return ada_promote_array_of_integrals (type, val);
9366 }
9367
9368 if (TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9369 != TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9370 error (_("Incompatible types in assignment"));
9371 deprecated_set_value_type (val, type);
9372 }
9373 return val;
9374 }
9375
9376 static struct value *
9377 ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
9378 {
9379 struct value *val;
9380 struct type *type1, *type2;
9381 LONGEST v, v1, v2;
9382
9383 arg1 = coerce_ref (arg1);
9384 arg2 = coerce_ref (arg2);
9385 type1 = get_base_type (ada_check_typedef (value_type (arg1)));
9386 type2 = get_base_type (ada_check_typedef (value_type (arg2)));
9387
9388 if (type1->code () != TYPE_CODE_INT
9389 || type2->code () != TYPE_CODE_INT)
9390 return value_binop (arg1, arg2, op);
9391
9392 switch (op)
9393 {
9394 case BINOP_MOD:
9395 case BINOP_DIV:
9396 case BINOP_REM:
9397 break;
9398 default:
9399 return value_binop (arg1, arg2, op);
9400 }
9401
9402 v2 = value_as_long (arg2);
9403 if (v2 == 0)
9404 error (_("second operand of %s must not be zero."), op_string (op));
9405
9406 if (type1->is_unsigned () || op == BINOP_MOD)
9407 return value_binop (arg1, arg2, op);
9408
9409 v1 = value_as_long (arg1);
9410 switch (op)
9411 {
9412 case BINOP_DIV:
9413 v = v1 / v2;
9414 if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0)
9415 v += v > 0 ? -1 : 1;
9416 break;
9417 case BINOP_REM:
9418 v = v1 % v2;
9419 if (v * v1 < 0)
9420 v -= v2;
9421 break;
9422 default:
9423 /* Should not reach this point. */
9424 v = 0;
9425 }
9426
9427 val = allocate_value (type1);
9428 store_unsigned_integer (value_contents_raw (val),
9429 TYPE_LENGTH (value_type (val)),
9430 type_byte_order (type1), v);
9431 return val;
9432 }
9433
9434 static int
9435 ada_value_equal (struct value *arg1, struct value *arg2)
9436 {
9437 if (ada_is_direct_array_type (value_type (arg1))
9438 || ada_is_direct_array_type (value_type (arg2)))
9439 {
9440 struct type *arg1_type, *arg2_type;
9441
9442 /* Automatically dereference any array reference before
9443 we attempt to perform the comparison. */
9444 arg1 = ada_coerce_ref (arg1);
9445 arg2 = ada_coerce_ref (arg2);
9446
9447 arg1 = ada_coerce_to_simple_array (arg1);
9448 arg2 = ada_coerce_to_simple_array (arg2);
9449
9450 arg1_type = ada_check_typedef (value_type (arg1));
9451 arg2_type = ada_check_typedef (value_type (arg2));
9452
9453 if (arg1_type->code () != TYPE_CODE_ARRAY
9454 || arg2_type->code () != TYPE_CODE_ARRAY)
9455 error (_("Attempt to compare array with non-array"));
9456 /* FIXME: The following works only for types whose
9457 representations use all bits (no padding or undefined bits)
9458 and do not have user-defined equality. */
9459 return (TYPE_LENGTH (arg1_type) == TYPE_LENGTH (arg2_type)
9460 && memcmp (value_contents (arg1), value_contents (arg2),
9461 TYPE_LENGTH (arg1_type)) == 0);
9462 }
9463 return value_equal (arg1, arg2);
9464 }
9465
9466 /* Assign the result of evaluating EXP starting at *POS to the INDEXth
9467 component of LHS (a simple array or a record), updating *POS past
9468 the expression, assuming that LHS is contained in CONTAINER. Does
9469 not modify the inferior's memory, nor does it modify LHS (unless
9470 LHS == CONTAINER). */
9471
9472 static void
9473 assign_component (struct value *container, struct value *lhs, LONGEST index,
9474 struct expression *exp, int *pos)
9475 {
9476 struct value *mark = value_mark ();
9477 struct value *elt;
9478 struct type *lhs_type = check_typedef (value_type (lhs));
9479
9480 if (lhs_type->code () == TYPE_CODE_ARRAY)
9481 {
9482 struct type *index_type = builtin_type (exp->gdbarch)->builtin_int;
9483 struct value *index_val = value_from_longest (index_type, index);
9484
9485 elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val));
9486 }
9487 else
9488 {
9489 elt = ada_index_struct_field (index, lhs, 0, value_type (lhs));
9490 elt = ada_to_fixed_value (elt);
9491 }
9492
9493 if (exp->elts[*pos].opcode == OP_AGGREGATE)
9494 assign_aggregate (container, elt, exp, pos, EVAL_NORMAL);
9495 else
9496 value_assign_to_component (container, elt,
9497 ada_evaluate_subexp (NULL, exp, pos,
9498 EVAL_NORMAL));
9499
9500 value_free_to_mark (mark);
9501 }
9502
9503 /* Assuming that LHS represents an lvalue having a record or array
9504 type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment
9505 of that aggregate's value to LHS, advancing *POS past the
9506 aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an
9507 lvalue containing LHS (possibly LHS itself). Does not modify
9508 the inferior's memory, nor does it modify the contents of
9509 LHS (unless == CONTAINER). Returns the modified CONTAINER. */
9510
9511 static struct value *
9512 assign_aggregate (struct value *container,
9513 struct value *lhs, struct expression *exp,
9514 int *pos, enum noside noside)
9515 {
9516 struct type *lhs_type;
9517 int n = exp->elts[*pos+1].longconst;
9518 LONGEST low_index, high_index;
9519 int i;
9520
9521 *pos += 3;
9522 if (noside != EVAL_NORMAL)
9523 {
9524 for (i = 0; i < n; i += 1)
9525 ada_evaluate_subexp (NULL, exp, pos, noside);
9526 return container;
9527 }
9528
9529 container = ada_coerce_ref (container);
9530 if (ada_is_direct_array_type (value_type (container)))
9531 container = ada_coerce_to_simple_array (container);
9532 lhs = ada_coerce_ref (lhs);
9533 if (!deprecated_value_modifiable (lhs))
9534 error (_("Left operand of assignment is not a modifiable lvalue."));
9535
9536 lhs_type = check_typedef (value_type (lhs));
9537 if (ada_is_direct_array_type (lhs_type))
9538 {
9539 lhs = ada_coerce_to_simple_array (lhs);
9540 lhs_type = check_typedef (value_type (lhs));
9541 low_index = lhs_type->bounds ()->low.const_val ();
9542 high_index = lhs_type->bounds ()->high.const_val ();
9543 }
9544 else if (lhs_type->code () == TYPE_CODE_STRUCT)
9545 {
9546 low_index = 0;
9547 high_index = num_visible_fields (lhs_type) - 1;
9548 }
9549 else
9550 error (_("Left-hand side must be array or record."));
9551
9552 std::vector<LONGEST> indices (4);
9553 indices[0] = indices[1] = low_index - 1;
9554 indices[2] = indices[3] = high_index + 1;
9555
9556 for (i = 0; i < n; i += 1)
9557 {
9558 switch (exp->elts[*pos].opcode)
9559 {
9560 case OP_CHOICES:
9561 aggregate_assign_from_choices (container, lhs, exp, pos, indices,
9562 low_index, high_index);
9563 break;
9564 case OP_POSITIONAL:
9565 aggregate_assign_positional (container, lhs, exp, pos, indices,
9566 low_index, high_index);
9567 break;
9568 case OP_OTHERS:
9569 if (i != n-1)
9570 error (_("Misplaced 'others' clause"));
9571 aggregate_assign_others (container, lhs, exp, pos, indices,
9572 low_index, high_index);
9573 break;
9574 default:
9575 error (_("Internal error: bad aggregate clause"));
9576 }
9577 }
9578
9579 return container;
9580 }
9581
9582 /* Assign into the component of LHS indexed by the OP_POSITIONAL
9583 construct at *POS, updating *POS past the construct, given that
9584 the positions are relative to lower bound LOW, where HIGH is the
9585 upper bound. Record the position in INDICES. CONTAINER is as for
9586 assign_aggregate. */
9587 static void
9588 aggregate_assign_positional (struct value *container,
9589 struct value *lhs, struct expression *exp,
9590 int *pos, std::vector<LONGEST> &indices,
9591 LONGEST low, LONGEST high)
9592 {
9593 LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low;
9594
9595 if (ind - 1 == high)
9596 warning (_("Extra components in aggregate ignored."));
9597 if (ind <= high)
9598 {
9599 add_component_interval (ind, ind, indices);
9600 *pos += 3;
9601 assign_component (container, lhs, ind, exp, pos);
9602 }
9603 else
9604 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9605 }
9606
9607 /* Assign into the components of LHS indexed by the OP_CHOICES
9608 construct at *POS, updating *POS past the construct, given that
9609 the allowable indices are LOW..HIGH. Record the indices assigned
9610 to in INDICES. CONTAINER is as for assign_aggregate. */
9611 static void
9612 aggregate_assign_from_choices (struct value *container,
9613 struct value *lhs, struct expression *exp,
9614 int *pos, std::vector<LONGEST> &indices,
9615 LONGEST low, LONGEST high)
9616 {
9617 int j;
9618 int n_choices = longest_to_int (exp->elts[*pos+1].longconst);
9619 int choice_pos, expr_pc;
9620 int is_array = ada_is_direct_array_type (value_type (lhs));
9621
9622 choice_pos = *pos += 3;
9623
9624 for (j = 0; j < n_choices; j += 1)
9625 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9626 expr_pc = *pos;
9627 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9628
9629 for (j = 0; j < n_choices; j += 1)
9630 {
9631 LONGEST lower, upper;
9632 enum exp_opcode op = exp->elts[choice_pos].opcode;
9633
9634 if (op == OP_DISCRETE_RANGE)
9635 {
9636 choice_pos += 1;
9637 lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
9638 EVAL_NORMAL));
9639 upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
9640 EVAL_NORMAL));
9641 }
9642 else if (is_array)
9643 {
9644 lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos,
9645 EVAL_NORMAL));
9646 upper = lower;
9647 }
9648 else
9649 {
9650 int ind;
9651 const char *name;
9652
9653 switch (op)
9654 {
9655 case OP_NAME:
9656 name = &exp->elts[choice_pos + 2].string;
9657 break;
9658 case OP_VAR_VALUE:
9659 name = exp->elts[choice_pos + 2].symbol->natural_name ();
9660 break;
9661 default:
9662 error (_("Invalid record component association."));
9663 }
9664 ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP);
9665 ind = 0;
9666 if (! find_struct_field (name, value_type (lhs), 0,
9667 NULL, NULL, NULL, NULL, &ind))
9668 error (_("Unknown component name: %s."), name);
9669 lower = upper = ind;
9670 }
9671
9672 if (lower <= upper && (lower < low || upper > high))
9673 error (_("Index in component association out of bounds."));
9674
9675 add_component_interval (lower, upper, indices);
9676 while (lower <= upper)
9677 {
9678 int pos1;
9679
9680 pos1 = expr_pc;
9681 assign_component (container, lhs, lower, exp, &pos1);
9682 lower += 1;
9683 }
9684 }
9685 }
9686
9687 /* Assign the value of the expression in the OP_OTHERS construct in
9688 EXP at *POS into the components of LHS indexed from LOW .. HIGH that
9689 have not been previously assigned. The index intervals already assigned
9690 are in INDICES. Updates *POS to after the OP_OTHERS clause.
9691 CONTAINER is as for assign_aggregate. */
9692 static void
9693 aggregate_assign_others (struct value *container,
9694 struct value *lhs, struct expression *exp,
9695 int *pos, std::vector<LONGEST> &indices,
9696 LONGEST low, LONGEST high)
9697 {
9698 int i;
9699 int expr_pc = *pos + 1;
9700
9701 int num_indices = indices.size ();
9702 for (i = 0; i < num_indices - 2; i += 2)
9703 {
9704 LONGEST ind;
9705
9706 for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1)
9707 {
9708 int localpos;
9709
9710 localpos = expr_pc;
9711 assign_component (container, lhs, ind, exp, &localpos);
9712 }
9713 }
9714 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9715 }
9716
9717 /* Add the interval [LOW .. HIGH] to the sorted set of intervals
9718 [ INDICES[0] .. INDICES[1] ],... The resulting intervals do not
9719 overlap. */
9720 static void
9721 add_component_interval (LONGEST low, LONGEST high,
9722 std::vector<LONGEST> &indices)
9723 {
9724 int i, j;
9725
9726 int size = indices.size ();
9727 for (i = 0; i < size; i += 2) {
9728 if (high >= indices[i] && low <= indices[i + 1])
9729 {
9730 int kh;
9731
9732 for (kh = i + 2; kh < size; kh += 2)
9733 if (high < indices[kh])
9734 break;
9735 if (low < indices[i])
9736 indices[i] = low;
9737 indices[i + 1] = indices[kh - 1];
9738 if (high > indices[i + 1])
9739 indices[i + 1] = high;
9740 memcpy (indices.data () + i + 2, indices.data () + kh, size - kh);
9741 indices.resize (kh - i - 2);
9742 return;
9743 }
9744 else if (high < indices[i])
9745 break;
9746 }
9747
9748 indices.resize (indices.size () + 2);
9749 for (j = indices.size () - 1; j >= i + 2; j -= 1)
9750 indices[j] = indices[j - 2];
9751 indices[i] = low;
9752 indices[i + 1] = high;
9753 }
9754
9755 /* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2
9756 is different. */
9757
9758 static struct value *
9759 ada_value_cast (struct type *type, struct value *arg2)
9760 {
9761 if (type == ada_check_typedef (value_type (arg2)))
9762 return arg2;
9763
9764 if (ada_is_gnat_encoded_fixed_point_type (type))
9765 return cast_to_gnat_encoded_fixed_point_type (type, arg2);
9766
9767 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
9768 return cast_from_gnat_encoded_fixed_point_type (type, arg2);
9769
9770 return value_cast (type, arg2);
9771 }
9772
9773 /* Evaluating Ada expressions, and printing their result.
9774 ------------------------------------------------------
9775
9776 1. Introduction:
9777 ----------------
9778
9779 We usually evaluate an Ada expression in order to print its value.
9780 We also evaluate an expression in order to print its type, which
9781 happens during the EVAL_AVOID_SIDE_EFFECTS phase of the evaluation,
9782 but we'll focus mostly on the EVAL_NORMAL phase. In practice, the
9783 EVAL_AVOID_SIDE_EFFECTS phase allows us to simplify certain aspects of
9784 the evaluation compared to the EVAL_NORMAL, but is otherwise very
9785 similar.
9786
9787 Evaluating expressions is a little more complicated for Ada entities
9788 than it is for entities in languages such as C. The main reason for
9789 this is that Ada provides types whose definition might be dynamic.
9790 One example of such types is variant records. Or another example
9791 would be an array whose bounds can only be known at run time.
9792
9793 The following description is a general guide as to what should be
9794 done (and what should NOT be done) in order to evaluate an expression
9795 involving such types, and when. This does not cover how the semantic
9796 information is encoded by GNAT as this is covered separatly. For the
9797 document used as the reference for the GNAT encoding, see exp_dbug.ads
9798 in the GNAT sources.
9799
9800 Ideally, we should embed each part of this description next to its
9801 associated code. Unfortunately, the amount of code is so vast right
9802 now that it's hard to see whether the code handling a particular
9803 situation might be duplicated or not. One day, when the code is
9804 cleaned up, this guide might become redundant with the comments
9805 inserted in the code, and we might want to remove it.
9806
9807 2. ``Fixing'' an Entity, the Simple Case:
9808 -----------------------------------------
9809
9810 When evaluating Ada expressions, the tricky issue is that they may
9811 reference entities whose type contents and size are not statically
9812 known. Consider for instance a variant record:
9813
9814 type Rec (Empty : Boolean := True) is record
9815 case Empty is
9816 when True => null;
9817 when False => Value : Integer;
9818 end case;
9819 end record;
9820 Yes : Rec := (Empty => False, Value => 1);
9821 No : Rec := (empty => True);
9822
9823 The size and contents of that record depends on the value of the
9824 descriminant (Rec.Empty). At this point, neither the debugging
9825 information nor the associated type structure in GDB are able to
9826 express such dynamic types. So what the debugger does is to create
9827 "fixed" versions of the type that applies to the specific object.
9828 We also informally refer to this operation as "fixing" an object,
9829 which means creating its associated fixed type.
9830
9831 Example: when printing the value of variable "Yes" above, its fixed
9832 type would look like this:
9833
9834 type Rec is record
9835 Empty : Boolean;
9836 Value : Integer;
9837 end record;
9838
9839 On the other hand, if we printed the value of "No", its fixed type
9840 would become:
9841
9842 type Rec is record
9843 Empty : Boolean;
9844 end record;
9845
9846 Things become a little more complicated when trying to fix an entity
9847 with a dynamic type that directly contains another dynamic type,
9848 such as an array of variant records, for instance. There are
9849 two possible cases: Arrays, and records.
9850
9851 3. ``Fixing'' Arrays:
9852 ---------------------
9853
9854 The type structure in GDB describes an array in terms of its bounds,
9855 and the type of its elements. By design, all elements in the array
9856 have the same type and we cannot represent an array of variant elements
9857 using the current type structure in GDB. When fixing an array,
9858 we cannot fix the array element, as we would potentially need one
9859 fixed type per element of the array. As a result, the best we can do
9860 when fixing an array is to produce an array whose bounds and size
9861 are correct (allowing us to read it from memory), but without having
9862 touched its element type. Fixing each element will be done later,
9863 when (if) necessary.
9864
9865 Arrays are a little simpler to handle than records, because the same
9866 amount of memory is allocated for each element of the array, even if
9867 the amount of space actually used by each element differs from element
9868 to element. Consider for instance the following array of type Rec:
9869
9870 type Rec_Array is array (1 .. 2) of Rec;
9871
9872 The actual amount of memory occupied by each element might be different
9873 from element to element, depending on the value of their discriminant.
9874 But the amount of space reserved for each element in the array remains
9875 fixed regardless. So we simply need to compute that size using
9876 the debugging information available, from which we can then determine
9877 the array size (we multiply the number of elements of the array by
9878 the size of each element).
9879
9880 The simplest case is when we have an array of a constrained element
9881 type. For instance, consider the following type declarations:
9882
9883 type Bounded_String (Max_Size : Integer) is
9884 Length : Integer;
9885 Buffer : String (1 .. Max_Size);
9886 end record;
9887 type Bounded_String_Array is array (1 ..2) of Bounded_String (80);
9888
9889 In this case, the compiler describes the array as an array of
9890 variable-size elements (identified by its XVS suffix) for which
9891 the size can be read in the parallel XVZ variable.
9892
9893 In the case of an array of an unconstrained element type, the compiler
9894 wraps the array element inside a private PAD type. This type should not
9895 be shown to the user, and must be "unwrap"'ed before printing. Note
9896 that we also use the adjective "aligner" in our code to designate
9897 these wrapper types.
9898
9899 In some cases, the size allocated for each element is statically
9900 known. In that case, the PAD type already has the correct size,
9901 and the array element should remain unfixed.
9902
9903 But there are cases when this size is not statically known.
9904 For instance, assuming that "Five" is an integer variable:
9905
9906 type Dynamic is array (1 .. Five) of Integer;
9907 type Wrapper (Has_Length : Boolean := False) is record
9908 Data : Dynamic;
9909 case Has_Length is
9910 when True => Length : Integer;
9911 when False => null;
9912 end case;
9913 end record;
9914 type Wrapper_Array is array (1 .. 2) of Wrapper;
9915
9916 Hello : Wrapper_Array := (others => (Has_Length => True,
9917 Data => (others => 17),
9918 Length => 1));
9919
9920
9921 The debugging info would describe variable Hello as being an
9922 array of a PAD type. The size of that PAD type is not statically
9923 known, but can be determined using a parallel XVZ variable.
9924 In that case, a copy of the PAD type with the correct size should
9925 be used for the fixed array.
9926
9927 3. ``Fixing'' record type objects:
9928 ----------------------------------
9929
9930 Things are slightly different from arrays in the case of dynamic
9931 record types. In this case, in order to compute the associated
9932 fixed type, we need to determine the size and offset of each of
9933 its components. This, in turn, requires us to compute the fixed
9934 type of each of these components.
9935
9936 Consider for instance the example:
9937
9938 type Bounded_String (Max_Size : Natural) is record
9939 Str : String (1 .. Max_Size);
9940 Length : Natural;
9941 end record;
9942 My_String : Bounded_String (Max_Size => 10);
9943
9944 In that case, the position of field "Length" depends on the size
9945 of field Str, which itself depends on the value of the Max_Size
9946 discriminant. In order to fix the type of variable My_String,
9947 we need to fix the type of field Str. Therefore, fixing a variant
9948 record requires us to fix each of its components.
9949
9950 However, if a component does not have a dynamic size, the component
9951 should not be fixed. In particular, fields that use a PAD type
9952 should not fixed. Here is an example where this might happen
9953 (assuming type Rec above):
9954
9955 type Container (Big : Boolean) is record
9956 First : Rec;
9957 After : Integer;
9958 case Big is
9959 when True => Another : Integer;
9960 when False => null;
9961 end case;
9962 end record;
9963 My_Container : Container := (Big => False,
9964 First => (Empty => True),
9965 After => 42);
9966
9967 In that example, the compiler creates a PAD type for component First,
9968 whose size is constant, and then positions the component After just
9969 right after it. The offset of component After is therefore constant
9970 in this case.
9971
9972 The debugger computes the position of each field based on an algorithm
9973 that uses, among other things, the actual position and size of the field
9974 preceding it. Let's now imagine that the user is trying to print
9975 the value of My_Container. If the type fixing was recursive, we would
9976 end up computing the offset of field After based on the size of the
9977 fixed version of field First. And since in our example First has
9978 only one actual field, the size of the fixed type is actually smaller
9979 than the amount of space allocated to that field, and thus we would
9980 compute the wrong offset of field After.
9981
9982 To make things more complicated, we need to watch out for dynamic
9983 components of variant records (identified by the ___XVL suffix in
9984 the component name). Even if the target type is a PAD type, the size
9985 of that type might not be statically known. So the PAD type needs
9986 to be unwrapped and the resulting type needs to be fixed. Otherwise,
9987 we might end up with the wrong size for our component. This can be
9988 observed with the following type declarations:
9989
9990 type Octal is new Integer range 0 .. 7;
9991 type Octal_Array is array (Positive range <>) of Octal;
9992 pragma Pack (Octal_Array);
9993
9994 type Octal_Buffer (Size : Positive) is record
9995 Buffer : Octal_Array (1 .. Size);
9996 Length : Integer;
9997 end record;
9998
9999 In that case, Buffer is a PAD type whose size is unset and needs
10000 to be computed by fixing the unwrapped type.
10001
10002 4. When to ``Fix'' un-``Fixed'' sub-elements of an entity:
10003 ----------------------------------------------------------
10004
10005 Lastly, when should the sub-elements of an entity that remained unfixed
10006 thus far, be actually fixed?
10007
10008 The answer is: Only when referencing that element. For instance
10009 when selecting one component of a record, this specific component
10010 should be fixed at that point in time. Or when printing the value
10011 of a record, each component should be fixed before its value gets
10012 printed. Similarly for arrays, the element of the array should be
10013 fixed when printing each element of the array, or when extracting
10014 one element out of that array. On the other hand, fixing should
10015 not be performed on the elements when taking a slice of an array!
10016
10017 Note that one of the side effects of miscomputing the offset and
10018 size of each field is that we end up also miscomputing the size
10019 of the containing type. This can have adverse results when computing
10020 the value of an entity. GDB fetches the value of an entity based
10021 on the size of its type, and thus a wrong size causes GDB to fetch
10022 the wrong amount of memory. In the case where the computed size is
10023 too small, GDB fetches too little data to print the value of our
10024 entity. Results in this case are unpredictable, as we usually read
10025 past the buffer containing the data =:-o. */
10026
10027 /* Evaluate a subexpression of EXP, at index *POS, and return a value
10028 for that subexpression cast to TO_TYPE. Advance *POS over the
10029 subexpression. */
10030
10031 static value *
10032 ada_evaluate_subexp_for_cast (expression *exp, int *pos,
10033 enum noside noside, struct type *to_type)
10034 {
10035 int pc = *pos;
10036
10037 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE
10038 || exp->elts[pc].opcode == OP_VAR_VALUE)
10039 {
10040 (*pos) += 4;
10041
10042 value *val;
10043 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
10044 {
10045 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10046 return value_zero (to_type, not_lval);
10047
10048 val = evaluate_var_msym_value (noside,
10049 exp->elts[pc + 1].objfile,
10050 exp->elts[pc + 2].msymbol);
10051 }
10052 else
10053 val = evaluate_var_value (noside,
10054 exp->elts[pc + 1].block,
10055 exp->elts[pc + 2].symbol);
10056
10057 if (noside == EVAL_SKIP)
10058 return eval_skip_value (exp);
10059
10060 val = ada_value_cast (to_type, val);
10061
10062 /* Follow the Ada language semantics that do not allow taking
10063 an address of the result of a cast (view conversion in Ada). */
10064 if (VALUE_LVAL (val) == lval_memory)
10065 {
10066 if (value_lazy (val))
10067 value_fetch_lazy (val);
10068 VALUE_LVAL (val) = not_lval;
10069 }
10070 return val;
10071 }
10072
10073 value *val = evaluate_subexp (to_type, exp, pos, noside);
10074 if (noside == EVAL_SKIP)
10075 return eval_skip_value (exp);
10076 return ada_value_cast (to_type, val);
10077 }
10078
10079 /* Implement the evaluate_exp routine in the exp_descriptor structure
10080 for the Ada language. */
10081
10082 static struct value *
10083 ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
10084 int *pos, enum noside noside)
10085 {
10086 enum exp_opcode op;
10087 int tem;
10088 int pc;
10089 int preeval_pos;
10090 struct value *arg1 = NULL, *arg2 = NULL, *arg3;
10091 struct type *type;
10092 int nargs, oplen;
10093 struct value **argvec;
10094
10095 pc = *pos;
10096 *pos += 1;
10097 op = exp->elts[pc].opcode;
10098
10099 switch (op)
10100 {
10101 default:
10102 *pos -= 1;
10103 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10104
10105 if (noside == EVAL_NORMAL)
10106 arg1 = unwrap_value (arg1);
10107
10108 /* If evaluating an OP_FLOAT and an EXPECT_TYPE was provided,
10109 then we need to perform the conversion manually, because
10110 evaluate_subexp_standard doesn't do it. This conversion is
10111 necessary in Ada because the different kinds of float/fixed
10112 types in Ada have different representations.
10113
10114 Similarly, we need to perform the conversion from OP_LONG
10115 ourselves. */
10116 if ((op == OP_FLOAT || op == OP_LONG) && expect_type != NULL)
10117 arg1 = ada_value_cast (expect_type, arg1);
10118
10119 return arg1;
10120
10121 case OP_STRING:
10122 {
10123 struct value *result;
10124
10125 *pos -= 1;
10126 result = evaluate_subexp_standard (expect_type, exp, pos, noside);
10127 /* The result type will have code OP_STRING, bashed there from
10128 OP_ARRAY. Bash it back. */
10129 if (value_type (result)->code () == TYPE_CODE_STRING)
10130 value_type (result)->set_code (TYPE_CODE_ARRAY);
10131 return result;
10132 }
10133
10134 case UNOP_CAST:
10135 (*pos) += 2;
10136 type = exp->elts[pc + 1].type;
10137 return ada_evaluate_subexp_for_cast (exp, pos, noside, type);
10138
10139 case UNOP_QUAL:
10140 (*pos) += 2;
10141 type = exp->elts[pc + 1].type;
10142 return ada_evaluate_subexp (type, exp, pos, noside);
10143
10144 case BINOP_ASSIGN:
10145 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10146 if (exp->elts[*pos].opcode == OP_AGGREGATE)
10147 {
10148 arg1 = assign_aggregate (arg1, arg1, exp, pos, noside);
10149 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10150 return arg1;
10151 return ada_value_assign (arg1, arg1);
10152 }
10153 /* Force the evaluation of the rhs ARG2 to the type of the lhs ARG1,
10154 except if the lhs of our assignment is a convenience variable.
10155 In the case of assigning to a convenience variable, the lhs
10156 should be exactly the result of the evaluation of the rhs. */
10157 type = value_type (arg1);
10158 if (VALUE_LVAL (arg1) == lval_internalvar)
10159 type = NULL;
10160 arg2 = evaluate_subexp (type, exp, pos, noside);
10161 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10162 return arg1;
10163 if (VALUE_LVAL (arg1) == lval_internalvar)
10164 {
10165 /* Nothing. */
10166 }
10167 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
10168 arg2 = cast_to_gnat_encoded_fixed_point_type (value_type (arg1), arg2);
10169 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
10170 error
10171 (_("Fixed-point values must be assigned to fixed-point variables"));
10172 else
10173 arg2 = coerce_for_assign (value_type (arg1), arg2);
10174 return ada_value_assign (arg1, arg2);
10175
10176 case BINOP_ADD:
10177 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10178 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10179 if (noside == EVAL_SKIP)
10180 goto nosideret;
10181 if (value_type (arg1)->code () == TYPE_CODE_PTR)
10182 return (value_from_longest
10183 (value_type (arg1),
10184 value_as_long (arg1) + value_as_long (arg2)));
10185 if (value_type (arg2)->code () == TYPE_CODE_PTR)
10186 return (value_from_longest
10187 (value_type (arg2),
10188 value_as_long (arg1) + value_as_long (arg2)));
10189 /* Preserve the original type for use by the range case below.
10190 We cannot cast the result to a reference type, so if ARG1 is
10191 a reference type, find its underlying type. */
10192 type = value_type (arg1);
10193 while (type->code () == TYPE_CODE_REF)
10194 type = TYPE_TARGET_TYPE (type);
10195 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1))
10196 || ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
10197 {
10198 if (value_type (arg1) != value_type (arg2))
10199 error (_("Operands of fixed-point addition must have the same type"));
10200 }
10201 else
10202 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10203 arg1 = value_binop (arg1, arg2, BINOP_ADD);
10204 /* We need to special-case the result of adding to a range.
10205 This is done for the benefit of "ptype". gdb's Ada support
10206 historically used the LHS to set the result type here, so
10207 preserve this behavior. */
10208 if (type->code () == TYPE_CODE_RANGE)
10209 arg1 = value_cast (type, arg1);
10210 return arg1;
10211
10212 case BINOP_SUB:
10213 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10214 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10215 if (noside == EVAL_SKIP)
10216 goto nosideret;
10217 if (value_type (arg1)->code () == TYPE_CODE_PTR)
10218 return (value_from_longest
10219 (value_type (arg1),
10220 value_as_long (arg1) - value_as_long (arg2)));
10221 if (value_type (arg2)->code () == TYPE_CODE_PTR)
10222 return (value_from_longest
10223 (value_type (arg2),
10224 value_as_long (arg1) - value_as_long (arg2)));
10225 /* Preserve the original type for use by the range case below.
10226 We cannot cast the result to a reference type, so if ARG1 is
10227 a reference type, find its underlying type. */
10228 type = value_type (arg1);
10229 while (type->code () == TYPE_CODE_REF)
10230 type = TYPE_TARGET_TYPE (type);
10231 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1))
10232 || ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
10233 {
10234 if (value_type (arg1) != value_type (arg2))
10235 error (_("Operands of fixed-point subtraction "
10236 "must have the same type"));
10237 }
10238 else
10239 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10240 arg1 = value_binop (arg1, arg2, BINOP_SUB);
10241 /* We need to special-case the result of adding to a range.
10242 This is done for the benefit of "ptype". gdb's Ada support
10243 historically used the LHS to set the result type here, so
10244 preserve this behavior. */
10245 if (type->code () == TYPE_CODE_RANGE)
10246 arg1 = value_cast (type, arg1);
10247 return arg1;
10248
10249 case BINOP_MUL:
10250 case BINOP_DIV:
10251 case BINOP_REM:
10252 case BINOP_MOD:
10253 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10254 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10255 if (noside == EVAL_SKIP)
10256 goto nosideret;
10257 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10258 {
10259 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10260 return value_zero (value_type (arg1), not_lval);
10261 }
10262 else
10263 {
10264 type = builtin_type (exp->gdbarch)->builtin_double;
10265 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
10266 arg1 = cast_from_gnat_encoded_fixed_point_type (type, arg1);
10267 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
10268 arg2 = cast_from_gnat_encoded_fixed_point_type (type, arg2);
10269 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10270 return ada_value_binop (arg1, arg2, op);
10271 }
10272
10273 case BINOP_EQUAL:
10274 case BINOP_NOTEQUAL:
10275 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10276 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
10277 if (noside == EVAL_SKIP)
10278 goto nosideret;
10279 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10280 tem = 0;
10281 else
10282 {
10283 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10284 tem = ada_value_equal (arg1, arg2);
10285 }
10286 if (op == BINOP_NOTEQUAL)
10287 tem = !tem;
10288 type = language_bool_type (exp->language_defn, exp->gdbarch);
10289 return value_from_longest (type, (LONGEST) tem);
10290
10291 case UNOP_NEG:
10292 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10293 if (noside == EVAL_SKIP)
10294 goto nosideret;
10295 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
10296 return value_cast (value_type (arg1), value_neg (arg1));
10297 else
10298 {
10299 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10300 return value_neg (arg1);
10301 }
10302
10303 case BINOP_LOGICAL_AND:
10304 case BINOP_LOGICAL_OR:
10305 case UNOP_LOGICAL_NOT:
10306 {
10307 struct value *val;
10308
10309 *pos -= 1;
10310 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10311 type = language_bool_type (exp->language_defn, exp->gdbarch);
10312 return value_cast (type, val);
10313 }
10314
10315 case BINOP_BITWISE_AND:
10316 case BINOP_BITWISE_IOR:
10317 case BINOP_BITWISE_XOR:
10318 {
10319 struct value *val;
10320
10321 arg1 = evaluate_subexp (nullptr, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
10322 *pos = pc;
10323 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10324
10325 return value_cast (value_type (arg1), val);
10326 }
10327
10328 case OP_VAR_VALUE:
10329 *pos -= 1;
10330
10331 if (noside == EVAL_SKIP)
10332 {
10333 *pos += 4;
10334 goto nosideret;
10335 }
10336
10337 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
10338 /* Only encountered when an unresolved symbol occurs in a
10339 context other than a function call, in which case, it is
10340 invalid. */
10341 error (_("Unexpected unresolved symbol, %s, during evaluation"),
10342 exp->elts[pc + 2].symbol->print_name ());
10343
10344 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10345 {
10346 type = static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
10347 /* Check to see if this is a tagged type. We also need to handle
10348 the case where the type is a reference to a tagged type, but
10349 we have to be careful to exclude pointers to tagged types.
10350 The latter should be shown as usual (as a pointer), whereas
10351 a reference should mostly be transparent to the user. */
10352 if (ada_is_tagged_type (type, 0)
10353 || (type->code () == TYPE_CODE_REF
10354 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0)))
10355 {
10356 /* Tagged types are a little special in the fact that the real
10357 type is dynamic and can only be determined by inspecting the
10358 object's tag. This means that we need to get the object's
10359 value first (EVAL_NORMAL) and then extract the actual object
10360 type from its tag.
10361
10362 Note that we cannot skip the final step where we extract
10363 the object type from its tag, because the EVAL_NORMAL phase
10364 results in dynamic components being resolved into fixed ones.
10365 This can cause problems when trying to print the type
10366 description of tagged types whose parent has a dynamic size:
10367 We use the type name of the "_parent" component in order
10368 to print the name of the ancestor type in the type description.
10369 If that component had a dynamic size, the resolution into
10370 a fixed type would result in the loss of that type name,
10371 thus preventing us from printing the name of the ancestor
10372 type in the type description. */
10373 arg1 = evaluate_subexp (nullptr, exp, pos, EVAL_NORMAL);
10374
10375 if (type->code () != TYPE_CODE_REF)
10376 {
10377 struct type *actual_type;
10378
10379 actual_type = type_from_tag (ada_value_tag (arg1));
10380 if (actual_type == NULL)
10381 /* If, for some reason, we were unable to determine
10382 the actual type from the tag, then use the static
10383 approximation that we just computed as a fallback.
10384 This can happen if the debugging information is
10385 incomplete, for instance. */
10386 actual_type = type;
10387 return value_zero (actual_type, not_lval);
10388 }
10389 else
10390 {
10391 /* In the case of a ref, ada_coerce_ref takes care
10392 of determining the actual type. But the evaluation
10393 should return a ref as it should be valid to ask
10394 for its address; so rebuild a ref after coerce. */
10395 arg1 = ada_coerce_ref (arg1);
10396 return value_ref (arg1, TYPE_CODE_REF);
10397 }
10398 }
10399
10400 /* Records and unions for which GNAT encodings have been
10401 generated need to be statically fixed as well.
10402 Otherwise, non-static fixing produces a type where
10403 all dynamic properties are removed, which prevents "ptype"
10404 from being able to completely describe the type.
10405 For instance, a case statement in a variant record would be
10406 replaced by the relevant components based on the actual
10407 value of the discriminants. */
10408 if ((type->code () == TYPE_CODE_STRUCT
10409 && dynamic_template_type (type) != NULL)
10410 || (type->code () == TYPE_CODE_UNION
10411 && ada_find_parallel_type (type, "___XVU") != NULL))
10412 {
10413 *pos += 4;
10414 return value_zero (to_static_fixed_type (type), not_lval);
10415 }
10416 }
10417
10418 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10419 return ada_to_fixed_value (arg1);
10420
10421 case OP_FUNCALL:
10422 (*pos) += 2;
10423
10424 /* Allocate arg vector, including space for the function to be
10425 called in argvec[0] and a terminating NULL. */
10426 nargs = longest_to_int (exp->elts[pc + 1].longconst);
10427 argvec = XALLOCAVEC (struct value *, nargs + 2);
10428
10429 if (exp->elts[*pos].opcode == OP_VAR_VALUE
10430 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
10431 error (_("Unexpected unresolved symbol, %s, during evaluation"),
10432 exp->elts[pc + 5].symbol->print_name ());
10433 else
10434 {
10435 for (tem = 0; tem <= nargs; tem += 1)
10436 argvec[tem] = evaluate_subexp (nullptr, exp, pos, noside);
10437 argvec[tem] = 0;
10438
10439 if (noside == EVAL_SKIP)
10440 goto nosideret;
10441 }
10442
10443 if (ada_is_constrained_packed_array_type
10444 (desc_base_type (value_type (argvec[0]))))
10445 argvec[0] = ada_coerce_to_simple_array (argvec[0]);
10446 else if (value_type (argvec[0])->code () == TYPE_CODE_ARRAY
10447 && TYPE_FIELD_BITSIZE (value_type (argvec[0]), 0) != 0)
10448 /* This is a packed array that has already been fixed, and
10449 therefore already coerced to a simple array. Nothing further
10450 to do. */
10451 ;
10452 else if (value_type (argvec[0])->code () == TYPE_CODE_REF)
10453 {
10454 /* Make sure we dereference references so that all the code below
10455 feels like it's really handling the referenced value. Wrapping
10456 types (for alignment) may be there, so make sure we strip them as
10457 well. */
10458 argvec[0] = ada_to_fixed_value (coerce_ref (argvec[0]));
10459 }
10460 else if (value_type (argvec[0])->code () == TYPE_CODE_ARRAY
10461 && VALUE_LVAL (argvec[0]) == lval_memory)
10462 argvec[0] = value_addr (argvec[0]);
10463
10464 type = ada_check_typedef (value_type (argvec[0]));
10465
10466 /* Ada allows us to implicitly dereference arrays when subscripting
10467 them. So, if this is an array typedef (encoding use for array
10468 access types encoded as fat pointers), strip it now. */
10469 if (type->code () == TYPE_CODE_TYPEDEF)
10470 type = ada_typedef_target_type (type);
10471
10472 if (type->code () == TYPE_CODE_PTR)
10473 {
10474 switch (ada_check_typedef (TYPE_TARGET_TYPE (type))->code ())
10475 {
10476 case TYPE_CODE_FUNC:
10477 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
10478 break;
10479 case TYPE_CODE_ARRAY:
10480 break;
10481 case TYPE_CODE_STRUCT:
10482 if (noside != EVAL_AVOID_SIDE_EFFECTS)
10483 argvec[0] = ada_value_ind (argvec[0]);
10484 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
10485 break;
10486 default:
10487 error (_("cannot subscript or call something of type `%s'"),
10488 ada_type_name (value_type (argvec[0])));
10489 break;
10490 }
10491 }
10492
10493 switch (type->code ())
10494 {
10495 case TYPE_CODE_FUNC:
10496 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10497 {
10498 if (TYPE_TARGET_TYPE (type) == NULL)
10499 error_call_unknown_return_type (NULL);
10500 return allocate_value (TYPE_TARGET_TYPE (type));
10501 }
10502 return call_function_by_hand (argvec[0], NULL,
10503 gdb::make_array_view (argvec + 1,
10504 nargs));
10505 case TYPE_CODE_INTERNAL_FUNCTION:
10506 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10507 /* We don't know anything about what the internal
10508 function might return, but we have to return
10509 something. */
10510 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
10511 not_lval);
10512 else
10513 return call_internal_function (exp->gdbarch, exp->language_defn,
10514 argvec[0], nargs, argvec + 1);
10515
10516 case TYPE_CODE_STRUCT:
10517 {
10518 int arity;
10519
10520 arity = ada_array_arity (type);
10521 type = ada_array_element_type (type, nargs);
10522 if (type == NULL)
10523 error (_("cannot subscript or call a record"));
10524 if (arity != nargs)
10525 error (_("wrong number of subscripts; expecting %d"), arity);
10526 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10527 return value_zero (ada_aligned_type (type), lval_memory);
10528 return
10529 unwrap_value (ada_value_subscript
10530 (argvec[0], nargs, argvec + 1));
10531 }
10532 case TYPE_CODE_ARRAY:
10533 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10534 {
10535 type = ada_array_element_type (type, nargs);
10536 if (type == NULL)
10537 error (_("element type of array unknown"));
10538 else
10539 return value_zero (ada_aligned_type (type), lval_memory);
10540 }
10541 return
10542 unwrap_value (ada_value_subscript
10543 (ada_coerce_to_simple_array (argvec[0]),
10544 nargs, argvec + 1));
10545 case TYPE_CODE_PTR: /* Pointer to array */
10546 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10547 {
10548 type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1);
10549 type = ada_array_element_type (type, nargs);
10550 if (type == NULL)
10551 error (_("element type of array unknown"));
10552 else
10553 return value_zero (ada_aligned_type (type), lval_memory);
10554 }
10555 return
10556 unwrap_value (ada_value_ptr_subscript (argvec[0],
10557 nargs, argvec + 1));
10558
10559 default:
10560 error (_("Attempt to index or call something other than an "
10561 "array or function"));
10562 }
10563
10564 case TERNOP_SLICE:
10565 {
10566 struct value *array = evaluate_subexp (nullptr, exp, pos, noside);
10567 struct value *low_bound_val
10568 = evaluate_subexp (nullptr, exp, pos, noside);
10569 struct value *high_bound_val
10570 = evaluate_subexp (nullptr, exp, pos, noside);
10571 LONGEST low_bound;
10572 LONGEST high_bound;
10573
10574 low_bound_val = coerce_ref (low_bound_val);
10575 high_bound_val = coerce_ref (high_bound_val);
10576 low_bound = value_as_long (low_bound_val);
10577 high_bound = value_as_long (high_bound_val);
10578
10579 if (noside == EVAL_SKIP)
10580 goto nosideret;
10581
10582 /* If this is a reference to an aligner type, then remove all
10583 the aligners. */
10584 if (value_type (array)->code () == TYPE_CODE_REF
10585 && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array))))
10586 TYPE_TARGET_TYPE (value_type (array)) =
10587 ada_aligned_type (TYPE_TARGET_TYPE (value_type (array)));
10588
10589 if (ada_is_any_packed_array_type (value_type (array)))
10590 error (_("cannot slice a packed array"));
10591
10592 /* If this is a reference to an array or an array lvalue,
10593 convert to a pointer. */
10594 if (value_type (array)->code () == TYPE_CODE_REF
10595 || (value_type (array)->code () == TYPE_CODE_ARRAY
10596 && VALUE_LVAL (array) == lval_memory))
10597 array = value_addr (array);
10598
10599 if (noside == EVAL_AVOID_SIDE_EFFECTS
10600 && ada_is_array_descriptor_type (ada_check_typedef
10601 (value_type (array))))
10602 return empty_array (ada_type_of_array (array, 0), low_bound,
10603 high_bound);
10604
10605 array = ada_coerce_to_simple_array_ptr (array);
10606
10607 /* If we have more than one level of pointer indirection,
10608 dereference the value until we get only one level. */
10609 while (value_type (array)->code () == TYPE_CODE_PTR
10610 && (TYPE_TARGET_TYPE (value_type (array))->code ()
10611 == TYPE_CODE_PTR))
10612 array = value_ind (array);
10613
10614 /* Make sure we really do have an array type before going further,
10615 to avoid a SEGV when trying to get the index type or the target
10616 type later down the road if the debug info generated by
10617 the compiler is incorrect or incomplete. */
10618 if (!ada_is_simple_array_type (value_type (array)))
10619 error (_("cannot take slice of non-array"));
10620
10621 if (ada_check_typedef (value_type (array))->code ()
10622 == TYPE_CODE_PTR)
10623 {
10624 struct type *type0 = ada_check_typedef (value_type (array));
10625
10626 if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS)
10627 return empty_array (TYPE_TARGET_TYPE (type0), low_bound, high_bound);
10628 else
10629 {
10630 struct type *arr_type0 =
10631 to_fixed_array_type (TYPE_TARGET_TYPE (type0), NULL, 1);
10632
10633 return ada_value_slice_from_ptr (array, arr_type0,
10634 longest_to_int (low_bound),
10635 longest_to_int (high_bound));
10636 }
10637 }
10638 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10639 return array;
10640 else if (high_bound < low_bound)
10641 return empty_array (value_type (array), low_bound, high_bound);
10642 else
10643 return ada_value_slice (array, longest_to_int (low_bound),
10644 longest_to_int (high_bound));
10645 }
10646
10647 case UNOP_IN_RANGE:
10648 (*pos) += 2;
10649 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10650 type = check_typedef (exp->elts[pc + 1].type);
10651
10652 if (noside == EVAL_SKIP)
10653 goto nosideret;
10654
10655 switch (type->code ())
10656 {
10657 default:
10658 lim_warning (_("Membership test incompletely implemented; "
10659 "always returns true"));
10660 type = language_bool_type (exp->language_defn, exp->gdbarch);
10661 return value_from_longest (type, (LONGEST) 1);
10662
10663 case TYPE_CODE_RANGE:
10664 arg2 = value_from_longest (type,
10665 type->bounds ()->low.const_val ());
10666 arg3 = value_from_longest (type,
10667 type->bounds ()->high.const_val ());
10668 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10669 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10670 type = language_bool_type (exp->language_defn, exp->gdbarch);
10671 return
10672 value_from_longest (type,
10673 (value_less (arg1, arg3)
10674 || value_equal (arg1, arg3))
10675 && (value_less (arg2, arg1)
10676 || value_equal (arg2, arg1)));
10677 }
10678
10679 case BINOP_IN_BOUNDS:
10680 (*pos) += 2;
10681 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10682 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10683
10684 if (noside == EVAL_SKIP)
10685 goto nosideret;
10686
10687 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10688 {
10689 type = language_bool_type (exp->language_defn, exp->gdbarch);
10690 return value_zero (type, not_lval);
10691 }
10692
10693 tem = longest_to_int (exp->elts[pc + 1].longconst);
10694
10695 type = ada_index_type (value_type (arg2), tem, "range");
10696 if (!type)
10697 type = value_type (arg1);
10698
10699 arg3 = value_from_longest (type, ada_array_bound (arg2, tem, 1));
10700 arg2 = value_from_longest (type, ada_array_bound (arg2, tem, 0));
10701
10702 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10703 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10704 type = language_bool_type (exp->language_defn, exp->gdbarch);
10705 return
10706 value_from_longest (type,
10707 (value_less (arg1, arg3)
10708 || value_equal (arg1, arg3))
10709 && (value_less (arg2, arg1)
10710 || value_equal (arg2, arg1)));
10711
10712 case TERNOP_IN_RANGE:
10713 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10714 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10715 arg3 = evaluate_subexp (nullptr, exp, pos, noside);
10716
10717 if (noside == EVAL_SKIP)
10718 goto nosideret;
10719
10720 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10721 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10722 type = language_bool_type (exp->language_defn, exp->gdbarch);
10723 return
10724 value_from_longest (type,
10725 (value_less (arg1, arg3)
10726 || value_equal (arg1, arg3))
10727 && (value_less (arg2, arg1)
10728 || value_equal (arg2, arg1)));
10729
10730 case OP_ATR_FIRST:
10731 case OP_ATR_LAST:
10732 case OP_ATR_LENGTH:
10733 {
10734 struct type *type_arg;
10735
10736 if (exp->elts[*pos].opcode == OP_TYPE)
10737 {
10738 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10739 arg1 = NULL;
10740 type_arg = check_typedef (exp->elts[pc + 2].type);
10741 }
10742 else
10743 {
10744 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10745 type_arg = NULL;
10746 }
10747
10748 if (exp->elts[*pos].opcode != OP_LONG)
10749 error (_("Invalid operand to '%s"), ada_attribute_name (op));
10750 tem = longest_to_int (exp->elts[*pos + 2].longconst);
10751 *pos += 4;
10752
10753 if (noside == EVAL_SKIP)
10754 goto nosideret;
10755 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10756 {
10757 if (type_arg == NULL)
10758 type_arg = value_type (arg1);
10759
10760 if (ada_is_constrained_packed_array_type (type_arg))
10761 type_arg = decode_constrained_packed_array_type (type_arg);
10762
10763 if (!discrete_type_p (type_arg))
10764 {
10765 switch (op)
10766 {
10767 default: /* Should never happen. */
10768 error (_("unexpected attribute encountered"));
10769 case OP_ATR_FIRST:
10770 case OP_ATR_LAST:
10771 type_arg = ada_index_type (type_arg, tem,
10772 ada_attribute_name (op));
10773 break;
10774 case OP_ATR_LENGTH:
10775 type_arg = builtin_type (exp->gdbarch)->builtin_int;
10776 break;
10777 }
10778 }
10779
10780 return value_zero (type_arg, not_lval);
10781 }
10782 else if (type_arg == NULL)
10783 {
10784 arg1 = ada_coerce_ref (arg1);
10785
10786 if (ada_is_constrained_packed_array_type (value_type (arg1)))
10787 arg1 = ada_coerce_to_simple_array (arg1);
10788
10789 if (op == OP_ATR_LENGTH)
10790 type = builtin_type (exp->gdbarch)->builtin_int;
10791 else
10792 {
10793 type = ada_index_type (value_type (arg1), tem,
10794 ada_attribute_name (op));
10795 if (type == NULL)
10796 type = builtin_type (exp->gdbarch)->builtin_int;
10797 }
10798
10799 switch (op)
10800 {
10801 default: /* Should never happen. */
10802 error (_("unexpected attribute encountered"));
10803 case OP_ATR_FIRST:
10804 return value_from_longest
10805 (type, ada_array_bound (arg1, tem, 0));
10806 case OP_ATR_LAST:
10807 return value_from_longest
10808 (type, ada_array_bound (arg1, tem, 1));
10809 case OP_ATR_LENGTH:
10810 return value_from_longest
10811 (type, ada_array_length (arg1, tem));
10812 }
10813 }
10814 else if (discrete_type_p (type_arg))
10815 {
10816 struct type *range_type;
10817 const char *name = ada_type_name (type_arg);
10818
10819 range_type = NULL;
10820 if (name != NULL && type_arg->code () != TYPE_CODE_ENUM)
10821 range_type = to_fixed_range_type (type_arg, NULL);
10822 if (range_type == NULL)
10823 range_type = type_arg;
10824 switch (op)
10825 {
10826 default:
10827 error (_("unexpected attribute encountered"));
10828 case OP_ATR_FIRST:
10829 return value_from_longest
10830 (range_type, ada_discrete_type_low_bound (range_type));
10831 case OP_ATR_LAST:
10832 return value_from_longest
10833 (range_type, ada_discrete_type_high_bound (range_type));
10834 case OP_ATR_LENGTH:
10835 error (_("the 'length attribute applies only to array types"));
10836 }
10837 }
10838 else if (type_arg->code () == TYPE_CODE_FLT)
10839 error (_("unimplemented type attribute"));
10840 else
10841 {
10842 LONGEST low, high;
10843
10844 if (ada_is_constrained_packed_array_type (type_arg))
10845 type_arg = decode_constrained_packed_array_type (type_arg);
10846
10847 if (op == OP_ATR_LENGTH)
10848 type = builtin_type (exp->gdbarch)->builtin_int;
10849 else
10850 {
10851 type = ada_index_type (type_arg, tem, ada_attribute_name (op));
10852 if (type == NULL)
10853 type = builtin_type (exp->gdbarch)->builtin_int;
10854 }
10855
10856 switch (op)
10857 {
10858 default:
10859 error (_("unexpected attribute encountered"));
10860 case OP_ATR_FIRST:
10861 low = ada_array_bound_from_type (type_arg, tem, 0);
10862 return value_from_longest (type, low);
10863 case OP_ATR_LAST:
10864 high = ada_array_bound_from_type (type_arg, tem, 1);
10865 return value_from_longest (type, high);
10866 case OP_ATR_LENGTH:
10867 low = ada_array_bound_from_type (type_arg, tem, 0);
10868 high = ada_array_bound_from_type (type_arg, tem, 1);
10869 return value_from_longest (type, high - low + 1);
10870 }
10871 }
10872 }
10873
10874 case OP_ATR_TAG:
10875 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10876 if (noside == EVAL_SKIP)
10877 goto nosideret;
10878
10879 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10880 return value_zero (ada_tag_type (arg1), not_lval);
10881
10882 return ada_value_tag (arg1);
10883
10884 case OP_ATR_MIN:
10885 case OP_ATR_MAX:
10886 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10887 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10888 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10889 if (noside == EVAL_SKIP)
10890 goto nosideret;
10891 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10892 return value_zero (value_type (arg1), not_lval);
10893 else
10894 {
10895 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10896 return value_binop (arg1, arg2,
10897 op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
10898 }
10899
10900 case OP_ATR_MODULUS:
10901 {
10902 struct type *type_arg = check_typedef (exp->elts[pc + 2].type);
10903
10904 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10905 if (noside == EVAL_SKIP)
10906 goto nosideret;
10907
10908 if (!ada_is_modular_type (type_arg))
10909 error (_("'modulus must be applied to modular type"));
10910
10911 return value_from_longest (TYPE_TARGET_TYPE (type_arg),
10912 ada_modulus (type_arg));
10913 }
10914
10915
10916 case OP_ATR_POS:
10917 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10918 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10919 if (noside == EVAL_SKIP)
10920 goto nosideret;
10921 type = builtin_type (exp->gdbarch)->builtin_int;
10922 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10923 return value_zero (type, not_lval);
10924 else
10925 return value_pos_atr (type, arg1);
10926
10927 case OP_ATR_SIZE:
10928 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10929 type = value_type (arg1);
10930
10931 /* If the argument is a reference, then dereference its type, since
10932 the user is really asking for the size of the actual object,
10933 not the size of the pointer. */
10934 if (type->code () == TYPE_CODE_REF)
10935 type = TYPE_TARGET_TYPE (type);
10936
10937 if (noside == EVAL_SKIP)
10938 goto nosideret;
10939 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10940 return value_zero (builtin_type (exp->gdbarch)->builtin_int, not_lval);
10941 else
10942 return value_from_longest (builtin_type (exp->gdbarch)->builtin_int,
10943 TARGET_CHAR_BIT * TYPE_LENGTH (type));
10944
10945 case OP_ATR_VAL:
10946 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
10947 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10948 type = exp->elts[pc + 2].type;
10949 if (noside == EVAL_SKIP)
10950 goto nosideret;
10951 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10952 return value_zero (type, not_lval);
10953 else
10954 return value_val_atr (type, arg1);
10955
10956 case BINOP_EXP:
10957 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10958 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10959 if (noside == EVAL_SKIP)
10960 goto nosideret;
10961 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10962 return value_zero (value_type (arg1), not_lval);
10963 else
10964 {
10965 /* For integer exponentiation operations,
10966 only promote the first argument. */
10967 if (is_integral_type (value_type (arg2)))
10968 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10969 else
10970 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10971
10972 return value_binop (arg1, arg2, op);
10973 }
10974
10975 case UNOP_PLUS:
10976 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10977 if (noside == EVAL_SKIP)
10978 goto nosideret;
10979 else
10980 return arg1;
10981
10982 case UNOP_ABS:
10983 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10984 if (noside == EVAL_SKIP)
10985 goto nosideret;
10986 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10987 if (value_less (arg1, value_zero (value_type (arg1), not_lval)))
10988 return value_neg (arg1);
10989 else
10990 return arg1;
10991
10992 case UNOP_IND:
10993 preeval_pos = *pos;
10994 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10995 if (noside == EVAL_SKIP)
10996 goto nosideret;
10997 type = ada_check_typedef (value_type (arg1));
10998 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10999 {
11000 if (ada_is_array_descriptor_type (type))
11001 /* GDB allows dereferencing GNAT array descriptors. */
11002 {
11003 struct type *arrType = ada_type_of_array (arg1, 0);
11004
11005 if (arrType == NULL)
11006 error (_("Attempt to dereference null array pointer."));
11007 return value_at_lazy (arrType, 0);
11008 }
11009 else if (type->code () == TYPE_CODE_PTR
11010 || type->code () == TYPE_CODE_REF
11011 /* In C you can dereference an array to get the 1st elt. */
11012 || type->code () == TYPE_CODE_ARRAY)
11013 {
11014 /* As mentioned in the OP_VAR_VALUE case, tagged types can
11015 only be determined by inspecting the object's tag.
11016 This means that we need to evaluate completely the
11017 expression in order to get its type. */
11018
11019 if ((type->code () == TYPE_CODE_REF
11020 || type->code () == TYPE_CODE_PTR)
11021 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0))
11022 {
11023 arg1
11024 = evaluate_subexp (nullptr, exp, &preeval_pos, EVAL_NORMAL);
11025 type = value_type (ada_value_ind (arg1));
11026 }
11027 else
11028 {
11029 type = to_static_fixed_type
11030 (ada_aligned_type
11031 (ada_check_typedef (TYPE_TARGET_TYPE (type))));
11032 }
11033 ada_ensure_varsize_limit (type);
11034 return value_zero (type, lval_memory);
11035 }
11036 else if (type->code () == TYPE_CODE_INT)
11037 {
11038 /* GDB allows dereferencing an int. */
11039 if (expect_type == NULL)
11040 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
11041 lval_memory);
11042 else
11043 {
11044 expect_type =
11045 to_static_fixed_type (ada_aligned_type (expect_type));
11046 return value_zero (expect_type, lval_memory);
11047 }
11048 }
11049 else
11050 error (_("Attempt to take contents of a non-pointer value."));
11051 }
11052 arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */
11053 type = ada_check_typedef (value_type (arg1));
11054
11055 if (type->code () == TYPE_CODE_INT)
11056 /* GDB allows dereferencing an int. If we were given
11057 the expect_type, then use that as the target type.
11058 Otherwise, assume that the target type is an int. */
11059 {
11060 if (expect_type != NULL)
11061 return ada_value_ind (value_cast (lookup_pointer_type (expect_type),
11062 arg1));
11063 else
11064 return value_at_lazy (builtin_type (exp->gdbarch)->builtin_int,
11065 (CORE_ADDR) value_as_address (arg1));
11066 }
11067
11068 if (ada_is_array_descriptor_type (type))
11069 /* GDB allows dereferencing GNAT array descriptors. */
11070 return ada_coerce_to_simple_array (arg1);
11071 else
11072 return ada_value_ind (arg1);
11073
11074 case STRUCTOP_STRUCT:
11075 tem = longest_to_int (exp->elts[pc + 1].longconst);
11076 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
11077 preeval_pos = *pos;
11078 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11079 if (noside == EVAL_SKIP)
11080 goto nosideret;
11081 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11082 {
11083 struct type *type1 = value_type (arg1);
11084
11085 if (ada_is_tagged_type (type1, 1))
11086 {
11087 type = ada_lookup_struct_elt_type (type1,
11088 &exp->elts[pc + 2].string,
11089 1, 1);
11090
11091 /* If the field is not found, check if it exists in the
11092 extension of this object's type. This means that we
11093 need to evaluate completely the expression. */
11094
11095 if (type == NULL)
11096 {
11097 arg1
11098 = evaluate_subexp (nullptr, exp, &preeval_pos, EVAL_NORMAL);
11099 arg1 = ada_value_struct_elt (arg1,
11100 &exp->elts[pc + 2].string,
11101 0);
11102 arg1 = unwrap_value (arg1);
11103 type = value_type (ada_to_fixed_value (arg1));
11104 }
11105 }
11106 else
11107 type =
11108 ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1,
11109 0);
11110
11111 return value_zero (ada_aligned_type (type), lval_memory);
11112 }
11113 else
11114 {
11115 arg1 = ada_value_struct_elt (arg1, &exp->elts[pc + 2].string, 0);
11116 arg1 = unwrap_value (arg1);
11117 return ada_to_fixed_value (arg1);
11118 }
11119
11120 case OP_TYPE:
11121 /* The value is not supposed to be used. This is here to make it
11122 easier to accommodate expressions that contain types. */
11123 (*pos) += 2;
11124 if (noside == EVAL_SKIP)
11125 goto nosideret;
11126 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11127 return allocate_value (exp->elts[pc + 1].type);
11128 else
11129 error (_("Attempt to use a type name as an expression"));
11130
11131 case OP_AGGREGATE:
11132 case OP_CHOICES:
11133 case OP_OTHERS:
11134 case OP_DISCRETE_RANGE:
11135 case OP_POSITIONAL:
11136 case OP_NAME:
11137 if (noside == EVAL_NORMAL)
11138 switch (op)
11139 {
11140 case OP_NAME:
11141 error (_("Undefined name, ambiguous name, or renaming used in "
11142 "component association: %s."), &exp->elts[pc+2].string);
11143 case OP_AGGREGATE:
11144 error (_("Aggregates only allowed on the right of an assignment"));
11145 default:
11146 internal_error (__FILE__, __LINE__,
11147 _("aggregate apparently mangled"));
11148 }
11149
11150 ada_forward_operator_length (exp, pc, &oplen, &nargs);
11151 *pos += oplen - 1;
11152 for (tem = 0; tem < nargs; tem += 1)
11153 ada_evaluate_subexp (NULL, exp, pos, noside);
11154 goto nosideret;
11155 }
11156
11157 nosideret:
11158 return eval_skip_value (exp);
11159 }
11160 \f
11161
11162 /* Fixed point */
11163
11164 /* If TYPE encodes an Ada fixed-point type, return the suffix of the
11165 type name that encodes the 'small and 'delta information.
11166 Otherwise, return NULL. */
11167
11168 static const char *
11169 gnat_encoded_fixed_point_type_info (struct type *type)
11170 {
11171 const char *name = ada_type_name (type);
11172 enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : type->code ();
11173
11174 if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL)
11175 {
11176 const char *tail = strstr (name, "___XF_");
11177
11178 if (tail == NULL)
11179 return NULL;
11180 else
11181 return tail + 5;
11182 }
11183 else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type)
11184 return gnat_encoded_fixed_point_type_info (TYPE_TARGET_TYPE (type));
11185 else
11186 return NULL;
11187 }
11188
11189 /* Returns non-zero iff TYPE represents an Ada fixed-point type. */
11190
11191 int
11192 ada_is_gnat_encoded_fixed_point_type (struct type *type)
11193 {
11194 return gnat_encoded_fixed_point_type_info (type) != NULL;
11195 }
11196
11197 /* Return non-zero iff TYPE represents a System.Address type. */
11198
11199 int
11200 ada_is_system_address_type (struct type *type)
11201 {
11202 return (type->name () && strcmp (type->name (), "system__address") == 0);
11203 }
11204
11205 /* Assuming that TYPE is the representation of an Ada fixed-point
11206 type, return the target floating-point type to be used to represent
11207 of this type during internal computation. */
11208
11209 static struct type *
11210 ada_scaling_type (struct type *type)
11211 {
11212 return builtin_type (type->arch ())->builtin_long_double;
11213 }
11214
11215 /* Assuming that TYPE is the representation of an Ada fixed-point
11216 type, return its delta, or NULL if the type is malformed and the
11217 delta cannot be determined. */
11218
11219 struct value *
11220 gnat_encoded_fixed_point_delta (struct type *type)
11221 {
11222 const char *encoding = gnat_encoded_fixed_point_type_info (type);
11223 struct type *scale_type = ada_scaling_type (type);
11224
11225 long long num, den;
11226
11227 if (sscanf (encoding, "_%lld_%lld", &num, &den) < 2)
11228 return nullptr;
11229 else
11230 return value_binop (value_from_longest (scale_type, num),
11231 value_from_longest (scale_type, den), BINOP_DIV);
11232 }
11233
11234 /* Assuming that ada_is_gnat_encoded_fixed_point_type (TYPE), return
11235 the scaling factor ('SMALL value) associated with the type. */
11236
11237 struct value *
11238 gnat_encoded_fixed_point_scaling_factor (struct type *type)
11239 {
11240 const char *encoding = gnat_encoded_fixed_point_type_info (type);
11241 struct type *scale_type = ada_scaling_type (type);
11242
11243 long long num0, den0, num1, den1;
11244 int n;
11245
11246 n = sscanf (encoding, "_%lld_%lld_%lld_%lld",
11247 &num0, &den0, &num1, &den1);
11248
11249 if (n < 2)
11250 return value_from_longest (scale_type, 1);
11251 else if (n == 4)
11252 return value_binop (value_from_longest (scale_type, num1),
11253 value_from_longest (scale_type, den1), BINOP_DIV);
11254 else
11255 return value_binop (value_from_longest (scale_type, num0),
11256 value_from_longest (scale_type, den0), BINOP_DIV);
11257 }
11258
11259 \f
11260
11261 /* Range types */
11262
11263 /* Scan STR beginning at position K for a discriminant name, and
11264 return the value of that discriminant field of DVAL in *PX. If
11265 PNEW_K is not null, put the position of the character beyond the
11266 name scanned in *PNEW_K. Return 1 if successful; return 0 and do
11267 not alter *PX and *PNEW_K if unsuccessful. */
11268
11269 static int
11270 scan_discrim_bound (const char *str, int k, struct value *dval, LONGEST * px,
11271 int *pnew_k)
11272 {
11273 static char *bound_buffer = NULL;
11274 static size_t bound_buffer_len = 0;
11275 const char *pstart, *pend, *bound;
11276 struct value *bound_val;
11277
11278 if (dval == NULL || str == NULL || str[k] == '\0')
11279 return 0;
11280
11281 pstart = str + k;
11282 pend = strstr (pstart, "__");
11283 if (pend == NULL)
11284 {
11285 bound = pstart;
11286 k += strlen (bound);
11287 }
11288 else
11289 {
11290 int len = pend - pstart;
11291
11292 /* Strip __ and beyond. */
11293 GROW_VECT (bound_buffer, bound_buffer_len, len + 1);
11294 strncpy (bound_buffer, pstart, len);
11295 bound_buffer[len] = '\0';
11296
11297 bound = bound_buffer;
11298 k = pend - str;
11299 }
11300
11301 bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval));
11302 if (bound_val == NULL)
11303 return 0;
11304
11305 *px = value_as_long (bound_val);
11306 if (pnew_k != NULL)
11307 *pnew_k = k;
11308 return 1;
11309 }
11310
11311 /* Value of variable named NAME. Only exact matches are considered.
11312 If no such variable found, then if ERR_MSG is null, returns 0, and
11313 otherwise causes an error with message ERR_MSG. */
11314
11315 static struct value *
11316 get_var_value (const char *name, const char *err_msg)
11317 {
11318 std::string quoted_name = add_angle_brackets (name);
11319
11320 lookup_name_info lookup_name (quoted_name, symbol_name_match_type::FULL);
11321
11322 std::vector<struct block_symbol> syms;
11323 int nsyms = ada_lookup_symbol_list_worker (lookup_name,
11324 get_selected_block (0),
11325 VAR_DOMAIN, &syms, 1);
11326
11327 if (nsyms != 1)
11328 {
11329 if (err_msg == NULL)
11330 return 0;
11331 else
11332 error (("%s"), err_msg);
11333 }
11334
11335 return value_of_variable (syms[0].symbol, syms[0].block);
11336 }
11337
11338 /* Value of integer variable named NAME in the current environment.
11339 If no such variable is found, returns false. Otherwise, sets VALUE
11340 to the variable's value and returns true. */
11341
11342 bool
11343 get_int_var_value (const char *name, LONGEST &value)
11344 {
11345 struct value *var_val = get_var_value (name, 0);
11346
11347 if (var_val == 0)
11348 return false;
11349
11350 value = value_as_long (var_val);
11351 return true;
11352 }
11353
11354
11355 /* Return a range type whose base type is that of the range type named
11356 NAME in the current environment, and whose bounds are calculated
11357 from NAME according to the GNAT range encoding conventions.
11358 Extract discriminant values, if needed, from DVAL. ORIG_TYPE is the
11359 corresponding range type from debug information; fall back to using it
11360 if symbol lookup fails. If a new type must be created, allocate it
11361 like ORIG_TYPE was. The bounds information, in general, is encoded
11362 in NAME, the base type given in the named range type. */
11363
11364 static struct type *
11365 to_fixed_range_type (struct type *raw_type, struct value *dval)
11366 {
11367 const char *name;
11368 struct type *base_type;
11369 const char *subtype_info;
11370
11371 gdb_assert (raw_type != NULL);
11372 gdb_assert (raw_type->name () != NULL);
11373
11374 if (raw_type->code () == TYPE_CODE_RANGE)
11375 base_type = TYPE_TARGET_TYPE (raw_type);
11376 else
11377 base_type = raw_type;
11378
11379 name = raw_type->name ();
11380 subtype_info = strstr (name, "___XD");
11381 if (subtype_info == NULL)
11382 {
11383 LONGEST L = ada_discrete_type_low_bound (raw_type);
11384 LONGEST U = ada_discrete_type_high_bound (raw_type);
11385
11386 if (L < INT_MIN || U > INT_MAX)
11387 return raw_type;
11388 else
11389 return create_static_range_type (alloc_type_copy (raw_type), raw_type,
11390 L, U);
11391 }
11392 else
11393 {
11394 static char *name_buf = NULL;
11395 static size_t name_len = 0;
11396 int prefix_len = subtype_info - name;
11397 LONGEST L, U;
11398 struct type *type;
11399 const char *bounds_str;
11400 int n;
11401
11402 GROW_VECT (name_buf, name_len, prefix_len + 5);
11403 strncpy (name_buf, name, prefix_len);
11404 name_buf[prefix_len] = '\0';
11405
11406 subtype_info += 5;
11407 bounds_str = strchr (subtype_info, '_');
11408 n = 1;
11409
11410 if (*subtype_info == 'L')
11411 {
11412 if (!ada_scan_number (bounds_str, n, &L, &n)
11413 && !scan_discrim_bound (bounds_str, n, dval, &L, &n))
11414 return raw_type;
11415 if (bounds_str[n] == '_')
11416 n += 2;
11417 else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */
11418 n += 1;
11419 subtype_info += 1;
11420 }
11421 else
11422 {
11423 strcpy (name_buf + prefix_len, "___L");
11424 if (!get_int_var_value (name_buf, L))
11425 {
11426 lim_warning (_("Unknown lower bound, using 1."));
11427 L = 1;
11428 }
11429 }
11430
11431 if (*subtype_info == 'U')
11432 {
11433 if (!ada_scan_number (bounds_str, n, &U, &n)
11434 && !scan_discrim_bound (bounds_str, n, dval, &U, &n))
11435 return raw_type;
11436 }
11437 else
11438 {
11439 strcpy (name_buf + prefix_len, "___U");
11440 if (!get_int_var_value (name_buf, U))
11441 {
11442 lim_warning (_("Unknown upper bound, using %ld."), (long) L);
11443 U = L;
11444 }
11445 }
11446
11447 type = create_static_range_type (alloc_type_copy (raw_type),
11448 base_type, L, U);
11449 /* create_static_range_type alters the resulting type's length
11450 to match the size of the base_type, which is not what we want.
11451 Set it back to the original range type's length. */
11452 TYPE_LENGTH (type) = TYPE_LENGTH (raw_type);
11453 type->set_name (name);
11454 return type;
11455 }
11456 }
11457
11458 /* True iff NAME is the name of a range type. */
11459
11460 int
11461 ada_is_range_type_name (const char *name)
11462 {
11463 return (name != NULL && strstr (name, "___XD"));
11464 }
11465 \f
11466
11467 /* Modular types */
11468
11469 /* True iff TYPE is an Ada modular type. */
11470
11471 int
11472 ada_is_modular_type (struct type *type)
11473 {
11474 struct type *subranged_type = get_base_type (type);
11475
11476 return (subranged_type != NULL && type->code () == TYPE_CODE_RANGE
11477 && subranged_type->code () == TYPE_CODE_INT
11478 && subranged_type->is_unsigned ());
11479 }
11480
11481 /* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */
11482
11483 ULONGEST
11484 ada_modulus (struct type *type)
11485 {
11486 const dynamic_prop &high = type->bounds ()->high;
11487
11488 if (high.kind () == PROP_CONST)
11489 return (ULONGEST) high.const_val () + 1;
11490
11491 /* If TYPE is unresolved, the high bound might be a location list. Return
11492 0, for lack of a better value to return. */
11493 return 0;
11494 }
11495 \f
11496
11497 /* Ada exception catchpoint support:
11498 ---------------------------------
11499
11500 We support 3 kinds of exception catchpoints:
11501 . catchpoints on Ada exceptions
11502 . catchpoints on unhandled Ada exceptions
11503 . catchpoints on failed assertions
11504
11505 Exceptions raised during failed assertions, or unhandled exceptions
11506 could perfectly be caught with the general catchpoint on Ada exceptions.
11507 However, we can easily differentiate these two special cases, and having
11508 the option to distinguish these two cases from the rest can be useful
11509 to zero-in on certain situations.
11510
11511 Exception catchpoints are a specialized form of breakpoint,
11512 since they rely on inserting breakpoints inside known routines
11513 of the GNAT runtime. The implementation therefore uses a standard
11514 breakpoint structure of the BP_BREAKPOINT type, but with its own set
11515 of breakpoint_ops.
11516
11517 Support in the runtime for exception catchpoints have been changed
11518 a few times already, and these changes affect the implementation
11519 of these catchpoints. In order to be able to support several
11520 variants of the runtime, we use a sniffer that will determine
11521 the runtime variant used by the program being debugged. */
11522
11523 /* Ada's standard exceptions.
11524
11525 The Ada 83 standard also defined Numeric_Error. But there so many
11526 situations where it was unclear from the Ada 83 Reference Manual
11527 (RM) whether Constraint_Error or Numeric_Error should be raised,
11528 that the ARG (Ada Rapporteur Group) eventually issued a Binding
11529 Interpretation saying that anytime the RM says that Numeric_Error
11530 should be raised, the implementation may raise Constraint_Error.
11531 Ada 95 went one step further and pretty much removed Numeric_Error
11532 from the list of standard exceptions (it made it a renaming of
11533 Constraint_Error, to help preserve compatibility when compiling
11534 an Ada83 compiler). As such, we do not include Numeric_Error from
11535 this list of standard exceptions. */
11536
11537 static const char * const standard_exc[] = {
11538 "constraint_error",
11539 "program_error",
11540 "storage_error",
11541 "tasking_error"
11542 };
11543
11544 typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void);
11545
11546 /* A structure that describes how to support exception catchpoints
11547 for a given executable. */
11548
11549 struct exception_support_info
11550 {
11551 /* The name of the symbol to break on in order to insert
11552 a catchpoint on exceptions. */
11553 const char *catch_exception_sym;
11554
11555 /* The name of the symbol to break on in order to insert
11556 a catchpoint on unhandled exceptions. */
11557 const char *catch_exception_unhandled_sym;
11558
11559 /* The name of the symbol to break on in order to insert
11560 a catchpoint on failed assertions. */
11561 const char *catch_assert_sym;
11562
11563 /* The name of the symbol to break on in order to insert
11564 a catchpoint on exception handling. */
11565 const char *catch_handlers_sym;
11566
11567 /* Assuming that the inferior just triggered an unhandled exception
11568 catchpoint, this function is responsible for returning the address
11569 in inferior memory where the name of that exception is stored.
11570 Return zero if the address could not be computed. */
11571 ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr;
11572 };
11573
11574 static CORE_ADDR ada_unhandled_exception_name_addr (void);
11575 static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void);
11576
11577 /* The following exception support info structure describes how to
11578 implement exception catchpoints with the latest version of the
11579 Ada runtime (as of 2019-08-??). */
11580
11581 static const struct exception_support_info default_exception_support_info =
11582 {
11583 "__gnat_debug_raise_exception", /* catch_exception_sym */
11584 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11585 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
11586 "__gnat_begin_handler_v1", /* catch_handlers_sym */
11587 ada_unhandled_exception_name_addr
11588 };
11589
11590 /* The following exception support info structure describes how to
11591 implement exception catchpoints with an earlier version of the
11592 Ada runtime (as of 2007-03-06) using v0 of the EH ABI. */
11593
11594 static const struct exception_support_info exception_support_info_v0 =
11595 {
11596 "__gnat_debug_raise_exception", /* catch_exception_sym */
11597 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11598 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
11599 "__gnat_begin_handler", /* catch_handlers_sym */
11600 ada_unhandled_exception_name_addr
11601 };
11602
11603 /* The following exception support info structure describes how to
11604 implement exception catchpoints with a slightly older version
11605 of the Ada runtime. */
11606
11607 static const struct exception_support_info exception_support_info_fallback =
11608 {
11609 "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */
11610 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11611 "system__assertions__raise_assert_failure", /* catch_assert_sym */
11612 "__gnat_begin_handler", /* catch_handlers_sym */
11613 ada_unhandled_exception_name_addr_from_raise
11614 };
11615
11616 /* Return nonzero if we can detect the exception support routines
11617 described in EINFO.
11618
11619 This function errors out if an abnormal situation is detected
11620 (for instance, if we find the exception support routines, but
11621 that support is found to be incomplete). */
11622
11623 static int
11624 ada_has_this_exception_support (const struct exception_support_info *einfo)
11625 {
11626 struct symbol *sym;
11627
11628 /* The symbol we're looking up is provided by a unit in the GNAT runtime
11629 that should be compiled with debugging information. As a result, we
11630 expect to find that symbol in the symtabs. */
11631
11632 sym = standard_lookup (einfo->catch_exception_sym, NULL, VAR_DOMAIN);
11633 if (sym == NULL)
11634 {
11635 /* Perhaps we did not find our symbol because the Ada runtime was
11636 compiled without debugging info, or simply stripped of it.
11637 It happens on some GNU/Linux distributions for instance, where
11638 users have to install a separate debug package in order to get
11639 the runtime's debugging info. In that situation, let the user
11640 know why we cannot insert an Ada exception catchpoint.
11641
11642 Note: Just for the purpose of inserting our Ada exception
11643 catchpoint, we could rely purely on the associated minimal symbol.
11644 But we would be operating in degraded mode anyway, since we are
11645 still lacking the debugging info needed later on to extract
11646 the name of the exception being raised (this name is printed in
11647 the catchpoint message, and is also used when trying to catch
11648 a specific exception). We do not handle this case for now. */
11649 struct bound_minimal_symbol msym
11650 = lookup_minimal_symbol (einfo->catch_exception_sym, NULL, NULL);
11651
11652 if (msym.minsym && MSYMBOL_TYPE (msym.minsym) != mst_solib_trampoline)
11653 error (_("Your Ada runtime appears to be missing some debugging "
11654 "information.\nCannot insert Ada exception catchpoint "
11655 "in this configuration."));
11656
11657 return 0;
11658 }
11659
11660 /* Make sure that the symbol we found corresponds to a function. */
11661
11662 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
11663 {
11664 error (_("Symbol \"%s\" is not a function (class = %d)"),
11665 sym->linkage_name (), SYMBOL_CLASS (sym));
11666 return 0;
11667 }
11668
11669 sym = standard_lookup (einfo->catch_handlers_sym, NULL, VAR_DOMAIN);
11670 if (sym == NULL)
11671 {
11672 struct bound_minimal_symbol msym
11673 = lookup_minimal_symbol (einfo->catch_handlers_sym, NULL, NULL);
11674
11675 if (msym.minsym && MSYMBOL_TYPE (msym.minsym) != mst_solib_trampoline)
11676 error (_("Your Ada runtime appears to be missing some debugging "
11677 "information.\nCannot insert Ada exception catchpoint "
11678 "in this configuration."));
11679
11680 return 0;
11681 }
11682
11683 /* Make sure that the symbol we found corresponds to a function. */
11684
11685 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
11686 {
11687 error (_("Symbol \"%s\" is not a function (class = %d)"),
11688 sym->linkage_name (), SYMBOL_CLASS (sym));
11689 return 0;
11690 }
11691
11692 return 1;
11693 }
11694
11695 /* Inspect the Ada runtime and determine which exception info structure
11696 should be used to provide support for exception catchpoints.
11697
11698 This function will always set the per-inferior exception_info,
11699 or raise an error. */
11700
11701 static void
11702 ada_exception_support_info_sniffer (void)
11703 {
11704 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11705
11706 /* If the exception info is already known, then no need to recompute it. */
11707 if (data->exception_info != NULL)
11708 return;
11709
11710 /* Check the latest (default) exception support info. */
11711 if (ada_has_this_exception_support (&default_exception_support_info))
11712 {
11713 data->exception_info = &default_exception_support_info;
11714 return;
11715 }
11716
11717 /* Try the v0 exception suport info. */
11718 if (ada_has_this_exception_support (&exception_support_info_v0))
11719 {
11720 data->exception_info = &exception_support_info_v0;
11721 return;
11722 }
11723
11724 /* Try our fallback exception suport info. */
11725 if (ada_has_this_exception_support (&exception_support_info_fallback))
11726 {
11727 data->exception_info = &exception_support_info_fallback;
11728 return;
11729 }
11730
11731 /* Sometimes, it is normal for us to not be able to find the routine
11732 we are looking for. This happens when the program is linked with
11733 the shared version of the GNAT runtime, and the program has not been
11734 started yet. Inform the user of these two possible causes if
11735 applicable. */
11736
11737 if (ada_update_initial_language (language_unknown) != language_ada)
11738 error (_("Unable to insert catchpoint. Is this an Ada main program?"));
11739
11740 /* If the symbol does not exist, then check that the program is
11741 already started, to make sure that shared libraries have been
11742 loaded. If it is not started, this may mean that the symbol is
11743 in a shared library. */
11744
11745 if (inferior_ptid.pid () == 0)
11746 error (_("Unable to insert catchpoint. Try to start the program first."));
11747
11748 /* At this point, we know that we are debugging an Ada program and
11749 that the inferior has been started, but we still are not able to
11750 find the run-time symbols. That can mean that we are in
11751 configurable run time mode, or that a-except as been optimized
11752 out by the linker... In any case, at this point it is not worth
11753 supporting this feature. */
11754
11755 error (_("Cannot insert Ada exception catchpoints in this configuration."));
11756 }
11757
11758 /* True iff FRAME is very likely to be that of a function that is
11759 part of the runtime system. This is all very heuristic, but is
11760 intended to be used as advice as to what frames are uninteresting
11761 to most users. */
11762
11763 static int
11764 is_known_support_routine (struct frame_info *frame)
11765 {
11766 enum language func_lang;
11767 int i;
11768 const char *fullname;
11769
11770 /* If this code does not have any debugging information (no symtab),
11771 This cannot be any user code. */
11772
11773 symtab_and_line sal = find_frame_sal (frame);
11774 if (sal.symtab == NULL)
11775 return 1;
11776
11777 /* If there is a symtab, but the associated source file cannot be
11778 located, then assume this is not user code: Selecting a frame
11779 for which we cannot display the code would not be very helpful
11780 for the user. This should also take care of case such as VxWorks
11781 where the kernel has some debugging info provided for a few units. */
11782
11783 fullname = symtab_to_fullname (sal.symtab);
11784 if (access (fullname, R_OK) != 0)
11785 return 1;
11786
11787 /* Check the unit filename against the Ada runtime file naming.
11788 We also check the name of the objfile against the name of some
11789 known system libraries that sometimes come with debugging info
11790 too. */
11791
11792 for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1)
11793 {
11794 re_comp (known_runtime_file_name_patterns[i]);
11795 if (re_exec (lbasename (sal.symtab->filename)))
11796 return 1;
11797 if (SYMTAB_OBJFILE (sal.symtab) != NULL
11798 && re_exec (objfile_name (SYMTAB_OBJFILE (sal.symtab))))
11799 return 1;
11800 }
11801
11802 /* Check whether the function is a GNAT-generated entity. */
11803
11804 gdb::unique_xmalloc_ptr<char> func_name
11805 = find_frame_funname (frame, &func_lang, NULL);
11806 if (func_name == NULL)
11807 return 1;
11808
11809 for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1)
11810 {
11811 re_comp (known_auxiliary_function_name_patterns[i]);
11812 if (re_exec (func_name.get ()))
11813 return 1;
11814 }
11815
11816 return 0;
11817 }
11818
11819 /* Find the first frame that contains debugging information and that is not
11820 part of the Ada run-time, starting from FI and moving upward. */
11821
11822 void
11823 ada_find_printable_frame (struct frame_info *fi)
11824 {
11825 for (; fi != NULL; fi = get_prev_frame (fi))
11826 {
11827 if (!is_known_support_routine (fi))
11828 {
11829 select_frame (fi);
11830 break;
11831 }
11832 }
11833
11834 }
11835
11836 /* Assuming that the inferior just triggered an unhandled exception
11837 catchpoint, return the address in inferior memory where the name
11838 of the exception is stored.
11839
11840 Return zero if the address could not be computed. */
11841
11842 static CORE_ADDR
11843 ada_unhandled_exception_name_addr (void)
11844 {
11845 return parse_and_eval_address ("e.full_name");
11846 }
11847
11848 /* Same as ada_unhandled_exception_name_addr, except that this function
11849 should be used when the inferior uses an older version of the runtime,
11850 where the exception name needs to be extracted from a specific frame
11851 several frames up in the callstack. */
11852
11853 static CORE_ADDR
11854 ada_unhandled_exception_name_addr_from_raise (void)
11855 {
11856 int frame_level;
11857 struct frame_info *fi;
11858 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11859
11860 /* To determine the name of this exception, we need to select
11861 the frame corresponding to RAISE_SYM_NAME. This frame is
11862 at least 3 levels up, so we simply skip the first 3 frames
11863 without checking the name of their associated function. */
11864 fi = get_current_frame ();
11865 for (frame_level = 0; frame_level < 3; frame_level += 1)
11866 if (fi != NULL)
11867 fi = get_prev_frame (fi);
11868
11869 while (fi != NULL)
11870 {
11871 enum language func_lang;
11872
11873 gdb::unique_xmalloc_ptr<char> func_name
11874 = find_frame_funname (fi, &func_lang, NULL);
11875 if (func_name != NULL)
11876 {
11877 if (strcmp (func_name.get (),
11878 data->exception_info->catch_exception_sym) == 0)
11879 break; /* We found the frame we were looking for... */
11880 }
11881 fi = get_prev_frame (fi);
11882 }
11883
11884 if (fi == NULL)
11885 return 0;
11886
11887 select_frame (fi);
11888 return parse_and_eval_address ("id.full_name");
11889 }
11890
11891 /* Assuming the inferior just triggered an Ada exception catchpoint
11892 (of any type), return the address in inferior memory where the name
11893 of the exception is stored, if applicable.
11894
11895 Assumes the selected frame is the current frame.
11896
11897 Return zero if the address could not be computed, or if not relevant. */
11898
11899 static CORE_ADDR
11900 ada_exception_name_addr_1 (enum ada_exception_catchpoint_kind ex,
11901 struct breakpoint *b)
11902 {
11903 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11904
11905 switch (ex)
11906 {
11907 case ada_catch_exception:
11908 return (parse_and_eval_address ("e.full_name"));
11909 break;
11910
11911 case ada_catch_exception_unhandled:
11912 return data->exception_info->unhandled_exception_name_addr ();
11913 break;
11914
11915 case ada_catch_handlers:
11916 return 0; /* The runtimes does not provide access to the exception
11917 name. */
11918 break;
11919
11920 case ada_catch_assert:
11921 return 0; /* Exception name is not relevant in this case. */
11922 break;
11923
11924 default:
11925 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
11926 break;
11927 }
11928
11929 return 0; /* Should never be reached. */
11930 }
11931
11932 /* Assuming the inferior is stopped at an exception catchpoint,
11933 return the message which was associated to the exception, if
11934 available. Return NULL if the message could not be retrieved.
11935
11936 Note: The exception message can be associated to an exception
11937 either through the use of the Raise_Exception function, or
11938 more simply (Ada 2005 and later), via:
11939
11940 raise Exception_Name with "exception message";
11941
11942 */
11943
11944 static gdb::unique_xmalloc_ptr<char>
11945 ada_exception_message_1 (void)
11946 {
11947 struct value *e_msg_val;
11948 int e_msg_len;
11949
11950 /* For runtimes that support this feature, the exception message
11951 is passed as an unbounded string argument called "message". */
11952 e_msg_val = parse_and_eval ("message");
11953 if (e_msg_val == NULL)
11954 return NULL; /* Exception message not supported. */
11955
11956 e_msg_val = ada_coerce_to_simple_array (e_msg_val);
11957 gdb_assert (e_msg_val != NULL);
11958 e_msg_len = TYPE_LENGTH (value_type (e_msg_val));
11959
11960 /* If the message string is empty, then treat it as if there was
11961 no exception message. */
11962 if (e_msg_len <= 0)
11963 return NULL;
11964
11965 gdb::unique_xmalloc_ptr<char> e_msg ((char *) xmalloc (e_msg_len + 1));
11966 read_memory (value_address (e_msg_val), (gdb_byte *) e_msg.get (),
11967 e_msg_len);
11968 e_msg.get ()[e_msg_len] = '\0';
11969
11970 return e_msg;
11971 }
11972
11973 /* Same as ada_exception_message_1, except that all exceptions are
11974 contained here (returning NULL instead). */
11975
11976 static gdb::unique_xmalloc_ptr<char>
11977 ada_exception_message (void)
11978 {
11979 gdb::unique_xmalloc_ptr<char> e_msg;
11980
11981 try
11982 {
11983 e_msg = ada_exception_message_1 ();
11984 }
11985 catch (const gdb_exception_error &e)
11986 {
11987 e_msg.reset (nullptr);
11988 }
11989
11990 return e_msg;
11991 }
11992
11993 /* Same as ada_exception_name_addr_1, except that it intercepts and contains
11994 any error that ada_exception_name_addr_1 might cause to be thrown.
11995 When an error is intercepted, a warning with the error message is printed,
11996 and zero is returned. */
11997
11998 static CORE_ADDR
11999 ada_exception_name_addr (enum ada_exception_catchpoint_kind ex,
12000 struct breakpoint *b)
12001 {
12002 CORE_ADDR result = 0;
12003
12004 try
12005 {
12006 result = ada_exception_name_addr_1 (ex, b);
12007 }
12008
12009 catch (const gdb_exception_error &e)
12010 {
12011 warning (_("failed to get exception name: %s"), e.what ());
12012 return 0;
12013 }
12014
12015 return result;
12016 }
12017
12018 static std::string ada_exception_catchpoint_cond_string
12019 (const char *excep_string,
12020 enum ada_exception_catchpoint_kind ex);
12021
12022 /* Ada catchpoints.
12023
12024 In the case of catchpoints on Ada exceptions, the catchpoint will
12025 stop the target on every exception the program throws. When a user
12026 specifies the name of a specific exception, we translate this
12027 request into a condition expression (in text form), and then parse
12028 it into an expression stored in each of the catchpoint's locations.
12029 We then use this condition to check whether the exception that was
12030 raised is the one the user is interested in. If not, then the
12031 target is resumed again. We store the name of the requested
12032 exception, in order to be able to re-set the condition expression
12033 when symbols change. */
12034
12035 /* An instance of this type is used to represent an Ada catchpoint
12036 breakpoint location. */
12037
12038 class ada_catchpoint_location : public bp_location
12039 {
12040 public:
12041 ada_catchpoint_location (breakpoint *owner)
12042 : bp_location (owner, bp_loc_software_breakpoint)
12043 {}
12044
12045 /* The condition that checks whether the exception that was raised
12046 is the specific exception the user specified on catchpoint
12047 creation. */
12048 expression_up excep_cond_expr;
12049 };
12050
12051 /* An instance of this type is used to represent an Ada catchpoint. */
12052
12053 struct ada_catchpoint : public breakpoint
12054 {
12055 explicit ada_catchpoint (enum ada_exception_catchpoint_kind kind)
12056 : m_kind (kind)
12057 {
12058 }
12059
12060 /* The name of the specific exception the user specified. */
12061 std::string excep_string;
12062
12063 /* What kind of catchpoint this is. */
12064 enum ada_exception_catchpoint_kind m_kind;
12065 };
12066
12067 /* Parse the exception condition string in the context of each of the
12068 catchpoint's locations, and store them for later evaluation. */
12069
12070 static void
12071 create_excep_cond_exprs (struct ada_catchpoint *c,
12072 enum ada_exception_catchpoint_kind ex)
12073 {
12074 struct bp_location *bl;
12075
12076 /* Nothing to do if there's no specific exception to catch. */
12077 if (c->excep_string.empty ())
12078 return;
12079
12080 /* Same if there are no locations... */
12081 if (c->loc == NULL)
12082 return;
12083
12084 /* Compute the condition expression in text form, from the specific
12085 expection we want to catch. */
12086 std::string cond_string
12087 = ada_exception_catchpoint_cond_string (c->excep_string.c_str (), ex);
12088
12089 /* Iterate over all the catchpoint's locations, and parse an
12090 expression for each. */
12091 for (bl = c->loc; bl != NULL; bl = bl->next)
12092 {
12093 struct ada_catchpoint_location *ada_loc
12094 = (struct ada_catchpoint_location *) bl;
12095 expression_up exp;
12096
12097 if (!bl->shlib_disabled)
12098 {
12099 const char *s;
12100
12101 s = cond_string.c_str ();
12102 try
12103 {
12104 exp = parse_exp_1 (&s, bl->address,
12105 block_for_pc (bl->address),
12106 0);
12107 }
12108 catch (const gdb_exception_error &e)
12109 {
12110 warning (_("failed to reevaluate internal exception condition "
12111 "for catchpoint %d: %s"),
12112 c->number, e.what ());
12113 }
12114 }
12115
12116 ada_loc->excep_cond_expr = std::move (exp);
12117 }
12118 }
12119
12120 /* Implement the ALLOCATE_LOCATION method in the breakpoint_ops
12121 structure for all exception catchpoint kinds. */
12122
12123 static struct bp_location *
12124 allocate_location_exception (struct breakpoint *self)
12125 {
12126 return new ada_catchpoint_location (self);
12127 }
12128
12129 /* Implement the RE_SET method in the breakpoint_ops structure for all
12130 exception catchpoint kinds. */
12131
12132 static void
12133 re_set_exception (struct breakpoint *b)
12134 {
12135 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12136
12137 /* Call the base class's method. This updates the catchpoint's
12138 locations. */
12139 bkpt_breakpoint_ops.re_set (b);
12140
12141 /* Reparse the exception conditional expressions. One for each
12142 location. */
12143 create_excep_cond_exprs (c, c->m_kind);
12144 }
12145
12146 /* Returns true if we should stop for this breakpoint hit. If the
12147 user specified a specific exception, we only want to cause a stop
12148 if the program thrown that exception. */
12149
12150 static int
12151 should_stop_exception (const struct bp_location *bl)
12152 {
12153 struct ada_catchpoint *c = (struct ada_catchpoint *) bl->owner;
12154 const struct ada_catchpoint_location *ada_loc
12155 = (const struct ada_catchpoint_location *) bl;
12156 int stop;
12157
12158 struct internalvar *var = lookup_internalvar ("_ada_exception");
12159 if (c->m_kind == ada_catch_assert)
12160 clear_internalvar (var);
12161 else
12162 {
12163 try
12164 {
12165 const char *expr;
12166
12167 if (c->m_kind == ada_catch_handlers)
12168 expr = ("GNAT_GCC_exception_Access(gcc_exception)"
12169 ".all.occurrence.id");
12170 else
12171 expr = "e";
12172
12173 struct value *exc = parse_and_eval (expr);
12174 set_internalvar (var, exc);
12175 }
12176 catch (const gdb_exception_error &ex)
12177 {
12178 clear_internalvar (var);
12179 }
12180 }
12181
12182 /* With no specific exception, should always stop. */
12183 if (c->excep_string.empty ())
12184 return 1;
12185
12186 if (ada_loc->excep_cond_expr == NULL)
12187 {
12188 /* We will have a NULL expression if back when we were creating
12189 the expressions, this location's had failed to parse. */
12190 return 1;
12191 }
12192
12193 stop = 1;
12194 try
12195 {
12196 struct value *mark;
12197
12198 mark = value_mark ();
12199 stop = value_true (evaluate_expression (ada_loc->excep_cond_expr.get ()));
12200 value_free_to_mark (mark);
12201 }
12202 catch (const gdb_exception &ex)
12203 {
12204 exception_fprintf (gdb_stderr, ex,
12205 _("Error in testing exception condition:\n"));
12206 }
12207
12208 return stop;
12209 }
12210
12211 /* Implement the CHECK_STATUS method in the breakpoint_ops structure
12212 for all exception catchpoint kinds. */
12213
12214 static void
12215 check_status_exception (bpstat bs)
12216 {
12217 bs->stop = should_stop_exception (bs->bp_location_at.get ());
12218 }
12219
12220 /* Implement the PRINT_IT method in the breakpoint_ops structure
12221 for all exception catchpoint kinds. */
12222
12223 static enum print_stop_action
12224 print_it_exception (bpstat bs)
12225 {
12226 struct ui_out *uiout = current_uiout;
12227 struct breakpoint *b = bs->breakpoint_at;
12228
12229 annotate_catchpoint (b->number);
12230
12231 if (uiout->is_mi_like_p ())
12232 {
12233 uiout->field_string ("reason",
12234 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
12235 uiout->field_string ("disp", bpdisp_text (b->disposition));
12236 }
12237
12238 uiout->text (b->disposition == disp_del
12239 ? "\nTemporary catchpoint " : "\nCatchpoint ");
12240 uiout->field_signed ("bkptno", b->number);
12241 uiout->text (", ");
12242
12243 /* ada_exception_name_addr relies on the selected frame being the
12244 current frame. Need to do this here because this function may be
12245 called more than once when printing a stop, and below, we'll
12246 select the first frame past the Ada run-time (see
12247 ada_find_printable_frame). */
12248 select_frame (get_current_frame ());
12249
12250 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12251 switch (c->m_kind)
12252 {
12253 case ada_catch_exception:
12254 case ada_catch_exception_unhandled:
12255 case ada_catch_handlers:
12256 {
12257 const CORE_ADDR addr = ada_exception_name_addr (c->m_kind, b);
12258 char exception_name[256];
12259
12260 if (addr != 0)
12261 {
12262 read_memory (addr, (gdb_byte *) exception_name,
12263 sizeof (exception_name) - 1);
12264 exception_name [sizeof (exception_name) - 1] = '\0';
12265 }
12266 else
12267 {
12268 /* For some reason, we were unable to read the exception
12269 name. This could happen if the Runtime was compiled
12270 without debugging info, for instance. In that case,
12271 just replace the exception name by the generic string
12272 "exception" - it will read as "an exception" in the
12273 notification we are about to print. */
12274 memcpy (exception_name, "exception", sizeof ("exception"));
12275 }
12276 /* In the case of unhandled exception breakpoints, we print
12277 the exception name as "unhandled EXCEPTION_NAME", to make
12278 it clearer to the user which kind of catchpoint just got
12279 hit. We used ui_out_text to make sure that this extra
12280 info does not pollute the exception name in the MI case. */
12281 if (c->m_kind == ada_catch_exception_unhandled)
12282 uiout->text ("unhandled ");
12283 uiout->field_string ("exception-name", exception_name);
12284 }
12285 break;
12286 case ada_catch_assert:
12287 /* In this case, the name of the exception is not really
12288 important. Just print "failed assertion" to make it clearer
12289 that his program just hit an assertion-failure catchpoint.
12290 We used ui_out_text because this info does not belong in
12291 the MI output. */
12292 uiout->text ("failed assertion");
12293 break;
12294 }
12295
12296 gdb::unique_xmalloc_ptr<char> exception_message = ada_exception_message ();
12297 if (exception_message != NULL)
12298 {
12299 uiout->text (" (");
12300 uiout->field_string ("exception-message", exception_message.get ());
12301 uiout->text (")");
12302 }
12303
12304 uiout->text (" at ");
12305 ada_find_printable_frame (get_current_frame ());
12306
12307 return PRINT_SRC_AND_LOC;
12308 }
12309
12310 /* Implement the PRINT_ONE method in the breakpoint_ops structure
12311 for all exception catchpoint kinds. */
12312
12313 static void
12314 print_one_exception (struct breakpoint *b, struct bp_location **last_loc)
12315 {
12316 struct ui_out *uiout = current_uiout;
12317 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12318 struct value_print_options opts;
12319
12320 get_user_print_options (&opts);
12321
12322 if (opts.addressprint)
12323 uiout->field_skip ("addr");
12324
12325 annotate_field (5);
12326 switch (c->m_kind)
12327 {
12328 case ada_catch_exception:
12329 if (!c->excep_string.empty ())
12330 {
12331 std::string msg = string_printf (_("`%s' Ada exception"),
12332 c->excep_string.c_str ());
12333
12334 uiout->field_string ("what", msg);
12335 }
12336 else
12337 uiout->field_string ("what", "all Ada exceptions");
12338
12339 break;
12340
12341 case ada_catch_exception_unhandled:
12342 uiout->field_string ("what", "unhandled Ada exceptions");
12343 break;
12344
12345 case ada_catch_handlers:
12346 if (!c->excep_string.empty ())
12347 {
12348 uiout->field_fmt ("what",
12349 _("`%s' Ada exception handlers"),
12350 c->excep_string.c_str ());
12351 }
12352 else
12353 uiout->field_string ("what", "all Ada exceptions handlers");
12354 break;
12355
12356 case ada_catch_assert:
12357 uiout->field_string ("what", "failed Ada assertions");
12358 break;
12359
12360 default:
12361 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12362 break;
12363 }
12364 }
12365
12366 /* Implement the PRINT_MENTION method in the breakpoint_ops structure
12367 for all exception catchpoint kinds. */
12368
12369 static void
12370 print_mention_exception (struct breakpoint *b)
12371 {
12372 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12373 struct ui_out *uiout = current_uiout;
12374
12375 uiout->text (b->disposition == disp_del ? _("Temporary catchpoint ")
12376 : _("Catchpoint "));
12377 uiout->field_signed ("bkptno", b->number);
12378 uiout->text (": ");
12379
12380 switch (c->m_kind)
12381 {
12382 case ada_catch_exception:
12383 if (!c->excep_string.empty ())
12384 {
12385 std::string info = string_printf (_("`%s' Ada exception"),
12386 c->excep_string.c_str ());
12387 uiout->text (info.c_str ());
12388 }
12389 else
12390 uiout->text (_("all Ada exceptions"));
12391 break;
12392
12393 case ada_catch_exception_unhandled:
12394 uiout->text (_("unhandled Ada exceptions"));
12395 break;
12396
12397 case ada_catch_handlers:
12398 if (!c->excep_string.empty ())
12399 {
12400 std::string info
12401 = string_printf (_("`%s' Ada exception handlers"),
12402 c->excep_string.c_str ());
12403 uiout->text (info.c_str ());
12404 }
12405 else
12406 uiout->text (_("all Ada exceptions handlers"));
12407 break;
12408
12409 case ada_catch_assert:
12410 uiout->text (_("failed Ada assertions"));
12411 break;
12412
12413 default:
12414 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12415 break;
12416 }
12417 }
12418
12419 /* Implement the PRINT_RECREATE method in the breakpoint_ops structure
12420 for all exception catchpoint kinds. */
12421
12422 static void
12423 print_recreate_exception (struct breakpoint *b, struct ui_file *fp)
12424 {
12425 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12426
12427 switch (c->m_kind)
12428 {
12429 case ada_catch_exception:
12430 fprintf_filtered (fp, "catch exception");
12431 if (!c->excep_string.empty ())
12432 fprintf_filtered (fp, " %s", c->excep_string.c_str ());
12433 break;
12434
12435 case ada_catch_exception_unhandled:
12436 fprintf_filtered (fp, "catch exception unhandled");
12437 break;
12438
12439 case ada_catch_handlers:
12440 fprintf_filtered (fp, "catch handlers");
12441 break;
12442
12443 case ada_catch_assert:
12444 fprintf_filtered (fp, "catch assert");
12445 break;
12446
12447 default:
12448 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12449 }
12450 print_recreate_thread (b, fp);
12451 }
12452
12453 /* Virtual tables for various breakpoint types. */
12454 static struct breakpoint_ops catch_exception_breakpoint_ops;
12455 static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops;
12456 static struct breakpoint_ops catch_assert_breakpoint_ops;
12457 static struct breakpoint_ops catch_handlers_breakpoint_ops;
12458
12459 /* See ada-lang.h. */
12460
12461 bool
12462 is_ada_exception_catchpoint (breakpoint *bp)
12463 {
12464 return (bp->ops == &catch_exception_breakpoint_ops
12465 || bp->ops == &catch_exception_unhandled_breakpoint_ops
12466 || bp->ops == &catch_assert_breakpoint_ops
12467 || bp->ops == &catch_handlers_breakpoint_ops);
12468 }
12469
12470 /* Split the arguments specified in a "catch exception" command.
12471 Set EX to the appropriate catchpoint type.
12472 Set EXCEP_STRING to the name of the specific exception if
12473 specified by the user.
12474 IS_CATCH_HANDLERS_CMD: True if the arguments are for a
12475 "catch handlers" command. False otherwise.
12476 If a condition is found at the end of the arguments, the condition
12477 expression is stored in COND_STRING (memory must be deallocated
12478 after use). Otherwise COND_STRING is set to NULL. */
12479
12480 static void
12481 catch_ada_exception_command_split (const char *args,
12482 bool is_catch_handlers_cmd,
12483 enum ada_exception_catchpoint_kind *ex,
12484 std::string *excep_string,
12485 std::string *cond_string)
12486 {
12487 std::string exception_name;
12488
12489 exception_name = extract_arg (&args);
12490 if (exception_name == "if")
12491 {
12492 /* This is not an exception name; this is the start of a condition
12493 expression for a catchpoint on all exceptions. So, "un-get"
12494 this token, and set exception_name to NULL. */
12495 exception_name.clear ();
12496 args -= 2;
12497 }
12498
12499 /* Check to see if we have a condition. */
12500
12501 args = skip_spaces (args);
12502 if (startswith (args, "if")
12503 && (isspace (args[2]) || args[2] == '\0'))
12504 {
12505 args += 2;
12506 args = skip_spaces (args);
12507
12508 if (args[0] == '\0')
12509 error (_("Condition missing after `if' keyword"));
12510 *cond_string = args;
12511
12512 args += strlen (args);
12513 }
12514
12515 /* Check that we do not have any more arguments. Anything else
12516 is unexpected. */
12517
12518 if (args[0] != '\0')
12519 error (_("Junk at end of expression"));
12520
12521 if (is_catch_handlers_cmd)
12522 {
12523 /* Catch handling of exceptions. */
12524 *ex = ada_catch_handlers;
12525 *excep_string = exception_name;
12526 }
12527 else if (exception_name.empty ())
12528 {
12529 /* Catch all exceptions. */
12530 *ex = ada_catch_exception;
12531 excep_string->clear ();
12532 }
12533 else if (exception_name == "unhandled")
12534 {
12535 /* Catch unhandled exceptions. */
12536 *ex = ada_catch_exception_unhandled;
12537 excep_string->clear ();
12538 }
12539 else
12540 {
12541 /* Catch a specific exception. */
12542 *ex = ada_catch_exception;
12543 *excep_string = exception_name;
12544 }
12545 }
12546
12547 /* Return the name of the symbol on which we should break in order to
12548 implement a catchpoint of the EX kind. */
12549
12550 static const char *
12551 ada_exception_sym_name (enum ada_exception_catchpoint_kind ex)
12552 {
12553 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
12554
12555 gdb_assert (data->exception_info != NULL);
12556
12557 switch (ex)
12558 {
12559 case ada_catch_exception:
12560 return (data->exception_info->catch_exception_sym);
12561 break;
12562 case ada_catch_exception_unhandled:
12563 return (data->exception_info->catch_exception_unhandled_sym);
12564 break;
12565 case ada_catch_assert:
12566 return (data->exception_info->catch_assert_sym);
12567 break;
12568 case ada_catch_handlers:
12569 return (data->exception_info->catch_handlers_sym);
12570 break;
12571 default:
12572 internal_error (__FILE__, __LINE__,
12573 _("unexpected catchpoint kind (%d)"), ex);
12574 }
12575 }
12576
12577 /* Return the breakpoint ops "virtual table" used for catchpoints
12578 of the EX kind. */
12579
12580 static const struct breakpoint_ops *
12581 ada_exception_breakpoint_ops (enum ada_exception_catchpoint_kind ex)
12582 {
12583 switch (ex)
12584 {
12585 case ada_catch_exception:
12586 return (&catch_exception_breakpoint_ops);
12587 break;
12588 case ada_catch_exception_unhandled:
12589 return (&catch_exception_unhandled_breakpoint_ops);
12590 break;
12591 case ada_catch_assert:
12592 return (&catch_assert_breakpoint_ops);
12593 break;
12594 case ada_catch_handlers:
12595 return (&catch_handlers_breakpoint_ops);
12596 break;
12597 default:
12598 internal_error (__FILE__, __LINE__,
12599 _("unexpected catchpoint kind (%d)"), ex);
12600 }
12601 }
12602
12603 /* Return the condition that will be used to match the current exception
12604 being raised with the exception that the user wants to catch. This
12605 assumes that this condition is used when the inferior just triggered
12606 an exception catchpoint.
12607 EX: the type of catchpoints used for catching Ada exceptions. */
12608
12609 static std::string
12610 ada_exception_catchpoint_cond_string (const char *excep_string,
12611 enum ada_exception_catchpoint_kind ex)
12612 {
12613 int i;
12614 bool is_standard_exc = false;
12615 std::string result;
12616
12617 if (ex == ada_catch_handlers)
12618 {
12619 /* For exception handlers catchpoints, the condition string does
12620 not use the same parameter as for the other exceptions. */
12621 result = ("long_integer (GNAT_GCC_exception_Access"
12622 "(gcc_exception).all.occurrence.id)");
12623 }
12624 else
12625 result = "long_integer (e)";
12626
12627 /* The standard exceptions are a special case. They are defined in
12628 runtime units that have been compiled without debugging info; if
12629 EXCEP_STRING is the not-fully-qualified name of a standard
12630 exception (e.g. "constraint_error") then, during the evaluation
12631 of the condition expression, the symbol lookup on this name would
12632 *not* return this standard exception. The catchpoint condition
12633 may then be set only on user-defined exceptions which have the
12634 same not-fully-qualified name (e.g. my_package.constraint_error).
12635
12636 To avoid this unexcepted behavior, these standard exceptions are
12637 systematically prefixed by "standard". This means that "catch
12638 exception constraint_error" is rewritten into "catch exception
12639 standard.constraint_error".
12640
12641 If an exception named constraint_error is defined in another package of
12642 the inferior program, then the only way to specify this exception as a
12643 breakpoint condition is to use its fully-qualified named:
12644 e.g. my_package.constraint_error. */
12645
12646 for (i = 0; i < sizeof (standard_exc) / sizeof (char *); i++)
12647 {
12648 if (strcmp (standard_exc [i], excep_string) == 0)
12649 {
12650 is_standard_exc = true;
12651 break;
12652 }
12653 }
12654
12655 result += " = ";
12656
12657 if (is_standard_exc)
12658 string_appendf (result, "long_integer (&standard.%s)", excep_string);
12659 else
12660 string_appendf (result, "long_integer (&%s)", excep_string);
12661
12662 return result;
12663 }
12664
12665 /* Return the symtab_and_line that should be used to insert an exception
12666 catchpoint of the TYPE kind.
12667
12668 ADDR_STRING returns the name of the function where the real
12669 breakpoint that implements the catchpoints is set, depending on the
12670 type of catchpoint we need to create. */
12671
12672 static struct symtab_and_line
12673 ada_exception_sal (enum ada_exception_catchpoint_kind ex,
12674 std::string *addr_string, const struct breakpoint_ops **ops)
12675 {
12676 const char *sym_name;
12677 struct symbol *sym;
12678
12679 /* First, find out which exception support info to use. */
12680 ada_exception_support_info_sniffer ();
12681
12682 /* Then lookup the function on which we will break in order to catch
12683 the Ada exceptions requested by the user. */
12684 sym_name = ada_exception_sym_name (ex);
12685 sym = standard_lookup (sym_name, NULL, VAR_DOMAIN);
12686
12687 if (sym == NULL)
12688 error (_("Catchpoint symbol not found: %s"), sym_name);
12689
12690 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
12691 error (_("Unable to insert catchpoint. %s is not a function."), sym_name);
12692
12693 /* Set ADDR_STRING. */
12694 *addr_string = sym_name;
12695
12696 /* Set OPS. */
12697 *ops = ada_exception_breakpoint_ops (ex);
12698
12699 return find_function_start_sal (sym, 1);
12700 }
12701
12702 /* Create an Ada exception catchpoint.
12703
12704 EX_KIND is the kind of exception catchpoint to be created.
12705
12706 If EXCEPT_STRING is empty, this catchpoint is expected to trigger
12707 for all exceptions. Otherwise, EXCEPT_STRING indicates the name
12708 of the exception to which this catchpoint applies.
12709
12710 COND_STRING, if not empty, is the catchpoint condition.
12711
12712 TEMPFLAG, if nonzero, means that the underlying breakpoint
12713 should be temporary.
12714
12715 FROM_TTY is the usual argument passed to all commands implementations. */
12716
12717 void
12718 create_ada_exception_catchpoint (struct gdbarch *gdbarch,
12719 enum ada_exception_catchpoint_kind ex_kind,
12720 const std::string &excep_string,
12721 const std::string &cond_string,
12722 int tempflag,
12723 int disabled,
12724 int from_tty)
12725 {
12726 std::string addr_string;
12727 const struct breakpoint_ops *ops = NULL;
12728 struct symtab_and_line sal = ada_exception_sal (ex_kind, &addr_string, &ops);
12729
12730 std::unique_ptr<ada_catchpoint> c (new ada_catchpoint (ex_kind));
12731 init_ada_exception_breakpoint (c.get (), gdbarch, sal, addr_string.c_str (),
12732 ops, tempflag, disabled, from_tty);
12733 c->excep_string = excep_string;
12734 create_excep_cond_exprs (c.get (), ex_kind);
12735 if (!cond_string.empty ())
12736 set_breakpoint_condition (c.get (), cond_string.c_str (), from_tty, false);
12737 install_breakpoint (0, std::move (c), 1);
12738 }
12739
12740 /* Implement the "catch exception" command. */
12741
12742 static void
12743 catch_ada_exception_command (const char *arg_entry, int from_tty,
12744 struct cmd_list_element *command)
12745 {
12746 const char *arg = arg_entry;
12747 struct gdbarch *gdbarch = get_current_arch ();
12748 int tempflag;
12749 enum ada_exception_catchpoint_kind ex_kind;
12750 std::string excep_string;
12751 std::string cond_string;
12752
12753 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12754
12755 if (!arg)
12756 arg = "";
12757 catch_ada_exception_command_split (arg, false, &ex_kind, &excep_string,
12758 &cond_string);
12759 create_ada_exception_catchpoint (gdbarch, ex_kind,
12760 excep_string, cond_string,
12761 tempflag, 1 /* enabled */,
12762 from_tty);
12763 }
12764
12765 /* Implement the "catch handlers" command. */
12766
12767 static void
12768 catch_ada_handlers_command (const char *arg_entry, int from_tty,
12769 struct cmd_list_element *command)
12770 {
12771 const char *arg = arg_entry;
12772 struct gdbarch *gdbarch = get_current_arch ();
12773 int tempflag;
12774 enum ada_exception_catchpoint_kind ex_kind;
12775 std::string excep_string;
12776 std::string cond_string;
12777
12778 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12779
12780 if (!arg)
12781 arg = "";
12782 catch_ada_exception_command_split (arg, true, &ex_kind, &excep_string,
12783 &cond_string);
12784 create_ada_exception_catchpoint (gdbarch, ex_kind,
12785 excep_string, cond_string,
12786 tempflag, 1 /* enabled */,
12787 from_tty);
12788 }
12789
12790 /* Completion function for the Ada "catch" commands. */
12791
12792 static void
12793 catch_ada_completer (struct cmd_list_element *cmd, completion_tracker &tracker,
12794 const char *text, const char *word)
12795 {
12796 std::vector<ada_exc_info> exceptions = ada_exceptions_list (NULL);
12797
12798 for (const ada_exc_info &info : exceptions)
12799 {
12800 if (startswith (info.name, word))
12801 tracker.add_completion (make_unique_xstrdup (info.name));
12802 }
12803 }
12804
12805 /* Split the arguments specified in a "catch assert" command.
12806
12807 ARGS contains the command's arguments (or the empty string if
12808 no arguments were passed).
12809
12810 If ARGS contains a condition, set COND_STRING to that condition
12811 (the memory needs to be deallocated after use). */
12812
12813 static void
12814 catch_ada_assert_command_split (const char *args, std::string &cond_string)
12815 {
12816 args = skip_spaces (args);
12817
12818 /* Check whether a condition was provided. */
12819 if (startswith (args, "if")
12820 && (isspace (args[2]) || args[2] == '\0'))
12821 {
12822 args += 2;
12823 args = skip_spaces (args);
12824 if (args[0] == '\0')
12825 error (_("condition missing after `if' keyword"));
12826 cond_string.assign (args);
12827 }
12828
12829 /* Otherwise, there should be no other argument at the end of
12830 the command. */
12831 else if (args[0] != '\0')
12832 error (_("Junk at end of arguments."));
12833 }
12834
12835 /* Implement the "catch assert" command. */
12836
12837 static void
12838 catch_assert_command (const char *arg_entry, int from_tty,
12839 struct cmd_list_element *command)
12840 {
12841 const char *arg = arg_entry;
12842 struct gdbarch *gdbarch = get_current_arch ();
12843 int tempflag;
12844 std::string cond_string;
12845
12846 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12847
12848 if (!arg)
12849 arg = "";
12850 catch_ada_assert_command_split (arg, cond_string);
12851 create_ada_exception_catchpoint (gdbarch, ada_catch_assert,
12852 "", cond_string,
12853 tempflag, 1 /* enabled */,
12854 from_tty);
12855 }
12856
12857 /* Return non-zero if the symbol SYM is an Ada exception object. */
12858
12859 static int
12860 ada_is_exception_sym (struct symbol *sym)
12861 {
12862 const char *type_name = SYMBOL_TYPE (sym)->name ();
12863
12864 return (SYMBOL_CLASS (sym) != LOC_TYPEDEF
12865 && SYMBOL_CLASS (sym) != LOC_BLOCK
12866 && SYMBOL_CLASS (sym) != LOC_CONST
12867 && SYMBOL_CLASS (sym) != LOC_UNRESOLVED
12868 && type_name != NULL && strcmp (type_name, "exception") == 0);
12869 }
12870
12871 /* Given a global symbol SYM, return non-zero iff SYM is a non-standard
12872 Ada exception object. This matches all exceptions except the ones
12873 defined by the Ada language. */
12874
12875 static int
12876 ada_is_non_standard_exception_sym (struct symbol *sym)
12877 {
12878 int i;
12879
12880 if (!ada_is_exception_sym (sym))
12881 return 0;
12882
12883 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
12884 if (strcmp (sym->linkage_name (), standard_exc[i]) == 0)
12885 return 0; /* A standard exception. */
12886
12887 /* Numeric_Error is also a standard exception, so exclude it.
12888 See the STANDARD_EXC description for more details as to why
12889 this exception is not listed in that array. */
12890 if (strcmp (sym->linkage_name (), "numeric_error") == 0)
12891 return 0;
12892
12893 return 1;
12894 }
12895
12896 /* A helper function for std::sort, comparing two struct ada_exc_info
12897 objects.
12898
12899 The comparison is determined first by exception name, and then
12900 by exception address. */
12901
12902 bool
12903 ada_exc_info::operator< (const ada_exc_info &other) const
12904 {
12905 int result;
12906
12907 result = strcmp (name, other.name);
12908 if (result < 0)
12909 return true;
12910 if (result == 0 && addr < other.addr)
12911 return true;
12912 return false;
12913 }
12914
12915 bool
12916 ada_exc_info::operator== (const ada_exc_info &other) const
12917 {
12918 return addr == other.addr && strcmp (name, other.name) == 0;
12919 }
12920
12921 /* Sort EXCEPTIONS using compare_ada_exception_info as the comparison
12922 routine, but keeping the first SKIP elements untouched.
12923
12924 All duplicates are also removed. */
12925
12926 static void
12927 sort_remove_dups_ada_exceptions_list (std::vector<ada_exc_info> *exceptions,
12928 int skip)
12929 {
12930 std::sort (exceptions->begin () + skip, exceptions->end ());
12931 exceptions->erase (std::unique (exceptions->begin () + skip, exceptions->end ()),
12932 exceptions->end ());
12933 }
12934
12935 /* Add all exceptions defined by the Ada standard whose name match
12936 a regular expression.
12937
12938 If PREG is not NULL, then this regexp_t object is used to
12939 perform the symbol name matching. Otherwise, no name-based
12940 filtering is performed.
12941
12942 EXCEPTIONS is a vector of exceptions to which matching exceptions
12943 gets pushed. */
12944
12945 static void
12946 ada_add_standard_exceptions (compiled_regex *preg,
12947 std::vector<ada_exc_info> *exceptions)
12948 {
12949 int i;
12950
12951 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
12952 {
12953 if (preg == NULL
12954 || preg->exec (standard_exc[i], 0, NULL, 0) == 0)
12955 {
12956 struct bound_minimal_symbol msymbol
12957 = ada_lookup_simple_minsym (standard_exc[i]);
12958
12959 if (msymbol.minsym != NULL)
12960 {
12961 struct ada_exc_info info
12962 = {standard_exc[i], BMSYMBOL_VALUE_ADDRESS (msymbol)};
12963
12964 exceptions->push_back (info);
12965 }
12966 }
12967 }
12968 }
12969
12970 /* Add all Ada exceptions defined locally and accessible from the given
12971 FRAME.
12972
12973 If PREG is not NULL, then this regexp_t object is used to
12974 perform the symbol name matching. Otherwise, no name-based
12975 filtering is performed.
12976
12977 EXCEPTIONS is a vector of exceptions to which matching exceptions
12978 gets pushed. */
12979
12980 static void
12981 ada_add_exceptions_from_frame (compiled_regex *preg,
12982 struct frame_info *frame,
12983 std::vector<ada_exc_info> *exceptions)
12984 {
12985 const struct block *block = get_frame_block (frame, 0);
12986
12987 while (block != 0)
12988 {
12989 struct block_iterator iter;
12990 struct symbol *sym;
12991
12992 ALL_BLOCK_SYMBOLS (block, iter, sym)
12993 {
12994 switch (SYMBOL_CLASS (sym))
12995 {
12996 case LOC_TYPEDEF:
12997 case LOC_BLOCK:
12998 case LOC_CONST:
12999 break;
13000 default:
13001 if (ada_is_exception_sym (sym))
13002 {
13003 struct ada_exc_info info = {sym->print_name (),
13004 SYMBOL_VALUE_ADDRESS (sym)};
13005
13006 exceptions->push_back (info);
13007 }
13008 }
13009 }
13010 if (BLOCK_FUNCTION (block) != NULL)
13011 break;
13012 block = BLOCK_SUPERBLOCK (block);
13013 }
13014 }
13015
13016 /* Return true if NAME matches PREG or if PREG is NULL. */
13017
13018 static bool
13019 name_matches_regex (const char *name, compiled_regex *preg)
13020 {
13021 return (preg == NULL
13022 || preg->exec (ada_decode (name).c_str (), 0, NULL, 0) == 0);
13023 }
13024
13025 /* Add all exceptions defined globally whose name name match
13026 a regular expression, excluding standard exceptions.
13027
13028 The reason we exclude standard exceptions is that they need
13029 to be handled separately: Standard exceptions are defined inside
13030 a runtime unit which is normally not compiled with debugging info,
13031 and thus usually do not show up in our symbol search. However,
13032 if the unit was in fact built with debugging info, we need to
13033 exclude them because they would duplicate the entry we found
13034 during the special loop that specifically searches for those
13035 standard exceptions.
13036
13037 If PREG is not NULL, then this regexp_t object is used to
13038 perform the symbol name matching. Otherwise, no name-based
13039 filtering is performed.
13040
13041 EXCEPTIONS is a vector of exceptions to which matching exceptions
13042 gets pushed. */
13043
13044 static void
13045 ada_add_global_exceptions (compiled_regex *preg,
13046 std::vector<ada_exc_info> *exceptions)
13047 {
13048 /* In Ada, the symbol "search name" is a linkage name, whereas the
13049 regular expression used to do the matching refers to the natural
13050 name. So match against the decoded name. */
13051 expand_symtabs_matching (NULL,
13052 lookup_name_info::match_any (),
13053 [&] (const char *search_name)
13054 {
13055 std::string decoded = ada_decode (search_name);
13056 return name_matches_regex (decoded.c_str (), preg);
13057 },
13058 NULL,
13059 VARIABLES_DOMAIN);
13060
13061 for (objfile *objfile : current_program_space->objfiles ())
13062 {
13063 for (compunit_symtab *s : objfile->compunits ())
13064 {
13065 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (s);
13066 int i;
13067
13068 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
13069 {
13070 const struct block *b = BLOCKVECTOR_BLOCK (bv, i);
13071 struct block_iterator iter;
13072 struct symbol *sym;
13073
13074 ALL_BLOCK_SYMBOLS (b, iter, sym)
13075 if (ada_is_non_standard_exception_sym (sym)
13076 && name_matches_regex (sym->natural_name (), preg))
13077 {
13078 struct ada_exc_info info
13079 = {sym->print_name (), SYMBOL_VALUE_ADDRESS (sym)};
13080
13081 exceptions->push_back (info);
13082 }
13083 }
13084 }
13085 }
13086 }
13087
13088 /* Implements ada_exceptions_list with the regular expression passed
13089 as a regex_t, rather than a string.
13090
13091 If not NULL, PREG is used to filter out exceptions whose names
13092 do not match. Otherwise, all exceptions are listed. */
13093
13094 static std::vector<ada_exc_info>
13095 ada_exceptions_list_1 (compiled_regex *preg)
13096 {
13097 std::vector<ada_exc_info> result;
13098 int prev_len;
13099
13100 /* First, list the known standard exceptions. These exceptions
13101 need to be handled separately, as they are usually defined in
13102 runtime units that have been compiled without debugging info. */
13103
13104 ada_add_standard_exceptions (preg, &result);
13105
13106 /* Next, find all exceptions whose scope is local and accessible
13107 from the currently selected frame. */
13108
13109 if (has_stack_frames ())
13110 {
13111 prev_len = result.size ();
13112 ada_add_exceptions_from_frame (preg, get_selected_frame (NULL),
13113 &result);
13114 if (result.size () > prev_len)
13115 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13116 }
13117
13118 /* Add all exceptions whose scope is global. */
13119
13120 prev_len = result.size ();
13121 ada_add_global_exceptions (preg, &result);
13122 if (result.size () > prev_len)
13123 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13124
13125 return result;
13126 }
13127
13128 /* Return a vector of ada_exc_info.
13129
13130 If REGEXP is NULL, all exceptions are included in the result.
13131 Otherwise, it should contain a valid regular expression,
13132 and only the exceptions whose names match that regular expression
13133 are included in the result.
13134
13135 The exceptions are sorted in the following order:
13136 - Standard exceptions (defined by the Ada language), in
13137 alphabetical order;
13138 - Exceptions only visible from the current frame, in
13139 alphabetical order;
13140 - Exceptions whose scope is global, in alphabetical order. */
13141
13142 std::vector<ada_exc_info>
13143 ada_exceptions_list (const char *regexp)
13144 {
13145 if (regexp == NULL)
13146 return ada_exceptions_list_1 (NULL);
13147
13148 compiled_regex reg (regexp, REG_NOSUB, _("invalid regular expression"));
13149 return ada_exceptions_list_1 (&reg);
13150 }
13151
13152 /* Implement the "info exceptions" command. */
13153
13154 static void
13155 info_exceptions_command (const char *regexp, int from_tty)
13156 {
13157 struct gdbarch *gdbarch = get_current_arch ();
13158
13159 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp);
13160
13161 if (regexp != NULL)
13162 printf_filtered
13163 (_("All Ada exceptions matching regular expression \"%s\":\n"), regexp);
13164 else
13165 printf_filtered (_("All defined Ada exceptions:\n"));
13166
13167 for (const ada_exc_info &info : exceptions)
13168 printf_filtered ("%s: %s\n", info.name, paddress (gdbarch, info.addr));
13169 }
13170
13171 /* Operators */
13172 /* Information about operators given special treatment in functions
13173 below. */
13174 /* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */
13175
13176 #define ADA_OPERATORS \
13177 OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \
13178 OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \
13179 OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \
13180 OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \
13181 OP_DEFN (OP_ATR_LAST, 1, 2, 0) \
13182 OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \
13183 OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \
13184 OP_DEFN (OP_ATR_MAX, 1, 3, 0) \
13185 OP_DEFN (OP_ATR_MIN, 1, 3, 0) \
13186 OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \
13187 OP_DEFN (OP_ATR_POS, 1, 2, 0) \
13188 OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \
13189 OP_DEFN (OP_ATR_TAG, 1, 1, 0) \
13190 OP_DEFN (OP_ATR_VAL, 1, 2, 0) \
13191 OP_DEFN (UNOP_QUAL, 3, 1, 0) \
13192 OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \
13193 OP_DEFN (OP_OTHERS, 1, 1, 0) \
13194 OP_DEFN (OP_POSITIONAL, 3, 1, 0) \
13195 OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0)
13196
13197 static void
13198 ada_operator_length (const struct expression *exp, int pc, int *oplenp,
13199 int *argsp)
13200 {
13201 switch (exp->elts[pc - 1].opcode)
13202 {
13203 default:
13204 operator_length_standard (exp, pc, oplenp, argsp);
13205 break;
13206
13207 #define OP_DEFN(op, len, args, binop) \
13208 case op: *oplenp = len; *argsp = args; break;
13209 ADA_OPERATORS;
13210 #undef OP_DEFN
13211
13212 case OP_AGGREGATE:
13213 *oplenp = 3;
13214 *argsp = longest_to_int (exp->elts[pc - 2].longconst);
13215 break;
13216
13217 case OP_CHOICES:
13218 *oplenp = 3;
13219 *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1;
13220 break;
13221 }
13222 }
13223
13224 /* Implementation of the exp_descriptor method operator_check. */
13225
13226 static int
13227 ada_operator_check (struct expression *exp, int pos,
13228 int (*objfile_func) (struct objfile *objfile, void *data),
13229 void *data)
13230 {
13231 const union exp_element *const elts = exp->elts;
13232 struct type *type = NULL;
13233
13234 switch (elts[pos].opcode)
13235 {
13236 case UNOP_IN_RANGE:
13237 case UNOP_QUAL:
13238 type = elts[pos + 1].type;
13239 break;
13240
13241 default:
13242 return operator_check_standard (exp, pos, objfile_func, data);
13243 }
13244
13245 /* Invoke callbacks for TYPE and OBJFILE if they were set as non-NULL. */
13246
13247 if (type != nullptr && type->objfile_owner () != nullptr
13248 && objfile_func (type->objfile_owner (), data))
13249 return 1;
13250
13251 return 0;
13252 }
13253
13254 /* As for operator_length, but assumes PC is pointing at the first
13255 element of the operator, and gives meaningful results only for the
13256 Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */
13257
13258 static void
13259 ada_forward_operator_length (struct expression *exp, int pc,
13260 int *oplenp, int *argsp)
13261 {
13262 switch (exp->elts[pc].opcode)
13263 {
13264 default:
13265 *oplenp = *argsp = 0;
13266 break;
13267
13268 #define OP_DEFN(op, len, args, binop) \
13269 case op: *oplenp = len; *argsp = args; break;
13270 ADA_OPERATORS;
13271 #undef OP_DEFN
13272
13273 case OP_AGGREGATE:
13274 *oplenp = 3;
13275 *argsp = longest_to_int (exp->elts[pc + 1].longconst);
13276 break;
13277
13278 case OP_CHOICES:
13279 *oplenp = 3;
13280 *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1;
13281 break;
13282
13283 case OP_STRING:
13284 case OP_NAME:
13285 {
13286 int len = longest_to_int (exp->elts[pc + 1].longconst);
13287
13288 *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1);
13289 *argsp = 0;
13290 break;
13291 }
13292 }
13293 }
13294
13295 static int
13296 ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
13297 {
13298 enum exp_opcode op = exp->elts[elt].opcode;
13299 int oplen, nargs;
13300 int pc = elt;
13301 int i;
13302
13303 ada_forward_operator_length (exp, elt, &oplen, &nargs);
13304
13305 switch (op)
13306 {
13307 /* Ada attributes ('Foo). */
13308 case OP_ATR_FIRST:
13309 case OP_ATR_LAST:
13310 case OP_ATR_LENGTH:
13311 case OP_ATR_IMAGE:
13312 case OP_ATR_MAX:
13313 case OP_ATR_MIN:
13314 case OP_ATR_MODULUS:
13315 case OP_ATR_POS:
13316 case OP_ATR_SIZE:
13317 case OP_ATR_TAG:
13318 case OP_ATR_VAL:
13319 break;
13320
13321 case UNOP_IN_RANGE:
13322 case UNOP_QUAL:
13323 /* XXX: gdb_sprint_host_address, type_sprint */
13324 fprintf_filtered (stream, _("Type @"));
13325 gdb_print_host_address (exp->elts[pc + 1].type, stream);
13326 fprintf_filtered (stream, " (");
13327 type_print (exp->elts[pc + 1].type, NULL, stream, 0);
13328 fprintf_filtered (stream, ")");
13329 break;
13330 case BINOP_IN_BOUNDS:
13331 fprintf_filtered (stream, " (%d)",
13332 longest_to_int (exp->elts[pc + 2].longconst));
13333 break;
13334 case TERNOP_IN_RANGE:
13335 break;
13336
13337 case OP_AGGREGATE:
13338 case OP_OTHERS:
13339 case OP_DISCRETE_RANGE:
13340 case OP_POSITIONAL:
13341 case OP_CHOICES:
13342 break;
13343
13344 case OP_NAME:
13345 case OP_STRING:
13346 {
13347 char *name = &exp->elts[elt + 2].string;
13348 int len = longest_to_int (exp->elts[elt + 1].longconst);
13349
13350 fprintf_filtered (stream, "Text: `%.*s'", len, name);
13351 break;
13352 }
13353
13354 default:
13355 return dump_subexp_body_standard (exp, stream, elt);
13356 }
13357
13358 elt += oplen;
13359 for (i = 0; i < nargs; i += 1)
13360 elt = dump_subexp (exp, stream, elt);
13361
13362 return elt;
13363 }
13364
13365 /* The Ada extension of print_subexp (q.v.). */
13366
13367 static void
13368 ada_print_subexp (struct expression *exp, int *pos,
13369 struct ui_file *stream, enum precedence prec)
13370 {
13371 int oplen, nargs, i;
13372 int pc = *pos;
13373 enum exp_opcode op = exp->elts[pc].opcode;
13374
13375 ada_forward_operator_length (exp, pc, &oplen, &nargs);
13376
13377 *pos += oplen;
13378 switch (op)
13379 {
13380 default:
13381 *pos -= oplen;
13382 print_subexp_standard (exp, pos, stream, prec);
13383 return;
13384
13385 case OP_VAR_VALUE:
13386 fputs_filtered (exp->elts[pc + 2].symbol->natural_name (), stream);
13387 return;
13388
13389 case BINOP_IN_BOUNDS:
13390 /* XXX: sprint_subexp */
13391 print_subexp (exp, pos, stream, PREC_SUFFIX);
13392 fputs_filtered (" in ", stream);
13393 print_subexp (exp, pos, stream, PREC_SUFFIX);
13394 fputs_filtered ("'range", stream);
13395 if (exp->elts[pc + 1].longconst > 1)
13396 fprintf_filtered (stream, "(%ld)",
13397 (long) exp->elts[pc + 1].longconst);
13398 return;
13399
13400 case TERNOP_IN_RANGE:
13401 if (prec >= PREC_EQUAL)
13402 fputs_filtered ("(", stream);
13403 /* XXX: sprint_subexp */
13404 print_subexp (exp, pos, stream, PREC_SUFFIX);
13405 fputs_filtered (" in ", stream);
13406 print_subexp (exp, pos, stream, PREC_EQUAL);
13407 fputs_filtered (" .. ", stream);
13408 print_subexp (exp, pos, stream, PREC_EQUAL);
13409 if (prec >= PREC_EQUAL)
13410 fputs_filtered (")", stream);
13411 return;
13412
13413 case OP_ATR_FIRST:
13414 case OP_ATR_LAST:
13415 case OP_ATR_LENGTH:
13416 case OP_ATR_IMAGE:
13417 case OP_ATR_MAX:
13418 case OP_ATR_MIN:
13419 case OP_ATR_MODULUS:
13420 case OP_ATR_POS:
13421 case OP_ATR_SIZE:
13422 case OP_ATR_TAG:
13423 case OP_ATR_VAL:
13424 if (exp->elts[*pos].opcode == OP_TYPE)
13425 {
13426 if (exp->elts[*pos + 1].type->code () != TYPE_CODE_VOID)
13427 LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0,
13428 &type_print_raw_options);
13429 *pos += 3;
13430 }
13431 else
13432 print_subexp (exp, pos, stream, PREC_SUFFIX);
13433 fprintf_filtered (stream, "'%s", ada_attribute_name (op));
13434 if (nargs > 1)
13435 {
13436 int tem;
13437
13438 for (tem = 1; tem < nargs; tem += 1)
13439 {
13440 fputs_filtered ((tem == 1) ? " (" : ", ", stream);
13441 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
13442 }
13443 fputs_filtered (")", stream);
13444 }
13445 return;
13446
13447 case UNOP_QUAL:
13448 type_print (exp->elts[pc + 1].type, "", stream, 0);
13449 fputs_filtered ("'(", stream);
13450 print_subexp (exp, pos, stream, PREC_PREFIX);
13451 fputs_filtered (")", stream);
13452 return;
13453
13454 case UNOP_IN_RANGE:
13455 /* XXX: sprint_subexp */
13456 print_subexp (exp, pos, stream, PREC_SUFFIX);
13457 fputs_filtered (" in ", stream);
13458 LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0,
13459 &type_print_raw_options);
13460 return;
13461
13462 case OP_DISCRETE_RANGE:
13463 print_subexp (exp, pos, stream, PREC_SUFFIX);
13464 fputs_filtered ("..", stream);
13465 print_subexp (exp, pos, stream, PREC_SUFFIX);
13466 return;
13467
13468 case OP_OTHERS:
13469 fputs_filtered ("others => ", stream);
13470 print_subexp (exp, pos, stream, PREC_SUFFIX);
13471 return;
13472
13473 case OP_CHOICES:
13474 for (i = 0; i < nargs-1; i += 1)
13475 {
13476 if (i > 0)
13477 fputs_filtered ("|", stream);
13478 print_subexp (exp, pos, stream, PREC_SUFFIX);
13479 }
13480 fputs_filtered (" => ", stream);
13481 print_subexp (exp, pos, stream, PREC_SUFFIX);
13482 return;
13483
13484 case OP_POSITIONAL:
13485 print_subexp (exp, pos, stream, PREC_SUFFIX);
13486 return;
13487
13488 case OP_AGGREGATE:
13489 fputs_filtered ("(", stream);
13490 for (i = 0; i < nargs; i += 1)
13491 {
13492 if (i > 0)
13493 fputs_filtered (", ", stream);
13494 print_subexp (exp, pos, stream, PREC_SUFFIX);
13495 }
13496 fputs_filtered (")", stream);
13497 return;
13498 }
13499 }
13500
13501 /* Table mapping opcodes into strings for printing operators
13502 and precedences of the operators. */
13503
13504 static const struct op_print ada_op_print_tab[] = {
13505 {":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
13506 {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
13507 {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
13508 {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
13509 {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
13510 {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
13511 {"=", BINOP_EQUAL, PREC_EQUAL, 0},
13512 {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
13513 {"<=", BINOP_LEQ, PREC_ORDER, 0},
13514 {">=", BINOP_GEQ, PREC_ORDER, 0},
13515 {">", BINOP_GTR, PREC_ORDER, 0},
13516 {"<", BINOP_LESS, PREC_ORDER, 0},
13517 {">>", BINOP_RSH, PREC_SHIFT, 0},
13518 {"<<", BINOP_LSH, PREC_SHIFT, 0},
13519 {"+", BINOP_ADD, PREC_ADD, 0},
13520 {"-", BINOP_SUB, PREC_ADD, 0},
13521 {"&", BINOP_CONCAT, PREC_ADD, 0},
13522 {"*", BINOP_MUL, PREC_MUL, 0},
13523 {"/", BINOP_DIV, PREC_MUL, 0},
13524 {"rem", BINOP_REM, PREC_MUL, 0},
13525 {"mod", BINOP_MOD, PREC_MUL, 0},
13526 {"**", BINOP_EXP, PREC_REPEAT, 0},
13527 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
13528 {"-", UNOP_NEG, PREC_PREFIX, 0},
13529 {"+", UNOP_PLUS, PREC_PREFIX, 0},
13530 {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
13531 {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0},
13532 {"abs ", UNOP_ABS, PREC_PREFIX, 0},
13533 {".all", UNOP_IND, PREC_SUFFIX, 1},
13534 {"'access", UNOP_ADDR, PREC_SUFFIX, 1},
13535 {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1},
13536 {NULL, OP_NULL, PREC_SUFFIX, 0}
13537 };
13538 \f
13539 /* Language vector */
13540
13541 static const struct exp_descriptor ada_exp_descriptor = {
13542 ada_print_subexp,
13543 ada_operator_length,
13544 ada_operator_check,
13545 ada_dump_subexp_body,
13546 ada_evaluate_subexp
13547 };
13548
13549 /* symbol_name_matcher_ftype adapter for wild_match. */
13550
13551 static bool
13552 do_wild_match (const char *symbol_search_name,
13553 const lookup_name_info &lookup_name,
13554 completion_match_result *comp_match_res)
13555 {
13556 return wild_match (symbol_search_name, ada_lookup_name (lookup_name));
13557 }
13558
13559 /* symbol_name_matcher_ftype adapter for full_match. */
13560
13561 static bool
13562 do_full_match (const char *symbol_search_name,
13563 const lookup_name_info &lookup_name,
13564 completion_match_result *comp_match_res)
13565 {
13566 const char *lname = lookup_name.ada ().lookup_name ().c_str ();
13567
13568 /* If both symbols start with "_ada_", just let the loop below
13569 handle the comparison. However, if only the symbol name starts
13570 with "_ada_", skip the prefix and let the match proceed as
13571 usual. */
13572 if (startswith (symbol_search_name, "_ada_")
13573 && !startswith (lname, "_ada"))
13574 symbol_search_name += 5;
13575
13576 int uscore_count = 0;
13577 while (*lname != '\0')
13578 {
13579 if (*symbol_search_name != *lname)
13580 {
13581 if (*symbol_search_name == 'B' && uscore_count == 2
13582 && symbol_search_name[1] == '_')
13583 {
13584 symbol_search_name += 2;
13585 while (isdigit (*symbol_search_name))
13586 ++symbol_search_name;
13587 if (symbol_search_name[0] == '_'
13588 && symbol_search_name[1] == '_')
13589 {
13590 symbol_search_name += 2;
13591 continue;
13592 }
13593 }
13594 return false;
13595 }
13596
13597 if (*symbol_search_name == '_')
13598 ++uscore_count;
13599 else
13600 uscore_count = 0;
13601
13602 ++symbol_search_name;
13603 ++lname;
13604 }
13605
13606 return is_name_suffix (symbol_search_name);
13607 }
13608
13609 /* symbol_name_matcher_ftype for exact (verbatim) matches. */
13610
13611 static bool
13612 do_exact_match (const char *symbol_search_name,
13613 const lookup_name_info &lookup_name,
13614 completion_match_result *comp_match_res)
13615 {
13616 return strcmp (symbol_search_name, ada_lookup_name (lookup_name)) == 0;
13617 }
13618
13619 /* Build the Ada lookup name for LOOKUP_NAME. */
13620
13621 ada_lookup_name_info::ada_lookup_name_info (const lookup_name_info &lookup_name)
13622 {
13623 gdb::string_view user_name = lookup_name.name ();
13624
13625 if (!user_name.empty () && user_name[0] == '<')
13626 {
13627 if (user_name.back () == '>')
13628 m_encoded_name
13629 = gdb::to_string (user_name.substr (1, user_name.size () - 2));
13630 else
13631 m_encoded_name
13632 = gdb::to_string (user_name.substr (1, user_name.size () - 1));
13633 m_encoded_p = true;
13634 m_verbatim_p = true;
13635 m_wild_match_p = false;
13636 m_standard_p = false;
13637 }
13638 else
13639 {
13640 m_verbatim_p = false;
13641
13642 m_encoded_p = user_name.find ("__") != gdb::string_view::npos;
13643
13644 if (!m_encoded_p)
13645 {
13646 const char *folded = ada_fold_name (user_name);
13647 m_encoded_name = ada_encode_1 (folded, false);
13648 if (m_encoded_name.empty ())
13649 m_encoded_name = gdb::to_string (user_name);
13650 }
13651 else
13652 m_encoded_name = gdb::to_string (user_name);
13653
13654 /* Handle the 'package Standard' special case. See description
13655 of m_standard_p. */
13656 if (startswith (m_encoded_name.c_str (), "standard__"))
13657 {
13658 m_encoded_name = m_encoded_name.substr (sizeof ("standard__") - 1);
13659 m_standard_p = true;
13660 }
13661 else
13662 m_standard_p = false;
13663
13664 /* If the name contains a ".", then the user is entering a fully
13665 qualified entity name, and the match must not be done in wild
13666 mode. Similarly, if the user wants to complete what looks
13667 like an encoded name, the match must not be done in wild
13668 mode. Also, in the standard__ special case always do
13669 non-wild matching. */
13670 m_wild_match_p
13671 = (lookup_name.match_type () != symbol_name_match_type::FULL
13672 && !m_encoded_p
13673 && !m_standard_p
13674 && user_name.find ('.') == std::string::npos);
13675 }
13676 }
13677
13678 /* symbol_name_matcher_ftype method for Ada. This only handles
13679 completion mode. */
13680
13681 static bool
13682 ada_symbol_name_matches (const char *symbol_search_name,
13683 const lookup_name_info &lookup_name,
13684 completion_match_result *comp_match_res)
13685 {
13686 return lookup_name.ada ().matches (symbol_search_name,
13687 lookup_name.match_type (),
13688 comp_match_res);
13689 }
13690
13691 /* A name matcher that matches the symbol name exactly, with
13692 strcmp. */
13693
13694 static bool
13695 literal_symbol_name_matcher (const char *symbol_search_name,
13696 const lookup_name_info &lookup_name,
13697 completion_match_result *comp_match_res)
13698 {
13699 gdb::string_view name_view = lookup_name.name ();
13700
13701 if (lookup_name.completion_mode ()
13702 ? (strncmp (symbol_search_name, name_view.data (),
13703 name_view.size ()) == 0)
13704 : symbol_search_name == name_view)
13705 {
13706 if (comp_match_res != NULL)
13707 comp_match_res->set_match (symbol_search_name);
13708 return true;
13709 }
13710 else
13711 return false;
13712 }
13713
13714 /* Implement the "get_symbol_name_matcher" language_defn method for
13715 Ada. */
13716
13717 static symbol_name_matcher_ftype *
13718 ada_get_symbol_name_matcher (const lookup_name_info &lookup_name)
13719 {
13720 if (lookup_name.match_type () == symbol_name_match_type::SEARCH_NAME)
13721 return literal_symbol_name_matcher;
13722
13723 if (lookup_name.completion_mode ())
13724 return ada_symbol_name_matches;
13725 else
13726 {
13727 if (lookup_name.ada ().wild_match_p ())
13728 return do_wild_match;
13729 else if (lookup_name.ada ().verbatim_p ())
13730 return do_exact_match;
13731 else
13732 return do_full_match;
13733 }
13734 }
13735
13736 /* Class representing the Ada language. */
13737
13738 class ada_language : public language_defn
13739 {
13740 public:
13741 ada_language ()
13742 : language_defn (language_ada)
13743 { /* Nothing. */ }
13744
13745 /* See language.h. */
13746
13747 const char *name () const override
13748 { return "ada"; }
13749
13750 /* See language.h. */
13751
13752 const char *natural_name () const override
13753 { return "Ada"; }
13754
13755 /* See language.h. */
13756
13757 const std::vector<const char *> &filename_extensions () const override
13758 {
13759 static const std::vector<const char *> extensions
13760 = { ".adb", ".ads", ".a", ".ada", ".dg" };
13761 return extensions;
13762 }
13763
13764 /* Print an array element index using the Ada syntax. */
13765
13766 void print_array_index (struct type *index_type,
13767 LONGEST index,
13768 struct ui_file *stream,
13769 const value_print_options *options) const override
13770 {
13771 struct value *index_value = val_atr (index_type, index);
13772
13773 value_print (index_value, stream, options);
13774 fprintf_filtered (stream, " => ");
13775 }
13776
13777 /* Implement the "read_var_value" language_defn method for Ada. */
13778
13779 struct value *read_var_value (struct symbol *var,
13780 const struct block *var_block,
13781 struct frame_info *frame) const override
13782 {
13783 /* The only case where default_read_var_value is not sufficient
13784 is when VAR is a renaming... */
13785 if (frame != nullptr)
13786 {
13787 const struct block *frame_block = get_frame_block (frame, NULL);
13788 if (frame_block != nullptr && ada_is_renaming_symbol (var))
13789 return ada_read_renaming_var_value (var, frame_block);
13790 }
13791
13792 /* This is a typical case where we expect the default_read_var_value
13793 function to work. */
13794 return language_defn::read_var_value (var, var_block, frame);
13795 }
13796
13797 /* See language.h. */
13798 void language_arch_info (struct gdbarch *gdbarch,
13799 struct language_arch_info *lai) const override
13800 {
13801 const struct builtin_type *builtin = builtin_type (gdbarch);
13802
13803 /* Helper function to allow shorter lines below. */
13804 auto add = [&] (struct type *t)
13805 {
13806 lai->add_primitive_type (t);
13807 };
13808
13809 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13810 0, "integer"));
13811 add (arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
13812 0, "long_integer"));
13813 add (arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
13814 0, "short_integer"));
13815 struct type *char_type = arch_character_type (gdbarch, TARGET_CHAR_BIT,
13816 0, "character");
13817 lai->set_string_char_type (char_type);
13818 add (char_type);
13819 add (arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
13820 "float", gdbarch_float_format (gdbarch)));
13821 add (arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
13822 "long_float", gdbarch_double_format (gdbarch)));
13823 add (arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
13824 0, "long_long_integer"));
13825 add (arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
13826 "long_long_float",
13827 gdbarch_long_double_format (gdbarch)));
13828 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13829 0, "natural"));
13830 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13831 0, "positive"));
13832 add (builtin->builtin_void);
13833
13834 struct type *system_addr_ptr
13835 = lookup_pointer_type (arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT,
13836 "void"));
13837 system_addr_ptr->set_name ("system__address");
13838 add (system_addr_ptr);
13839
13840 /* Create the equivalent of the System.Storage_Elements.Storage_Offset
13841 type. This is a signed integral type whose size is the same as
13842 the size of addresses. */
13843 unsigned int addr_length = TYPE_LENGTH (system_addr_ptr);
13844 add (arch_integer_type (gdbarch, addr_length * HOST_CHAR_BIT, 0,
13845 "storage_offset"));
13846
13847 lai->set_bool_type (builtin->builtin_bool);
13848 }
13849
13850 /* See language.h. */
13851
13852 bool iterate_over_symbols
13853 (const struct block *block, const lookup_name_info &name,
13854 domain_enum domain,
13855 gdb::function_view<symbol_found_callback_ftype> callback) const override
13856 {
13857 std::vector<struct block_symbol> results;
13858
13859 ada_lookup_symbol_list_worker (name, block, domain, &results, 0);
13860 for (block_symbol &sym : results)
13861 {
13862 if (!callback (&sym))
13863 return false;
13864 }
13865
13866 return true;
13867 }
13868
13869 /* See language.h. */
13870 bool sniff_from_mangled_name (const char *mangled,
13871 char **out) const override
13872 {
13873 std::string demangled = ada_decode (mangled);
13874
13875 *out = NULL;
13876
13877 if (demangled != mangled && demangled[0] != '<')
13878 {
13879 /* Set the gsymbol language to Ada, but still return 0.
13880 Two reasons for that:
13881
13882 1. For Ada, we prefer computing the symbol's decoded name
13883 on the fly rather than pre-compute it, in order to save
13884 memory (Ada projects are typically very large).
13885
13886 2. There are some areas in the definition of the GNAT
13887 encoding where, with a bit of bad luck, we might be able
13888 to decode a non-Ada symbol, generating an incorrect
13889 demangled name (Eg: names ending with "TB" for instance
13890 are identified as task bodies and so stripped from
13891 the decoded name returned).
13892
13893 Returning true, here, but not setting *DEMANGLED, helps us get
13894 a little bit of the best of both worlds. Because we're last,
13895 we should not affect any of the other languages that were
13896 able to demangle the symbol before us; we get to correctly
13897 tag Ada symbols as such; and even if we incorrectly tagged a
13898 non-Ada symbol, which should be rare, any routing through the
13899 Ada language should be transparent (Ada tries to behave much
13900 like C/C++ with non-Ada symbols). */
13901 return true;
13902 }
13903
13904 return false;
13905 }
13906
13907 /* See language.h. */
13908
13909 char *demangle_symbol (const char *mangled, int options) const override
13910 {
13911 return ada_la_decode (mangled, options);
13912 }
13913
13914 /* See language.h. */
13915
13916 void print_type (struct type *type, const char *varstring,
13917 struct ui_file *stream, int show, int level,
13918 const struct type_print_options *flags) const override
13919 {
13920 ada_print_type (type, varstring, stream, show, level, flags);
13921 }
13922
13923 /* See language.h. */
13924
13925 const char *word_break_characters (void) const override
13926 {
13927 return ada_completer_word_break_characters;
13928 }
13929
13930 /* See language.h. */
13931
13932 void collect_symbol_completion_matches (completion_tracker &tracker,
13933 complete_symbol_mode mode,
13934 symbol_name_match_type name_match_type,
13935 const char *text, const char *word,
13936 enum type_code code) const override
13937 {
13938 struct symbol *sym;
13939 const struct block *b, *surrounding_static_block = 0;
13940 struct block_iterator iter;
13941
13942 gdb_assert (code == TYPE_CODE_UNDEF);
13943
13944 lookup_name_info lookup_name (text, name_match_type, true);
13945
13946 /* First, look at the partial symtab symbols. */
13947 expand_symtabs_matching (NULL,
13948 lookup_name,
13949 NULL,
13950 NULL,
13951 ALL_DOMAIN);
13952
13953 /* At this point scan through the misc symbol vectors and add each
13954 symbol you find to the list. Eventually we want to ignore
13955 anything that isn't a text symbol (everything else will be
13956 handled by the psymtab code above). */
13957
13958 for (objfile *objfile : current_program_space->objfiles ())
13959 {
13960 for (minimal_symbol *msymbol : objfile->msymbols ())
13961 {
13962 QUIT;
13963
13964 if (completion_skip_symbol (mode, msymbol))
13965 continue;
13966
13967 language symbol_language = msymbol->language ();
13968
13969 /* Ada minimal symbols won't have their language set to Ada. If
13970 we let completion_list_add_name compare using the
13971 default/C-like matcher, then when completing e.g., symbols in a
13972 package named "pck", we'd match internal Ada symbols like
13973 "pckS", which are invalid in an Ada expression, unless you wrap
13974 them in '<' '>' to request a verbatim match.
13975
13976 Unfortunately, some Ada encoded names successfully demangle as
13977 C++ symbols (using an old mangling scheme), such as "name__2Xn"
13978 -> "Xn::name(void)" and thus some Ada minimal symbols end up
13979 with the wrong language set. Paper over that issue here. */
13980 if (symbol_language == language_auto
13981 || symbol_language == language_cplus)
13982 symbol_language = language_ada;
13983
13984 completion_list_add_name (tracker,
13985 symbol_language,
13986 msymbol->linkage_name (),
13987 lookup_name, text, word);
13988 }
13989 }
13990
13991 /* Search upwards from currently selected frame (so that we can
13992 complete on local vars. */
13993
13994 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
13995 {
13996 if (!BLOCK_SUPERBLOCK (b))
13997 surrounding_static_block = b; /* For elmin of dups */
13998
13999 ALL_BLOCK_SYMBOLS (b, iter, sym)
14000 {
14001 if (completion_skip_symbol (mode, sym))
14002 continue;
14003
14004 completion_list_add_name (tracker,
14005 sym->language (),
14006 sym->linkage_name (),
14007 lookup_name, text, word);
14008 }
14009 }
14010
14011 /* Go through the symtabs and check the externs and statics for
14012 symbols which match. */
14013
14014 for (objfile *objfile : current_program_space->objfiles ())
14015 {
14016 for (compunit_symtab *s : objfile->compunits ())
14017 {
14018 QUIT;
14019 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), GLOBAL_BLOCK);
14020 ALL_BLOCK_SYMBOLS (b, iter, sym)
14021 {
14022 if (completion_skip_symbol (mode, sym))
14023 continue;
14024
14025 completion_list_add_name (tracker,
14026 sym->language (),
14027 sym->linkage_name (),
14028 lookup_name, text, word);
14029 }
14030 }
14031 }
14032
14033 for (objfile *objfile : current_program_space->objfiles ())
14034 {
14035 for (compunit_symtab *s : objfile->compunits ())
14036 {
14037 QUIT;
14038 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), STATIC_BLOCK);
14039 /* Don't do this block twice. */
14040 if (b == surrounding_static_block)
14041 continue;
14042 ALL_BLOCK_SYMBOLS (b, iter, sym)
14043 {
14044 if (completion_skip_symbol (mode, sym))
14045 continue;
14046
14047 completion_list_add_name (tracker,
14048 sym->language (),
14049 sym->linkage_name (),
14050 lookup_name, text, word);
14051 }
14052 }
14053 }
14054 }
14055
14056 /* See language.h. */
14057
14058 gdb::unique_xmalloc_ptr<char> watch_location_expression
14059 (struct type *type, CORE_ADDR addr) const override
14060 {
14061 type = check_typedef (TYPE_TARGET_TYPE (check_typedef (type)));
14062 std::string name = type_to_string (type);
14063 return gdb::unique_xmalloc_ptr<char>
14064 (xstrprintf ("{%s} %s", name.c_str (), core_addr_to_string (addr)));
14065 }
14066
14067 /* See language.h. */
14068
14069 void value_print (struct value *val, struct ui_file *stream,
14070 const struct value_print_options *options) const override
14071 {
14072 return ada_value_print (val, stream, options);
14073 }
14074
14075 /* See language.h. */
14076
14077 void value_print_inner
14078 (struct value *val, struct ui_file *stream, int recurse,
14079 const struct value_print_options *options) const override
14080 {
14081 return ada_value_print_inner (val, stream, recurse, options);
14082 }
14083
14084 /* See language.h. */
14085
14086 struct block_symbol lookup_symbol_nonlocal
14087 (const char *name, const struct block *block,
14088 const domain_enum domain) const override
14089 {
14090 struct block_symbol sym;
14091
14092 sym = ada_lookup_symbol (name, block_static_block (block), domain);
14093 if (sym.symbol != NULL)
14094 return sym;
14095
14096 /* If we haven't found a match at this point, try the primitive
14097 types. In other languages, this search is performed before
14098 searching for global symbols in order to short-circuit that
14099 global-symbol search if it happens that the name corresponds
14100 to a primitive type. But we cannot do the same in Ada, because
14101 it is perfectly legitimate for a program to declare a type which
14102 has the same name as a standard type. If looking up a type in
14103 that situation, we have traditionally ignored the primitive type
14104 in favor of user-defined types. This is why, unlike most other
14105 languages, we search the primitive types this late and only after
14106 having searched the global symbols without success. */
14107
14108 if (domain == VAR_DOMAIN)
14109 {
14110 struct gdbarch *gdbarch;
14111
14112 if (block == NULL)
14113 gdbarch = target_gdbarch ();
14114 else
14115 gdbarch = block_gdbarch (block);
14116 sym.symbol
14117 = language_lookup_primitive_type_as_symbol (this, gdbarch, name);
14118 if (sym.symbol != NULL)
14119 return sym;
14120 }
14121
14122 return {};
14123 }
14124
14125 /* See language.h. */
14126
14127 int parser (struct parser_state *ps) const override
14128 {
14129 warnings_issued = 0;
14130 return ada_parse (ps);
14131 }
14132
14133 /* See language.h.
14134
14135 Same as evaluate_type (*EXP), but resolves ambiguous symbol references
14136 (marked by OP_VAR_VALUE nodes in which the symbol has an undefined
14137 namespace) and converts operators that are user-defined into
14138 appropriate function calls. If CONTEXT_TYPE is non-null, it provides
14139 a preferred result type [at the moment, only type void has any
14140 effect---causing procedures to be preferred over functions in calls].
14141 A null CONTEXT_TYPE indicates that a non-void return type is
14142 preferred. May change (expand) *EXP. */
14143
14144 void post_parser (expression_up *expp, struct parser_state *ps)
14145 const override
14146 {
14147 struct type *context_type = NULL;
14148 int pc = 0;
14149
14150 if (ps->void_context_p)
14151 context_type = builtin_type ((*expp)->gdbarch)->builtin_void;
14152
14153 resolve_subexp (expp, &pc, 1, context_type, ps->parse_completion,
14154 ps->block_tracker);
14155 }
14156
14157 /* See language.h. */
14158
14159 void emitchar (int ch, struct type *chtype,
14160 struct ui_file *stream, int quoter) const override
14161 {
14162 ada_emit_char (ch, chtype, stream, quoter, 1);
14163 }
14164
14165 /* See language.h. */
14166
14167 void printchar (int ch, struct type *chtype,
14168 struct ui_file *stream) const override
14169 {
14170 ada_printchar (ch, chtype, stream);
14171 }
14172
14173 /* See language.h. */
14174
14175 void printstr (struct ui_file *stream, struct type *elttype,
14176 const gdb_byte *string, unsigned int length,
14177 const char *encoding, int force_ellipses,
14178 const struct value_print_options *options) const override
14179 {
14180 ada_printstr (stream, elttype, string, length, encoding,
14181 force_ellipses, options);
14182 }
14183
14184 /* See language.h. */
14185
14186 void print_typedef (struct type *type, struct symbol *new_symbol,
14187 struct ui_file *stream) const override
14188 {
14189 ada_print_typedef (type, new_symbol, stream);
14190 }
14191
14192 /* See language.h. */
14193
14194 bool is_string_type_p (struct type *type) const override
14195 {
14196 return ada_is_string_type (type);
14197 }
14198
14199 /* See language.h. */
14200
14201 const char *struct_too_deep_ellipsis () const override
14202 { return "(...)"; }
14203
14204 /* See language.h. */
14205
14206 bool c_style_arrays_p () const override
14207 { return false; }
14208
14209 /* See language.h. */
14210
14211 bool store_sym_names_in_linkage_form_p () const override
14212 { return true; }
14213
14214 /* See language.h. */
14215
14216 const struct lang_varobj_ops *varobj_ops () const override
14217 { return &ada_varobj_ops; }
14218
14219 /* See language.h. */
14220
14221 const struct exp_descriptor *expression_ops () const override
14222 { return &ada_exp_descriptor; }
14223
14224 /* See language.h. */
14225
14226 const struct op_print *opcode_print_table () const override
14227 { return ada_op_print_tab; }
14228
14229 protected:
14230 /* See language.h. */
14231
14232 symbol_name_matcher_ftype *get_symbol_name_matcher_inner
14233 (const lookup_name_info &lookup_name) const override
14234 {
14235 return ada_get_symbol_name_matcher (lookup_name);
14236 }
14237 };
14238
14239 /* Single instance of the Ada language class. */
14240
14241 static ada_language ada_language_defn;
14242
14243 /* Command-list for the "set/show ada" prefix command. */
14244 static struct cmd_list_element *set_ada_list;
14245 static struct cmd_list_element *show_ada_list;
14246
14247 static void
14248 initialize_ada_catchpoint_ops (void)
14249 {
14250 struct breakpoint_ops *ops;
14251
14252 initialize_breakpoint_ops ();
14253
14254 ops = &catch_exception_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_exception_unhandled_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_assert_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 ops = &catch_handlers_breakpoint_ops;
14285 *ops = bkpt_breakpoint_ops;
14286 ops->allocate_location = allocate_location_exception;
14287 ops->re_set = re_set_exception;
14288 ops->check_status = check_status_exception;
14289 ops->print_it = print_it_exception;
14290 ops->print_one = print_one_exception;
14291 ops->print_mention = print_mention_exception;
14292 ops->print_recreate = print_recreate_exception;
14293 }
14294
14295 /* This module's 'new_objfile' observer. */
14296
14297 static void
14298 ada_new_objfile_observer (struct objfile *objfile)
14299 {
14300 ada_clear_symbol_cache ();
14301 }
14302
14303 /* This module's 'free_objfile' observer. */
14304
14305 static void
14306 ada_free_objfile_observer (struct objfile *objfile)
14307 {
14308 ada_clear_symbol_cache ();
14309 }
14310
14311 void _initialize_ada_language ();
14312 void
14313 _initialize_ada_language ()
14314 {
14315 initialize_ada_catchpoint_ops ();
14316
14317 add_basic_prefix_cmd ("ada", no_class,
14318 _("Prefix command for changing Ada-specific settings."),
14319 &set_ada_list, "set ada ", 0, &setlist);
14320
14321 add_show_prefix_cmd ("ada", no_class,
14322 _("Generic command for showing Ada-specific settings."),
14323 &show_ada_list, "show ada ", 0, &showlist);
14324
14325 add_setshow_boolean_cmd ("trust-PAD-over-XVS", class_obscure,
14326 &trust_pad_over_xvs, _("\
14327 Enable or disable an optimization trusting PAD types over XVS types."), _("\
14328 Show whether an optimization trusting PAD types over XVS types is activated."),
14329 _("\
14330 This is related to the encoding used by the GNAT compiler. The debugger\n\
14331 should normally trust the contents of PAD types, but certain older versions\n\
14332 of GNAT have a bug that sometimes causes the information in the PAD type\n\
14333 to be incorrect. Turning this setting \"off\" allows the debugger to\n\
14334 work around this bug. It is always safe to turn this option \"off\", but\n\
14335 this incurs a slight performance penalty, so it is recommended to NOT change\n\
14336 this option to \"off\" unless necessary."),
14337 NULL, NULL, &set_ada_list, &show_ada_list);
14338
14339 add_setshow_boolean_cmd ("print-signatures", class_vars,
14340 &print_signatures, _("\
14341 Enable or disable the output of formal and return types for functions in the \
14342 overloads selection menu."), _("\
14343 Show whether the output of formal and return types for functions in the \
14344 overloads selection menu is activated."),
14345 NULL, NULL, NULL, &set_ada_list, &show_ada_list);
14346
14347 add_catch_command ("exception", _("\
14348 Catch Ada exceptions, when raised.\n\
14349 Usage: catch exception [ARG] [if CONDITION]\n\
14350 Without any argument, stop when any Ada exception is raised.\n\
14351 If ARG is \"unhandled\" (without the quotes), only stop when the exception\n\
14352 being raised does not have a handler (and will therefore lead to the task's\n\
14353 termination).\n\
14354 Otherwise, the catchpoint only stops when the name of the exception being\n\
14355 raised is the same as ARG.\n\
14356 CONDITION is a boolean expression that is evaluated to see whether the\n\
14357 exception should cause a stop."),
14358 catch_ada_exception_command,
14359 catch_ada_completer,
14360 CATCH_PERMANENT,
14361 CATCH_TEMPORARY);
14362
14363 add_catch_command ("handlers", _("\
14364 Catch Ada exceptions, when handled.\n\
14365 Usage: catch handlers [ARG] [if CONDITION]\n\
14366 Without any argument, stop when any Ada exception is handled.\n\
14367 With an argument, catch only exceptions with the given name.\n\
14368 CONDITION is a boolean expression that is evaluated to see whether the\n\
14369 exception should cause a stop."),
14370 catch_ada_handlers_command,
14371 catch_ada_completer,
14372 CATCH_PERMANENT,
14373 CATCH_TEMPORARY);
14374 add_catch_command ("assert", _("\
14375 Catch failed Ada assertions, when raised.\n\
14376 Usage: catch assert [if CONDITION]\n\
14377 CONDITION is a boolean expression that is evaluated to see whether the\n\
14378 exception should cause a stop."),
14379 catch_assert_command,
14380 NULL,
14381 CATCH_PERMANENT,
14382 CATCH_TEMPORARY);
14383
14384 varsize_limit = 65536;
14385 add_setshow_uinteger_cmd ("varsize-limit", class_support,
14386 &varsize_limit, _("\
14387 Set the maximum number of bytes allowed in a variable-size object."), _("\
14388 Show the maximum number of bytes allowed in a variable-size object."), _("\
14389 Attempts to access an object whose size is not a compile-time constant\n\
14390 and exceeds this limit will cause an error."),
14391 NULL, NULL, &setlist, &showlist);
14392
14393 add_info ("exceptions", info_exceptions_command,
14394 _("\
14395 List all Ada exception names.\n\
14396 Usage: info exceptions [REGEXP]\n\
14397 If a regular expression is passed as an argument, only those matching\n\
14398 the regular expression are listed."));
14399
14400 add_basic_prefix_cmd ("ada", class_maintenance,
14401 _("Set Ada maintenance-related variables."),
14402 &maint_set_ada_cmdlist, "maintenance set ada ",
14403 0/*allow-unknown*/, &maintenance_set_cmdlist);
14404
14405 add_show_prefix_cmd ("ada", class_maintenance,
14406 _("Show Ada maintenance-related variables."),
14407 &maint_show_ada_cmdlist, "maintenance show ada ",
14408 0/*allow-unknown*/, &maintenance_show_cmdlist);
14409
14410 add_setshow_boolean_cmd
14411 ("ignore-descriptive-types", class_maintenance,
14412 &ada_ignore_descriptive_types_p,
14413 _("Set whether descriptive types generated by GNAT should be ignored."),
14414 _("Show whether descriptive types generated by GNAT should be ignored."),
14415 _("\
14416 When enabled, the debugger will stop using the DW_AT_GNAT_descriptive_type\n\
14417 DWARF attribute."),
14418 NULL, NULL, &maint_set_ada_cmdlist, &maint_show_ada_cmdlist);
14419
14420 decoded_names_store = htab_create_alloc (256, htab_hash_string, streq_hash,
14421 NULL, xcalloc, xfree);
14422
14423 /* The ada-lang observers. */
14424 gdb::observers::new_objfile.attach (ada_new_objfile_observer);
14425 gdb::observers::free_objfile.attach (ada_free_objfile_observer);
14426 gdb::observers::inferior_exit.attach (ada_inferior_exit);
14427 }