7ae3343a63078421c8f5fc2eddead7e438642610
[deliverable/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 #include "ada-exp.h"
61
62 /* Define whether or not the C operator '/' truncates towards zero for
63 differently signed operands (truncation direction is undefined in C).
64 Copied from valarith.c. */
65
66 #ifndef TRUNCATION_TOWARDS_ZERO
67 #define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2)
68 #endif
69
70 static struct type *desc_base_type (struct type *);
71
72 static struct type *desc_bounds_type (struct type *);
73
74 static struct value *desc_bounds (struct value *);
75
76 static int fat_pntr_bounds_bitpos (struct type *);
77
78 static int fat_pntr_bounds_bitsize (struct type *);
79
80 static struct type *desc_data_target_type (struct type *);
81
82 static struct value *desc_data (struct value *);
83
84 static int fat_pntr_data_bitpos (struct type *);
85
86 static int fat_pntr_data_bitsize (struct type *);
87
88 static struct value *desc_one_bound (struct value *, int, int);
89
90 static int desc_bound_bitpos (struct type *, int, int);
91
92 static int desc_bound_bitsize (struct type *, int, int);
93
94 static struct type *desc_index_type (struct type *, int);
95
96 static int desc_arity (struct type *);
97
98 static int ada_type_match (struct type *, struct type *, int);
99
100 static int ada_args_match (struct symbol *, struct value **, int);
101
102 static struct value *make_array_descriptor (struct type *, struct value *);
103
104 static void ada_add_block_symbols (std::vector<struct block_symbol> &,
105 const struct block *,
106 const lookup_name_info &lookup_name,
107 domain_enum, struct objfile *);
108
109 static void ada_add_all_symbols (std::vector<struct block_symbol> &,
110 const struct block *,
111 const lookup_name_info &lookup_name,
112 domain_enum, int, int *);
113
114 static int is_nonfunction (const std::vector<struct block_symbol> &);
115
116 static void add_defn_to_vec (std::vector<struct block_symbol> &,
117 struct symbol *,
118 const struct block *);
119
120 static struct value *resolve_subexp (expression_up *, int *, int,
121 struct type *, int,
122 innermost_block_tracker *);
123
124 static void replace_operator_with_call (expression_up *, int, int, int,
125 struct symbol *, const struct block *);
126
127 static int possible_user_operator_p (enum exp_opcode, struct value **);
128
129 static const char *ada_decoded_op_name (enum exp_opcode);
130
131 static int numeric_type_p (struct type *);
132
133 static int integer_type_p (struct type *);
134
135 static int scalar_type_p (struct type *);
136
137 static int discrete_type_p (struct type *);
138
139 static struct type *ada_lookup_struct_elt_type (struct type *, const char *,
140 int, int);
141
142 static struct value *evaluate_subexp_type (struct expression *, int *);
143
144 static struct type *ada_find_parallel_type_with_name (struct type *,
145 const char *);
146
147 static int is_dynamic_field (struct type *, int);
148
149 static struct type *to_fixed_variant_branch_type (struct type *,
150 const gdb_byte *,
151 CORE_ADDR, struct value *);
152
153 static struct type *to_fixed_array_type (struct type *, struct value *, int);
154
155 static struct type *to_fixed_range_type (struct type *, struct value *);
156
157 static struct type *to_static_fixed_type (struct type *);
158 static struct type *static_unwrap_type (struct type *type);
159
160 static struct value *unwrap_value (struct value *);
161
162 static struct type *constrained_packed_array_type (struct type *, long *);
163
164 static struct type *decode_constrained_packed_array_type (struct type *);
165
166 static long decode_packed_array_bitsize (struct type *);
167
168 static struct value *decode_constrained_packed_array (struct value *);
169
170 static int ada_is_unconstrained_packed_array_type (struct type *);
171
172 static struct value *value_subscript_packed (struct value *, int,
173 struct value **);
174
175 static struct value *coerce_unspec_val_to_type (struct value *,
176 struct type *);
177
178 static int lesseq_defined_than (struct symbol *, struct symbol *);
179
180 static int equiv_types (struct type *, struct type *);
181
182 static int is_name_suffix (const char *);
183
184 static int advance_wild_match (const char **, const char *, char);
185
186 static bool wild_match (const char *name, const char *patn);
187
188 static struct value *ada_coerce_ref (struct value *);
189
190 static LONGEST pos_atr (struct value *);
191
192 static struct value *value_pos_atr (struct type *, struct value *);
193
194 static struct value *val_atr (struct type *, LONGEST);
195
196 static struct symbol *standard_lookup (const char *, const struct block *,
197 domain_enum);
198
199 static struct value *ada_search_struct_field (const char *, struct value *, int,
200 struct type *);
201
202 static int find_struct_field (const char *, struct type *, int,
203 struct type **, int *, int *, int *, int *);
204
205 static int ada_resolve_function (std::vector<struct block_symbol> &,
206 struct value **, int, const char *,
207 struct type *, int);
208
209 static int ada_is_direct_array_type (struct type *);
210
211 static struct value *ada_index_struct_field (int, struct value *, int,
212 struct type *);
213
214 static struct value *assign_aggregate (struct value *, struct value *,
215 struct expression *,
216 int *, enum noside);
217
218 static void aggregate_assign_from_choices (struct value *, struct value *,
219 struct expression *,
220 int *, std::vector<LONGEST> &,
221 LONGEST, LONGEST);
222
223 static void aggregate_assign_positional (struct value *, struct value *,
224 struct expression *,
225 int *, std::vector<LONGEST> &,
226 LONGEST, LONGEST);
227
228
229 static void aggregate_assign_others (struct value *, struct value *,
230 struct expression *,
231 int *, std::vector<LONGEST> &,
232 LONGEST, LONGEST);
233
234
235 static void add_component_interval (LONGEST, LONGEST, std::vector<LONGEST> &);
236
237
238 static struct value *ada_evaluate_subexp (struct type *, struct expression *,
239 int *, enum noside);
240
241 static void ada_forward_operator_length (struct expression *, int, int *,
242 int *);
243
244 static struct type *ada_find_any_type (const char *name);
245
246 static symbol_name_matcher_ftype *ada_get_symbol_name_matcher
247 (const lookup_name_info &lookup_name);
248
249 \f
250
251 /* The result of a symbol lookup to be stored in our symbol cache. */
252
253 struct cache_entry
254 {
255 /* The name used to perform the lookup. */
256 const char *name;
257 /* The namespace used during the lookup. */
258 domain_enum domain;
259 /* The symbol returned by the lookup, or NULL if no matching symbol
260 was found. */
261 struct symbol *sym;
262 /* The block where the symbol was found, or NULL if no matching
263 symbol was found. */
264 const struct block *block;
265 /* A pointer to the next entry with the same hash. */
266 struct cache_entry *next;
267 };
268
269 /* The Ada symbol cache, used to store the result of Ada-mode symbol
270 lookups in the course of executing the user's commands.
271
272 The cache is implemented using a simple, fixed-sized hash.
273 The size is fixed on the grounds that there are not likely to be
274 all that many symbols looked up during any given session, regardless
275 of the size of the symbol table. If we decide to go to a resizable
276 table, let's just use the stuff from libiberty instead. */
277
278 #define HASH_SIZE 1009
279
280 struct ada_symbol_cache
281 {
282 /* An obstack used to store the entries in our cache. */
283 struct auto_obstack cache_space;
284
285 /* The root of the hash table used to implement our symbol cache. */
286 struct cache_entry *root[HASH_SIZE] {};
287 };
288
289 /* Maximum-sized dynamic type. */
290 static unsigned int varsize_limit;
291
292 static const char ada_completer_word_break_characters[] =
293 #ifdef VMS
294 " \t\n!@#%^&*()+=|~`}{[]\";:?/,-";
295 #else
296 " \t\n!@#$%^&*()+=|~`}{[]\";:?/,-";
297 #endif
298
299 /* The name of the symbol to use to get the name of the main subprogram. */
300 static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[]
301 = "__gnat_ada_main_program_name";
302
303 /* Limit on the number of warnings to raise per expression evaluation. */
304 static int warning_limit = 2;
305
306 /* Number of warning messages issued; reset to 0 by cleanups after
307 expression evaluation. */
308 static int warnings_issued = 0;
309
310 static const char * const known_runtime_file_name_patterns[] = {
311 ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL
312 };
313
314 static const char * const known_auxiliary_function_name_patterns[] = {
315 ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL
316 };
317
318 /* Maintenance-related settings for this module. */
319
320 static struct cmd_list_element *maint_set_ada_cmdlist;
321 static struct cmd_list_element *maint_show_ada_cmdlist;
322
323 /* The "maintenance ada set/show ignore-descriptive-type" value. */
324
325 static bool ada_ignore_descriptive_types_p = false;
326
327 /* Inferior-specific data. */
328
329 /* Per-inferior data for this module. */
330
331 struct ada_inferior_data
332 {
333 /* The ada__tags__type_specific_data type, which is used when decoding
334 tagged types. With older versions of GNAT, this type was directly
335 accessible through a component ("tsd") in the object tag. But this
336 is no longer the case, so we cache it for each inferior. */
337 struct type *tsd_type = nullptr;
338
339 /* The exception_support_info data. This data is used to determine
340 how to implement support for Ada exception catchpoints in a given
341 inferior. */
342 const struct exception_support_info *exception_info = nullptr;
343 };
344
345 /* Our key to this module's inferior data. */
346 static const struct inferior_key<ada_inferior_data> ada_inferior_data;
347
348 /* Return our inferior data for the given inferior (INF).
349
350 This function always returns a valid pointer to an allocated
351 ada_inferior_data structure. If INF's inferior data has not
352 been previously set, this functions creates a new one with all
353 fields set to zero, sets INF's inferior to it, and then returns
354 a pointer to that newly allocated ada_inferior_data. */
355
356 static struct ada_inferior_data *
357 get_ada_inferior_data (struct inferior *inf)
358 {
359 struct ada_inferior_data *data;
360
361 data = ada_inferior_data.get (inf);
362 if (data == NULL)
363 data = ada_inferior_data.emplace (inf);
364
365 return data;
366 }
367
368 /* Perform all necessary cleanups regarding our module's inferior data
369 that is required after the inferior INF just exited. */
370
371 static void
372 ada_inferior_exit (struct inferior *inf)
373 {
374 ada_inferior_data.clear (inf);
375 }
376
377
378 /* program-space-specific data. */
379
380 /* This module's per-program-space data. */
381 struct ada_pspace_data
382 {
383 /* The Ada symbol cache. */
384 std::unique_ptr<ada_symbol_cache> sym_cache;
385 };
386
387 /* Key to our per-program-space data. */
388 static const struct program_space_key<ada_pspace_data> ada_pspace_data_handle;
389
390 /* Return this module's data for the given program space (PSPACE).
391 If not is found, add a zero'ed one now.
392
393 This function always returns a valid object. */
394
395 static struct ada_pspace_data *
396 get_ada_pspace_data (struct program_space *pspace)
397 {
398 struct ada_pspace_data *data;
399
400 data = ada_pspace_data_handle.get (pspace);
401 if (data == NULL)
402 data = ada_pspace_data_handle.emplace (pspace);
403
404 return data;
405 }
406
407 /* Utilities */
408
409 /* If TYPE is a TYPE_CODE_TYPEDEF type, return the target type after
410 all typedef layers have been peeled. Otherwise, return TYPE.
411
412 Normally, we really expect a typedef type to only have 1 typedef layer.
413 In other words, we really expect the target type of a typedef type to be
414 a non-typedef type. This is particularly true for Ada units, because
415 the language does not have a typedef vs not-typedef distinction.
416 In that respect, the Ada compiler has been trying to eliminate as many
417 typedef definitions in the debugging information, since they generally
418 do not bring any extra information (we still use typedef under certain
419 circumstances related mostly to the GNAT encoding).
420
421 Unfortunately, we have seen situations where the debugging information
422 generated by the compiler leads to such multiple typedef layers. For
423 instance, consider the following example with stabs:
424
425 .stabs "pck__float_array___XUP:Tt(0,46)=s16P_ARRAY:(0,47)=[...]"[...]
426 .stabs "pck__float_array___XUP:t(0,36)=(0,46)",128,0,6,0
427
428 This is an error in the debugging information which causes type
429 pck__float_array___XUP to be defined twice, and the second time,
430 it is defined as a typedef of a typedef.
431
432 This is on the fringe of legality as far as debugging information is
433 concerned, and certainly unexpected. But it is easy to handle these
434 situations correctly, so we can afford to be lenient in this case. */
435
436 static struct type *
437 ada_typedef_target_type (struct type *type)
438 {
439 while (type->code () == TYPE_CODE_TYPEDEF)
440 type = TYPE_TARGET_TYPE (type);
441 return type;
442 }
443
444 /* Given DECODED_NAME a string holding a symbol name in its
445 decoded form (ie using the Ada dotted notation), returns
446 its unqualified name. */
447
448 static const char *
449 ada_unqualified_name (const char *decoded_name)
450 {
451 const char *result;
452
453 /* If the decoded name starts with '<', it means that the encoded
454 name does not follow standard naming conventions, and thus that
455 it is not your typical Ada symbol name. Trying to unqualify it
456 is therefore pointless and possibly erroneous. */
457 if (decoded_name[0] == '<')
458 return decoded_name;
459
460 result = strrchr (decoded_name, '.');
461 if (result != NULL)
462 result++; /* Skip the dot... */
463 else
464 result = decoded_name;
465
466 return result;
467 }
468
469 /* Return a string starting with '<', followed by STR, and '>'. */
470
471 static std::string
472 add_angle_brackets (const char *str)
473 {
474 return string_printf ("<%s>", str);
475 }
476
477 /* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing
478 suffix of FIELD_NAME beginning "___". */
479
480 static int
481 field_name_match (const char *field_name, const char *target)
482 {
483 int len = strlen (target);
484
485 return
486 (strncmp (field_name, target, len) == 0
487 && (field_name[len] == '\0'
488 || (startswith (field_name + len, "___")
489 && strcmp (field_name + strlen (field_name) - 6,
490 "___XVN") != 0)));
491 }
492
493
494 /* Assuming TYPE is a TYPE_CODE_STRUCT or a TYPE_CODE_TYPDEF to
495 a TYPE_CODE_STRUCT, find the field whose name matches FIELD_NAME,
496 and return its index. This function also handles fields whose name
497 have ___ suffixes because the compiler sometimes alters their name
498 by adding such a suffix to represent fields with certain constraints.
499 If the field could not be found, return a negative number if
500 MAYBE_MISSING is set. Otherwise raise an error. */
501
502 int
503 ada_get_field_index (const struct type *type, const char *field_name,
504 int maybe_missing)
505 {
506 int fieldno;
507 struct type *struct_type = check_typedef ((struct type *) type);
508
509 for (fieldno = 0; fieldno < struct_type->num_fields (); fieldno++)
510 if (field_name_match (TYPE_FIELD_NAME (struct_type, fieldno), field_name))
511 return fieldno;
512
513 if (!maybe_missing)
514 error (_("Unable to find field %s in struct %s. Aborting"),
515 field_name, struct_type->name ());
516
517 return -1;
518 }
519
520 /* The length of the prefix of NAME prior to any "___" suffix. */
521
522 int
523 ada_name_prefix_len (const char *name)
524 {
525 if (name == NULL)
526 return 0;
527 else
528 {
529 const char *p = strstr (name, "___");
530
531 if (p == NULL)
532 return strlen (name);
533 else
534 return p - name;
535 }
536 }
537
538 /* Return non-zero if SUFFIX is a suffix of STR.
539 Return zero if STR is null. */
540
541 static int
542 is_suffix (const char *str, const char *suffix)
543 {
544 int len1, len2;
545
546 if (str == NULL)
547 return 0;
548 len1 = strlen (str);
549 len2 = strlen (suffix);
550 return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0);
551 }
552
553 /* The contents of value VAL, treated as a value of type TYPE. The
554 result is an lval in memory if VAL is. */
555
556 static struct value *
557 coerce_unspec_val_to_type (struct value *val, struct type *type)
558 {
559 type = ada_check_typedef (type);
560 if (value_type (val) == type)
561 return val;
562 else
563 {
564 struct value *result;
565
566 /* Make sure that the object size is not unreasonable before
567 trying to allocate some memory for it. */
568 ada_ensure_varsize_limit (type);
569
570 if (value_optimized_out (val))
571 result = allocate_optimized_out_value (type);
572 else if (value_lazy (val)
573 /* Be careful not to make a lazy not_lval value. */
574 || (VALUE_LVAL (val) != not_lval
575 && TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val))))
576 result = allocate_value_lazy (type);
577 else
578 {
579 result = allocate_value (type);
580 value_contents_copy (result, 0, val, 0, TYPE_LENGTH (type));
581 }
582 set_value_component_location (result, val);
583 set_value_bitsize (result, value_bitsize (val));
584 set_value_bitpos (result, value_bitpos (val));
585 if (VALUE_LVAL (result) == lval_memory)
586 set_value_address (result, value_address (val));
587 return result;
588 }
589 }
590
591 static const gdb_byte *
592 cond_offset_host (const gdb_byte *valaddr, long offset)
593 {
594 if (valaddr == NULL)
595 return NULL;
596 else
597 return valaddr + offset;
598 }
599
600 static CORE_ADDR
601 cond_offset_target (CORE_ADDR address, long offset)
602 {
603 if (address == 0)
604 return 0;
605 else
606 return address + offset;
607 }
608
609 /* Issue a warning (as for the definition of warning in utils.c, but
610 with exactly one argument rather than ...), unless the limit on the
611 number of warnings has passed during the evaluation of the current
612 expression. */
613
614 /* FIXME: cagney/2004-10-10: This function is mimicking the behavior
615 provided by "complaint". */
616 static void lim_warning (const char *format, ...) ATTRIBUTE_PRINTF (1, 2);
617
618 static void
619 lim_warning (const char *format, ...)
620 {
621 va_list args;
622
623 va_start (args, format);
624 warnings_issued += 1;
625 if (warnings_issued <= warning_limit)
626 vwarning (format, args);
627
628 va_end (args);
629 }
630
631 /* Issue an error if the size of an object of type T is unreasonable,
632 i.e. if it would be a bad idea to allocate a value of this type in
633 GDB. */
634
635 void
636 ada_ensure_varsize_limit (const struct type *type)
637 {
638 if (TYPE_LENGTH (type) > varsize_limit)
639 error (_("object size is larger than varsize-limit"));
640 }
641
642 /* Maximum value of a SIZE-byte signed integer type. */
643 static LONGEST
644 max_of_size (int size)
645 {
646 LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2);
647
648 return top_bit | (top_bit - 1);
649 }
650
651 /* Minimum value of a SIZE-byte signed integer type. */
652 static LONGEST
653 min_of_size (int size)
654 {
655 return -max_of_size (size) - 1;
656 }
657
658 /* Maximum value of a SIZE-byte unsigned integer type. */
659 static ULONGEST
660 umax_of_size (int size)
661 {
662 ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1);
663
664 return top_bit | (top_bit - 1);
665 }
666
667 /* Maximum value of integral type T, as a signed quantity. */
668 static LONGEST
669 max_of_type (struct type *t)
670 {
671 if (t->is_unsigned ())
672 return (LONGEST) umax_of_size (TYPE_LENGTH (t));
673 else
674 return max_of_size (TYPE_LENGTH (t));
675 }
676
677 /* Minimum value of integral type T, as a signed quantity. */
678 static LONGEST
679 min_of_type (struct type *t)
680 {
681 if (t->is_unsigned ())
682 return 0;
683 else
684 return min_of_size (TYPE_LENGTH (t));
685 }
686
687 /* The largest value in the domain of TYPE, a discrete type, as an integer. */
688 LONGEST
689 ada_discrete_type_high_bound (struct type *type)
690 {
691 type = resolve_dynamic_type (type, {}, 0);
692 switch (type->code ())
693 {
694 case TYPE_CODE_RANGE:
695 {
696 const dynamic_prop &high = type->bounds ()->high;
697
698 if (high.kind () == PROP_CONST)
699 return high.const_val ();
700 else
701 {
702 gdb_assert (high.kind () == PROP_UNDEFINED);
703
704 /* This happens when trying to evaluate a type's dynamic bound
705 without a live target. There is nothing relevant for us to
706 return here, so return 0. */
707 return 0;
708 }
709 }
710 case TYPE_CODE_ENUM:
711 return TYPE_FIELD_ENUMVAL (type, type->num_fields () - 1);
712 case TYPE_CODE_BOOL:
713 return 1;
714 case TYPE_CODE_CHAR:
715 case TYPE_CODE_INT:
716 return max_of_type (type);
717 default:
718 error (_("Unexpected type in ada_discrete_type_high_bound."));
719 }
720 }
721
722 /* The smallest value in the domain of TYPE, a discrete type, as an integer. */
723 LONGEST
724 ada_discrete_type_low_bound (struct type *type)
725 {
726 type = resolve_dynamic_type (type, {}, 0);
727 switch (type->code ())
728 {
729 case TYPE_CODE_RANGE:
730 {
731 const dynamic_prop &low = type->bounds ()->low;
732
733 if (low.kind () == PROP_CONST)
734 return low.const_val ();
735 else
736 {
737 gdb_assert (low.kind () == PROP_UNDEFINED);
738
739 /* This happens when trying to evaluate a type's dynamic bound
740 without a live target. There is nothing relevant for us to
741 return here, so return 0. */
742 return 0;
743 }
744 }
745 case TYPE_CODE_ENUM:
746 return TYPE_FIELD_ENUMVAL (type, 0);
747 case TYPE_CODE_BOOL:
748 return 0;
749 case TYPE_CODE_CHAR:
750 case TYPE_CODE_INT:
751 return min_of_type (type);
752 default:
753 error (_("Unexpected type in ada_discrete_type_low_bound."));
754 }
755 }
756
757 /* The identity on non-range types. For range types, the underlying
758 non-range scalar type. */
759
760 static struct type *
761 get_base_type (struct type *type)
762 {
763 while (type != NULL && type->code () == TYPE_CODE_RANGE)
764 {
765 if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL)
766 return type;
767 type = TYPE_TARGET_TYPE (type);
768 }
769 return type;
770 }
771
772 /* Return a decoded version of the given VALUE. This means returning
773 a value whose type is obtained by applying all the GNAT-specific
774 encodings, making the resulting type a static but standard description
775 of the initial type. */
776
777 struct value *
778 ada_get_decoded_value (struct value *value)
779 {
780 struct type *type = ada_check_typedef (value_type (value));
781
782 if (ada_is_array_descriptor_type (type)
783 || (ada_is_constrained_packed_array_type (type)
784 && type->code () != TYPE_CODE_PTR))
785 {
786 if (type->code () == TYPE_CODE_TYPEDEF) /* array access type. */
787 value = ada_coerce_to_simple_array_ptr (value);
788 else
789 value = ada_coerce_to_simple_array (value);
790 }
791 else
792 value = ada_to_fixed_value (value);
793
794 return value;
795 }
796
797 /* Same as ada_get_decoded_value, but with the given TYPE.
798 Because there is no associated actual value for this type,
799 the resulting type might be a best-effort approximation in
800 the case of dynamic types. */
801
802 struct type *
803 ada_get_decoded_type (struct type *type)
804 {
805 type = to_static_fixed_type (type);
806 if (ada_is_constrained_packed_array_type (type))
807 type = ada_coerce_to_simple_array_type (type);
808 return type;
809 }
810
811 \f
812
813 /* Language Selection */
814
815 /* If the main program is in Ada, return language_ada, otherwise return LANG
816 (the main program is in Ada iif the adainit symbol is found). */
817
818 static enum language
819 ada_update_initial_language (enum language lang)
820 {
821 if (lookup_minimal_symbol ("adainit", NULL, NULL).minsym != NULL)
822 return language_ada;
823
824 return lang;
825 }
826
827 /* If the main procedure is written in Ada, then return its name.
828 The result is good until the next call. Return NULL if the main
829 procedure doesn't appear to be in Ada. */
830
831 char *
832 ada_main_name (void)
833 {
834 struct bound_minimal_symbol msym;
835 static gdb::unique_xmalloc_ptr<char> main_program_name;
836
837 /* For Ada, the name of the main procedure is stored in a specific
838 string constant, generated by the binder. Look for that symbol,
839 extract its address, and then read that string. If we didn't find
840 that string, then most probably the main procedure is not written
841 in Ada. */
842 msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL);
843
844 if (msym.minsym != NULL)
845 {
846 CORE_ADDR main_program_name_addr = BMSYMBOL_VALUE_ADDRESS (msym);
847 if (main_program_name_addr == 0)
848 error (_("Invalid address for Ada main program name."));
849
850 main_program_name = target_read_string (main_program_name_addr, 1024);
851 return main_program_name.get ();
852 }
853
854 /* The main procedure doesn't seem to be in Ada. */
855 return NULL;
856 }
857 \f
858 /* Symbols */
859
860 /* Table of Ada operators and their GNAT-encoded names. Last entry is pair
861 of NULLs. */
862
863 const struct ada_opname_map ada_opname_table[] = {
864 {"Oadd", "\"+\"", BINOP_ADD},
865 {"Osubtract", "\"-\"", BINOP_SUB},
866 {"Omultiply", "\"*\"", BINOP_MUL},
867 {"Odivide", "\"/\"", BINOP_DIV},
868 {"Omod", "\"mod\"", BINOP_MOD},
869 {"Orem", "\"rem\"", BINOP_REM},
870 {"Oexpon", "\"**\"", BINOP_EXP},
871 {"Olt", "\"<\"", BINOP_LESS},
872 {"Ole", "\"<=\"", BINOP_LEQ},
873 {"Ogt", "\">\"", BINOP_GTR},
874 {"Oge", "\">=\"", BINOP_GEQ},
875 {"Oeq", "\"=\"", BINOP_EQUAL},
876 {"One", "\"/=\"", BINOP_NOTEQUAL},
877 {"Oand", "\"and\"", BINOP_BITWISE_AND},
878 {"Oor", "\"or\"", BINOP_BITWISE_IOR},
879 {"Oxor", "\"xor\"", BINOP_BITWISE_XOR},
880 {"Oconcat", "\"&\"", BINOP_CONCAT},
881 {"Oabs", "\"abs\"", UNOP_ABS},
882 {"Onot", "\"not\"", UNOP_LOGICAL_NOT},
883 {"Oadd", "\"+\"", UNOP_PLUS},
884 {"Osubtract", "\"-\"", UNOP_NEG},
885 {NULL, NULL}
886 };
887
888 /* The "encoded" form of DECODED, according to GNAT conventions. If
889 THROW_ERRORS, throw an error if invalid operator name is found.
890 Otherwise, return the empty string in that case. */
891
892 static std::string
893 ada_encode_1 (const char *decoded, bool throw_errors)
894 {
895 if (decoded == NULL)
896 return {};
897
898 std::string encoding_buffer;
899 for (const char *p = decoded; *p != '\0'; p += 1)
900 {
901 if (*p == '.')
902 encoding_buffer.append ("__");
903 else if (*p == '"')
904 {
905 const struct ada_opname_map *mapping;
906
907 for (mapping = ada_opname_table;
908 mapping->encoded != NULL
909 && !startswith (p, mapping->decoded); mapping += 1)
910 ;
911 if (mapping->encoded == NULL)
912 {
913 if (throw_errors)
914 error (_("invalid Ada operator name: %s"), p);
915 else
916 return {};
917 }
918 encoding_buffer.append (mapping->encoded);
919 break;
920 }
921 else
922 encoding_buffer.push_back (*p);
923 }
924
925 return encoding_buffer;
926 }
927
928 /* The "encoded" form of DECODED, according to GNAT conventions. */
929
930 std::string
931 ada_encode (const char *decoded)
932 {
933 return ada_encode_1 (decoded, true);
934 }
935
936 /* Return NAME folded to lower case, or, if surrounded by single
937 quotes, unfolded, but with the quotes stripped away. Result good
938 to next call. */
939
940 static const char *
941 ada_fold_name (gdb::string_view name)
942 {
943 static std::string fold_storage;
944
945 if (!name.empty () && name[0] == '\'')
946 fold_storage = gdb::to_string (name.substr (1, name.size () - 2));
947 else
948 {
949 fold_storage = gdb::to_string (name);
950 for (int i = 0; i < name.size (); i += 1)
951 fold_storage[i] = tolower (fold_storage[i]);
952 }
953
954 return fold_storage.c_str ();
955 }
956
957 /* Return nonzero if C is either a digit or a lowercase alphabet character. */
958
959 static int
960 is_lower_alphanum (const char c)
961 {
962 return (isdigit (c) || (isalpha (c) && islower (c)));
963 }
964
965 /* ENCODED is the linkage name of a symbol and LEN contains its length.
966 This function saves in LEN the length of that same symbol name but
967 without either of these suffixes:
968 . .{DIGIT}+
969 . ${DIGIT}+
970 . ___{DIGIT}+
971 . __{DIGIT}+.
972
973 These are suffixes introduced by the compiler for entities such as
974 nested subprogram for instance, in order to avoid name clashes.
975 They do not serve any purpose for the debugger. */
976
977 static void
978 ada_remove_trailing_digits (const char *encoded, int *len)
979 {
980 if (*len > 1 && isdigit (encoded[*len - 1]))
981 {
982 int i = *len - 2;
983
984 while (i > 0 && isdigit (encoded[i]))
985 i--;
986 if (i >= 0 && encoded[i] == '.')
987 *len = i;
988 else if (i >= 0 && encoded[i] == '$')
989 *len = i;
990 else if (i >= 2 && startswith (encoded + i - 2, "___"))
991 *len = i - 2;
992 else if (i >= 1 && startswith (encoded + i - 1, "__"))
993 *len = i - 1;
994 }
995 }
996
997 /* Remove the suffix introduced by the compiler for protected object
998 subprograms. */
999
1000 static void
1001 ada_remove_po_subprogram_suffix (const char *encoded, int *len)
1002 {
1003 /* Remove trailing N. */
1004
1005 /* Protected entry subprograms are broken into two
1006 separate subprograms: The first one is unprotected, and has
1007 a 'N' suffix; the second is the protected version, and has
1008 the 'P' suffix. The second calls the first one after handling
1009 the protection. Since the P subprograms are internally generated,
1010 we leave these names undecoded, giving the user a clue that this
1011 entity is internal. */
1012
1013 if (*len > 1
1014 && encoded[*len - 1] == 'N'
1015 && (isdigit (encoded[*len - 2]) || islower (encoded[*len - 2])))
1016 *len = *len - 1;
1017 }
1018
1019 /* If ENCODED follows the GNAT entity encoding conventions, then return
1020 the decoded form of ENCODED. Otherwise, return "<%s>" where "%s" is
1021 replaced by ENCODED. */
1022
1023 std::string
1024 ada_decode (const char *encoded)
1025 {
1026 int i, j;
1027 int len0;
1028 const char *p;
1029 int at_start_name;
1030 std::string decoded;
1031
1032 /* With function descriptors on PPC64, the value of a symbol named
1033 ".FN", if it exists, is the entry point of the function "FN". */
1034 if (encoded[0] == '.')
1035 encoded += 1;
1036
1037 /* The name of the Ada main procedure starts with "_ada_".
1038 This prefix is not part of the decoded name, so skip this part
1039 if we see this prefix. */
1040 if (startswith (encoded, "_ada_"))
1041 encoded += 5;
1042
1043 /* If the name starts with '_', then it is not a properly encoded
1044 name, so do not attempt to decode it. Similarly, if the name
1045 starts with '<', the name should not be decoded. */
1046 if (encoded[0] == '_' || encoded[0] == '<')
1047 goto Suppress;
1048
1049 len0 = strlen (encoded);
1050
1051 ada_remove_trailing_digits (encoded, &len0);
1052 ada_remove_po_subprogram_suffix (encoded, &len0);
1053
1054 /* Remove the ___X.* suffix if present. Do not forget to verify that
1055 the suffix is located before the current "end" of ENCODED. We want
1056 to avoid re-matching parts of ENCODED that have previously been
1057 marked as discarded (by decrementing LEN0). */
1058 p = strstr (encoded, "___");
1059 if (p != NULL && p - encoded < len0 - 3)
1060 {
1061 if (p[3] == 'X')
1062 len0 = p - encoded;
1063 else
1064 goto Suppress;
1065 }
1066
1067 /* Remove any trailing TKB suffix. It tells us that this symbol
1068 is for the body of a task, but that information does not actually
1069 appear in the decoded name. */
1070
1071 if (len0 > 3 && startswith (encoded + len0 - 3, "TKB"))
1072 len0 -= 3;
1073
1074 /* Remove any trailing TB suffix. The TB suffix is slightly different
1075 from the TKB suffix because it is used for non-anonymous task
1076 bodies. */
1077
1078 if (len0 > 2 && startswith (encoded + len0 - 2, "TB"))
1079 len0 -= 2;
1080
1081 /* Remove trailing "B" suffixes. */
1082 /* FIXME: brobecker/2006-04-19: Not sure what this are used for... */
1083
1084 if (len0 > 1 && startswith (encoded + len0 - 1, "B"))
1085 len0 -= 1;
1086
1087 /* Make decoded big enough for possible expansion by operator name. */
1088
1089 decoded.resize (2 * len0 + 1, 'X');
1090
1091 /* Remove trailing __{digit}+ or trailing ${digit}+. */
1092
1093 if (len0 > 1 && isdigit (encoded[len0 - 1]))
1094 {
1095 i = len0 - 2;
1096 while ((i >= 0 && isdigit (encoded[i]))
1097 || (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1])))
1098 i -= 1;
1099 if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_')
1100 len0 = i - 1;
1101 else if (encoded[i] == '$')
1102 len0 = i;
1103 }
1104
1105 /* The first few characters that are not alphabetic are not part
1106 of any encoding we use, so we can copy them over verbatim. */
1107
1108 for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1)
1109 decoded[j] = encoded[i];
1110
1111 at_start_name = 1;
1112 while (i < len0)
1113 {
1114 /* Is this a symbol function? */
1115 if (at_start_name && encoded[i] == 'O')
1116 {
1117 int k;
1118
1119 for (k = 0; ada_opname_table[k].encoded != NULL; k += 1)
1120 {
1121 int op_len = strlen (ada_opname_table[k].encoded);
1122 if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1,
1123 op_len - 1) == 0)
1124 && !isalnum (encoded[i + op_len]))
1125 {
1126 strcpy (&decoded.front() + j, ada_opname_table[k].decoded);
1127 at_start_name = 0;
1128 i += op_len;
1129 j += strlen (ada_opname_table[k].decoded);
1130 break;
1131 }
1132 }
1133 if (ada_opname_table[k].encoded != NULL)
1134 continue;
1135 }
1136 at_start_name = 0;
1137
1138 /* Replace "TK__" with "__", which will eventually be translated
1139 into "." (just below). */
1140
1141 if (i < len0 - 4 && startswith (encoded + i, "TK__"))
1142 i += 2;
1143
1144 /* Replace "__B_{DIGITS}+__" sequences by "__", which will eventually
1145 be translated into "." (just below). These are internal names
1146 generated for anonymous blocks inside which our symbol is nested. */
1147
1148 if (len0 - i > 5 && encoded [i] == '_' && encoded [i+1] == '_'
1149 && encoded [i+2] == 'B' && encoded [i+3] == '_'
1150 && isdigit (encoded [i+4]))
1151 {
1152 int k = i + 5;
1153
1154 while (k < len0 && isdigit (encoded[k]))
1155 k++; /* Skip any extra digit. */
1156
1157 /* Double-check that the "__B_{DIGITS}+" sequence we found
1158 is indeed followed by "__". */
1159 if (len0 - k > 2 && encoded [k] == '_' && encoded [k+1] == '_')
1160 i = k;
1161 }
1162
1163 /* Remove _E{DIGITS}+[sb] */
1164
1165 /* Just as for protected object subprograms, there are 2 categories
1166 of subprograms created by the compiler for each entry. The first
1167 one implements the actual entry code, and has a suffix following
1168 the convention above; the second one implements the barrier and
1169 uses the same convention as above, except that the 'E' is replaced
1170 by a 'B'.
1171
1172 Just as above, we do not decode the name of barrier functions
1173 to give the user a clue that the code he is debugging has been
1174 internally generated. */
1175
1176 if (len0 - i > 3 && encoded [i] == '_' && encoded[i+1] == 'E'
1177 && isdigit (encoded[i+2]))
1178 {
1179 int k = i + 3;
1180
1181 while (k < len0 && isdigit (encoded[k]))
1182 k++;
1183
1184 if (k < len0
1185 && (encoded[k] == 'b' || encoded[k] == 's'))
1186 {
1187 k++;
1188 /* Just as an extra precaution, make sure that if this
1189 suffix is followed by anything else, it is a '_'.
1190 Otherwise, we matched this sequence by accident. */
1191 if (k == len0
1192 || (k < len0 && encoded[k] == '_'))
1193 i = k;
1194 }
1195 }
1196
1197 /* Remove trailing "N" in [a-z0-9]+N__. The N is added by
1198 the GNAT front-end in protected object subprograms. */
1199
1200 if (i < len0 + 3
1201 && encoded[i] == 'N' && encoded[i+1] == '_' && encoded[i+2] == '_')
1202 {
1203 /* Backtrack a bit up until we reach either the begining of
1204 the encoded name, or "__". Make sure that we only find
1205 digits or lowercase characters. */
1206 const char *ptr = encoded + i - 1;
1207
1208 while (ptr >= encoded && is_lower_alphanum (ptr[0]))
1209 ptr--;
1210 if (ptr < encoded
1211 || (ptr > encoded && ptr[0] == '_' && ptr[-1] == '_'))
1212 i++;
1213 }
1214
1215 if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1]))
1216 {
1217 /* This is a X[bn]* sequence not separated from the previous
1218 part of the name with a non-alpha-numeric character (in other
1219 words, immediately following an alpha-numeric character), then
1220 verify that it is placed at the end of the encoded name. If
1221 not, then the encoding is not valid and we should abort the
1222 decoding. Otherwise, just skip it, it is used in body-nested
1223 package names. */
1224 do
1225 i += 1;
1226 while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n'));
1227 if (i < len0)
1228 goto Suppress;
1229 }
1230 else if (i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_')
1231 {
1232 /* Replace '__' by '.'. */
1233 decoded[j] = '.';
1234 at_start_name = 1;
1235 i += 2;
1236 j += 1;
1237 }
1238 else
1239 {
1240 /* It's a character part of the decoded name, so just copy it
1241 over. */
1242 decoded[j] = encoded[i];
1243 i += 1;
1244 j += 1;
1245 }
1246 }
1247 decoded.resize (j);
1248
1249 /* Decoded names should never contain any uppercase character.
1250 Double-check this, and abort the decoding if we find one. */
1251
1252 for (i = 0; i < decoded.length(); ++i)
1253 if (isupper (decoded[i]) || decoded[i] == ' ')
1254 goto Suppress;
1255
1256 return decoded;
1257
1258 Suppress:
1259 if (encoded[0] == '<')
1260 decoded = encoded;
1261 else
1262 decoded = '<' + std::string(encoded) + '>';
1263 return decoded;
1264
1265 }
1266
1267 /* Table for keeping permanent unique copies of decoded names. Once
1268 allocated, names in this table are never released. While this is a
1269 storage leak, it should not be significant unless there are massive
1270 changes in the set of decoded names in successive versions of a
1271 symbol table loaded during a single session. */
1272 static struct htab *decoded_names_store;
1273
1274 /* Returns the decoded name of GSYMBOL, as for ada_decode, caching it
1275 in the language-specific part of GSYMBOL, if it has not been
1276 previously computed. Tries to save the decoded name in the same
1277 obstack as GSYMBOL, if possible, and otherwise on the heap (so that,
1278 in any case, the decoded symbol has a lifetime at least that of
1279 GSYMBOL).
1280 The GSYMBOL parameter is "mutable" in the C++ sense: logically
1281 const, but nevertheless modified to a semantically equivalent form
1282 when a decoded name is cached in it. */
1283
1284 const char *
1285 ada_decode_symbol (const struct general_symbol_info *arg)
1286 {
1287 struct general_symbol_info *gsymbol = (struct general_symbol_info *) arg;
1288 const char **resultp =
1289 &gsymbol->language_specific.demangled_name;
1290
1291 if (!gsymbol->ada_mangled)
1292 {
1293 std::string decoded = ada_decode (gsymbol->linkage_name ());
1294 struct obstack *obstack = gsymbol->language_specific.obstack;
1295
1296 gsymbol->ada_mangled = 1;
1297
1298 if (obstack != NULL)
1299 *resultp = obstack_strdup (obstack, decoded.c_str ());
1300 else
1301 {
1302 /* Sometimes, we can't find a corresponding objfile, in
1303 which case, we put the result on the heap. Since we only
1304 decode when needed, we hope this usually does not cause a
1305 significant memory leak (FIXME). */
1306
1307 char **slot = (char **) htab_find_slot (decoded_names_store,
1308 decoded.c_str (), INSERT);
1309
1310 if (*slot == NULL)
1311 *slot = xstrdup (decoded.c_str ());
1312 *resultp = *slot;
1313 }
1314 }
1315
1316 return *resultp;
1317 }
1318
1319 static char *
1320 ada_la_decode (const char *encoded, int options)
1321 {
1322 return xstrdup (ada_decode (encoded).c_str ());
1323 }
1324
1325 \f
1326
1327 /* Arrays */
1328
1329 /* Assuming that INDEX_DESC_TYPE is an ___XA structure, a structure
1330 generated by the GNAT compiler to describe the index type used
1331 for each dimension of an array, check whether it follows the latest
1332 known encoding. If not, fix it up to conform to the latest encoding.
1333 Otherwise, do nothing. This function also does nothing if
1334 INDEX_DESC_TYPE is NULL.
1335
1336 The GNAT encoding used to describe the array index type evolved a bit.
1337 Initially, the information would be provided through the name of each
1338 field of the structure type only, while the type of these fields was
1339 described as unspecified and irrelevant. The debugger was then expected
1340 to perform a global type lookup using the name of that field in order
1341 to get access to the full index type description. Because these global
1342 lookups can be very expensive, the encoding was later enhanced to make
1343 the global lookup unnecessary by defining the field type as being
1344 the full index type description.
1345
1346 The purpose of this routine is to allow us to support older versions
1347 of the compiler by detecting the use of the older encoding, and by
1348 fixing up the INDEX_DESC_TYPE to follow the new one (at this point,
1349 we essentially replace each field's meaningless type by the associated
1350 index subtype). */
1351
1352 void
1353 ada_fixup_array_indexes_type (struct type *index_desc_type)
1354 {
1355 int i;
1356
1357 if (index_desc_type == NULL)
1358 return;
1359 gdb_assert (index_desc_type->num_fields () > 0);
1360
1361 /* Check if INDEX_DESC_TYPE follows the older encoding (it is sufficient
1362 to check one field only, no need to check them all). If not, return
1363 now.
1364
1365 If our INDEX_DESC_TYPE was generated using the older encoding,
1366 the field type should be a meaningless integer type whose name
1367 is not equal to the field name. */
1368 if (index_desc_type->field (0).type ()->name () != NULL
1369 && strcmp (index_desc_type->field (0).type ()->name (),
1370 TYPE_FIELD_NAME (index_desc_type, 0)) == 0)
1371 return;
1372
1373 /* Fixup each field of INDEX_DESC_TYPE. */
1374 for (i = 0; i < index_desc_type->num_fields (); i++)
1375 {
1376 const char *name = TYPE_FIELD_NAME (index_desc_type, i);
1377 struct type *raw_type = ada_check_typedef (ada_find_any_type (name));
1378
1379 if (raw_type)
1380 index_desc_type->field (i).set_type (raw_type);
1381 }
1382 }
1383
1384 /* The desc_* routines return primitive portions of array descriptors
1385 (fat pointers). */
1386
1387 /* The descriptor or array type, if any, indicated by TYPE; removes
1388 level of indirection, if needed. */
1389
1390 static struct type *
1391 desc_base_type (struct type *type)
1392 {
1393 if (type == NULL)
1394 return NULL;
1395 type = ada_check_typedef (type);
1396 if (type->code () == TYPE_CODE_TYPEDEF)
1397 type = ada_typedef_target_type (type);
1398
1399 if (type != NULL
1400 && (type->code () == TYPE_CODE_PTR
1401 || type->code () == TYPE_CODE_REF))
1402 return ada_check_typedef (TYPE_TARGET_TYPE (type));
1403 else
1404 return type;
1405 }
1406
1407 /* True iff TYPE indicates a "thin" array pointer type. */
1408
1409 static int
1410 is_thin_pntr (struct type *type)
1411 {
1412 return
1413 is_suffix (ada_type_name (desc_base_type (type)), "___XUT")
1414 || is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE");
1415 }
1416
1417 /* The descriptor type for thin pointer type TYPE. */
1418
1419 static struct type *
1420 thin_descriptor_type (struct type *type)
1421 {
1422 struct type *base_type = desc_base_type (type);
1423
1424 if (base_type == NULL)
1425 return NULL;
1426 if (is_suffix (ada_type_name (base_type), "___XVE"))
1427 return base_type;
1428 else
1429 {
1430 struct type *alt_type = ada_find_parallel_type (base_type, "___XVE");
1431
1432 if (alt_type == NULL)
1433 return base_type;
1434 else
1435 return alt_type;
1436 }
1437 }
1438
1439 /* A pointer to the array data for thin-pointer value VAL. */
1440
1441 static struct value *
1442 thin_data_pntr (struct value *val)
1443 {
1444 struct type *type = ada_check_typedef (value_type (val));
1445 struct type *data_type = desc_data_target_type (thin_descriptor_type (type));
1446
1447 data_type = lookup_pointer_type (data_type);
1448
1449 if (type->code () == TYPE_CODE_PTR)
1450 return value_cast (data_type, value_copy (val));
1451 else
1452 return value_from_longest (data_type, value_address (val));
1453 }
1454
1455 /* True iff TYPE indicates a "thick" array pointer type. */
1456
1457 static int
1458 is_thick_pntr (struct type *type)
1459 {
1460 type = desc_base_type (type);
1461 return (type != NULL && type->code () == TYPE_CODE_STRUCT
1462 && lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL);
1463 }
1464
1465 /* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1466 pointer to one, the type of its bounds data; otherwise, NULL. */
1467
1468 static struct type *
1469 desc_bounds_type (struct type *type)
1470 {
1471 struct type *r;
1472
1473 type = desc_base_type (type);
1474
1475 if (type == NULL)
1476 return NULL;
1477 else if (is_thin_pntr (type))
1478 {
1479 type = thin_descriptor_type (type);
1480 if (type == NULL)
1481 return NULL;
1482 r = lookup_struct_elt_type (type, "BOUNDS", 1);
1483 if (r != NULL)
1484 return ada_check_typedef (r);
1485 }
1486 else if (type->code () == TYPE_CODE_STRUCT)
1487 {
1488 r = lookup_struct_elt_type (type, "P_BOUNDS", 1);
1489 if (r != NULL)
1490 return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r)));
1491 }
1492 return NULL;
1493 }
1494
1495 /* If ARR is an array descriptor (fat or thin pointer), or pointer to
1496 one, a pointer to its bounds data. Otherwise NULL. */
1497
1498 static struct value *
1499 desc_bounds (struct value *arr)
1500 {
1501 struct type *type = ada_check_typedef (value_type (arr));
1502
1503 if (is_thin_pntr (type))
1504 {
1505 struct type *bounds_type =
1506 desc_bounds_type (thin_descriptor_type (type));
1507 LONGEST addr;
1508
1509 if (bounds_type == NULL)
1510 error (_("Bad GNAT array descriptor"));
1511
1512 /* NOTE: The following calculation is not really kosher, but
1513 since desc_type is an XVE-encoded type (and shouldn't be),
1514 the correct calculation is a real pain. FIXME (and fix GCC). */
1515 if (type->code () == TYPE_CODE_PTR)
1516 addr = value_as_long (arr);
1517 else
1518 addr = value_address (arr);
1519
1520 return
1521 value_from_longest (lookup_pointer_type (bounds_type),
1522 addr - TYPE_LENGTH (bounds_type));
1523 }
1524
1525 else if (is_thick_pntr (type))
1526 {
1527 struct value *p_bounds = value_struct_elt (&arr, NULL, "P_BOUNDS", NULL,
1528 _("Bad GNAT array descriptor"));
1529 struct type *p_bounds_type = value_type (p_bounds);
1530
1531 if (p_bounds_type
1532 && p_bounds_type->code () == TYPE_CODE_PTR)
1533 {
1534 struct type *target_type = TYPE_TARGET_TYPE (p_bounds_type);
1535
1536 if (target_type->is_stub ())
1537 p_bounds = value_cast (lookup_pointer_type
1538 (ada_check_typedef (target_type)),
1539 p_bounds);
1540 }
1541 else
1542 error (_("Bad GNAT array descriptor"));
1543
1544 return p_bounds;
1545 }
1546 else
1547 return NULL;
1548 }
1549
1550 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1551 position of the field containing the address of the bounds data. */
1552
1553 static int
1554 fat_pntr_bounds_bitpos (struct type *type)
1555 {
1556 return TYPE_FIELD_BITPOS (desc_base_type (type), 1);
1557 }
1558
1559 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1560 size of the field containing the address of the bounds data. */
1561
1562 static int
1563 fat_pntr_bounds_bitsize (struct type *type)
1564 {
1565 type = desc_base_type (type);
1566
1567 if (TYPE_FIELD_BITSIZE (type, 1) > 0)
1568 return TYPE_FIELD_BITSIZE (type, 1);
1569 else
1570 return 8 * TYPE_LENGTH (ada_check_typedef (type->field (1).type ()));
1571 }
1572
1573 /* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1574 pointer to one, the type of its array data (a array-with-no-bounds type);
1575 otherwise, NULL. Use ada_type_of_array to get an array type with bounds
1576 data. */
1577
1578 static struct type *
1579 desc_data_target_type (struct type *type)
1580 {
1581 type = desc_base_type (type);
1582
1583 /* NOTE: The following is bogus; see comment in desc_bounds. */
1584 if (is_thin_pntr (type))
1585 return desc_base_type (thin_descriptor_type (type)->field (1).type ());
1586 else if (is_thick_pntr (type))
1587 {
1588 struct type *data_type = lookup_struct_elt_type (type, "P_ARRAY", 1);
1589
1590 if (data_type
1591 && ada_check_typedef (data_type)->code () == TYPE_CODE_PTR)
1592 return ada_check_typedef (TYPE_TARGET_TYPE (data_type));
1593 }
1594
1595 return NULL;
1596 }
1597
1598 /* If ARR is an array descriptor (fat or thin pointer), a pointer to
1599 its array data. */
1600
1601 static struct value *
1602 desc_data (struct value *arr)
1603 {
1604 struct type *type = value_type (arr);
1605
1606 if (is_thin_pntr (type))
1607 return thin_data_pntr (arr);
1608 else if (is_thick_pntr (type))
1609 return value_struct_elt (&arr, NULL, "P_ARRAY", NULL,
1610 _("Bad GNAT array descriptor"));
1611 else
1612 return NULL;
1613 }
1614
1615
1616 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1617 position of the field containing the address of the data. */
1618
1619 static int
1620 fat_pntr_data_bitpos (struct type *type)
1621 {
1622 return TYPE_FIELD_BITPOS (desc_base_type (type), 0);
1623 }
1624
1625 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1626 size of the field containing the address of the data. */
1627
1628 static int
1629 fat_pntr_data_bitsize (struct type *type)
1630 {
1631 type = desc_base_type (type);
1632
1633 if (TYPE_FIELD_BITSIZE (type, 0) > 0)
1634 return TYPE_FIELD_BITSIZE (type, 0);
1635 else
1636 return TARGET_CHAR_BIT * TYPE_LENGTH (type->field (0).type ());
1637 }
1638
1639 /* If BOUNDS is an array-bounds structure (or pointer to one), return
1640 the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1641 bound, if WHICH is 1. The first bound is I=1. */
1642
1643 static struct value *
1644 desc_one_bound (struct value *bounds, int i, int which)
1645 {
1646 char bound_name[20];
1647 xsnprintf (bound_name, sizeof (bound_name), "%cB%d",
1648 which ? 'U' : 'L', i - 1);
1649 return value_struct_elt (&bounds, NULL, bound_name, NULL,
1650 _("Bad GNAT array descriptor bounds"));
1651 }
1652
1653 /* If BOUNDS is an array-bounds structure type, return the bit position
1654 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1655 bound, if WHICH is 1. The first bound is I=1. */
1656
1657 static int
1658 desc_bound_bitpos (struct type *type, int i, int which)
1659 {
1660 return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2);
1661 }
1662
1663 /* If BOUNDS is an array-bounds structure type, return the bit field size
1664 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1665 bound, if WHICH is 1. The first bound is I=1. */
1666
1667 static int
1668 desc_bound_bitsize (struct type *type, int i, int which)
1669 {
1670 type = desc_base_type (type);
1671
1672 if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0)
1673 return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2);
1674 else
1675 return 8 * TYPE_LENGTH (type->field (2 * i + which - 2).type ());
1676 }
1677
1678 /* If TYPE is the type of an array-bounds structure, the type of its
1679 Ith bound (numbering from 1). Otherwise, NULL. */
1680
1681 static struct type *
1682 desc_index_type (struct type *type, int i)
1683 {
1684 type = desc_base_type (type);
1685
1686 if (type->code () == TYPE_CODE_STRUCT)
1687 {
1688 char bound_name[20];
1689 xsnprintf (bound_name, sizeof (bound_name), "LB%d", i - 1);
1690 return lookup_struct_elt_type (type, bound_name, 1);
1691 }
1692 else
1693 return NULL;
1694 }
1695
1696 /* The number of index positions in the array-bounds type TYPE.
1697 Return 0 if TYPE is NULL. */
1698
1699 static int
1700 desc_arity (struct type *type)
1701 {
1702 type = desc_base_type (type);
1703
1704 if (type != NULL)
1705 return type->num_fields () / 2;
1706 return 0;
1707 }
1708
1709 /* Non-zero iff TYPE is a simple array type (not a pointer to one) or
1710 an array descriptor type (representing an unconstrained array
1711 type). */
1712
1713 static int
1714 ada_is_direct_array_type (struct type *type)
1715 {
1716 if (type == NULL)
1717 return 0;
1718 type = ada_check_typedef (type);
1719 return (type->code () == TYPE_CODE_ARRAY
1720 || ada_is_array_descriptor_type (type));
1721 }
1722
1723 /* Non-zero iff TYPE represents any kind of array in Ada, or a pointer
1724 * to one. */
1725
1726 static int
1727 ada_is_array_type (struct type *type)
1728 {
1729 while (type != NULL
1730 && (type->code () == TYPE_CODE_PTR
1731 || type->code () == TYPE_CODE_REF))
1732 type = TYPE_TARGET_TYPE (type);
1733 return ada_is_direct_array_type (type);
1734 }
1735
1736 /* Non-zero iff TYPE is a simple array type or pointer to one. */
1737
1738 int
1739 ada_is_simple_array_type (struct type *type)
1740 {
1741 if (type == NULL)
1742 return 0;
1743 type = ada_check_typedef (type);
1744 return (type->code () == TYPE_CODE_ARRAY
1745 || (type->code () == TYPE_CODE_PTR
1746 && (ada_check_typedef (TYPE_TARGET_TYPE (type))->code ()
1747 == TYPE_CODE_ARRAY)));
1748 }
1749
1750 /* Non-zero iff TYPE belongs to a GNAT array descriptor. */
1751
1752 int
1753 ada_is_array_descriptor_type (struct type *type)
1754 {
1755 struct type *data_type = desc_data_target_type (type);
1756
1757 if (type == NULL)
1758 return 0;
1759 type = ada_check_typedef (type);
1760 return (data_type != NULL
1761 && data_type->code () == TYPE_CODE_ARRAY
1762 && desc_arity (desc_bounds_type (type)) > 0);
1763 }
1764
1765 /* Non-zero iff type is a partially mal-formed GNAT array
1766 descriptor. FIXME: This is to compensate for some problems with
1767 debugging output from GNAT. Re-examine periodically to see if it
1768 is still needed. */
1769
1770 int
1771 ada_is_bogus_array_descriptor (struct type *type)
1772 {
1773 return
1774 type != NULL
1775 && type->code () == TYPE_CODE_STRUCT
1776 && (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL
1777 || lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL)
1778 && !ada_is_array_descriptor_type (type);
1779 }
1780
1781
1782 /* If ARR has a record type in the form of a standard GNAT array descriptor,
1783 (fat pointer) returns the type of the array data described---specifically,
1784 a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled
1785 in from the descriptor; otherwise, they are left unspecified. If
1786 the ARR denotes a null array descriptor and BOUNDS is non-zero,
1787 returns NULL. The result is simply the type of ARR if ARR is not
1788 a descriptor. */
1789
1790 static struct type *
1791 ada_type_of_array (struct value *arr, int bounds)
1792 {
1793 if (ada_is_constrained_packed_array_type (value_type (arr)))
1794 return decode_constrained_packed_array_type (value_type (arr));
1795
1796 if (!ada_is_array_descriptor_type (value_type (arr)))
1797 return value_type (arr);
1798
1799 if (!bounds)
1800 {
1801 struct type *array_type =
1802 ada_check_typedef (desc_data_target_type (value_type (arr)));
1803
1804 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1805 TYPE_FIELD_BITSIZE (array_type, 0) =
1806 decode_packed_array_bitsize (value_type (arr));
1807
1808 return array_type;
1809 }
1810 else
1811 {
1812 struct type *elt_type;
1813 int arity;
1814 struct value *descriptor;
1815
1816 elt_type = ada_array_element_type (value_type (arr), -1);
1817 arity = ada_array_arity (value_type (arr));
1818
1819 if (elt_type == NULL || arity == 0)
1820 return ada_check_typedef (value_type (arr));
1821
1822 descriptor = desc_bounds (arr);
1823 if (value_as_long (descriptor) == 0)
1824 return NULL;
1825 while (arity > 0)
1826 {
1827 struct type *range_type = alloc_type_copy (value_type (arr));
1828 struct type *array_type = alloc_type_copy (value_type (arr));
1829 struct value *low = desc_one_bound (descriptor, arity, 0);
1830 struct value *high = desc_one_bound (descriptor, arity, 1);
1831
1832 arity -= 1;
1833 create_static_range_type (range_type, value_type (low),
1834 longest_to_int (value_as_long (low)),
1835 longest_to_int (value_as_long (high)));
1836 elt_type = create_array_type (array_type, elt_type, range_type);
1837
1838 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1839 {
1840 /* We need to store the element packed bitsize, as well as
1841 recompute the array size, because it was previously
1842 computed based on the unpacked element size. */
1843 LONGEST lo = value_as_long (low);
1844 LONGEST hi = value_as_long (high);
1845
1846 TYPE_FIELD_BITSIZE (elt_type, 0) =
1847 decode_packed_array_bitsize (value_type (arr));
1848 /* If the array has no element, then the size is already
1849 zero, and does not need to be recomputed. */
1850 if (lo < hi)
1851 {
1852 int array_bitsize =
1853 (hi - lo + 1) * TYPE_FIELD_BITSIZE (elt_type, 0);
1854
1855 TYPE_LENGTH (array_type) = (array_bitsize + 7) / 8;
1856 }
1857 }
1858 }
1859
1860 return lookup_pointer_type (elt_type);
1861 }
1862 }
1863
1864 /* If ARR does not represent an array, returns ARR unchanged.
1865 Otherwise, returns either a standard GDB array with bounds set
1866 appropriately or, if ARR is a non-null fat pointer, a pointer to a standard
1867 GDB array. Returns NULL if ARR is a null fat pointer. */
1868
1869 struct value *
1870 ada_coerce_to_simple_array_ptr (struct value *arr)
1871 {
1872 if (ada_is_array_descriptor_type (value_type (arr)))
1873 {
1874 struct type *arrType = ada_type_of_array (arr, 1);
1875
1876 if (arrType == NULL)
1877 return NULL;
1878 return value_cast (arrType, value_copy (desc_data (arr)));
1879 }
1880 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1881 return decode_constrained_packed_array (arr);
1882 else
1883 return arr;
1884 }
1885
1886 /* If ARR does not represent an array, returns ARR unchanged.
1887 Otherwise, returns a standard GDB array describing ARR (which may
1888 be ARR itself if it already is in the proper form). */
1889
1890 struct value *
1891 ada_coerce_to_simple_array (struct value *arr)
1892 {
1893 if (ada_is_array_descriptor_type (value_type (arr)))
1894 {
1895 struct value *arrVal = ada_coerce_to_simple_array_ptr (arr);
1896
1897 if (arrVal == NULL)
1898 error (_("Bounds unavailable for null array pointer."));
1899 ada_ensure_varsize_limit (TYPE_TARGET_TYPE (value_type (arrVal)));
1900 return value_ind (arrVal);
1901 }
1902 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1903 return decode_constrained_packed_array (arr);
1904 else
1905 return arr;
1906 }
1907
1908 /* If TYPE represents a GNAT array type, return it translated to an
1909 ordinary GDB array type (possibly with BITSIZE fields indicating
1910 packing). For other types, is the identity. */
1911
1912 struct type *
1913 ada_coerce_to_simple_array_type (struct type *type)
1914 {
1915 if (ada_is_constrained_packed_array_type (type))
1916 return decode_constrained_packed_array_type (type);
1917
1918 if (ada_is_array_descriptor_type (type))
1919 return ada_check_typedef (desc_data_target_type (type));
1920
1921 return type;
1922 }
1923
1924 /* Non-zero iff TYPE represents a standard GNAT packed-array type. */
1925
1926 static int
1927 ada_is_gnat_encoded_packed_array_type (struct type *type)
1928 {
1929 if (type == NULL)
1930 return 0;
1931 type = desc_base_type (type);
1932 type = ada_check_typedef (type);
1933 return
1934 ada_type_name (type) != NULL
1935 && strstr (ada_type_name (type), "___XP") != NULL;
1936 }
1937
1938 /* Non-zero iff TYPE represents a standard GNAT constrained
1939 packed-array type. */
1940
1941 int
1942 ada_is_constrained_packed_array_type (struct type *type)
1943 {
1944 return ada_is_gnat_encoded_packed_array_type (type)
1945 && !ada_is_array_descriptor_type (type);
1946 }
1947
1948 /* Non-zero iff TYPE represents an array descriptor for a
1949 unconstrained packed-array type. */
1950
1951 static int
1952 ada_is_unconstrained_packed_array_type (struct type *type)
1953 {
1954 if (!ada_is_array_descriptor_type (type))
1955 return 0;
1956
1957 if (ada_is_gnat_encoded_packed_array_type (type))
1958 return 1;
1959
1960 /* If we saw GNAT encodings, then the above code is sufficient.
1961 However, with minimal encodings, we will just have a thick
1962 pointer instead. */
1963 if (is_thick_pntr (type))
1964 {
1965 type = desc_base_type (type);
1966 /* The structure's first field is a pointer to an array, so this
1967 fetches the array type. */
1968 type = TYPE_TARGET_TYPE (type->field (0).type ());
1969 /* Now we can see if the array elements are packed. */
1970 return TYPE_FIELD_BITSIZE (type, 0) > 0;
1971 }
1972
1973 return 0;
1974 }
1975
1976 /* Return true if TYPE is a (Gnat-encoded) constrained packed array
1977 type, or if it is an ordinary (non-Gnat-encoded) packed array. */
1978
1979 static bool
1980 ada_is_any_packed_array_type (struct type *type)
1981 {
1982 return (ada_is_constrained_packed_array_type (type)
1983 || (type->code () == TYPE_CODE_ARRAY
1984 && TYPE_FIELD_BITSIZE (type, 0) % 8 != 0));
1985 }
1986
1987 /* Given that TYPE encodes a packed array type (constrained or unconstrained),
1988 return the size of its elements in bits. */
1989
1990 static long
1991 decode_packed_array_bitsize (struct type *type)
1992 {
1993 const char *raw_name;
1994 const char *tail;
1995 long bits;
1996
1997 /* Access to arrays implemented as fat pointers are encoded as a typedef
1998 of the fat pointer type. We need the name of the fat pointer type
1999 to do the decoding, so strip the typedef layer. */
2000 if (type->code () == TYPE_CODE_TYPEDEF)
2001 type = ada_typedef_target_type (type);
2002
2003 raw_name = ada_type_name (ada_check_typedef (type));
2004 if (!raw_name)
2005 raw_name = ada_type_name (desc_base_type (type));
2006
2007 if (!raw_name)
2008 return 0;
2009
2010 tail = strstr (raw_name, "___XP");
2011 if (tail == nullptr)
2012 {
2013 gdb_assert (is_thick_pntr (type));
2014 /* The structure's first field is a pointer to an array, so this
2015 fetches the array type. */
2016 type = TYPE_TARGET_TYPE (type->field (0).type ());
2017 /* Now we can see if the array elements are packed. */
2018 return TYPE_FIELD_BITSIZE (type, 0);
2019 }
2020
2021 if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1)
2022 {
2023 lim_warning
2024 (_("could not understand bit size information on packed array"));
2025 return 0;
2026 }
2027
2028 return bits;
2029 }
2030
2031 /* Given that TYPE is a standard GDB array type with all bounds filled
2032 in, and that the element size of its ultimate scalar constituents
2033 (that is, either its elements, or, if it is an array of arrays, its
2034 elements' elements, etc.) is *ELT_BITS, return an identical type,
2035 but with the bit sizes of its elements (and those of any
2036 constituent arrays) recorded in the BITSIZE components of its
2037 TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size
2038 in bits.
2039
2040 Note that, for arrays whose index type has an XA encoding where
2041 a bound references a record discriminant, getting that discriminant,
2042 and therefore the actual value of that bound, is not possible
2043 because none of the given parameters gives us access to the record.
2044 This function assumes that it is OK in the context where it is being
2045 used to return an array whose bounds are still dynamic and where
2046 the length is arbitrary. */
2047
2048 static struct type *
2049 constrained_packed_array_type (struct type *type, long *elt_bits)
2050 {
2051 struct type *new_elt_type;
2052 struct type *new_type;
2053 struct type *index_type_desc;
2054 struct type *index_type;
2055 LONGEST low_bound, high_bound;
2056
2057 type = ada_check_typedef (type);
2058 if (type->code () != TYPE_CODE_ARRAY)
2059 return type;
2060
2061 index_type_desc = ada_find_parallel_type (type, "___XA");
2062 if (index_type_desc)
2063 index_type = to_fixed_range_type (index_type_desc->field (0).type (),
2064 NULL);
2065 else
2066 index_type = type->index_type ();
2067
2068 new_type = alloc_type_copy (type);
2069 new_elt_type =
2070 constrained_packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)),
2071 elt_bits);
2072 create_array_type (new_type, new_elt_type, index_type);
2073 TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits;
2074 new_type->set_name (ada_type_name (type));
2075
2076 if ((check_typedef (index_type)->code () == TYPE_CODE_RANGE
2077 && is_dynamic_type (check_typedef (index_type)))
2078 || !get_discrete_bounds (index_type, &low_bound, &high_bound))
2079 low_bound = high_bound = 0;
2080 if (high_bound < low_bound)
2081 *elt_bits = TYPE_LENGTH (new_type) = 0;
2082 else
2083 {
2084 *elt_bits *= (high_bound - low_bound + 1);
2085 TYPE_LENGTH (new_type) =
2086 (*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2087 }
2088
2089 new_type->set_is_fixed_instance (true);
2090 return new_type;
2091 }
2092
2093 /* The array type encoded by TYPE, where
2094 ada_is_constrained_packed_array_type (TYPE). */
2095
2096 static struct type *
2097 decode_constrained_packed_array_type (struct type *type)
2098 {
2099 const char *raw_name = ada_type_name (ada_check_typedef (type));
2100 char *name;
2101 const char *tail;
2102 struct type *shadow_type;
2103 long bits;
2104
2105 if (!raw_name)
2106 raw_name = ada_type_name (desc_base_type (type));
2107
2108 if (!raw_name)
2109 return NULL;
2110
2111 name = (char *) alloca (strlen (raw_name) + 1);
2112 tail = strstr (raw_name, "___XP");
2113 type = desc_base_type (type);
2114
2115 memcpy (name, raw_name, tail - raw_name);
2116 name[tail - raw_name] = '\000';
2117
2118 shadow_type = ada_find_parallel_type_with_name (type, name);
2119
2120 if (shadow_type == NULL)
2121 {
2122 lim_warning (_("could not find bounds information on packed array"));
2123 return NULL;
2124 }
2125 shadow_type = check_typedef (shadow_type);
2126
2127 if (shadow_type->code () != TYPE_CODE_ARRAY)
2128 {
2129 lim_warning (_("could not understand bounds "
2130 "information on packed array"));
2131 return NULL;
2132 }
2133
2134 bits = decode_packed_array_bitsize (type);
2135 return constrained_packed_array_type (shadow_type, &bits);
2136 }
2137
2138 /* Helper function for decode_constrained_packed_array. Set the field
2139 bitsize on a series of packed arrays. Returns the number of
2140 elements in TYPE. */
2141
2142 static LONGEST
2143 recursively_update_array_bitsize (struct type *type)
2144 {
2145 gdb_assert (type->code () == TYPE_CODE_ARRAY);
2146
2147 LONGEST low, high;
2148 if (!get_discrete_bounds (type->index_type (), &low, &high)
2149 || low > high)
2150 return 0;
2151 LONGEST our_len = high - low + 1;
2152
2153 struct type *elt_type = TYPE_TARGET_TYPE (type);
2154 if (elt_type->code () == TYPE_CODE_ARRAY)
2155 {
2156 LONGEST elt_len = recursively_update_array_bitsize (elt_type);
2157 LONGEST elt_bitsize = elt_len * TYPE_FIELD_BITSIZE (elt_type, 0);
2158 TYPE_FIELD_BITSIZE (type, 0) = elt_bitsize;
2159
2160 TYPE_LENGTH (type) = ((our_len * elt_bitsize + HOST_CHAR_BIT - 1)
2161 / HOST_CHAR_BIT);
2162 }
2163
2164 return our_len;
2165 }
2166
2167 /* Given that ARR is a struct value *indicating a GNAT constrained packed
2168 array, returns a simple array that denotes that array. Its type is a
2169 standard GDB array type except that the BITSIZEs of the array
2170 target types are set to the number of bits in each element, and the
2171 type length is set appropriately. */
2172
2173 static struct value *
2174 decode_constrained_packed_array (struct value *arr)
2175 {
2176 struct type *type;
2177
2178 /* If our value is a pointer, then dereference it. Likewise if
2179 the value is a reference. Make sure that this operation does not
2180 cause the target type to be fixed, as this would indirectly cause
2181 this array to be decoded. The rest of the routine assumes that
2182 the array hasn't been decoded yet, so we use the basic "coerce_ref"
2183 and "value_ind" routines to perform the dereferencing, as opposed
2184 to using "ada_coerce_ref" or "ada_value_ind". */
2185 arr = coerce_ref (arr);
2186 if (ada_check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
2187 arr = value_ind (arr);
2188
2189 type = decode_constrained_packed_array_type (value_type (arr));
2190 if (type == NULL)
2191 {
2192 error (_("can't unpack array"));
2193 return NULL;
2194 }
2195
2196 /* Decoding the packed array type could not correctly set the field
2197 bitsizes for any dimension except the innermost, because the
2198 bounds may be variable and were not passed to that function. So,
2199 we further resolve the array bounds here and then update the
2200 sizes. */
2201 const gdb_byte *valaddr = value_contents_for_printing (arr);
2202 CORE_ADDR address = value_address (arr);
2203 gdb::array_view<const gdb_byte> view
2204 = gdb::make_array_view (valaddr, TYPE_LENGTH (type));
2205 type = resolve_dynamic_type (type, view, address);
2206 recursively_update_array_bitsize (type);
2207
2208 if (type_byte_order (value_type (arr)) == BFD_ENDIAN_BIG
2209 && ada_is_modular_type (value_type (arr)))
2210 {
2211 /* This is a (right-justified) modular type representing a packed
2212 array with no wrapper. In order to interpret the value through
2213 the (left-justified) packed array type we just built, we must
2214 first left-justify it. */
2215 int bit_size, bit_pos;
2216 ULONGEST mod;
2217
2218 mod = ada_modulus (value_type (arr)) - 1;
2219 bit_size = 0;
2220 while (mod > 0)
2221 {
2222 bit_size += 1;
2223 mod >>= 1;
2224 }
2225 bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size;
2226 arr = ada_value_primitive_packed_val (arr, NULL,
2227 bit_pos / HOST_CHAR_BIT,
2228 bit_pos % HOST_CHAR_BIT,
2229 bit_size,
2230 type);
2231 }
2232
2233 return coerce_unspec_val_to_type (arr, type);
2234 }
2235
2236
2237 /* The value of the element of packed array ARR at the ARITY indices
2238 given in IND. ARR must be a simple array. */
2239
2240 static struct value *
2241 value_subscript_packed (struct value *arr, int arity, struct value **ind)
2242 {
2243 int i;
2244 int bits, elt_off, bit_off;
2245 long elt_total_bit_offset;
2246 struct type *elt_type;
2247 struct value *v;
2248
2249 bits = 0;
2250 elt_total_bit_offset = 0;
2251 elt_type = ada_check_typedef (value_type (arr));
2252 for (i = 0; i < arity; i += 1)
2253 {
2254 if (elt_type->code () != TYPE_CODE_ARRAY
2255 || TYPE_FIELD_BITSIZE (elt_type, 0) == 0)
2256 error
2257 (_("attempt to do packed indexing of "
2258 "something other than a packed array"));
2259 else
2260 {
2261 struct type *range_type = elt_type->index_type ();
2262 LONGEST lowerbound, upperbound;
2263 LONGEST idx;
2264
2265 if (!get_discrete_bounds (range_type, &lowerbound, &upperbound))
2266 {
2267 lim_warning (_("don't know bounds of array"));
2268 lowerbound = upperbound = 0;
2269 }
2270
2271 idx = pos_atr (ind[i]);
2272 if (idx < lowerbound || idx > upperbound)
2273 lim_warning (_("packed array index %ld out of bounds"),
2274 (long) idx);
2275 bits = TYPE_FIELD_BITSIZE (elt_type, 0);
2276 elt_total_bit_offset += (idx - lowerbound) * bits;
2277 elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type));
2278 }
2279 }
2280 elt_off = elt_total_bit_offset / HOST_CHAR_BIT;
2281 bit_off = elt_total_bit_offset % HOST_CHAR_BIT;
2282
2283 v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off,
2284 bits, elt_type);
2285 return v;
2286 }
2287
2288 /* Non-zero iff TYPE includes negative integer values. */
2289
2290 static int
2291 has_negatives (struct type *type)
2292 {
2293 switch (type->code ())
2294 {
2295 default:
2296 return 0;
2297 case TYPE_CODE_INT:
2298 return !type->is_unsigned ();
2299 case TYPE_CODE_RANGE:
2300 return type->bounds ()->low.const_val () - type->bounds ()->bias < 0;
2301 }
2302 }
2303
2304 /* With SRC being a buffer containing BIT_SIZE bits of data at BIT_OFFSET,
2305 unpack that data into UNPACKED. UNPACKED_LEN is the size in bytes of
2306 the unpacked buffer.
2307
2308 The size of the unpacked buffer (UNPACKED_LEN) is expected to be large
2309 enough to contain at least BIT_OFFSET bits. If not, an error is raised.
2310
2311 IS_BIG_ENDIAN is nonzero if the data is stored in big endian mode,
2312 zero otherwise.
2313
2314 IS_SIGNED_TYPE is nonzero if the data corresponds to a signed type.
2315
2316 IS_SCALAR is nonzero if the data corresponds to a signed type. */
2317
2318 static void
2319 ada_unpack_from_contents (const gdb_byte *src, int bit_offset, int bit_size,
2320 gdb_byte *unpacked, int unpacked_len,
2321 int is_big_endian, int is_signed_type,
2322 int is_scalar)
2323 {
2324 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2325 int src_idx; /* Index into the source area */
2326 int src_bytes_left; /* Number of source bytes left to process. */
2327 int srcBitsLeft; /* Number of source bits left to move */
2328 int unusedLS; /* Number of bits in next significant
2329 byte of source that are unused */
2330
2331 int unpacked_idx; /* Index into the unpacked buffer */
2332 int unpacked_bytes_left; /* Number of bytes left to set in unpacked. */
2333
2334 unsigned long accum; /* Staging area for bits being transferred */
2335 int accumSize; /* Number of meaningful bits in accum */
2336 unsigned char sign;
2337
2338 /* Transmit bytes from least to most significant; delta is the direction
2339 the indices move. */
2340 int delta = is_big_endian ? -1 : 1;
2341
2342 /* Make sure that unpacked is large enough to receive the BIT_SIZE
2343 bits from SRC. .*/
2344 if ((bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT > unpacked_len)
2345 error (_("Cannot unpack %d bits into buffer of %d bytes"),
2346 bit_size, unpacked_len);
2347
2348 srcBitsLeft = bit_size;
2349 src_bytes_left = src_len;
2350 unpacked_bytes_left = unpacked_len;
2351 sign = 0;
2352
2353 if (is_big_endian)
2354 {
2355 src_idx = src_len - 1;
2356 if (is_signed_type
2357 && ((src[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1))))
2358 sign = ~0;
2359
2360 unusedLS =
2361 (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT)
2362 % HOST_CHAR_BIT;
2363
2364 if (is_scalar)
2365 {
2366 accumSize = 0;
2367 unpacked_idx = unpacked_len - 1;
2368 }
2369 else
2370 {
2371 /* Non-scalar values must be aligned at a byte boundary... */
2372 accumSize =
2373 (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT;
2374 /* ... And are placed at the beginning (most-significant) bytes
2375 of the target. */
2376 unpacked_idx = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT - 1;
2377 unpacked_bytes_left = unpacked_idx + 1;
2378 }
2379 }
2380 else
2381 {
2382 int sign_bit_offset = (bit_size + bit_offset - 1) % 8;
2383
2384 src_idx = unpacked_idx = 0;
2385 unusedLS = bit_offset;
2386 accumSize = 0;
2387
2388 if (is_signed_type && (src[src_len - 1] & (1 << sign_bit_offset)))
2389 sign = ~0;
2390 }
2391
2392 accum = 0;
2393 while (src_bytes_left > 0)
2394 {
2395 /* Mask for removing bits of the next source byte that are not
2396 part of the value. */
2397 unsigned int unusedMSMask =
2398 (1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) -
2399 1;
2400 /* Sign-extend bits for this byte. */
2401 unsigned int signMask = sign & ~unusedMSMask;
2402
2403 accum |=
2404 (((src[src_idx] >> unusedLS) & unusedMSMask) | signMask) << accumSize;
2405 accumSize += HOST_CHAR_BIT - unusedLS;
2406 if (accumSize >= HOST_CHAR_BIT)
2407 {
2408 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2409 accumSize -= HOST_CHAR_BIT;
2410 accum >>= HOST_CHAR_BIT;
2411 unpacked_bytes_left -= 1;
2412 unpacked_idx += delta;
2413 }
2414 srcBitsLeft -= HOST_CHAR_BIT - unusedLS;
2415 unusedLS = 0;
2416 src_bytes_left -= 1;
2417 src_idx += delta;
2418 }
2419 while (unpacked_bytes_left > 0)
2420 {
2421 accum |= sign << accumSize;
2422 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2423 accumSize -= HOST_CHAR_BIT;
2424 if (accumSize < 0)
2425 accumSize = 0;
2426 accum >>= HOST_CHAR_BIT;
2427 unpacked_bytes_left -= 1;
2428 unpacked_idx += delta;
2429 }
2430 }
2431
2432 /* Create a new value of type TYPE from the contents of OBJ starting
2433 at byte OFFSET, and bit offset BIT_OFFSET within that byte,
2434 proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then
2435 assigning through the result will set the field fetched from.
2436 VALADDR is ignored unless OBJ is NULL, in which case,
2437 VALADDR+OFFSET must address the start of storage containing the
2438 packed value. The value returned in this case is never an lval.
2439 Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */
2440
2441 struct value *
2442 ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
2443 long offset, int bit_offset, int bit_size,
2444 struct type *type)
2445 {
2446 struct value *v;
2447 const gdb_byte *src; /* First byte containing data to unpack */
2448 gdb_byte *unpacked;
2449 const int is_scalar = is_scalar_type (type);
2450 const int is_big_endian = type_byte_order (type) == BFD_ENDIAN_BIG;
2451 gdb::byte_vector staging;
2452
2453 type = ada_check_typedef (type);
2454
2455 if (obj == NULL)
2456 src = valaddr + offset;
2457 else
2458 src = value_contents (obj) + offset;
2459
2460 if (is_dynamic_type (type))
2461 {
2462 /* The length of TYPE might by dynamic, so we need to resolve
2463 TYPE in order to know its actual size, which we then use
2464 to create the contents buffer of the value we return.
2465 The difficulty is that the data containing our object is
2466 packed, and therefore maybe not at a byte boundary. So, what
2467 we do, is unpack the data into a byte-aligned buffer, and then
2468 use that buffer as our object's value for resolving the type. */
2469 int staging_len = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2470 staging.resize (staging_len);
2471
2472 ada_unpack_from_contents (src, bit_offset, bit_size,
2473 staging.data (), staging.size (),
2474 is_big_endian, has_negatives (type),
2475 is_scalar);
2476 type = resolve_dynamic_type (type, staging, 0);
2477 if (TYPE_LENGTH (type) < (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT)
2478 {
2479 /* This happens when the length of the object is dynamic,
2480 and is actually smaller than the space reserved for it.
2481 For instance, in an array of variant records, the bit_size
2482 we're given is the array stride, which is constant and
2483 normally equal to the maximum size of its element.
2484 But, in reality, each element only actually spans a portion
2485 of that stride. */
2486 bit_size = TYPE_LENGTH (type) * HOST_CHAR_BIT;
2487 }
2488 }
2489
2490 if (obj == NULL)
2491 {
2492 v = allocate_value (type);
2493 src = valaddr + offset;
2494 }
2495 else if (VALUE_LVAL (obj) == lval_memory && value_lazy (obj))
2496 {
2497 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2498 gdb_byte *buf;
2499
2500 v = value_at (type, value_address (obj) + offset);
2501 buf = (gdb_byte *) alloca (src_len);
2502 read_memory (value_address (v), buf, src_len);
2503 src = buf;
2504 }
2505 else
2506 {
2507 v = allocate_value (type);
2508 src = value_contents (obj) + offset;
2509 }
2510
2511 if (obj != NULL)
2512 {
2513 long new_offset = offset;
2514
2515 set_value_component_location (v, obj);
2516 set_value_bitpos (v, bit_offset + value_bitpos (obj));
2517 set_value_bitsize (v, bit_size);
2518 if (value_bitpos (v) >= HOST_CHAR_BIT)
2519 {
2520 ++new_offset;
2521 set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT);
2522 }
2523 set_value_offset (v, new_offset);
2524
2525 /* Also set the parent value. This is needed when trying to
2526 assign a new value (in inferior memory). */
2527 set_value_parent (v, obj);
2528 }
2529 else
2530 set_value_bitsize (v, bit_size);
2531 unpacked = value_contents_writeable (v);
2532
2533 if (bit_size == 0)
2534 {
2535 memset (unpacked, 0, TYPE_LENGTH (type));
2536 return v;
2537 }
2538
2539 if (staging.size () == TYPE_LENGTH (type))
2540 {
2541 /* Small short-cut: If we've unpacked the data into a buffer
2542 of the same size as TYPE's length, then we can reuse that,
2543 instead of doing the unpacking again. */
2544 memcpy (unpacked, staging.data (), staging.size ());
2545 }
2546 else
2547 ada_unpack_from_contents (src, bit_offset, bit_size,
2548 unpacked, TYPE_LENGTH (type),
2549 is_big_endian, has_negatives (type), is_scalar);
2550
2551 return v;
2552 }
2553
2554 /* Store the contents of FROMVAL into the location of TOVAL.
2555 Return a new value with the location of TOVAL and contents of
2556 FROMVAL. Handles assignment into packed fields that have
2557 floating-point or non-scalar types. */
2558
2559 static struct value *
2560 ada_value_assign (struct value *toval, struct value *fromval)
2561 {
2562 struct type *type = value_type (toval);
2563 int bits = value_bitsize (toval);
2564
2565 toval = ada_coerce_ref (toval);
2566 fromval = ada_coerce_ref (fromval);
2567
2568 if (ada_is_direct_array_type (value_type (toval)))
2569 toval = ada_coerce_to_simple_array (toval);
2570 if (ada_is_direct_array_type (value_type (fromval)))
2571 fromval = ada_coerce_to_simple_array (fromval);
2572
2573 if (!deprecated_value_modifiable (toval))
2574 error (_("Left operand of assignment is not a modifiable lvalue."));
2575
2576 if (VALUE_LVAL (toval) == lval_memory
2577 && bits > 0
2578 && (type->code () == TYPE_CODE_FLT
2579 || type->code () == TYPE_CODE_STRUCT))
2580 {
2581 int len = (value_bitpos (toval)
2582 + bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2583 int from_size;
2584 gdb_byte *buffer = (gdb_byte *) alloca (len);
2585 struct value *val;
2586 CORE_ADDR to_addr = value_address (toval);
2587
2588 if (type->code () == TYPE_CODE_FLT)
2589 fromval = value_cast (type, fromval);
2590
2591 read_memory (to_addr, buffer, len);
2592 from_size = value_bitsize (fromval);
2593 if (from_size == 0)
2594 from_size = TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT;
2595
2596 const int is_big_endian = type_byte_order (type) == BFD_ENDIAN_BIG;
2597 ULONGEST from_offset = 0;
2598 if (is_big_endian && is_scalar_type (value_type (fromval)))
2599 from_offset = from_size - bits;
2600 copy_bitwise (buffer, value_bitpos (toval),
2601 value_contents (fromval), from_offset,
2602 bits, is_big_endian);
2603 write_memory_with_notification (to_addr, buffer, len);
2604
2605 val = value_copy (toval);
2606 memcpy (value_contents_raw (val), value_contents (fromval),
2607 TYPE_LENGTH (type));
2608 deprecated_set_value_type (val, type);
2609
2610 return val;
2611 }
2612
2613 return value_assign (toval, fromval);
2614 }
2615
2616
2617 /* Given that COMPONENT is a memory lvalue that is part of the lvalue
2618 CONTAINER, assign the contents of VAL to COMPONENTS's place in
2619 CONTAINER. Modifies the VALUE_CONTENTS of CONTAINER only, not
2620 COMPONENT, and not the inferior's memory. The current contents
2621 of COMPONENT are ignored.
2622
2623 Although not part of the initial design, this function also works
2624 when CONTAINER and COMPONENT are not_lval's: it works as if CONTAINER
2625 had a null address, and COMPONENT had an address which is equal to
2626 its offset inside CONTAINER. */
2627
2628 static void
2629 value_assign_to_component (struct value *container, struct value *component,
2630 struct value *val)
2631 {
2632 LONGEST offset_in_container =
2633 (LONGEST) (value_address (component) - value_address (container));
2634 int bit_offset_in_container =
2635 value_bitpos (component) - value_bitpos (container);
2636 int bits;
2637
2638 val = value_cast (value_type (component), val);
2639
2640 if (value_bitsize (component) == 0)
2641 bits = TARGET_CHAR_BIT * TYPE_LENGTH (value_type (component));
2642 else
2643 bits = value_bitsize (component);
2644
2645 if (type_byte_order (value_type (container)) == BFD_ENDIAN_BIG)
2646 {
2647 int src_offset;
2648
2649 if (is_scalar_type (check_typedef (value_type (component))))
2650 src_offset
2651 = TYPE_LENGTH (value_type (component)) * TARGET_CHAR_BIT - bits;
2652 else
2653 src_offset = 0;
2654 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2655 value_bitpos (container) + bit_offset_in_container,
2656 value_contents (val), src_offset, bits, 1);
2657 }
2658 else
2659 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2660 value_bitpos (container) + bit_offset_in_container,
2661 value_contents (val), 0, bits, 0);
2662 }
2663
2664 /* Determine if TYPE is an access to an unconstrained array. */
2665
2666 bool
2667 ada_is_access_to_unconstrained_array (struct type *type)
2668 {
2669 return (type->code () == TYPE_CODE_TYPEDEF
2670 && is_thick_pntr (ada_typedef_target_type (type)));
2671 }
2672
2673 /* The value of the element of array ARR at the ARITY indices given in IND.
2674 ARR may be either a simple array, GNAT array descriptor, or pointer
2675 thereto. */
2676
2677 struct value *
2678 ada_value_subscript (struct value *arr, int arity, struct value **ind)
2679 {
2680 int k;
2681 struct value *elt;
2682 struct type *elt_type;
2683
2684 elt = ada_coerce_to_simple_array (arr);
2685
2686 elt_type = ada_check_typedef (value_type (elt));
2687 if (elt_type->code () == TYPE_CODE_ARRAY
2688 && TYPE_FIELD_BITSIZE (elt_type, 0) > 0)
2689 return value_subscript_packed (elt, arity, ind);
2690
2691 for (k = 0; k < arity; k += 1)
2692 {
2693 struct type *saved_elt_type = TYPE_TARGET_TYPE (elt_type);
2694
2695 if (elt_type->code () != TYPE_CODE_ARRAY)
2696 error (_("too many subscripts (%d expected)"), k);
2697
2698 elt = value_subscript (elt, pos_atr (ind[k]));
2699
2700 if (ada_is_access_to_unconstrained_array (saved_elt_type)
2701 && value_type (elt)->code () != TYPE_CODE_TYPEDEF)
2702 {
2703 /* The element is a typedef to an unconstrained array,
2704 except that the value_subscript call stripped the
2705 typedef layer. The typedef layer is GNAT's way to
2706 specify that the element is, at the source level, an
2707 access to the unconstrained array, rather than the
2708 unconstrained array. So, we need to restore that
2709 typedef layer, which we can do by forcing the element's
2710 type back to its original type. Otherwise, the returned
2711 value is going to be printed as the array, rather
2712 than as an access. Another symptom of the same issue
2713 would be that an expression trying to dereference the
2714 element would also be improperly rejected. */
2715 deprecated_set_value_type (elt, saved_elt_type);
2716 }
2717
2718 elt_type = ada_check_typedef (value_type (elt));
2719 }
2720
2721 return elt;
2722 }
2723
2724 /* Assuming ARR is a pointer to a GDB array, the value of the element
2725 of *ARR at the ARITY indices given in IND.
2726 Does not read the entire array into memory.
2727
2728 Note: Unlike what one would expect, this function is used instead of
2729 ada_value_subscript for basically all non-packed array types. The reason
2730 for this is that a side effect of doing our own pointer arithmetics instead
2731 of relying on value_subscript is that there is no implicit typedef peeling.
2732 This is important for arrays of array accesses, where it allows us to
2733 preserve the fact that the array's element is an array access, where the
2734 access part os encoded in a typedef layer. */
2735
2736 static struct value *
2737 ada_value_ptr_subscript (struct value *arr, int arity, struct value **ind)
2738 {
2739 int k;
2740 struct value *array_ind = ada_value_ind (arr);
2741 struct type *type
2742 = check_typedef (value_enclosing_type (array_ind));
2743
2744 if (type->code () == TYPE_CODE_ARRAY
2745 && TYPE_FIELD_BITSIZE (type, 0) > 0)
2746 return value_subscript_packed (array_ind, arity, ind);
2747
2748 for (k = 0; k < arity; k += 1)
2749 {
2750 LONGEST lwb, upb;
2751
2752 if (type->code () != TYPE_CODE_ARRAY)
2753 error (_("too many subscripts (%d expected)"), k);
2754 arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
2755 value_copy (arr));
2756 get_discrete_bounds (type->index_type (), &lwb, &upb);
2757 arr = value_ptradd (arr, pos_atr (ind[k]) - lwb);
2758 type = TYPE_TARGET_TYPE (type);
2759 }
2760
2761 return value_ind (arr);
2762 }
2763
2764 /* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the
2765 actual type of ARRAY_PTR is ignored), returns the Ada slice of
2766 HIGH'Pos-LOW'Pos+1 elements starting at index LOW. The lower bound of
2767 this array is LOW, as per Ada rules. */
2768 static struct value *
2769 ada_value_slice_from_ptr (struct value *array_ptr, struct type *type,
2770 int low, int high)
2771 {
2772 struct type *type0 = ada_check_typedef (type);
2773 struct type *base_index_type = TYPE_TARGET_TYPE (type0->index_type ());
2774 struct type *index_type
2775 = create_static_range_type (NULL, base_index_type, low, high);
2776 struct type *slice_type = create_array_type_with_stride
2777 (NULL, TYPE_TARGET_TYPE (type0), index_type,
2778 type0->dyn_prop (DYN_PROP_BYTE_STRIDE),
2779 TYPE_FIELD_BITSIZE (type0, 0));
2780 int base_low = ada_discrete_type_low_bound (type0->index_type ());
2781 gdb::optional<LONGEST> base_low_pos, low_pos;
2782 CORE_ADDR base;
2783
2784 low_pos = discrete_position (base_index_type, low);
2785 base_low_pos = discrete_position (base_index_type, base_low);
2786
2787 if (!low_pos.has_value () || !base_low_pos.has_value ())
2788 {
2789 warning (_("unable to get positions in slice, use bounds instead"));
2790 low_pos = low;
2791 base_low_pos = base_low;
2792 }
2793
2794 ULONGEST stride = TYPE_FIELD_BITSIZE (slice_type, 0) / 8;
2795 if (stride == 0)
2796 stride = TYPE_LENGTH (TYPE_TARGET_TYPE (type0));
2797
2798 base = value_as_address (array_ptr) + (*low_pos - *base_low_pos) * stride;
2799 return value_at_lazy (slice_type, base);
2800 }
2801
2802
2803 static struct value *
2804 ada_value_slice (struct value *array, int low, int high)
2805 {
2806 struct type *type = ada_check_typedef (value_type (array));
2807 struct type *base_index_type = TYPE_TARGET_TYPE (type->index_type ());
2808 struct type *index_type
2809 = create_static_range_type (NULL, type->index_type (), low, high);
2810 struct type *slice_type = create_array_type_with_stride
2811 (NULL, TYPE_TARGET_TYPE (type), index_type,
2812 type->dyn_prop (DYN_PROP_BYTE_STRIDE),
2813 TYPE_FIELD_BITSIZE (type, 0));
2814 gdb::optional<LONGEST> low_pos, high_pos;
2815
2816
2817 low_pos = discrete_position (base_index_type, low);
2818 high_pos = discrete_position (base_index_type, high);
2819
2820 if (!low_pos.has_value () || !high_pos.has_value ())
2821 {
2822 warning (_("unable to get positions in slice, use bounds instead"));
2823 low_pos = low;
2824 high_pos = high;
2825 }
2826
2827 return value_cast (slice_type,
2828 value_slice (array, low, *high_pos - *low_pos + 1));
2829 }
2830
2831 /* If type is a record type in the form of a standard GNAT array
2832 descriptor, returns the number of dimensions for type. If arr is a
2833 simple array, returns the number of "array of"s that prefix its
2834 type designation. Otherwise, returns 0. */
2835
2836 int
2837 ada_array_arity (struct type *type)
2838 {
2839 int arity;
2840
2841 if (type == NULL)
2842 return 0;
2843
2844 type = desc_base_type (type);
2845
2846 arity = 0;
2847 if (type->code () == TYPE_CODE_STRUCT)
2848 return desc_arity (desc_bounds_type (type));
2849 else
2850 while (type->code () == TYPE_CODE_ARRAY)
2851 {
2852 arity += 1;
2853 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
2854 }
2855
2856 return arity;
2857 }
2858
2859 /* If TYPE is a record type in the form of a standard GNAT array
2860 descriptor or a simple array type, returns the element type for
2861 TYPE after indexing by NINDICES indices, or by all indices if
2862 NINDICES is -1. Otherwise, returns NULL. */
2863
2864 struct type *
2865 ada_array_element_type (struct type *type, int nindices)
2866 {
2867 type = desc_base_type (type);
2868
2869 if (type->code () == TYPE_CODE_STRUCT)
2870 {
2871 int k;
2872 struct type *p_array_type;
2873
2874 p_array_type = desc_data_target_type (type);
2875
2876 k = ada_array_arity (type);
2877 if (k == 0)
2878 return NULL;
2879
2880 /* Initially p_array_type = elt_type(*)[]...(k times)...[]. */
2881 if (nindices >= 0 && k > nindices)
2882 k = nindices;
2883 while (k > 0 && p_array_type != NULL)
2884 {
2885 p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type));
2886 k -= 1;
2887 }
2888 return p_array_type;
2889 }
2890 else if (type->code () == TYPE_CODE_ARRAY)
2891 {
2892 while (nindices != 0 && type->code () == TYPE_CODE_ARRAY)
2893 {
2894 type = TYPE_TARGET_TYPE (type);
2895 nindices -= 1;
2896 }
2897 return type;
2898 }
2899
2900 return NULL;
2901 }
2902
2903 /* The type of nth index in arrays of given type (n numbering from 1).
2904 Does not examine memory. Throws an error if N is invalid or TYPE
2905 is not an array type. NAME is the name of the Ada attribute being
2906 evaluated ('range, 'first, 'last, or 'length); it is used in building
2907 the error message. */
2908
2909 static struct type *
2910 ada_index_type (struct type *type, int n, const char *name)
2911 {
2912 struct type *result_type;
2913
2914 type = desc_base_type (type);
2915
2916 if (n < 0 || n > ada_array_arity (type))
2917 error (_("invalid dimension number to '%s"), name);
2918
2919 if (ada_is_simple_array_type (type))
2920 {
2921 int i;
2922
2923 for (i = 1; i < n; i += 1)
2924 type = TYPE_TARGET_TYPE (type);
2925 result_type = TYPE_TARGET_TYPE (type->index_type ());
2926 /* FIXME: The stabs type r(0,0);bound;bound in an array type
2927 has a target type of TYPE_CODE_UNDEF. We compensate here, but
2928 perhaps stabsread.c would make more sense. */
2929 if (result_type && result_type->code () == TYPE_CODE_UNDEF)
2930 result_type = NULL;
2931 }
2932 else
2933 {
2934 result_type = desc_index_type (desc_bounds_type (type), n);
2935 if (result_type == NULL)
2936 error (_("attempt to take bound of something that is not an array"));
2937 }
2938
2939 return result_type;
2940 }
2941
2942 /* Given that arr is an array type, returns the lower bound of the
2943 Nth index (numbering from 1) if WHICH is 0, and the upper bound if
2944 WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an
2945 array-descriptor type. It works for other arrays with bounds supplied
2946 by run-time quantities other than discriminants. */
2947
2948 static LONGEST
2949 ada_array_bound_from_type (struct type *arr_type, int n, int which)
2950 {
2951 struct type *type, *index_type_desc, *index_type;
2952 int i;
2953
2954 gdb_assert (which == 0 || which == 1);
2955
2956 if (ada_is_constrained_packed_array_type (arr_type))
2957 arr_type = decode_constrained_packed_array_type (arr_type);
2958
2959 if (arr_type == NULL || !ada_is_simple_array_type (arr_type))
2960 return (LONGEST) - which;
2961
2962 if (arr_type->code () == TYPE_CODE_PTR)
2963 type = TYPE_TARGET_TYPE (arr_type);
2964 else
2965 type = arr_type;
2966
2967 if (type->is_fixed_instance ())
2968 {
2969 /* The array has already been fixed, so we do not need to
2970 check the parallel ___XA type again. That encoding has
2971 already been applied, so ignore it now. */
2972 index_type_desc = NULL;
2973 }
2974 else
2975 {
2976 index_type_desc = ada_find_parallel_type (type, "___XA");
2977 ada_fixup_array_indexes_type (index_type_desc);
2978 }
2979
2980 if (index_type_desc != NULL)
2981 index_type = to_fixed_range_type (index_type_desc->field (n - 1).type (),
2982 NULL);
2983 else
2984 {
2985 struct type *elt_type = check_typedef (type);
2986
2987 for (i = 1; i < n; i++)
2988 elt_type = check_typedef (TYPE_TARGET_TYPE (elt_type));
2989
2990 index_type = elt_type->index_type ();
2991 }
2992
2993 return
2994 (LONGEST) (which == 0
2995 ? ada_discrete_type_low_bound (index_type)
2996 : ada_discrete_type_high_bound (index_type));
2997 }
2998
2999 /* Given that arr is an array value, returns the lower bound of the
3000 nth index (numbering from 1) if WHICH is 0, and the upper bound if
3001 WHICH is 1. This routine will also work for arrays with bounds
3002 supplied by run-time quantities other than discriminants. */
3003
3004 static LONGEST
3005 ada_array_bound (struct value *arr, int n, int which)
3006 {
3007 struct type *arr_type;
3008
3009 if (check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
3010 arr = value_ind (arr);
3011 arr_type = value_enclosing_type (arr);
3012
3013 if (ada_is_constrained_packed_array_type (arr_type))
3014 return ada_array_bound (decode_constrained_packed_array (arr), n, which);
3015 else if (ada_is_simple_array_type (arr_type))
3016 return ada_array_bound_from_type (arr_type, n, which);
3017 else
3018 return value_as_long (desc_one_bound (desc_bounds (arr), n, which));
3019 }
3020
3021 /* Given that arr is an array value, returns the length of the
3022 nth index. This routine will also work for arrays with bounds
3023 supplied by run-time quantities other than discriminants.
3024 Does not work for arrays indexed by enumeration types with representation
3025 clauses at the moment. */
3026
3027 static LONGEST
3028 ada_array_length (struct value *arr, int n)
3029 {
3030 struct type *arr_type, *index_type;
3031 int low, high;
3032
3033 if (check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
3034 arr = value_ind (arr);
3035 arr_type = value_enclosing_type (arr);
3036
3037 if (ada_is_constrained_packed_array_type (arr_type))
3038 return ada_array_length (decode_constrained_packed_array (arr), n);
3039
3040 if (ada_is_simple_array_type (arr_type))
3041 {
3042 low = ada_array_bound_from_type (arr_type, n, 0);
3043 high = ada_array_bound_from_type (arr_type, n, 1);
3044 }
3045 else
3046 {
3047 low = value_as_long (desc_one_bound (desc_bounds (arr), n, 0));
3048 high = value_as_long (desc_one_bound (desc_bounds (arr), n, 1));
3049 }
3050
3051 arr_type = check_typedef (arr_type);
3052 index_type = ada_index_type (arr_type, n, "length");
3053 if (index_type != NULL)
3054 {
3055 struct type *base_type;
3056 if (index_type->code () == TYPE_CODE_RANGE)
3057 base_type = TYPE_TARGET_TYPE (index_type);
3058 else
3059 base_type = index_type;
3060
3061 low = pos_atr (value_from_longest (base_type, low));
3062 high = pos_atr (value_from_longest (base_type, high));
3063 }
3064 return high - low + 1;
3065 }
3066
3067 /* An array whose type is that of ARR_TYPE (an array type), with
3068 bounds LOW to HIGH, but whose contents are unimportant. If HIGH is
3069 less than LOW, then LOW-1 is used. */
3070
3071 static struct value *
3072 empty_array (struct type *arr_type, int low, int high)
3073 {
3074 struct type *arr_type0 = ada_check_typedef (arr_type);
3075 struct type *index_type
3076 = create_static_range_type
3077 (NULL, TYPE_TARGET_TYPE (arr_type0->index_type ()), low,
3078 high < low ? low - 1 : high);
3079 struct type *elt_type = ada_array_element_type (arr_type0, 1);
3080
3081 return allocate_value (create_array_type (NULL, elt_type, index_type));
3082 }
3083 \f
3084
3085 /* Name resolution */
3086
3087 /* The "decoded" name for the user-definable Ada operator corresponding
3088 to OP. */
3089
3090 static const char *
3091 ada_decoded_op_name (enum exp_opcode op)
3092 {
3093 int i;
3094
3095 for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
3096 {
3097 if (ada_opname_table[i].op == op)
3098 return ada_opname_table[i].decoded;
3099 }
3100 error (_("Could not find operator name for opcode"));
3101 }
3102
3103 /* Returns true (non-zero) iff decoded name N0 should appear before N1
3104 in a listing of choices during disambiguation (see sort_choices, below).
3105 The idea is that overloadings of a subprogram name from the
3106 same package should sort in their source order. We settle for ordering
3107 such symbols by their trailing number (__N or $N). */
3108
3109 static int
3110 encoded_ordered_before (const char *N0, const char *N1)
3111 {
3112 if (N1 == NULL)
3113 return 0;
3114 else if (N0 == NULL)
3115 return 1;
3116 else
3117 {
3118 int k0, k1;
3119
3120 for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1)
3121 ;
3122 for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1)
3123 ;
3124 if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000'
3125 && (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000')
3126 {
3127 int n0, n1;
3128
3129 n0 = k0;
3130 while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_')
3131 n0 -= 1;
3132 n1 = k1;
3133 while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_')
3134 n1 -= 1;
3135 if (n0 == n1 && strncmp (N0, N1, n0) == 0)
3136 return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1));
3137 }
3138 return (strcmp (N0, N1) < 0);
3139 }
3140 }
3141
3142 /* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the
3143 encoded names. */
3144
3145 static void
3146 sort_choices (struct block_symbol syms[], int nsyms)
3147 {
3148 int i;
3149
3150 for (i = 1; i < nsyms; i += 1)
3151 {
3152 struct block_symbol sym = syms[i];
3153 int j;
3154
3155 for (j = i - 1; j >= 0; j -= 1)
3156 {
3157 if (encoded_ordered_before (syms[j].symbol->linkage_name (),
3158 sym.symbol->linkage_name ()))
3159 break;
3160 syms[j + 1] = syms[j];
3161 }
3162 syms[j + 1] = sym;
3163 }
3164 }
3165
3166 /* Whether GDB should display formals and return types for functions in the
3167 overloads selection menu. */
3168 static bool print_signatures = true;
3169
3170 /* Print the signature for SYM on STREAM according to the FLAGS options. For
3171 all but functions, the signature is just the name of the symbol. For
3172 functions, this is the name of the function, the list of types for formals
3173 and the return type (if any). */
3174
3175 static void
3176 ada_print_symbol_signature (struct ui_file *stream, struct symbol *sym,
3177 const struct type_print_options *flags)
3178 {
3179 struct type *type = SYMBOL_TYPE (sym);
3180
3181 fprintf_filtered (stream, "%s", sym->print_name ());
3182 if (!print_signatures
3183 || type == NULL
3184 || type->code () != TYPE_CODE_FUNC)
3185 return;
3186
3187 if (type->num_fields () > 0)
3188 {
3189 int i;
3190
3191 fprintf_filtered (stream, " (");
3192 for (i = 0; i < type->num_fields (); ++i)
3193 {
3194 if (i > 0)
3195 fprintf_filtered (stream, "; ");
3196 ada_print_type (type->field (i).type (), NULL, stream, -1, 0,
3197 flags);
3198 }
3199 fprintf_filtered (stream, ")");
3200 }
3201 if (TYPE_TARGET_TYPE (type) != NULL
3202 && TYPE_TARGET_TYPE (type)->code () != TYPE_CODE_VOID)
3203 {
3204 fprintf_filtered (stream, " return ");
3205 ada_print_type (TYPE_TARGET_TYPE (type), NULL, stream, -1, 0, flags);
3206 }
3207 }
3208
3209 /* Read and validate a set of numeric choices from the user in the
3210 range 0 .. N_CHOICES-1. Place the results in increasing
3211 order in CHOICES[0 .. N-1], and return N.
3212
3213 The user types choices as a sequence of numbers on one line
3214 separated by blanks, encoding them as follows:
3215
3216 + A choice of 0 means to cancel the selection, throwing an error.
3217 + If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1.
3218 + The user chooses k by typing k+IS_ALL_CHOICE+1.
3219
3220 The user is not allowed to choose more than MAX_RESULTS values.
3221
3222 ANNOTATION_SUFFIX, if present, is used to annotate the input
3223 prompts (for use with the -f switch). */
3224
3225 static int
3226 get_selections (int *choices, int n_choices, int max_results,
3227 int is_all_choice, const char *annotation_suffix)
3228 {
3229 const char *args;
3230 const char *prompt;
3231 int n_chosen;
3232 int first_choice = is_all_choice ? 2 : 1;
3233
3234 prompt = getenv ("PS2");
3235 if (prompt == NULL)
3236 prompt = "> ";
3237
3238 args = command_line_input (prompt, annotation_suffix);
3239
3240 if (args == NULL)
3241 error_no_arg (_("one or more choice numbers"));
3242
3243 n_chosen = 0;
3244
3245 /* Set choices[0 .. n_chosen-1] to the users' choices in ascending
3246 order, as given in args. Choices are validated. */
3247 while (1)
3248 {
3249 char *args2;
3250 int choice, j;
3251
3252 args = skip_spaces (args);
3253 if (*args == '\0' && n_chosen == 0)
3254 error_no_arg (_("one or more choice numbers"));
3255 else if (*args == '\0')
3256 break;
3257
3258 choice = strtol (args, &args2, 10);
3259 if (args == args2 || choice < 0
3260 || choice > n_choices + first_choice - 1)
3261 error (_("Argument must be choice number"));
3262 args = args2;
3263
3264 if (choice == 0)
3265 error (_("cancelled"));
3266
3267 if (choice < first_choice)
3268 {
3269 n_chosen = n_choices;
3270 for (j = 0; j < n_choices; j += 1)
3271 choices[j] = j;
3272 break;
3273 }
3274 choice -= first_choice;
3275
3276 for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1)
3277 {
3278 }
3279
3280 if (j < 0 || choice != choices[j])
3281 {
3282 int k;
3283
3284 for (k = n_chosen - 1; k > j; k -= 1)
3285 choices[k + 1] = choices[k];
3286 choices[j + 1] = choice;
3287 n_chosen += 1;
3288 }
3289 }
3290
3291 if (n_chosen > max_results)
3292 error (_("Select no more than %d of the above"), max_results);
3293
3294 return n_chosen;
3295 }
3296
3297 /* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0
3298 by asking the user (if necessary), returning the number selected,
3299 and setting the first elements of SYMS items. Error if no symbols
3300 selected. */
3301
3302 /* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought
3303 to be re-integrated one of these days. */
3304
3305 static int
3306 user_select_syms (struct block_symbol *syms, int nsyms, int max_results)
3307 {
3308 int i;
3309 int *chosen = XALLOCAVEC (int , nsyms);
3310 int n_chosen;
3311 int first_choice = (max_results == 1) ? 1 : 2;
3312 const char *select_mode = multiple_symbols_select_mode ();
3313
3314 if (max_results < 1)
3315 error (_("Request to select 0 symbols!"));
3316 if (nsyms <= 1)
3317 return nsyms;
3318
3319 if (select_mode == multiple_symbols_cancel)
3320 error (_("\
3321 canceled because the command is ambiguous\n\
3322 See set/show multiple-symbol."));
3323
3324 /* If select_mode is "all", then return all possible symbols.
3325 Only do that if more than one symbol can be selected, of course.
3326 Otherwise, display the menu as usual. */
3327 if (select_mode == multiple_symbols_all && max_results > 1)
3328 return nsyms;
3329
3330 printf_filtered (_("[0] cancel\n"));
3331 if (max_results > 1)
3332 printf_filtered (_("[1] all\n"));
3333
3334 sort_choices (syms, nsyms);
3335
3336 for (i = 0; i < nsyms; i += 1)
3337 {
3338 if (syms[i].symbol == NULL)
3339 continue;
3340
3341 if (SYMBOL_CLASS (syms[i].symbol) == LOC_BLOCK)
3342 {
3343 struct symtab_and_line sal =
3344 find_function_start_sal (syms[i].symbol, 1);
3345
3346 printf_filtered ("[%d] ", i + first_choice);
3347 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3348 &type_print_raw_options);
3349 if (sal.symtab == NULL)
3350 printf_filtered (_(" at %p[<no source file available>%p]:%d\n"),
3351 metadata_style.style ().ptr (), nullptr, sal.line);
3352 else
3353 printf_filtered
3354 (_(" at %ps:%d\n"),
3355 styled_string (file_name_style.style (),
3356 symtab_to_filename_for_display (sal.symtab)),
3357 sal.line);
3358 continue;
3359 }
3360 else
3361 {
3362 int is_enumeral =
3363 (SYMBOL_CLASS (syms[i].symbol) == LOC_CONST
3364 && SYMBOL_TYPE (syms[i].symbol) != NULL
3365 && SYMBOL_TYPE (syms[i].symbol)->code () == TYPE_CODE_ENUM);
3366 struct symtab *symtab = NULL;
3367
3368 if (SYMBOL_OBJFILE_OWNED (syms[i].symbol))
3369 symtab = symbol_symtab (syms[i].symbol);
3370
3371 if (SYMBOL_LINE (syms[i].symbol) != 0 && symtab != NULL)
3372 {
3373 printf_filtered ("[%d] ", i + first_choice);
3374 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3375 &type_print_raw_options);
3376 printf_filtered (_(" at %s:%d\n"),
3377 symtab_to_filename_for_display (symtab),
3378 SYMBOL_LINE (syms[i].symbol));
3379 }
3380 else if (is_enumeral
3381 && SYMBOL_TYPE (syms[i].symbol)->name () != NULL)
3382 {
3383 printf_filtered (("[%d] "), i + first_choice);
3384 ada_print_type (SYMBOL_TYPE (syms[i].symbol), NULL,
3385 gdb_stdout, -1, 0, &type_print_raw_options);
3386 printf_filtered (_("'(%s) (enumeral)\n"),
3387 syms[i].symbol->print_name ());
3388 }
3389 else
3390 {
3391 printf_filtered ("[%d] ", i + first_choice);
3392 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3393 &type_print_raw_options);
3394
3395 if (symtab != NULL)
3396 printf_filtered (is_enumeral
3397 ? _(" in %s (enumeral)\n")
3398 : _(" at %s:?\n"),
3399 symtab_to_filename_for_display (symtab));
3400 else
3401 printf_filtered (is_enumeral
3402 ? _(" (enumeral)\n")
3403 : _(" at ?\n"));
3404 }
3405 }
3406 }
3407
3408 n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1,
3409 "overload-choice");
3410
3411 for (i = 0; i < n_chosen; i += 1)
3412 syms[i] = syms[chosen[i]];
3413
3414 return n_chosen;
3415 }
3416
3417 /* See ada-lang.h. */
3418
3419 block_symbol
3420 ada_find_operator_symbol (enum exp_opcode op, int parse_completion,
3421 int nargs, value *argvec[])
3422 {
3423 if (possible_user_operator_p (op, argvec))
3424 {
3425 std::vector<struct block_symbol> candidates
3426 = ada_lookup_symbol_list (ada_decoded_op_name (op),
3427 NULL, VAR_DOMAIN);
3428
3429 int i = ada_resolve_function (candidates, argvec,
3430 nargs, ada_decoded_op_name (op), NULL,
3431 parse_completion);
3432 if (i >= 0)
3433 return candidates[i];
3434 }
3435 return {};
3436 }
3437
3438 /* See ada-lang.h. */
3439
3440 block_symbol
3441 ada_resolve_funcall (struct symbol *sym, const struct block *block,
3442 struct type *context_type,
3443 int parse_completion,
3444 int nargs, value *argvec[],
3445 innermost_block_tracker *tracker)
3446 {
3447 std::vector<struct block_symbol> candidates
3448 = ada_lookup_symbol_list (sym->linkage_name (), block, VAR_DOMAIN);
3449
3450 int i;
3451 if (candidates.size () == 1)
3452 i = 0;
3453 else
3454 {
3455 i = ada_resolve_function
3456 (candidates,
3457 argvec, nargs,
3458 sym->linkage_name (),
3459 context_type, parse_completion);
3460 if (i < 0)
3461 error (_("Could not find a match for %s"), sym->print_name ());
3462 }
3463
3464 tracker->update (candidates[i]);
3465 return candidates[i];
3466 }
3467
3468 /* See ada-lang.h. */
3469
3470 block_symbol
3471 ada_resolve_variable (struct symbol *sym, const struct block *block,
3472 struct type *context_type,
3473 int parse_completion,
3474 int deprocedure_p,
3475 innermost_block_tracker *tracker)
3476 {
3477 std::vector<struct block_symbol> candidates
3478 = ada_lookup_symbol_list (sym->linkage_name (), block, VAR_DOMAIN);
3479
3480 if (std::any_of (candidates.begin (),
3481 candidates.end (),
3482 [] (block_symbol &bsym)
3483 {
3484 switch (SYMBOL_CLASS (bsym.symbol))
3485 {
3486 case LOC_REGISTER:
3487 case LOC_ARG:
3488 case LOC_REF_ARG:
3489 case LOC_REGPARM_ADDR:
3490 case LOC_LOCAL:
3491 case LOC_COMPUTED:
3492 return true;
3493 default:
3494 return false;
3495 }
3496 }))
3497 {
3498 /* Types tend to get re-introduced locally, so if there
3499 are any local symbols that are not types, first filter
3500 out all types. */
3501 candidates.erase
3502 (std::remove_if
3503 (candidates.begin (),
3504 candidates.end (),
3505 [] (block_symbol &bsym)
3506 {
3507 return SYMBOL_CLASS (bsym.symbol) == LOC_TYPEDEF;
3508 }),
3509 candidates.end ());
3510 }
3511
3512 int i;
3513 if (candidates.empty ())
3514 error (_("No definition found for %s"), sym->print_name ());
3515 else if (candidates.size () == 1)
3516 i = 0;
3517 else if (deprocedure_p && !is_nonfunction (candidates))
3518 {
3519 i = ada_resolve_function
3520 (candidates, NULL, 0,
3521 sym->linkage_name (),
3522 context_type, parse_completion);
3523 if (i < 0)
3524 error (_("Could not find a match for %s"), sym->print_name ());
3525 }
3526 else
3527 {
3528 printf_filtered (_("Multiple matches for %s\n"), sym->print_name ());
3529 user_select_syms (candidates.data (), candidates.size (), 1);
3530 i = 0;
3531 }
3532
3533 tracker->update (candidates[i]);
3534 return candidates[i];
3535 }
3536
3537 /* Resolve the operator of the subexpression beginning at
3538 position *POS of *EXPP. "Resolving" consists of replacing
3539 the symbols that have undefined namespaces in OP_VAR_VALUE nodes
3540 with their resolutions, replacing built-in operators with
3541 function calls to user-defined operators, where appropriate, and,
3542 when DEPROCEDURE_P is non-zero, converting function-valued variables
3543 into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions
3544 are as in ada_resolve, above. */
3545
3546 static struct value *
3547 resolve_subexp (expression_up *expp, int *pos, int deprocedure_p,
3548 struct type *context_type, int parse_completion,
3549 innermost_block_tracker *tracker)
3550 {
3551 int pc = *pos;
3552 int i;
3553 struct expression *exp; /* Convenience: == *expp. */
3554 enum exp_opcode op = (*expp)->elts[pc].opcode;
3555 struct value **argvec; /* Vector of operand types (alloca'ed). */
3556 int nargs; /* Number of operands. */
3557 int oplen;
3558 /* If we're resolving an expression like ARRAY(ARG...), then we set
3559 this to the type of the array, so we can use the index types as
3560 the expected types for resolution. */
3561 struct type *array_type = nullptr;
3562 /* The arity of ARRAY_TYPE. */
3563 int array_arity = 0;
3564
3565 argvec = NULL;
3566 nargs = 0;
3567 exp = expp->get ();
3568
3569 /* Pass one: resolve operands, saving their types and updating *pos,
3570 if needed. */
3571 switch (op)
3572 {
3573 case OP_FUNCALL:
3574 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3575 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3576 *pos += 7;
3577 else
3578 {
3579 *pos += 3;
3580 struct value *lhs = resolve_subexp (expp, pos, 0, NULL,
3581 parse_completion, tracker);
3582 struct type *lhstype = ada_check_typedef (value_type (lhs));
3583 array_arity = ada_array_arity (lhstype);
3584 if (array_arity > 0)
3585 array_type = lhstype;
3586 }
3587 nargs = longest_to_int (exp->elts[pc + 1].longconst);
3588 break;
3589
3590 case UNOP_ADDR:
3591 *pos += 1;
3592 resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3593 break;
3594
3595 case UNOP_QUAL:
3596 *pos += 3;
3597 resolve_subexp (expp, pos, 1, check_typedef (exp->elts[pc + 1].type),
3598 parse_completion, tracker);
3599 break;
3600
3601 case OP_ATR_MODULUS:
3602 case OP_ATR_SIZE:
3603 case OP_ATR_TAG:
3604 case OP_ATR_FIRST:
3605 case OP_ATR_LAST:
3606 case OP_ATR_LENGTH:
3607 case OP_ATR_POS:
3608 case OP_ATR_VAL:
3609 case OP_ATR_MIN:
3610 case OP_ATR_MAX:
3611 case TERNOP_IN_RANGE:
3612 case BINOP_IN_BOUNDS:
3613 case UNOP_IN_RANGE:
3614 case OP_AGGREGATE:
3615 case OP_OTHERS:
3616 case OP_CHOICES:
3617 case OP_POSITIONAL:
3618 case OP_DISCRETE_RANGE:
3619 case OP_NAME:
3620 ada_forward_operator_length (exp, pc, &oplen, &nargs);
3621 *pos += oplen;
3622 break;
3623
3624 case BINOP_ASSIGN:
3625 {
3626 struct value *arg1;
3627
3628 *pos += 1;
3629 arg1 = resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3630 if (arg1 == NULL)
3631 resolve_subexp (expp, pos, 1, NULL, parse_completion, tracker);
3632 else
3633 resolve_subexp (expp, pos, 1, value_type (arg1), parse_completion,
3634 tracker);
3635 break;
3636 }
3637
3638 case UNOP_CAST:
3639 *pos += 3;
3640 nargs = 1;
3641 break;
3642
3643 case BINOP_ADD:
3644 case BINOP_SUB:
3645 case BINOP_MUL:
3646 case BINOP_DIV:
3647 case BINOP_REM:
3648 case BINOP_MOD:
3649 case BINOP_EXP:
3650 case BINOP_CONCAT:
3651 case BINOP_LOGICAL_AND:
3652 case BINOP_LOGICAL_OR:
3653 case BINOP_BITWISE_AND:
3654 case BINOP_BITWISE_IOR:
3655 case BINOP_BITWISE_XOR:
3656
3657 case BINOP_EQUAL:
3658 case BINOP_NOTEQUAL:
3659 case BINOP_LESS:
3660 case BINOP_GTR:
3661 case BINOP_LEQ:
3662 case BINOP_GEQ:
3663
3664 case BINOP_REPEAT:
3665 case BINOP_SUBSCRIPT:
3666 case BINOP_COMMA:
3667 *pos += 1;
3668 nargs = 2;
3669 break;
3670
3671 case UNOP_NEG:
3672 case UNOP_PLUS:
3673 case UNOP_LOGICAL_NOT:
3674 case UNOP_ABS:
3675 case UNOP_IND:
3676 *pos += 1;
3677 nargs = 1;
3678 break;
3679
3680 case OP_LONG:
3681 case OP_FLOAT:
3682 case OP_VAR_VALUE:
3683 case OP_VAR_MSYM_VALUE:
3684 *pos += 4;
3685 break;
3686
3687 case OP_TYPE:
3688 case OP_BOOL:
3689 case OP_LAST:
3690 case OP_INTERNALVAR:
3691 *pos += 3;
3692 break;
3693
3694 case UNOP_MEMVAL:
3695 *pos += 3;
3696 nargs = 1;
3697 break;
3698
3699 case OP_REGISTER:
3700 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3701 break;
3702
3703 case STRUCTOP_STRUCT:
3704 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3705 nargs = 1;
3706 break;
3707
3708 case TERNOP_SLICE:
3709 *pos += 1;
3710 nargs = 3;
3711 break;
3712
3713 case OP_STRING:
3714 break;
3715
3716 default:
3717 error (_("Unexpected operator during name resolution"));
3718 }
3719
3720 argvec = XALLOCAVEC (struct value *, nargs + 1);
3721 for (i = 0; i < nargs; i += 1)
3722 {
3723 struct type *subtype = nullptr;
3724 if (i < array_arity)
3725 subtype = ada_index_type (array_type, i + 1, "array type");
3726 argvec[i] = resolve_subexp (expp, pos, 1, subtype, parse_completion,
3727 tracker);
3728 }
3729 argvec[i] = NULL;
3730 exp = expp->get ();
3731
3732 /* Pass two: perform any resolution on principal operator. */
3733 switch (op)
3734 {
3735 default:
3736 break;
3737
3738 case OP_VAR_VALUE:
3739 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
3740 {
3741 block_symbol resolved
3742 = ada_resolve_variable (exp->elts[pc + 2].symbol,
3743 exp->elts[pc + 1].block,
3744 context_type, parse_completion,
3745 deprocedure_p, tracker);
3746 exp->elts[pc + 1].block = resolved.block;
3747 exp->elts[pc + 2].symbol = resolved.symbol;
3748 }
3749
3750 if (deprocedure_p
3751 && (SYMBOL_TYPE (exp->elts[pc + 2].symbol)->code ()
3752 == TYPE_CODE_FUNC))
3753 {
3754 replace_operator_with_call (expp, pc, 0, 4,
3755 exp->elts[pc + 2].symbol,
3756 exp->elts[pc + 1].block);
3757 exp = expp->get ();
3758 }
3759 break;
3760
3761 case OP_FUNCALL:
3762 {
3763 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3764 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3765 {
3766 block_symbol resolved
3767 = ada_resolve_funcall (exp->elts[pc + 5].symbol,
3768 exp->elts[pc + 4].block,
3769 context_type, parse_completion,
3770 nargs, argvec,
3771 tracker);
3772 exp->elts[pc + 4].block = resolved.block;
3773 exp->elts[pc + 5].symbol = resolved.symbol;
3774 }
3775 }
3776 break;
3777 case BINOP_ADD:
3778 case BINOP_SUB:
3779 case BINOP_MUL:
3780 case BINOP_DIV:
3781 case BINOP_REM:
3782 case BINOP_MOD:
3783 case BINOP_CONCAT:
3784 case BINOP_BITWISE_AND:
3785 case BINOP_BITWISE_IOR:
3786 case BINOP_BITWISE_XOR:
3787 case BINOP_EQUAL:
3788 case BINOP_NOTEQUAL:
3789 case BINOP_LESS:
3790 case BINOP_GTR:
3791 case BINOP_LEQ:
3792 case BINOP_GEQ:
3793 case BINOP_EXP:
3794 case UNOP_NEG:
3795 case UNOP_PLUS:
3796 case UNOP_LOGICAL_NOT:
3797 case UNOP_ABS:
3798 {
3799 block_symbol found = ada_find_operator_symbol (op, parse_completion,
3800 nargs, argvec);
3801 if (found.symbol == nullptr)
3802 break;
3803
3804 replace_operator_with_call (expp, pc, nargs, 1,
3805 found.symbol, found.block);
3806 exp = expp->get ();
3807 }
3808 break;
3809
3810 case OP_TYPE:
3811 case OP_REGISTER:
3812 return NULL;
3813 }
3814
3815 *pos = pc;
3816 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
3817 return evaluate_var_msym_value (EVAL_AVOID_SIDE_EFFECTS,
3818 exp->elts[pc + 1].objfile,
3819 exp->elts[pc + 2].msymbol);
3820 else
3821 return evaluate_subexp_type (exp, pos);
3822 }
3823
3824 /* Return non-zero if formal type FTYPE matches actual type ATYPE. If
3825 MAY_DEREF is non-zero, the formal may be a pointer and the actual
3826 a non-pointer. */
3827 /* The term "match" here is rather loose. The match is heuristic and
3828 liberal. */
3829
3830 static int
3831 ada_type_match (struct type *ftype, struct type *atype, int may_deref)
3832 {
3833 ftype = ada_check_typedef (ftype);
3834 atype = ada_check_typedef (atype);
3835
3836 if (ftype->code () == TYPE_CODE_REF)
3837 ftype = TYPE_TARGET_TYPE (ftype);
3838 if (atype->code () == TYPE_CODE_REF)
3839 atype = TYPE_TARGET_TYPE (atype);
3840
3841 switch (ftype->code ())
3842 {
3843 default:
3844 return ftype->code () == atype->code ();
3845 case TYPE_CODE_PTR:
3846 if (atype->code () == TYPE_CODE_PTR)
3847 return ada_type_match (TYPE_TARGET_TYPE (ftype),
3848 TYPE_TARGET_TYPE (atype), 0);
3849 else
3850 return (may_deref
3851 && ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0));
3852 case TYPE_CODE_INT:
3853 case TYPE_CODE_ENUM:
3854 case TYPE_CODE_RANGE:
3855 switch (atype->code ())
3856 {
3857 case TYPE_CODE_INT:
3858 case TYPE_CODE_ENUM:
3859 case TYPE_CODE_RANGE:
3860 return 1;
3861 default:
3862 return 0;
3863 }
3864
3865 case TYPE_CODE_ARRAY:
3866 return (atype->code () == TYPE_CODE_ARRAY
3867 || ada_is_array_descriptor_type (atype));
3868
3869 case TYPE_CODE_STRUCT:
3870 if (ada_is_array_descriptor_type (ftype))
3871 return (atype->code () == TYPE_CODE_ARRAY
3872 || ada_is_array_descriptor_type (atype));
3873 else
3874 return (atype->code () == TYPE_CODE_STRUCT
3875 && !ada_is_array_descriptor_type (atype));
3876
3877 case TYPE_CODE_UNION:
3878 case TYPE_CODE_FLT:
3879 return (atype->code () == ftype->code ());
3880 }
3881 }
3882
3883 /* Return non-zero if the formals of FUNC "sufficiently match" the
3884 vector of actual argument types ACTUALS of size N_ACTUALS. FUNC
3885 may also be an enumeral, in which case it is treated as a 0-
3886 argument function. */
3887
3888 static int
3889 ada_args_match (struct symbol *func, struct value **actuals, int n_actuals)
3890 {
3891 int i;
3892 struct type *func_type = SYMBOL_TYPE (func);
3893
3894 if (SYMBOL_CLASS (func) == LOC_CONST
3895 && func_type->code () == TYPE_CODE_ENUM)
3896 return (n_actuals == 0);
3897 else if (func_type == NULL || func_type->code () != TYPE_CODE_FUNC)
3898 return 0;
3899
3900 if (func_type->num_fields () != n_actuals)
3901 return 0;
3902
3903 for (i = 0; i < n_actuals; i += 1)
3904 {
3905 if (actuals[i] == NULL)
3906 return 0;
3907 else
3908 {
3909 struct type *ftype = ada_check_typedef (func_type->field (i).type ());
3910 struct type *atype = ada_check_typedef (value_type (actuals[i]));
3911
3912 if (!ada_type_match (ftype, atype, 1))
3913 return 0;
3914 }
3915 }
3916 return 1;
3917 }
3918
3919 /* False iff function type FUNC_TYPE definitely does not produce a value
3920 compatible with type CONTEXT_TYPE. Conservatively returns 1 if
3921 FUNC_TYPE is not a valid function type with a non-null return type
3922 or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */
3923
3924 static int
3925 return_match (struct type *func_type, struct type *context_type)
3926 {
3927 struct type *return_type;
3928
3929 if (func_type == NULL)
3930 return 1;
3931
3932 if (func_type->code () == TYPE_CODE_FUNC)
3933 return_type = get_base_type (TYPE_TARGET_TYPE (func_type));
3934 else
3935 return_type = get_base_type (func_type);
3936 if (return_type == NULL)
3937 return 1;
3938
3939 context_type = get_base_type (context_type);
3940
3941 if (return_type->code () == TYPE_CODE_ENUM)
3942 return context_type == NULL || return_type == context_type;
3943 else if (context_type == NULL)
3944 return return_type->code () != TYPE_CODE_VOID;
3945 else
3946 return return_type->code () == context_type->code ();
3947 }
3948
3949
3950 /* Returns the index in SYMS that contains the symbol for the
3951 function (if any) that matches the types of the NARGS arguments in
3952 ARGS. If CONTEXT_TYPE is non-null and there is at least one match
3953 that returns that type, then eliminate matches that don't. If
3954 CONTEXT_TYPE is void and there is at least one match that does not
3955 return void, eliminate all matches that do.
3956
3957 Asks the user if there is more than one match remaining. Returns -1
3958 if there is no such symbol or none is selected. NAME is used
3959 solely for messages. May re-arrange and modify SYMS in
3960 the process; the index returned is for the modified vector. */
3961
3962 static int
3963 ada_resolve_function (std::vector<struct block_symbol> &syms,
3964 struct value **args, int nargs,
3965 const char *name, struct type *context_type,
3966 int parse_completion)
3967 {
3968 int fallback;
3969 int k;
3970 int m; /* Number of hits */
3971
3972 m = 0;
3973 /* In the first pass of the loop, we only accept functions matching
3974 context_type. If none are found, we add a second pass of the loop
3975 where every function is accepted. */
3976 for (fallback = 0; m == 0 && fallback < 2; fallback++)
3977 {
3978 for (k = 0; k < syms.size (); k += 1)
3979 {
3980 struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].symbol));
3981
3982 if (ada_args_match (syms[k].symbol, args, nargs)
3983 && (fallback || return_match (type, context_type)))
3984 {
3985 syms[m] = syms[k];
3986 m += 1;
3987 }
3988 }
3989 }
3990
3991 /* If we got multiple matches, ask the user which one to use. Don't do this
3992 interactive thing during completion, though, as the purpose of the
3993 completion is providing a list of all possible matches. Prompting the
3994 user to filter it down would be completely unexpected in this case. */
3995 if (m == 0)
3996 return -1;
3997 else if (m > 1 && !parse_completion)
3998 {
3999 printf_filtered (_("Multiple matches for %s\n"), name);
4000 user_select_syms (syms.data (), m, 1);
4001 return 0;
4002 }
4003 return 0;
4004 }
4005
4006 /* Replace the operator of length OPLEN at position PC in *EXPP with a call
4007 on the function identified by SYM and BLOCK, and taking NARGS
4008 arguments. Update *EXPP as needed to hold more space. */
4009
4010 static void
4011 replace_operator_with_call (expression_up *expp, int pc, int nargs,
4012 int oplen, struct symbol *sym,
4013 const struct block *block)
4014 {
4015 /* We want to add 6 more elements (3 for funcall, 4 for function
4016 symbol, -OPLEN for operator being replaced) to the
4017 expression. */
4018 struct expression *exp = expp->get ();
4019 int save_nelts = exp->nelts;
4020 int extra_elts = 7 - oplen;
4021 exp->nelts += extra_elts;
4022
4023 if (extra_elts > 0)
4024 exp->resize (exp->nelts);
4025 memmove (exp->elts + pc + 7, exp->elts + pc + oplen,
4026 EXP_ELEM_TO_BYTES (save_nelts - pc - oplen));
4027 if (extra_elts < 0)
4028 exp->resize (exp->nelts);
4029
4030 exp->elts[pc].opcode = exp->elts[pc + 2].opcode = OP_FUNCALL;
4031 exp->elts[pc + 1].longconst = (LONGEST) nargs;
4032
4033 exp->elts[pc + 3].opcode = exp->elts[pc + 6].opcode = OP_VAR_VALUE;
4034 exp->elts[pc + 4].block = block;
4035 exp->elts[pc + 5].symbol = sym;
4036 }
4037
4038 /* Type-class predicates */
4039
4040 /* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type),
4041 or FLOAT). */
4042
4043 static int
4044 numeric_type_p (struct type *type)
4045 {
4046 if (type == NULL)
4047 return 0;
4048 else
4049 {
4050 switch (type->code ())
4051 {
4052 case TYPE_CODE_INT:
4053 case TYPE_CODE_FLT:
4054 return 1;
4055 case TYPE_CODE_RANGE:
4056 return (type == TYPE_TARGET_TYPE (type)
4057 || numeric_type_p (TYPE_TARGET_TYPE (type)));
4058 default:
4059 return 0;
4060 }
4061 }
4062 }
4063
4064 /* True iff TYPE is integral (an INT or RANGE of INTs). */
4065
4066 static int
4067 integer_type_p (struct type *type)
4068 {
4069 if (type == NULL)
4070 return 0;
4071 else
4072 {
4073 switch (type->code ())
4074 {
4075 case TYPE_CODE_INT:
4076 return 1;
4077 case TYPE_CODE_RANGE:
4078 return (type == TYPE_TARGET_TYPE (type)
4079 || integer_type_p (TYPE_TARGET_TYPE (type)));
4080 default:
4081 return 0;
4082 }
4083 }
4084 }
4085
4086 /* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */
4087
4088 static int
4089 scalar_type_p (struct type *type)
4090 {
4091 if (type == NULL)
4092 return 0;
4093 else
4094 {
4095 switch (type->code ())
4096 {
4097 case TYPE_CODE_INT:
4098 case TYPE_CODE_RANGE:
4099 case TYPE_CODE_ENUM:
4100 case TYPE_CODE_FLT:
4101 return 1;
4102 default:
4103 return 0;
4104 }
4105 }
4106 }
4107
4108 /* True iff TYPE is discrete (INT, RANGE, ENUM). */
4109
4110 static int
4111 discrete_type_p (struct type *type)
4112 {
4113 if (type == NULL)
4114 return 0;
4115 else
4116 {
4117 switch (type->code ())
4118 {
4119 case TYPE_CODE_INT:
4120 case TYPE_CODE_RANGE:
4121 case TYPE_CODE_ENUM:
4122 case TYPE_CODE_BOOL:
4123 return 1;
4124 default:
4125 return 0;
4126 }
4127 }
4128 }
4129
4130 /* Returns non-zero if OP with operands in the vector ARGS could be
4131 a user-defined function. Errs on the side of pre-defined operators
4132 (i.e., result 0). */
4133
4134 static int
4135 possible_user_operator_p (enum exp_opcode op, struct value *args[])
4136 {
4137 struct type *type0 =
4138 (args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0]));
4139 struct type *type1 =
4140 (args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1]));
4141
4142 if (type0 == NULL)
4143 return 0;
4144
4145 switch (op)
4146 {
4147 default:
4148 return 0;
4149
4150 case BINOP_ADD:
4151 case BINOP_SUB:
4152 case BINOP_MUL:
4153 case BINOP_DIV:
4154 return (!(numeric_type_p (type0) && numeric_type_p (type1)));
4155
4156 case BINOP_REM:
4157 case BINOP_MOD:
4158 case BINOP_BITWISE_AND:
4159 case BINOP_BITWISE_IOR:
4160 case BINOP_BITWISE_XOR:
4161 return (!(integer_type_p (type0) && integer_type_p (type1)));
4162
4163 case BINOP_EQUAL:
4164 case BINOP_NOTEQUAL:
4165 case BINOP_LESS:
4166 case BINOP_GTR:
4167 case BINOP_LEQ:
4168 case BINOP_GEQ:
4169 return (!(scalar_type_p (type0) && scalar_type_p (type1)));
4170
4171 case BINOP_CONCAT:
4172 return !ada_is_array_type (type0) || !ada_is_array_type (type1);
4173
4174 case BINOP_EXP:
4175 return (!(numeric_type_p (type0) && integer_type_p (type1)));
4176
4177 case UNOP_NEG:
4178 case UNOP_PLUS:
4179 case UNOP_LOGICAL_NOT:
4180 case UNOP_ABS:
4181 return (!numeric_type_p (type0));
4182
4183 }
4184 }
4185 \f
4186 /* Renaming */
4187
4188 /* NOTES:
4189
4190 1. In the following, we assume that a renaming type's name may
4191 have an ___XD suffix. It would be nice if this went away at some
4192 point.
4193 2. We handle both the (old) purely type-based representation of
4194 renamings and the (new) variable-based encoding. At some point,
4195 it is devoutly to be hoped that the former goes away
4196 (FIXME: hilfinger-2007-07-09).
4197 3. Subprogram renamings are not implemented, although the XRS
4198 suffix is recognized (FIXME: hilfinger-2007-07-09). */
4199
4200 /* If SYM encodes a renaming,
4201
4202 <renaming> renames <renamed entity>,
4203
4204 sets *LEN to the length of the renamed entity's name,
4205 *RENAMED_ENTITY to that name (not null-terminated), and *RENAMING_EXPR to
4206 the string describing the subcomponent selected from the renamed
4207 entity. Returns ADA_NOT_RENAMING if SYM does not encode a renaming
4208 (in which case, the values of *RENAMED_ENTITY, *LEN, and *RENAMING_EXPR
4209 are undefined). Otherwise, returns a value indicating the category
4210 of entity renamed: an object (ADA_OBJECT_RENAMING), exception
4211 (ADA_EXCEPTION_RENAMING), package (ADA_PACKAGE_RENAMING), or
4212 subprogram (ADA_SUBPROGRAM_RENAMING). Does no allocation; the
4213 strings returned in *RENAMED_ENTITY and *RENAMING_EXPR should not be
4214 deallocated. The values of RENAMED_ENTITY, LEN, or RENAMING_EXPR
4215 may be NULL, in which case they are not assigned.
4216
4217 [Currently, however, GCC does not generate subprogram renamings.] */
4218
4219 enum ada_renaming_category
4220 ada_parse_renaming (struct symbol *sym,
4221 const char **renamed_entity, int *len,
4222 const char **renaming_expr)
4223 {
4224 enum ada_renaming_category kind;
4225 const char *info;
4226 const char *suffix;
4227
4228 if (sym == NULL)
4229 return ADA_NOT_RENAMING;
4230 switch (SYMBOL_CLASS (sym))
4231 {
4232 default:
4233 return ADA_NOT_RENAMING;
4234 case LOC_LOCAL:
4235 case LOC_STATIC:
4236 case LOC_COMPUTED:
4237 case LOC_OPTIMIZED_OUT:
4238 info = strstr (sym->linkage_name (), "___XR");
4239 if (info == NULL)
4240 return ADA_NOT_RENAMING;
4241 switch (info[5])
4242 {
4243 case '_':
4244 kind = ADA_OBJECT_RENAMING;
4245 info += 6;
4246 break;
4247 case 'E':
4248 kind = ADA_EXCEPTION_RENAMING;
4249 info += 7;
4250 break;
4251 case 'P':
4252 kind = ADA_PACKAGE_RENAMING;
4253 info += 7;
4254 break;
4255 case 'S':
4256 kind = ADA_SUBPROGRAM_RENAMING;
4257 info += 7;
4258 break;
4259 default:
4260 return ADA_NOT_RENAMING;
4261 }
4262 }
4263
4264 if (renamed_entity != NULL)
4265 *renamed_entity = info;
4266 suffix = strstr (info, "___XE");
4267 if (suffix == NULL || suffix == info)
4268 return ADA_NOT_RENAMING;
4269 if (len != NULL)
4270 *len = strlen (info) - strlen (suffix);
4271 suffix += 5;
4272 if (renaming_expr != NULL)
4273 *renaming_expr = suffix;
4274 return kind;
4275 }
4276
4277 /* Compute the value of the given RENAMING_SYM, which is expected to
4278 be a symbol encoding a renaming expression. BLOCK is the block
4279 used to evaluate the renaming. */
4280
4281 static struct value *
4282 ada_read_renaming_var_value (struct symbol *renaming_sym,
4283 const struct block *block)
4284 {
4285 const char *sym_name;
4286
4287 sym_name = renaming_sym->linkage_name ();
4288 expression_up expr = parse_exp_1 (&sym_name, 0, block, 0);
4289 return evaluate_expression (expr.get ());
4290 }
4291 \f
4292
4293 /* Evaluation: Function Calls */
4294
4295 /* Return an lvalue containing the value VAL. This is the identity on
4296 lvalues, and otherwise has the side-effect of allocating memory
4297 in the inferior where a copy of the value contents is copied. */
4298
4299 static struct value *
4300 ensure_lval (struct value *val)
4301 {
4302 if (VALUE_LVAL (val) == not_lval
4303 || VALUE_LVAL (val) == lval_internalvar)
4304 {
4305 int len = TYPE_LENGTH (ada_check_typedef (value_type (val)));
4306 const CORE_ADDR addr =
4307 value_as_long (value_allocate_space_in_inferior (len));
4308
4309 VALUE_LVAL (val) = lval_memory;
4310 set_value_address (val, addr);
4311 write_memory (addr, value_contents (val), len);
4312 }
4313
4314 return val;
4315 }
4316
4317 /* Given ARG, a value of type (pointer or reference to a)*
4318 structure/union, extract the component named NAME from the ultimate
4319 target structure/union and return it as a value with its
4320 appropriate type.
4321
4322 The routine searches for NAME among all members of the structure itself
4323 and (recursively) among all members of any wrapper members
4324 (e.g., '_parent').
4325
4326 If NO_ERR, then simply return NULL in case of error, rather than
4327 calling error. */
4328
4329 static struct value *
4330 ada_value_struct_elt (struct value *arg, const char *name, int no_err)
4331 {
4332 struct type *t, *t1;
4333 struct value *v;
4334 int check_tag;
4335
4336 v = NULL;
4337 t1 = t = ada_check_typedef (value_type (arg));
4338 if (t->code () == TYPE_CODE_REF)
4339 {
4340 t1 = TYPE_TARGET_TYPE (t);
4341 if (t1 == NULL)
4342 goto BadValue;
4343 t1 = ada_check_typedef (t1);
4344 if (t1->code () == TYPE_CODE_PTR)
4345 {
4346 arg = coerce_ref (arg);
4347 t = t1;
4348 }
4349 }
4350
4351 while (t->code () == TYPE_CODE_PTR)
4352 {
4353 t1 = TYPE_TARGET_TYPE (t);
4354 if (t1 == NULL)
4355 goto BadValue;
4356 t1 = ada_check_typedef (t1);
4357 if (t1->code () == TYPE_CODE_PTR)
4358 {
4359 arg = value_ind (arg);
4360 t = t1;
4361 }
4362 else
4363 break;
4364 }
4365
4366 if (t1->code () != TYPE_CODE_STRUCT && t1->code () != TYPE_CODE_UNION)
4367 goto BadValue;
4368
4369 if (t1 == t)
4370 v = ada_search_struct_field (name, arg, 0, t);
4371 else
4372 {
4373 int bit_offset, bit_size, byte_offset;
4374 struct type *field_type;
4375 CORE_ADDR address;
4376
4377 if (t->code () == TYPE_CODE_PTR)
4378 address = value_address (ada_value_ind (arg));
4379 else
4380 address = value_address (ada_coerce_ref (arg));
4381
4382 /* Check to see if this is a tagged type. We also need to handle
4383 the case where the type is a reference to a tagged type, but
4384 we have to be careful to exclude pointers to tagged types.
4385 The latter should be shown as usual (as a pointer), whereas
4386 a reference should mostly be transparent to the user. */
4387
4388 if (ada_is_tagged_type (t1, 0)
4389 || (t1->code () == TYPE_CODE_REF
4390 && ada_is_tagged_type (TYPE_TARGET_TYPE (t1), 0)))
4391 {
4392 /* We first try to find the searched field in the current type.
4393 If not found then let's look in the fixed type. */
4394
4395 if (!find_struct_field (name, t1, 0,
4396 &field_type, &byte_offset, &bit_offset,
4397 &bit_size, NULL))
4398 check_tag = 1;
4399 else
4400 check_tag = 0;
4401 }
4402 else
4403 check_tag = 0;
4404
4405 /* Convert to fixed type in all cases, so that we have proper
4406 offsets to each field in unconstrained record types. */
4407 t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL,
4408 address, NULL, check_tag);
4409
4410 /* Resolve the dynamic type as well. */
4411 arg = value_from_contents_and_address (t1, nullptr, address);
4412 t1 = value_type (arg);
4413
4414 if (find_struct_field (name, t1, 0,
4415 &field_type, &byte_offset, &bit_offset,
4416 &bit_size, NULL))
4417 {
4418 if (bit_size != 0)
4419 {
4420 if (t->code () == TYPE_CODE_REF)
4421 arg = ada_coerce_ref (arg);
4422 else
4423 arg = ada_value_ind (arg);
4424 v = ada_value_primitive_packed_val (arg, NULL, byte_offset,
4425 bit_offset, bit_size,
4426 field_type);
4427 }
4428 else
4429 v = value_at_lazy (field_type, address + byte_offset);
4430 }
4431 }
4432
4433 if (v != NULL || no_err)
4434 return v;
4435 else
4436 error (_("There is no member named %s."), name);
4437
4438 BadValue:
4439 if (no_err)
4440 return NULL;
4441 else
4442 error (_("Attempt to extract a component of "
4443 "a value that is not a record."));
4444 }
4445
4446 /* Return the value ACTUAL, converted to be an appropriate value for a
4447 formal of type FORMAL_TYPE. Use *SP as a stack pointer for
4448 allocating any necessary descriptors (fat pointers), or copies of
4449 values not residing in memory, updating it as needed. */
4450
4451 struct value *
4452 ada_convert_actual (struct value *actual, struct type *formal_type0)
4453 {
4454 struct type *actual_type = ada_check_typedef (value_type (actual));
4455 struct type *formal_type = ada_check_typedef (formal_type0);
4456 struct type *formal_target =
4457 formal_type->code () == TYPE_CODE_PTR
4458 ? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type;
4459 struct type *actual_target =
4460 actual_type->code () == TYPE_CODE_PTR
4461 ? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type;
4462
4463 if (ada_is_array_descriptor_type (formal_target)
4464 && actual_target->code () == TYPE_CODE_ARRAY)
4465 return make_array_descriptor (formal_type, actual);
4466 else if (formal_type->code () == TYPE_CODE_PTR
4467 || formal_type->code () == TYPE_CODE_REF)
4468 {
4469 struct value *result;
4470
4471 if (formal_target->code () == TYPE_CODE_ARRAY
4472 && ada_is_array_descriptor_type (actual_target))
4473 result = desc_data (actual);
4474 else if (formal_type->code () != TYPE_CODE_PTR)
4475 {
4476 if (VALUE_LVAL (actual) != lval_memory)
4477 {
4478 struct value *val;
4479
4480 actual_type = ada_check_typedef (value_type (actual));
4481 val = allocate_value (actual_type);
4482 memcpy ((char *) value_contents_raw (val),
4483 (char *) value_contents (actual),
4484 TYPE_LENGTH (actual_type));
4485 actual = ensure_lval (val);
4486 }
4487 result = value_addr (actual);
4488 }
4489 else
4490 return actual;
4491 return value_cast_pointers (formal_type, result, 0);
4492 }
4493 else if (actual_type->code () == TYPE_CODE_PTR)
4494 return ada_value_ind (actual);
4495 else if (ada_is_aligner_type (formal_type))
4496 {
4497 /* We need to turn this parameter into an aligner type
4498 as well. */
4499 struct value *aligner = allocate_value (formal_type);
4500 struct value *component = ada_value_struct_elt (aligner, "F", 0);
4501
4502 value_assign_to_component (aligner, component, actual);
4503 return aligner;
4504 }
4505
4506 return actual;
4507 }
4508
4509 /* Convert VALUE (which must be an address) to a CORE_ADDR that is a pointer of
4510 type TYPE. This is usually an inefficient no-op except on some targets
4511 (such as AVR) where the representation of a pointer and an address
4512 differs. */
4513
4514 static CORE_ADDR
4515 value_pointer (struct value *value, struct type *type)
4516 {
4517 unsigned len = TYPE_LENGTH (type);
4518 gdb_byte *buf = (gdb_byte *) alloca (len);
4519 CORE_ADDR addr;
4520
4521 addr = value_address (value);
4522 gdbarch_address_to_pointer (type->arch (), type, buf, addr);
4523 addr = extract_unsigned_integer (buf, len, type_byte_order (type));
4524 return addr;
4525 }
4526
4527
4528 /* Push a descriptor of type TYPE for array value ARR on the stack at
4529 *SP, updating *SP to reflect the new descriptor. Return either
4530 an lvalue representing the new descriptor, or (if TYPE is a pointer-
4531 to-descriptor type rather than a descriptor type), a struct value *
4532 representing a pointer to this descriptor. */
4533
4534 static struct value *
4535 make_array_descriptor (struct type *type, struct value *arr)
4536 {
4537 struct type *bounds_type = desc_bounds_type (type);
4538 struct type *desc_type = desc_base_type (type);
4539 struct value *descriptor = allocate_value (desc_type);
4540 struct value *bounds = allocate_value (bounds_type);
4541 int i;
4542
4543 for (i = ada_array_arity (ada_check_typedef (value_type (arr)));
4544 i > 0; i -= 1)
4545 {
4546 modify_field (value_type (bounds), value_contents_writeable (bounds),
4547 ada_array_bound (arr, i, 0),
4548 desc_bound_bitpos (bounds_type, i, 0),
4549 desc_bound_bitsize (bounds_type, i, 0));
4550 modify_field (value_type (bounds), value_contents_writeable (bounds),
4551 ada_array_bound (arr, i, 1),
4552 desc_bound_bitpos (bounds_type, i, 1),
4553 desc_bound_bitsize (bounds_type, i, 1));
4554 }
4555
4556 bounds = ensure_lval (bounds);
4557
4558 modify_field (value_type (descriptor),
4559 value_contents_writeable (descriptor),
4560 value_pointer (ensure_lval (arr),
4561 desc_type->field (0).type ()),
4562 fat_pntr_data_bitpos (desc_type),
4563 fat_pntr_data_bitsize (desc_type));
4564
4565 modify_field (value_type (descriptor),
4566 value_contents_writeable (descriptor),
4567 value_pointer (bounds,
4568 desc_type->field (1).type ()),
4569 fat_pntr_bounds_bitpos (desc_type),
4570 fat_pntr_bounds_bitsize (desc_type));
4571
4572 descriptor = ensure_lval (descriptor);
4573
4574 if (type->code () == TYPE_CODE_PTR)
4575 return value_addr (descriptor);
4576 else
4577 return descriptor;
4578 }
4579 \f
4580 /* Symbol Cache Module */
4581
4582 /* Performance measurements made as of 2010-01-15 indicate that
4583 this cache does bring some noticeable improvements. Depending
4584 on the type of entity being printed, the cache can make it as much
4585 as an order of magnitude faster than without it.
4586
4587 The descriptive type DWARF extension has significantly reduced
4588 the need for this cache, at least when DWARF is being used. However,
4589 even in this case, some expensive name-based symbol searches are still
4590 sometimes necessary - to find an XVZ variable, mostly. */
4591
4592 /* Return the symbol cache associated to the given program space PSPACE.
4593 If not allocated for this PSPACE yet, allocate and initialize one. */
4594
4595 static struct ada_symbol_cache *
4596 ada_get_symbol_cache (struct program_space *pspace)
4597 {
4598 struct ada_pspace_data *pspace_data = get_ada_pspace_data (pspace);
4599
4600 if (pspace_data->sym_cache == nullptr)
4601 pspace_data->sym_cache.reset (new ada_symbol_cache);
4602
4603 return pspace_data->sym_cache.get ();
4604 }
4605
4606 /* Clear all entries from the symbol cache. */
4607
4608 static void
4609 ada_clear_symbol_cache ()
4610 {
4611 struct ada_pspace_data *pspace_data
4612 = get_ada_pspace_data (current_program_space);
4613
4614 if (pspace_data->sym_cache != nullptr)
4615 pspace_data->sym_cache.reset ();
4616 }
4617
4618 /* Search our cache for an entry matching NAME and DOMAIN.
4619 Return it if found, or NULL otherwise. */
4620
4621 static struct cache_entry **
4622 find_entry (const char *name, domain_enum domain)
4623 {
4624 struct ada_symbol_cache *sym_cache
4625 = ada_get_symbol_cache (current_program_space);
4626 int h = msymbol_hash (name) % HASH_SIZE;
4627 struct cache_entry **e;
4628
4629 for (e = &sym_cache->root[h]; *e != NULL; e = &(*e)->next)
4630 {
4631 if (domain == (*e)->domain && strcmp (name, (*e)->name) == 0)
4632 return e;
4633 }
4634 return NULL;
4635 }
4636
4637 /* Search the symbol cache for an entry matching NAME and DOMAIN.
4638 Return 1 if found, 0 otherwise.
4639
4640 If an entry was found and SYM is not NULL, set *SYM to the entry's
4641 SYM. Same principle for BLOCK if not NULL. */
4642
4643 static int
4644 lookup_cached_symbol (const char *name, domain_enum domain,
4645 struct symbol **sym, const struct block **block)
4646 {
4647 struct cache_entry **e = find_entry (name, domain);
4648
4649 if (e == NULL)
4650 return 0;
4651 if (sym != NULL)
4652 *sym = (*e)->sym;
4653 if (block != NULL)
4654 *block = (*e)->block;
4655 return 1;
4656 }
4657
4658 /* Assuming that (SYM, BLOCK) is the result of the lookup of NAME
4659 in domain DOMAIN, save this result in our symbol cache. */
4660
4661 static void
4662 cache_symbol (const char *name, domain_enum domain, struct symbol *sym,
4663 const struct block *block)
4664 {
4665 struct ada_symbol_cache *sym_cache
4666 = ada_get_symbol_cache (current_program_space);
4667 int h;
4668 struct cache_entry *e;
4669
4670 /* Symbols for builtin types don't have a block.
4671 For now don't cache such symbols. */
4672 if (sym != NULL && !SYMBOL_OBJFILE_OWNED (sym))
4673 return;
4674
4675 /* If the symbol is a local symbol, then do not cache it, as a search
4676 for that symbol depends on the context. To determine whether
4677 the symbol is local or not, we check the block where we found it
4678 against the global and static blocks of its associated symtab. */
4679 if (sym
4680 && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)),
4681 GLOBAL_BLOCK) != block
4682 && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)),
4683 STATIC_BLOCK) != block)
4684 return;
4685
4686 h = msymbol_hash (name) % HASH_SIZE;
4687 e = XOBNEW (&sym_cache->cache_space, cache_entry);
4688 e->next = sym_cache->root[h];
4689 sym_cache->root[h] = e;
4690 e->name = obstack_strdup (&sym_cache->cache_space, name);
4691 e->sym = sym;
4692 e->domain = domain;
4693 e->block = block;
4694 }
4695 \f
4696 /* Symbol Lookup */
4697
4698 /* Return the symbol name match type that should be used used when
4699 searching for all symbols matching LOOKUP_NAME.
4700
4701 LOOKUP_NAME is expected to be a symbol name after transformation
4702 for Ada lookups. */
4703
4704 static symbol_name_match_type
4705 name_match_type_from_name (const char *lookup_name)
4706 {
4707 return (strstr (lookup_name, "__") == NULL
4708 ? symbol_name_match_type::WILD
4709 : symbol_name_match_type::FULL);
4710 }
4711
4712 /* Return the result of a standard (literal, C-like) lookup of NAME in
4713 given DOMAIN, visible from lexical block BLOCK. */
4714
4715 static struct symbol *
4716 standard_lookup (const char *name, const struct block *block,
4717 domain_enum domain)
4718 {
4719 /* Initialize it just to avoid a GCC false warning. */
4720 struct block_symbol sym = {};
4721
4722 if (lookup_cached_symbol (name, domain, &sym.symbol, NULL))
4723 return sym.symbol;
4724 ada_lookup_encoded_symbol (name, block, domain, &sym);
4725 cache_symbol (name, domain, sym.symbol, sym.block);
4726 return sym.symbol;
4727 }
4728
4729
4730 /* Non-zero iff there is at least one non-function/non-enumeral symbol
4731 in the symbol fields of SYMS. We treat enumerals as functions,
4732 since they contend in overloading in the same way. */
4733 static int
4734 is_nonfunction (const std::vector<struct block_symbol> &syms)
4735 {
4736 for (const block_symbol &sym : syms)
4737 if (SYMBOL_TYPE (sym.symbol)->code () != TYPE_CODE_FUNC
4738 && (SYMBOL_TYPE (sym.symbol)->code () != TYPE_CODE_ENUM
4739 || SYMBOL_CLASS (sym.symbol) != LOC_CONST))
4740 return 1;
4741
4742 return 0;
4743 }
4744
4745 /* If true (non-zero), then TYPE0 and TYPE1 represent equivalent
4746 struct types. Otherwise, they may not. */
4747
4748 static int
4749 equiv_types (struct type *type0, struct type *type1)
4750 {
4751 if (type0 == type1)
4752 return 1;
4753 if (type0 == NULL || type1 == NULL
4754 || type0->code () != type1->code ())
4755 return 0;
4756 if ((type0->code () == TYPE_CODE_STRUCT
4757 || type0->code () == TYPE_CODE_ENUM)
4758 && ada_type_name (type0) != NULL && ada_type_name (type1) != NULL
4759 && strcmp (ada_type_name (type0), ada_type_name (type1)) == 0)
4760 return 1;
4761
4762 return 0;
4763 }
4764
4765 /* True iff SYM0 represents the same entity as SYM1, or one that is
4766 no more defined than that of SYM1. */
4767
4768 static int
4769 lesseq_defined_than (struct symbol *sym0, struct symbol *sym1)
4770 {
4771 if (sym0 == sym1)
4772 return 1;
4773 if (SYMBOL_DOMAIN (sym0) != SYMBOL_DOMAIN (sym1)
4774 || SYMBOL_CLASS (sym0) != SYMBOL_CLASS (sym1))
4775 return 0;
4776
4777 switch (SYMBOL_CLASS (sym0))
4778 {
4779 case LOC_UNDEF:
4780 return 1;
4781 case LOC_TYPEDEF:
4782 {
4783 struct type *type0 = SYMBOL_TYPE (sym0);
4784 struct type *type1 = SYMBOL_TYPE (sym1);
4785 const char *name0 = sym0->linkage_name ();
4786 const char *name1 = sym1->linkage_name ();
4787 int len0 = strlen (name0);
4788
4789 return
4790 type0->code () == type1->code ()
4791 && (equiv_types (type0, type1)
4792 || (len0 < strlen (name1) && strncmp (name0, name1, len0) == 0
4793 && startswith (name1 + len0, "___XV")));
4794 }
4795 case LOC_CONST:
4796 return SYMBOL_VALUE (sym0) == SYMBOL_VALUE (sym1)
4797 && equiv_types (SYMBOL_TYPE (sym0), SYMBOL_TYPE (sym1));
4798
4799 case LOC_STATIC:
4800 {
4801 const char *name0 = sym0->linkage_name ();
4802 const char *name1 = sym1->linkage_name ();
4803 return (strcmp (name0, name1) == 0
4804 && SYMBOL_VALUE_ADDRESS (sym0) == SYMBOL_VALUE_ADDRESS (sym1));
4805 }
4806
4807 default:
4808 return 0;
4809 }
4810 }
4811
4812 /* Append (SYM,BLOCK) to the end of the array of struct block_symbol
4813 records in RESULT. Do nothing if SYM is a duplicate. */
4814
4815 static void
4816 add_defn_to_vec (std::vector<struct block_symbol> &result,
4817 struct symbol *sym,
4818 const struct block *block)
4819 {
4820 /* Do not try to complete stub types, as the debugger is probably
4821 already scanning all symbols matching a certain name at the
4822 time when this function is called. Trying to replace the stub
4823 type by its associated full type will cause us to restart a scan
4824 which may lead to an infinite recursion. Instead, the client
4825 collecting the matching symbols will end up collecting several
4826 matches, with at least one of them complete. It can then filter
4827 out the stub ones if needed. */
4828
4829 for (int i = result.size () - 1; i >= 0; i -= 1)
4830 {
4831 if (lesseq_defined_than (sym, result[i].symbol))
4832 return;
4833 else if (lesseq_defined_than (result[i].symbol, sym))
4834 {
4835 result[i].symbol = sym;
4836 result[i].block = block;
4837 return;
4838 }
4839 }
4840
4841 struct block_symbol info;
4842 info.symbol = sym;
4843 info.block = block;
4844 result.push_back (info);
4845 }
4846
4847 /* Return a bound minimal symbol matching NAME according to Ada
4848 decoding rules. Returns an invalid symbol if there is no such
4849 minimal symbol. Names prefixed with "standard__" are handled
4850 specially: "standard__" is first stripped off, and only static and
4851 global symbols are searched. */
4852
4853 struct bound_minimal_symbol
4854 ada_lookup_simple_minsym (const char *name)
4855 {
4856 struct bound_minimal_symbol result;
4857
4858 memset (&result, 0, sizeof (result));
4859
4860 symbol_name_match_type match_type = name_match_type_from_name (name);
4861 lookup_name_info lookup_name (name, match_type);
4862
4863 symbol_name_matcher_ftype *match_name
4864 = ada_get_symbol_name_matcher (lookup_name);
4865
4866 for (objfile *objfile : current_program_space->objfiles ())
4867 {
4868 for (minimal_symbol *msymbol : objfile->msymbols ())
4869 {
4870 if (match_name (msymbol->linkage_name (), lookup_name, NULL)
4871 && MSYMBOL_TYPE (msymbol) != mst_solib_trampoline)
4872 {
4873 result.minsym = msymbol;
4874 result.objfile = objfile;
4875 break;
4876 }
4877 }
4878 }
4879
4880 return result;
4881 }
4882
4883 /* For all subprograms that statically enclose the subprogram of the
4884 selected frame, add symbols matching identifier NAME in DOMAIN
4885 and their blocks to the list of data in RESULT, as for
4886 ada_add_block_symbols (q.v.). If WILD_MATCH_P, treat as NAME
4887 with a wildcard prefix. */
4888
4889 static void
4890 add_symbols_from_enclosing_procs (std::vector<struct block_symbol> &result,
4891 const lookup_name_info &lookup_name,
4892 domain_enum domain)
4893 {
4894 }
4895
4896 /* True if TYPE is definitely an artificial type supplied to a symbol
4897 for which no debugging information was given in the symbol file. */
4898
4899 static int
4900 is_nondebugging_type (struct type *type)
4901 {
4902 const char *name = ada_type_name (type);
4903
4904 return (name != NULL && strcmp (name, "<variable, no debug info>") == 0);
4905 }
4906
4907 /* Return nonzero if TYPE1 and TYPE2 are two enumeration types
4908 that are deemed "identical" for practical purposes.
4909
4910 This function assumes that TYPE1 and TYPE2 are both TYPE_CODE_ENUM
4911 types and that their number of enumerals is identical (in other
4912 words, type1->num_fields () == type2->num_fields ()). */
4913
4914 static int
4915 ada_identical_enum_types_p (struct type *type1, struct type *type2)
4916 {
4917 int i;
4918
4919 /* The heuristic we use here is fairly conservative. We consider
4920 that 2 enumerate types are identical if they have the same
4921 number of enumerals and that all enumerals have the same
4922 underlying value and name. */
4923
4924 /* All enums in the type should have an identical underlying value. */
4925 for (i = 0; i < type1->num_fields (); i++)
4926 if (TYPE_FIELD_ENUMVAL (type1, i) != TYPE_FIELD_ENUMVAL (type2, i))
4927 return 0;
4928
4929 /* All enumerals should also have the same name (modulo any numerical
4930 suffix). */
4931 for (i = 0; i < type1->num_fields (); i++)
4932 {
4933 const char *name_1 = TYPE_FIELD_NAME (type1, i);
4934 const char *name_2 = TYPE_FIELD_NAME (type2, i);
4935 int len_1 = strlen (name_1);
4936 int len_2 = strlen (name_2);
4937
4938 ada_remove_trailing_digits (TYPE_FIELD_NAME (type1, i), &len_1);
4939 ada_remove_trailing_digits (TYPE_FIELD_NAME (type2, i), &len_2);
4940 if (len_1 != len_2
4941 || strncmp (TYPE_FIELD_NAME (type1, i),
4942 TYPE_FIELD_NAME (type2, i),
4943 len_1) != 0)
4944 return 0;
4945 }
4946
4947 return 1;
4948 }
4949
4950 /* Return nonzero if all the symbols in SYMS are all enumeral symbols
4951 that are deemed "identical" for practical purposes. Sometimes,
4952 enumerals are not strictly identical, but their types are so similar
4953 that they can be considered identical.
4954
4955 For instance, consider the following code:
4956
4957 type Color is (Black, Red, Green, Blue, White);
4958 type RGB_Color is new Color range Red .. Blue;
4959
4960 Type RGB_Color is a subrange of an implicit type which is a copy
4961 of type Color. If we call that implicit type RGB_ColorB ("B" is
4962 for "Base Type"), then type RGB_ColorB is a copy of type Color.
4963 As a result, when an expression references any of the enumeral
4964 by name (Eg. "print green"), the expression is technically
4965 ambiguous and the user should be asked to disambiguate. But
4966 doing so would only hinder the user, since it wouldn't matter
4967 what choice he makes, the outcome would always be the same.
4968 So, for practical purposes, we consider them as the same. */
4969
4970 static int
4971 symbols_are_identical_enums (const std::vector<struct block_symbol> &syms)
4972 {
4973 int i;
4974
4975 /* Before performing a thorough comparison check of each type,
4976 we perform a series of inexpensive checks. We expect that these
4977 checks will quickly fail in the vast majority of cases, and thus
4978 help prevent the unnecessary use of a more expensive comparison.
4979 Said comparison also expects us to make some of these checks
4980 (see ada_identical_enum_types_p). */
4981
4982 /* Quick check: All symbols should have an enum type. */
4983 for (i = 0; i < syms.size (); i++)
4984 if (SYMBOL_TYPE (syms[i].symbol)->code () != TYPE_CODE_ENUM)
4985 return 0;
4986
4987 /* Quick check: They should all have the same value. */
4988 for (i = 1; i < syms.size (); i++)
4989 if (SYMBOL_VALUE (syms[i].symbol) != SYMBOL_VALUE (syms[0].symbol))
4990 return 0;
4991
4992 /* Quick check: They should all have the same number of enumerals. */
4993 for (i = 1; i < syms.size (); i++)
4994 if (SYMBOL_TYPE (syms[i].symbol)->num_fields ()
4995 != SYMBOL_TYPE (syms[0].symbol)->num_fields ())
4996 return 0;
4997
4998 /* All the sanity checks passed, so we might have a set of
4999 identical enumeration types. Perform a more complete
5000 comparison of the type of each symbol. */
5001 for (i = 1; i < syms.size (); i++)
5002 if (!ada_identical_enum_types_p (SYMBOL_TYPE (syms[i].symbol),
5003 SYMBOL_TYPE (syms[0].symbol)))
5004 return 0;
5005
5006 return 1;
5007 }
5008
5009 /* Remove any non-debugging symbols in SYMS that definitely
5010 duplicate other symbols in the list (The only case I know of where
5011 this happens is when object files containing stabs-in-ecoff are
5012 linked with files containing ordinary ecoff debugging symbols (or no
5013 debugging symbols)). Modifies SYMS to squeeze out deleted entries. */
5014
5015 static void
5016 remove_extra_symbols (std::vector<struct block_symbol> *syms)
5017 {
5018 int i, j;
5019
5020 /* We should never be called with less than 2 symbols, as there
5021 cannot be any extra symbol in that case. But it's easy to
5022 handle, since we have nothing to do in that case. */
5023 if (syms->size () < 2)
5024 return;
5025
5026 i = 0;
5027 while (i < syms->size ())
5028 {
5029 int remove_p = 0;
5030
5031 /* If two symbols have the same name and one of them is a stub type,
5032 the get rid of the stub. */
5033
5034 if (SYMBOL_TYPE ((*syms)[i].symbol)->is_stub ()
5035 && (*syms)[i].symbol->linkage_name () != NULL)
5036 {
5037 for (j = 0; j < syms->size (); j++)
5038 {
5039 if (j != i
5040 && !SYMBOL_TYPE ((*syms)[j].symbol)->is_stub ()
5041 && (*syms)[j].symbol->linkage_name () != NULL
5042 && strcmp ((*syms)[i].symbol->linkage_name (),
5043 (*syms)[j].symbol->linkage_name ()) == 0)
5044 remove_p = 1;
5045 }
5046 }
5047
5048 /* Two symbols with the same name, same class and same address
5049 should be identical. */
5050
5051 else if ((*syms)[i].symbol->linkage_name () != NULL
5052 && SYMBOL_CLASS ((*syms)[i].symbol) == LOC_STATIC
5053 && is_nondebugging_type (SYMBOL_TYPE ((*syms)[i].symbol)))
5054 {
5055 for (j = 0; j < syms->size (); j += 1)
5056 {
5057 if (i != j
5058 && (*syms)[j].symbol->linkage_name () != NULL
5059 && strcmp ((*syms)[i].symbol->linkage_name (),
5060 (*syms)[j].symbol->linkage_name ()) == 0
5061 && SYMBOL_CLASS ((*syms)[i].symbol)
5062 == SYMBOL_CLASS ((*syms)[j].symbol)
5063 && SYMBOL_VALUE_ADDRESS ((*syms)[i].symbol)
5064 == SYMBOL_VALUE_ADDRESS ((*syms)[j].symbol))
5065 remove_p = 1;
5066 }
5067 }
5068
5069 if (remove_p)
5070 syms->erase (syms->begin () + i);
5071 else
5072 i += 1;
5073 }
5074
5075 /* If all the remaining symbols are identical enumerals, then
5076 just keep the first one and discard the rest.
5077
5078 Unlike what we did previously, we do not discard any entry
5079 unless they are ALL identical. This is because the symbol
5080 comparison is not a strict comparison, but rather a practical
5081 comparison. If all symbols are considered identical, then
5082 we can just go ahead and use the first one and discard the rest.
5083 But if we cannot reduce the list to a single element, we have
5084 to ask the user to disambiguate anyways. And if we have to
5085 present a multiple-choice menu, it's less confusing if the list
5086 isn't missing some choices that were identical and yet distinct. */
5087 if (symbols_are_identical_enums (*syms))
5088 syms->resize (1);
5089 }
5090
5091 /* Given a type that corresponds to a renaming entity, use the type name
5092 to extract the scope (package name or function name, fully qualified,
5093 and following the GNAT encoding convention) where this renaming has been
5094 defined. */
5095
5096 static std::string
5097 xget_renaming_scope (struct type *renaming_type)
5098 {
5099 /* The renaming types adhere to the following convention:
5100 <scope>__<rename>___<XR extension>.
5101 So, to extract the scope, we search for the "___XR" extension,
5102 and then backtrack until we find the first "__". */
5103
5104 const char *name = renaming_type->name ();
5105 const char *suffix = strstr (name, "___XR");
5106 const char *last;
5107
5108 /* Now, backtrack a bit until we find the first "__". Start looking
5109 at suffix - 3, as the <rename> part is at least one character long. */
5110
5111 for (last = suffix - 3; last > name; last--)
5112 if (last[0] == '_' && last[1] == '_')
5113 break;
5114
5115 /* Make a copy of scope and return it. */
5116 return std::string (name, last);
5117 }
5118
5119 /* Return nonzero if NAME corresponds to a package name. */
5120
5121 static int
5122 is_package_name (const char *name)
5123 {
5124 /* Here, We take advantage of the fact that no symbols are generated
5125 for packages, while symbols are generated for each function.
5126 So the condition for NAME represent a package becomes equivalent
5127 to NAME not existing in our list of symbols. There is only one
5128 small complication with library-level functions (see below). */
5129
5130 /* If it is a function that has not been defined at library level,
5131 then we should be able to look it up in the symbols. */
5132 if (standard_lookup (name, NULL, VAR_DOMAIN) != NULL)
5133 return 0;
5134
5135 /* Library-level function names start with "_ada_". See if function
5136 "_ada_" followed by NAME can be found. */
5137
5138 /* Do a quick check that NAME does not contain "__", since library-level
5139 functions names cannot contain "__" in them. */
5140 if (strstr (name, "__") != NULL)
5141 return 0;
5142
5143 std::string fun_name = string_printf ("_ada_%s", name);
5144
5145 return (standard_lookup (fun_name.c_str (), NULL, VAR_DOMAIN) == NULL);
5146 }
5147
5148 /* Return nonzero if SYM corresponds to a renaming entity that is
5149 not visible from FUNCTION_NAME. */
5150
5151 static int
5152 old_renaming_is_invisible (const struct symbol *sym, const char *function_name)
5153 {
5154 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
5155 return 0;
5156
5157 std::string scope = xget_renaming_scope (SYMBOL_TYPE (sym));
5158
5159 /* If the rename has been defined in a package, then it is visible. */
5160 if (is_package_name (scope.c_str ()))
5161 return 0;
5162
5163 /* Check that the rename is in the current function scope by checking
5164 that its name starts with SCOPE. */
5165
5166 /* If the function name starts with "_ada_", it means that it is
5167 a library-level function. Strip this prefix before doing the
5168 comparison, as the encoding for the renaming does not contain
5169 this prefix. */
5170 if (startswith (function_name, "_ada_"))
5171 function_name += 5;
5172
5173 return !startswith (function_name, scope.c_str ());
5174 }
5175
5176 /* Remove entries from SYMS that corresponds to a renaming entity that
5177 is not visible from the function associated with CURRENT_BLOCK or
5178 that is superfluous due to the presence of more specific renaming
5179 information. Places surviving symbols in the initial entries of
5180 SYMS.
5181
5182 Rationale:
5183 First, in cases where an object renaming is implemented as a
5184 reference variable, GNAT may produce both the actual reference
5185 variable and the renaming encoding. In this case, we discard the
5186 latter.
5187
5188 Second, GNAT emits a type following a specified encoding for each renaming
5189 entity. Unfortunately, STABS currently does not support the definition
5190 of types that are local to a given lexical block, so all renamings types
5191 are emitted at library level. As a consequence, if an application
5192 contains two renaming entities using the same name, and a user tries to
5193 print the value of one of these entities, the result of the ada symbol
5194 lookup will also contain the wrong renaming type.
5195
5196 This function partially covers for this limitation by attempting to
5197 remove from the SYMS list renaming symbols that should be visible
5198 from CURRENT_BLOCK. However, there does not seem be a 100% reliable
5199 method with the current information available. The implementation
5200 below has a couple of limitations (FIXME: brobecker-2003-05-12):
5201
5202 - When the user tries to print a rename in a function while there
5203 is another rename entity defined in a package: Normally, the
5204 rename in the function has precedence over the rename in the
5205 package, so the latter should be removed from the list. This is
5206 currently not the case.
5207
5208 - This function will incorrectly remove valid renames if
5209 the CURRENT_BLOCK corresponds to a function which symbol name
5210 has been changed by an "Export" pragma. As a consequence,
5211 the user will be unable to print such rename entities. */
5212
5213 static void
5214 remove_irrelevant_renamings (std::vector<struct block_symbol> *syms,
5215 const struct block *current_block)
5216 {
5217 struct symbol *current_function;
5218 const char *current_function_name;
5219 int i;
5220 int is_new_style_renaming;
5221
5222 /* If there is both a renaming foo___XR... encoded as a variable and
5223 a simple variable foo in the same block, discard the latter.
5224 First, zero out such symbols, then compress. */
5225 is_new_style_renaming = 0;
5226 for (i = 0; i < syms->size (); i += 1)
5227 {
5228 struct symbol *sym = (*syms)[i].symbol;
5229 const struct block *block = (*syms)[i].block;
5230 const char *name;
5231 const char *suffix;
5232
5233 if (sym == NULL || SYMBOL_CLASS (sym) == LOC_TYPEDEF)
5234 continue;
5235 name = sym->linkage_name ();
5236 suffix = strstr (name, "___XR");
5237
5238 if (suffix != NULL)
5239 {
5240 int name_len = suffix - name;
5241 int j;
5242
5243 is_new_style_renaming = 1;
5244 for (j = 0; j < syms->size (); j += 1)
5245 if (i != j && (*syms)[j].symbol != NULL
5246 && strncmp (name, (*syms)[j].symbol->linkage_name (),
5247 name_len) == 0
5248 && block == (*syms)[j].block)
5249 (*syms)[j].symbol = NULL;
5250 }
5251 }
5252 if (is_new_style_renaming)
5253 {
5254 int j, k;
5255
5256 for (j = k = 0; j < syms->size (); j += 1)
5257 if ((*syms)[j].symbol != NULL)
5258 {
5259 (*syms)[k] = (*syms)[j];
5260 k += 1;
5261 }
5262 syms->resize (k);
5263 return;
5264 }
5265
5266 /* Extract the function name associated to CURRENT_BLOCK.
5267 Abort if unable to do so. */
5268
5269 if (current_block == NULL)
5270 return;
5271
5272 current_function = block_linkage_function (current_block);
5273 if (current_function == NULL)
5274 return;
5275
5276 current_function_name = current_function->linkage_name ();
5277 if (current_function_name == NULL)
5278 return;
5279
5280 /* Check each of the symbols, and remove it from the list if it is
5281 a type corresponding to a renaming that is out of the scope of
5282 the current block. */
5283
5284 i = 0;
5285 while (i < syms->size ())
5286 {
5287 if (ada_parse_renaming ((*syms)[i].symbol, NULL, NULL, NULL)
5288 == ADA_OBJECT_RENAMING
5289 && old_renaming_is_invisible ((*syms)[i].symbol,
5290 current_function_name))
5291 syms->erase (syms->begin () + i);
5292 else
5293 i += 1;
5294 }
5295 }
5296
5297 /* Add to RESULT all symbols from BLOCK (and its super-blocks)
5298 whose name and domain match NAME and DOMAIN respectively.
5299 If no match was found, then extend the search to "enclosing"
5300 routines (in other words, if we're inside a nested function,
5301 search the symbols defined inside the enclosing functions).
5302 If WILD_MATCH_P is nonzero, perform the naming matching in
5303 "wild" mode (see function "wild_match" for more info).
5304
5305 Note: This function assumes that RESULT has 0 (zero) element in it. */
5306
5307 static void
5308 ada_add_local_symbols (std::vector<struct block_symbol> &result,
5309 const lookup_name_info &lookup_name,
5310 const struct block *block, domain_enum domain)
5311 {
5312 int block_depth = 0;
5313
5314 while (block != NULL)
5315 {
5316 block_depth += 1;
5317 ada_add_block_symbols (result, block, lookup_name, domain, NULL);
5318
5319 /* If we found a non-function match, assume that's the one. */
5320 if (is_nonfunction (result))
5321 return;
5322
5323 block = BLOCK_SUPERBLOCK (block);
5324 }
5325
5326 /* If no luck so far, try to find NAME as a local symbol in some lexically
5327 enclosing subprogram. */
5328 if (result.empty () && block_depth > 2)
5329 add_symbols_from_enclosing_procs (result, lookup_name, domain);
5330 }
5331
5332 /* An object of this type is used as the user_data argument when
5333 calling the map_matching_symbols method. */
5334
5335 struct match_data
5336 {
5337 explicit match_data (std::vector<struct block_symbol> *rp)
5338 : resultp (rp)
5339 {
5340 }
5341 DISABLE_COPY_AND_ASSIGN (match_data);
5342
5343 struct objfile *objfile = nullptr;
5344 std::vector<struct block_symbol> *resultp;
5345 struct symbol *arg_sym = nullptr;
5346 bool found_sym = false;
5347 };
5348
5349 /* A callback for add_nonlocal_symbols that adds symbol, found in BSYM,
5350 to a list of symbols. DATA is a pointer to a struct match_data *
5351 containing the vector that collects the symbol list, the file that SYM
5352 must come from, a flag indicating whether a non-argument symbol has
5353 been found in the current block, and the last argument symbol
5354 passed in SYM within the current block (if any). When SYM is null,
5355 marking the end of a block, the argument symbol is added if no
5356 other has been found. */
5357
5358 static bool
5359 aux_add_nonlocal_symbols (struct block_symbol *bsym,
5360 struct match_data *data)
5361 {
5362 const struct block *block = bsym->block;
5363 struct symbol *sym = bsym->symbol;
5364
5365 if (sym == NULL)
5366 {
5367 if (!data->found_sym && data->arg_sym != NULL)
5368 add_defn_to_vec (*data->resultp,
5369 fixup_symbol_section (data->arg_sym, data->objfile),
5370 block);
5371 data->found_sym = false;
5372 data->arg_sym = NULL;
5373 }
5374 else
5375 {
5376 if (SYMBOL_CLASS (sym) == LOC_UNRESOLVED)
5377 return true;
5378 else if (SYMBOL_IS_ARGUMENT (sym))
5379 data->arg_sym = sym;
5380 else
5381 {
5382 data->found_sym = true;
5383 add_defn_to_vec (*data->resultp,
5384 fixup_symbol_section (sym, data->objfile),
5385 block);
5386 }
5387 }
5388 return true;
5389 }
5390
5391 /* Helper for add_nonlocal_symbols. Find symbols in DOMAIN which are
5392 targeted by renamings matching LOOKUP_NAME in BLOCK. Add these
5393 symbols to RESULT. Return whether we found such symbols. */
5394
5395 static int
5396 ada_add_block_renamings (std::vector<struct block_symbol> &result,
5397 const struct block *block,
5398 const lookup_name_info &lookup_name,
5399 domain_enum domain)
5400 {
5401 struct using_direct *renaming;
5402 int defns_mark = result.size ();
5403
5404 symbol_name_matcher_ftype *name_match
5405 = ada_get_symbol_name_matcher (lookup_name);
5406
5407 for (renaming = block_using (block);
5408 renaming != NULL;
5409 renaming = renaming->next)
5410 {
5411 const char *r_name;
5412
5413 /* Avoid infinite recursions: skip this renaming if we are actually
5414 already traversing it.
5415
5416 Currently, symbol lookup in Ada don't use the namespace machinery from
5417 C++/Fortran support: skip namespace imports that use them. */
5418 if (renaming->searched
5419 || (renaming->import_src != NULL
5420 && renaming->import_src[0] != '\0')
5421 || (renaming->import_dest != NULL
5422 && renaming->import_dest[0] != '\0'))
5423 continue;
5424 renaming->searched = 1;
5425
5426 /* TODO: here, we perform another name-based symbol lookup, which can
5427 pull its own multiple overloads. In theory, we should be able to do
5428 better in this case since, in DWARF, DW_AT_import is a DIE reference,
5429 not a simple name. But in order to do this, we would need to enhance
5430 the DWARF reader to associate a symbol to this renaming, instead of a
5431 name. So, for now, we do something simpler: re-use the C++/Fortran
5432 namespace machinery. */
5433 r_name = (renaming->alias != NULL
5434 ? renaming->alias
5435 : renaming->declaration);
5436 if (name_match (r_name, lookup_name, NULL))
5437 {
5438 lookup_name_info decl_lookup_name (renaming->declaration,
5439 lookup_name.match_type ());
5440 ada_add_all_symbols (result, block, decl_lookup_name, domain,
5441 1, NULL);
5442 }
5443 renaming->searched = 0;
5444 }
5445 return result.size () != defns_mark;
5446 }
5447
5448 /* Implements compare_names, but only applying the comparision using
5449 the given CASING. */
5450
5451 static int
5452 compare_names_with_case (const char *string1, const char *string2,
5453 enum case_sensitivity casing)
5454 {
5455 while (*string1 != '\0' && *string2 != '\0')
5456 {
5457 char c1, c2;
5458
5459 if (isspace (*string1) || isspace (*string2))
5460 return strcmp_iw_ordered (string1, string2);
5461
5462 if (casing == case_sensitive_off)
5463 {
5464 c1 = tolower (*string1);
5465 c2 = tolower (*string2);
5466 }
5467 else
5468 {
5469 c1 = *string1;
5470 c2 = *string2;
5471 }
5472 if (c1 != c2)
5473 break;
5474
5475 string1 += 1;
5476 string2 += 1;
5477 }
5478
5479 switch (*string1)
5480 {
5481 case '(':
5482 return strcmp_iw_ordered (string1, string2);
5483 case '_':
5484 if (*string2 == '\0')
5485 {
5486 if (is_name_suffix (string1))
5487 return 0;
5488 else
5489 return 1;
5490 }
5491 /* FALLTHROUGH */
5492 default:
5493 if (*string2 == '(')
5494 return strcmp_iw_ordered (string1, string2);
5495 else
5496 {
5497 if (casing == case_sensitive_off)
5498 return tolower (*string1) - tolower (*string2);
5499 else
5500 return *string1 - *string2;
5501 }
5502 }
5503 }
5504
5505 /* Compare STRING1 to STRING2, with results as for strcmp.
5506 Compatible with strcmp_iw_ordered in that...
5507
5508 strcmp_iw_ordered (STRING1, STRING2) <= 0
5509
5510 ... implies...
5511
5512 compare_names (STRING1, STRING2) <= 0
5513
5514 (they may differ as to what symbols compare equal). */
5515
5516 static int
5517 compare_names (const char *string1, const char *string2)
5518 {
5519 int result;
5520
5521 /* Similar to what strcmp_iw_ordered does, we need to perform
5522 a case-insensitive comparison first, and only resort to
5523 a second, case-sensitive, comparison if the first one was
5524 not sufficient to differentiate the two strings. */
5525
5526 result = compare_names_with_case (string1, string2, case_sensitive_off);
5527 if (result == 0)
5528 result = compare_names_with_case (string1, string2, case_sensitive_on);
5529
5530 return result;
5531 }
5532
5533 /* Convenience function to get at the Ada encoded lookup name for
5534 LOOKUP_NAME, as a C string. */
5535
5536 static const char *
5537 ada_lookup_name (const lookup_name_info &lookup_name)
5538 {
5539 return lookup_name.ada ().lookup_name ().c_str ();
5540 }
5541
5542 /* Add to RESULT all non-local symbols whose name and domain match
5543 LOOKUP_NAME and DOMAIN respectively. The search is performed on
5544 GLOBAL_BLOCK symbols if GLOBAL is non-zero, or on STATIC_BLOCK
5545 symbols otherwise. */
5546
5547 static void
5548 add_nonlocal_symbols (std::vector<struct block_symbol> &result,
5549 const lookup_name_info &lookup_name,
5550 domain_enum domain, int global)
5551 {
5552 struct match_data data (&result);
5553
5554 bool is_wild_match = lookup_name.ada ().wild_match_p ();
5555
5556 auto callback = [&] (struct block_symbol *bsym)
5557 {
5558 return aux_add_nonlocal_symbols (bsym, &data);
5559 };
5560
5561 for (objfile *objfile : current_program_space->objfiles ())
5562 {
5563 data.objfile = objfile;
5564
5565 if (objfile->sf != nullptr)
5566 objfile->sf->qf->map_matching_symbols (objfile, lookup_name,
5567 domain, global, callback,
5568 (is_wild_match
5569 ? NULL : compare_names));
5570
5571 for (compunit_symtab *cu : objfile->compunits ())
5572 {
5573 const struct block *global_block
5574 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cu), GLOBAL_BLOCK);
5575
5576 if (ada_add_block_renamings (result, global_block, lookup_name,
5577 domain))
5578 data.found_sym = true;
5579 }
5580 }
5581
5582 if (result.empty () && global && !is_wild_match)
5583 {
5584 const char *name = ada_lookup_name (lookup_name);
5585 std::string bracket_name = std::string ("<_ada_") + name + '>';
5586 lookup_name_info name1 (bracket_name, symbol_name_match_type::FULL);
5587
5588 for (objfile *objfile : current_program_space->objfiles ())
5589 {
5590 data.objfile = objfile;
5591 if (objfile->sf != nullptr)
5592 objfile->sf->qf->map_matching_symbols (objfile, name1,
5593 domain, global, callback,
5594 compare_names);
5595 }
5596 }
5597 }
5598
5599 /* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if
5600 FULL_SEARCH is non-zero, enclosing scope and in global scopes,
5601 returning the number of matches. Add these to RESULT.
5602
5603 When FULL_SEARCH is non-zero, any non-function/non-enumeral
5604 symbol match within the nest of blocks whose innermost member is BLOCK,
5605 is the one match returned (no other matches in that or
5606 enclosing blocks is returned). If there are any matches in or
5607 surrounding BLOCK, then these alone are returned.
5608
5609 Names prefixed with "standard__" are handled specially:
5610 "standard__" is first stripped off (by the lookup_name
5611 constructor), and only static and global symbols are searched.
5612
5613 If MADE_GLOBAL_LOOKUP_P is non-null, set it before return to whether we had
5614 to lookup global symbols. */
5615
5616 static void
5617 ada_add_all_symbols (std::vector<struct block_symbol> &result,
5618 const struct block *block,
5619 const lookup_name_info &lookup_name,
5620 domain_enum domain,
5621 int full_search,
5622 int *made_global_lookup_p)
5623 {
5624 struct symbol *sym;
5625
5626 if (made_global_lookup_p)
5627 *made_global_lookup_p = 0;
5628
5629 /* Special case: If the user specifies a symbol name inside package
5630 Standard, do a non-wild matching of the symbol name without
5631 the "standard__" prefix. This was primarily introduced in order
5632 to allow the user to specifically access the standard exceptions
5633 using, for instance, Standard.Constraint_Error when Constraint_Error
5634 is ambiguous (due to the user defining its own Constraint_Error
5635 entity inside its program). */
5636 if (lookup_name.ada ().standard_p ())
5637 block = NULL;
5638
5639 /* Check the non-global symbols. If we have ANY match, then we're done. */
5640
5641 if (block != NULL)
5642 {
5643 if (full_search)
5644 ada_add_local_symbols (result, lookup_name, block, domain);
5645 else
5646 {
5647 /* In the !full_search case we're are being called by
5648 iterate_over_symbols, and we don't want to search
5649 superblocks. */
5650 ada_add_block_symbols (result, block, lookup_name, domain, NULL);
5651 }
5652 if (!result.empty () || !full_search)
5653 return;
5654 }
5655
5656 /* No non-global symbols found. Check our cache to see if we have
5657 already performed this search before. If we have, then return
5658 the same result. */
5659
5660 if (lookup_cached_symbol (ada_lookup_name (lookup_name),
5661 domain, &sym, &block))
5662 {
5663 if (sym != NULL)
5664 add_defn_to_vec (result, sym, block);
5665 return;
5666 }
5667
5668 if (made_global_lookup_p)
5669 *made_global_lookup_p = 1;
5670
5671 /* Search symbols from all global blocks. */
5672
5673 add_nonlocal_symbols (result, lookup_name, domain, 1);
5674
5675 /* Now add symbols from all per-file blocks if we've gotten no hits
5676 (not strictly correct, but perhaps better than an error). */
5677
5678 if (result.empty ())
5679 add_nonlocal_symbols (result, lookup_name, domain, 0);
5680 }
5681
5682 /* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if FULL_SEARCH
5683 is non-zero, enclosing scope and in global scopes.
5684
5685 Returns (SYM,BLOCK) tuples, indicating the symbols found and the
5686 blocks and symbol tables (if any) in which they were found.
5687
5688 When full_search is non-zero, any non-function/non-enumeral
5689 symbol match within the nest of blocks whose innermost member is BLOCK,
5690 is the one match returned (no other matches in that or
5691 enclosing blocks is returned). If there are any matches in or
5692 surrounding BLOCK, then these alone are returned.
5693
5694 Names prefixed with "standard__" are handled specially: "standard__"
5695 is first stripped off, and only static and global symbols are searched. */
5696
5697 static std::vector<struct block_symbol>
5698 ada_lookup_symbol_list_worker (const lookup_name_info &lookup_name,
5699 const struct block *block,
5700 domain_enum domain,
5701 int full_search)
5702 {
5703 int syms_from_global_search;
5704 std::vector<struct block_symbol> results;
5705
5706 ada_add_all_symbols (results, block, lookup_name,
5707 domain, full_search, &syms_from_global_search);
5708
5709 remove_extra_symbols (&results);
5710
5711 if (results.empty () && full_search && syms_from_global_search)
5712 cache_symbol (ada_lookup_name (lookup_name), domain, NULL, NULL);
5713
5714 if (results.size () == 1 && full_search && syms_from_global_search)
5715 cache_symbol (ada_lookup_name (lookup_name), domain,
5716 results[0].symbol, results[0].block);
5717
5718 remove_irrelevant_renamings (&results, block);
5719 return results;
5720 }
5721
5722 /* Find symbols in DOMAIN matching NAME, in BLOCK and enclosing scope and
5723 in global scopes, returning (SYM,BLOCK) tuples.
5724
5725 See ada_lookup_symbol_list_worker for further details. */
5726
5727 std::vector<struct block_symbol>
5728 ada_lookup_symbol_list (const char *name, const struct block *block,
5729 domain_enum domain)
5730 {
5731 symbol_name_match_type name_match_type = name_match_type_from_name (name);
5732 lookup_name_info lookup_name (name, name_match_type);
5733
5734 return ada_lookup_symbol_list_worker (lookup_name, block, domain, 1);
5735 }
5736
5737 /* The result is as for ada_lookup_symbol_list with FULL_SEARCH set
5738 to 1, but choosing the first symbol found if there are multiple
5739 choices.
5740
5741 The result is stored in *INFO, which must be non-NULL.
5742 If no match is found, INFO->SYM is set to NULL. */
5743
5744 void
5745 ada_lookup_encoded_symbol (const char *name, const struct block *block,
5746 domain_enum domain,
5747 struct block_symbol *info)
5748 {
5749 /* Since we already have an encoded name, wrap it in '<>' to force a
5750 verbatim match. Otherwise, if the name happens to not look like
5751 an encoded name (because it doesn't include a "__"),
5752 ada_lookup_name_info would re-encode/fold it again, and that
5753 would e.g., incorrectly lowercase object renaming names like
5754 "R28b" -> "r28b". */
5755 std::string verbatim = add_angle_brackets (name);
5756
5757 gdb_assert (info != NULL);
5758 *info = ada_lookup_symbol (verbatim.c_str (), block, domain);
5759 }
5760
5761 /* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing
5762 scope and in global scopes, or NULL if none. NAME is folded and
5763 encoded first. Otherwise, the result is as for ada_lookup_symbol_list,
5764 choosing the first symbol if there are multiple choices. */
5765
5766 struct block_symbol
5767 ada_lookup_symbol (const char *name, const struct block *block0,
5768 domain_enum domain)
5769 {
5770 std::vector<struct block_symbol> candidates
5771 = ada_lookup_symbol_list (name, block0, domain);
5772
5773 if (candidates.empty ())
5774 return {};
5775
5776 block_symbol info = candidates[0];
5777 info.symbol = fixup_symbol_section (info.symbol, NULL);
5778 return info;
5779 }
5780
5781
5782 /* True iff STR is a possible encoded suffix of a normal Ada name
5783 that is to be ignored for matching purposes. Suffixes of parallel
5784 names (e.g., XVE) are not included here. Currently, the possible suffixes
5785 are given by any of the regular expressions:
5786
5787 [.$][0-9]+ [nested subprogram suffix, on platforms such as GNU/Linux]
5788 ___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX]
5789 TKB [subprogram suffix for task bodies]
5790 _E[0-9]+[bs]$ [protected object entry suffixes]
5791 (X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$
5792
5793 Also, any leading "__[0-9]+" sequence is skipped before the suffix
5794 match is performed. This sequence is used to differentiate homonyms,
5795 is an optional part of a valid name suffix. */
5796
5797 static int
5798 is_name_suffix (const char *str)
5799 {
5800 int k;
5801 const char *matching;
5802 const int len = strlen (str);
5803
5804 /* Skip optional leading __[0-9]+. */
5805
5806 if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2]))
5807 {
5808 str += 3;
5809 while (isdigit (str[0]))
5810 str += 1;
5811 }
5812
5813 /* [.$][0-9]+ */
5814
5815 if (str[0] == '.' || str[0] == '$')
5816 {
5817 matching = str + 1;
5818 while (isdigit (matching[0]))
5819 matching += 1;
5820 if (matching[0] == '\0')
5821 return 1;
5822 }
5823
5824 /* ___[0-9]+ */
5825
5826 if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_')
5827 {
5828 matching = str + 3;
5829 while (isdigit (matching[0]))
5830 matching += 1;
5831 if (matching[0] == '\0')
5832 return 1;
5833 }
5834
5835 /* "TKB" suffixes are used for subprograms implementing task bodies. */
5836
5837 if (strcmp (str, "TKB") == 0)
5838 return 1;
5839
5840 #if 0
5841 /* FIXME: brobecker/2005-09-23: Protected Object subprograms end
5842 with a N at the end. Unfortunately, the compiler uses the same
5843 convention for other internal types it creates. So treating
5844 all entity names that end with an "N" as a name suffix causes
5845 some regressions. For instance, consider the case of an enumerated
5846 type. To support the 'Image attribute, it creates an array whose
5847 name ends with N.
5848 Having a single character like this as a suffix carrying some
5849 information is a bit risky. Perhaps we should change the encoding
5850 to be something like "_N" instead. In the meantime, do not do
5851 the following check. */
5852 /* Protected Object Subprograms */
5853 if (len == 1 && str [0] == 'N')
5854 return 1;
5855 #endif
5856
5857 /* _E[0-9]+[bs]$ */
5858 if (len > 3 && str[0] == '_' && str [1] == 'E' && isdigit (str[2]))
5859 {
5860 matching = str + 3;
5861 while (isdigit (matching[0]))
5862 matching += 1;
5863 if ((matching[0] == 'b' || matching[0] == 's')
5864 && matching [1] == '\0')
5865 return 1;
5866 }
5867
5868 /* ??? We should not modify STR directly, as we are doing below. This
5869 is fine in this case, but may become problematic later if we find
5870 that this alternative did not work, and want to try matching
5871 another one from the begining of STR. Since we modified it, we
5872 won't be able to find the begining of the string anymore! */
5873 if (str[0] == 'X')
5874 {
5875 str += 1;
5876 while (str[0] != '_' && str[0] != '\0')
5877 {
5878 if (str[0] != 'n' && str[0] != 'b')
5879 return 0;
5880 str += 1;
5881 }
5882 }
5883
5884 if (str[0] == '\000')
5885 return 1;
5886
5887 if (str[0] == '_')
5888 {
5889 if (str[1] != '_' || str[2] == '\000')
5890 return 0;
5891 if (str[2] == '_')
5892 {
5893 if (strcmp (str + 3, "JM") == 0)
5894 return 1;
5895 /* FIXME: brobecker/2004-09-30: GNAT will soon stop using
5896 the LJM suffix in favor of the JM one. But we will
5897 still accept LJM as a valid suffix for a reasonable
5898 amount of time, just to allow ourselves to debug programs
5899 compiled using an older version of GNAT. */
5900 if (strcmp (str + 3, "LJM") == 0)
5901 return 1;
5902 if (str[3] != 'X')
5903 return 0;
5904 if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B'
5905 || str[4] == 'U' || str[4] == 'P')
5906 return 1;
5907 if (str[4] == 'R' && str[5] != 'T')
5908 return 1;
5909 return 0;
5910 }
5911 if (!isdigit (str[2]))
5912 return 0;
5913 for (k = 3; str[k] != '\0'; k += 1)
5914 if (!isdigit (str[k]) && str[k] != '_')
5915 return 0;
5916 return 1;
5917 }
5918 if (str[0] == '$' && isdigit (str[1]))
5919 {
5920 for (k = 2; str[k] != '\0'; k += 1)
5921 if (!isdigit (str[k]) && str[k] != '_')
5922 return 0;
5923 return 1;
5924 }
5925 return 0;
5926 }
5927
5928 /* Return non-zero if the string starting at NAME and ending before
5929 NAME_END contains no capital letters. */
5930
5931 static int
5932 is_valid_name_for_wild_match (const char *name0)
5933 {
5934 std::string decoded_name = ada_decode (name0);
5935 int i;
5936
5937 /* If the decoded name starts with an angle bracket, it means that
5938 NAME0 does not follow the GNAT encoding format. It should then
5939 not be allowed as a possible wild match. */
5940 if (decoded_name[0] == '<')
5941 return 0;
5942
5943 for (i=0; decoded_name[i] != '\0'; i++)
5944 if (isalpha (decoded_name[i]) && !islower (decoded_name[i]))
5945 return 0;
5946
5947 return 1;
5948 }
5949
5950 /* Advance *NAMEP to next occurrence in the string NAME0 of the TARGET0
5951 character which could start a simple name. Assumes that *NAMEP points
5952 somewhere inside the string beginning at NAME0. */
5953
5954 static int
5955 advance_wild_match (const char **namep, const char *name0, char target0)
5956 {
5957 const char *name = *namep;
5958
5959 while (1)
5960 {
5961 char t0, t1;
5962
5963 t0 = *name;
5964 if (t0 == '_')
5965 {
5966 t1 = name[1];
5967 if ((t1 >= 'a' && t1 <= 'z') || (t1 >= '0' && t1 <= '9'))
5968 {
5969 name += 1;
5970 if (name == name0 + 5 && startswith (name0, "_ada"))
5971 break;
5972 else
5973 name += 1;
5974 }
5975 else if (t1 == '_' && ((name[2] >= 'a' && name[2] <= 'z')
5976 || name[2] == target0))
5977 {
5978 name += 2;
5979 break;
5980 }
5981 else if (t1 == '_' && name[2] == 'B' && name[3] == '_')
5982 {
5983 /* Names like "pkg__B_N__name", where N is a number, are
5984 block-local. We can handle these by simply skipping
5985 the "B_" here. */
5986 name += 4;
5987 }
5988 else
5989 return 0;
5990 }
5991 else if ((t0 >= 'a' && t0 <= 'z') || (t0 >= '0' && t0 <= '9'))
5992 name += 1;
5993 else
5994 return 0;
5995 }
5996
5997 *namep = name;
5998 return 1;
5999 }
6000
6001 /* Return true iff NAME encodes a name of the form prefix.PATN.
6002 Ignores any informational suffixes of NAME (i.e., for which
6003 is_name_suffix is true). Assumes that PATN is a lower-cased Ada
6004 simple name. */
6005
6006 static bool
6007 wild_match (const char *name, const char *patn)
6008 {
6009 const char *p;
6010 const char *name0 = name;
6011
6012 while (1)
6013 {
6014 const char *match = name;
6015
6016 if (*name == *patn)
6017 {
6018 for (name += 1, p = patn + 1; *p != '\0'; name += 1, p += 1)
6019 if (*p != *name)
6020 break;
6021 if (*p == '\0' && is_name_suffix (name))
6022 return match == name0 || is_valid_name_for_wild_match (name0);
6023
6024 if (name[-1] == '_')
6025 name -= 1;
6026 }
6027 if (!advance_wild_match (&name, name0, *patn))
6028 return false;
6029 }
6030 }
6031
6032 /* Add symbols from BLOCK matching LOOKUP_NAME in DOMAIN to RESULT (if
6033 necessary). OBJFILE is the section containing BLOCK. */
6034
6035 static void
6036 ada_add_block_symbols (std::vector<struct block_symbol> &result,
6037 const struct block *block,
6038 const lookup_name_info &lookup_name,
6039 domain_enum domain, struct objfile *objfile)
6040 {
6041 struct block_iterator iter;
6042 /* A matching argument symbol, if any. */
6043 struct symbol *arg_sym;
6044 /* Set true when we find a matching non-argument symbol. */
6045 bool found_sym;
6046 struct symbol *sym;
6047
6048 arg_sym = NULL;
6049 found_sym = false;
6050 for (sym = block_iter_match_first (block, lookup_name, &iter);
6051 sym != NULL;
6052 sym = block_iter_match_next (lookup_name, &iter))
6053 {
6054 if (symbol_matches_domain (sym->language (), SYMBOL_DOMAIN (sym), domain))
6055 {
6056 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6057 {
6058 if (SYMBOL_IS_ARGUMENT (sym))
6059 arg_sym = sym;
6060 else
6061 {
6062 found_sym = true;
6063 add_defn_to_vec (result,
6064 fixup_symbol_section (sym, objfile),
6065 block);
6066 }
6067 }
6068 }
6069 }
6070
6071 /* Handle renamings. */
6072
6073 if (ada_add_block_renamings (result, block, lookup_name, domain))
6074 found_sym = true;
6075
6076 if (!found_sym && arg_sym != NULL)
6077 {
6078 add_defn_to_vec (result,
6079 fixup_symbol_section (arg_sym, objfile),
6080 block);
6081 }
6082
6083 if (!lookup_name.ada ().wild_match_p ())
6084 {
6085 arg_sym = NULL;
6086 found_sym = false;
6087 const std::string &ada_lookup_name = lookup_name.ada ().lookup_name ();
6088 const char *name = ada_lookup_name.c_str ();
6089 size_t name_len = ada_lookup_name.size ();
6090
6091 ALL_BLOCK_SYMBOLS (block, iter, sym)
6092 {
6093 if (symbol_matches_domain (sym->language (),
6094 SYMBOL_DOMAIN (sym), domain))
6095 {
6096 int cmp;
6097
6098 cmp = (int) '_' - (int) sym->linkage_name ()[0];
6099 if (cmp == 0)
6100 {
6101 cmp = !startswith (sym->linkage_name (), "_ada_");
6102 if (cmp == 0)
6103 cmp = strncmp (name, sym->linkage_name () + 5,
6104 name_len);
6105 }
6106
6107 if (cmp == 0
6108 && is_name_suffix (sym->linkage_name () + name_len + 5))
6109 {
6110 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6111 {
6112 if (SYMBOL_IS_ARGUMENT (sym))
6113 arg_sym = sym;
6114 else
6115 {
6116 found_sym = true;
6117 add_defn_to_vec (result,
6118 fixup_symbol_section (sym, objfile),
6119 block);
6120 }
6121 }
6122 }
6123 }
6124 }
6125
6126 /* NOTE: This really shouldn't be needed for _ada_ symbols.
6127 They aren't parameters, right? */
6128 if (!found_sym && arg_sym != NULL)
6129 {
6130 add_defn_to_vec (result,
6131 fixup_symbol_section (arg_sym, objfile),
6132 block);
6133 }
6134 }
6135 }
6136 \f
6137
6138 /* Symbol Completion */
6139
6140 /* See symtab.h. */
6141
6142 bool
6143 ada_lookup_name_info::matches
6144 (const char *sym_name,
6145 symbol_name_match_type match_type,
6146 completion_match_result *comp_match_res) const
6147 {
6148 bool match = false;
6149 const char *text = m_encoded_name.c_str ();
6150 size_t text_len = m_encoded_name.size ();
6151
6152 /* First, test against the fully qualified name of the symbol. */
6153
6154 if (strncmp (sym_name, text, text_len) == 0)
6155 match = true;
6156
6157 std::string decoded_name = ada_decode (sym_name);
6158 if (match && !m_encoded_p)
6159 {
6160 /* One needed check before declaring a positive match is to verify
6161 that iff we are doing a verbatim match, the decoded version
6162 of the symbol name starts with '<'. Otherwise, this symbol name
6163 is not a suitable completion. */
6164
6165 bool has_angle_bracket = (decoded_name[0] == '<');
6166 match = (has_angle_bracket == m_verbatim_p);
6167 }
6168
6169 if (match && !m_verbatim_p)
6170 {
6171 /* When doing non-verbatim match, another check that needs to
6172 be done is to verify that the potentially matching symbol name
6173 does not include capital letters, because the ada-mode would
6174 not be able to understand these symbol names without the
6175 angle bracket notation. */
6176 const char *tmp;
6177
6178 for (tmp = sym_name; *tmp != '\0' && !isupper (*tmp); tmp++);
6179 if (*tmp != '\0')
6180 match = false;
6181 }
6182
6183 /* Second: Try wild matching... */
6184
6185 if (!match && m_wild_match_p)
6186 {
6187 /* Since we are doing wild matching, this means that TEXT
6188 may represent an unqualified symbol name. We therefore must
6189 also compare TEXT against the unqualified name of the symbol. */
6190 sym_name = ada_unqualified_name (decoded_name.c_str ());
6191
6192 if (strncmp (sym_name, text, text_len) == 0)
6193 match = true;
6194 }
6195
6196 /* Finally: If we found a match, prepare the result to return. */
6197
6198 if (!match)
6199 return false;
6200
6201 if (comp_match_res != NULL)
6202 {
6203 std::string &match_str = comp_match_res->match.storage ();
6204
6205 if (!m_encoded_p)
6206 match_str = ada_decode (sym_name);
6207 else
6208 {
6209 if (m_verbatim_p)
6210 match_str = add_angle_brackets (sym_name);
6211 else
6212 match_str = sym_name;
6213
6214 }
6215
6216 comp_match_res->set_match (match_str.c_str ());
6217 }
6218
6219 return true;
6220 }
6221
6222 /* Field Access */
6223
6224 /* Return non-zero if TYPE is a pointer to the GNAT dispatch table used
6225 for tagged types. */
6226
6227 static int
6228 ada_is_dispatch_table_ptr_type (struct type *type)
6229 {
6230 const char *name;
6231
6232 if (type->code () != TYPE_CODE_PTR)
6233 return 0;
6234
6235 name = TYPE_TARGET_TYPE (type)->name ();
6236 if (name == NULL)
6237 return 0;
6238
6239 return (strcmp (name, "ada__tags__dispatch_table") == 0);
6240 }
6241
6242 /* Return non-zero if TYPE is an interface tag. */
6243
6244 static int
6245 ada_is_interface_tag (struct type *type)
6246 {
6247 const char *name = type->name ();
6248
6249 if (name == NULL)
6250 return 0;
6251
6252 return (strcmp (name, "ada__tags__interface_tag") == 0);
6253 }
6254
6255 /* True if field number FIELD_NUM in struct or union type TYPE is supposed
6256 to be invisible to users. */
6257
6258 int
6259 ada_is_ignored_field (struct type *type, int field_num)
6260 {
6261 if (field_num < 0 || field_num > type->num_fields ())
6262 return 1;
6263
6264 /* Check the name of that field. */
6265 {
6266 const char *name = TYPE_FIELD_NAME (type, field_num);
6267
6268 /* Anonymous field names should not be printed.
6269 brobecker/2007-02-20: I don't think this can actually happen
6270 but we don't want to print the value of anonymous fields anyway. */
6271 if (name == NULL)
6272 return 1;
6273
6274 /* Normally, fields whose name start with an underscore ("_")
6275 are fields that have been internally generated by the compiler,
6276 and thus should not be printed. The "_parent" field is special,
6277 however: This is a field internally generated by the compiler
6278 for tagged types, and it contains the components inherited from
6279 the parent type. This field should not be printed as is, but
6280 should not be ignored either. */
6281 if (name[0] == '_' && !startswith (name, "_parent"))
6282 return 1;
6283 }
6284
6285 /* If this is the dispatch table of a tagged type or an interface tag,
6286 then ignore. */
6287 if (ada_is_tagged_type (type, 1)
6288 && (ada_is_dispatch_table_ptr_type (type->field (field_num).type ())
6289 || ada_is_interface_tag (type->field (field_num).type ())))
6290 return 1;
6291
6292 /* Not a special field, so it should not be ignored. */
6293 return 0;
6294 }
6295
6296 /* True iff TYPE has a tag field. If REFOK, then TYPE may also be a
6297 pointer or reference type whose ultimate target has a tag field. */
6298
6299 int
6300 ada_is_tagged_type (struct type *type, int refok)
6301 {
6302 return (ada_lookup_struct_elt_type (type, "_tag", refok, 1) != NULL);
6303 }
6304
6305 /* True iff TYPE represents the type of X'Tag */
6306
6307 int
6308 ada_is_tag_type (struct type *type)
6309 {
6310 type = ada_check_typedef (type);
6311
6312 if (type == NULL || type->code () != TYPE_CODE_PTR)
6313 return 0;
6314 else
6315 {
6316 const char *name = ada_type_name (TYPE_TARGET_TYPE (type));
6317
6318 return (name != NULL
6319 && strcmp (name, "ada__tags__dispatch_table") == 0);
6320 }
6321 }
6322
6323 /* The type of the tag on VAL. */
6324
6325 static struct type *
6326 ada_tag_type (struct value *val)
6327 {
6328 return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0);
6329 }
6330
6331 /* Return 1 if TAG follows the old scheme for Ada tags (used for Ada 95,
6332 retired at Ada 05). */
6333
6334 static int
6335 is_ada95_tag (struct value *tag)
6336 {
6337 return ada_value_struct_elt (tag, "tsd", 1) != NULL;
6338 }
6339
6340 /* The value of the tag on VAL. */
6341
6342 static struct value *
6343 ada_value_tag (struct value *val)
6344 {
6345 return ada_value_struct_elt (val, "_tag", 0);
6346 }
6347
6348 /* The value of the tag on the object of type TYPE whose contents are
6349 saved at VALADDR, if it is non-null, or is at memory address
6350 ADDRESS. */
6351
6352 static struct value *
6353 value_tag_from_contents_and_address (struct type *type,
6354 const gdb_byte *valaddr,
6355 CORE_ADDR address)
6356 {
6357 int tag_byte_offset;
6358 struct type *tag_type;
6359
6360 if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset,
6361 NULL, NULL, NULL))
6362 {
6363 const gdb_byte *valaddr1 = ((valaddr == NULL)
6364 ? NULL
6365 : valaddr + tag_byte_offset);
6366 CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset;
6367
6368 return value_from_contents_and_address (tag_type, valaddr1, address1);
6369 }
6370 return NULL;
6371 }
6372
6373 static struct type *
6374 type_from_tag (struct value *tag)
6375 {
6376 gdb::unique_xmalloc_ptr<char> type_name = ada_tag_name (tag);
6377
6378 if (type_name != NULL)
6379 return ada_find_any_type (ada_encode (type_name.get ()).c_str ());
6380 return NULL;
6381 }
6382
6383 /* Given a value OBJ of a tagged type, return a value of this
6384 type at the base address of the object. The base address, as
6385 defined in Ada.Tags, it is the address of the primary tag of
6386 the object, and therefore where the field values of its full
6387 view can be fetched. */
6388
6389 struct value *
6390 ada_tag_value_at_base_address (struct value *obj)
6391 {
6392 struct value *val;
6393 LONGEST offset_to_top = 0;
6394 struct type *ptr_type, *obj_type;
6395 struct value *tag;
6396 CORE_ADDR base_address;
6397
6398 obj_type = value_type (obj);
6399
6400 /* It is the responsability of the caller to deref pointers. */
6401
6402 if (obj_type->code () == TYPE_CODE_PTR || obj_type->code () == TYPE_CODE_REF)
6403 return obj;
6404
6405 tag = ada_value_tag (obj);
6406 if (!tag)
6407 return obj;
6408
6409 /* Base addresses only appeared with Ada 05 and multiple inheritance. */
6410
6411 if (is_ada95_tag (tag))
6412 return obj;
6413
6414 ptr_type = language_lookup_primitive_type
6415 (language_def (language_ada), target_gdbarch(), "storage_offset");
6416 ptr_type = lookup_pointer_type (ptr_type);
6417 val = value_cast (ptr_type, tag);
6418 if (!val)
6419 return obj;
6420
6421 /* It is perfectly possible that an exception be raised while
6422 trying to determine the base address, just like for the tag;
6423 see ada_tag_name for more details. We do not print the error
6424 message for the same reason. */
6425
6426 try
6427 {
6428 offset_to_top = value_as_long (value_ind (value_ptradd (val, -2)));
6429 }
6430
6431 catch (const gdb_exception_error &e)
6432 {
6433 return obj;
6434 }
6435
6436 /* If offset is null, nothing to do. */
6437
6438 if (offset_to_top == 0)
6439 return obj;
6440
6441 /* -1 is a special case in Ada.Tags; however, what should be done
6442 is not quite clear from the documentation. So do nothing for
6443 now. */
6444
6445 if (offset_to_top == -1)
6446 return obj;
6447
6448 /* OFFSET_TO_TOP used to be a positive value to be subtracted
6449 from the base address. This was however incompatible with
6450 C++ dispatch table: C++ uses a *negative* value to *add*
6451 to the base address. Ada's convention has therefore been
6452 changed in GNAT 19.0w 20171023: since then, C++ and Ada
6453 use the same convention. Here, we support both cases by
6454 checking the sign of OFFSET_TO_TOP. */
6455
6456 if (offset_to_top > 0)
6457 offset_to_top = -offset_to_top;
6458
6459 base_address = value_address (obj) + offset_to_top;
6460 tag = value_tag_from_contents_and_address (obj_type, NULL, base_address);
6461
6462 /* Make sure that we have a proper tag at the new address.
6463 Otherwise, offset_to_top is bogus (which can happen when
6464 the object is not initialized yet). */
6465
6466 if (!tag)
6467 return obj;
6468
6469 obj_type = type_from_tag (tag);
6470
6471 if (!obj_type)
6472 return obj;
6473
6474 return value_from_contents_and_address (obj_type, NULL, base_address);
6475 }
6476
6477 /* Return the "ada__tags__type_specific_data" type. */
6478
6479 static struct type *
6480 ada_get_tsd_type (struct inferior *inf)
6481 {
6482 struct ada_inferior_data *data = get_ada_inferior_data (inf);
6483
6484 if (data->tsd_type == 0)
6485 data->tsd_type = ada_find_any_type ("ada__tags__type_specific_data");
6486 return data->tsd_type;
6487 }
6488
6489 /* Return the TSD (type-specific data) associated to the given TAG.
6490 TAG is assumed to be the tag of a tagged-type entity.
6491
6492 May return NULL if we are unable to get the TSD. */
6493
6494 static struct value *
6495 ada_get_tsd_from_tag (struct value *tag)
6496 {
6497 struct value *val;
6498 struct type *type;
6499
6500 /* First option: The TSD is simply stored as a field of our TAG.
6501 Only older versions of GNAT would use this format, but we have
6502 to test it first, because there are no visible markers for
6503 the current approach except the absence of that field. */
6504
6505 val = ada_value_struct_elt (tag, "tsd", 1);
6506 if (val)
6507 return val;
6508
6509 /* Try the second representation for the dispatch table (in which
6510 there is no explicit 'tsd' field in the referent of the tag pointer,
6511 and instead the tsd pointer is stored just before the dispatch
6512 table. */
6513
6514 type = ada_get_tsd_type (current_inferior());
6515 if (type == NULL)
6516 return NULL;
6517 type = lookup_pointer_type (lookup_pointer_type (type));
6518 val = value_cast (type, tag);
6519 if (val == NULL)
6520 return NULL;
6521 return value_ind (value_ptradd (val, -1));
6522 }
6523
6524 /* Given the TSD of a tag (type-specific data), return a string
6525 containing the name of the associated type.
6526
6527 May return NULL if we are unable to determine the tag name. */
6528
6529 static gdb::unique_xmalloc_ptr<char>
6530 ada_tag_name_from_tsd (struct value *tsd)
6531 {
6532 char *p;
6533 struct value *val;
6534
6535 val = ada_value_struct_elt (tsd, "expanded_name", 1);
6536 if (val == NULL)
6537 return NULL;
6538 gdb::unique_xmalloc_ptr<char> buffer
6539 = target_read_string (value_as_address (val), INT_MAX);
6540 if (buffer == nullptr)
6541 return nullptr;
6542
6543 for (p = buffer.get (); *p != '\0'; ++p)
6544 {
6545 if (isalpha (*p))
6546 *p = tolower (*p);
6547 }
6548
6549 return buffer;
6550 }
6551
6552 /* The type name of the dynamic type denoted by the 'tag value TAG, as
6553 a C string.
6554
6555 Return NULL if the TAG is not an Ada tag, or if we were unable to
6556 determine the name of that tag. */
6557
6558 gdb::unique_xmalloc_ptr<char>
6559 ada_tag_name (struct value *tag)
6560 {
6561 gdb::unique_xmalloc_ptr<char> name;
6562
6563 if (!ada_is_tag_type (value_type (tag)))
6564 return NULL;
6565
6566 /* It is perfectly possible that an exception be raised while trying
6567 to determine the TAG's name, even under normal circumstances:
6568 The associated variable may be uninitialized or corrupted, for
6569 instance. We do not let any exception propagate past this point.
6570 instead we return NULL.
6571
6572 We also do not print the error message either (which often is very
6573 low-level (Eg: "Cannot read memory at 0x[...]"), but instead let
6574 the caller print a more meaningful message if necessary. */
6575 try
6576 {
6577 struct value *tsd = ada_get_tsd_from_tag (tag);
6578
6579 if (tsd != NULL)
6580 name = ada_tag_name_from_tsd (tsd);
6581 }
6582 catch (const gdb_exception_error &e)
6583 {
6584 }
6585
6586 return name;
6587 }
6588
6589 /* The parent type of TYPE, or NULL if none. */
6590
6591 struct type *
6592 ada_parent_type (struct type *type)
6593 {
6594 int i;
6595
6596 type = ada_check_typedef (type);
6597
6598 if (type == NULL || type->code () != TYPE_CODE_STRUCT)
6599 return NULL;
6600
6601 for (i = 0; i < type->num_fields (); i += 1)
6602 if (ada_is_parent_field (type, i))
6603 {
6604 struct type *parent_type = type->field (i).type ();
6605
6606 /* If the _parent field is a pointer, then dereference it. */
6607 if (parent_type->code () == TYPE_CODE_PTR)
6608 parent_type = TYPE_TARGET_TYPE (parent_type);
6609 /* If there is a parallel XVS type, get the actual base type. */
6610 parent_type = ada_get_base_type (parent_type);
6611
6612 return ada_check_typedef (parent_type);
6613 }
6614
6615 return NULL;
6616 }
6617
6618 /* True iff field number FIELD_NUM of structure type TYPE contains the
6619 parent-type (inherited) fields of a derived type. Assumes TYPE is
6620 a structure type with at least FIELD_NUM+1 fields. */
6621
6622 int
6623 ada_is_parent_field (struct type *type, int field_num)
6624 {
6625 const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num);
6626
6627 return (name != NULL
6628 && (startswith (name, "PARENT")
6629 || startswith (name, "_parent")));
6630 }
6631
6632 /* True iff field number FIELD_NUM of structure type TYPE is a
6633 transparent wrapper field (which should be silently traversed when doing
6634 field selection and flattened when printing). Assumes TYPE is a
6635 structure type with at least FIELD_NUM+1 fields. Such fields are always
6636 structures. */
6637
6638 int
6639 ada_is_wrapper_field (struct type *type, int field_num)
6640 {
6641 const char *name = TYPE_FIELD_NAME (type, field_num);
6642
6643 if (name != NULL && strcmp (name, "RETVAL") == 0)
6644 {
6645 /* This happens in functions with "out" or "in out" parameters
6646 which are passed by copy. For such functions, GNAT describes
6647 the function's return type as being a struct where the return
6648 value is in a field called RETVAL, and where the other "out"
6649 or "in out" parameters are fields of that struct. This is not
6650 a wrapper. */
6651 return 0;
6652 }
6653
6654 return (name != NULL
6655 && (startswith (name, "PARENT")
6656 || strcmp (name, "REP") == 0
6657 || startswith (name, "_parent")
6658 || name[0] == 'S' || name[0] == 'R' || name[0] == 'O'));
6659 }
6660
6661 /* True iff field number FIELD_NUM of structure or union type TYPE
6662 is a variant wrapper. Assumes TYPE is a structure type with at least
6663 FIELD_NUM+1 fields. */
6664
6665 int
6666 ada_is_variant_part (struct type *type, int field_num)
6667 {
6668 /* Only Ada types are eligible. */
6669 if (!ADA_TYPE_P (type))
6670 return 0;
6671
6672 struct type *field_type = type->field (field_num).type ();
6673
6674 return (field_type->code () == TYPE_CODE_UNION
6675 || (is_dynamic_field (type, field_num)
6676 && (TYPE_TARGET_TYPE (field_type)->code ()
6677 == TYPE_CODE_UNION)));
6678 }
6679
6680 /* Assuming that VAR_TYPE is a variant wrapper (type of the variant part)
6681 whose discriminants are contained in the record type OUTER_TYPE,
6682 returns the type of the controlling discriminant for the variant.
6683 May return NULL if the type could not be found. */
6684
6685 struct type *
6686 ada_variant_discrim_type (struct type *var_type, struct type *outer_type)
6687 {
6688 const char *name = ada_variant_discrim_name (var_type);
6689
6690 return ada_lookup_struct_elt_type (outer_type, name, 1, 1);
6691 }
6692
6693 /* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a
6694 valid field number within it, returns 1 iff field FIELD_NUM of TYPE
6695 represents a 'when others' clause; otherwise 0. */
6696
6697 static int
6698 ada_is_others_clause (struct type *type, int field_num)
6699 {
6700 const char *name = TYPE_FIELD_NAME (type, field_num);
6701
6702 return (name != NULL && name[0] == 'O');
6703 }
6704
6705 /* Assuming that TYPE0 is the type of the variant part of a record,
6706 returns the name of the discriminant controlling the variant.
6707 The value is valid until the next call to ada_variant_discrim_name. */
6708
6709 const char *
6710 ada_variant_discrim_name (struct type *type0)
6711 {
6712 static std::string result;
6713 struct type *type;
6714 const char *name;
6715 const char *discrim_end;
6716 const char *discrim_start;
6717
6718 if (type0->code () == TYPE_CODE_PTR)
6719 type = TYPE_TARGET_TYPE (type0);
6720 else
6721 type = type0;
6722
6723 name = ada_type_name (type);
6724
6725 if (name == NULL || name[0] == '\000')
6726 return "";
6727
6728 for (discrim_end = name + strlen (name) - 6; discrim_end != name;
6729 discrim_end -= 1)
6730 {
6731 if (startswith (discrim_end, "___XVN"))
6732 break;
6733 }
6734 if (discrim_end == name)
6735 return "";
6736
6737 for (discrim_start = discrim_end; discrim_start != name + 3;
6738 discrim_start -= 1)
6739 {
6740 if (discrim_start == name + 1)
6741 return "";
6742 if ((discrim_start > name + 3
6743 && startswith (discrim_start - 3, "___"))
6744 || discrim_start[-1] == '.')
6745 break;
6746 }
6747
6748 result = std::string (discrim_start, discrim_end - discrim_start);
6749 return result.c_str ();
6750 }
6751
6752 /* Scan STR for a subtype-encoded number, beginning at position K.
6753 Put the position of the character just past the number scanned in
6754 *NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL.
6755 Return 1 if there was a valid number at the given position, and 0
6756 otherwise. A "subtype-encoded" number consists of the absolute value
6757 in decimal, followed by the letter 'm' to indicate a negative number.
6758 Assumes 0m does not occur. */
6759
6760 int
6761 ada_scan_number (const char str[], int k, LONGEST * R, int *new_k)
6762 {
6763 ULONGEST RU;
6764
6765 if (!isdigit (str[k]))
6766 return 0;
6767
6768 /* Do it the hard way so as not to make any assumption about
6769 the relationship of unsigned long (%lu scan format code) and
6770 LONGEST. */
6771 RU = 0;
6772 while (isdigit (str[k]))
6773 {
6774 RU = RU * 10 + (str[k] - '0');
6775 k += 1;
6776 }
6777
6778 if (str[k] == 'm')
6779 {
6780 if (R != NULL)
6781 *R = (-(LONGEST) (RU - 1)) - 1;
6782 k += 1;
6783 }
6784 else if (R != NULL)
6785 *R = (LONGEST) RU;
6786
6787 /* NOTE on the above: Technically, C does not say what the results of
6788 - (LONGEST) RU or (LONGEST) -RU are for RU == largest positive
6789 number representable as a LONGEST (although either would probably work
6790 in most implementations). When RU>0, the locution in the then branch
6791 above is always equivalent to the negative of RU. */
6792
6793 if (new_k != NULL)
6794 *new_k = k;
6795 return 1;
6796 }
6797
6798 /* Assuming that TYPE is a variant part wrapper type (a VARIANTS field),
6799 and FIELD_NUM is a valid field number within it, returns 1 iff VAL is
6800 in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */
6801
6802 static int
6803 ada_in_variant (LONGEST val, struct type *type, int field_num)
6804 {
6805 const char *name = TYPE_FIELD_NAME (type, field_num);
6806 int p;
6807
6808 p = 0;
6809 while (1)
6810 {
6811 switch (name[p])
6812 {
6813 case '\0':
6814 return 0;
6815 case 'S':
6816 {
6817 LONGEST W;
6818
6819 if (!ada_scan_number (name, p + 1, &W, &p))
6820 return 0;
6821 if (val == W)
6822 return 1;
6823 break;
6824 }
6825 case 'R':
6826 {
6827 LONGEST L, U;
6828
6829 if (!ada_scan_number (name, p + 1, &L, &p)
6830 || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p))
6831 return 0;
6832 if (val >= L && val <= U)
6833 return 1;
6834 break;
6835 }
6836 case 'O':
6837 return 1;
6838 default:
6839 return 0;
6840 }
6841 }
6842 }
6843
6844 /* FIXME: Lots of redundancy below. Try to consolidate. */
6845
6846 /* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type
6847 ARG_TYPE, extract and return the value of one of its (non-static)
6848 fields. FIELDNO says which field. Differs from value_primitive_field
6849 only in that it can handle packed values of arbitrary type. */
6850
6851 struct value *
6852 ada_value_primitive_field (struct value *arg1, int offset, int fieldno,
6853 struct type *arg_type)
6854 {
6855 struct type *type;
6856
6857 arg_type = ada_check_typedef (arg_type);
6858 type = arg_type->field (fieldno).type ();
6859
6860 /* Handle packed fields. It might be that the field is not packed
6861 relative to its containing structure, but the structure itself is
6862 packed; in this case we must take the bit-field path. */
6863 if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0 || value_bitpos (arg1) != 0)
6864 {
6865 int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno);
6866 int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno);
6867
6868 return ada_value_primitive_packed_val (arg1, value_contents (arg1),
6869 offset + bit_pos / 8,
6870 bit_pos % 8, bit_size, type);
6871 }
6872 else
6873 return value_primitive_field (arg1, offset, fieldno, arg_type);
6874 }
6875
6876 /* Find field with name NAME in object of type TYPE. If found,
6877 set the following for each argument that is non-null:
6878 - *FIELD_TYPE_P to the field's type;
6879 - *BYTE_OFFSET_P to OFFSET + the byte offset of the field within
6880 an object of that type;
6881 - *BIT_OFFSET_P to the bit offset modulo byte size of the field;
6882 - *BIT_SIZE_P to its size in bits if the field is packed, and
6883 0 otherwise;
6884 If INDEX_P is non-null, increment *INDEX_P by the number of source-visible
6885 fields up to but not including the desired field, or by the total
6886 number of fields if not found. A NULL value of NAME never
6887 matches; the function just counts visible fields in this case.
6888
6889 Notice that we need to handle when a tagged record hierarchy
6890 has some components with the same name, like in this scenario:
6891
6892 type Top_T is tagged record
6893 N : Integer := 1;
6894 U : Integer := 974;
6895 A : Integer := 48;
6896 end record;
6897
6898 type Middle_T is new Top.Top_T with record
6899 N : Character := 'a';
6900 C : Integer := 3;
6901 end record;
6902
6903 type Bottom_T is new Middle.Middle_T with record
6904 N : Float := 4.0;
6905 C : Character := '5';
6906 X : Integer := 6;
6907 A : Character := 'J';
6908 end record;
6909
6910 Let's say we now have a variable declared and initialized as follow:
6911
6912 TC : Top_A := new Bottom_T;
6913
6914 And then we use this variable to call this function
6915
6916 procedure Assign (Obj: in out Top_T; TV : Integer);
6917
6918 as follow:
6919
6920 Assign (Top_T (B), 12);
6921
6922 Now, we're in the debugger, and we're inside that procedure
6923 then and we want to print the value of obj.c:
6924
6925 Usually, the tagged record or one of the parent type owns the
6926 component to print and there's no issue but in this particular
6927 case, what does it mean to ask for Obj.C? Since the actual
6928 type for object is type Bottom_T, it could mean two things: type
6929 component C from the Middle_T view, but also component C from
6930 Bottom_T. So in that "undefined" case, when the component is
6931 not found in the non-resolved type (which includes all the
6932 components of the parent type), then resolve it and see if we
6933 get better luck once expanded.
6934
6935 In the case of homonyms in the derived tagged type, we don't
6936 guaranty anything, and pick the one that's easiest for us
6937 to program.
6938
6939 Returns 1 if found, 0 otherwise. */
6940
6941 static int
6942 find_struct_field (const char *name, struct type *type, int offset,
6943 struct type **field_type_p,
6944 int *byte_offset_p, int *bit_offset_p, int *bit_size_p,
6945 int *index_p)
6946 {
6947 int i;
6948 int parent_offset = -1;
6949
6950 type = ada_check_typedef (type);
6951
6952 if (field_type_p != NULL)
6953 *field_type_p = NULL;
6954 if (byte_offset_p != NULL)
6955 *byte_offset_p = 0;
6956 if (bit_offset_p != NULL)
6957 *bit_offset_p = 0;
6958 if (bit_size_p != NULL)
6959 *bit_size_p = 0;
6960
6961 for (i = 0; i < type->num_fields (); i += 1)
6962 {
6963 int bit_pos = TYPE_FIELD_BITPOS (type, i);
6964 int fld_offset = offset + bit_pos / 8;
6965 const char *t_field_name = TYPE_FIELD_NAME (type, i);
6966
6967 if (t_field_name == NULL)
6968 continue;
6969
6970 else if (ada_is_parent_field (type, i))
6971 {
6972 /* This is a field pointing us to the parent type of a tagged
6973 type. As hinted in this function's documentation, we give
6974 preference to fields in the current record first, so what
6975 we do here is just record the index of this field before
6976 we skip it. If it turns out we couldn't find our field
6977 in the current record, then we'll get back to it and search
6978 inside it whether the field might exist in the parent. */
6979
6980 parent_offset = i;
6981 continue;
6982 }
6983
6984 else if (name != NULL && field_name_match (t_field_name, name))
6985 {
6986 int bit_size = TYPE_FIELD_BITSIZE (type, i);
6987
6988 if (field_type_p != NULL)
6989 *field_type_p = type->field (i).type ();
6990 if (byte_offset_p != NULL)
6991 *byte_offset_p = fld_offset;
6992 if (bit_offset_p != NULL)
6993 *bit_offset_p = bit_pos % 8;
6994 if (bit_size_p != NULL)
6995 *bit_size_p = bit_size;
6996 return 1;
6997 }
6998 else if (ada_is_wrapper_field (type, i))
6999 {
7000 if (find_struct_field (name, type->field (i).type (), fld_offset,
7001 field_type_p, byte_offset_p, bit_offset_p,
7002 bit_size_p, index_p))
7003 return 1;
7004 }
7005 else if (ada_is_variant_part (type, i))
7006 {
7007 /* PNH: Wait. Do we ever execute this section, or is ARG always of
7008 fixed type?? */
7009 int j;
7010 struct type *field_type
7011 = ada_check_typedef (type->field (i).type ());
7012
7013 for (j = 0; j < field_type->num_fields (); j += 1)
7014 {
7015 if (find_struct_field (name, field_type->field (j).type (),
7016 fld_offset
7017 + TYPE_FIELD_BITPOS (field_type, j) / 8,
7018 field_type_p, byte_offset_p,
7019 bit_offset_p, bit_size_p, index_p))
7020 return 1;
7021 }
7022 }
7023 else if (index_p != NULL)
7024 *index_p += 1;
7025 }
7026
7027 /* Field not found so far. If this is a tagged type which
7028 has a parent, try finding that field in the parent now. */
7029
7030 if (parent_offset != -1)
7031 {
7032 int bit_pos = TYPE_FIELD_BITPOS (type, parent_offset);
7033 int fld_offset = offset + bit_pos / 8;
7034
7035 if (find_struct_field (name, type->field (parent_offset).type (),
7036 fld_offset, field_type_p, byte_offset_p,
7037 bit_offset_p, bit_size_p, index_p))
7038 return 1;
7039 }
7040
7041 return 0;
7042 }
7043
7044 /* Number of user-visible fields in record type TYPE. */
7045
7046 static int
7047 num_visible_fields (struct type *type)
7048 {
7049 int n;
7050
7051 n = 0;
7052 find_struct_field (NULL, type, 0, NULL, NULL, NULL, NULL, &n);
7053 return n;
7054 }
7055
7056 /* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes,
7057 and search in it assuming it has (class) type TYPE.
7058 If found, return value, else return NULL.
7059
7060 Searches recursively through wrapper fields (e.g., '_parent').
7061
7062 In the case of homonyms in the tagged types, please refer to the
7063 long explanation in find_struct_field's function documentation. */
7064
7065 static struct value *
7066 ada_search_struct_field (const char *name, struct value *arg, int offset,
7067 struct type *type)
7068 {
7069 int i;
7070 int parent_offset = -1;
7071
7072 type = ada_check_typedef (type);
7073 for (i = 0; i < type->num_fields (); i += 1)
7074 {
7075 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7076
7077 if (t_field_name == NULL)
7078 continue;
7079
7080 else if (ada_is_parent_field (type, i))
7081 {
7082 /* This is a field pointing us to the parent type of a tagged
7083 type. As hinted in this function's documentation, we give
7084 preference to fields in the current record first, so what
7085 we do here is just record the index of this field before
7086 we skip it. If it turns out we couldn't find our field
7087 in the current record, then we'll get back to it and search
7088 inside it whether the field might exist in the parent. */
7089
7090 parent_offset = i;
7091 continue;
7092 }
7093
7094 else if (field_name_match (t_field_name, name))
7095 return ada_value_primitive_field (arg, offset, i, type);
7096
7097 else if (ada_is_wrapper_field (type, i))
7098 {
7099 struct value *v = /* Do not let indent join lines here. */
7100 ada_search_struct_field (name, arg,
7101 offset + TYPE_FIELD_BITPOS (type, i) / 8,
7102 type->field (i).type ());
7103
7104 if (v != NULL)
7105 return v;
7106 }
7107
7108 else if (ada_is_variant_part (type, i))
7109 {
7110 /* PNH: Do we ever get here? See find_struct_field. */
7111 int j;
7112 struct type *field_type = ada_check_typedef (type->field (i).type ());
7113 int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8;
7114
7115 for (j = 0; j < field_type->num_fields (); j += 1)
7116 {
7117 struct value *v = ada_search_struct_field /* Force line
7118 break. */
7119 (name, arg,
7120 var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8,
7121 field_type->field (j).type ());
7122
7123 if (v != NULL)
7124 return v;
7125 }
7126 }
7127 }
7128
7129 /* Field not found so far. If this is a tagged type which
7130 has a parent, try finding that field in the parent now. */
7131
7132 if (parent_offset != -1)
7133 {
7134 struct value *v = ada_search_struct_field (
7135 name, arg, offset + TYPE_FIELD_BITPOS (type, parent_offset) / 8,
7136 type->field (parent_offset).type ());
7137
7138 if (v != NULL)
7139 return v;
7140 }
7141
7142 return NULL;
7143 }
7144
7145 static struct value *ada_index_struct_field_1 (int *, struct value *,
7146 int, struct type *);
7147
7148
7149 /* Return field #INDEX in ARG, where the index is that returned by
7150 * find_struct_field through its INDEX_P argument. Adjust the address
7151 * of ARG by OFFSET bytes, and search in it assuming it has (class) type TYPE.
7152 * If found, return value, else return NULL. */
7153
7154 static struct value *
7155 ada_index_struct_field (int index, struct value *arg, int offset,
7156 struct type *type)
7157 {
7158 return ada_index_struct_field_1 (&index, arg, offset, type);
7159 }
7160
7161
7162 /* Auxiliary function for ada_index_struct_field. Like
7163 * ada_index_struct_field, but takes index from *INDEX_P and modifies
7164 * *INDEX_P. */
7165
7166 static struct value *
7167 ada_index_struct_field_1 (int *index_p, struct value *arg, int offset,
7168 struct type *type)
7169 {
7170 int i;
7171 type = ada_check_typedef (type);
7172
7173 for (i = 0; i < type->num_fields (); i += 1)
7174 {
7175 if (TYPE_FIELD_NAME (type, i) == NULL)
7176 continue;
7177 else if (ada_is_wrapper_field (type, i))
7178 {
7179 struct value *v = /* Do not let indent join lines here. */
7180 ada_index_struct_field_1 (index_p, arg,
7181 offset + TYPE_FIELD_BITPOS (type, i) / 8,
7182 type->field (i).type ());
7183
7184 if (v != NULL)
7185 return v;
7186 }
7187
7188 else if (ada_is_variant_part (type, i))
7189 {
7190 /* PNH: Do we ever get here? See ada_search_struct_field,
7191 find_struct_field. */
7192 error (_("Cannot assign this kind of variant record"));
7193 }
7194 else if (*index_p == 0)
7195 return ada_value_primitive_field (arg, offset, i, type);
7196 else
7197 *index_p -= 1;
7198 }
7199 return NULL;
7200 }
7201
7202 /* Return a string representation of type TYPE. */
7203
7204 static std::string
7205 type_as_string (struct type *type)
7206 {
7207 string_file tmp_stream;
7208
7209 type_print (type, "", &tmp_stream, -1);
7210
7211 return std::move (tmp_stream.string ());
7212 }
7213
7214 /* Given a type TYPE, look up the type of the component of type named NAME.
7215 If DISPP is non-null, add its byte displacement from the beginning of a
7216 structure (pointed to by a value) of type TYPE to *DISPP (does not
7217 work for packed fields).
7218
7219 Matches any field whose name has NAME as a prefix, possibly
7220 followed by "___".
7221
7222 TYPE can be either a struct or union. If REFOK, TYPE may also
7223 be a (pointer or reference)+ to a struct or union, and the
7224 ultimate target type will be searched.
7225
7226 Looks recursively into variant clauses and parent types.
7227
7228 In the case of homonyms in the tagged types, please refer to the
7229 long explanation in find_struct_field's function documentation.
7230
7231 If NOERR is nonzero, return NULL if NAME is not suitably defined or
7232 TYPE is not a type of the right kind. */
7233
7234 static struct type *
7235 ada_lookup_struct_elt_type (struct type *type, const char *name, int refok,
7236 int noerr)
7237 {
7238 int i;
7239 int parent_offset = -1;
7240
7241 if (name == NULL)
7242 goto BadName;
7243
7244 if (refok && type != NULL)
7245 while (1)
7246 {
7247 type = ada_check_typedef (type);
7248 if (type->code () != TYPE_CODE_PTR && type->code () != TYPE_CODE_REF)
7249 break;
7250 type = TYPE_TARGET_TYPE (type);
7251 }
7252
7253 if (type == NULL
7254 || (type->code () != TYPE_CODE_STRUCT
7255 && type->code () != TYPE_CODE_UNION))
7256 {
7257 if (noerr)
7258 return NULL;
7259
7260 error (_("Type %s is not a structure or union type"),
7261 type != NULL ? type_as_string (type).c_str () : _("(null)"));
7262 }
7263
7264 type = to_static_fixed_type (type);
7265
7266 for (i = 0; i < type->num_fields (); i += 1)
7267 {
7268 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7269 struct type *t;
7270
7271 if (t_field_name == NULL)
7272 continue;
7273
7274 else if (ada_is_parent_field (type, i))
7275 {
7276 /* This is a field pointing us to the parent type of a tagged
7277 type. As hinted in this function's documentation, we give
7278 preference to fields in the current record first, so what
7279 we do here is just record the index of this field before
7280 we skip it. If it turns out we couldn't find our field
7281 in the current record, then we'll get back to it and search
7282 inside it whether the field might exist in the parent. */
7283
7284 parent_offset = i;
7285 continue;
7286 }
7287
7288 else if (field_name_match (t_field_name, name))
7289 return type->field (i).type ();
7290
7291 else if (ada_is_wrapper_field (type, i))
7292 {
7293 t = ada_lookup_struct_elt_type (type->field (i).type (), name,
7294 0, 1);
7295 if (t != NULL)
7296 return t;
7297 }
7298
7299 else if (ada_is_variant_part (type, i))
7300 {
7301 int j;
7302 struct type *field_type = ada_check_typedef (type->field (i).type ());
7303
7304 for (j = field_type->num_fields () - 1; j >= 0; j -= 1)
7305 {
7306 /* FIXME pnh 2008/01/26: We check for a field that is
7307 NOT wrapped in a struct, since the compiler sometimes
7308 generates these for unchecked variant types. Revisit
7309 if the compiler changes this practice. */
7310 const char *v_field_name = TYPE_FIELD_NAME (field_type, j);
7311
7312 if (v_field_name != NULL
7313 && field_name_match (v_field_name, name))
7314 t = field_type->field (j).type ();
7315 else
7316 t = ada_lookup_struct_elt_type (field_type->field (j).type (),
7317 name, 0, 1);
7318
7319 if (t != NULL)
7320 return t;
7321 }
7322 }
7323
7324 }
7325
7326 /* Field not found so far. If this is a tagged type which
7327 has a parent, try finding that field in the parent now. */
7328
7329 if (parent_offset != -1)
7330 {
7331 struct type *t;
7332
7333 t = ada_lookup_struct_elt_type (type->field (parent_offset).type (),
7334 name, 0, 1);
7335 if (t != NULL)
7336 return t;
7337 }
7338
7339 BadName:
7340 if (!noerr)
7341 {
7342 const char *name_str = name != NULL ? name : _("<null>");
7343
7344 error (_("Type %s has no component named %s"),
7345 type_as_string (type).c_str (), name_str);
7346 }
7347
7348 return NULL;
7349 }
7350
7351 /* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7352 within a value of type OUTER_TYPE, return true iff VAR_TYPE
7353 represents an unchecked union (that is, the variant part of a
7354 record that is named in an Unchecked_Union pragma). */
7355
7356 static int
7357 is_unchecked_variant (struct type *var_type, struct type *outer_type)
7358 {
7359 const char *discrim_name = ada_variant_discrim_name (var_type);
7360
7361 return (ada_lookup_struct_elt_type (outer_type, discrim_name, 0, 1) == NULL);
7362 }
7363
7364
7365 /* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7366 within OUTER, determine which variant clause (field number in VAR_TYPE,
7367 numbering from 0) is applicable. Returns -1 if none are. */
7368
7369 int
7370 ada_which_variant_applies (struct type *var_type, struct value *outer)
7371 {
7372 int others_clause;
7373 int i;
7374 const char *discrim_name = ada_variant_discrim_name (var_type);
7375 struct value *discrim;
7376 LONGEST discrim_val;
7377
7378 /* Using plain value_from_contents_and_address here causes problems
7379 because we will end up trying to resolve a type that is currently
7380 being constructed. */
7381 discrim = ada_value_struct_elt (outer, discrim_name, 1);
7382 if (discrim == NULL)
7383 return -1;
7384 discrim_val = value_as_long (discrim);
7385
7386 others_clause = -1;
7387 for (i = 0; i < var_type->num_fields (); i += 1)
7388 {
7389 if (ada_is_others_clause (var_type, i))
7390 others_clause = i;
7391 else if (ada_in_variant (discrim_val, var_type, i))
7392 return i;
7393 }
7394
7395 return others_clause;
7396 }
7397 \f
7398
7399
7400 /* Dynamic-Sized Records */
7401
7402 /* Strategy: The type ostensibly attached to a value with dynamic size
7403 (i.e., a size that is not statically recorded in the debugging
7404 data) does not accurately reflect the size or layout of the value.
7405 Our strategy is to convert these values to values with accurate,
7406 conventional types that are constructed on the fly. */
7407
7408 /* There is a subtle and tricky problem here. In general, we cannot
7409 determine the size of dynamic records without its data. However,
7410 the 'struct value' data structure, which GDB uses to represent
7411 quantities in the inferior process (the target), requires the size
7412 of the type at the time of its allocation in order to reserve space
7413 for GDB's internal copy of the data. That's why the
7414 'to_fixed_xxx_type' routines take (target) addresses as parameters,
7415 rather than struct value*s.
7416
7417 However, GDB's internal history variables ($1, $2, etc.) are
7418 struct value*s containing internal copies of the data that are not, in
7419 general, the same as the data at their corresponding addresses in
7420 the target. Fortunately, the types we give to these values are all
7421 conventional, fixed-size types (as per the strategy described
7422 above), so that we don't usually have to perform the
7423 'to_fixed_xxx_type' conversions to look at their values.
7424 Unfortunately, there is one exception: if one of the internal
7425 history variables is an array whose elements are unconstrained
7426 records, then we will need to create distinct fixed types for each
7427 element selected. */
7428
7429 /* The upshot of all of this is that many routines take a (type, host
7430 address, target address) triple as arguments to represent a value.
7431 The host address, if non-null, is supposed to contain an internal
7432 copy of the relevant data; otherwise, the program is to consult the
7433 target at the target address. */
7434
7435 /* Assuming that VAL0 represents a pointer value, the result of
7436 dereferencing it. Differs from value_ind in its treatment of
7437 dynamic-sized types. */
7438
7439 struct value *
7440 ada_value_ind (struct value *val0)
7441 {
7442 struct value *val = value_ind (val0);
7443
7444 if (ada_is_tagged_type (value_type (val), 0))
7445 val = ada_tag_value_at_base_address (val);
7446
7447 return ada_to_fixed_value (val);
7448 }
7449
7450 /* The value resulting from dereferencing any "reference to"
7451 qualifiers on VAL0. */
7452
7453 static struct value *
7454 ada_coerce_ref (struct value *val0)
7455 {
7456 if (value_type (val0)->code () == TYPE_CODE_REF)
7457 {
7458 struct value *val = val0;
7459
7460 val = coerce_ref (val);
7461
7462 if (ada_is_tagged_type (value_type (val), 0))
7463 val = ada_tag_value_at_base_address (val);
7464
7465 return ada_to_fixed_value (val);
7466 }
7467 else
7468 return val0;
7469 }
7470
7471 /* Return the bit alignment required for field #F of template type TYPE. */
7472
7473 static unsigned int
7474 field_alignment (struct type *type, int f)
7475 {
7476 const char *name = TYPE_FIELD_NAME (type, f);
7477 int len;
7478 int align_offset;
7479
7480 /* The field name should never be null, unless the debugging information
7481 is somehow malformed. In this case, we assume the field does not
7482 require any alignment. */
7483 if (name == NULL)
7484 return 1;
7485
7486 len = strlen (name);
7487
7488 if (!isdigit (name[len - 1]))
7489 return 1;
7490
7491 if (isdigit (name[len - 2]))
7492 align_offset = len - 2;
7493 else
7494 align_offset = len - 1;
7495
7496 if (align_offset < 7 || !startswith (name + align_offset - 6, "___XV"))
7497 return TARGET_CHAR_BIT;
7498
7499 return atoi (name + align_offset) * TARGET_CHAR_BIT;
7500 }
7501
7502 /* Find a typedef or tag symbol named NAME. Ignores ambiguity. */
7503
7504 static struct symbol *
7505 ada_find_any_type_symbol (const char *name)
7506 {
7507 struct symbol *sym;
7508
7509 sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN);
7510 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
7511 return sym;
7512
7513 sym = standard_lookup (name, NULL, STRUCT_DOMAIN);
7514 return sym;
7515 }
7516
7517 /* Find a type named NAME. Ignores ambiguity. This routine will look
7518 solely for types defined by debug info, it will not search the GDB
7519 primitive types. */
7520
7521 static struct type *
7522 ada_find_any_type (const char *name)
7523 {
7524 struct symbol *sym = ada_find_any_type_symbol (name);
7525
7526 if (sym != NULL)
7527 return SYMBOL_TYPE (sym);
7528
7529 return NULL;
7530 }
7531
7532 /* Given NAME_SYM and an associated BLOCK, find a "renaming" symbol
7533 associated with NAME_SYM's name. NAME_SYM may itself be a renaming
7534 symbol, in which case it is returned. Otherwise, this looks for
7535 symbols whose name is that of NAME_SYM suffixed with "___XR".
7536 Return symbol if found, and NULL otherwise. */
7537
7538 static bool
7539 ada_is_renaming_symbol (struct symbol *name_sym)
7540 {
7541 const char *name = name_sym->linkage_name ();
7542 return strstr (name, "___XR") != NULL;
7543 }
7544
7545 /* Because of GNAT encoding conventions, several GDB symbols may match a
7546 given type name. If the type denoted by TYPE0 is to be preferred to
7547 that of TYPE1 for purposes of type printing, return non-zero;
7548 otherwise return 0. */
7549
7550 int
7551 ada_prefer_type (struct type *type0, struct type *type1)
7552 {
7553 if (type1 == NULL)
7554 return 1;
7555 else if (type0 == NULL)
7556 return 0;
7557 else if (type1->code () == TYPE_CODE_VOID)
7558 return 1;
7559 else if (type0->code () == TYPE_CODE_VOID)
7560 return 0;
7561 else if (type1->name () == NULL && type0->name () != NULL)
7562 return 1;
7563 else if (ada_is_constrained_packed_array_type (type0))
7564 return 1;
7565 else if (ada_is_array_descriptor_type (type0)
7566 && !ada_is_array_descriptor_type (type1))
7567 return 1;
7568 else
7569 {
7570 const char *type0_name = type0->name ();
7571 const char *type1_name = type1->name ();
7572
7573 if (type0_name != NULL && strstr (type0_name, "___XR") != NULL
7574 && (type1_name == NULL || strstr (type1_name, "___XR") == NULL))
7575 return 1;
7576 }
7577 return 0;
7578 }
7579
7580 /* The name of TYPE, which is its TYPE_NAME. Null if TYPE is
7581 null. */
7582
7583 const char *
7584 ada_type_name (struct type *type)
7585 {
7586 if (type == NULL)
7587 return NULL;
7588 return type->name ();
7589 }
7590
7591 /* Search the list of "descriptive" types associated to TYPE for a type
7592 whose name is NAME. */
7593
7594 static struct type *
7595 find_parallel_type_by_descriptive_type (struct type *type, const char *name)
7596 {
7597 struct type *result, *tmp;
7598
7599 if (ada_ignore_descriptive_types_p)
7600 return NULL;
7601
7602 /* If there no descriptive-type info, then there is no parallel type
7603 to be found. */
7604 if (!HAVE_GNAT_AUX_INFO (type))
7605 return NULL;
7606
7607 result = TYPE_DESCRIPTIVE_TYPE (type);
7608 while (result != NULL)
7609 {
7610 const char *result_name = ada_type_name (result);
7611
7612 if (result_name == NULL)
7613 {
7614 warning (_("unexpected null name on descriptive type"));
7615 return NULL;
7616 }
7617
7618 /* If the names match, stop. */
7619 if (strcmp (result_name, name) == 0)
7620 break;
7621
7622 /* Otherwise, look at the next item on the list, if any. */
7623 if (HAVE_GNAT_AUX_INFO (result))
7624 tmp = TYPE_DESCRIPTIVE_TYPE (result);
7625 else
7626 tmp = NULL;
7627
7628 /* If not found either, try after having resolved the typedef. */
7629 if (tmp != NULL)
7630 result = tmp;
7631 else
7632 {
7633 result = check_typedef (result);
7634 if (HAVE_GNAT_AUX_INFO (result))
7635 result = TYPE_DESCRIPTIVE_TYPE (result);
7636 else
7637 result = NULL;
7638 }
7639 }
7640
7641 /* If we didn't find a match, see whether this is a packed array. With
7642 older compilers, the descriptive type information is either absent or
7643 irrelevant when it comes to packed arrays so the above lookup fails.
7644 Fall back to using a parallel lookup by name in this case. */
7645 if (result == NULL && ada_is_constrained_packed_array_type (type))
7646 return ada_find_any_type (name);
7647
7648 return result;
7649 }
7650
7651 /* Find a parallel type to TYPE with the specified NAME, using the
7652 descriptive type taken from the debugging information, if available,
7653 and otherwise using the (slower) name-based method. */
7654
7655 static struct type *
7656 ada_find_parallel_type_with_name (struct type *type, const char *name)
7657 {
7658 struct type *result = NULL;
7659
7660 if (HAVE_GNAT_AUX_INFO (type))
7661 result = find_parallel_type_by_descriptive_type (type, name);
7662 else
7663 result = ada_find_any_type (name);
7664
7665 return result;
7666 }
7667
7668 /* Same as above, but specify the name of the parallel type by appending
7669 SUFFIX to the name of TYPE. */
7670
7671 struct type *
7672 ada_find_parallel_type (struct type *type, const char *suffix)
7673 {
7674 char *name;
7675 const char *type_name = ada_type_name (type);
7676 int len;
7677
7678 if (type_name == NULL)
7679 return NULL;
7680
7681 len = strlen (type_name);
7682
7683 name = (char *) alloca (len + strlen (suffix) + 1);
7684
7685 strcpy (name, type_name);
7686 strcpy (name + len, suffix);
7687
7688 return ada_find_parallel_type_with_name (type, name);
7689 }
7690
7691 /* If TYPE is a variable-size record type, return the corresponding template
7692 type describing its fields. Otherwise, return NULL. */
7693
7694 static struct type *
7695 dynamic_template_type (struct type *type)
7696 {
7697 type = ada_check_typedef (type);
7698
7699 if (type == NULL || type->code () != TYPE_CODE_STRUCT
7700 || ada_type_name (type) == NULL)
7701 return NULL;
7702 else
7703 {
7704 int len = strlen (ada_type_name (type));
7705
7706 if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0)
7707 return type;
7708 else
7709 return ada_find_parallel_type (type, "___XVE");
7710 }
7711 }
7712
7713 /* Assuming that TEMPL_TYPE is a union or struct type, returns
7714 non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */
7715
7716 static int
7717 is_dynamic_field (struct type *templ_type, int field_num)
7718 {
7719 const char *name = TYPE_FIELD_NAME (templ_type, field_num);
7720
7721 return name != NULL
7722 && templ_type->field (field_num).type ()->code () == TYPE_CODE_PTR
7723 && strstr (name, "___XVL") != NULL;
7724 }
7725
7726 /* The index of the variant field of TYPE, or -1 if TYPE does not
7727 represent a variant record type. */
7728
7729 static int
7730 variant_field_index (struct type *type)
7731 {
7732 int f;
7733
7734 if (type == NULL || type->code () != TYPE_CODE_STRUCT)
7735 return -1;
7736
7737 for (f = 0; f < type->num_fields (); f += 1)
7738 {
7739 if (ada_is_variant_part (type, f))
7740 return f;
7741 }
7742 return -1;
7743 }
7744
7745 /* A record type with no fields. */
7746
7747 static struct type *
7748 empty_record (struct type *templ)
7749 {
7750 struct type *type = alloc_type_copy (templ);
7751
7752 type->set_code (TYPE_CODE_STRUCT);
7753 INIT_NONE_SPECIFIC (type);
7754 type->set_name ("<empty>");
7755 TYPE_LENGTH (type) = 0;
7756 return type;
7757 }
7758
7759 /* An ordinary record type (with fixed-length fields) that describes
7760 the value of type TYPE at VALADDR or ADDRESS (see comments at
7761 the beginning of this section) VAL according to GNAT conventions.
7762 DVAL0 should describe the (portion of a) record that contains any
7763 necessary discriminants. It should be NULL if value_type (VAL) is
7764 an outer-level type (i.e., as opposed to a branch of a variant.) A
7765 variant field (unless unchecked) is replaced by a particular branch
7766 of the variant.
7767
7768 If not KEEP_DYNAMIC_FIELDS, then all fields whose position or
7769 length are not statically known are discarded. As a consequence,
7770 VALADDR, ADDRESS and DVAL0 are ignored.
7771
7772 NOTE: Limitations: For now, we assume that dynamic fields and
7773 variants occupy whole numbers of bytes. However, they need not be
7774 byte-aligned. */
7775
7776 struct type *
7777 ada_template_to_fixed_record_type_1 (struct type *type,
7778 const gdb_byte *valaddr,
7779 CORE_ADDR address, struct value *dval0,
7780 int keep_dynamic_fields)
7781 {
7782 struct value *mark = value_mark ();
7783 struct value *dval;
7784 struct type *rtype;
7785 int nfields, bit_len;
7786 int variant_field;
7787 long off;
7788 int fld_bit_len;
7789 int f;
7790
7791 /* Compute the number of fields in this record type that are going
7792 to be processed: unless keep_dynamic_fields, this includes only
7793 fields whose position and length are static will be processed. */
7794 if (keep_dynamic_fields)
7795 nfields = type->num_fields ();
7796 else
7797 {
7798 nfields = 0;
7799 while (nfields < type->num_fields ()
7800 && !ada_is_variant_part (type, nfields)
7801 && !is_dynamic_field (type, nfields))
7802 nfields++;
7803 }
7804
7805 rtype = alloc_type_copy (type);
7806 rtype->set_code (TYPE_CODE_STRUCT);
7807 INIT_NONE_SPECIFIC (rtype);
7808 rtype->set_num_fields (nfields);
7809 rtype->set_fields
7810 ((struct field *) TYPE_ZALLOC (rtype, nfields * sizeof (struct field)));
7811 rtype->set_name (ada_type_name (type));
7812 rtype->set_is_fixed_instance (true);
7813
7814 off = 0;
7815 bit_len = 0;
7816 variant_field = -1;
7817
7818 for (f = 0; f < nfields; f += 1)
7819 {
7820 off = align_up (off, field_alignment (type, f))
7821 + TYPE_FIELD_BITPOS (type, f);
7822 SET_FIELD_BITPOS (rtype->field (f), off);
7823 TYPE_FIELD_BITSIZE (rtype, f) = 0;
7824
7825 if (ada_is_variant_part (type, f))
7826 {
7827 variant_field = f;
7828 fld_bit_len = 0;
7829 }
7830 else if (is_dynamic_field (type, f))
7831 {
7832 const gdb_byte *field_valaddr = valaddr;
7833 CORE_ADDR field_address = address;
7834 struct type *field_type =
7835 TYPE_TARGET_TYPE (type->field (f).type ());
7836
7837 if (dval0 == NULL)
7838 {
7839 /* rtype's length is computed based on the run-time
7840 value of discriminants. If the discriminants are not
7841 initialized, the type size may be completely bogus and
7842 GDB may fail to allocate a value for it. So check the
7843 size first before creating the value. */
7844 ada_ensure_varsize_limit (rtype);
7845 /* Using plain value_from_contents_and_address here
7846 causes problems because we will end up trying to
7847 resolve a type that is currently being
7848 constructed. */
7849 dval = value_from_contents_and_address_unresolved (rtype,
7850 valaddr,
7851 address);
7852 rtype = value_type (dval);
7853 }
7854 else
7855 dval = dval0;
7856
7857 /* If the type referenced by this field is an aligner type, we need
7858 to unwrap that aligner type, because its size might not be set.
7859 Keeping the aligner type would cause us to compute the wrong
7860 size for this field, impacting the offset of the all the fields
7861 that follow this one. */
7862 if (ada_is_aligner_type (field_type))
7863 {
7864 long field_offset = TYPE_FIELD_BITPOS (field_type, f);
7865
7866 field_valaddr = cond_offset_host (field_valaddr, field_offset);
7867 field_address = cond_offset_target (field_address, field_offset);
7868 field_type = ada_aligned_type (field_type);
7869 }
7870
7871 field_valaddr = cond_offset_host (field_valaddr,
7872 off / TARGET_CHAR_BIT);
7873 field_address = cond_offset_target (field_address,
7874 off / TARGET_CHAR_BIT);
7875
7876 /* Get the fixed type of the field. Note that, in this case,
7877 we do not want to get the real type out of the tag: if
7878 the current field is the parent part of a tagged record,
7879 we will get the tag of the object. Clearly wrong: the real
7880 type of the parent is not the real type of the child. We
7881 would end up in an infinite loop. */
7882 field_type = ada_get_base_type (field_type);
7883 field_type = ada_to_fixed_type (field_type, field_valaddr,
7884 field_address, dval, 0);
7885 /* If the field size is already larger than the maximum
7886 object size, then the record itself will necessarily
7887 be larger than the maximum object size. We need to make
7888 this check now, because the size might be so ridiculously
7889 large (due to an uninitialized variable in the inferior)
7890 that it would cause an overflow when adding it to the
7891 record size. */
7892 ada_ensure_varsize_limit (field_type);
7893
7894 rtype->field (f).set_type (field_type);
7895 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
7896 /* The multiplication can potentially overflow. But because
7897 the field length has been size-checked just above, and
7898 assuming that the maximum size is a reasonable value,
7899 an overflow should not happen in practice. So rather than
7900 adding overflow recovery code to this already complex code,
7901 we just assume that it's not going to happen. */
7902 fld_bit_len =
7903 TYPE_LENGTH (rtype->field (f).type ()) * TARGET_CHAR_BIT;
7904 }
7905 else
7906 {
7907 /* Note: If this field's type is a typedef, it is important
7908 to preserve the typedef layer.
7909
7910 Otherwise, we might be transforming a typedef to a fat
7911 pointer (encoding a pointer to an unconstrained array),
7912 into a basic fat pointer (encoding an unconstrained
7913 array). As both types are implemented using the same
7914 structure, the typedef is the only clue which allows us
7915 to distinguish between the two options. Stripping it
7916 would prevent us from printing this field appropriately. */
7917 rtype->field (f).set_type (type->field (f).type ());
7918 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
7919 if (TYPE_FIELD_BITSIZE (type, f) > 0)
7920 fld_bit_len =
7921 TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f);
7922 else
7923 {
7924 struct type *field_type = type->field (f).type ();
7925
7926 /* We need to be careful of typedefs when computing
7927 the length of our field. If this is a typedef,
7928 get the length of the target type, not the length
7929 of the typedef. */
7930 if (field_type->code () == TYPE_CODE_TYPEDEF)
7931 field_type = ada_typedef_target_type (field_type);
7932
7933 fld_bit_len =
7934 TYPE_LENGTH (ada_check_typedef (field_type)) * TARGET_CHAR_BIT;
7935 }
7936 }
7937 if (off + fld_bit_len > bit_len)
7938 bit_len = off + fld_bit_len;
7939 off += fld_bit_len;
7940 TYPE_LENGTH (rtype) =
7941 align_up (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
7942 }
7943
7944 /* We handle the variant part, if any, at the end because of certain
7945 odd cases in which it is re-ordered so as NOT to be the last field of
7946 the record. This can happen in the presence of representation
7947 clauses. */
7948 if (variant_field >= 0)
7949 {
7950 struct type *branch_type;
7951
7952 off = TYPE_FIELD_BITPOS (rtype, variant_field);
7953
7954 if (dval0 == NULL)
7955 {
7956 /* Using plain value_from_contents_and_address here causes
7957 problems because we will end up trying to resolve a type
7958 that is currently being constructed. */
7959 dval = value_from_contents_and_address_unresolved (rtype, valaddr,
7960 address);
7961 rtype = value_type (dval);
7962 }
7963 else
7964 dval = dval0;
7965
7966 branch_type =
7967 to_fixed_variant_branch_type
7968 (type->field (variant_field).type (),
7969 cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
7970 cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
7971 if (branch_type == NULL)
7972 {
7973 for (f = variant_field + 1; f < rtype->num_fields (); f += 1)
7974 rtype->field (f - 1) = rtype->field (f);
7975 rtype->set_num_fields (rtype->num_fields () - 1);
7976 }
7977 else
7978 {
7979 rtype->field (variant_field).set_type (branch_type);
7980 TYPE_FIELD_NAME (rtype, variant_field) = "S";
7981 fld_bit_len =
7982 TYPE_LENGTH (rtype->field (variant_field).type ()) *
7983 TARGET_CHAR_BIT;
7984 if (off + fld_bit_len > bit_len)
7985 bit_len = off + fld_bit_len;
7986 TYPE_LENGTH (rtype) =
7987 align_up (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
7988 }
7989 }
7990
7991 /* According to exp_dbug.ads, the size of TYPE for variable-size records
7992 should contain the alignment of that record, which should be a strictly
7993 positive value. If null or negative, then something is wrong, most
7994 probably in the debug info. In that case, we don't round up the size
7995 of the resulting type. If this record is not part of another structure,
7996 the current RTYPE length might be good enough for our purposes. */
7997 if (TYPE_LENGTH (type) <= 0)
7998 {
7999 if (rtype->name ())
8000 warning (_("Invalid type size for `%s' detected: %s."),
8001 rtype->name (), pulongest (TYPE_LENGTH (type)));
8002 else
8003 warning (_("Invalid type size for <unnamed> detected: %s."),
8004 pulongest (TYPE_LENGTH (type)));
8005 }
8006 else
8007 {
8008 TYPE_LENGTH (rtype) = align_up (TYPE_LENGTH (rtype),
8009 TYPE_LENGTH (type));
8010 }
8011
8012 value_free_to_mark (mark);
8013 if (TYPE_LENGTH (rtype) > varsize_limit)
8014 error (_("record type with dynamic size is larger than varsize-limit"));
8015 return rtype;
8016 }
8017
8018 /* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS
8019 of 1. */
8020
8021 static struct type *
8022 template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr,
8023 CORE_ADDR address, struct value *dval0)
8024 {
8025 return ada_template_to_fixed_record_type_1 (type, valaddr,
8026 address, dval0, 1);
8027 }
8028
8029 /* An ordinary record type in which ___XVL-convention fields and
8030 ___XVU- and ___XVN-convention field types in TYPE0 are replaced with
8031 static approximations, containing all possible fields. Uses
8032 no runtime values. Useless for use in values, but that's OK,
8033 since the results are used only for type determinations. Works on both
8034 structs and unions. Representation note: to save space, we memorize
8035 the result of this function in the TYPE_TARGET_TYPE of the
8036 template type. */
8037
8038 static struct type *
8039 template_to_static_fixed_type (struct type *type0)
8040 {
8041 struct type *type;
8042 int nfields;
8043 int f;
8044
8045 /* No need no do anything if the input type is already fixed. */
8046 if (type0->is_fixed_instance ())
8047 return type0;
8048
8049 /* Likewise if we already have computed the static approximation. */
8050 if (TYPE_TARGET_TYPE (type0) != NULL)
8051 return TYPE_TARGET_TYPE (type0);
8052
8053 /* Don't clone TYPE0 until we are sure we are going to need a copy. */
8054 type = type0;
8055 nfields = type0->num_fields ();
8056
8057 /* Whether or not we cloned TYPE0, cache the result so that we don't do
8058 recompute all over next time. */
8059 TYPE_TARGET_TYPE (type0) = type;
8060
8061 for (f = 0; f < nfields; f += 1)
8062 {
8063 struct type *field_type = type0->field (f).type ();
8064 struct type *new_type;
8065
8066 if (is_dynamic_field (type0, f))
8067 {
8068 field_type = ada_check_typedef (field_type);
8069 new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type));
8070 }
8071 else
8072 new_type = static_unwrap_type (field_type);
8073
8074 if (new_type != field_type)
8075 {
8076 /* Clone TYPE0 only the first time we get a new field type. */
8077 if (type == type0)
8078 {
8079 TYPE_TARGET_TYPE (type0) = type = alloc_type_copy (type0);
8080 type->set_code (type0->code ());
8081 INIT_NONE_SPECIFIC (type);
8082 type->set_num_fields (nfields);
8083
8084 field *fields =
8085 ((struct field *)
8086 TYPE_ALLOC (type, nfields * sizeof (struct field)));
8087 memcpy (fields, type0->fields (),
8088 sizeof (struct field) * nfields);
8089 type->set_fields (fields);
8090
8091 type->set_name (ada_type_name (type0));
8092 type->set_is_fixed_instance (true);
8093 TYPE_LENGTH (type) = 0;
8094 }
8095 type->field (f).set_type (new_type);
8096 TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f);
8097 }
8098 }
8099
8100 return type;
8101 }
8102
8103 /* Given an object of type TYPE whose contents are at VALADDR and
8104 whose address in memory is ADDRESS, returns a revision of TYPE,
8105 which should be a non-dynamic-sized record, in which the variant
8106 part, if any, is replaced with the appropriate branch. Looks
8107 for discriminant values in DVAL0, which can be NULL if the record
8108 contains the necessary discriminant values. */
8109
8110 static struct type *
8111 to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr,
8112 CORE_ADDR address, struct value *dval0)
8113 {
8114 struct value *mark = value_mark ();
8115 struct value *dval;
8116 struct type *rtype;
8117 struct type *branch_type;
8118 int nfields = type->num_fields ();
8119 int variant_field = variant_field_index (type);
8120
8121 if (variant_field == -1)
8122 return type;
8123
8124 if (dval0 == NULL)
8125 {
8126 dval = value_from_contents_and_address (type, valaddr, address);
8127 type = value_type (dval);
8128 }
8129 else
8130 dval = dval0;
8131
8132 rtype = alloc_type_copy (type);
8133 rtype->set_code (TYPE_CODE_STRUCT);
8134 INIT_NONE_SPECIFIC (rtype);
8135 rtype->set_num_fields (nfields);
8136
8137 field *fields =
8138 (struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field));
8139 memcpy (fields, type->fields (), sizeof (struct field) * nfields);
8140 rtype->set_fields (fields);
8141
8142 rtype->set_name (ada_type_name (type));
8143 rtype->set_is_fixed_instance (true);
8144 TYPE_LENGTH (rtype) = TYPE_LENGTH (type);
8145
8146 branch_type = to_fixed_variant_branch_type
8147 (type->field (variant_field).type (),
8148 cond_offset_host (valaddr,
8149 TYPE_FIELD_BITPOS (type, variant_field)
8150 / TARGET_CHAR_BIT),
8151 cond_offset_target (address,
8152 TYPE_FIELD_BITPOS (type, variant_field)
8153 / TARGET_CHAR_BIT), dval);
8154 if (branch_type == NULL)
8155 {
8156 int f;
8157
8158 for (f = variant_field + 1; f < nfields; f += 1)
8159 rtype->field (f - 1) = rtype->field (f);
8160 rtype->set_num_fields (rtype->num_fields () - 1);
8161 }
8162 else
8163 {
8164 rtype->field (variant_field).set_type (branch_type);
8165 TYPE_FIELD_NAME (rtype, variant_field) = "S";
8166 TYPE_FIELD_BITSIZE (rtype, variant_field) = 0;
8167 TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type);
8168 }
8169 TYPE_LENGTH (rtype) -= TYPE_LENGTH (type->field (variant_field).type ());
8170
8171 value_free_to_mark (mark);
8172 return rtype;
8173 }
8174
8175 /* An ordinary record type (with fixed-length fields) that describes
8176 the value at (TYPE0, VALADDR, ADDRESS) [see explanation at
8177 beginning of this section]. Any necessary discriminants' values
8178 should be in DVAL, a record value; it may be NULL if the object
8179 at ADDR itself contains any necessary discriminant values.
8180 Additionally, VALADDR and ADDRESS may also be NULL if no discriminant
8181 values from the record are needed. Except in the case that DVAL,
8182 VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless
8183 unchecked) is replaced by a particular branch of the variant.
8184
8185 NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0
8186 is questionable and may be removed. It can arise during the
8187 processing of an unconstrained-array-of-record type where all the
8188 variant branches have exactly the same size. This is because in
8189 such cases, the compiler does not bother to use the XVS convention
8190 when encoding the record. I am currently dubious of this
8191 shortcut and suspect the compiler should be altered. FIXME. */
8192
8193 static struct type *
8194 to_fixed_record_type (struct type *type0, const gdb_byte *valaddr,
8195 CORE_ADDR address, struct value *dval)
8196 {
8197 struct type *templ_type;
8198
8199 if (type0->is_fixed_instance ())
8200 return type0;
8201
8202 templ_type = dynamic_template_type (type0);
8203
8204 if (templ_type != NULL)
8205 return template_to_fixed_record_type (templ_type, valaddr, address, dval);
8206 else if (variant_field_index (type0) >= 0)
8207 {
8208 if (dval == NULL && valaddr == NULL && address == 0)
8209 return type0;
8210 return to_record_with_fixed_variant_part (type0, valaddr, address,
8211 dval);
8212 }
8213 else
8214 {
8215 type0->set_is_fixed_instance (true);
8216 return type0;
8217 }
8218
8219 }
8220
8221 /* An ordinary record type (with fixed-length fields) that describes
8222 the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a
8223 union type. Any necessary discriminants' values should be in DVAL,
8224 a record value. That is, this routine selects the appropriate
8225 branch of the union at ADDR according to the discriminant value
8226 indicated in the union's type name. Returns VAR_TYPE0 itself if
8227 it represents a variant subject to a pragma Unchecked_Union. */
8228
8229 static struct type *
8230 to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr,
8231 CORE_ADDR address, struct value *dval)
8232 {
8233 int which;
8234 struct type *templ_type;
8235 struct type *var_type;
8236
8237 if (var_type0->code () == TYPE_CODE_PTR)
8238 var_type = TYPE_TARGET_TYPE (var_type0);
8239 else
8240 var_type = var_type0;
8241
8242 templ_type = ada_find_parallel_type (var_type, "___XVU");
8243
8244 if (templ_type != NULL)
8245 var_type = templ_type;
8246
8247 if (is_unchecked_variant (var_type, value_type (dval)))
8248 return var_type0;
8249 which = ada_which_variant_applies (var_type, dval);
8250
8251 if (which < 0)
8252 return empty_record (var_type);
8253 else if (is_dynamic_field (var_type, which))
8254 return to_fixed_record_type
8255 (TYPE_TARGET_TYPE (var_type->field (which).type ()),
8256 valaddr, address, dval);
8257 else if (variant_field_index (var_type->field (which).type ()) >= 0)
8258 return
8259 to_fixed_record_type
8260 (var_type->field (which).type (), valaddr, address, dval);
8261 else
8262 return var_type->field (which).type ();
8263 }
8264
8265 /* Assuming RANGE_TYPE is a TYPE_CODE_RANGE, return nonzero if
8266 ENCODING_TYPE, a type following the GNAT conventions for discrete
8267 type encodings, only carries redundant information. */
8268
8269 static int
8270 ada_is_redundant_range_encoding (struct type *range_type,
8271 struct type *encoding_type)
8272 {
8273 const char *bounds_str;
8274 int n;
8275 LONGEST lo, hi;
8276
8277 gdb_assert (range_type->code () == TYPE_CODE_RANGE);
8278
8279 if (get_base_type (range_type)->code ()
8280 != get_base_type (encoding_type)->code ())
8281 {
8282 /* The compiler probably used a simple base type to describe
8283 the range type instead of the range's actual base type,
8284 expecting us to get the real base type from the encoding
8285 anyway. In this situation, the encoding cannot be ignored
8286 as redundant. */
8287 return 0;
8288 }
8289
8290 if (is_dynamic_type (range_type))
8291 return 0;
8292
8293 if (encoding_type->name () == NULL)
8294 return 0;
8295
8296 bounds_str = strstr (encoding_type->name (), "___XDLU_");
8297 if (bounds_str == NULL)
8298 return 0;
8299
8300 n = 8; /* Skip "___XDLU_". */
8301 if (!ada_scan_number (bounds_str, n, &lo, &n))
8302 return 0;
8303 if (range_type->bounds ()->low.const_val () != lo)
8304 return 0;
8305
8306 n += 2; /* Skip the "__" separator between the two bounds. */
8307 if (!ada_scan_number (bounds_str, n, &hi, &n))
8308 return 0;
8309 if (range_type->bounds ()->high.const_val () != hi)
8310 return 0;
8311
8312 return 1;
8313 }
8314
8315 /* Given the array type ARRAY_TYPE, return nonzero if DESC_TYPE,
8316 a type following the GNAT encoding for describing array type
8317 indices, only carries redundant information. */
8318
8319 static int
8320 ada_is_redundant_index_type_desc (struct type *array_type,
8321 struct type *desc_type)
8322 {
8323 struct type *this_layer = check_typedef (array_type);
8324 int i;
8325
8326 for (i = 0; i < desc_type->num_fields (); i++)
8327 {
8328 if (!ada_is_redundant_range_encoding (this_layer->index_type (),
8329 desc_type->field (i).type ()))
8330 return 0;
8331 this_layer = check_typedef (TYPE_TARGET_TYPE (this_layer));
8332 }
8333
8334 return 1;
8335 }
8336
8337 /* Assuming that TYPE0 is an array type describing the type of a value
8338 at ADDR, and that DVAL describes a record containing any
8339 discriminants used in TYPE0, returns a type for the value that
8340 contains no dynamic components (that is, no components whose sizes
8341 are determined by run-time quantities). Unless IGNORE_TOO_BIG is
8342 true, gives an error message if the resulting type's size is over
8343 varsize_limit. */
8344
8345 static struct type *
8346 to_fixed_array_type (struct type *type0, struct value *dval,
8347 int ignore_too_big)
8348 {
8349 struct type *index_type_desc;
8350 struct type *result;
8351 int constrained_packed_array_p;
8352 static const char *xa_suffix = "___XA";
8353
8354 type0 = ada_check_typedef (type0);
8355 if (type0->is_fixed_instance ())
8356 return type0;
8357
8358 constrained_packed_array_p = ada_is_constrained_packed_array_type (type0);
8359 if (constrained_packed_array_p)
8360 {
8361 type0 = decode_constrained_packed_array_type (type0);
8362 if (type0 == nullptr)
8363 error (_("could not decode constrained packed array type"));
8364 }
8365
8366 index_type_desc = ada_find_parallel_type (type0, xa_suffix);
8367
8368 /* As mentioned in exp_dbug.ads, for non bit-packed arrays an
8369 encoding suffixed with 'P' may still be generated. If so,
8370 it should be used to find the XA type. */
8371
8372 if (index_type_desc == NULL)
8373 {
8374 const char *type_name = ada_type_name (type0);
8375
8376 if (type_name != NULL)
8377 {
8378 const int len = strlen (type_name);
8379 char *name = (char *) alloca (len + strlen (xa_suffix));
8380
8381 if (type_name[len - 1] == 'P')
8382 {
8383 strcpy (name, type_name);
8384 strcpy (name + len - 1, xa_suffix);
8385 index_type_desc = ada_find_parallel_type_with_name (type0, name);
8386 }
8387 }
8388 }
8389
8390 ada_fixup_array_indexes_type (index_type_desc);
8391 if (index_type_desc != NULL
8392 && ada_is_redundant_index_type_desc (type0, index_type_desc))
8393 {
8394 /* Ignore this ___XA parallel type, as it does not bring any
8395 useful information. This allows us to avoid creating fixed
8396 versions of the array's index types, which would be identical
8397 to the original ones. This, in turn, can also help avoid
8398 the creation of fixed versions of the array itself. */
8399 index_type_desc = NULL;
8400 }
8401
8402 if (index_type_desc == NULL)
8403 {
8404 struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0));
8405
8406 /* NOTE: elt_type---the fixed version of elt_type0---should never
8407 depend on the contents of the array in properly constructed
8408 debugging data. */
8409 /* Create a fixed version of the array element type.
8410 We're not providing the address of an element here,
8411 and thus the actual object value cannot be inspected to do
8412 the conversion. This should not be a problem, since arrays of
8413 unconstrained objects are not allowed. In particular, all
8414 the elements of an array of a tagged type should all be of
8415 the same type specified in the debugging info. No need to
8416 consult the object tag. */
8417 struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval, 1);
8418
8419 /* Make sure we always create a new array type when dealing with
8420 packed array types, since we're going to fix-up the array
8421 type length and element bitsize a little further down. */
8422 if (elt_type0 == elt_type && !constrained_packed_array_p)
8423 result = type0;
8424 else
8425 result = create_array_type (alloc_type_copy (type0),
8426 elt_type, type0->index_type ());
8427 }
8428 else
8429 {
8430 int i;
8431 struct type *elt_type0;
8432
8433 elt_type0 = type0;
8434 for (i = index_type_desc->num_fields (); i > 0; i -= 1)
8435 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
8436
8437 /* NOTE: result---the fixed version of elt_type0---should never
8438 depend on the contents of the array in properly constructed
8439 debugging data. */
8440 /* Create a fixed version of the array element type.
8441 We're not providing the address of an element here,
8442 and thus the actual object value cannot be inspected to do
8443 the conversion. This should not be a problem, since arrays of
8444 unconstrained objects are not allowed. In particular, all
8445 the elements of an array of a tagged type should all be of
8446 the same type specified in the debugging info. No need to
8447 consult the object tag. */
8448 result =
8449 ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval, 1);
8450
8451 elt_type0 = type0;
8452 for (i = index_type_desc->num_fields () - 1; i >= 0; i -= 1)
8453 {
8454 struct type *range_type =
8455 to_fixed_range_type (index_type_desc->field (i).type (), dval);
8456
8457 result = create_array_type (alloc_type_copy (elt_type0),
8458 result, range_type);
8459 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
8460 }
8461 if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit)
8462 error (_("array type with dynamic size is larger than varsize-limit"));
8463 }
8464
8465 /* We want to preserve the type name. This can be useful when
8466 trying to get the type name of a value that has already been
8467 printed (for instance, if the user did "print VAR; whatis $". */
8468 result->set_name (type0->name ());
8469
8470 if (constrained_packed_array_p)
8471 {
8472 /* So far, the resulting type has been created as if the original
8473 type was a regular (non-packed) array type. As a result, the
8474 bitsize of the array elements needs to be set again, and the array
8475 length needs to be recomputed based on that bitsize. */
8476 int len = TYPE_LENGTH (result) / TYPE_LENGTH (TYPE_TARGET_TYPE (result));
8477 int elt_bitsize = TYPE_FIELD_BITSIZE (type0, 0);
8478
8479 TYPE_FIELD_BITSIZE (result, 0) = TYPE_FIELD_BITSIZE (type0, 0);
8480 TYPE_LENGTH (result) = len * elt_bitsize / HOST_CHAR_BIT;
8481 if (TYPE_LENGTH (result) * HOST_CHAR_BIT < len * elt_bitsize)
8482 TYPE_LENGTH (result)++;
8483 }
8484
8485 result->set_is_fixed_instance (true);
8486 return result;
8487 }
8488
8489
8490 /* A standard type (containing no dynamically sized components)
8491 corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS)
8492 DVAL describes a record containing any discriminants used in TYPE0,
8493 and may be NULL if there are none, or if the object of type TYPE at
8494 ADDRESS or in VALADDR contains these discriminants.
8495
8496 If CHECK_TAG is not null, in the case of tagged types, this function
8497 attempts to locate the object's tag and use it to compute the actual
8498 type. However, when ADDRESS is null, we cannot use it to determine the
8499 location of the tag, and therefore compute the tagged type's actual type.
8500 So we return the tagged type without consulting the tag. */
8501
8502 static struct type *
8503 ada_to_fixed_type_1 (struct type *type, const gdb_byte *valaddr,
8504 CORE_ADDR address, struct value *dval, int check_tag)
8505 {
8506 type = ada_check_typedef (type);
8507
8508 /* Only un-fixed types need to be handled here. */
8509 if (!HAVE_GNAT_AUX_INFO (type))
8510 return type;
8511
8512 switch (type->code ())
8513 {
8514 default:
8515 return type;
8516 case TYPE_CODE_STRUCT:
8517 {
8518 struct type *static_type = to_static_fixed_type (type);
8519 struct type *fixed_record_type =
8520 to_fixed_record_type (type, valaddr, address, NULL);
8521
8522 /* If STATIC_TYPE is a tagged type and we know the object's address,
8523 then we can determine its tag, and compute the object's actual
8524 type from there. Note that we have to use the fixed record
8525 type (the parent part of the record may have dynamic fields
8526 and the way the location of _tag is expressed may depend on
8527 them). */
8528
8529 if (check_tag && address != 0 && ada_is_tagged_type (static_type, 0))
8530 {
8531 struct value *tag =
8532 value_tag_from_contents_and_address
8533 (fixed_record_type,
8534 valaddr,
8535 address);
8536 struct type *real_type = type_from_tag (tag);
8537 struct value *obj =
8538 value_from_contents_and_address (fixed_record_type,
8539 valaddr,
8540 address);
8541 fixed_record_type = value_type (obj);
8542 if (real_type != NULL)
8543 return to_fixed_record_type
8544 (real_type, NULL,
8545 value_address (ada_tag_value_at_base_address (obj)), NULL);
8546 }
8547
8548 /* Check to see if there is a parallel ___XVZ variable.
8549 If there is, then it provides the actual size of our type. */
8550 else if (ada_type_name (fixed_record_type) != NULL)
8551 {
8552 const char *name = ada_type_name (fixed_record_type);
8553 char *xvz_name
8554 = (char *) alloca (strlen (name) + 7 /* "___XVZ\0" */);
8555 bool xvz_found = false;
8556 LONGEST size;
8557
8558 xsnprintf (xvz_name, strlen (name) + 7, "%s___XVZ", name);
8559 try
8560 {
8561 xvz_found = get_int_var_value (xvz_name, size);
8562 }
8563 catch (const gdb_exception_error &except)
8564 {
8565 /* We found the variable, but somehow failed to read
8566 its value. Rethrow the same error, but with a little
8567 bit more information, to help the user understand
8568 what went wrong (Eg: the variable might have been
8569 optimized out). */
8570 throw_error (except.error,
8571 _("unable to read value of %s (%s)"),
8572 xvz_name, except.what ());
8573 }
8574
8575 if (xvz_found && TYPE_LENGTH (fixed_record_type) != size)
8576 {
8577 fixed_record_type = copy_type (fixed_record_type);
8578 TYPE_LENGTH (fixed_record_type) = size;
8579
8580 /* The FIXED_RECORD_TYPE may have be a stub. We have
8581 observed this when the debugging info is STABS, and
8582 apparently it is something that is hard to fix.
8583
8584 In practice, we don't need the actual type definition
8585 at all, because the presence of the XVZ variable allows us
8586 to assume that there must be a XVS type as well, which we
8587 should be able to use later, when we need the actual type
8588 definition.
8589
8590 In the meantime, pretend that the "fixed" type we are
8591 returning is NOT a stub, because this can cause trouble
8592 when using this type to create new types targeting it.
8593 Indeed, the associated creation routines often check
8594 whether the target type is a stub and will try to replace
8595 it, thus using a type with the wrong size. This, in turn,
8596 might cause the new type to have the wrong size too.
8597 Consider the case of an array, for instance, where the size
8598 of the array is computed from the number of elements in
8599 our array multiplied by the size of its element. */
8600 fixed_record_type->set_is_stub (false);
8601 }
8602 }
8603 return fixed_record_type;
8604 }
8605 case TYPE_CODE_ARRAY:
8606 return to_fixed_array_type (type, dval, 1);
8607 case TYPE_CODE_UNION:
8608 if (dval == NULL)
8609 return type;
8610 else
8611 return to_fixed_variant_branch_type (type, valaddr, address, dval);
8612 }
8613 }
8614
8615 /* The same as ada_to_fixed_type_1, except that it preserves the type
8616 if it is a TYPE_CODE_TYPEDEF of a type that is already fixed.
8617
8618 The typedef layer needs be preserved in order to differentiate between
8619 arrays and array pointers when both types are implemented using the same
8620 fat pointer. In the array pointer case, the pointer is encoded as
8621 a typedef of the pointer type. For instance, considering:
8622
8623 type String_Access is access String;
8624 S1 : String_Access := null;
8625
8626 To the debugger, S1 is defined as a typedef of type String. But
8627 to the user, it is a pointer. So if the user tries to print S1,
8628 we should not dereference the array, but print the array address
8629 instead.
8630
8631 If we didn't preserve the typedef layer, we would lose the fact that
8632 the type is to be presented as a pointer (needs de-reference before
8633 being printed). And we would also use the source-level type name. */
8634
8635 struct type *
8636 ada_to_fixed_type (struct type *type, const gdb_byte *valaddr,
8637 CORE_ADDR address, struct value *dval, int check_tag)
8638
8639 {
8640 struct type *fixed_type =
8641 ada_to_fixed_type_1 (type, valaddr, address, dval, check_tag);
8642
8643 /* If TYPE is a typedef and its target type is the same as the FIXED_TYPE,
8644 then preserve the typedef layer.
8645
8646 Implementation note: We can only check the main-type portion of
8647 the TYPE and FIXED_TYPE, because eliminating the typedef layer
8648 from TYPE now returns a type that has the same instance flags
8649 as TYPE. For instance, if TYPE is a "typedef const", and its
8650 target type is a "struct", then the typedef elimination will return
8651 a "const" version of the target type. See check_typedef for more
8652 details about how the typedef layer elimination is done.
8653
8654 brobecker/2010-11-19: It seems to me that the only case where it is
8655 useful to preserve the typedef layer is when dealing with fat pointers.
8656 Perhaps, we could add a check for that and preserve the typedef layer
8657 only in that situation. But this seems unnecessary so far, probably
8658 because we call check_typedef/ada_check_typedef pretty much everywhere.
8659 */
8660 if (type->code () == TYPE_CODE_TYPEDEF
8661 && (TYPE_MAIN_TYPE (ada_typedef_target_type (type))
8662 == TYPE_MAIN_TYPE (fixed_type)))
8663 return type;
8664
8665 return fixed_type;
8666 }
8667
8668 /* A standard (static-sized) type corresponding as well as possible to
8669 TYPE0, but based on no runtime data. */
8670
8671 static struct type *
8672 to_static_fixed_type (struct type *type0)
8673 {
8674 struct type *type;
8675
8676 if (type0 == NULL)
8677 return NULL;
8678
8679 if (type0->is_fixed_instance ())
8680 return type0;
8681
8682 type0 = ada_check_typedef (type0);
8683
8684 switch (type0->code ())
8685 {
8686 default:
8687 return type0;
8688 case TYPE_CODE_STRUCT:
8689 type = dynamic_template_type (type0);
8690 if (type != NULL)
8691 return template_to_static_fixed_type (type);
8692 else
8693 return template_to_static_fixed_type (type0);
8694 case TYPE_CODE_UNION:
8695 type = ada_find_parallel_type (type0, "___XVU");
8696 if (type != NULL)
8697 return template_to_static_fixed_type (type);
8698 else
8699 return template_to_static_fixed_type (type0);
8700 }
8701 }
8702
8703 /* A static approximation of TYPE with all type wrappers removed. */
8704
8705 static struct type *
8706 static_unwrap_type (struct type *type)
8707 {
8708 if (ada_is_aligner_type (type))
8709 {
8710 struct type *type1 = ada_check_typedef (type)->field (0).type ();
8711 if (ada_type_name (type1) == NULL)
8712 type1->set_name (ada_type_name (type));
8713
8714 return static_unwrap_type (type1);
8715 }
8716 else
8717 {
8718 struct type *raw_real_type = ada_get_base_type (type);
8719
8720 if (raw_real_type == type)
8721 return type;
8722 else
8723 return to_static_fixed_type (raw_real_type);
8724 }
8725 }
8726
8727 /* In some cases, incomplete and private types require
8728 cross-references that are not resolved as records (for example,
8729 type Foo;
8730 type FooP is access Foo;
8731 V: FooP;
8732 type Foo is array ...;
8733 ). In these cases, since there is no mechanism for producing
8734 cross-references to such types, we instead substitute for FooP a
8735 stub enumeration type that is nowhere resolved, and whose tag is
8736 the name of the actual type. Call these types "non-record stubs". */
8737
8738 /* A type equivalent to TYPE that is not a non-record stub, if one
8739 exists, otherwise TYPE. */
8740
8741 struct type *
8742 ada_check_typedef (struct type *type)
8743 {
8744 if (type == NULL)
8745 return NULL;
8746
8747 /* If our type is an access to an unconstrained array, which is encoded
8748 as a TYPE_CODE_TYPEDEF of a fat pointer, then we're done.
8749 We don't want to strip the TYPE_CODE_TYPDEF layer, because this is
8750 what allows us to distinguish between fat pointers that represent
8751 array types, and fat pointers that represent array access types
8752 (in both cases, the compiler implements them as fat pointers). */
8753 if (ada_is_access_to_unconstrained_array (type))
8754 return type;
8755
8756 type = check_typedef (type);
8757 if (type == NULL || type->code () != TYPE_CODE_ENUM
8758 || !type->is_stub ()
8759 || type->name () == NULL)
8760 return type;
8761 else
8762 {
8763 const char *name = type->name ();
8764 struct type *type1 = ada_find_any_type (name);
8765
8766 if (type1 == NULL)
8767 return type;
8768
8769 /* TYPE1 might itself be a TYPE_CODE_TYPEDEF (this can happen with
8770 stubs pointing to arrays, as we don't create symbols for array
8771 types, only for the typedef-to-array types). If that's the case,
8772 strip the typedef layer. */
8773 if (type1->code () == TYPE_CODE_TYPEDEF)
8774 type1 = ada_check_typedef (type1);
8775
8776 return type1;
8777 }
8778 }
8779
8780 /* A value representing the data at VALADDR/ADDRESS as described by
8781 type TYPE0, but with a standard (static-sized) type that correctly
8782 describes it. If VAL0 is not NULL and TYPE0 already is a standard
8783 type, then return VAL0 [this feature is simply to avoid redundant
8784 creation of struct values]. */
8785
8786 static struct value *
8787 ada_to_fixed_value_create (struct type *type0, CORE_ADDR address,
8788 struct value *val0)
8789 {
8790 struct type *type = ada_to_fixed_type (type0, 0, address, NULL, 1);
8791
8792 if (type == type0 && val0 != NULL)
8793 return val0;
8794
8795 if (VALUE_LVAL (val0) != lval_memory)
8796 {
8797 /* Our value does not live in memory; it could be a convenience
8798 variable, for instance. Create a not_lval value using val0's
8799 contents. */
8800 return value_from_contents (type, value_contents (val0));
8801 }
8802
8803 return value_from_contents_and_address (type, 0, address);
8804 }
8805
8806 /* A value representing VAL, but with a standard (static-sized) type
8807 that correctly describes it. Does not necessarily create a new
8808 value. */
8809
8810 struct value *
8811 ada_to_fixed_value (struct value *val)
8812 {
8813 val = unwrap_value (val);
8814 val = ada_to_fixed_value_create (value_type (val), value_address (val), val);
8815 return val;
8816 }
8817 \f
8818
8819 /* Attributes */
8820
8821 /* Table mapping attribute numbers to names.
8822 NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */
8823
8824 static const char * const attribute_names[] = {
8825 "<?>",
8826
8827 "first",
8828 "last",
8829 "length",
8830 "image",
8831 "max",
8832 "min",
8833 "modulus",
8834 "pos",
8835 "size",
8836 "tag",
8837 "val",
8838 0
8839 };
8840
8841 static const char *
8842 ada_attribute_name (enum exp_opcode n)
8843 {
8844 if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL)
8845 return attribute_names[n - OP_ATR_FIRST + 1];
8846 else
8847 return attribute_names[0];
8848 }
8849
8850 /* Evaluate the 'POS attribute applied to ARG. */
8851
8852 static LONGEST
8853 pos_atr (struct value *arg)
8854 {
8855 struct value *val = coerce_ref (arg);
8856 struct type *type = value_type (val);
8857
8858 if (!discrete_type_p (type))
8859 error (_("'POS only defined on discrete types"));
8860
8861 gdb::optional<LONGEST> result = discrete_position (type, value_as_long (val));
8862 if (!result.has_value ())
8863 error (_("enumeration value is invalid: can't find 'POS"));
8864
8865 return *result;
8866 }
8867
8868 static struct value *
8869 value_pos_atr (struct type *type, struct value *arg)
8870 {
8871 return value_from_longest (type, pos_atr (arg));
8872 }
8873
8874 /* Evaluate the TYPE'VAL attribute applied to ARG. */
8875
8876 static struct value *
8877 val_atr (struct type *type, LONGEST val)
8878 {
8879 gdb_assert (discrete_type_p (type));
8880 if (type->code () == TYPE_CODE_RANGE)
8881 type = TYPE_TARGET_TYPE (type);
8882 if (type->code () == TYPE_CODE_ENUM)
8883 {
8884 if (val < 0 || val >= type->num_fields ())
8885 error (_("argument to 'VAL out of range"));
8886 val = TYPE_FIELD_ENUMVAL (type, val);
8887 }
8888 return value_from_longest (type, val);
8889 }
8890
8891 static struct value *
8892 ada_val_atr (enum noside noside, struct type *type, struct value *arg)
8893 {
8894 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8895 return value_zero (type, not_lval);
8896
8897 if (!discrete_type_p (type))
8898 error (_("'VAL only defined on discrete types"));
8899 if (!integer_type_p (value_type (arg)))
8900 error (_("'VAL requires integral argument"));
8901
8902 return val_atr (type, value_as_long (arg));
8903 }
8904 \f
8905
8906 /* Evaluation */
8907
8908 /* True if TYPE appears to be an Ada character type.
8909 [At the moment, this is true only for Character and Wide_Character;
8910 It is a heuristic test that could stand improvement]. */
8911
8912 bool
8913 ada_is_character_type (struct type *type)
8914 {
8915 const char *name;
8916
8917 /* If the type code says it's a character, then assume it really is,
8918 and don't check any further. */
8919 if (type->code () == TYPE_CODE_CHAR)
8920 return true;
8921
8922 /* Otherwise, assume it's a character type iff it is a discrete type
8923 with a known character type name. */
8924 name = ada_type_name (type);
8925 return (name != NULL
8926 && (type->code () == TYPE_CODE_INT
8927 || type->code () == TYPE_CODE_RANGE)
8928 && (strcmp (name, "character") == 0
8929 || strcmp (name, "wide_character") == 0
8930 || strcmp (name, "wide_wide_character") == 0
8931 || strcmp (name, "unsigned char") == 0));
8932 }
8933
8934 /* True if TYPE appears to be an Ada string type. */
8935
8936 bool
8937 ada_is_string_type (struct type *type)
8938 {
8939 type = ada_check_typedef (type);
8940 if (type != NULL
8941 && type->code () != TYPE_CODE_PTR
8942 && (ada_is_simple_array_type (type)
8943 || ada_is_array_descriptor_type (type))
8944 && ada_array_arity (type) == 1)
8945 {
8946 struct type *elttype = ada_array_element_type (type, 1);
8947
8948 return ada_is_character_type (elttype);
8949 }
8950 else
8951 return false;
8952 }
8953
8954 /* The compiler sometimes provides a parallel XVS type for a given
8955 PAD type. Normally, it is safe to follow the PAD type directly,
8956 but older versions of the compiler have a bug that causes the offset
8957 of its "F" field to be wrong. Following that field in that case
8958 would lead to incorrect results, but this can be worked around
8959 by ignoring the PAD type and using the associated XVS type instead.
8960
8961 Set to True if the debugger should trust the contents of PAD types.
8962 Otherwise, ignore the PAD type if there is a parallel XVS type. */
8963 static bool trust_pad_over_xvs = true;
8964
8965 /* True if TYPE is a struct type introduced by the compiler to force the
8966 alignment of a value. Such types have a single field with a
8967 distinctive name. */
8968
8969 int
8970 ada_is_aligner_type (struct type *type)
8971 {
8972 type = ada_check_typedef (type);
8973
8974 if (!trust_pad_over_xvs && ada_find_parallel_type (type, "___XVS") != NULL)
8975 return 0;
8976
8977 return (type->code () == TYPE_CODE_STRUCT
8978 && type->num_fields () == 1
8979 && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0);
8980 }
8981
8982 /* If there is an ___XVS-convention type parallel to SUBTYPE, return
8983 the parallel type. */
8984
8985 struct type *
8986 ada_get_base_type (struct type *raw_type)
8987 {
8988 struct type *real_type_namer;
8989 struct type *raw_real_type;
8990
8991 if (raw_type == NULL || raw_type->code () != TYPE_CODE_STRUCT)
8992 return raw_type;
8993
8994 if (ada_is_aligner_type (raw_type))
8995 /* The encoding specifies that we should always use the aligner type.
8996 So, even if this aligner type has an associated XVS type, we should
8997 simply ignore it.
8998
8999 According to the compiler gurus, an XVS type parallel to an aligner
9000 type may exist because of a stabs limitation. In stabs, aligner
9001 types are empty because the field has a variable-sized type, and
9002 thus cannot actually be used as an aligner type. As a result,
9003 we need the associated parallel XVS type to decode the type.
9004 Since the policy in the compiler is to not change the internal
9005 representation based on the debugging info format, we sometimes
9006 end up having a redundant XVS type parallel to the aligner type. */
9007 return raw_type;
9008
9009 real_type_namer = ada_find_parallel_type (raw_type, "___XVS");
9010 if (real_type_namer == NULL
9011 || real_type_namer->code () != TYPE_CODE_STRUCT
9012 || real_type_namer->num_fields () != 1)
9013 return raw_type;
9014
9015 if (real_type_namer->field (0).type ()->code () != TYPE_CODE_REF)
9016 {
9017 /* This is an older encoding form where the base type needs to be
9018 looked up by name. We prefer the newer encoding because it is
9019 more efficient. */
9020 raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0));
9021 if (raw_real_type == NULL)
9022 return raw_type;
9023 else
9024 return raw_real_type;
9025 }
9026
9027 /* The field in our XVS type is a reference to the base type. */
9028 return TYPE_TARGET_TYPE (real_type_namer->field (0).type ());
9029 }
9030
9031 /* The type of value designated by TYPE, with all aligners removed. */
9032
9033 struct type *
9034 ada_aligned_type (struct type *type)
9035 {
9036 if (ada_is_aligner_type (type))
9037 return ada_aligned_type (type->field (0).type ());
9038 else
9039 return ada_get_base_type (type);
9040 }
9041
9042
9043 /* The address of the aligned value in an object at address VALADDR
9044 having type TYPE. Assumes ada_is_aligner_type (TYPE). */
9045
9046 const gdb_byte *
9047 ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr)
9048 {
9049 if (ada_is_aligner_type (type))
9050 return ada_aligned_value_addr (type->field (0).type (),
9051 valaddr +
9052 TYPE_FIELD_BITPOS (type,
9053 0) / TARGET_CHAR_BIT);
9054 else
9055 return valaddr;
9056 }
9057
9058
9059
9060 /* The printed representation of an enumeration literal with encoded
9061 name NAME. The value is good to the next call of ada_enum_name. */
9062 const char *
9063 ada_enum_name (const char *name)
9064 {
9065 static std::string storage;
9066 const char *tmp;
9067
9068 /* First, unqualify the enumeration name:
9069 1. Search for the last '.' character. If we find one, then skip
9070 all the preceding characters, the unqualified name starts
9071 right after that dot.
9072 2. Otherwise, we may be debugging on a target where the compiler
9073 translates dots into "__". Search forward for double underscores,
9074 but stop searching when we hit an overloading suffix, which is
9075 of the form "__" followed by digits. */
9076
9077 tmp = strrchr (name, '.');
9078 if (tmp != NULL)
9079 name = tmp + 1;
9080 else
9081 {
9082 while ((tmp = strstr (name, "__")) != NULL)
9083 {
9084 if (isdigit (tmp[2]))
9085 break;
9086 else
9087 name = tmp + 2;
9088 }
9089 }
9090
9091 if (name[0] == 'Q')
9092 {
9093 int v;
9094
9095 if (name[1] == 'U' || name[1] == 'W')
9096 {
9097 if (sscanf (name + 2, "%x", &v) != 1)
9098 return name;
9099 }
9100 else if (((name[1] >= '0' && name[1] <= '9')
9101 || (name[1] >= 'a' && name[1] <= 'z'))
9102 && name[2] == '\0')
9103 {
9104 storage = string_printf ("'%c'", name[1]);
9105 return storage.c_str ();
9106 }
9107 else
9108 return name;
9109
9110 if (isascii (v) && isprint (v))
9111 storage = string_printf ("'%c'", v);
9112 else if (name[1] == 'U')
9113 storage = string_printf ("[\"%02x\"]", v);
9114 else
9115 storage = string_printf ("[\"%04x\"]", v);
9116
9117 return storage.c_str ();
9118 }
9119 else
9120 {
9121 tmp = strstr (name, "__");
9122 if (tmp == NULL)
9123 tmp = strstr (name, "$");
9124 if (tmp != NULL)
9125 {
9126 storage = std::string (name, tmp - name);
9127 return storage.c_str ();
9128 }
9129
9130 return name;
9131 }
9132 }
9133
9134 /* Evaluate the subexpression of EXP starting at *POS as for
9135 evaluate_type, updating *POS to point just past the evaluated
9136 expression. */
9137
9138 static struct value *
9139 evaluate_subexp_type (struct expression *exp, int *pos)
9140 {
9141 return evaluate_subexp (nullptr, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
9142 }
9143
9144 /* If VAL is wrapped in an aligner or subtype wrapper, return the
9145 value it wraps. */
9146
9147 static struct value *
9148 unwrap_value (struct value *val)
9149 {
9150 struct type *type = ada_check_typedef (value_type (val));
9151
9152 if (ada_is_aligner_type (type))
9153 {
9154 struct value *v = ada_value_struct_elt (val, "F", 0);
9155 struct type *val_type = ada_check_typedef (value_type (v));
9156
9157 if (ada_type_name (val_type) == NULL)
9158 val_type->set_name (ada_type_name (type));
9159
9160 return unwrap_value (v);
9161 }
9162 else
9163 {
9164 struct type *raw_real_type =
9165 ada_check_typedef (ada_get_base_type (type));
9166
9167 /* If there is no parallel XVS or XVE type, then the value is
9168 already unwrapped. Return it without further modification. */
9169 if ((type == raw_real_type)
9170 && ada_find_parallel_type (type, "___XVE") == NULL)
9171 return val;
9172
9173 return
9174 coerce_unspec_val_to_type
9175 (val, ada_to_fixed_type (raw_real_type, 0,
9176 value_address (val),
9177 NULL, 1));
9178 }
9179 }
9180
9181 /* Given two array types T1 and T2, return nonzero iff both arrays
9182 contain the same number of elements. */
9183
9184 static int
9185 ada_same_array_size_p (struct type *t1, struct type *t2)
9186 {
9187 LONGEST lo1, hi1, lo2, hi2;
9188
9189 /* Get the array bounds in order to verify that the size of
9190 the two arrays match. */
9191 if (!get_array_bounds (t1, &lo1, &hi1)
9192 || !get_array_bounds (t2, &lo2, &hi2))
9193 error (_("unable to determine array bounds"));
9194
9195 /* To make things easier for size comparison, normalize a bit
9196 the case of empty arrays by making sure that the difference
9197 between upper bound and lower bound is always -1. */
9198 if (lo1 > hi1)
9199 hi1 = lo1 - 1;
9200 if (lo2 > hi2)
9201 hi2 = lo2 - 1;
9202
9203 return (hi1 - lo1 == hi2 - lo2);
9204 }
9205
9206 /* Assuming that VAL is an array of integrals, and TYPE represents
9207 an array with the same number of elements, but with wider integral
9208 elements, return an array "casted" to TYPE. In practice, this
9209 means that the returned array is built by casting each element
9210 of the original array into TYPE's (wider) element type. */
9211
9212 static struct value *
9213 ada_promote_array_of_integrals (struct type *type, struct value *val)
9214 {
9215 struct type *elt_type = TYPE_TARGET_TYPE (type);
9216 LONGEST lo, hi;
9217 struct value *res;
9218 LONGEST i;
9219
9220 /* Verify that both val and type are arrays of scalars, and
9221 that the size of val's elements is smaller than the size
9222 of type's element. */
9223 gdb_assert (type->code () == TYPE_CODE_ARRAY);
9224 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (type)));
9225 gdb_assert (value_type (val)->code () == TYPE_CODE_ARRAY);
9226 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (value_type (val))));
9227 gdb_assert (TYPE_LENGTH (TYPE_TARGET_TYPE (type))
9228 > TYPE_LENGTH (TYPE_TARGET_TYPE (value_type (val))));
9229
9230 if (!get_array_bounds (type, &lo, &hi))
9231 error (_("unable to determine array bounds"));
9232
9233 res = allocate_value (type);
9234
9235 /* Promote each array element. */
9236 for (i = 0; i < hi - lo + 1; i++)
9237 {
9238 struct value *elt = value_cast (elt_type, value_subscript (val, lo + i));
9239
9240 memcpy (value_contents_writeable (res) + (i * TYPE_LENGTH (elt_type)),
9241 value_contents_all (elt), TYPE_LENGTH (elt_type));
9242 }
9243
9244 return res;
9245 }
9246
9247 /* Coerce VAL as necessary for assignment to an lval of type TYPE, and
9248 return the converted value. */
9249
9250 static struct value *
9251 coerce_for_assign (struct type *type, struct value *val)
9252 {
9253 struct type *type2 = value_type (val);
9254
9255 if (type == type2)
9256 return val;
9257
9258 type2 = ada_check_typedef (type2);
9259 type = ada_check_typedef (type);
9260
9261 if (type2->code () == TYPE_CODE_PTR
9262 && type->code () == TYPE_CODE_ARRAY)
9263 {
9264 val = ada_value_ind (val);
9265 type2 = value_type (val);
9266 }
9267
9268 if (type2->code () == TYPE_CODE_ARRAY
9269 && type->code () == TYPE_CODE_ARRAY)
9270 {
9271 if (!ada_same_array_size_p (type, type2))
9272 error (_("cannot assign arrays of different length"));
9273
9274 if (is_integral_type (TYPE_TARGET_TYPE (type))
9275 && is_integral_type (TYPE_TARGET_TYPE (type2))
9276 && TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9277 < TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9278 {
9279 /* Allow implicit promotion of the array elements to
9280 a wider type. */
9281 return ada_promote_array_of_integrals (type, val);
9282 }
9283
9284 if (TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9285 != TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9286 error (_("Incompatible types in assignment"));
9287 deprecated_set_value_type (val, type);
9288 }
9289 return val;
9290 }
9291
9292 static struct value *
9293 ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
9294 {
9295 struct value *val;
9296 struct type *type1, *type2;
9297 LONGEST v, v1, v2;
9298
9299 arg1 = coerce_ref (arg1);
9300 arg2 = coerce_ref (arg2);
9301 type1 = get_base_type (ada_check_typedef (value_type (arg1)));
9302 type2 = get_base_type (ada_check_typedef (value_type (arg2)));
9303
9304 if (type1->code () != TYPE_CODE_INT
9305 || type2->code () != TYPE_CODE_INT)
9306 return value_binop (arg1, arg2, op);
9307
9308 switch (op)
9309 {
9310 case BINOP_MOD:
9311 case BINOP_DIV:
9312 case BINOP_REM:
9313 break;
9314 default:
9315 return value_binop (arg1, arg2, op);
9316 }
9317
9318 v2 = value_as_long (arg2);
9319 if (v2 == 0)
9320 error (_("second operand of %s must not be zero."), op_string (op));
9321
9322 if (type1->is_unsigned () || op == BINOP_MOD)
9323 return value_binop (arg1, arg2, op);
9324
9325 v1 = value_as_long (arg1);
9326 switch (op)
9327 {
9328 case BINOP_DIV:
9329 v = v1 / v2;
9330 if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0)
9331 v += v > 0 ? -1 : 1;
9332 break;
9333 case BINOP_REM:
9334 v = v1 % v2;
9335 if (v * v1 < 0)
9336 v -= v2;
9337 break;
9338 default:
9339 /* Should not reach this point. */
9340 v = 0;
9341 }
9342
9343 val = allocate_value (type1);
9344 store_unsigned_integer (value_contents_raw (val),
9345 TYPE_LENGTH (value_type (val)),
9346 type_byte_order (type1), v);
9347 return val;
9348 }
9349
9350 static int
9351 ada_value_equal (struct value *arg1, struct value *arg2)
9352 {
9353 if (ada_is_direct_array_type (value_type (arg1))
9354 || ada_is_direct_array_type (value_type (arg2)))
9355 {
9356 struct type *arg1_type, *arg2_type;
9357
9358 /* Automatically dereference any array reference before
9359 we attempt to perform the comparison. */
9360 arg1 = ada_coerce_ref (arg1);
9361 arg2 = ada_coerce_ref (arg2);
9362
9363 arg1 = ada_coerce_to_simple_array (arg1);
9364 arg2 = ada_coerce_to_simple_array (arg2);
9365
9366 arg1_type = ada_check_typedef (value_type (arg1));
9367 arg2_type = ada_check_typedef (value_type (arg2));
9368
9369 if (arg1_type->code () != TYPE_CODE_ARRAY
9370 || arg2_type->code () != TYPE_CODE_ARRAY)
9371 error (_("Attempt to compare array with non-array"));
9372 /* FIXME: The following works only for types whose
9373 representations use all bits (no padding or undefined bits)
9374 and do not have user-defined equality. */
9375 return (TYPE_LENGTH (arg1_type) == TYPE_LENGTH (arg2_type)
9376 && memcmp (value_contents (arg1), value_contents (arg2),
9377 TYPE_LENGTH (arg1_type)) == 0);
9378 }
9379 return value_equal (arg1, arg2);
9380 }
9381
9382 /* Assign the result of evaluating EXP starting at *POS to the INDEXth
9383 component of LHS (a simple array or a record), updating *POS past
9384 the expression, assuming that LHS is contained in CONTAINER. Does
9385 not modify the inferior's memory, nor does it modify LHS (unless
9386 LHS == CONTAINER). */
9387
9388 static void
9389 assign_component (struct value *container, struct value *lhs, LONGEST index,
9390 struct expression *exp, int *pos)
9391 {
9392 struct value *mark = value_mark ();
9393 struct value *elt;
9394 struct type *lhs_type = check_typedef (value_type (lhs));
9395
9396 if (lhs_type->code () == TYPE_CODE_ARRAY)
9397 {
9398 struct type *index_type = builtin_type (exp->gdbarch)->builtin_int;
9399 struct value *index_val = value_from_longest (index_type, index);
9400
9401 elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val));
9402 }
9403 else
9404 {
9405 elt = ada_index_struct_field (index, lhs, 0, value_type (lhs));
9406 elt = ada_to_fixed_value (elt);
9407 }
9408
9409 if (exp->elts[*pos].opcode == OP_AGGREGATE)
9410 assign_aggregate (container, elt, exp, pos, EVAL_NORMAL);
9411 else
9412 value_assign_to_component (container, elt,
9413 ada_evaluate_subexp (NULL, exp, pos,
9414 EVAL_NORMAL));
9415
9416 value_free_to_mark (mark);
9417 }
9418
9419 /* Assuming that LHS represents an lvalue having a record or array
9420 type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment
9421 of that aggregate's value to LHS, advancing *POS past the
9422 aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an
9423 lvalue containing LHS (possibly LHS itself). Does not modify
9424 the inferior's memory, nor does it modify the contents of
9425 LHS (unless == CONTAINER). Returns the modified CONTAINER. */
9426
9427 static struct value *
9428 assign_aggregate (struct value *container,
9429 struct value *lhs, struct expression *exp,
9430 int *pos, enum noside noside)
9431 {
9432 struct type *lhs_type;
9433 int n = exp->elts[*pos+1].longconst;
9434 LONGEST low_index, high_index;
9435 int i;
9436
9437 *pos += 3;
9438 if (noside != EVAL_NORMAL)
9439 {
9440 for (i = 0; i < n; i += 1)
9441 ada_evaluate_subexp (NULL, exp, pos, noside);
9442 return container;
9443 }
9444
9445 container = ada_coerce_ref (container);
9446 if (ada_is_direct_array_type (value_type (container)))
9447 container = ada_coerce_to_simple_array (container);
9448 lhs = ada_coerce_ref (lhs);
9449 if (!deprecated_value_modifiable (lhs))
9450 error (_("Left operand of assignment is not a modifiable lvalue."));
9451
9452 lhs_type = check_typedef (value_type (lhs));
9453 if (ada_is_direct_array_type (lhs_type))
9454 {
9455 lhs = ada_coerce_to_simple_array (lhs);
9456 lhs_type = check_typedef (value_type (lhs));
9457 low_index = lhs_type->bounds ()->low.const_val ();
9458 high_index = lhs_type->bounds ()->high.const_val ();
9459 }
9460 else if (lhs_type->code () == TYPE_CODE_STRUCT)
9461 {
9462 low_index = 0;
9463 high_index = num_visible_fields (lhs_type) - 1;
9464 }
9465 else
9466 error (_("Left-hand side must be array or record."));
9467
9468 std::vector<LONGEST> indices (4);
9469 indices[0] = indices[1] = low_index - 1;
9470 indices[2] = indices[3] = high_index + 1;
9471
9472 for (i = 0; i < n; i += 1)
9473 {
9474 switch (exp->elts[*pos].opcode)
9475 {
9476 case OP_CHOICES:
9477 aggregate_assign_from_choices (container, lhs, exp, pos, indices,
9478 low_index, high_index);
9479 break;
9480 case OP_POSITIONAL:
9481 aggregate_assign_positional (container, lhs, exp, pos, indices,
9482 low_index, high_index);
9483 break;
9484 case OP_OTHERS:
9485 if (i != n-1)
9486 error (_("Misplaced 'others' clause"));
9487 aggregate_assign_others (container, lhs, exp, pos, indices,
9488 low_index, high_index);
9489 break;
9490 default:
9491 error (_("Internal error: bad aggregate clause"));
9492 }
9493 }
9494
9495 return container;
9496 }
9497
9498 /* Assign into the component of LHS indexed by the OP_POSITIONAL
9499 construct at *POS, updating *POS past the construct, given that
9500 the positions are relative to lower bound LOW, where HIGH is the
9501 upper bound. Record the position in INDICES. CONTAINER is as for
9502 assign_aggregate. */
9503 static void
9504 aggregate_assign_positional (struct value *container,
9505 struct value *lhs, struct expression *exp,
9506 int *pos, std::vector<LONGEST> &indices,
9507 LONGEST low, LONGEST high)
9508 {
9509 LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low;
9510
9511 if (ind - 1 == high)
9512 warning (_("Extra components in aggregate ignored."));
9513 if (ind <= high)
9514 {
9515 add_component_interval (ind, ind, indices);
9516 *pos += 3;
9517 assign_component (container, lhs, ind, exp, pos);
9518 }
9519 else
9520 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9521 }
9522
9523 /* Assign into the components of LHS indexed by the OP_CHOICES
9524 construct at *POS, updating *POS past the construct, given that
9525 the allowable indices are LOW..HIGH. Record the indices assigned
9526 to in INDICES. CONTAINER is as for assign_aggregate. */
9527 static void
9528 aggregate_assign_from_choices (struct value *container,
9529 struct value *lhs, struct expression *exp,
9530 int *pos, std::vector<LONGEST> &indices,
9531 LONGEST low, LONGEST high)
9532 {
9533 int j;
9534 int n_choices = longest_to_int (exp->elts[*pos+1].longconst);
9535 int choice_pos, expr_pc;
9536 int is_array = ada_is_direct_array_type (value_type (lhs));
9537
9538 choice_pos = *pos += 3;
9539
9540 for (j = 0; j < n_choices; j += 1)
9541 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9542 expr_pc = *pos;
9543 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9544
9545 for (j = 0; j < n_choices; j += 1)
9546 {
9547 LONGEST lower, upper;
9548 enum exp_opcode op = exp->elts[choice_pos].opcode;
9549
9550 if (op == OP_DISCRETE_RANGE)
9551 {
9552 choice_pos += 1;
9553 lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
9554 EVAL_NORMAL));
9555 upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
9556 EVAL_NORMAL));
9557 }
9558 else if (is_array)
9559 {
9560 lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos,
9561 EVAL_NORMAL));
9562 upper = lower;
9563 }
9564 else
9565 {
9566 int ind;
9567 const char *name;
9568
9569 switch (op)
9570 {
9571 case OP_NAME:
9572 name = &exp->elts[choice_pos + 2].string;
9573 break;
9574 case OP_VAR_VALUE:
9575 name = exp->elts[choice_pos + 2].symbol->natural_name ();
9576 break;
9577 default:
9578 error (_("Invalid record component association."));
9579 }
9580 ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP);
9581 ind = 0;
9582 if (! find_struct_field (name, value_type (lhs), 0,
9583 NULL, NULL, NULL, NULL, &ind))
9584 error (_("Unknown component name: %s."), name);
9585 lower = upper = ind;
9586 }
9587
9588 if (lower <= upper && (lower < low || upper > high))
9589 error (_("Index in component association out of bounds."));
9590
9591 add_component_interval (lower, upper, indices);
9592 while (lower <= upper)
9593 {
9594 int pos1;
9595
9596 pos1 = expr_pc;
9597 assign_component (container, lhs, lower, exp, &pos1);
9598 lower += 1;
9599 }
9600 }
9601 }
9602
9603 /* Assign the value of the expression in the OP_OTHERS construct in
9604 EXP at *POS into the components of LHS indexed from LOW .. HIGH that
9605 have not been previously assigned. The index intervals already assigned
9606 are in INDICES. Updates *POS to after the OP_OTHERS clause.
9607 CONTAINER is as for assign_aggregate. */
9608 static void
9609 aggregate_assign_others (struct value *container,
9610 struct value *lhs, struct expression *exp,
9611 int *pos, std::vector<LONGEST> &indices,
9612 LONGEST low, LONGEST high)
9613 {
9614 int i;
9615 int expr_pc = *pos + 1;
9616
9617 int num_indices = indices.size ();
9618 for (i = 0; i < num_indices - 2; i += 2)
9619 {
9620 LONGEST ind;
9621
9622 for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1)
9623 {
9624 int localpos;
9625
9626 localpos = expr_pc;
9627 assign_component (container, lhs, ind, exp, &localpos);
9628 }
9629 }
9630 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9631 }
9632
9633 /* Add the interval [LOW .. HIGH] to the sorted set of intervals
9634 [ INDICES[0] .. INDICES[1] ],... The resulting intervals do not
9635 overlap. */
9636 static void
9637 add_component_interval (LONGEST low, LONGEST high,
9638 std::vector<LONGEST> &indices)
9639 {
9640 int i, j;
9641
9642 int size = indices.size ();
9643 for (i = 0; i < size; i += 2) {
9644 if (high >= indices[i] && low <= indices[i + 1])
9645 {
9646 int kh;
9647
9648 for (kh = i + 2; kh < size; kh += 2)
9649 if (high < indices[kh])
9650 break;
9651 if (low < indices[i])
9652 indices[i] = low;
9653 indices[i + 1] = indices[kh - 1];
9654 if (high > indices[i + 1])
9655 indices[i + 1] = high;
9656 memcpy (indices.data () + i + 2, indices.data () + kh, size - kh);
9657 indices.resize (kh - i - 2);
9658 return;
9659 }
9660 else if (high < indices[i])
9661 break;
9662 }
9663
9664 indices.resize (indices.size () + 2);
9665 for (j = indices.size () - 1; j >= i + 2; j -= 1)
9666 indices[j] = indices[j - 2];
9667 indices[i] = low;
9668 indices[i + 1] = high;
9669 }
9670
9671 /* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2
9672 is different. */
9673
9674 static struct value *
9675 ada_value_cast (struct type *type, struct value *arg2)
9676 {
9677 if (type == ada_check_typedef (value_type (arg2)))
9678 return arg2;
9679
9680 return value_cast (type, arg2);
9681 }
9682
9683 /* Evaluating Ada expressions, and printing their result.
9684 ------------------------------------------------------
9685
9686 1. Introduction:
9687 ----------------
9688
9689 We usually evaluate an Ada expression in order to print its value.
9690 We also evaluate an expression in order to print its type, which
9691 happens during the EVAL_AVOID_SIDE_EFFECTS phase of the evaluation,
9692 but we'll focus mostly on the EVAL_NORMAL phase. In practice, the
9693 EVAL_AVOID_SIDE_EFFECTS phase allows us to simplify certain aspects of
9694 the evaluation compared to the EVAL_NORMAL, but is otherwise very
9695 similar.
9696
9697 Evaluating expressions is a little more complicated for Ada entities
9698 than it is for entities in languages such as C. The main reason for
9699 this is that Ada provides types whose definition might be dynamic.
9700 One example of such types is variant records. Or another example
9701 would be an array whose bounds can only be known at run time.
9702
9703 The following description is a general guide as to what should be
9704 done (and what should NOT be done) in order to evaluate an expression
9705 involving such types, and when. This does not cover how the semantic
9706 information is encoded by GNAT as this is covered separatly. For the
9707 document used as the reference for the GNAT encoding, see exp_dbug.ads
9708 in the GNAT sources.
9709
9710 Ideally, we should embed each part of this description next to its
9711 associated code. Unfortunately, the amount of code is so vast right
9712 now that it's hard to see whether the code handling a particular
9713 situation might be duplicated or not. One day, when the code is
9714 cleaned up, this guide might become redundant with the comments
9715 inserted in the code, and we might want to remove it.
9716
9717 2. ``Fixing'' an Entity, the Simple Case:
9718 -----------------------------------------
9719
9720 When evaluating Ada expressions, the tricky issue is that they may
9721 reference entities whose type contents and size are not statically
9722 known. Consider for instance a variant record:
9723
9724 type Rec (Empty : Boolean := True) is record
9725 case Empty is
9726 when True => null;
9727 when False => Value : Integer;
9728 end case;
9729 end record;
9730 Yes : Rec := (Empty => False, Value => 1);
9731 No : Rec := (empty => True);
9732
9733 The size and contents of that record depends on the value of the
9734 descriminant (Rec.Empty). At this point, neither the debugging
9735 information nor the associated type structure in GDB are able to
9736 express such dynamic types. So what the debugger does is to create
9737 "fixed" versions of the type that applies to the specific object.
9738 We also informally refer to this operation as "fixing" an object,
9739 which means creating its associated fixed type.
9740
9741 Example: when printing the value of variable "Yes" above, its fixed
9742 type would look like this:
9743
9744 type Rec is record
9745 Empty : Boolean;
9746 Value : Integer;
9747 end record;
9748
9749 On the other hand, if we printed the value of "No", its fixed type
9750 would become:
9751
9752 type Rec is record
9753 Empty : Boolean;
9754 end record;
9755
9756 Things become a little more complicated when trying to fix an entity
9757 with a dynamic type that directly contains another dynamic type,
9758 such as an array of variant records, for instance. There are
9759 two possible cases: Arrays, and records.
9760
9761 3. ``Fixing'' Arrays:
9762 ---------------------
9763
9764 The type structure in GDB describes an array in terms of its bounds,
9765 and the type of its elements. By design, all elements in the array
9766 have the same type and we cannot represent an array of variant elements
9767 using the current type structure in GDB. When fixing an array,
9768 we cannot fix the array element, as we would potentially need one
9769 fixed type per element of the array. As a result, the best we can do
9770 when fixing an array is to produce an array whose bounds and size
9771 are correct (allowing us to read it from memory), but without having
9772 touched its element type. Fixing each element will be done later,
9773 when (if) necessary.
9774
9775 Arrays are a little simpler to handle than records, because the same
9776 amount of memory is allocated for each element of the array, even if
9777 the amount of space actually used by each element differs from element
9778 to element. Consider for instance the following array of type Rec:
9779
9780 type Rec_Array is array (1 .. 2) of Rec;
9781
9782 The actual amount of memory occupied by each element might be different
9783 from element to element, depending on the value of their discriminant.
9784 But the amount of space reserved for each element in the array remains
9785 fixed regardless. So we simply need to compute that size using
9786 the debugging information available, from which we can then determine
9787 the array size (we multiply the number of elements of the array by
9788 the size of each element).
9789
9790 The simplest case is when we have an array of a constrained element
9791 type. For instance, consider the following type declarations:
9792
9793 type Bounded_String (Max_Size : Integer) is
9794 Length : Integer;
9795 Buffer : String (1 .. Max_Size);
9796 end record;
9797 type Bounded_String_Array is array (1 ..2) of Bounded_String (80);
9798
9799 In this case, the compiler describes the array as an array of
9800 variable-size elements (identified by its XVS suffix) for which
9801 the size can be read in the parallel XVZ variable.
9802
9803 In the case of an array of an unconstrained element type, the compiler
9804 wraps the array element inside a private PAD type. This type should not
9805 be shown to the user, and must be "unwrap"'ed before printing. Note
9806 that we also use the adjective "aligner" in our code to designate
9807 these wrapper types.
9808
9809 In some cases, the size allocated for each element is statically
9810 known. In that case, the PAD type already has the correct size,
9811 and the array element should remain unfixed.
9812
9813 But there are cases when this size is not statically known.
9814 For instance, assuming that "Five" is an integer variable:
9815
9816 type Dynamic is array (1 .. Five) of Integer;
9817 type Wrapper (Has_Length : Boolean := False) is record
9818 Data : Dynamic;
9819 case Has_Length is
9820 when True => Length : Integer;
9821 when False => null;
9822 end case;
9823 end record;
9824 type Wrapper_Array is array (1 .. 2) of Wrapper;
9825
9826 Hello : Wrapper_Array := (others => (Has_Length => True,
9827 Data => (others => 17),
9828 Length => 1));
9829
9830
9831 The debugging info would describe variable Hello as being an
9832 array of a PAD type. The size of that PAD type is not statically
9833 known, but can be determined using a parallel XVZ variable.
9834 In that case, a copy of the PAD type with the correct size should
9835 be used for the fixed array.
9836
9837 3. ``Fixing'' record type objects:
9838 ----------------------------------
9839
9840 Things are slightly different from arrays in the case of dynamic
9841 record types. In this case, in order to compute the associated
9842 fixed type, we need to determine the size and offset of each of
9843 its components. This, in turn, requires us to compute the fixed
9844 type of each of these components.
9845
9846 Consider for instance the example:
9847
9848 type Bounded_String (Max_Size : Natural) is record
9849 Str : String (1 .. Max_Size);
9850 Length : Natural;
9851 end record;
9852 My_String : Bounded_String (Max_Size => 10);
9853
9854 In that case, the position of field "Length" depends on the size
9855 of field Str, which itself depends on the value of the Max_Size
9856 discriminant. In order to fix the type of variable My_String,
9857 we need to fix the type of field Str. Therefore, fixing a variant
9858 record requires us to fix each of its components.
9859
9860 However, if a component does not have a dynamic size, the component
9861 should not be fixed. In particular, fields that use a PAD type
9862 should not fixed. Here is an example where this might happen
9863 (assuming type Rec above):
9864
9865 type Container (Big : Boolean) is record
9866 First : Rec;
9867 After : Integer;
9868 case Big is
9869 when True => Another : Integer;
9870 when False => null;
9871 end case;
9872 end record;
9873 My_Container : Container := (Big => False,
9874 First => (Empty => True),
9875 After => 42);
9876
9877 In that example, the compiler creates a PAD type for component First,
9878 whose size is constant, and then positions the component After just
9879 right after it. The offset of component After is therefore constant
9880 in this case.
9881
9882 The debugger computes the position of each field based on an algorithm
9883 that uses, among other things, the actual position and size of the field
9884 preceding it. Let's now imagine that the user is trying to print
9885 the value of My_Container. If the type fixing was recursive, we would
9886 end up computing the offset of field After based on the size of the
9887 fixed version of field First. And since in our example First has
9888 only one actual field, the size of the fixed type is actually smaller
9889 than the amount of space allocated to that field, and thus we would
9890 compute the wrong offset of field After.
9891
9892 To make things more complicated, we need to watch out for dynamic
9893 components of variant records (identified by the ___XVL suffix in
9894 the component name). Even if the target type is a PAD type, the size
9895 of that type might not be statically known. So the PAD type needs
9896 to be unwrapped and the resulting type needs to be fixed. Otherwise,
9897 we might end up with the wrong size for our component. This can be
9898 observed with the following type declarations:
9899
9900 type Octal is new Integer range 0 .. 7;
9901 type Octal_Array is array (Positive range <>) of Octal;
9902 pragma Pack (Octal_Array);
9903
9904 type Octal_Buffer (Size : Positive) is record
9905 Buffer : Octal_Array (1 .. Size);
9906 Length : Integer;
9907 end record;
9908
9909 In that case, Buffer is a PAD type whose size is unset and needs
9910 to be computed by fixing the unwrapped type.
9911
9912 4. When to ``Fix'' un-``Fixed'' sub-elements of an entity:
9913 ----------------------------------------------------------
9914
9915 Lastly, when should the sub-elements of an entity that remained unfixed
9916 thus far, be actually fixed?
9917
9918 The answer is: Only when referencing that element. For instance
9919 when selecting one component of a record, this specific component
9920 should be fixed at that point in time. Or when printing the value
9921 of a record, each component should be fixed before its value gets
9922 printed. Similarly for arrays, the element of the array should be
9923 fixed when printing each element of the array, or when extracting
9924 one element out of that array. On the other hand, fixing should
9925 not be performed on the elements when taking a slice of an array!
9926
9927 Note that one of the side effects of miscomputing the offset and
9928 size of each field is that we end up also miscomputing the size
9929 of the containing type. This can have adverse results when computing
9930 the value of an entity. GDB fetches the value of an entity based
9931 on the size of its type, and thus a wrong size causes GDB to fetch
9932 the wrong amount of memory. In the case where the computed size is
9933 too small, GDB fetches too little data to print the value of our
9934 entity. Results in this case are unpredictable, as we usually read
9935 past the buffer containing the data =:-o. */
9936
9937 /* Evaluate a subexpression of EXP, at index *POS, and return a value
9938 for that subexpression cast to TO_TYPE. Advance *POS over the
9939 subexpression. */
9940
9941 static value *
9942 ada_evaluate_subexp_for_cast (expression *exp, int *pos,
9943 enum noside noside, struct type *to_type)
9944 {
9945 int pc = *pos;
9946
9947 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE
9948 || exp->elts[pc].opcode == OP_VAR_VALUE)
9949 {
9950 (*pos) += 4;
9951
9952 value *val;
9953 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
9954 {
9955 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9956 return value_zero (to_type, not_lval);
9957
9958 val = evaluate_var_msym_value (noside,
9959 exp->elts[pc + 1].objfile,
9960 exp->elts[pc + 2].msymbol);
9961 }
9962 else
9963 val = evaluate_var_value (noside,
9964 exp->elts[pc + 1].block,
9965 exp->elts[pc + 2].symbol);
9966
9967 if (noside == EVAL_SKIP)
9968 return eval_skip_value (exp);
9969
9970 val = ada_value_cast (to_type, val);
9971
9972 /* Follow the Ada language semantics that do not allow taking
9973 an address of the result of a cast (view conversion in Ada). */
9974 if (VALUE_LVAL (val) == lval_memory)
9975 {
9976 if (value_lazy (val))
9977 value_fetch_lazy (val);
9978 VALUE_LVAL (val) = not_lval;
9979 }
9980 return val;
9981 }
9982
9983 value *val = evaluate_subexp (to_type, exp, pos, noside);
9984 if (noside == EVAL_SKIP)
9985 return eval_skip_value (exp);
9986 return ada_value_cast (to_type, val);
9987 }
9988
9989 /* A helper function for TERNOP_IN_RANGE. */
9990
9991 static value *
9992 eval_ternop_in_range (struct type *expect_type, struct expression *exp,
9993 enum noside noside,
9994 value *arg1, value *arg2, value *arg3)
9995 {
9996 if (noside == EVAL_SKIP)
9997 return eval_skip_value (exp);
9998
9999 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10000 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10001 struct type *type = language_bool_type (exp->language_defn, exp->gdbarch);
10002 return
10003 value_from_longest (type,
10004 (value_less (arg1, arg3)
10005 || value_equal (arg1, arg3))
10006 && (value_less (arg2, arg1)
10007 || value_equal (arg2, arg1)));
10008 }
10009
10010 /* A helper function for UNOP_NEG. */
10011
10012 value *
10013 ada_unop_neg (struct type *expect_type,
10014 struct expression *exp,
10015 enum noside noside, enum exp_opcode op,
10016 struct value *arg1)
10017 {
10018 if (noside == EVAL_SKIP)
10019 return eval_skip_value (exp);
10020 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10021 return value_neg (arg1);
10022 }
10023
10024 /* A helper function for UNOP_IN_RANGE. */
10025
10026 value *
10027 ada_unop_in_range (struct type *expect_type,
10028 struct expression *exp,
10029 enum noside noside, enum exp_opcode op,
10030 struct value *arg1, struct type *type)
10031 {
10032 if (noside == EVAL_SKIP)
10033 return eval_skip_value (exp);
10034
10035 struct value *arg2, *arg3;
10036 switch (type->code ())
10037 {
10038 default:
10039 lim_warning (_("Membership test incompletely implemented; "
10040 "always returns true"));
10041 type = language_bool_type (exp->language_defn, exp->gdbarch);
10042 return value_from_longest (type, (LONGEST) 1);
10043
10044 case TYPE_CODE_RANGE:
10045 arg2 = value_from_longest (type,
10046 type->bounds ()->low.const_val ());
10047 arg3 = value_from_longest (type,
10048 type->bounds ()->high.const_val ());
10049 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10050 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10051 type = language_bool_type (exp->language_defn, exp->gdbarch);
10052 return
10053 value_from_longest (type,
10054 (value_less (arg1, arg3)
10055 || value_equal (arg1, arg3))
10056 && (value_less (arg2, arg1)
10057 || value_equal (arg2, arg1)));
10058 }
10059 }
10060
10061 /* A helper function for OP_ATR_TAG. */
10062
10063 value *
10064 ada_atr_tag (struct type *expect_type,
10065 struct expression *exp,
10066 enum noside noside, enum exp_opcode op,
10067 struct value *arg1)
10068 {
10069 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10070 return value_zero (ada_tag_type (arg1), not_lval);
10071
10072 return ada_value_tag (arg1);
10073 }
10074
10075 /* A helper function for OP_ATR_SIZE. */
10076
10077 value *
10078 ada_atr_size (struct type *expect_type,
10079 struct expression *exp,
10080 enum noside noside, enum exp_opcode op,
10081 struct value *arg1)
10082 {
10083 struct type *type = value_type (arg1);
10084
10085 /* If the argument is a reference, then dereference its type, since
10086 the user is really asking for the size of the actual object,
10087 not the size of the pointer. */
10088 if (type->code () == TYPE_CODE_REF)
10089 type = TYPE_TARGET_TYPE (type);
10090
10091 if (noside == EVAL_SKIP)
10092 return eval_skip_value (exp);
10093 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10094 return value_zero (builtin_type (exp->gdbarch)->builtin_int, not_lval);
10095 else
10096 return value_from_longest (builtin_type (exp->gdbarch)->builtin_int,
10097 TARGET_CHAR_BIT * TYPE_LENGTH (type));
10098 }
10099
10100 /* A helper function for UNOP_ABS. */
10101
10102 value *
10103 ada_abs (struct type *expect_type,
10104 struct expression *exp,
10105 enum noside noside, enum exp_opcode op,
10106 struct value *arg1)
10107 {
10108 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10109 if (value_less (arg1, value_zero (value_type (arg1), not_lval)))
10110 return value_neg (arg1);
10111 else
10112 return arg1;
10113 }
10114
10115 /* A helper function for BINOP_MUL. */
10116
10117 value *
10118 ada_mult_binop (struct type *expect_type,
10119 struct expression *exp,
10120 enum noside noside, enum exp_opcode op,
10121 struct value *arg1, struct value *arg2)
10122 {
10123 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10124 {
10125 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10126 return value_zero (value_type (arg1), not_lval);
10127 }
10128 else
10129 {
10130 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10131 return ada_value_binop (arg1, arg2, op);
10132 }
10133 }
10134
10135 /* A helper function for BINOP_EQUAL and BINOP_NOTEQUAL. */
10136
10137 value *
10138 ada_equal_binop (struct type *expect_type,
10139 struct expression *exp,
10140 enum noside noside, enum exp_opcode op,
10141 struct value *arg1, struct value *arg2)
10142 {
10143 int tem;
10144 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10145 tem = 0;
10146 else
10147 {
10148 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10149 tem = ada_value_equal (arg1, arg2);
10150 }
10151 if (op == BINOP_NOTEQUAL)
10152 tem = !tem;
10153 struct type *type = language_bool_type (exp->language_defn, exp->gdbarch);
10154 return value_from_longest (type, (LONGEST) tem);
10155 }
10156
10157 /* A helper function for TERNOP_SLICE. */
10158
10159 static value *
10160 ada_ternop_slice (struct expression *exp,
10161 enum noside noside,
10162 struct value *array, struct value *low_bound_val,
10163 struct value *high_bound_val)
10164 {
10165 LONGEST low_bound;
10166 LONGEST high_bound;
10167
10168 low_bound_val = coerce_ref (low_bound_val);
10169 high_bound_val = coerce_ref (high_bound_val);
10170 low_bound = value_as_long (low_bound_val);
10171 high_bound = value_as_long (high_bound_val);
10172
10173 /* If this is a reference to an aligner type, then remove all
10174 the aligners. */
10175 if (value_type (array)->code () == TYPE_CODE_REF
10176 && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array))))
10177 TYPE_TARGET_TYPE (value_type (array)) =
10178 ada_aligned_type (TYPE_TARGET_TYPE (value_type (array)));
10179
10180 if (ada_is_any_packed_array_type (value_type (array)))
10181 error (_("cannot slice a packed array"));
10182
10183 /* If this is a reference to an array or an array lvalue,
10184 convert to a pointer. */
10185 if (value_type (array)->code () == TYPE_CODE_REF
10186 || (value_type (array)->code () == TYPE_CODE_ARRAY
10187 && VALUE_LVAL (array) == lval_memory))
10188 array = value_addr (array);
10189
10190 if (noside == EVAL_AVOID_SIDE_EFFECTS
10191 && ada_is_array_descriptor_type (ada_check_typedef
10192 (value_type (array))))
10193 return empty_array (ada_type_of_array (array, 0), low_bound,
10194 high_bound);
10195
10196 array = ada_coerce_to_simple_array_ptr (array);
10197
10198 /* If we have more than one level of pointer indirection,
10199 dereference the value until we get only one level. */
10200 while (value_type (array)->code () == TYPE_CODE_PTR
10201 && (TYPE_TARGET_TYPE (value_type (array))->code ()
10202 == TYPE_CODE_PTR))
10203 array = value_ind (array);
10204
10205 /* Make sure we really do have an array type before going further,
10206 to avoid a SEGV when trying to get the index type or the target
10207 type later down the road if the debug info generated by
10208 the compiler is incorrect or incomplete. */
10209 if (!ada_is_simple_array_type (value_type (array)))
10210 error (_("cannot take slice of non-array"));
10211
10212 if (ada_check_typedef (value_type (array))->code ()
10213 == TYPE_CODE_PTR)
10214 {
10215 struct type *type0 = ada_check_typedef (value_type (array));
10216
10217 if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS)
10218 return empty_array (TYPE_TARGET_TYPE (type0), low_bound, high_bound);
10219 else
10220 {
10221 struct type *arr_type0 =
10222 to_fixed_array_type (TYPE_TARGET_TYPE (type0), NULL, 1);
10223
10224 return ada_value_slice_from_ptr (array, arr_type0,
10225 longest_to_int (low_bound),
10226 longest_to_int (high_bound));
10227 }
10228 }
10229 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10230 return array;
10231 else if (high_bound < low_bound)
10232 return empty_array (value_type (array), low_bound, high_bound);
10233 else
10234 return ada_value_slice (array, longest_to_int (low_bound),
10235 longest_to_int (high_bound));
10236 }
10237
10238 /* A helper function for BINOP_IN_BOUNDS. */
10239
10240 static value *
10241 ada_binop_in_bounds (struct expression *exp, enum noside noside,
10242 struct value *arg1, struct value *arg2, int n)
10243 {
10244 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10245 {
10246 struct type *type = language_bool_type (exp->language_defn,
10247 exp->gdbarch);
10248 return value_zero (type, not_lval);
10249 }
10250
10251 struct type *type = ada_index_type (value_type (arg2), n, "range");
10252 if (!type)
10253 type = value_type (arg1);
10254
10255 value *arg3 = value_from_longest (type, ada_array_bound (arg2, n, 1));
10256 arg2 = value_from_longest (type, ada_array_bound (arg2, n, 0));
10257
10258 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10259 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
10260 type = language_bool_type (exp->language_defn, exp->gdbarch);
10261 return value_from_longest (type,
10262 (value_less (arg1, arg3)
10263 || value_equal (arg1, arg3))
10264 && (value_less (arg2, arg1)
10265 || value_equal (arg2, arg1)));
10266 }
10267
10268 /* A helper function for some attribute operations. */
10269
10270 static value *
10271 ada_unop_atr (struct expression *exp, enum noside noside, enum exp_opcode op,
10272 struct value *arg1, struct type *type_arg, int tem)
10273 {
10274 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10275 {
10276 if (type_arg == NULL)
10277 type_arg = value_type (arg1);
10278
10279 if (ada_is_constrained_packed_array_type (type_arg))
10280 type_arg = decode_constrained_packed_array_type (type_arg);
10281
10282 if (!discrete_type_p (type_arg))
10283 {
10284 switch (op)
10285 {
10286 default: /* Should never happen. */
10287 error (_("unexpected attribute encountered"));
10288 case OP_ATR_FIRST:
10289 case OP_ATR_LAST:
10290 type_arg = ada_index_type (type_arg, tem,
10291 ada_attribute_name (op));
10292 break;
10293 case OP_ATR_LENGTH:
10294 type_arg = builtin_type (exp->gdbarch)->builtin_int;
10295 break;
10296 }
10297 }
10298
10299 return value_zero (type_arg, not_lval);
10300 }
10301 else if (type_arg == NULL)
10302 {
10303 arg1 = ada_coerce_ref (arg1);
10304
10305 if (ada_is_constrained_packed_array_type (value_type (arg1)))
10306 arg1 = ada_coerce_to_simple_array (arg1);
10307
10308 struct type *type;
10309 if (op == OP_ATR_LENGTH)
10310 type = builtin_type (exp->gdbarch)->builtin_int;
10311 else
10312 {
10313 type = ada_index_type (value_type (arg1), tem,
10314 ada_attribute_name (op));
10315 if (type == NULL)
10316 type = builtin_type (exp->gdbarch)->builtin_int;
10317 }
10318
10319 switch (op)
10320 {
10321 default: /* Should never happen. */
10322 error (_("unexpected attribute encountered"));
10323 case OP_ATR_FIRST:
10324 return value_from_longest
10325 (type, ada_array_bound (arg1, tem, 0));
10326 case OP_ATR_LAST:
10327 return value_from_longest
10328 (type, ada_array_bound (arg1, tem, 1));
10329 case OP_ATR_LENGTH:
10330 return value_from_longest
10331 (type, ada_array_length (arg1, tem));
10332 }
10333 }
10334 else if (discrete_type_p (type_arg))
10335 {
10336 struct type *range_type;
10337 const char *name = ada_type_name (type_arg);
10338
10339 range_type = NULL;
10340 if (name != NULL && type_arg->code () != TYPE_CODE_ENUM)
10341 range_type = to_fixed_range_type (type_arg, NULL);
10342 if (range_type == NULL)
10343 range_type = type_arg;
10344 switch (op)
10345 {
10346 default:
10347 error (_("unexpected attribute encountered"));
10348 case OP_ATR_FIRST:
10349 return value_from_longest
10350 (range_type, ada_discrete_type_low_bound (range_type));
10351 case OP_ATR_LAST:
10352 return value_from_longest
10353 (range_type, ada_discrete_type_high_bound (range_type));
10354 case OP_ATR_LENGTH:
10355 error (_("the 'length attribute applies only to array types"));
10356 }
10357 }
10358 else if (type_arg->code () == TYPE_CODE_FLT)
10359 error (_("unimplemented type attribute"));
10360 else
10361 {
10362 LONGEST low, high;
10363
10364 if (ada_is_constrained_packed_array_type (type_arg))
10365 type_arg = decode_constrained_packed_array_type (type_arg);
10366
10367 struct type *type;
10368 if (op == OP_ATR_LENGTH)
10369 type = builtin_type (exp->gdbarch)->builtin_int;
10370 else
10371 {
10372 type = ada_index_type (type_arg, tem, ada_attribute_name (op));
10373 if (type == NULL)
10374 type = builtin_type (exp->gdbarch)->builtin_int;
10375 }
10376
10377 switch (op)
10378 {
10379 default:
10380 error (_("unexpected attribute encountered"));
10381 case OP_ATR_FIRST:
10382 low = ada_array_bound_from_type (type_arg, tem, 0);
10383 return value_from_longest (type, low);
10384 case OP_ATR_LAST:
10385 high = ada_array_bound_from_type (type_arg, tem, 1);
10386 return value_from_longest (type, high);
10387 case OP_ATR_LENGTH:
10388 low = ada_array_bound_from_type (type_arg, tem, 0);
10389 high = ada_array_bound_from_type (type_arg, tem, 1);
10390 return value_from_longest (type, high - low + 1);
10391 }
10392 }
10393 }
10394
10395 /* A helper function for OP_ATR_MIN and OP_ATR_MAX. */
10396
10397 static struct value *
10398 ada_binop_minmax (struct type *expect_type,
10399 struct expression *exp,
10400 enum noside noside, enum exp_opcode op,
10401 struct value *arg1, struct value *arg2)
10402 {
10403 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10404 return value_zero (value_type (arg1), not_lval);
10405 else
10406 {
10407 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10408 return value_binop (arg1, arg2,
10409 op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
10410 }
10411 }
10412
10413 /* A helper function for BINOP_EXP. */
10414
10415 static struct value *
10416 ada_binop_exp (struct type *expect_type,
10417 struct expression *exp,
10418 enum noside noside, enum exp_opcode op,
10419 struct value *arg1, struct value *arg2)
10420 {
10421 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10422 return value_zero (value_type (arg1), not_lval);
10423 else
10424 {
10425 /* For integer exponentiation operations,
10426 only promote the first argument. */
10427 if (is_integral_type (value_type (arg2)))
10428 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10429 else
10430 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10431
10432 return value_binop (arg1, arg2, op);
10433 }
10434 }
10435
10436 namespace expr
10437 {
10438
10439 value *
10440 ada_wrapped_operation::evaluate (struct type *expect_type,
10441 struct expression *exp,
10442 enum noside noside)
10443 {
10444 value *result = std::get<0> (m_storage)->evaluate (expect_type, exp, noside);
10445 if (noside == EVAL_NORMAL)
10446 result = unwrap_value (result);
10447
10448 /* If evaluating an OP_FLOAT and an EXPECT_TYPE was provided,
10449 then we need to perform the conversion manually, because
10450 evaluate_subexp_standard doesn't do it. This conversion is
10451 necessary in Ada because the different kinds of float/fixed
10452 types in Ada have different representations.
10453
10454 Similarly, we need to perform the conversion from OP_LONG
10455 ourselves. */
10456 if ((opcode () == OP_FLOAT || opcode () == OP_LONG) && expect_type != NULL)
10457 result = ada_value_cast (expect_type, result);
10458
10459 return result;
10460 }
10461
10462 value *
10463 ada_string_operation::evaluate (struct type *expect_type,
10464 struct expression *exp,
10465 enum noside noside)
10466 {
10467 value *result = string_operation::evaluate (expect_type, exp, noside);
10468 /* The result type will have code OP_STRING, bashed there from
10469 OP_ARRAY. Bash it back. */
10470 if (value_type (result)->code () == TYPE_CODE_STRING)
10471 value_type (result)->set_code (TYPE_CODE_ARRAY);
10472 return result;
10473 }
10474
10475 value *
10476 ada_qual_operation::evaluate (struct type *expect_type,
10477 struct expression *exp,
10478 enum noside noside)
10479 {
10480 struct type *type = std::get<1> (m_storage);
10481 return std::get<0> (m_storage)->evaluate (type, exp, noside);
10482 }
10483
10484 value *
10485 ada_ternop_range_operation::evaluate (struct type *expect_type,
10486 struct expression *exp,
10487 enum noside noside)
10488 {
10489 value *arg0 = std::get<0> (m_storage)->evaluate (nullptr, exp, noside);
10490 value *arg1 = std::get<1> (m_storage)->evaluate (nullptr, exp, noside);
10491 value *arg2 = std::get<2> (m_storage)->evaluate (nullptr, exp, noside);
10492 return eval_ternop_in_range (expect_type, exp, noside, arg0, arg1, arg2);
10493 }
10494
10495 value *
10496 ada_binop_addsub_operation::evaluate (struct type *expect_type,
10497 struct expression *exp,
10498 enum noside noside)
10499 {
10500 value *arg1 = std::get<1> (m_storage)->evaluate_with_coercion (exp, noside);
10501 value *arg2 = std::get<2> (m_storage)->evaluate_with_coercion (exp, noside);
10502
10503 auto do_op = [=] (LONGEST x, LONGEST y)
10504 {
10505 if (std::get<0> (m_storage) == BINOP_ADD)
10506 return x + y;
10507 return x - y;
10508 };
10509
10510 if (value_type (arg1)->code () == TYPE_CODE_PTR)
10511 return (value_from_longest
10512 (value_type (arg1),
10513 do_op (value_as_long (arg1), value_as_long (arg2))));
10514 if (value_type (arg2)->code () == TYPE_CODE_PTR)
10515 return (value_from_longest
10516 (value_type (arg2),
10517 do_op (value_as_long (arg1), value_as_long (arg2))));
10518 /* Preserve the original type for use by the range case below.
10519 We cannot cast the result to a reference type, so if ARG1 is
10520 a reference type, find its underlying type. */
10521 struct type *type = value_type (arg1);
10522 while (type->code () == TYPE_CODE_REF)
10523 type = TYPE_TARGET_TYPE (type);
10524 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10525 arg1 = value_binop (arg1, arg2, std::get<0> (m_storage));
10526 /* We need to special-case the result with a range.
10527 This is done for the benefit of "ptype". gdb's Ada support
10528 historically used the LHS to set the result type here, so
10529 preserve this behavior. */
10530 if (type->code () == TYPE_CODE_RANGE)
10531 arg1 = value_cast (type, arg1);
10532 return arg1;
10533 }
10534
10535 }
10536
10537 /* Implement the evaluate_exp routine in the exp_descriptor structure
10538 for the Ada language. */
10539
10540 static struct value *
10541 ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
10542 int *pos, enum noside noside)
10543 {
10544 enum exp_opcode op;
10545 int tem;
10546 int pc;
10547 int preeval_pos;
10548 struct value *arg1 = NULL, *arg2 = NULL, *arg3;
10549 struct type *type;
10550 int nargs, oplen;
10551 struct value **argvec;
10552
10553 pc = *pos;
10554 *pos += 1;
10555 op = exp->elts[pc].opcode;
10556
10557 switch (op)
10558 {
10559 default:
10560 *pos -= 1;
10561 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10562
10563 if (noside == EVAL_NORMAL)
10564 arg1 = unwrap_value (arg1);
10565
10566 /* If evaluating an OP_FLOAT and an EXPECT_TYPE was provided,
10567 then we need to perform the conversion manually, because
10568 evaluate_subexp_standard doesn't do it. This conversion is
10569 necessary in Ada because the different kinds of float/fixed
10570 types in Ada have different representations.
10571
10572 Similarly, we need to perform the conversion from OP_LONG
10573 ourselves. */
10574 if ((op == OP_FLOAT || op == OP_LONG) && expect_type != NULL)
10575 arg1 = ada_value_cast (expect_type, arg1);
10576
10577 return arg1;
10578
10579 case OP_STRING:
10580 {
10581 struct value *result;
10582
10583 *pos -= 1;
10584 result = evaluate_subexp_standard (expect_type, exp, pos, noside);
10585 /* The result type will have code OP_STRING, bashed there from
10586 OP_ARRAY. Bash it back. */
10587 if (value_type (result)->code () == TYPE_CODE_STRING)
10588 value_type (result)->set_code (TYPE_CODE_ARRAY);
10589 return result;
10590 }
10591
10592 case UNOP_CAST:
10593 (*pos) += 2;
10594 type = exp->elts[pc + 1].type;
10595 return ada_evaluate_subexp_for_cast (exp, pos, noside, type);
10596
10597 case UNOP_QUAL:
10598 (*pos) += 2;
10599 type = exp->elts[pc + 1].type;
10600 return ada_evaluate_subexp (type, exp, pos, noside);
10601
10602 case BINOP_ASSIGN:
10603 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10604 if (exp->elts[*pos].opcode == OP_AGGREGATE)
10605 {
10606 arg1 = assign_aggregate (arg1, arg1, exp, pos, noside);
10607 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10608 return arg1;
10609 return ada_value_assign (arg1, arg1);
10610 }
10611 /* Force the evaluation of the rhs ARG2 to the type of the lhs ARG1,
10612 except if the lhs of our assignment is a convenience variable.
10613 In the case of assigning to a convenience variable, the lhs
10614 should be exactly the result of the evaluation of the rhs. */
10615 type = value_type (arg1);
10616 if (VALUE_LVAL (arg1) == lval_internalvar)
10617 type = NULL;
10618 arg2 = evaluate_subexp (type, exp, pos, noside);
10619 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10620 return arg1;
10621 if (VALUE_LVAL (arg1) == lval_internalvar)
10622 {
10623 /* Nothing. */
10624 }
10625 else
10626 arg2 = coerce_for_assign (value_type (arg1), arg2);
10627 return ada_value_assign (arg1, arg2);
10628
10629 case BINOP_ADD:
10630 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10631 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10632 if (noside == EVAL_SKIP)
10633 goto nosideret;
10634 if (value_type (arg1)->code () == TYPE_CODE_PTR)
10635 return (value_from_longest
10636 (value_type (arg1),
10637 value_as_long (arg1) + value_as_long (arg2)));
10638 if (value_type (arg2)->code () == TYPE_CODE_PTR)
10639 return (value_from_longest
10640 (value_type (arg2),
10641 value_as_long (arg1) + value_as_long (arg2)));
10642 /* Preserve the original type for use by the range case below.
10643 We cannot cast the result to a reference type, so if ARG1 is
10644 a reference type, find its underlying type. */
10645 type = value_type (arg1);
10646 while (type->code () == TYPE_CODE_REF)
10647 type = TYPE_TARGET_TYPE (type);
10648 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10649 arg1 = value_binop (arg1, arg2, BINOP_ADD);
10650 /* We need to special-case the result of adding to a range.
10651 This is done for the benefit of "ptype". gdb's Ada support
10652 historically used the LHS to set the result type here, so
10653 preserve this behavior. */
10654 if (type->code () == TYPE_CODE_RANGE)
10655 arg1 = value_cast (type, arg1);
10656 return arg1;
10657
10658 case BINOP_SUB:
10659 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10660 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10661 if (noside == EVAL_SKIP)
10662 goto nosideret;
10663 if (value_type (arg1)->code () == TYPE_CODE_PTR)
10664 return (value_from_longest
10665 (value_type (arg1),
10666 value_as_long (arg1) - value_as_long (arg2)));
10667 if (value_type (arg2)->code () == TYPE_CODE_PTR)
10668 return (value_from_longest
10669 (value_type (arg2),
10670 value_as_long (arg1) - value_as_long (arg2)));
10671 /* Preserve the original type for use by the range case below.
10672 We cannot cast the result to a reference type, so if ARG1 is
10673 a reference type, find its underlying type. */
10674 type = value_type (arg1);
10675 while (type->code () == TYPE_CODE_REF)
10676 type = TYPE_TARGET_TYPE (type);
10677 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10678 arg1 = value_binop (arg1, arg2, BINOP_SUB);
10679 /* We need to special-case the result of adding to a range.
10680 This is done for the benefit of "ptype". gdb's Ada support
10681 historically used the LHS to set the result type here, so
10682 preserve this behavior. */
10683 if (type->code () == TYPE_CODE_RANGE)
10684 arg1 = value_cast (type, arg1);
10685 return arg1;
10686
10687 case BINOP_MUL:
10688 case BINOP_DIV:
10689 case BINOP_REM:
10690 case BINOP_MOD:
10691 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10692 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10693 if (noside == EVAL_SKIP)
10694 goto nosideret;
10695 return ada_mult_binop (expect_type, exp, noside, op,
10696 arg1, arg2);
10697
10698 case BINOP_EQUAL:
10699 case BINOP_NOTEQUAL:
10700 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10701 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
10702 if (noside == EVAL_SKIP)
10703 goto nosideret;
10704 return ada_equal_binop (expect_type, exp, noside, op, arg1, arg2);
10705
10706 case UNOP_NEG:
10707 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10708 return ada_unop_neg (expect_type, exp, noside, op, arg1);
10709
10710 case BINOP_LOGICAL_AND:
10711 case BINOP_LOGICAL_OR:
10712 case UNOP_LOGICAL_NOT:
10713 {
10714 struct value *val;
10715
10716 *pos -= 1;
10717 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10718 type = language_bool_type (exp->language_defn, exp->gdbarch);
10719 return value_cast (type, val);
10720 }
10721
10722 case BINOP_BITWISE_AND:
10723 case BINOP_BITWISE_IOR:
10724 case BINOP_BITWISE_XOR:
10725 {
10726 struct value *val;
10727
10728 arg1 = evaluate_subexp (nullptr, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
10729 *pos = pc;
10730 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10731
10732 return value_cast (value_type (arg1), val);
10733 }
10734
10735 case OP_VAR_VALUE:
10736 *pos -= 1;
10737
10738 if (noside == EVAL_SKIP)
10739 {
10740 *pos += 4;
10741 goto nosideret;
10742 }
10743
10744 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
10745 /* Only encountered when an unresolved symbol occurs in a
10746 context other than a function call, in which case, it is
10747 invalid. */
10748 error (_("Unexpected unresolved symbol, %s, during evaluation"),
10749 exp->elts[pc + 2].symbol->print_name ());
10750
10751 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10752 {
10753 type = static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
10754 /* Check to see if this is a tagged type. We also need to handle
10755 the case where the type is a reference to a tagged type, but
10756 we have to be careful to exclude pointers to tagged types.
10757 The latter should be shown as usual (as a pointer), whereas
10758 a reference should mostly be transparent to the user. */
10759 if (ada_is_tagged_type (type, 0)
10760 || (type->code () == TYPE_CODE_REF
10761 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0)))
10762 {
10763 /* Tagged types are a little special in the fact that the real
10764 type is dynamic and can only be determined by inspecting the
10765 object's tag. This means that we need to get the object's
10766 value first (EVAL_NORMAL) and then extract the actual object
10767 type from its tag.
10768
10769 Note that we cannot skip the final step where we extract
10770 the object type from its tag, because the EVAL_NORMAL phase
10771 results in dynamic components being resolved into fixed ones.
10772 This can cause problems when trying to print the type
10773 description of tagged types whose parent has a dynamic size:
10774 We use the type name of the "_parent" component in order
10775 to print the name of the ancestor type in the type description.
10776 If that component had a dynamic size, the resolution into
10777 a fixed type would result in the loss of that type name,
10778 thus preventing us from printing the name of the ancestor
10779 type in the type description. */
10780 arg1 = evaluate_subexp (nullptr, exp, pos, EVAL_NORMAL);
10781
10782 if (type->code () != TYPE_CODE_REF)
10783 {
10784 struct type *actual_type;
10785
10786 actual_type = type_from_tag (ada_value_tag (arg1));
10787 if (actual_type == NULL)
10788 /* If, for some reason, we were unable to determine
10789 the actual type from the tag, then use the static
10790 approximation that we just computed as a fallback.
10791 This can happen if the debugging information is
10792 incomplete, for instance. */
10793 actual_type = type;
10794 return value_zero (actual_type, not_lval);
10795 }
10796 else
10797 {
10798 /* In the case of a ref, ada_coerce_ref takes care
10799 of determining the actual type. But the evaluation
10800 should return a ref as it should be valid to ask
10801 for its address; so rebuild a ref after coerce. */
10802 arg1 = ada_coerce_ref (arg1);
10803 return value_ref (arg1, TYPE_CODE_REF);
10804 }
10805 }
10806
10807 /* Records and unions for which GNAT encodings have been
10808 generated need to be statically fixed as well.
10809 Otherwise, non-static fixing produces a type where
10810 all dynamic properties are removed, which prevents "ptype"
10811 from being able to completely describe the type.
10812 For instance, a case statement in a variant record would be
10813 replaced by the relevant components based on the actual
10814 value of the discriminants. */
10815 if ((type->code () == TYPE_CODE_STRUCT
10816 && dynamic_template_type (type) != NULL)
10817 || (type->code () == TYPE_CODE_UNION
10818 && ada_find_parallel_type (type, "___XVU") != NULL))
10819 {
10820 *pos += 4;
10821 return value_zero (to_static_fixed_type (type), not_lval);
10822 }
10823 }
10824
10825 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10826 return ada_to_fixed_value (arg1);
10827
10828 case OP_FUNCALL:
10829 (*pos) += 2;
10830
10831 /* Allocate arg vector, including space for the function to be
10832 called in argvec[0] and a terminating NULL. */
10833 nargs = longest_to_int (exp->elts[pc + 1].longconst);
10834 argvec = XALLOCAVEC (struct value *, nargs + 2);
10835
10836 if (exp->elts[*pos].opcode == OP_VAR_VALUE
10837 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
10838 error (_("Unexpected unresolved symbol, %s, during evaluation"),
10839 exp->elts[pc + 5].symbol->print_name ());
10840 else
10841 {
10842 for (tem = 0; tem <= nargs; tem += 1)
10843 argvec[tem] = evaluate_subexp (nullptr, exp, pos, noside);
10844 argvec[tem] = 0;
10845
10846 if (noside == EVAL_SKIP)
10847 goto nosideret;
10848 }
10849
10850 if (ada_is_constrained_packed_array_type
10851 (desc_base_type (value_type (argvec[0]))))
10852 argvec[0] = ada_coerce_to_simple_array (argvec[0]);
10853 else if (value_type (argvec[0])->code () == TYPE_CODE_ARRAY
10854 && TYPE_FIELD_BITSIZE (value_type (argvec[0]), 0) != 0)
10855 /* This is a packed array that has already been fixed, and
10856 therefore already coerced to a simple array. Nothing further
10857 to do. */
10858 ;
10859 else if (value_type (argvec[0])->code () == TYPE_CODE_REF)
10860 {
10861 /* Make sure we dereference references so that all the code below
10862 feels like it's really handling the referenced value. Wrapping
10863 types (for alignment) may be there, so make sure we strip them as
10864 well. */
10865 argvec[0] = ada_to_fixed_value (coerce_ref (argvec[0]));
10866 }
10867 else if (value_type (argvec[0])->code () == TYPE_CODE_ARRAY
10868 && VALUE_LVAL (argvec[0]) == lval_memory)
10869 argvec[0] = value_addr (argvec[0]);
10870
10871 type = ada_check_typedef (value_type (argvec[0]));
10872
10873 /* Ada allows us to implicitly dereference arrays when subscripting
10874 them. So, if this is an array typedef (encoding use for array
10875 access types encoded as fat pointers), strip it now. */
10876 if (type->code () == TYPE_CODE_TYPEDEF)
10877 type = ada_typedef_target_type (type);
10878
10879 if (type->code () == TYPE_CODE_PTR)
10880 {
10881 switch (ada_check_typedef (TYPE_TARGET_TYPE (type))->code ())
10882 {
10883 case TYPE_CODE_FUNC:
10884 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
10885 break;
10886 case TYPE_CODE_ARRAY:
10887 break;
10888 case TYPE_CODE_STRUCT:
10889 if (noside != EVAL_AVOID_SIDE_EFFECTS)
10890 argvec[0] = ada_value_ind (argvec[0]);
10891 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
10892 break;
10893 default:
10894 error (_("cannot subscript or call something of type `%s'"),
10895 ada_type_name (value_type (argvec[0])));
10896 break;
10897 }
10898 }
10899
10900 switch (type->code ())
10901 {
10902 case TYPE_CODE_FUNC:
10903 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10904 {
10905 if (TYPE_TARGET_TYPE (type) == NULL)
10906 error_call_unknown_return_type (NULL);
10907 return allocate_value (TYPE_TARGET_TYPE (type));
10908 }
10909 return call_function_by_hand (argvec[0], NULL,
10910 gdb::make_array_view (argvec + 1,
10911 nargs));
10912 case TYPE_CODE_INTERNAL_FUNCTION:
10913 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10914 /* We don't know anything about what the internal
10915 function might return, but we have to return
10916 something. */
10917 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
10918 not_lval);
10919 else
10920 return call_internal_function (exp->gdbarch, exp->language_defn,
10921 argvec[0], nargs, argvec + 1);
10922
10923 case TYPE_CODE_STRUCT:
10924 {
10925 int arity;
10926
10927 arity = ada_array_arity (type);
10928 type = ada_array_element_type (type, nargs);
10929 if (type == NULL)
10930 error (_("cannot subscript or call a record"));
10931 if (arity != nargs)
10932 error (_("wrong number of subscripts; expecting %d"), arity);
10933 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10934 return value_zero (ada_aligned_type (type), lval_memory);
10935 return
10936 unwrap_value (ada_value_subscript
10937 (argvec[0], nargs, argvec + 1));
10938 }
10939 case TYPE_CODE_ARRAY:
10940 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10941 {
10942 type = ada_array_element_type (type, nargs);
10943 if (type == NULL)
10944 error (_("element type of array unknown"));
10945 else
10946 return value_zero (ada_aligned_type (type), lval_memory);
10947 }
10948 return
10949 unwrap_value (ada_value_subscript
10950 (ada_coerce_to_simple_array (argvec[0]),
10951 nargs, argvec + 1));
10952 case TYPE_CODE_PTR: /* Pointer to array */
10953 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10954 {
10955 type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1);
10956 type = ada_array_element_type (type, nargs);
10957 if (type == NULL)
10958 error (_("element type of array unknown"));
10959 else
10960 return value_zero (ada_aligned_type (type), lval_memory);
10961 }
10962 return
10963 unwrap_value (ada_value_ptr_subscript (argvec[0],
10964 nargs, argvec + 1));
10965
10966 default:
10967 error (_("Attempt to index or call something other than an "
10968 "array or function"));
10969 }
10970
10971 case TERNOP_SLICE:
10972 {
10973 struct value *array = evaluate_subexp (nullptr, exp, pos, noside);
10974 struct value *low_bound_val
10975 = evaluate_subexp (nullptr, exp, pos, noside);
10976 struct value *high_bound_val
10977 = evaluate_subexp (nullptr, exp, pos, noside);
10978
10979 if (noside == EVAL_SKIP)
10980 goto nosideret;
10981
10982 return ada_ternop_slice (exp, noside, array, low_bound_val,
10983 high_bound_val);
10984 }
10985
10986 case UNOP_IN_RANGE:
10987 (*pos) += 2;
10988 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10989 type = check_typedef (exp->elts[pc + 1].type);
10990 return ada_unop_in_range (expect_type, exp, noside, op, arg1, type);
10991
10992 case BINOP_IN_BOUNDS:
10993 (*pos) += 2;
10994 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
10995 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
10996
10997 if (noside == EVAL_SKIP)
10998 goto nosideret;
10999
11000 tem = longest_to_int (exp->elts[pc + 1].longconst);
11001
11002 return ada_binop_in_bounds (exp, noside, arg1, arg2, tem);
11003
11004 case TERNOP_IN_RANGE:
11005 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11006 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
11007 arg3 = evaluate_subexp (nullptr, exp, pos, noside);
11008
11009 return eval_ternop_in_range (expect_type, exp, noside, arg1, arg2, arg3);
11010
11011 case OP_ATR_FIRST:
11012 case OP_ATR_LAST:
11013 case OP_ATR_LENGTH:
11014 {
11015 struct type *type_arg;
11016
11017 if (exp->elts[*pos].opcode == OP_TYPE)
11018 {
11019 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
11020 arg1 = NULL;
11021 type_arg = check_typedef (exp->elts[pc + 2].type);
11022 }
11023 else
11024 {
11025 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11026 type_arg = NULL;
11027 }
11028
11029 if (exp->elts[*pos].opcode != OP_LONG)
11030 error (_("Invalid operand to '%s"), ada_attribute_name (op));
11031 tem = longest_to_int (exp->elts[*pos + 2].longconst);
11032 *pos += 4;
11033
11034 if (noside == EVAL_SKIP)
11035 goto nosideret;
11036
11037 return ada_unop_atr (exp, noside, op, arg1, type_arg, tem);
11038 }
11039
11040 case OP_ATR_TAG:
11041 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11042 if (noside == EVAL_SKIP)
11043 goto nosideret;
11044 return ada_atr_tag (expect_type, exp, noside, op, arg1);
11045
11046 case OP_ATR_MIN:
11047 case OP_ATR_MAX:
11048 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
11049 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11050 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
11051 if (noside == EVAL_SKIP)
11052 goto nosideret;
11053 return ada_binop_minmax (expect_type, exp, noside, op, arg1, arg2);
11054
11055 case OP_ATR_MODULUS:
11056 {
11057 struct type *type_arg = check_typedef (exp->elts[pc + 2].type);
11058
11059 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
11060 if (noside == EVAL_SKIP)
11061 goto nosideret;
11062
11063 if (!ada_is_modular_type (type_arg))
11064 error (_("'modulus must be applied to modular type"));
11065
11066 return value_from_longest (TYPE_TARGET_TYPE (type_arg),
11067 ada_modulus (type_arg));
11068 }
11069
11070
11071 case OP_ATR_POS:
11072 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
11073 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11074 if (noside == EVAL_SKIP)
11075 goto nosideret;
11076 type = builtin_type (exp->gdbarch)->builtin_int;
11077 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11078 return value_zero (type, not_lval);
11079 else
11080 return value_pos_atr (type, arg1);
11081
11082 case OP_ATR_SIZE:
11083 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11084 return ada_atr_size (expect_type, exp, noside, op, arg1);
11085
11086 case OP_ATR_VAL:
11087 evaluate_subexp (nullptr, exp, pos, EVAL_SKIP);
11088 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11089 type = exp->elts[pc + 2].type;
11090 if (noside == EVAL_SKIP)
11091 goto nosideret;
11092 return ada_val_atr (noside, type, arg1);
11093
11094 case BINOP_EXP:
11095 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11096 arg2 = evaluate_subexp (nullptr, exp, pos, noside);
11097 if (noside == EVAL_SKIP)
11098 goto nosideret;
11099 return ada_binop_exp (expect_type, exp, noside, op, arg1, arg2);
11100
11101 case UNOP_PLUS:
11102 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11103 if (noside == EVAL_SKIP)
11104 goto nosideret;
11105 else
11106 return arg1;
11107
11108 case UNOP_ABS:
11109 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11110 if (noside == EVAL_SKIP)
11111 goto nosideret;
11112 return ada_abs (expect_type, exp, noside, op, arg1);
11113
11114 case UNOP_IND:
11115 preeval_pos = *pos;
11116 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11117 if (noside == EVAL_SKIP)
11118 goto nosideret;
11119 type = ada_check_typedef (value_type (arg1));
11120 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11121 {
11122 if (ada_is_array_descriptor_type (type))
11123 /* GDB allows dereferencing GNAT array descriptors. */
11124 {
11125 struct type *arrType = ada_type_of_array (arg1, 0);
11126
11127 if (arrType == NULL)
11128 error (_("Attempt to dereference null array pointer."));
11129 return value_at_lazy (arrType, 0);
11130 }
11131 else if (type->code () == TYPE_CODE_PTR
11132 || type->code () == TYPE_CODE_REF
11133 /* In C you can dereference an array to get the 1st elt. */
11134 || type->code () == TYPE_CODE_ARRAY)
11135 {
11136 /* As mentioned in the OP_VAR_VALUE case, tagged types can
11137 only be determined by inspecting the object's tag.
11138 This means that we need to evaluate completely the
11139 expression in order to get its type. */
11140
11141 if ((type->code () == TYPE_CODE_REF
11142 || type->code () == TYPE_CODE_PTR)
11143 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0))
11144 {
11145 arg1
11146 = evaluate_subexp (nullptr, exp, &preeval_pos, EVAL_NORMAL);
11147 type = value_type (ada_value_ind (arg1));
11148 }
11149 else
11150 {
11151 type = to_static_fixed_type
11152 (ada_aligned_type
11153 (ada_check_typedef (TYPE_TARGET_TYPE (type))));
11154 }
11155 ada_ensure_varsize_limit (type);
11156 return value_zero (type, lval_memory);
11157 }
11158 else if (type->code () == TYPE_CODE_INT)
11159 {
11160 /* GDB allows dereferencing an int. */
11161 if (expect_type == NULL)
11162 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
11163 lval_memory);
11164 else
11165 {
11166 expect_type =
11167 to_static_fixed_type (ada_aligned_type (expect_type));
11168 return value_zero (expect_type, lval_memory);
11169 }
11170 }
11171 else
11172 error (_("Attempt to take contents of a non-pointer value."));
11173 }
11174 arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */
11175 type = ada_check_typedef (value_type (arg1));
11176
11177 if (type->code () == TYPE_CODE_INT)
11178 /* GDB allows dereferencing an int. If we were given
11179 the expect_type, then use that as the target type.
11180 Otherwise, assume that the target type is an int. */
11181 {
11182 if (expect_type != NULL)
11183 return ada_value_ind (value_cast (lookup_pointer_type (expect_type),
11184 arg1));
11185 else
11186 return value_at_lazy (builtin_type (exp->gdbarch)->builtin_int,
11187 (CORE_ADDR) value_as_address (arg1));
11188 }
11189
11190 if (ada_is_array_descriptor_type (type))
11191 /* GDB allows dereferencing GNAT array descriptors. */
11192 return ada_coerce_to_simple_array (arg1);
11193 else
11194 return ada_value_ind (arg1);
11195
11196 case STRUCTOP_STRUCT:
11197 tem = longest_to_int (exp->elts[pc + 1].longconst);
11198 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
11199 preeval_pos = *pos;
11200 arg1 = evaluate_subexp (nullptr, exp, pos, noside);
11201 if (noside == EVAL_SKIP)
11202 goto nosideret;
11203 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11204 {
11205 struct type *type1 = value_type (arg1);
11206
11207 if (ada_is_tagged_type (type1, 1))
11208 {
11209 type = ada_lookup_struct_elt_type (type1,
11210 &exp->elts[pc + 2].string,
11211 1, 1);
11212
11213 /* If the field is not found, check if it exists in the
11214 extension of this object's type. This means that we
11215 need to evaluate completely the expression. */
11216
11217 if (type == NULL)
11218 {
11219 arg1
11220 = evaluate_subexp (nullptr, exp, &preeval_pos, EVAL_NORMAL);
11221 arg1 = ada_value_struct_elt (arg1,
11222 &exp->elts[pc + 2].string,
11223 0);
11224 arg1 = unwrap_value (arg1);
11225 type = value_type (ada_to_fixed_value (arg1));
11226 }
11227 }
11228 else
11229 type =
11230 ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1,
11231 0);
11232
11233 return value_zero (ada_aligned_type (type), lval_memory);
11234 }
11235 else
11236 {
11237 arg1 = ada_value_struct_elt (arg1, &exp->elts[pc + 2].string, 0);
11238 arg1 = unwrap_value (arg1);
11239 return ada_to_fixed_value (arg1);
11240 }
11241
11242 case OP_TYPE:
11243 /* The value is not supposed to be used. This is here to make it
11244 easier to accommodate expressions that contain types. */
11245 (*pos) += 2;
11246 if (noside == EVAL_SKIP)
11247 goto nosideret;
11248 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11249 return allocate_value (exp->elts[pc + 1].type);
11250 else
11251 error (_("Attempt to use a type name as an expression"));
11252
11253 case OP_AGGREGATE:
11254 case OP_CHOICES:
11255 case OP_OTHERS:
11256 case OP_DISCRETE_RANGE:
11257 case OP_POSITIONAL:
11258 case OP_NAME:
11259 if (noside == EVAL_NORMAL)
11260 switch (op)
11261 {
11262 case OP_NAME:
11263 error (_("Undefined name, ambiguous name, or renaming used in "
11264 "component association: %s."), &exp->elts[pc+2].string);
11265 case OP_AGGREGATE:
11266 error (_("Aggregates only allowed on the right of an assignment"));
11267 default:
11268 internal_error (__FILE__, __LINE__,
11269 _("aggregate apparently mangled"));
11270 }
11271
11272 ada_forward_operator_length (exp, pc, &oplen, &nargs);
11273 *pos += oplen - 1;
11274 for (tem = 0; tem < nargs; tem += 1)
11275 ada_evaluate_subexp (NULL, exp, pos, noside);
11276 goto nosideret;
11277 }
11278
11279 nosideret:
11280 return eval_skip_value (exp);
11281 }
11282 \f
11283
11284 /* Return non-zero iff TYPE represents a System.Address type. */
11285
11286 int
11287 ada_is_system_address_type (struct type *type)
11288 {
11289 return (type->name () && strcmp (type->name (), "system__address") == 0);
11290 }
11291
11292 \f
11293
11294 /* Range types */
11295
11296 /* Scan STR beginning at position K for a discriminant name, and
11297 return the value of that discriminant field of DVAL in *PX. If
11298 PNEW_K is not null, put the position of the character beyond the
11299 name scanned in *PNEW_K. Return 1 if successful; return 0 and do
11300 not alter *PX and *PNEW_K if unsuccessful. */
11301
11302 static int
11303 scan_discrim_bound (const char *str, int k, struct value *dval, LONGEST * px,
11304 int *pnew_k)
11305 {
11306 static std::string storage;
11307 const char *pstart, *pend, *bound;
11308 struct value *bound_val;
11309
11310 if (dval == NULL || str == NULL || str[k] == '\0')
11311 return 0;
11312
11313 pstart = str + k;
11314 pend = strstr (pstart, "__");
11315 if (pend == NULL)
11316 {
11317 bound = pstart;
11318 k += strlen (bound);
11319 }
11320 else
11321 {
11322 int len = pend - pstart;
11323
11324 /* Strip __ and beyond. */
11325 storage = std::string (pstart, len);
11326 bound = storage.c_str ();
11327 k = pend - str;
11328 }
11329
11330 bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval));
11331 if (bound_val == NULL)
11332 return 0;
11333
11334 *px = value_as_long (bound_val);
11335 if (pnew_k != NULL)
11336 *pnew_k = k;
11337 return 1;
11338 }
11339
11340 /* Value of variable named NAME. Only exact matches are considered.
11341 If no such variable found, then if ERR_MSG is null, returns 0, and
11342 otherwise causes an error with message ERR_MSG. */
11343
11344 static struct value *
11345 get_var_value (const char *name, const char *err_msg)
11346 {
11347 std::string quoted_name = add_angle_brackets (name);
11348
11349 lookup_name_info lookup_name (quoted_name, symbol_name_match_type::FULL);
11350
11351 std::vector<struct block_symbol> syms
11352 = ada_lookup_symbol_list_worker (lookup_name,
11353 get_selected_block (0),
11354 VAR_DOMAIN, 1);
11355
11356 if (syms.size () != 1)
11357 {
11358 if (err_msg == NULL)
11359 return 0;
11360 else
11361 error (("%s"), err_msg);
11362 }
11363
11364 return value_of_variable (syms[0].symbol, syms[0].block);
11365 }
11366
11367 /* Value of integer variable named NAME in the current environment.
11368 If no such variable is found, returns false. Otherwise, sets VALUE
11369 to the variable's value and returns true. */
11370
11371 bool
11372 get_int_var_value (const char *name, LONGEST &value)
11373 {
11374 struct value *var_val = get_var_value (name, 0);
11375
11376 if (var_val == 0)
11377 return false;
11378
11379 value = value_as_long (var_val);
11380 return true;
11381 }
11382
11383
11384 /* Return a range type whose base type is that of the range type named
11385 NAME in the current environment, and whose bounds are calculated
11386 from NAME according to the GNAT range encoding conventions.
11387 Extract discriminant values, if needed, from DVAL. ORIG_TYPE is the
11388 corresponding range type from debug information; fall back to using it
11389 if symbol lookup fails. If a new type must be created, allocate it
11390 like ORIG_TYPE was. The bounds information, in general, is encoded
11391 in NAME, the base type given in the named range type. */
11392
11393 static struct type *
11394 to_fixed_range_type (struct type *raw_type, struct value *dval)
11395 {
11396 const char *name;
11397 struct type *base_type;
11398 const char *subtype_info;
11399
11400 gdb_assert (raw_type != NULL);
11401 gdb_assert (raw_type->name () != NULL);
11402
11403 if (raw_type->code () == TYPE_CODE_RANGE)
11404 base_type = TYPE_TARGET_TYPE (raw_type);
11405 else
11406 base_type = raw_type;
11407
11408 name = raw_type->name ();
11409 subtype_info = strstr (name, "___XD");
11410 if (subtype_info == NULL)
11411 {
11412 LONGEST L = ada_discrete_type_low_bound (raw_type);
11413 LONGEST U = ada_discrete_type_high_bound (raw_type);
11414
11415 if (L < INT_MIN || U > INT_MAX)
11416 return raw_type;
11417 else
11418 return create_static_range_type (alloc_type_copy (raw_type), raw_type,
11419 L, U);
11420 }
11421 else
11422 {
11423 int prefix_len = subtype_info - name;
11424 LONGEST L, U;
11425 struct type *type;
11426 const char *bounds_str;
11427 int n;
11428
11429 subtype_info += 5;
11430 bounds_str = strchr (subtype_info, '_');
11431 n = 1;
11432
11433 if (*subtype_info == 'L')
11434 {
11435 if (!ada_scan_number (bounds_str, n, &L, &n)
11436 && !scan_discrim_bound (bounds_str, n, dval, &L, &n))
11437 return raw_type;
11438 if (bounds_str[n] == '_')
11439 n += 2;
11440 else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */
11441 n += 1;
11442 subtype_info += 1;
11443 }
11444 else
11445 {
11446 std::string name_buf = std::string (name, prefix_len) + "___L";
11447 if (!get_int_var_value (name_buf.c_str (), L))
11448 {
11449 lim_warning (_("Unknown lower bound, using 1."));
11450 L = 1;
11451 }
11452 }
11453
11454 if (*subtype_info == 'U')
11455 {
11456 if (!ada_scan_number (bounds_str, n, &U, &n)
11457 && !scan_discrim_bound (bounds_str, n, dval, &U, &n))
11458 return raw_type;
11459 }
11460 else
11461 {
11462 std::string name_buf = std::string (name, prefix_len) + "___U";
11463 if (!get_int_var_value (name_buf.c_str (), U))
11464 {
11465 lim_warning (_("Unknown upper bound, using %ld."), (long) L);
11466 U = L;
11467 }
11468 }
11469
11470 type = create_static_range_type (alloc_type_copy (raw_type),
11471 base_type, L, U);
11472 /* create_static_range_type alters the resulting type's length
11473 to match the size of the base_type, which is not what we want.
11474 Set it back to the original range type's length. */
11475 TYPE_LENGTH (type) = TYPE_LENGTH (raw_type);
11476 type->set_name (name);
11477 return type;
11478 }
11479 }
11480
11481 /* True iff NAME is the name of a range type. */
11482
11483 int
11484 ada_is_range_type_name (const char *name)
11485 {
11486 return (name != NULL && strstr (name, "___XD"));
11487 }
11488 \f
11489
11490 /* Modular types */
11491
11492 /* True iff TYPE is an Ada modular type. */
11493
11494 int
11495 ada_is_modular_type (struct type *type)
11496 {
11497 struct type *subranged_type = get_base_type (type);
11498
11499 return (subranged_type != NULL && type->code () == TYPE_CODE_RANGE
11500 && subranged_type->code () == TYPE_CODE_INT
11501 && subranged_type->is_unsigned ());
11502 }
11503
11504 /* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */
11505
11506 ULONGEST
11507 ada_modulus (struct type *type)
11508 {
11509 const dynamic_prop &high = type->bounds ()->high;
11510
11511 if (high.kind () == PROP_CONST)
11512 return (ULONGEST) high.const_val () + 1;
11513
11514 /* If TYPE is unresolved, the high bound might be a location list. Return
11515 0, for lack of a better value to return. */
11516 return 0;
11517 }
11518 \f
11519
11520 /* Ada exception catchpoint support:
11521 ---------------------------------
11522
11523 We support 3 kinds of exception catchpoints:
11524 . catchpoints on Ada exceptions
11525 . catchpoints on unhandled Ada exceptions
11526 . catchpoints on failed assertions
11527
11528 Exceptions raised during failed assertions, or unhandled exceptions
11529 could perfectly be caught with the general catchpoint on Ada exceptions.
11530 However, we can easily differentiate these two special cases, and having
11531 the option to distinguish these two cases from the rest can be useful
11532 to zero-in on certain situations.
11533
11534 Exception catchpoints are a specialized form of breakpoint,
11535 since they rely on inserting breakpoints inside known routines
11536 of the GNAT runtime. The implementation therefore uses a standard
11537 breakpoint structure of the BP_BREAKPOINT type, but with its own set
11538 of breakpoint_ops.
11539
11540 Support in the runtime for exception catchpoints have been changed
11541 a few times already, and these changes affect the implementation
11542 of these catchpoints. In order to be able to support several
11543 variants of the runtime, we use a sniffer that will determine
11544 the runtime variant used by the program being debugged. */
11545
11546 /* Ada's standard exceptions.
11547
11548 The Ada 83 standard also defined Numeric_Error. But there so many
11549 situations where it was unclear from the Ada 83 Reference Manual
11550 (RM) whether Constraint_Error or Numeric_Error should be raised,
11551 that the ARG (Ada Rapporteur Group) eventually issued a Binding
11552 Interpretation saying that anytime the RM says that Numeric_Error
11553 should be raised, the implementation may raise Constraint_Error.
11554 Ada 95 went one step further and pretty much removed Numeric_Error
11555 from the list of standard exceptions (it made it a renaming of
11556 Constraint_Error, to help preserve compatibility when compiling
11557 an Ada83 compiler). As such, we do not include Numeric_Error from
11558 this list of standard exceptions. */
11559
11560 static const char * const standard_exc[] = {
11561 "constraint_error",
11562 "program_error",
11563 "storage_error",
11564 "tasking_error"
11565 };
11566
11567 typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void);
11568
11569 /* A structure that describes how to support exception catchpoints
11570 for a given executable. */
11571
11572 struct exception_support_info
11573 {
11574 /* The name of the symbol to break on in order to insert
11575 a catchpoint on exceptions. */
11576 const char *catch_exception_sym;
11577
11578 /* The name of the symbol to break on in order to insert
11579 a catchpoint on unhandled exceptions. */
11580 const char *catch_exception_unhandled_sym;
11581
11582 /* The name of the symbol to break on in order to insert
11583 a catchpoint on failed assertions. */
11584 const char *catch_assert_sym;
11585
11586 /* The name of the symbol to break on in order to insert
11587 a catchpoint on exception handling. */
11588 const char *catch_handlers_sym;
11589
11590 /* Assuming that the inferior just triggered an unhandled exception
11591 catchpoint, this function is responsible for returning the address
11592 in inferior memory where the name of that exception is stored.
11593 Return zero if the address could not be computed. */
11594 ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr;
11595 };
11596
11597 static CORE_ADDR ada_unhandled_exception_name_addr (void);
11598 static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void);
11599
11600 /* The following exception support info structure describes how to
11601 implement exception catchpoints with the latest version of the
11602 Ada runtime (as of 2019-08-??). */
11603
11604 static const struct exception_support_info default_exception_support_info =
11605 {
11606 "__gnat_debug_raise_exception", /* catch_exception_sym */
11607 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11608 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
11609 "__gnat_begin_handler_v1", /* catch_handlers_sym */
11610 ada_unhandled_exception_name_addr
11611 };
11612
11613 /* The following exception support info structure describes how to
11614 implement exception catchpoints with an earlier version of the
11615 Ada runtime (as of 2007-03-06) using v0 of the EH ABI. */
11616
11617 static const struct exception_support_info exception_support_info_v0 =
11618 {
11619 "__gnat_debug_raise_exception", /* catch_exception_sym */
11620 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11621 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
11622 "__gnat_begin_handler", /* catch_handlers_sym */
11623 ada_unhandled_exception_name_addr
11624 };
11625
11626 /* The following exception support info structure describes how to
11627 implement exception catchpoints with a slightly older version
11628 of the Ada runtime. */
11629
11630 static const struct exception_support_info exception_support_info_fallback =
11631 {
11632 "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */
11633 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11634 "system__assertions__raise_assert_failure", /* catch_assert_sym */
11635 "__gnat_begin_handler", /* catch_handlers_sym */
11636 ada_unhandled_exception_name_addr_from_raise
11637 };
11638
11639 /* Return nonzero if we can detect the exception support routines
11640 described in EINFO.
11641
11642 This function errors out if an abnormal situation is detected
11643 (for instance, if we find the exception support routines, but
11644 that support is found to be incomplete). */
11645
11646 static int
11647 ada_has_this_exception_support (const struct exception_support_info *einfo)
11648 {
11649 struct symbol *sym;
11650
11651 /* The symbol we're looking up is provided by a unit in the GNAT runtime
11652 that should be compiled with debugging information. As a result, we
11653 expect to find that symbol in the symtabs. */
11654
11655 sym = standard_lookup (einfo->catch_exception_sym, NULL, VAR_DOMAIN);
11656 if (sym == NULL)
11657 {
11658 /* Perhaps we did not find our symbol because the Ada runtime was
11659 compiled without debugging info, or simply stripped of it.
11660 It happens on some GNU/Linux distributions for instance, where
11661 users have to install a separate debug package in order to get
11662 the runtime's debugging info. In that situation, let the user
11663 know why we cannot insert an Ada exception catchpoint.
11664
11665 Note: Just for the purpose of inserting our Ada exception
11666 catchpoint, we could rely purely on the associated minimal symbol.
11667 But we would be operating in degraded mode anyway, since we are
11668 still lacking the debugging info needed later on to extract
11669 the name of the exception being raised (this name is printed in
11670 the catchpoint message, and is also used when trying to catch
11671 a specific exception). We do not handle this case for now. */
11672 struct bound_minimal_symbol msym
11673 = lookup_minimal_symbol (einfo->catch_exception_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 sym = standard_lookup (einfo->catch_handlers_sym, NULL, VAR_DOMAIN);
11693 if (sym == NULL)
11694 {
11695 struct bound_minimal_symbol msym
11696 = lookup_minimal_symbol (einfo->catch_handlers_sym, NULL, NULL);
11697
11698 if (msym.minsym && MSYMBOL_TYPE (msym.minsym) != mst_solib_trampoline)
11699 error (_("Your Ada runtime appears to be missing some debugging "
11700 "information.\nCannot insert Ada exception catchpoint "
11701 "in this configuration."));
11702
11703 return 0;
11704 }
11705
11706 /* Make sure that the symbol we found corresponds to a function. */
11707
11708 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
11709 {
11710 error (_("Symbol \"%s\" is not a function (class = %d)"),
11711 sym->linkage_name (), SYMBOL_CLASS (sym));
11712 return 0;
11713 }
11714
11715 return 1;
11716 }
11717
11718 /* Inspect the Ada runtime and determine which exception info structure
11719 should be used to provide support for exception catchpoints.
11720
11721 This function will always set the per-inferior exception_info,
11722 or raise an error. */
11723
11724 static void
11725 ada_exception_support_info_sniffer (void)
11726 {
11727 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11728
11729 /* If the exception info is already known, then no need to recompute it. */
11730 if (data->exception_info != NULL)
11731 return;
11732
11733 /* Check the latest (default) exception support info. */
11734 if (ada_has_this_exception_support (&default_exception_support_info))
11735 {
11736 data->exception_info = &default_exception_support_info;
11737 return;
11738 }
11739
11740 /* Try the v0 exception suport info. */
11741 if (ada_has_this_exception_support (&exception_support_info_v0))
11742 {
11743 data->exception_info = &exception_support_info_v0;
11744 return;
11745 }
11746
11747 /* Try our fallback exception suport info. */
11748 if (ada_has_this_exception_support (&exception_support_info_fallback))
11749 {
11750 data->exception_info = &exception_support_info_fallback;
11751 return;
11752 }
11753
11754 /* Sometimes, it is normal for us to not be able to find the routine
11755 we are looking for. This happens when the program is linked with
11756 the shared version of the GNAT runtime, and the program has not been
11757 started yet. Inform the user of these two possible causes if
11758 applicable. */
11759
11760 if (ada_update_initial_language (language_unknown) != language_ada)
11761 error (_("Unable to insert catchpoint. Is this an Ada main program?"));
11762
11763 /* If the symbol does not exist, then check that the program is
11764 already started, to make sure that shared libraries have been
11765 loaded. If it is not started, this may mean that the symbol is
11766 in a shared library. */
11767
11768 if (inferior_ptid.pid () == 0)
11769 error (_("Unable to insert catchpoint. Try to start the program first."));
11770
11771 /* At this point, we know that we are debugging an Ada program and
11772 that the inferior has been started, but we still are not able to
11773 find the run-time symbols. That can mean that we are in
11774 configurable run time mode, or that a-except as been optimized
11775 out by the linker... In any case, at this point it is not worth
11776 supporting this feature. */
11777
11778 error (_("Cannot insert Ada exception catchpoints in this configuration."));
11779 }
11780
11781 /* True iff FRAME is very likely to be that of a function that is
11782 part of the runtime system. This is all very heuristic, but is
11783 intended to be used as advice as to what frames are uninteresting
11784 to most users. */
11785
11786 static int
11787 is_known_support_routine (struct frame_info *frame)
11788 {
11789 enum language func_lang;
11790 int i;
11791 const char *fullname;
11792
11793 /* If this code does not have any debugging information (no symtab),
11794 This cannot be any user code. */
11795
11796 symtab_and_line sal = find_frame_sal (frame);
11797 if (sal.symtab == NULL)
11798 return 1;
11799
11800 /* If there is a symtab, but the associated source file cannot be
11801 located, then assume this is not user code: Selecting a frame
11802 for which we cannot display the code would not be very helpful
11803 for the user. This should also take care of case such as VxWorks
11804 where the kernel has some debugging info provided for a few units. */
11805
11806 fullname = symtab_to_fullname (sal.symtab);
11807 if (access (fullname, R_OK) != 0)
11808 return 1;
11809
11810 /* Check the unit filename against the Ada runtime file naming.
11811 We also check the name of the objfile against the name of some
11812 known system libraries that sometimes come with debugging info
11813 too. */
11814
11815 for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1)
11816 {
11817 re_comp (known_runtime_file_name_patterns[i]);
11818 if (re_exec (lbasename (sal.symtab->filename)))
11819 return 1;
11820 if (SYMTAB_OBJFILE (sal.symtab) != NULL
11821 && re_exec (objfile_name (SYMTAB_OBJFILE (sal.symtab))))
11822 return 1;
11823 }
11824
11825 /* Check whether the function is a GNAT-generated entity. */
11826
11827 gdb::unique_xmalloc_ptr<char> func_name
11828 = find_frame_funname (frame, &func_lang, NULL);
11829 if (func_name == NULL)
11830 return 1;
11831
11832 for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1)
11833 {
11834 re_comp (known_auxiliary_function_name_patterns[i]);
11835 if (re_exec (func_name.get ()))
11836 return 1;
11837 }
11838
11839 return 0;
11840 }
11841
11842 /* Find the first frame that contains debugging information and that is not
11843 part of the Ada run-time, starting from FI and moving upward. */
11844
11845 void
11846 ada_find_printable_frame (struct frame_info *fi)
11847 {
11848 for (; fi != NULL; fi = get_prev_frame (fi))
11849 {
11850 if (!is_known_support_routine (fi))
11851 {
11852 select_frame (fi);
11853 break;
11854 }
11855 }
11856
11857 }
11858
11859 /* Assuming that the inferior just triggered an unhandled exception
11860 catchpoint, return the address in inferior memory where the name
11861 of the exception is stored.
11862
11863 Return zero if the address could not be computed. */
11864
11865 static CORE_ADDR
11866 ada_unhandled_exception_name_addr (void)
11867 {
11868 return parse_and_eval_address ("e.full_name");
11869 }
11870
11871 /* Same as ada_unhandled_exception_name_addr, except that this function
11872 should be used when the inferior uses an older version of the runtime,
11873 where the exception name needs to be extracted from a specific frame
11874 several frames up in the callstack. */
11875
11876 static CORE_ADDR
11877 ada_unhandled_exception_name_addr_from_raise (void)
11878 {
11879 int frame_level;
11880 struct frame_info *fi;
11881 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11882
11883 /* To determine the name of this exception, we need to select
11884 the frame corresponding to RAISE_SYM_NAME. This frame is
11885 at least 3 levels up, so we simply skip the first 3 frames
11886 without checking the name of their associated function. */
11887 fi = get_current_frame ();
11888 for (frame_level = 0; frame_level < 3; frame_level += 1)
11889 if (fi != NULL)
11890 fi = get_prev_frame (fi);
11891
11892 while (fi != NULL)
11893 {
11894 enum language func_lang;
11895
11896 gdb::unique_xmalloc_ptr<char> func_name
11897 = find_frame_funname (fi, &func_lang, NULL);
11898 if (func_name != NULL)
11899 {
11900 if (strcmp (func_name.get (),
11901 data->exception_info->catch_exception_sym) == 0)
11902 break; /* We found the frame we were looking for... */
11903 }
11904 fi = get_prev_frame (fi);
11905 }
11906
11907 if (fi == NULL)
11908 return 0;
11909
11910 select_frame (fi);
11911 return parse_and_eval_address ("id.full_name");
11912 }
11913
11914 /* Assuming the inferior just triggered an Ada exception catchpoint
11915 (of any type), return the address in inferior memory where the name
11916 of the exception is stored, if applicable.
11917
11918 Assumes the selected frame is the current frame.
11919
11920 Return zero if the address could not be computed, or if not relevant. */
11921
11922 static CORE_ADDR
11923 ada_exception_name_addr_1 (enum ada_exception_catchpoint_kind ex,
11924 struct breakpoint *b)
11925 {
11926 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11927
11928 switch (ex)
11929 {
11930 case ada_catch_exception:
11931 return (parse_and_eval_address ("e.full_name"));
11932 break;
11933
11934 case ada_catch_exception_unhandled:
11935 return data->exception_info->unhandled_exception_name_addr ();
11936 break;
11937
11938 case ada_catch_handlers:
11939 return 0; /* The runtimes does not provide access to the exception
11940 name. */
11941 break;
11942
11943 case ada_catch_assert:
11944 return 0; /* Exception name is not relevant in this case. */
11945 break;
11946
11947 default:
11948 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
11949 break;
11950 }
11951
11952 return 0; /* Should never be reached. */
11953 }
11954
11955 /* Assuming the inferior is stopped at an exception catchpoint,
11956 return the message which was associated to the exception, if
11957 available. Return NULL if the message could not be retrieved.
11958
11959 Note: The exception message can be associated to an exception
11960 either through the use of the Raise_Exception function, or
11961 more simply (Ada 2005 and later), via:
11962
11963 raise Exception_Name with "exception message";
11964
11965 */
11966
11967 static gdb::unique_xmalloc_ptr<char>
11968 ada_exception_message_1 (void)
11969 {
11970 struct value *e_msg_val;
11971 int e_msg_len;
11972
11973 /* For runtimes that support this feature, the exception message
11974 is passed as an unbounded string argument called "message". */
11975 e_msg_val = parse_and_eval ("message");
11976 if (e_msg_val == NULL)
11977 return NULL; /* Exception message not supported. */
11978
11979 e_msg_val = ada_coerce_to_simple_array (e_msg_val);
11980 gdb_assert (e_msg_val != NULL);
11981 e_msg_len = TYPE_LENGTH (value_type (e_msg_val));
11982
11983 /* If the message string is empty, then treat it as if there was
11984 no exception message. */
11985 if (e_msg_len <= 0)
11986 return NULL;
11987
11988 gdb::unique_xmalloc_ptr<char> e_msg ((char *) xmalloc (e_msg_len + 1));
11989 read_memory (value_address (e_msg_val), (gdb_byte *) e_msg.get (),
11990 e_msg_len);
11991 e_msg.get ()[e_msg_len] = '\0';
11992
11993 return e_msg;
11994 }
11995
11996 /* Same as ada_exception_message_1, except that all exceptions are
11997 contained here (returning NULL instead). */
11998
11999 static gdb::unique_xmalloc_ptr<char>
12000 ada_exception_message (void)
12001 {
12002 gdb::unique_xmalloc_ptr<char> e_msg;
12003
12004 try
12005 {
12006 e_msg = ada_exception_message_1 ();
12007 }
12008 catch (const gdb_exception_error &e)
12009 {
12010 e_msg.reset (nullptr);
12011 }
12012
12013 return e_msg;
12014 }
12015
12016 /* Same as ada_exception_name_addr_1, except that it intercepts and contains
12017 any error that ada_exception_name_addr_1 might cause to be thrown.
12018 When an error is intercepted, a warning with the error message is printed,
12019 and zero is returned. */
12020
12021 static CORE_ADDR
12022 ada_exception_name_addr (enum ada_exception_catchpoint_kind ex,
12023 struct breakpoint *b)
12024 {
12025 CORE_ADDR result = 0;
12026
12027 try
12028 {
12029 result = ada_exception_name_addr_1 (ex, b);
12030 }
12031
12032 catch (const gdb_exception_error &e)
12033 {
12034 warning (_("failed to get exception name: %s"), e.what ());
12035 return 0;
12036 }
12037
12038 return result;
12039 }
12040
12041 static std::string ada_exception_catchpoint_cond_string
12042 (const char *excep_string,
12043 enum ada_exception_catchpoint_kind ex);
12044
12045 /* Ada catchpoints.
12046
12047 In the case of catchpoints on Ada exceptions, the catchpoint will
12048 stop the target on every exception the program throws. When a user
12049 specifies the name of a specific exception, we translate this
12050 request into a condition expression (in text form), and then parse
12051 it into an expression stored in each of the catchpoint's locations.
12052 We then use this condition to check whether the exception that was
12053 raised is the one the user is interested in. If not, then the
12054 target is resumed again. We store the name of the requested
12055 exception, in order to be able to re-set the condition expression
12056 when symbols change. */
12057
12058 /* An instance of this type is used to represent an Ada catchpoint
12059 breakpoint location. */
12060
12061 class ada_catchpoint_location : public bp_location
12062 {
12063 public:
12064 ada_catchpoint_location (breakpoint *owner)
12065 : bp_location (owner, bp_loc_software_breakpoint)
12066 {}
12067
12068 /* The condition that checks whether the exception that was raised
12069 is the specific exception the user specified on catchpoint
12070 creation. */
12071 expression_up excep_cond_expr;
12072 };
12073
12074 /* An instance of this type is used to represent an Ada catchpoint. */
12075
12076 struct ada_catchpoint : public breakpoint
12077 {
12078 explicit ada_catchpoint (enum ada_exception_catchpoint_kind kind)
12079 : m_kind (kind)
12080 {
12081 }
12082
12083 /* The name of the specific exception the user specified. */
12084 std::string excep_string;
12085
12086 /* What kind of catchpoint this is. */
12087 enum ada_exception_catchpoint_kind m_kind;
12088 };
12089
12090 /* Parse the exception condition string in the context of each of the
12091 catchpoint's locations, and store them for later evaluation. */
12092
12093 static void
12094 create_excep_cond_exprs (struct ada_catchpoint *c,
12095 enum ada_exception_catchpoint_kind ex)
12096 {
12097 struct bp_location *bl;
12098
12099 /* Nothing to do if there's no specific exception to catch. */
12100 if (c->excep_string.empty ())
12101 return;
12102
12103 /* Same if there are no locations... */
12104 if (c->loc == NULL)
12105 return;
12106
12107 /* Compute the condition expression in text form, from the specific
12108 expection we want to catch. */
12109 std::string cond_string
12110 = ada_exception_catchpoint_cond_string (c->excep_string.c_str (), ex);
12111
12112 /* Iterate over all the catchpoint's locations, and parse an
12113 expression for each. */
12114 for (bl = c->loc; bl != NULL; bl = bl->next)
12115 {
12116 struct ada_catchpoint_location *ada_loc
12117 = (struct ada_catchpoint_location *) bl;
12118 expression_up exp;
12119
12120 if (!bl->shlib_disabled)
12121 {
12122 const char *s;
12123
12124 s = cond_string.c_str ();
12125 try
12126 {
12127 exp = parse_exp_1 (&s, bl->address,
12128 block_for_pc (bl->address),
12129 0);
12130 }
12131 catch (const gdb_exception_error &e)
12132 {
12133 warning (_("failed to reevaluate internal exception condition "
12134 "for catchpoint %d: %s"),
12135 c->number, e.what ());
12136 }
12137 }
12138
12139 ada_loc->excep_cond_expr = std::move (exp);
12140 }
12141 }
12142
12143 /* Implement the ALLOCATE_LOCATION method in the breakpoint_ops
12144 structure for all exception catchpoint kinds. */
12145
12146 static struct bp_location *
12147 allocate_location_exception (struct breakpoint *self)
12148 {
12149 return new ada_catchpoint_location (self);
12150 }
12151
12152 /* Implement the RE_SET method in the breakpoint_ops structure for all
12153 exception catchpoint kinds. */
12154
12155 static void
12156 re_set_exception (struct breakpoint *b)
12157 {
12158 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12159
12160 /* Call the base class's method. This updates the catchpoint's
12161 locations. */
12162 bkpt_breakpoint_ops.re_set (b);
12163
12164 /* Reparse the exception conditional expressions. One for each
12165 location. */
12166 create_excep_cond_exprs (c, c->m_kind);
12167 }
12168
12169 /* Returns true if we should stop for this breakpoint hit. If the
12170 user specified a specific exception, we only want to cause a stop
12171 if the program thrown that exception. */
12172
12173 static int
12174 should_stop_exception (const struct bp_location *bl)
12175 {
12176 struct ada_catchpoint *c = (struct ada_catchpoint *) bl->owner;
12177 const struct ada_catchpoint_location *ada_loc
12178 = (const struct ada_catchpoint_location *) bl;
12179 int stop;
12180
12181 struct internalvar *var = lookup_internalvar ("_ada_exception");
12182 if (c->m_kind == ada_catch_assert)
12183 clear_internalvar (var);
12184 else
12185 {
12186 try
12187 {
12188 const char *expr;
12189
12190 if (c->m_kind == ada_catch_handlers)
12191 expr = ("GNAT_GCC_exception_Access(gcc_exception)"
12192 ".all.occurrence.id");
12193 else
12194 expr = "e";
12195
12196 struct value *exc = parse_and_eval (expr);
12197 set_internalvar (var, exc);
12198 }
12199 catch (const gdb_exception_error &ex)
12200 {
12201 clear_internalvar (var);
12202 }
12203 }
12204
12205 /* With no specific exception, should always stop. */
12206 if (c->excep_string.empty ())
12207 return 1;
12208
12209 if (ada_loc->excep_cond_expr == NULL)
12210 {
12211 /* We will have a NULL expression if back when we were creating
12212 the expressions, this location's had failed to parse. */
12213 return 1;
12214 }
12215
12216 stop = 1;
12217 try
12218 {
12219 struct value *mark;
12220
12221 mark = value_mark ();
12222 stop = value_true (evaluate_expression (ada_loc->excep_cond_expr.get ()));
12223 value_free_to_mark (mark);
12224 }
12225 catch (const gdb_exception &ex)
12226 {
12227 exception_fprintf (gdb_stderr, ex,
12228 _("Error in testing exception condition:\n"));
12229 }
12230
12231 return stop;
12232 }
12233
12234 /* Implement the CHECK_STATUS method in the breakpoint_ops structure
12235 for all exception catchpoint kinds. */
12236
12237 static void
12238 check_status_exception (bpstat bs)
12239 {
12240 bs->stop = should_stop_exception (bs->bp_location_at.get ());
12241 }
12242
12243 /* Implement the PRINT_IT method in the breakpoint_ops structure
12244 for all exception catchpoint kinds. */
12245
12246 static enum print_stop_action
12247 print_it_exception (bpstat bs)
12248 {
12249 struct ui_out *uiout = current_uiout;
12250 struct breakpoint *b = bs->breakpoint_at;
12251
12252 annotate_catchpoint (b->number);
12253
12254 if (uiout->is_mi_like_p ())
12255 {
12256 uiout->field_string ("reason",
12257 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
12258 uiout->field_string ("disp", bpdisp_text (b->disposition));
12259 }
12260
12261 uiout->text (b->disposition == disp_del
12262 ? "\nTemporary catchpoint " : "\nCatchpoint ");
12263 uiout->field_signed ("bkptno", b->number);
12264 uiout->text (", ");
12265
12266 /* ada_exception_name_addr relies on the selected frame being the
12267 current frame. Need to do this here because this function may be
12268 called more than once when printing a stop, and below, we'll
12269 select the first frame past the Ada run-time (see
12270 ada_find_printable_frame). */
12271 select_frame (get_current_frame ());
12272
12273 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12274 switch (c->m_kind)
12275 {
12276 case ada_catch_exception:
12277 case ada_catch_exception_unhandled:
12278 case ada_catch_handlers:
12279 {
12280 const CORE_ADDR addr = ada_exception_name_addr (c->m_kind, b);
12281 char exception_name[256];
12282
12283 if (addr != 0)
12284 {
12285 read_memory (addr, (gdb_byte *) exception_name,
12286 sizeof (exception_name) - 1);
12287 exception_name [sizeof (exception_name) - 1] = '\0';
12288 }
12289 else
12290 {
12291 /* For some reason, we were unable to read the exception
12292 name. This could happen if the Runtime was compiled
12293 without debugging info, for instance. In that case,
12294 just replace the exception name by the generic string
12295 "exception" - it will read as "an exception" in the
12296 notification we are about to print. */
12297 memcpy (exception_name, "exception", sizeof ("exception"));
12298 }
12299 /* In the case of unhandled exception breakpoints, we print
12300 the exception name as "unhandled EXCEPTION_NAME", to make
12301 it clearer to the user which kind of catchpoint just got
12302 hit. We used ui_out_text to make sure that this extra
12303 info does not pollute the exception name in the MI case. */
12304 if (c->m_kind == ada_catch_exception_unhandled)
12305 uiout->text ("unhandled ");
12306 uiout->field_string ("exception-name", exception_name);
12307 }
12308 break;
12309 case ada_catch_assert:
12310 /* In this case, the name of the exception is not really
12311 important. Just print "failed assertion" to make it clearer
12312 that his program just hit an assertion-failure catchpoint.
12313 We used ui_out_text because this info does not belong in
12314 the MI output. */
12315 uiout->text ("failed assertion");
12316 break;
12317 }
12318
12319 gdb::unique_xmalloc_ptr<char> exception_message = ada_exception_message ();
12320 if (exception_message != NULL)
12321 {
12322 uiout->text (" (");
12323 uiout->field_string ("exception-message", exception_message.get ());
12324 uiout->text (")");
12325 }
12326
12327 uiout->text (" at ");
12328 ada_find_printable_frame (get_current_frame ());
12329
12330 return PRINT_SRC_AND_LOC;
12331 }
12332
12333 /* Implement the PRINT_ONE method in the breakpoint_ops structure
12334 for all exception catchpoint kinds. */
12335
12336 static void
12337 print_one_exception (struct breakpoint *b, struct bp_location **last_loc)
12338 {
12339 struct ui_out *uiout = current_uiout;
12340 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12341 struct value_print_options opts;
12342
12343 get_user_print_options (&opts);
12344
12345 if (opts.addressprint)
12346 uiout->field_skip ("addr");
12347
12348 annotate_field (5);
12349 switch (c->m_kind)
12350 {
12351 case ada_catch_exception:
12352 if (!c->excep_string.empty ())
12353 {
12354 std::string msg = string_printf (_("`%s' Ada exception"),
12355 c->excep_string.c_str ());
12356
12357 uiout->field_string ("what", msg);
12358 }
12359 else
12360 uiout->field_string ("what", "all Ada exceptions");
12361
12362 break;
12363
12364 case ada_catch_exception_unhandled:
12365 uiout->field_string ("what", "unhandled Ada exceptions");
12366 break;
12367
12368 case ada_catch_handlers:
12369 if (!c->excep_string.empty ())
12370 {
12371 uiout->field_fmt ("what",
12372 _("`%s' Ada exception handlers"),
12373 c->excep_string.c_str ());
12374 }
12375 else
12376 uiout->field_string ("what", "all Ada exceptions handlers");
12377 break;
12378
12379 case ada_catch_assert:
12380 uiout->field_string ("what", "failed Ada assertions");
12381 break;
12382
12383 default:
12384 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12385 break;
12386 }
12387 }
12388
12389 /* Implement the PRINT_MENTION method in the breakpoint_ops structure
12390 for all exception catchpoint kinds. */
12391
12392 static void
12393 print_mention_exception (struct breakpoint *b)
12394 {
12395 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12396 struct ui_out *uiout = current_uiout;
12397
12398 uiout->text (b->disposition == disp_del ? _("Temporary catchpoint ")
12399 : _("Catchpoint "));
12400 uiout->field_signed ("bkptno", b->number);
12401 uiout->text (": ");
12402
12403 switch (c->m_kind)
12404 {
12405 case ada_catch_exception:
12406 if (!c->excep_string.empty ())
12407 {
12408 std::string info = string_printf (_("`%s' Ada exception"),
12409 c->excep_string.c_str ());
12410 uiout->text (info.c_str ());
12411 }
12412 else
12413 uiout->text (_("all Ada exceptions"));
12414 break;
12415
12416 case ada_catch_exception_unhandled:
12417 uiout->text (_("unhandled Ada exceptions"));
12418 break;
12419
12420 case ada_catch_handlers:
12421 if (!c->excep_string.empty ())
12422 {
12423 std::string info
12424 = string_printf (_("`%s' Ada exception handlers"),
12425 c->excep_string.c_str ());
12426 uiout->text (info.c_str ());
12427 }
12428 else
12429 uiout->text (_("all Ada exceptions handlers"));
12430 break;
12431
12432 case ada_catch_assert:
12433 uiout->text (_("failed Ada assertions"));
12434 break;
12435
12436 default:
12437 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12438 break;
12439 }
12440 }
12441
12442 /* Implement the PRINT_RECREATE method in the breakpoint_ops structure
12443 for all exception catchpoint kinds. */
12444
12445 static void
12446 print_recreate_exception (struct breakpoint *b, struct ui_file *fp)
12447 {
12448 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12449
12450 switch (c->m_kind)
12451 {
12452 case ada_catch_exception:
12453 fprintf_filtered (fp, "catch exception");
12454 if (!c->excep_string.empty ())
12455 fprintf_filtered (fp, " %s", c->excep_string.c_str ());
12456 break;
12457
12458 case ada_catch_exception_unhandled:
12459 fprintf_filtered (fp, "catch exception unhandled");
12460 break;
12461
12462 case ada_catch_handlers:
12463 fprintf_filtered (fp, "catch handlers");
12464 break;
12465
12466 case ada_catch_assert:
12467 fprintf_filtered (fp, "catch assert");
12468 break;
12469
12470 default:
12471 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12472 }
12473 print_recreate_thread (b, fp);
12474 }
12475
12476 /* Virtual tables for various breakpoint types. */
12477 static struct breakpoint_ops catch_exception_breakpoint_ops;
12478 static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops;
12479 static struct breakpoint_ops catch_assert_breakpoint_ops;
12480 static struct breakpoint_ops catch_handlers_breakpoint_ops;
12481
12482 /* See ada-lang.h. */
12483
12484 bool
12485 is_ada_exception_catchpoint (breakpoint *bp)
12486 {
12487 return (bp->ops == &catch_exception_breakpoint_ops
12488 || bp->ops == &catch_exception_unhandled_breakpoint_ops
12489 || bp->ops == &catch_assert_breakpoint_ops
12490 || bp->ops == &catch_handlers_breakpoint_ops);
12491 }
12492
12493 /* Split the arguments specified in a "catch exception" command.
12494 Set EX to the appropriate catchpoint type.
12495 Set EXCEP_STRING to the name of the specific exception if
12496 specified by the user.
12497 IS_CATCH_HANDLERS_CMD: True if the arguments are for a
12498 "catch handlers" command. False otherwise.
12499 If a condition is found at the end of the arguments, the condition
12500 expression is stored in COND_STRING (memory must be deallocated
12501 after use). Otherwise COND_STRING is set to NULL. */
12502
12503 static void
12504 catch_ada_exception_command_split (const char *args,
12505 bool is_catch_handlers_cmd,
12506 enum ada_exception_catchpoint_kind *ex,
12507 std::string *excep_string,
12508 std::string *cond_string)
12509 {
12510 std::string exception_name;
12511
12512 exception_name = extract_arg (&args);
12513 if (exception_name == "if")
12514 {
12515 /* This is not an exception name; this is the start of a condition
12516 expression for a catchpoint on all exceptions. So, "un-get"
12517 this token, and set exception_name to NULL. */
12518 exception_name.clear ();
12519 args -= 2;
12520 }
12521
12522 /* Check to see if we have a condition. */
12523
12524 args = skip_spaces (args);
12525 if (startswith (args, "if")
12526 && (isspace (args[2]) || args[2] == '\0'))
12527 {
12528 args += 2;
12529 args = skip_spaces (args);
12530
12531 if (args[0] == '\0')
12532 error (_("Condition missing after `if' keyword"));
12533 *cond_string = args;
12534
12535 args += strlen (args);
12536 }
12537
12538 /* Check that we do not have any more arguments. Anything else
12539 is unexpected. */
12540
12541 if (args[0] != '\0')
12542 error (_("Junk at end of expression"));
12543
12544 if (is_catch_handlers_cmd)
12545 {
12546 /* Catch handling of exceptions. */
12547 *ex = ada_catch_handlers;
12548 *excep_string = exception_name;
12549 }
12550 else if (exception_name.empty ())
12551 {
12552 /* Catch all exceptions. */
12553 *ex = ada_catch_exception;
12554 excep_string->clear ();
12555 }
12556 else if (exception_name == "unhandled")
12557 {
12558 /* Catch unhandled exceptions. */
12559 *ex = ada_catch_exception_unhandled;
12560 excep_string->clear ();
12561 }
12562 else
12563 {
12564 /* Catch a specific exception. */
12565 *ex = ada_catch_exception;
12566 *excep_string = exception_name;
12567 }
12568 }
12569
12570 /* Return the name of the symbol on which we should break in order to
12571 implement a catchpoint of the EX kind. */
12572
12573 static const char *
12574 ada_exception_sym_name (enum ada_exception_catchpoint_kind ex)
12575 {
12576 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
12577
12578 gdb_assert (data->exception_info != NULL);
12579
12580 switch (ex)
12581 {
12582 case ada_catch_exception:
12583 return (data->exception_info->catch_exception_sym);
12584 break;
12585 case ada_catch_exception_unhandled:
12586 return (data->exception_info->catch_exception_unhandled_sym);
12587 break;
12588 case ada_catch_assert:
12589 return (data->exception_info->catch_assert_sym);
12590 break;
12591 case ada_catch_handlers:
12592 return (data->exception_info->catch_handlers_sym);
12593 break;
12594 default:
12595 internal_error (__FILE__, __LINE__,
12596 _("unexpected catchpoint kind (%d)"), ex);
12597 }
12598 }
12599
12600 /* Return the breakpoint ops "virtual table" used for catchpoints
12601 of the EX kind. */
12602
12603 static const struct breakpoint_ops *
12604 ada_exception_breakpoint_ops (enum ada_exception_catchpoint_kind ex)
12605 {
12606 switch (ex)
12607 {
12608 case ada_catch_exception:
12609 return (&catch_exception_breakpoint_ops);
12610 break;
12611 case ada_catch_exception_unhandled:
12612 return (&catch_exception_unhandled_breakpoint_ops);
12613 break;
12614 case ada_catch_assert:
12615 return (&catch_assert_breakpoint_ops);
12616 break;
12617 case ada_catch_handlers:
12618 return (&catch_handlers_breakpoint_ops);
12619 break;
12620 default:
12621 internal_error (__FILE__, __LINE__,
12622 _("unexpected catchpoint kind (%d)"), ex);
12623 }
12624 }
12625
12626 /* Return the condition that will be used to match the current exception
12627 being raised with the exception that the user wants to catch. This
12628 assumes that this condition is used when the inferior just triggered
12629 an exception catchpoint.
12630 EX: the type of catchpoints used for catching Ada exceptions. */
12631
12632 static std::string
12633 ada_exception_catchpoint_cond_string (const char *excep_string,
12634 enum ada_exception_catchpoint_kind ex)
12635 {
12636 int i;
12637 bool is_standard_exc = false;
12638 std::string result;
12639
12640 if (ex == ada_catch_handlers)
12641 {
12642 /* For exception handlers catchpoints, the condition string does
12643 not use the same parameter as for the other exceptions. */
12644 result = ("long_integer (GNAT_GCC_exception_Access"
12645 "(gcc_exception).all.occurrence.id)");
12646 }
12647 else
12648 result = "long_integer (e)";
12649
12650 /* The standard exceptions are a special case. They are defined in
12651 runtime units that have been compiled without debugging info; if
12652 EXCEP_STRING is the not-fully-qualified name of a standard
12653 exception (e.g. "constraint_error") then, during the evaluation
12654 of the condition expression, the symbol lookup on this name would
12655 *not* return this standard exception. The catchpoint condition
12656 may then be set only on user-defined exceptions which have the
12657 same not-fully-qualified name (e.g. my_package.constraint_error).
12658
12659 To avoid this unexcepted behavior, these standard exceptions are
12660 systematically prefixed by "standard". This means that "catch
12661 exception constraint_error" is rewritten into "catch exception
12662 standard.constraint_error".
12663
12664 If an exception named constraint_error is defined in another package of
12665 the inferior program, then the only way to specify this exception as a
12666 breakpoint condition is to use its fully-qualified named:
12667 e.g. my_package.constraint_error. */
12668
12669 for (i = 0; i < sizeof (standard_exc) / sizeof (char *); i++)
12670 {
12671 if (strcmp (standard_exc [i], excep_string) == 0)
12672 {
12673 is_standard_exc = true;
12674 break;
12675 }
12676 }
12677
12678 result += " = ";
12679
12680 if (is_standard_exc)
12681 string_appendf (result, "long_integer (&standard.%s)", excep_string);
12682 else
12683 string_appendf (result, "long_integer (&%s)", excep_string);
12684
12685 return result;
12686 }
12687
12688 /* Return the symtab_and_line that should be used to insert an exception
12689 catchpoint of the TYPE kind.
12690
12691 ADDR_STRING returns the name of the function where the real
12692 breakpoint that implements the catchpoints is set, depending on the
12693 type of catchpoint we need to create. */
12694
12695 static struct symtab_and_line
12696 ada_exception_sal (enum ada_exception_catchpoint_kind ex,
12697 std::string *addr_string, const struct breakpoint_ops **ops)
12698 {
12699 const char *sym_name;
12700 struct symbol *sym;
12701
12702 /* First, find out which exception support info to use. */
12703 ada_exception_support_info_sniffer ();
12704
12705 /* Then lookup the function on which we will break in order to catch
12706 the Ada exceptions requested by the user. */
12707 sym_name = ada_exception_sym_name (ex);
12708 sym = standard_lookup (sym_name, NULL, VAR_DOMAIN);
12709
12710 if (sym == NULL)
12711 error (_("Catchpoint symbol not found: %s"), sym_name);
12712
12713 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
12714 error (_("Unable to insert catchpoint. %s is not a function."), sym_name);
12715
12716 /* Set ADDR_STRING. */
12717 *addr_string = sym_name;
12718
12719 /* Set OPS. */
12720 *ops = ada_exception_breakpoint_ops (ex);
12721
12722 return find_function_start_sal (sym, 1);
12723 }
12724
12725 /* Create an Ada exception catchpoint.
12726
12727 EX_KIND is the kind of exception catchpoint to be created.
12728
12729 If EXCEPT_STRING is empty, this catchpoint is expected to trigger
12730 for all exceptions. Otherwise, EXCEPT_STRING indicates the name
12731 of the exception to which this catchpoint applies.
12732
12733 COND_STRING, if not empty, is the catchpoint condition.
12734
12735 TEMPFLAG, if nonzero, means that the underlying breakpoint
12736 should be temporary.
12737
12738 FROM_TTY is the usual argument passed to all commands implementations. */
12739
12740 void
12741 create_ada_exception_catchpoint (struct gdbarch *gdbarch,
12742 enum ada_exception_catchpoint_kind ex_kind,
12743 const std::string &excep_string,
12744 const std::string &cond_string,
12745 int tempflag,
12746 int disabled,
12747 int from_tty)
12748 {
12749 std::string addr_string;
12750 const struct breakpoint_ops *ops = NULL;
12751 struct symtab_and_line sal = ada_exception_sal (ex_kind, &addr_string, &ops);
12752
12753 std::unique_ptr<ada_catchpoint> c (new ada_catchpoint (ex_kind));
12754 init_ada_exception_breakpoint (c.get (), gdbarch, sal, addr_string.c_str (),
12755 ops, tempflag, disabled, from_tty);
12756 c->excep_string = excep_string;
12757 create_excep_cond_exprs (c.get (), ex_kind);
12758 if (!cond_string.empty ())
12759 set_breakpoint_condition (c.get (), cond_string.c_str (), from_tty, false);
12760 install_breakpoint (0, std::move (c), 1);
12761 }
12762
12763 /* Implement the "catch exception" command. */
12764
12765 static void
12766 catch_ada_exception_command (const char *arg_entry, int from_tty,
12767 struct cmd_list_element *command)
12768 {
12769 const char *arg = arg_entry;
12770 struct gdbarch *gdbarch = get_current_arch ();
12771 int tempflag;
12772 enum ada_exception_catchpoint_kind ex_kind;
12773 std::string excep_string;
12774 std::string cond_string;
12775
12776 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12777
12778 if (!arg)
12779 arg = "";
12780 catch_ada_exception_command_split (arg, false, &ex_kind, &excep_string,
12781 &cond_string);
12782 create_ada_exception_catchpoint (gdbarch, ex_kind,
12783 excep_string, cond_string,
12784 tempflag, 1 /* enabled */,
12785 from_tty);
12786 }
12787
12788 /* Implement the "catch handlers" command. */
12789
12790 static void
12791 catch_ada_handlers_command (const char *arg_entry, int from_tty,
12792 struct cmd_list_element *command)
12793 {
12794 const char *arg = arg_entry;
12795 struct gdbarch *gdbarch = get_current_arch ();
12796 int tempflag;
12797 enum ada_exception_catchpoint_kind ex_kind;
12798 std::string excep_string;
12799 std::string cond_string;
12800
12801 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12802
12803 if (!arg)
12804 arg = "";
12805 catch_ada_exception_command_split (arg, true, &ex_kind, &excep_string,
12806 &cond_string);
12807 create_ada_exception_catchpoint (gdbarch, ex_kind,
12808 excep_string, cond_string,
12809 tempflag, 1 /* enabled */,
12810 from_tty);
12811 }
12812
12813 /* Completion function for the Ada "catch" commands. */
12814
12815 static void
12816 catch_ada_completer (struct cmd_list_element *cmd, completion_tracker &tracker,
12817 const char *text, const char *word)
12818 {
12819 std::vector<ada_exc_info> exceptions = ada_exceptions_list (NULL);
12820
12821 for (const ada_exc_info &info : exceptions)
12822 {
12823 if (startswith (info.name, word))
12824 tracker.add_completion (make_unique_xstrdup (info.name));
12825 }
12826 }
12827
12828 /* Split the arguments specified in a "catch assert" command.
12829
12830 ARGS contains the command's arguments (or the empty string if
12831 no arguments were passed).
12832
12833 If ARGS contains a condition, set COND_STRING to that condition
12834 (the memory needs to be deallocated after use). */
12835
12836 static void
12837 catch_ada_assert_command_split (const char *args, std::string &cond_string)
12838 {
12839 args = skip_spaces (args);
12840
12841 /* Check whether a condition was provided. */
12842 if (startswith (args, "if")
12843 && (isspace (args[2]) || args[2] == '\0'))
12844 {
12845 args += 2;
12846 args = skip_spaces (args);
12847 if (args[0] == '\0')
12848 error (_("condition missing after `if' keyword"));
12849 cond_string.assign (args);
12850 }
12851
12852 /* Otherwise, there should be no other argument at the end of
12853 the command. */
12854 else if (args[0] != '\0')
12855 error (_("Junk at end of arguments."));
12856 }
12857
12858 /* Implement the "catch assert" command. */
12859
12860 static void
12861 catch_assert_command (const char *arg_entry, int from_tty,
12862 struct cmd_list_element *command)
12863 {
12864 const char *arg = arg_entry;
12865 struct gdbarch *gdbarch = get_current_arch ();
12866 int tempflag;
12867 std::string cond_string;
12868
12869 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12870
12871 if (!arg)
12872 arg = "";
12873 catch_ada_assert_command_split (arg, cond_string);
12874 create_ada_exception_catchpoint (gdbarch, ada_catch_assert,
12875 "", cond_string,
12876 tempflag, 1 /* enabled */,
12877 from_tty);
12878 }
12879
12880 /* Return non-zero if the symbol SYM is an Ada exception object. */
12881
12882 static int
12883 ada_is_exception_sym (struct symbol *sym)
12884 {
12885 const char *type_name = SYMBOL_TYPE (sym)->name ();
12886
12887 return (SYMBOL_CLASS (sym) != LOC_TYPEDEF
12888 && SYMBOL_CLASS (sym) != LOC_BLOCK
12889 && SYMBOL_CLASS (sym) != LOC_CONST
12890 && SYMBOL_CLASS (sym) != LOC_UNRESOLVED
12891 && type_name != NULL && strcmp (type_name, "exception") == 0);
12892 }
12893
12894 /* Given a global symbol SYM, return non-zero iff SYM is a non-standard
12895 Ada exception object. This matches all exceptions except the ones
12896 defined by the Ada language. */
12897
12898 static int
12899 ada_is_non_standard_exception_sym (struct symbol *sym)
12900 {
12901 int i;
12902
12903 if (!ada_is_exception_sym (sym))
12904 return 0;
12905
12906 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
12907 if (strcmp (sym->linkage_name (), standard_exc[i]) == 0)
12908 return 0; /* A standard exception. */
12909
12910 /* Numeric_Error is also a standard exception, so exclude it.
12911 See the STANDARD_EXC description for more details as to why
12912 this exception is not listed in that array. */
12913 if (strcmp (sym->linkage_name (), "numeric_error") == 0)
12914 return 0;
12915
12916 return 1;
12917 }
12918
12919 /* A helper function for std::sort, comparing two struct ada_exc_info
12920 objects.
12921
12922 The comparison is determined first by exception name, and then
12923 by exception address. */
12924
12925 bool
12926 ada_exc_info::operator< (const ada_exc_info &other) const
12927 {
12928 int result;
12929
12930 result = strcmp (name, other.name);
12931 if (result < 0)
12932 return true;
12933 if (result == 0 && addr < other.addr)
12934 return true;
12935 return false;
12936 }
12937
12938 bool
12939 ada_exc_info::operator== (const ada_exc_info &other) const
12940 {
12941 return addr == other.addr && strcmp (name, other.name) == 0;
12942 }
12943
12944 /* Sort EXCEPTIONS using compare_ada_exception_info as the comparison
12945 routine, but keeping the first SKIP elements untouched.
12946
12947 All duplicates are also removed. */
12948
12949 static void
12950 sort_remove_dups_ada_exceptions_list (std::vector<ada_exc_info> *exceptions,
12951 int skip)
12952 {
12953 std::sort (exceptions->begin () + skip, exceptions->end ());
12954 exceptions->erase (std::unique (exceptions->begin () + skip, exceptions->end ()),
12955 exceptions->end ());
12956 }
12957
12958 /* Add all exceptions defined by the Ada standard whose name match
12959 a regular expression.
12960
12961 If PREG is not NULL, then this regexp_t object is used to
12962 perform the symbol name matching. Otherwise, no name-based
12963 filtering is performed.
12964
12965 EXCEPTIONS is a vector of exceptions to which matching exceptions
12966 gets pushed. */
12967
12968 static void
12969 ada_add_standard_exceptions (compiled_regex *preg,
12970 std::vector<ada_exc_info> *exceptions)
12971 {
12972 int i;
12973
12974 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
12975 {
12976 if (preg == NULL
12977 || preg->exec (standard_exc[i], 0, NULL, 0) == 0)
12978 {
12979 struct bound_minimal_symbol msymbol
12980 = ada_lookup_simple_minsym (standard_exc[i]);
12981
12982 if (msymbol.minsym != NULL)
12983 {
12984 struct ada_exc_info info
12985 = {standard_exc[i], BMSYMBOL_VALUE_ADDRESS (msymbol)};
12986
12987 exceptions->push_back (info);
12988 }
12989 }
12990 }
12991 }
12992
12993 /* Add all Ada exceptions defined locally and accessible from the given
12994 FRAME.
12995
12996 If PREG is not NULL, then this regexp_t object is used to
12997 perform the symbol name matching. Otherwise, no name-based
12998 filtering is performed.
12999
13000 EXCEPTIONS is a vector of exceptions to which matching exceptions
13001 gets pushed. */
13002
13003 static void
13004 ada_add_exceptions_from_frame (compiled_regex *preg,
13005 struct frame_info *frame,
13006 std::vector<ada_exc_info> *exceptions)
13007 {
13008 const struct block *block = get_frame_block (frame, 0);
13009
13010 while (block != 0)
13011 {
13012 struct block_iterator iter;
13013 struct symbol *sym;
13014
13015 ALL_BLOCK_SYMBOLS (block, iter, sym)
13016 {
13017 switch (SYMBOL_CLASS (sym))
13018 {
13019 case LOC_TYPEDEF:
13020 case LOC_BLOCK:
13021 case LOC_CONST:
13022 break;
13023 default:
13024 if (ada_is_exception_sym (sym))
13025 {
13026 struct ada_exc_info info = {sym->print_name (),
13027 SYMBOL_VALUE_ADDRESS (sym)};
13028
13029 exceptions->push_back (info);
13030 }
13031 }
13032 }
13033 if (BLOCK_FUNCTION (block) != NULL)
13034 break;
13035 block = BLOCK_SUPERBLOCK (block);
13036 }
13037 }
13038
13039 /* Return true if NAME matches PREG or if PREG is NULL. */
13040
13041 static bool
13042 name_matches_regex (const char *name, compiled_regex *preg)
13043 {
13044 return (preg == NULL
13045 || preg->exec (ada_decode (name).c_str (), 0, NULL, 0) == 0);
13046 }
13047
13048 /* Add all exceptions defined globally whose name name match
13049 a regular expression, excluding standard exceptions.
13050
13051 The reason we exclude standard exceptions is that they need
13052 to be handled separately: Standard exceptions are defined inside
13053 a runtime unit which is normally not compiled with debugging info,
13054 and thus usually do not show up in our symbol search. However,
13055 if the unit was in fact built with debugging info, we need to
13056 exclude them because they would duplicate the entry we found
13057 during the special loop that specifically searches for those
13058 standard exceptions.
13059
13060 If PREG is not NULL, then this regexp_t object is used to
13061 perform the symbol name matching. Otherwise, no name-based
13062 filtering is performed.
13063
13064 EXCEPTIONS is a vector of exceptions to which matching exceptions
13065 gets pushed. */
13066
13067 static void
13068 ada_add_global_exceptions (compiled_regex *preg,
13069 std::vector<ada_exc_info> *exceptions)
13070 {
13071 /* In Ada, the symbol "search name" is a linkage name, whereas the
13072 regular expression used to do the matching refers to the natural
13073 name. So match against the decoded name. */
13074 expand_symtabs_matching (NULL,
13075 lookup_name_info::match_any (),
13076 [&] (const char *search_name)
13077 {
13078 std::string decoded = ada_decode (search_name);
13079 return name_matches_regex (decoded.c_str (), preg);
13080 },
13081 NULL,
13082 VARIABLES_DOMAIN);
13083
13084 for (objfile *objfile : current_program_space->objfiles ())
13085 {
13086 for (compunit_symtab *s : objfile->compunits ())
13087 {
13088 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (s);
13089 int i;
13090
13091 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
13092 {
13093 const struct block *b = BLOCKVECTOR_BLOCK (bv, i);
13094 struct block_iterator iter;
13095 struct symbol *sym;
13096
13097 ALL_BLOCK_SYMBOLS (b, iter, sym)
13098 if (ada_is_non_standard_exception_sym (sym)
13099 && name_matches_regex (sym->natural_name (), preg))
13100 {
13101 struct ada_exc_info info
13102 = {sym->print_name (), SYMBOL_VALUE_ADDRESS (sym)};
13103
13104 exceptions->push_back (info);
13105 }
13106 }
13107 }
13108 }
13109 }
13110
13111 /* Implements ada_exceptions_list with the regular expression passed
13112 as a regex_t, rather than a string.
13113
13114 If not NULL, PREG is used to filter out exceptions whose names
13115 do not match. Otherwise, all exceptions are listed. */
13116
13117 static std::vector<ada_exc_info>
13118 ada_exceptions_list_1 (compiled_regex *preg)
13119 {
13120 std::vector<ada_exc_info> result;
13121 int prev_len;
13122
13123 /* First, list the known standard exceptions. These exceptions
13124 need to be handled separately, as they are usually defined in
13125 runtime units that have been compiled without debugging info. */
13126
13127 ada_add_standard_exceptions (preg, &result);
13128
13129 /* Next, find all exceptions whose scope is local and accessible
13130 from the currently selected frame. */
13131
13132 if (has_stack_frames ())
13133 {
13134 prev_len = result.size ();
13135 ada_add_exceptions_from_frame (preg, get_selected_frame (NULL),
13136 &result);
13137 if (result.size () > prev_len)
13138 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13139 }
13140
13141 /* Add all exceptions whose scope is global. */
13142
13143 prev_len = result.size ();
13144 ada_add_global_exceptions (preg, &result);
13145 if (result.size () > prev_len)
13146 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13147
13148 return result;
13149 }
13150
13151 /* Return a vector of ada_exc_info.
13152
13153 If REGEXP is NULL, all exceptions are included in the result.
13154 Otherwise, it should contain a valid regular expression,
13155 and only the exceptions whose names match that regular expression
13156 are included in the result.
13157
13158 The exceptions are sorted in the following order:
13159 - Standard exceptions (defined by the Ada language), in
13160 alphabetical order;
13161 - Exceptions only visible from the current frame, in
13162 alphabetical order;
13163 - Exceptions whose scope is global, in alphabetical order. */
13164
13165 std::vector<ada_exc_info>
13166 ada_exceptions_list (const char *regexp)
13167 {
13168 if (regexp == NULL)
13169 return ada_exceptions_list_1 (NULL);
13170
13171 compiled_regex reg (regexp, REG_NOSUB, _("invalid regular expression"));
13172 return ada_exceptions_list_1 (&reg);
13173 }
13174
13175 /* Implement the "info exceptions" command. */
13176
13177 static void
13178 info_exceptions_command (const char *regexp, int from_tty)
13179 {
13180 struct gdbarch *gdbarch = get_current_arch ();
13181
13182 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp);
13183
13184 if (regexp != NULL)
13185 printf_filtered
13186 (_("All Ada exceptions matching regular expression \"%s\":\n"), regexp);
13187 else
13188 printf_filtered (_("All defined Ada exceptions:\n"));
13189
13190 for (const ada_exc_info &info : exceptions)
13191 printf_filtered ("%s: %s\n", info.name, paddress (gdbarch, info.addr));
13192 }
13193
13194 /* Operators */
13195 /* Information about operators given special treatment in functions
13196 below. */
13197 /* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */
13198
13199 #define ADA_OPERATORS \
13200 OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \
13201 OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \
13202 OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \
13203 OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \
13204 OP_DEFN (OP_ATR_LAST, 1, 2, 0) \
13205 OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \
13206 OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \
13207 OP_DEFN (OP_ATR_MAX, 1, 3, 0) \
13208 OP_DEFN (OP_ATR_MIN, 1, 3, 0) \
13209 OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \
13210 OP_DEFN (OP_ATR_POS, 1, 2, 0) \
13211 OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \
13212 OP_DEFN (OP_ATR_TAG, 1, 1, 0) \
13213 OP_DEFN (OP_ATR_VAL, 1, 2, 0) \
13214 OP_DEFN (UNOP_QUAL, 3, 1, 0) \
13215 OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \
13216 OP_DEFN (OP_OTHERS, 1, 1, 0) \
13217 OP_DEFN (OP_POSITIONAL, 3, 1, 0) \
13218 OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0)
13219
13220 static void
13221 ada_operator_length (const struct expression *exp, int pc, int *oplenp,
13222 int *argsp)
13223 {
13224 switch (exp->elts[pc - 1].opcode)
13225 {
13226 default:
13227 operator_length_standard (exp, pc, oplenp, argsp);
13228 break;
13229
13230 #define OP_DEFN(op, len, args, binop) \
13231 case op: *oplenp = len; *argsp = args; break;
13232 ADA_OPERATORS;
13233 #undef OP_DEFN
13234
13235 case OP_AGGREGATE:
13236 *oplenp = 3;
13237 *argsp = longest_to_int (exp->elts[pc - 2].longconst);
13238 break;
13239
13240 case OP_CHOICES:
13241 *oplenp = 3;
13242 *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1;
13243 break;
13244 }
13245 }
13246
13247 /* Implementation of the exp_descriptor method operator_check. */
13248
13249 static int
13250 ada_operator_check (struct expression *exp, int pos,
13251 int (*objfile_func) (struct objfile *objfile, void *data),
13252 void *data)
13253 {
13254 const union exp_element *const elts = exp->elts;
13255 struct type *type = NULL;
13256
13257 switch (elts[pos].opcode)
13258 {
13259 case UNOP_IN_RANGE:
13260 case UNOP_QUAL:
13261 type = elts[pos + 1].type;
13262 break;
13263
13264 default:
13265 return operator_check_standard (exp, pos, objfile_func, data);
13266 }
13267
13268 /* Invoke callbacks for TYPE and OBJFILE if they were set as non-NULL. */
13269
13270 if (type != nullptr && type->objfile_owner () != nullptr
13271 && objfile_func (type->objfile_owner (), data))
13272 return 1;
13273
13274 return 0;
13275 }
13276
13277 /* As for operator_length, but assumes PC is pointing at the first
13278 element of the operator, and gives meaningful results only for the
13279 Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */
13280
13281 static void
13282 ada_forward_operator_length (struct expression *exp, int pc,
13283 int *oplenp, int *argsp)
13284 {
13285 switch (exp->elts[pc].opcode)
13286 {
13287 default:
13288 *oplenp = *argsp = 0;
13289 break;
13290
13291 #define OP_DEFN(op, len, args, binop) \
13292 case op: *oplenp = len; *argsp = args; break;
13293 ADA_OPERATORS;
13294 #undef OP_DEFN
13295
13296 case OP_AGGREGATE:
13297 *oplenp = 3;
13298 *argsp = longest_to_int (exp->elts[pc + 1].longconst);
13299 break;
13300
13301 case OP_CHOICES:
13302 *oplenp = 3;
13303 *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1;
13304 break;
13305
13306 case OP_STRING:
13307 case OP_NAME:
13308 {
13309 int len = longest_to_int (exp->elts[pc + 1].longconst);
13310
13311 *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1);
13312 *argsp = 0;
13313 break;
13314 }
13315 }
13316 }
13317
13318 static int
13319 ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
13320 {
13321 enum exp_opcode op = exp->elts[elt].opcode;
13322 int oplen, nargs;
13323 int pc = elt;
13324 int i;
13325
13326 ada_forward_operator_length (exp, elt, &oplen, &nargs);
13327
13328 switch (op)
13329 {
13330 /* Ada attributes ('Foo). */
13331 case OP_ATR_FIRST:
13332 case OP_ATR_LAST:
13333 case OP_ATR_LENGTH:
13334 case OP_ATR_IMAGE:
13335 case OP_ATR_MAX:
13336 case OP_ATR_MIN:
13337 case OP_ATR_MODULUS:
13338 case OP_ATR_POS:
13339 case OP_ATR_SIZE:
13340 case OP_ATR_TAG:
13341 case OP_ATR_VAL:
13342 break;
13343
13344 case UNOP_IN_RANGE:
13345 case UNOP_QUAL:
13346 /* XXX: gdb_sprint_host_address, type_sprint */
13347 fprintf_filtered (stream, _("Type @"));
13348 gdb_print_host_address (exp->elts[pc + 1].type, stream);
13349 fprintf_filtered (stream, " (");
13350 type_print (exp->elts[pc + 1].type, NULL, stream, 0);
13351 fprintf_filtered (stream, ")");
13352 break;
13353 case BINOP_IN_BOUNDS:
13354 fprintf_filtered (stream, " (%d)",
13355 longest_to_int (exp->elts[pc + 2].longconst));
13356 break;
13357 case TERNOP_IN_RANGE:
13358 break;
13359
13360 case OP_AGGREGATE:
13361 case OP_OTHERS:
13362 case OP_DISCRETE_RANGE:
13363 case OP_POSITIONAL:
13364 case OP_CHOICES:
13365 break;
13366
13367 case OP_NAME:
13368 case OP_STRING:
13369 {
13370 char *name = &exp->elts[elt + 2].string;
13371 int len = longest_to_int (exp->elts[elt + 1].longconst);
13372
13373 fprintf_filtered (stream, "Text: `%.*s'", len, name);
13374 break;
13375 }
13376
13377 default:
13378 return dump_subexp_body_standard (exp, stream, elt);
13379 }
13380
13381 elt += oplen;
13382 for (i = 0; i < nargs; i += 1)
13383 elt = dump_subexp (exp, stream, elt);
13384
13385 return elt;
13386 }
13387
13388 /* The Ada extension of print_subexp (q.v.). */
13389
13390 static void
13391 ada_print_subexp (struct expression *exp, int *pos,
13392 struct ui_file *stream, enum precedence prec)
13393 {
13394 int oplen, nargs, i;
13395 int pc = *pos;
13396 enum exp_opcode op = exp->elts[pc].opcode;
13397
13398 ada_forward_operator_length (exp, pc, &oplen, &nargs);
13399
13400 *pos += oplen;
13401 switch (op)
13402 {
13403 default:
13404 *pos -= oplen;
13405 print_subexp_standard (exp, pos, stream, prec);
13406 return;
13407
13408 case OP_VAR_VALUE:
13409 fputs_filtered (exp->elts[pc + 2].symbol->natural_name (), stream);
13410 return;
13411
13412 case BINOP_IN_BOUNDS:
13413 /* XXX: sprint_subexp */
13414 print_subexp (exp, pos, stream, PREC_SUFFIX);
13415 fputs_filtered (" in ", stream);
13416 print_subexp (exp, pos, stream, PREC_SUFFIX);
13417 fputs_filtered ("'range", stream);
13418 if (exp->elts[pc + 1].longconst > 1)
13419 fprintf_filtered (stream, "(%ld)",
13420 (long) exp->elts[pc + 1].longconst);
13421 return;
13422
13423 case TERNOP_IN_RANGE:
13424 if (prec >= PREC_EQUAL)
13425 fputs_filtered ("(", stream);
13426 /* XXX: sprint_subexp */
13427 print_subexp (exp, pos, stream, PREC_SUFFIX);
13428 fputs_filtered (" in ", stream);
13429 print_subexp (exp, pos, stream, PREC_EQUAL);
13430 fputs_filtered (" .. ", stream);
13431 print_subexp (exp, pos, stream, PREC_EQUAL);
13432 if (prec >= PREC_EQUAL)
13433 fputs_filtered (")", stream);
13434 return;
13435
13436 case OP_ATR_FIRST:
13437 case OP_ATR_LAST:
13438 case OP_ATR_LENGTH:
13439 case OP_ATR_IMAGE:
13440 case OP_ATR_MAX:
13441 case OP_ATR_MIN:
13442 case OP_ATR_MODULUS:
13443 case OP_ATR_POS:
13444 case OP_ATR_SIZE:
13445 case OP_ATR_TAG:
13446 case OP_ATR_VAL:
13447 if (exp->elts[*pos].opcode == OP_TYPE)
13448 {
13449 if (exp->elts[*pos + 1].type->code () != TYPE_CODE_VOID)
13450 LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0,
13451 &type_print_raw_options);
13452 *pos += 3;
13453 }
13454 else
13455 print_subexp (exp, pos, stream, PREC_SUFFIX);
13456 fprintf_filtered (stream, "'%s", ada_attribute_name (op));
13457 if (nargs > 1)
13458 {
13459 int tem;
13460
13461 for (tem = 1; tem < nargs; tem += 1)
13462 {
13463 fputs_filtered ((tem == 1) ? " (" : ", ", stream);
13464 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
13465 }
13466 fputs_filtered (")", stream);
13467 }
13468 return;
13469
13470 case UNOP_QUAL:
13471 type_print (exp->elts[pc + 1].type, "", stream, 0);
13472 fputs_filtered ("'(", stream);
13473 print_subexp (exp, pos, stream, PREC_PREFIX);
13474 fputs_filtered (")", stream);
13475 return;
13476
13477 case UNOP_IN_RANGE:
13478 /* XXX: sprint_subexp */
13479 print_subexp (exp, pos, stream, PREC_SUFFIX);
13480 fputs_filtered (" in ", stream);
13481 LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0,
13482 &type_print_raw_options);
13483 return;
13484
13485 case OP_DISCRETE_RANGE:
13486 print_subexp (exp, pos, stream, PREC_SUFFIX);
13487 fputs_filtered ("..", stream);
13488 print_subexp (exp, pos, stream, PREC_SUFFIX);
13489 return;
13490
13491 case OP_OTHERS:
13492 fputs_filtered ("others => ", stream);
13493 print_subexp (exp, pos, stream, PREC_SUFFIX);
13494 return;
13495
13496 case OP_CHOICES:
13497 for (i = 0; i < nargs-1; i += 1)
13498 {
13499 if (i > 0)
13500 fputs_filtered ("|", stream);
13501 print_subexp (exp, pos, stream, PREC_SUFFIX);
13502 }
13503 fputs_filtered (" => ", stream);
13504 print_subexp (exp, pos, stream, PREC_SUFFIX);
13505 return;
13506
13507 case OP_POSITIONAL:
13508 print_subexp (exp, pos, stream, PREC_SUFFIX);
13509 return;
13510
13511 case OP_AGGREGATE:
13512 fputs_filtered ("(", stream);
13513 for (i = 0; i < nargs; i += 1)
13514 {
13515 if (i > 0)
13516 fputs_filtered (", ", stream);
13517 print_subexp (exp, pos, stream, PREC_SUFFIX);
13518 }
13519 fputs_filtered (")", stream);
13520 return;
13521 }
13522 }
13523
13524 /* Table mapping opcodes into strings for printing operators
13525 and precedences of the operators. */
13526
13527 static const struct op_print ada_op_print_tab[] = {
13528 {":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
13529 {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
13530 {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
13531 {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
13532 {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
13533 {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
13534 {"=", BINOP_EQUAL, PREC_EQUAL, 0},
13535 {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
13536 {"<=", BINOP_LEQ, PREC_ORDER, 0},
13537 {">=", BINOP_GEQ, PREC_ORDER, 0},
13538 {">", BINOP_GTR, PREC_ORDER, 0},
13539 {"<", BINOP_LESS, PREC_ORDER, 0},
13540 {">>", BINOP_RSH, PREC_SHIFT, 0},
13541 {"<<", BINOP_LSH, PREC_SHIFT, 0},
13542 {"+", BINOP_ADD, PREC_ADD, 0},
13543 {"-", BINOP_SUB, PREC_ADD, 0},
13544 {"&", BINOP_CONCAT, PREC_ADD, 0},
13545 {"*", BINOP_MUL, PREC_MUL, 0},
13546 {"/", BINOP_DIV, PREC_MUL, 0},
13547 {"rem", BINOP_REM, PREC_MUL, 0},
13548 {"mod", BINOP_MOD, PREC_MUL, 0},
13549 {"**", BINOP_EXP, PREC_REPEAT, 0},
13550 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
13551 {"-", UNOP_NEG, PREC_PREFIX, 0},
13552 {"+", UNOP_PLUS, PREC_PREFIX, 0},
13553 {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
13554 {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0},
13555 {"abs ", UNOP_ABS, PREC_PREFIX, 0},
13556 {".all", UNOP_IND, PREC_SUFFIX, 1},
13557 {"'access", UNOP_ADDR, PREC_SUFFIX, 1},
13558 {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1},
13559 {NULL, OP_NULL, PREC_SUFFIX, 0}
13560 };
13561 \f
13562 /* Language vector */
13563
13564 static const struct exp_descriptor ada_exp_descriptor = {
13565 ada_print_subexp,
13566 ada_operator_length,
13567 ada_operator_check,
13568 ada_dump_subexp_body,
13569 ada_evaluate_subexp
13570 };
13571
13572 /* symbol_name_matcher_ftype adapter for wild_match. */
13573
13574 static bool
13575 do_wild_match (const char *symbol_search_name,
13576 const lookup_name_info &lookup_name,
13577 completion_match_result *comp_match_res)
13578 {
13579 return wild_match (symbol_search_name, ada_lookup_name (lookup_name));
13580 }
13581
13582 /* symbol_name_matcher_ftype adapter for full_match. */
13583
13584 static bool
13585 do_full_match (const char *symbol_search_name,
13586 const lookup_name_info &lookup_name,
13587 completion_match_result *comp_match_res)
13588 {
13589 const char *lname = lookup_name.ada ().lookup_name ().c_str ();
13590
13591 /* If both symbols start with "_ada_", just let the loop below
13592 handle the comparison. However, if only the symbol name starts
13593 with "_ada_", skip the prefix and let the match proceed as
13594 usual. */
13595 if (startswith (symbol_search_name, "_ada_")
13596 && !startswith (lname, "_ada"))
13597 symbol_search_name += 5;
13598
13599 int uscore_count = 0;
13600 while (*lname != '\0')
13601 {
13602 if (*symbol_search_name != *lname)
13603 {
13604 if (*symbol_search_name == 'B' && uscore_count == 2
13605 && symbol_search_name[1] == '_')
13606 {
13607 symbol_search_name += 2;
13608 while (isdigit (*symbol_search_name))
13609 ++symbol_search_name;
13610 if (symbol_search_name[0] == '_'
13611 && symbol_search_name[1] == '_')
13612 {
13613 symbol_search_name += 2;
13614 continue;
13615 }
13616 }
13617 return false;
13618 }
13619
13620 if (*symbol_search_name == '_')
13621 ++uscore_count;
13622 else
13623 uscore_count = 0;
13624
13625 ++symbol_search_name;
13626 ++lname;
13627 }
13628
13629 return is_name_suffix (symbol_search_name);
13630 }
13631
13632 /* symbol_name_matcher_ftype for exact (verbatim) matches. */
13633
13634 static bool
13635 do_exact_match (const char *symbol_search_name,
13636 const lookup_name_info &lookup_name,
13637 completion_match_result *comp_match_res)
13638 {
13639 return strcmp (symbol_search_name, ada_lookup_name (lookup_name)) == 0;
13640 }
13641
13642 /* Build the Ada lookup name for LOOKUP_NAME. */
13643
13644 ada_lookup_name_info::ada_lookup_name_info (const lookup_name_info &lookup_name)
13645 {
13646 gdb::string_view user_name = lookup_name.name ();
13647
13648 if (!user_name.empty () && user_name[0] == '<')
13649 {
13650 if (user_name.back () == '>')
13651 m_encoded_name
13652 = gdb::to_string (user_name.substr (1, user_name.size () - 2));
13653 else
13654 m_encoded_name
13655 = gdb::to_string (user_name.substr (1, user_name.size () - 1));
13656 m_encoded_p = true;
13657 m_verbatim_p = true;
13658 m_wild_match_p = false;
13659 m_standard_p = false;
13660 }
13661 else
13662 {
13663 m_verbatim_p = false;
13664
13665 m_encoded_p = user_name.find ("__") != gdb::string_view::npos;
13666
13667 if (!m_encoded_p)
13668 {
13669 const char *folded = ada_fold_name (user_name);
13670 m_encoded_name = ada_encode_1 (folded, false);
13671 if (m_encoded_name.empty ())
13672 m_encoded_name = gdb::to_string (user_name);
13673 }
13674 else
13675 m_encoded_name = gdb::to_string (user_name);
13676
13677 /* Handle the 'package Standard' special case. See description
13678 of m_standard_p. */
13679 if (startswith (m_encoded_name.c_str (), "standard__"))
13680 {
13681 m_encoded_name = m_encoded_name.substr (sizeof ("standard__") - 1);
13682 m_standard_p = true;
13683 }
13684 else
13685 m_standard_p = false;
13686
13687 /* If the name contains a ".", then the user is entering a fully
13688 qualified entity name, and the match must not be done in wild
13689 mode. Similarly, if the user wants to complete what looks
13690 like an encoded name, the match must not be done in wild
13691 mode. Also, in the standard__ special case always do
13692 non-wild matching. */
13693 m_wild_match_p
13694 = (lookup_name.match_type () != symbol_name_match_type::FULL
13695 && !m_encoded_p
13696 && !m_standard_p
13697 && user_name.find ('.') == std::string::npos);
13698 }
13699 }
13700
13701 /* symbol_name_matcher_ftype method for Ada. This only handles
13702 completion mode. */
13703
13704 static bool
13705 ada_symbol_name_matches (const char *symbol_search_name,
13706 const lookup_name_info &lookup_name,
13707 completion_match_result *comp_match_res)
13708 {
13709 return lookup_name.ada ().matches (symbol_search_name,
13710 lookup_name.match_type (),
13711 comp_match_res);
13712 }
13713
13714 /* A name matcher that matches the symbol name exactly, with
13715 strcmp. */
13716
13717 static bool
13718 literal_symbol_name_matcher (const char *symbol_search_name,
13719 const lookup_name_info &lookup_name,
13720 completion_match_result *comp_match_res)
13721 {
13722 gdb::string_view name_view = lookup_name.name ();
13723
13724 if (lookup_name.completion_mode ()
13725 ? (strncmp (symbol_search_name, name_view.data (),
13726 name_view.size ()) == 0)
13727 : symbol_search_name == name_view)
13728 {
13729 if (comp_match_res != NULL)
13730 comp_match_res->set_match (symbol_search_name);
13731 return true;
13732 }
13733 else
13734 return false;
13735 }
13736
13737 /* Implement the "get_symbol_name_matcher" language_defn method for
13738 Ada. */
13739
13740 static symbol_name_matcher_ftype *
13741 ada_get_symbol_name_matcher (const lookup_name_info &lookup_name)
13742 {
13743 if (lookup_name.match_type () == symbol_name_match_type::SEARCH_NAME)
13744 return literal_symbol_name_matcher;
13745
13746 if (lookup_name.completion_mode ())
13747 return ada_symbol_name_matches;
13748 else
13749 {
13750 if (lookup_name.ada ().wild_match_p ())
13751 return do_wild_match;
13752 else if (lookup_name.ada ().verbatim_p ())
13753 return do_exact_match;
13754 else
13755 return do_full_match;
13756 }
13757 }
13758
13759 /* Class representing the Ada language. */
13760
13761 class ada_language : public language_defn
13762 {
13763 public:
13764 ada_language ()
13765 : language_defn (language_ada)
13766 { /* Nothing. */ }
13767
13768 /* See language.h. */
13769
13770 const char *name () const override
13771 { return "ada"; }
13772
13773 /* See language.h. */
13774
13775 const char *natural_name () const override
13776 { return "Ada"; }
13777
13778 /* See language.h. */
13779
13780 const std::vector<const char *> &filename_extensions () const override
13781 {
13782 static const std::vector<const char *> extensions
13783 = { ".adb", ".ads", ".a", ".ada", ".dg" };
13784 return extensions;
13785 }
13786
13787 /* Print an array element index using the Ada syntax. */
13788
13789 void print_array_index (struct type *index_type,
13790 LONGEST index,
13791 struct ui_file *stream,
13792 const value_print_options *options) const override
13793 {
13794 struct value *index_value = val_atr (index_type, index);
13795
13796 value_print (index_value, stream, options);
13797 fprintf_filtered (stream, " => ");
13798 }
13799
13800 /* Implement the "read_var_value" language_defn method for Ada. */
13801
13802 struct value *read_var_value (struct symbol *var,
13803 const struct block *var_block,
13804 struct frame_info *frame) const override
13805 {
13806 /* The only case where default_read_var_value is not sufficient
13807 is when VAR is a renaming... */
13808 if (frame != nullptr)
13809 {
13810 const struct block *frame_block = get_frame_block (frame, NULL);
13811 if (frame_block != nullptr && ada_is_renaming_symbol (var))
13812 return ada_read_renaming_var_value (var, frame_block);
13813 }
13814
13815 /* This is a typical case where we expect the default_read_var_value
13816 function to work. */
13817 return language_defn::read_var_value (var, var_block, frame);
13818 }
13819
13820 /* See language.h. */
13821 void language_arch_info (struct gdbarch *gdbarch,
13822 struct language_arch_info *lai) const override
13823 {
13824 const struct builtin_type *builtin = builtin_type (gdbarch);
13825
13826 /* Helper function to allow shorter lines below. */
13827 auto add = [&] (struct type *t)
13828 {
13829 lai->add_primitive_type (t);
13830 };
13831
13832 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13833 0, "integer"));
13834 add (arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
13835 0, "long_integer"));
13836 add (arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
13837 0, "short_integer"));
13838 struct type *char_type = arch_character_type (gdbarch, TARGET_CHAR_BIT,
13839 0, "character");
13840 lai->set_string_char_type (char_type);
13841 add (char_type);
13842 add (arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
13843 "float", gdbarch_float_format (gdbarch)));
13844 add (arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
13845 "long_float", gdbarch_double_format (gdbarch)));
13846 add (arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
13847 0, "long_long_integer"));
13848 add (arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
13849 "long_long_float",
13850 gdbarch_long_double_format (gdbarch)));
13851 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13852 0, "natural"));
13853 add (arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13854 0, "positive"));
13855 add (builtin->builtin_void);
13856
13857 struct type *system_addr_ptr
13858 = lookup_pointer_type (arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT,
13859 "void"));
13860 system_addr_ptr->set_name ("system__address");
13861 add (system_addr_ptr);
13862
13863 /* Create the equivalent of the System.Storage_Elements.Storage_Offset
13864 type. This is a signed integral type whose size is the same as
13865 the size of addresses. */
13866 unsigned int addr_length = TYPE_LENGTH (system_addr_ptr);
13867 add (arch_integer_type (gdbarch, addr_length * HOST_CHAR_BIT, 0,
13868 "storage_offset"));
13869
13870 lai->set_bool_type (builtin->builtin_bool);
13871 }
13872
13873 /* See language.h. */
13874
13875 bool iterate_over_symbols
13876 (const struct block *block, const lookup_name_info &name,
13877 domain_enum domain,
13878 gdb::function_view<symbol_found_callback_ftype> callback) const override
13879 {
13880 std::vector<struct block_symbol> results
13881 = ada_lookup_symbol_list_worker (name, block, domain, 0);
13882 for (block_symbol &sym : results)
13883 {
13884 if (!callback (&sym))
13885 return false;
13886 }
13887
13888 return true;
13889 }
13890
13891 /* See language.h. */
13892 bool sniff_from_mangled_name (const char *mangled,
13893 char **out) const override
13894 {
13895 std::string demangled = ada_decode (mangled);
13896
13897 *out = NULL;
13898
13899 if (demangled != mangled && demangled[0] != '<')
13900 {
13901 /* Set the gsymbol language to Ada, but still return 0.
13902 Two reasons for that:
13903
13904 1. For Ada, we prefer computing the symbol's decoded name
13905 on the fly rather than pre-compute it, in order to save
13906 memory (Ada projects are typically very large).
13907
13908 2. There are some areas in the definition of the GNAT
13909 encoding where, with a bit of bad luck, we might be able
13910 to decode a non-Ada symbol, generating an incorrect
13911 demangled name (Eg: names ending with "TB" for instance
13912 are identified as task bodies and so stripped from
13913 the decoded name returned).
13914
13915 Returning true, here, but not setting *DEMANGLED, helps us get
13916 a little bit of the best of both worlds. Because we're last,
13917 we should not affect any of the other languages that were
13918 able to demangle the symbol before us; we get to correctly
13919 tag Ada symbols as such; and even if we incorrectly tagged a
13920 non-Ada symbol, which should be rare, any routing through the
13921 Ada language should be transparent (Ada tries to behave much
13922 like C/C++ with non-Ada symbols). */
13923 return true;
13924 }
13925
13926 return false;
13927 }
13928
13929 /* See language.h. */
13930
13931 char *demangle_symbol (const char *mangled, int options) const override
13932 {
13933 return ada_la_decode (mangled, options);
13934 }
13935
13936 /* See language.h. */
13937
13938 void print_type (struct type *type, const char *varstring,
13939 struct ui_file *stream, int show, int level,
13940 const struct type_print_options *flags) const override
13941 {
13942 ada_print_type (type, varstring, stream, show, level, flags);
13943 }
13944
13945 /* See language.h. */
13946
13947 const char *word_break_characters (void) const override
13948 {
13949 return ada_completer_word_break_characters;
13950 }
13951
13952 /* See language.h. */
13953
13954 void collect_symbol_completion_matches (completion_tracker &tracker,
13955 complete_symbol_mode mode,
13956 symbol_name_match_type name_match_type,
13957 const char *text, const char *word,
13958 enum type_code code) const override
13959 {
13960 struct symbol *sym;
13961 const struct block *b, *surrounding_static_block = 0;
13962 struct block_iterator iter;
13963
13964 gdb_assert (code == TYPE_CODE_UNDEF);
13965
13966 lookup_name_info lookup_name (text, name_match_type, true);
13967
13968 /* First, look at the partial symtab symbols. */
13969 expand_symtabs_matching (NULL,
13970 lookup_name,
13971 NULL,
13972 NULL,
13973 ALL_DOMAIN);
13974
13975 /* At this point scan through the misc symbol vectors and add each
13976 symbol you find to the list. Eventually we want to ignore
13977 anything that isn't a text symbol (everything else will be
13978 handled by the psymtab code above). */
13979
13980 for (objfile *objfile : current_program_space->objfiles ())
13981 {
13982 for (minimal_symbol *msymbol : objfile->msymbols ())
13983 {
13984 QUIT;
13985
13986 if (completion_skip_symbol (mode, msymbol))
13987 continue;
13988
13989 language symbol_language = msymbol->language ();
13990
13991 /* Ada minimal symbols won't have their language set to Ada. If
13992 we let completion_list_add_name compare using the
13993 default/C-like matcher, then when completing e.g., symbols in a
13994 package named "pck", we'd match internal Ada symbols like
13995 "pckS", which are invalid in an Ada expression, unless you wrap
13996 them in '<' '>' to request a verbatim match.
13997
13998 Unfortunately, some Ada encoded names successfully demangle as
13999 C++ symbols (using an old mangling scheme), such as "name__2Xn"
14000 -> "Xn::name(void)" and thus some Ada minimal symbols end up
14001 with the wrong language set. Paper over that issue here. */
14002 if (symbol_language == language_auto
14003 || symbol_language == language_cplus)
14004 symbol_language = language_ada;
14005
14006 completion_list_add_name (tracker,
14007 symbol_language,
14008 msymbol->linkage_name (),
14009 lookup_name, text, word);
14010 }
14011 }
14012
14013 /* Search upwards from currently selected frame (so that we can
14014 complete on local vars. */
14015
14016 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
14017 {
14018 if (!BLOCK_SUPERBLOCK (b))
14019 surrounding_static_block = b; /* For elmin of dups */
14020
14021 ALL_BLOCK_SYMBOLS (b, iter, sym)
14022 {
14023 if (completion_skip_symbol (mode, sym))
14024 continue;
14025
14026 completion_list_add_name (tracker,
14027 sym->language (),
14028 sym->linkage_name (),
14029 lookup_name, text, word);
14030 }
14031 }
14032
14033 /* Go through the symtabs and check the externs and statics for
14034 symbols which match. */
14035
14036 for (objfile *objfile : current_program_space->objfiles ())
14037 {
14038 for (compunit_symtab *s : objfile->compunits ())
14039 {
14040 QUIT;
14041 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), GLOBAL_BLOCK);
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 for (objfile *objfile : current_program_space->objfiles ())
14056 {
14057 for (compunit_symtab *s : objfile->compunits ())
14058 {
14059 QUIT;
14060 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), STATIC_BLOCK);
14061 /* Don't do this block twice. */
14062 if (b == surrounding_static_block)
14063 continue;
14064 ALL_BLOCK_SYMBOLS (b, iter, sym)
14065 {
14066 if (completion_skip_symbol (mode, sym))
14067 continue;
14068
14069 completion_list_add_name (tracker,
14070 sym->language (),
14071 sym->linkage_name (),
14072 lookup_name, text, word);
14073 }
14074 }
14075 }
14076 }
14077
14078 /* See language.h. */
14079
14080 gdb::unique_xmalloc_ptr<char> watch_location_expression
14081 (struct type *type, CORE_ADDR addr) const override
14082 {
14083 type = check_typedef (TYPE_TARGET_TYPE (check_typedef (type)));
14084 std::string name = type_to_string (type);
14085 return gdb::unique_xmalloc_ptr<char>
14086 (xstrprintf ("{%s} %s", name.c_str (), core_addr_to_string (addr)));
14087 }
14088
14089 /* See language.h. */
14090
14091 void value_print (struct value *val, struct ui_file *stream,
14092 const struct value_print_options *options) const override
14093 {
14094 return ada_value_print (val, stream, options);
14095 }
14096
14097 /* See language.h. */
14098
14099 void value_print_inner
14100 (struct value *val, struct ui_file *stream, int recurse,
14101 const struct value_print_options *options) const override
14102 {
14103 return ada_value_print_inner (val, stream, recurse, options);
14104 }
14105
14106 /* See language.h. */
14107
14108 struct block_symbol lookup_symbol_nonlocal
14109 (const char *name, const struct block *block,
14110 const domain_enum domain) const override
14111 {
14112 struct block_symbol sym;
14113
14114 sym = ada_lookup_symbol (name, block_static_block (block), domain);
14115 if (sym.symbol != NULL)
14116 return sym;
14117
14118 /* If we haven't found a match at this point, try the primitive
14119 types. In other languages, this search is performed before
14120 searching for global symbols in order to short-circuit that
14121 global-symbol search if it happens that the name corresponds
14122 to a primitive type. But we cannot do the same in Ada, because
14123 it is perfectly legitimate for a program to declare a type which
14124 has the same name as a standard type. If looking up a type in
14125 that situation, we have traditionally ignored the primitive type
14126 in favor of user-defined types. This is why, unlike most other
14127 languages, we search the primitive types this late and only after
14128 having searched the global symbols without success. */
14129
14130 if (domain == VAR_DOMAIN)
14131 {
14132 struct gdbarch *gdbarch;
14133
14134 if (block == NULL)
14135 gdbarch = target_gdbarch ();
14136 else
14137 gdbarch = block_gdbarch (block);
14138 sym.symbol
14139 = language_lookup_primitive_type_as_symbol (this, gdbarch, name);
14140 if (sym.symbol != NULL)
14141 return sym;
14142 }
14143
14144 return {};
14145 }
14146
14147 /* See language.h. */
14148
14149 int parser (struct parser_state *ps) const override
14150 {
14151 warnings_issued = 0;
14152 return ada_parse (ps);
14153 }
14154
14155 /* See language.h.
14156
14157 Same as evaluate_type (*EXP), but resolves ambiguous symbol references
14158 (marked by OP_VAR_VALUE nodes in which the symbol has an undefined
14159 namespace) and converts operators that are user-defined into
14160 appropriate function calls. If CONTEXT_TYPE is non-null, it provides
14161 a preferred result type [at the moment, only type void has any
14162 effect---causing procedures to be preferred over functions in calls].
14163 A null CONTEXT_TYPE indicates that a non-void return type is
14164 preferred. May change (expand) *EXP. */
14165
14166 void post_parser (expression_up *expp, struct parser_state *ps)
14167 const override
14168 {
14169 struct type *context_type = NULL;
14170 int pc = 0;
14171
14172 if (ps->void_context_p)
14173 context_type = builtin_type ((*expp)->gdbarch)->builtin_void;
14174
14175 resolve_subexp (expp, &pc, 1, context_type, ps->parse_completion,
14176 ps->block_tracker);
14177 }
14178
14179 /* See language.h. */
14180
14181 void emitchar (int ch, struct type *chtype,
14182 struct ui_file *stream, int quoter) const override
14183 {
14184 ada_emit_char (ch, chtype, stream, quoter, 1);
14185 }
14186
14187 /* See language.h. */
14188
14189 void printchar (int ch, struct type *chtype,
14190 struct ui_file *stream) const override
14191 {
14192 ada_printchar (ch, chtype, stream);
14193 }
14194
14195 /* See language.h. */
14196
14197 void printstr (struct ui_file *stream, struct type *elttype,
14198 const gdb_byte *string, unsigned int length,
14199 const char *encoding, int force_ellipses,
14200 const struct value_print_options *options) const override
14201 {
14202 ada_printstr (stream, elttype, string, length, encoding,
14203 force_ellipses, options);
14204 }
14205
14206 /* See language.h. */
14207
14208 void print_typedef (struct type *type, struct symbol *new_symbol,
14209 struct ui_file *stream) const override
14210 {
14211 ada_print_typedef (type, new_symbol, stream);
14212 }
14213
14214 /* See language.h. */
14215
14216 bool is_string_type_p (struct type *type) const override
14217 {
14218 return ada_is_string_type (type);
14219 }
14220
14221 /* See language.h. */
14222
14223 const char *struct_too_deep_ellipsis () const override
14224 { return "(...)"; }
14225
14226 /* See language.h. */
14227
14228 bool c_style_arrays_p () const override
14229 { return false; }
14230
14231 /* See language.h. */
14232
14233 bool store_sym_names_in_linkage_form_p () const override
14234 { return true; }
14235
14236 /* See language.h. */
14237
14238 const struct lang_varobj_ops *varobj_ops () const override
14239 { return &ada_varobj_ops; }
14240
14241 /* See language.h. */
14242
14243 const struct exp_descriptor *expression_ops () const override
14244 { return &ada_exp_descriptor; }
14245
14246 /* See language.h. */
14247
14248 const struct op_print *opcode_print_table () const override
14249 { return ada_op_print_tab; }
14250
14251 protected:
14252 /* See language.h. */
14253
14254 symbol_name_matcher_ftype *get_symbol_name_matcher_inner
14255 (const lookup_name_info &lookup_name) const override
14256 {
14257 return ada_get_symbol_name_matcher (lookup_name);
14258 }
14259 };
14260
14261 /* Single instance of the Ada language class. */
14262
14263 static ada_language ada_language_defn;
14264
14265 /* Command-list for the "set/show ada" prefix command. */
14266 static struct cmd_list_element *set_ada_list;
14267 static struct cmd_list_element *show_ada_list;
14268
14269 static void
14270 initialize_ada_catchpoint_ops (void)
14271 {
14272 struct breakpoint_ops *ops;
14273
14274 initialize_breakpoint_ops ();
14275
14276 ops = &catch_exception_breakpoint_ops;
14277 *ops = bkpt_breakpoint_ops;
14278 ops->allocate_location = allocate_location_exception;
14279 ops->re_set = re_set_exception;
14280 ops->check_status = check_status_exception;
14281 ops->print_it = print_it_exception;
14282 ops->print_one = print_one_exception;
14283 ops->print_mention = print_mention_exception;
14284 ops->print_recreate = print_recreate_exception;
14285
14286 ops = &catch_exception_unhandled_breakpoint_ops;
14287 *ops = bkpt_breakpoint_ops;
14288 ops->allocate_location = allocate_location_exception;
14289 ops->re_set = re_set_exception;
14290 ops->check_status = check_status_exception;
14291 ops->print_it = print_it_exception;
14292 ops->print_one = print_one_exception;
14293 ops->print_mention = print_mention_exception;
14294 ops->print_recreate = print_recreate_exception;
14295
14296 ops = &catch_assert_breakpoint_ops;
14297 *ops = bkpt_breakpoint_ops;
14298 ops->allocate_location = allocate_location_exception;
14299 ops->re_set = re_set_exception;
14300 ops->check_status = check_status_exception;
14301 ops->print_it = print_it_exception;
14302 ops->print_one = print_one_exception;
14303 ops->print_mention = print_mention_exception;
14304 ops->print_recreate = print_recreate_exception;
14305
14306 ops = &catch_handlers_breakpoint_ops;
14307 *ops = bkpt_breakpoint_ops;
14308 ops->allocate_location = allocate_location_exception;
14309 ops->re_set = re_set_exception;
14310 ops->check_status = check_status_exception;
14311 ops->print_it = print_it_exception;
14312 ops->print_one = print_one_exception;
14313 ops->print_mention = print_mention_exception;
14314 ops->print_recreate = print_recreate_exception;
14315 }
14316
14317 /* This module's 'new_objfile' observer. */
14318
14319 static void
14320 ada_new_objfile_observer (struct objfile *objfile)
14321 {
14322 ada_clear_symbol_cache ();
14323 }
14324
14325 /* This module's 'free_objfile' observer. */
14326
14327 static void
14328 ada_free_objfile_observer (struct objfile *objfile)
14329 {
14330 ada_clear_symbol_cache ();
14331 }
14332
14333 void _initialize_ada_language ();
14334 void
14335 _initialize_ada_language ()
14336 {
14337 initialize_ada_catchpoint_ops ();
14338
14339 add_basic_prefix_cmd ("ada", no_class,
14340 _("Prefix command for changing Ada-specific settings."),
14341 &set_ada_list, "set ada ", 0, &setlist);
14342
14343 add_show_prefix_cmd ("ada", no_class,
14344 _("Generic command for showing Ada-specific settings."),
14345 &show_ada_list, "show ada ", 0, &showlist);
14346
14347 add_setshow_boolean_cmd ("trust-PAD-over-XVS", class_obscure,
14348 &trust_pad_over_xvs, _("\
14349 Enable or disable an optimization trusting PAD types over XVS types."), _("\
14350 Show whether an optimization trusting PAD types over XVS types is activated."),
14351 _("\
14352 This is related to the encoding used by the GNAT compiler. The debugger\n\
14353 should normally trust the contents of PAD types, but certain older versions\n\
14354 of GNAT have a bug that sometimes causes the information in the PAD type\n\
14355 to be incorrect. Turning this setting \"off\" allows the debugger to\n\
14356 work around this bug. It is always safe to turn this option \"off\", but\n\
14357 this incurs a slight performance penalty, so it is recommended to NOT change\n\
14358 this option to \"off\" unless necessary."),
14359 NULL, NULL, &set_ada_list, &show_ada_list);
14360
14361 add_setshow_boolean_cmd ("print-signatures", class_vars,
14362 &print_signatures, _("\
14363 Enable or disable the output of formal and return types for functions in the \
14364 overloads selection menu."), _("\
14365 Show whether the output of formal and return types for functions in the \
14366 overloads selection menu is activated."),
14367 NULL, NULL, NULL, &set_ada_list, &show_ada_list);
14368
14369 add_catch_command ("exception", _("\
14370 Catch Ada exceptions, when raised.\n\
14371 Usage: catch exception [ARG] [if CONDITION]\n\
14372 Without any argument, stop when any Ada exception is raised.\n\
14373 If ARG is \"unhandled\" (without the quotes), only stop when the exception\n\
14374 being raised does not have a handler (and will therefore lead to the task's\n\
14375 termination).\n\
14376 Otherwise, the catchpoint only stops when the name of the exception being\n\
14377 raised is the same as ARG.\n\
14378 CONDITION is a boolean expression that is evaluated to see whether the\n\
14379 exception should cause a stop."),
14380 catch_ada_exception_command,
14381 catch_ada_completer,
14382 CATCH_PERMANENT,
14383 CATCH_TEMPORARY);
14384
14385 add_catch_command ("handlers", _("\
14386 Catch Ada exceptions, when handled.\n\
14387 Usage: catch handlers [ARG] [if CONDITION]\n\
14388 Without any argument, stop when any Ada exception is handled.\n\
14389 With an argument, catch only exceptions with the given name.\n\
14390 CONDITION is a boolean expression that is evaluated to see whether the\n\
14391 exception should cause a stop."),
14392 catch_ada_handlers_command,
14393 catch_ada_completer,
14394 CATCH_PERMANENT,
14395 CATCH_TEMPORARY);
14396 add_catch_command ("assert", _("\
14397 Catch failed Ada assertions, when raised.\n\
14398 Usage: catch assert [if CONDITION]\n\
14399 CONDITION is a boolean expression that is evaluated to see whether the\n\
14400 exception should cause a stop."),
14401 catch_assert_command,
14402 NULL,
14403 CATCH_PERMANENT,
14404 CATCH_TEMPORARY);
14405
14406 varsize_limit = 65536;
14407 add_setshow_uinteger_cmd ("varsize-limit", class_support,
14408 &varsize_limit, _("\
14409 Set the maximum number of bytes allowed in a variable-size object."), _("\
14410 Show the maximum number of bytes allowed in a variable-size object."), _("\
14411 Attempts to access an object whose size is not a compile-time constant\n\
14412 and exceeds this limit will cause an error."),
14413 NULL, NULL, &setlist, &showlist);
14414
14415 add_info ("exceptions", info_exceptions_command,
14416 _("\
14417 List all Ada exception names.\n\
14418 Usage: info exceptions [REGEXP]\n\
14419 If a regular expression is passed as an argument, only those matching\n\
14420 the regular expression are listed."));
14421
14422 add_basic_prefix_cmd ("ada", class_maintenance,
14423 _("Set Ada maintenance-related variables."),
14424 &maint_set_ada_cmdlist, "maintenance set ada ",
14425 0/*allow-unknown*/, &maintenance_set_cmdlist);
14426
14427 add_show_prefix_cmd ("ada", class_maintenance,
14428 _("Show Ada maintenance-related variables."),
14429 &maint_show_ada_cmdlist, "maintenance show ada ",
14430 0/*allow-unknown*/, &maintenance_show_cmdlist);
14431
14432 add_setshow_boolean_cmd
14433 ("ignore-descriptive-types", class_maintenance,
14434 &ada_ignore_descriptive_types_p,
14435 _("Set whether descriptive types generated by GNAT should be ignored."),
14436 _("Show whether descriptive types generated by GNAT should be ignored."),
14437 _("\
14438 When enabled, the debugger will stop using the DW_AT_GNAT_descriptive_type\n\
14439 DWARF attribute."),
14440 NULL, NULL, &maint_set_ada_cmdlist, &maint_show_ada_cmdlist);
14441
14442 decoded_names_store = htab_create_alloc (256, htab_hash_string, streq_hash,
14443 NULL, xcalloc, xfree);
14444
14445 /* The ada-lang observers. */
14446 gdb::observers::new_objfile.attach (ada_new_objfile_observer);
14447 gdb::observers::free_objfile.attach (ada_free_objfile_observer);
14448 gdb::observers::inferior_exit.attach (ada_inferior_exit);
14449 }
This page took 0.32513 seconds and 4 git commands to generate.