1 /* Ada language support routines for GDB, the GNU debugger.
3 Copyright (C) 1992-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
24 #include "gdb_regex.h"
29 #include "expression.h"
30 #include "parser-defs.h"
37 #include "breakpoint.h"
40 #include "gdb_obstack.h"
42 #include "completer.h"
47 #include "dictionary.h"
51 #include "observable.h"
52 #include "common/vec.h"
54 #include "common/gdb_vecs.h"
55 #include "typeprint.h"
56 #include "namespace.h"
60 #include "mi/mi-common.h"
61 #include "arch-utils.h"
62 #include "cli/cli-utils.h"
63 #include "common/function-view.h"
64 #include "common/byte-vector.h"
68 /* Define whether or not the C operator '/' truncates towards zero for
69 differently signed operands (truncation direction is undefined in C).
70 Copied from valarith.c. */
72 #ifndef TRUNCATION_TOWARDS_ZERO
73 #define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2)
76 static struct type *desc_base_type (struct type *);
78 static struct type *desc_bounds_type (struct type *);
80 static struct value *desc_bounds (struct value *);
82 static int fat_pntr_bounds_bitpos (struct type *);
84 static int fat_pntr_bounds_bitsize (struct type *);
86 static struct type *desc_data_target_type (struct type *);
88 static struct value *desc_data (struct value *);
90 static int fat_pntr_data_bitpos (struct type *);
92 static int fat_pntr_data_bitsize (struct type *);
94 static struct value *desc_one_bound (struct value *, int, int);
96 static int desc_bound_bitpos (struct type *, int, int);
98 static int desc_bound_bitsize (struct type *, int, int);
100 static struct type *desc_index_type (struct type *, int);
102 static int desc_arity (struct type *);
104 static int ada_type_match (struct type *, struct type *, int);
106 static int ada_args_match (struct symbol *, struct value **, int);
108 static struct value *make_array_descriptor (struct type *, struct value *);
110 static void ada_add_block_symbols (struct obstack *,
111 const struct block *,
112 const lookup_name_info &lookup_name,
113 domain_enum, struct objfile *);
115 static void ada_add_all_symbols (struct obstack *, const struct block *,
116 const lookup_name_info &lookup_name,
117 domain_enum, int, int *);
119 static int is_nonfunction (struct block_symbol *, int);
121 static void add_defn_to_vec (struct obstack *, struct symbol *,
122 const struct block *);
124 static int num_defns_collected (struct obstack *);
126 static struct block_symbol *defns_collected (struct obstack *, int);
128 static struct value *resolve_subexp (expression_up *, int *, int,
130 innermost_block_tracker *);
132 static void replace_operator_with_call (expression_up *, int, int, int,
133 struct symbol *, const struct block *);
135 static int possible_user_operator_p (enum exp_opcode, struct value **);
137 static const char *ada_op_name (enum exp_opcode);
139 static const char *ada_decoded_op_name (enum exp_opcode);
141 static int numeric_type_p (struct type *);
143 static int integer_type_p (struct type *);
145 static int scalar_type_p (struct type *);
147 static int discrete_type_p (struct type *);
149 static enum ada_renaming_category parse_old_style_renaming (struct type *,
154 static struct symbol *find_old_style_renaming_symbol (const char *,
155 const struct block *);
157 static struct type *ada_lookup_struct_elt_type (struct type *, const char *,
160 static struct value *evaluate_subexp_type (struct expression *, int *);
162 static struct type *ada_find_parallel_type_with_name (struct type *,
165 static int is_dynamic_field (struct type *, int);
167 static struct type *to_fixed_variant_branch_type (struct type *,
169 CORE_ADDR, struct value *);
171 static struct type *to_fixed_array_type (struct type *, struct value *, int);
173 static struct type *to_fixed_range_type (struct type *, struct value *);
175 static struct type *to_static_fixed_type (struct type *);
176 static struct type *static_unwrap_type (struct type *type);
178 static struct value *unwrap_value (struct value *);
180 static struct type *constrained_packed_array_type (struct type *, long *);
182 static struct type *decode_constrained_packed_array_type (struct type *);
184 static long decode_packed_array_bitsize (struct type *);
186 static struct value *decode_constrained_packed_array (struct value *);
188 static int ada_is_packed_array_type (struct type *);
190 static int ada_is_unconstrained_packed_array_type (struct type *);
192 static struct value *value_subscript_packed (struct value *, int,
195 static struct value *coerce_unspec_val_to_type (struct value *,
198 static int lesseq_defined_than (struct symbol *, struct symbol *);
200 static int equiv_types (struct type *, struct type *);
202 static int is_name_suffix (const char *);
204 static int advance_wild_match (const char **, const char *, int);
206 static bool wild_match (const char *name, const char *patn);
208 static struct value *ada_coerce_ref (struct value *);
210 static LONGEST pos_atr (struct value *);
212 static struct value *value_pos_atr (struct type *, struct value *);
214 static struct value *value_val_atr (struct type *, struct value *);
216 static struct symbol *standard_lookup (const char *, const struct block *,
219 static struct value *ada_search_struct_field (const char *, struct value *, int,
222 static struct value *ada_value_primitive_field (struct value *, int, int,
225 static int find_struct_field (const char *, struct type *, int,
226 struct type **, int *, int *, int *, int *);
228 static int ada_resolve_function (struct block_symbol *, int,
229 struct value **, int, const char *,
232 static int ada_is_direct_array_type (struct type *);
234 static void ada_language_arch_info (struct gdbarch *,
235 struct language_arch_info *);
237 static struct value *ada_index_struct_field (int, struct value *, int,
240 static struct value *assign_aggregate (struct value *, struct value *,
244 static void aggregate_assign_from_choices (struct value *, struct value *,
246 int *, LONGEST *, int *,
247 int, LONGEST, LONGEST);
249 static void aggregate_assign_positional (struct value *, struct value *,
251 int *, LONGEST *, int *, int,
255 static void aggregate_assign_others (struct value *, struct value *,
257 int *, LONGEST *, int, LONGEST, LONGEST);
260 static void add_component_interval (LONGEST, LONGEST, LONGEST *, int *, int);
263 static struct value *ada_evaluate_subexp (struct type *, struct expression *,
266 static void ada_forward_operator_length (struct expression *, int, int *,
269 static struct type *ada_find_any_type (const char *name);
271 static symbol_name_matcher_ftype *ada_get_symbol_name_matcher
272 (const lookup_name_info &lookup_name);
276 /* The result of a symbol lookup to be stored in our symbol cache. */
280 /* The name used to perform the lookup. */
282 /* The namespace used during the lookup. */
284 /* The symbol returned by the lookup, or NULL if no matching symbol
287 /* The block where the symbol was found, or NULL if no matching
289 const struct block *block;
290 /* A pointer to the next entry with the same hash. */
291 struct cache_entry *next;
294 /* The Ada symbol cache, used to store the result of Ada-mode symbol
295 lookups in the course of executing the user's commands.
297 The cache is implemented using a simple, fixed-sized hash.
298 The size is fixed on the grounds that there are not likely to be
299 all that many symbols looked up during any given session, regardless
300 of the size of the symbol table. If we decide to go to a resizable
301 table, let's just use the stuff from libiberty instead. */
303 #define HASH_SIZE 1009
305 struct ada_symbol_cache
307 /* An obstack used to store the entries in our cache. */
308 struct obstack cache_space;
310 /* The root of the hash table used to implement our symbol cache. */
311 struct cache_entry *root[HASH_SIZE];
314 static void ada_free_symbol_cache (struct ada_symbol_cache *sym_cache);
316 /* Maximum-sized dynamic type. */
317 static unsigned int varsize_limit;
319 static const char ada_completer_word_break_characters[] =
321 " \t\n!@#%^&*()+=|~`}{[]\";:?/,-";
323 " \t\n!@#$%^&*()+=|~`}{[]\";:?/,-";
326 /* The name of the symbol to use to get the name of the main subprogram. */
327 static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[]
328 = "__gnat_ada_main_program_name";
330 /* Limit on the number of warnings to raise per expression evaluation. */
331 static int warning_limit = 2;
333 /* Number of warning messages issued; reset to 0 by cleanups after
334 expression evaluation. */
335 static int warnings_issued = 0;
337 static const char *known_runtime_file_name_patterns[] = {
338 ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL
341 static const char *known_auxiliary_function_name_patterns[] = {
342 ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL
345 /* Maintenance-related settings for this module. */
347 static struct cmd_list_element *maint_set_ada_cmdlist;
348 static struct cmd_list_element *maint_show_ada_cmdlist;
350 /* Implement the "maintenance set ada" (prefix) command. */
353 maint_set_ada_cmd (const char *args, int from_tty)
355 help_list (maint_set_ada_cmdlist, "maintenance set ada ", all_commands,
359 /* Implement the "maintenance show ada" (prefix) command. */
362 maint_show_ada_cmd (const char *args, int from_tty)
364 cmd_show_list (maint_show_ada_cmdlist, from_tty, "");
367 /* The "maintenance ada set/show ignore-descriptive-type" value. */
369 static int ada_ignore_descriptive_types_p = 0;
371 /* Inferior-specific data. */
373 /* Per-inferior data for this module. */
375 struct ada_inferior_data
377 /* The ada__tags__type_specific_data type, which is used when decoding
378 tagged types. With older versions of GNAT, this type was directly
379 accessible through a component ("tsd") in the object tag. But this
380 is no longer the case, so we cache it for each inferior. */
381 struct type *tsd_type = nullptr;
383 /* The exception_support_info data. This data is used to determine
384 how to implement support for Ada exception catchpoints in a given
386 const struct exception_support_info *exception_info = nullptr;
389 /* Our key to this module's inferior data. */
390 static const struct inferior_key<ada_inferior_data> ada_inferior_data;
392 /* Return our inferior data for the given inferior (INF).
394 This function always returns a valid pointer to an allocated
395 ada_inferior_data structure. If INF's inferior data has not
396 been previously set, this functions creates a new one with all
397 fields set to zero, sets INF's inferior to it, and then returns
398 a pointer to that newly allocated ada_inferior_data. */
400 static struct ada_inferior_data *
401 get_ada_inferior_data (struct inferior *inf)
403 struct ada_inferior_data *data;
405 data = ada_inferior_data.get (inf);
407 data = ada_inferior_data.emplace (inf);
412 /* Perform all necessary cleanups regarding our module's inferior data
413 that is required after the inferior INF just exited. */
416 ada_inferior_exit (struct inferior *inf)
418 ada_inferior_data.clear (inf);
422 /* program-space-specific data. */
424 /* This module's per-program-space data. */
425 struct ada_pspace_data
429 if (sym_cache != NULL)
430 ada_free_symbol_cache (sym_cache);
433 /* The Ada symbol cache. */
434 struct ada_symbol_cache *sym_cache = nullptr;
437 /* Key to our per-program-space data. */
438 static const struct program_space_key<ada_pspace_data> ada_pspace_data_handle;
440 /* Return this module's data for the given program space (PSPACE).
441 If not is found, add a zero'ed one now.
443 This function always returns a valid object. */
445 static struct ada_pspace_data *
446 get_ada_pspace_data (struct program_space *pspace)
448 struct ada_pspace_data *data;
450 data = ada_pspace_data_handle.get (pspace);
452 data = ada_pspace_data_handle.emplace (pspace);
459 /* If TYPE is a TYPE_CODE_TYPEDEF type, return the target type after
460 all typedef layers have been peeled. Otherwise, return TYPE.
462 Normally, we really expect a typedef type to only have 1 typedef layer.
463 In other words, we really expect the target type of a typedef type to be
464 a non-typedef type. This is particularly true for Ada units, because
465 the language does not have a typedef vs not-typedef distinction.
466 In that respect, the Ada compiler has been trying to eliminate as many
467 typedef definitions in the debugging information, since they generally
468 do not bring any extra information (we still use typedef under certain
469 circumstances related mostly to the GNAT encoding).
471 Unfortunately, we have seen situations where the debugging information
472 generated by the compiler leads to such multiple typedef layers. For
473 instance, consider the following example with stabs:
475 .stabs "pck__float_array___XUP:Tt(0,46)=s16P_ARRAY:(0,47)=[...]"[...]
476 .stabs "pck__float_array___XUP:t(0,36)=(0,46)",128,0,6,0
478 This is an error in the debugging information which causes type
479 pck__float_array___XUP to be defined twice, and the second time,
480 it is defined as a typedef of a typedef.
482 This is on the fringe of legality as far as debugging information is
483 concerned, and certainly unexpected. But it is easy to handle these
484 situations correctly, so we can afford to be lenient in this case. */
487 ada_typedef_target_type (struct type *type)
489 while (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
490 type = TYPE_TARGET_TYPE (type);
494 /* Given DECODED_NAME a string holding a symbol name in its
495 decoded form (ie using the Ada dotted notation), returns
496 its unqualified name. */
499 ada_unqualified_name (const char *decoded_name)
503 /* If the decoded name starts with '<', it means that the encoded
504 name does not follow standard naming conventions, and thus that
505 it is not your typical Ada symbol name. Trying to unqualify it
506 is therefore pointless and possibly erroneous. */
507 if (decoded_name[0] == '<')
510 result = strrchr (decoded_name, '.');
512 result++; /* Skip the dot... */
514 result = decoded_name;
519 /* Return a string starting with '<', followed by STR, and '>'. */
522 add_angle_brackets (const char *str)
524 return string_printf ("<%s>", str);
528 ada_get_gdb_completer_word_break_characters (void)
530 return ada_completer_word_break_characters;
533 /* Print an array element index using the Ada syntax. */
536 ada_print_array_index (struct value *index_value, struct ui_file *stream,
537 const struct value_print_options *options)
539 LA_VALUE_PRINT (index_value, stream, options);
540 fprintf_filtered (stream, " => ");
543 /* la_watch_location_expression for Ada. */
545 gdb::unique_xmalloc_ptr<char>
546 ada_watch_location_expression (struct type *type, CORE_ADDR addr)
548 type = check_typedef (TYPE_TARGET_TYPE (check_typedef (type)));
549 std::string name = type_to_string (type);
550 return gdb::unique_xmalloc_ptr<char>
551 (xstrprintf ("{%s} %s", name.c_str (), core_addr_to_string (addr)));
554 /* Assuming VECT points to an array of *SIZE objects of size
555 ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects,
556 updating *SIZE as necessary and returning the (new) array. */
559 grow_vect (void *vect, size_t *size, size_t min_size, int element_size)
561 if (*size < min_size)
564 if (*size < min_size)
566 vect = xrealloc (vect, *size * element_size);
571 /* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing
572 suffix of FIELD_NAME beginning "___". */
575 field_name_match (const char *field_name, const char *target)
577 int len = strlen (target);
580 (strncmp (field_name, target, len) == 0
581 && (field_name[len] == '\0'
582 || (startswith (field_name + len, "___")
583 && strcmp (field_name + strlen (field_name) - 6,
588 /* Assuming TYPE is a TYPE_CODE_STRUCT or a TYPE_CODE_TYPDEF to
589 a TYPE_CODE_STRUCT, find the field whose name matches FIELD_NAME,
590 and return its index. This function also handles fields whose name
591 have ___ suffixes because the compiler sometimes alters their name
592 by adding such a suffix to represent fields with certain constraints.
593 If the field could not be found, return a negative number if
594 MAYBE_MISSING is set. Otherwise raise an error. */
597 ada_get_field_index (const struct type *type, const char *field_name,
601 struct type *struct_type = check_typedef ((struct type *) type);
603 for (fieldno = 0; fieldno < TYPE_NFIELDS (struct_type); fieldno++)
604 if (field_name_match (TYPE_FIELD_NAME (struct_type, fieldno), field_name))
608 error (_("Unable to find field %s in struct %s. Aborting"),
609 field_name, TYPE_NAME (struct_type));
614 /* The length of the prefix of NAME prior to any "___" suffix. */
617 ada_name_prefix_len (const char *name)
623 const char *p = strstr (name, "___");
626 return strlen (name);
632 /* Return non-zero if SUFFIX is a suffix of STR.
633 Return zero if STR is null. */
636 is_suffix (const char *str, const char *suffix)
643 len2 = strlen (suffix);
644 return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0);
647 /* The contents of value VAL, treated as a value of type TYPE. The
648 result is an lval in memory if VAL is. */
650 static struct value *
651 coerce_unspec_val_to_type (struct value *val, struct type *type)
653 type = ada_check_typedef (type);
654 if (value_type (val) == type)
658 struct value *result;
660 /* Make sure that the object size is not unreasonable before
661 trying to allocate some memory for it. */
662 ada_ensure_varsize_limit (type);
665 || TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val)))
666 result = allocate_value_lazy (type);
669 result = allocate_value (type);
670 value_contents_copy_raw (result, 0, val, 0, TYPE_LENGTH (type));
672 set_value_component_location (result, val);
673 set_value_bitsize (result, value_bitsize (val));
674 set_value_bitpos (result, value_bitpos (val));
675 if (VALUE_LVAL (result) == lval_memory)
676 set_value_address (result, value_address (val));
681 static const gdb_byte *
682 cond_offset_host (const gdb_byte *valaddr, long offset)
687 return valaddr + offset;
691 cond_offset_target (CORE_ADDR address, long offset)
696 return address + offset;
699 /* Issue a warning (as for the definition of warning in utils.c, but
700 with exactly one argument rather than ...), unless the limit on the
701 number of warnings has passed during the evaluation of the current
704 /* FIXME: cagney/2004-10-10: This function is mimicking the behavior
705 provided by "complaint". */
706 static void lim_warning (const char *format, ...) ATTRIBUTE_PRINTF (1, 2);
709 lim_warning (const char *format, ...)
713 va_start (args, format);
714 warnings_issued += 1;
715 if (warnings_issued <= warning_limit)
716 vwarning (format, args);
721 /* Issue an error if the size of an object of type T is unreasonable,
722 i.e. if it would be a bad idea to allocate a value of this type in
726 ada_ensure_varsize_limit (const struct type *type)
728 if (TYPE_LENGTH (type) > varsize_limit)
729 error (_("object size is larger than varsize-limit"));
732 /* Maximum value of a SIZE-byte signed integer type. */
734 max_of_size (int size)
736 LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2);
738 return top_bit | (top_bit - 1);
741 /* Minimum value of a SIZE-byte signed integer type. */
743 min_of_size (int size)
745 return -max_of_size (size) - 1;
748 /* Maximum value of a SIZE-byte unsigned integer type. */
750 umax_of_size (int size)
752 ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1);
754 return top_bit | (top_bit - 1);
757 /* Maximum value of integral type T, as a signed quantity. */
759 max_of_type (struct type *t)
761 if (TYPE_UNSIGNED (t))
762 return (LONGEST) umax_of_size (TYPE_LENGTH (t));
764 return max_of_size (TYPE_LENGTH (t));
767 /* Minimum value of integral type T, as a signed quantity. */
769 min_of_type (struct type *t)
771 if (TYPE_UNSIGNED (t))
774 return min_of_size (TYPE_LENGTH (t));
777 /* The largest value in the domain of TYPE, a discrete type, as an integer. */
779 ada_discrete_type_high_bound (struct type *type)
781 type = resolve_dynamic_type (type, NULL, 0);
782 switch (TYPE_CODE (type))
784 case TYPE_CODE_RANGE:
785 return TYPE_HIGH_BOUND (type);
787 return TYPE_FIELD_ENUMVAL (type, TYPE_NFIELDS (type) - 1);
792 return max_of_type (type);
794 error (_("Unexpected type in ada_discrete_type_high_bound."));
798 /* The smallest value in the domain of TYPE, a discrete type, as an integer. */
800 ada_discrete_type_low_bound (struct type *type)
802 type = resolve_dynamic_type (type, NULL, 0);
803 switch (TYPE_CODE (type))
805 case TYPE_CODE_RANGE:
806 return TYPE_LOW_BOUND (type);
808 return TYPE_FIELD_ENUMVAL (type, 0);
813 return min_of_type (type);
815 error (_("Unexpected type in ada_discrete_type_low_bound."));
819 /* The identity on non-range types. For range types, the underlying
820 non-range scalar type. */
823 get_base_type (struct type *type)
825 while (type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE)
827 if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL)
829 type = TYPE_TARGET_TYPE (type);
834 /* Return a decoded version of the given VALUE. This means returning
835 a value whose type is obtained by applying all the GNAT-specific
836 encondings, making the resulting type a static but standard description
837 of the initial type. */
840 ada_get_decoded_value (struct value *value)
842 struct type *type = ada_check_typedef (value_type (value));
844 if (ada_is_array_descriptor_type (type)
845 || (ada_is_constrained_packed_array_type (type)
846 && TYPE_CODE (type) != TYPE_CODE_PTR))
848 if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF) /* array access type. */
849 value = ada_coerce_to_simple_array_ptr (value);
851 value = ada_coerce_to_simple_array (value);
854 value = ada_to_fixed_value (value);
859 /* Same as ada_get_decoded_value, but with the given TYPE.
860 Because there is no associated actual value for this type,
861 the resulting type might be a best-effort approximation in
862 the case of dynamic types. */
865 ada_get_decoded_type (struct type *type)
867 type = to_static_fixed_type (type);
868 if (ada_is_constrained_packed_array_type (type))
869 type = ada_coerce_to_simple_array_type (type);
875 /* Language Selection */
877 /* If the main program is in Ada, return language_ada, otherwise return LANG
878 (the main program is in Ada iif the adainit symbol is found). */
881 ada_update_initial_language (enum language lang)
883 if (lookup_minimal_symbol ("adainit", (const char *) NULL,
884 (struct objfile *) NULL).minsym != NULL)
890 /* If the main procedure is written in Ada, then return its name.
891 The result is good until the next call. Return NULL if the main
892 procedure doesn't appear to be in Ada. */
897 struct bound_minimal_symbol msym;
898 static gdb::unique_xmalloc_ptr<char> main_program_name;
900 /* For Ada, the name of the main procedure is stored in a specific
901 string constant, generated by the binder. Look for that symbol,
902 extract its address, and then read that string. If we didn't find
903 that string, then most probably the main procedure is not written
905 msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL);
907 if (msym.minsym != NULL)
909 CORE_ADDR main_program_name_addr;
912 main_program_name_addr = BMSYMBOL_VALUE_ADDRESS (msym);
913 if (main_program_name_addr == 0)
914 error (_("Invalid address for Ada main program name."));
916 target_read_string (main_program_name_addr, &main_program_name,
921 return main_program_name.get ();
924 /* The main procedure doesn't seem to be in Ada. */
930 /* Table of Ada operators and their GNAT-encoded names. Last entry is pair
933 const struct ada_opname_map ada_opname_table[] = {
934 {"Oadd", "\"+\"", BINOP_ADD},
935 {"Osubtract", "\"-\"", BINOP_SUB},
936 {"Omultiply", "\"*\"", BINOP_MUL},
937 {"Odivide", "\"/\"", BINOP_DIV},
938 {"Omod", "\"mod\"", BINOP_MOD},
939 {"Orem", "\"rem\"", BINOP_REM},
940 {"Oexpon", "\"**\"", BINOP_EXP},
941 {"Olt", "\"<\"", BINOP_LESS},
942 {"Ole", "\"<=\"", BINOP_LEQ},
943 {"Ogt", "\">\"", BINOP_GTR},
944 {"Oge", "\">=\"", BINOP_GEQ},
945 {"Oeq", "\"=\"", BINOP_EQUAL},
946 {"One", "\"/=\"", BINOP_NOTEQUAL},
947 {"Oand", "\"and\"", BINOP_BITWISE_AND},
948 {"Oor", "\"or\"", BINOP_BITWISE_IOR},
949 {"Oxor", "\"xor\"", BINOP_BITWISE_XOR},
950 {"Oconcat", "\"&\"", BINOP_CONCAT},
951 {"Oabs", "\"abs\"", UNOP_ABS},
952 {"Onot", "\"not\"", UNOP_LOGICAL_NOT},
953 {"Oadd", "\"+\"", UNOP_PLUS},
954 {"Osubtract", "\"-\"", UNOP_NEG},
958 /* The "encoded" form of DECODED, according to GNAT conventions. The
959 result is valid until the next call to ada_encode. If
960 THROW_ERRORS, throw an error if invalid operator name is found.
961 Otherwise, return NULL in that case. */
964 ada_encode_1 (const char *decoded, bool throw_errors)
966 static char *encoding_buffer = NULL;
967 static size_t encoding_buffer_size = 0;
974 GROW_VECT (encoding_buffer, encoding_buffer_size,
975 2 * strlen (decoded) + 10);
978 for (p = decoded; *p != '\0'; p += 1)
982 encoding_buffer[k] = encoding_buffer[k + 1] = '_';
987 const struct ada_opname_map *mapping;
989 for (mapping = ada_opname_table;
990 mapping->encoded != NULL
991 && !startswith (p, mapping->decoded); mapping += 1)
993 if (mapping->encoded == NULL)
996 error (_("invalid Ada operator name: %s"), p);
1000 strcpy (encoding_buffer + k, mapping->encoded);
1001 k += strlen (mapping->encoded);
1006 encoding_buffer[k] = *p;
1011 encoding_buffer[k] = '\0';
1012 return encoding_buffer;
1015 /* The "encoded" form of DECODED, according to GNAT conventions.
1016 The result is valid until the next call to ada_encode. */
1019 ada_encode (const char *decoded)
1021 return ada_encode_1 (decoded, true);
1024 /* Return NAME folded to lower case, or, if surrounded by single
1025 quotes, unfolded, but with the quotes stripped away. Result good
1029 ada_fold_name (const char *name)
1031 static char *fold_buffer = NULL;
1032 static size_t fold_buffer_size = 0;
1034 int len = strlen (name);
1035 GROW_VECT (fold_buffer, fold_buffer_size, len + 1);
1037 if (name[0] == '\'')
1039 strncpy (fold_buffer, name + 1, len - 2);
1040 fold_buffer[len - 2] = '\000';
1046 for (i = 0; i <= len; i += 1)
1047 fold_buffer[i] = tolower (name[i]);
1053 /* Return nonzero if C is either a digit or a lowercase alphabet character. */
1056 is_lower_alphanum (const char c)
1058 return (isdigit (c) || (isalpha (c) && islower (c)));
1061 /* ENCODED is the linkage name of a symbol and LEN contains its length.
1062 This function saves in LEN the length of that same symbol name but
1063 without either of these suffixes:
1069 These are suffixes introduced by the compiler for entities such as
1070 nested subprogram for instance, in order to avoid name clashes.
1071 They do not serve any purpose for the debugger. */
1074 ada_remove_trailing_digits (const char *encoded, int *len)
1076 if (*len > 1 && isdigit (encoded[*len - 1]))
1080 while (i > 0 && isdigit (encoded[i]))
1082 if (i >= 0 && encoded[i] == '.')
1084 else if (i >= 0 && encoded[i] == '$')
1086 else if (i >= 2 && startswith (encoded + i - 2, "___"))
1088 else if (i >= 1 && startswith (encoded + i - 1, "__"))
1093 /* Remove the suffix introduced by the compiler for protected object
1097 ada_remove_po_subprogram_suffix (const char *encoded, int *len)
1099 /* Remove trailing N. */
1101 /* Protected entry subprograms are broken into two
1102 separate subprograms: The first one is unprotected, and has
1103 a 'N' suffix; the second is the protected version, and has
1104 the 'P' suffix. The second calls the first one after handling
1105 the protection. Since the P subprograms are internally generated,
1106 we leave these names undecoded, giving the user a clue that this
1107 entity is internal. */
1110 && encoded[*len - 1] == 'N'
1111 && (isdigit (encoded[*len - 2]) || islower (encoded[*len - 2])))
1115 /* Remove trailing X[bn]* suffixes (indicating names in package bodies). */
1118 ada_remove_Xbn_suffix (const char *encoded, int *len)
1122 while (i > 0 && (encoded[i] == 'b' || encoded[i] == 'n'))
1125 if (encoded[i] != 'X')
1131 if (isalnum (encoded[i-1]))
1135 /* If ENCODED follows the GNAT entity encoding conventions, then return
1136 the decoded form of ENCODED. Otherwise, return "<%s>" where "%s" is
1137 replaced by ENCODED.
1139 The resulting string is valid until the next call of ada_decode.
1140 If the string is unchanged by decoding, the original string pointer
1144 ada_decode (const char *encoded)
1151 static char *decoding_buffer = NULL;
1152 static size_t decoding_buffer_size = 0;
1154 /* With function descriptors on PPC64, the value of a symbol named
1155 ".FN", if it exists, is the entry point of the function "FN". */
1156 if (encoded[0] == '.')
1159 /* The name of the Ada main procedure starts with "_ada_".
1160 This prefix is not part of the decoded name, so skip this part
1161 if we see this prefix. */
1162 if (startswith (encoded, "_ada_"))
1165 /* If the name starts with '_', then it is not a properly encoded
1166 name, so do not attempt to decode it. Similarly, if the name
1167 starts with '<', the name should not be decoded. */
1168 if (encoded[0] == '_' || encoded[0] == '<')
1171 len0 = strlen (encoded);
1173 ada_remove_trailing_digits (encoded, &len0);
1174 ada_remove_po_subprogram_suffix (encoded, &len0);
1176 /* Remove the ___X.* suffix if present. Do not forget to verify that
1177 the suffix is located before the current "end" of ENCODED. We want
1178 to avoid re-matching parts of ENCODED that have previously been
1179 marked as discarded (by decrementing LEN0). */
1180 p = strstr (encoded, "___");
1181 if (p != NULL && p - encoded < len0 - 3)
1189 /* Remove any trailing TKB suffix. It tells us that this symbol
1190 is for the body of a task, but that information does not actually
1191 appear in the decoded name. */
1193 if (len0 > 3 && startswith (encoded + len0 - 3, "TKB"))
1196 /* Remove any trailing TB suffix. The TB suffix is slightly different
1197 from the TKB suffix because it is used for non-anonymous task
1200 if (len0 > 2 && startswith (encoded + len0 - 2, "TB"))
1203 /* Remove trailing "B" suffixes. */
1204 /* FIXME: brobecker/2006-04-19: Not sure what this are used for... */
1206 if (len0 > 1 && startswith (encoded + len0 - 1, "B"))
1209 /* Make decoded big enough for possible expansion by operator name. */
1211 GROW_VECT (decoding_buffer, decoding_buffer_size, 2 * len0 + 1);
1212 decoded = decoding_buffer;
1214 /* Remove trailing __{digit}+ or trailing ${digit}+. */
1216 if (len0 > 1 && isdigit (encoded[len0 - 1]))
1219 while ((i >= 0 && isdigit (encoded[i]))
1220 || (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1])))
1222 if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_')
1224 else if (encoded[i] == '$')
1228 /* The first few characters that are not alphabetic are not part
1229 of any encoding we use, so we can copy them over verbatim. */
1231 for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1)
1232 decoded[j] = encoded[i];
1237 /* Is this a symbol function? */
1238 if (at_start_name && encoded[i] == 'O')
1242 for (k = 0; ada_opname_table[k].encoded != NULL; k += 1)
1244 int op_len = strlen (ada_opname_table[k].encoded);
1245 if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1,
1247 && !isalnum (encoded[i + op_len]))
1249 strcpy (decoded + j, ada_opname_table[k].decoded);
1252 j += strlen (ada_opname_table[k].decoded);
1256 if (ada_opname_table[k].encoded != NULL)
1261 /* Replace "TK__" with "__", which will eventually be translated
1262 into "." (just below). */
1264 if (i < len0 - 4 && startswith (encoded + i, "TK__"))
1267 /* Replace "__B_{DIGITS}+__" sequences by "__", which will eventually
1268 be translated into "." (just below). These are internal names
1269 generated for anonymous blocks inside which our symbol is nested. */
1271 if (len0 - i > 5 && encoded [i] == '_' && encoded [i+1] == '_'
1272 && encoded [i+2] == 'B' && encoded [i+3] == '_'
1273 && isdigit (encoded [i+4]))
1277 while (k < len0 && isdigit (encoded[k]))
1278 k++; /* Skip any extra digit. */
1280 /* Double-check that the "__B_{DIGITS}+" sequence we found
1281 is indeed followed by "__". */
1282 if (len0 - k > 2 && encoded [k] == '_' && encoded [k+1] == '_')
1286 /* Remove _E{DIGITS}+[sb] */
1288 /* Just as for protected object subprograms, there are 2 categories
1289 of subprograms created by the compiler for each entry. The first
1290 one implements the actual entry code, and has a suffix following
1291 the convention above; the second one implements the barrier and
1292 uses the same convention as above, except that the 'E' is replaced
1295 Just as above, we do not decode the name of barrier functions
1296 to give the user a clue that the code he is debugging has been
1297 internally generated. */
1299 if (len0 - i > 3 && encoded [i] == '_' && encoded[i+1] == 'E'
1300 && isdigit (encoded[i+2]))
1304 while (k < len0 && isdigit (encoded[k]))
1308 && (encoded[k] == 'b' || encoded[k] == 's'))
1311 /* Just as an extra precaution, make sure that if this
1312 suffix is followed by anything else, it is a '_'.
1313 Otherwise, we matched this sequence by accident. */
1315 || (k < len0 && encoded[k] == '_'))
1320 /* Remove trailing "N" in [a-z0-9]+N__. The N is added by
1321 the GNAT front-end in protected object subprograms. */
1324 && encoded[i] == 'N' && encoded[i+1] == '_' && encoded[i+2] == '_')
1326 /* Backtrack a bit up until we reach either the begining of
1327 the encoded name, or "__". Make sure that we only find
1328 digits or lowercase characters. */
1329 const char *ptr = encoded + i - 1;
1331 while (ptr >= encoded && is_lower_alphanum (ptr[0]))
1334 || (ptr > encoded && ptr[0] == '_' && ptr[-1] == '_'))
1338 if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1]))
1340 /* This is a X[bn]* sequence not separated from the previous
1341 part of the name with a non-alpha-numeric character (in other
1342 words, immediately following an alpha-numeric character), then
1343 verify that it is placed at the end of the encoded name. If
1344 not, then the encoding is not valid and we should abort the
1345 decoding. Otherwise, just skip it, it is used in body-nested
1349 while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n'));
1353 else if (i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_')
1355 /* Replace '__' by '.'. */
1363 /* It's a character part of the decoded name, so just copy it
1365 decoded[j] = encoded[i];
1370 decoded[j] = '\000';
1372 /* Decoded names should never contain any uppercase character.
1373 Double-check this, and abort the decoding if we find one. */
1375 for (i = 0; decoded[i] != '\0'; i += 1)
1376 if (isupper (decoded[i]) || decoded[i] == ' ')
1379 if (strcmp (decoded, encoded) == 0)
1385 GROW_VECT (decoding_buffer, decoding_buffer_size, strlen (encoded) + 3);
1386 decoded = decoding_buffer;
1387 if (encoded[0] == '<')
1388 strcpy (decoded, encoded);
1390 xsnprintf (decoded, decoding_buffer_size, "<%s>", encoded);
1395 /* Table for keeping permanent unique copies of decoded names. Once
1396 allocated, names in this table are never released. While this is a
1397 storage leak, it should not be significant unless there are massive
1398 changes in the set of decoded names in successive versions of a
1399 symbol table loaded during a single session. */
1400 static struct htab *decoded_names_store;
1402 /* Returns the decoded name of GSYMBOL, as for ada_decode, caching it
1403 in the language-specific part of GSYMBOL, if it has not been
1404 previously computed. Tries to save the decoded name in the same
1405 obstack as GSYMBOL, if possible, and otherwise on the heap (so that,
1406 in any case, the decoded symbol has a lifetime at least that of
1408 The GSYMBOL parameter is "mutable" in the C++ sense: logically
1409 const, but nevertheless modified to a semantically equivalent form
1410 when a decoded name is cached in it. */
1413 ada_decode_symbol (const struct general_symbol_info *arg)
1415 struct general_symbol_info *gsymbol = (struct general_symbol_info *) arg;
1416 const char **resultp =
1417 &gsymbol->language_specific.demangled_name;
1419 if (!gsymbol->ada_mangled)
1421 const char *decoded = ada_decode (gsymbol->name);
1422 struct obstack *obstack = gsymbol->language_specific.obstack;
1424 gsymbol->ada_mangled = 1;
1426 if (obstack != NULL)
1428 = (const char *) obstack_copy0 (obstack, decoded, strlen (decoded));
1431 /* Sometimes, we can't find a corresponding objfile, in
1432 which case, we put the result on the heap. Since we only
1433 decode when needed, we hope this usually does not cause a
1434 significant memory leak (FIXME). */
1436 char **slot = (char **) htab_find_slot (decoded_names_store,
1440 *slot = xstrdup (decoded);
1449 ada_la_decode (const char *encoded, int options)
1451 return xstrdup (ada_decode (encoded));
1454 /* Implement la_sniff_from_mangled_name for Ada. */
1457 ada_sniff_from_mangled_name (const char *mangled, char **out)
1459 const char *demangled = ada_decode (mangled);
1463 if (demangled != mangled && demangled != NULL && demangled[0] != '<')
1465 /* Set the gsymbol language to Ada, but still return 0.
1466 Two reasons for that:
1468 1. For Ada, we prefer computing the symbol's decoded name
1469 on the fly rather than pre-compute it, in order to save
1470 memory (Ada projects are typically very large).
1472 2. There are some areas in the definition of the GNAT
1473 encoding where, with a bit of bad luck, we might be able
1474 to decode a non-Ada symbol, generating an incorrect
1475 demangled name (Eg: names ending with "TB" for instance
1476 are identified as task bodies and so stripped from
1477 the decoded name returned).
1479 Returning 1, here, but not setting *DEMANGLED, helps us get a
1480 little bit of the best of both worlds. Because we're last,
1481 we should not affect any of the other languages that were
1482 able to demangle the symbol before us; we get to correctly
1483 tag Ada symbols as such; and even if we incorrectly tagged a
1484 non-Ada symbol, which should be rare, any routing through the
1485 Ada language should be transparent (Ada tries to behave much
1486 like C/C++ with non-Ada symbols). */
1497 /* Assuming that INDEX_DESC_TYPE is an ___XA structure, a structure
1498 generated by the GNAT compiler to describe the index type used
1499 for each dimension of an array, check whether it follows the latest
1500 known encoding. If not, fix it up to conform to the latest encoding.
1501 Otherwise, do nothing. This function also does nothing if
1502 INDEX_DESC_TYPE is NULL.
1504 The GNAT encoding used to describle the array index type evolved a bit.
1505 Initially, the information would be provided through the name of each
1506 field of the structure type only, while the type of these fields was
1507 described as unspecified and irrelevant. The debugger was then expected
1508 to perform a global type lookup using the name of that field in order
1509 to get access to the full index type description. Because these global
1510 lookups can be very expensive, the encoding was later enhanced to make
1511 the global lookup unnecessary by defining the field type as being
1512 the full index type description.
1514 The purpose of this routine is to allow us to support older versions
1515 of the compiler by detecting the use of the older encoding, and by
1516 fixing up the INDEX_DESC_TYPE to follow the new one (at this point,
1517 we essentially replace each field's meaningless type by the associated
1521 ada_fixup_array_indexes_type (struct type *index_desc_type)
1525 if (index_desc_type == NULL)
1527 gdb_assert (TYPE_NFIELDS (index_desc_type) > 0);
1529 /* Check if INDEX_DESC_TYPE follows the older encoding (it is sufficient
1530 to check one field only, no need to check them all). If not, return
1533 If our INDEX_DESC_TYPE was generated using the older encoding,
1534 the field type should be a meaningless integer type whose name
1535 is not equal to the field name. */
1536 if (TYPE_NAME (TYPE_FIELD_TYPE (index_desc_type, 0)) != NULL
1537 && strcmp (TYPE_NAME (TYPE_FIELD_TYPE (index_desc_type, 0)),
1538 TYPE_FIELD_NAME (index_desc_type, 0)) == 0)
1541 /* Fixup each field of INDEX_DESC_TYPE. */
1542 for (i = 0; i < TYPE_NFIELDS (index_desc_type); i++)
1544 const char *name = TYPE_FIELD_NAME (index_desc_type, i);
1545 struct type *raw_type = ada_check_typedef (ada_find_any_type (name));
1548 TYPE_FIELD_TYPE (index_desc_type, i) = raw_type;
1552 /* Names of MAX_ADA_DIMENS bounds in P_BOUNDS fields of array descriptors. */
1554 static const char *bound_name[] = {
1555 "LB0", "UB0", "LB1", "UB1", "LB2", "UB2", "LB3", "UB3",
1556 "LB4", "UB4", "LB5", "UB5", "LB6", "UB6", "LB7", "UB7"
1559 /* Maximum number of array dimensions we are prepared to handle. */
1561 #define MAX_ADA_DIMENS (sizeof(bound_name) / (2*sizeof(char *)))
1564 /* The desc_* routines return primitive portions of array descriptors
1567 /* The descriptor or array type, if any, indicated by TYPE; removes
1568 level of indirection, if needed. */
1570 static struct type *
1571 desc_base_type (struct type *type)
1575 type = ada_check_typedef (type);
1576 if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
1577 type = ada_typedef_target_type (type);
1580 && (TYPE_CODE (type) == TYPE_CODE_PTR
1581 || TYPE_CODE (type) == TYPE_CODE_REF))
1582 return ada_check_typedef (TYPE_TARGET_TYPE (type));
1587 /* True iff TYPE indicates a "thin" array pointer type. */
1590 is_thin_pntr (struct type *type)
1593 is_suffix (ada_type_name (desc_base_type (type)), "___XUT")
1594 || is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE");
1597 /* The descriptor type for thin pointer type TYPE. */
1599 static struct type *
1600 thin_descriptor_type (struct type *type)
1602 struct type *base_type = desc_base_type (type);
1604 if (base_type == NULL)
1606 if (is_suffix (ada_type_name (base_type), "___XVE"))
1610 struct type *alt_type = ada_find_parallel_type (base_type, "___XVE");
1612 if (alt_type == NULL)
1619 /* A pointer to the array data for thin-pointer value VAL. */
1621 static struct value *
1622 thin_data_pntr (struct value *val)
1624 struct type *type = ada_check_typedef (value_type (val));
1625 struct type *data_type = desc_data_target_type (thin_descriptor_type (type));
1627 data_type = lookup_pointer_type (data_type);
1629 if (TYPE_CODE (type) == TYPE_CODE_PTR)
1630 return value_cast (data_type, value_copy (val));
1632 return value_from_longest (data_type, value_address (val));
1635 /* True iff TYPE indicates a "thick" array pointer type. */
1638 is_thick_pntr (struct type *type)
1640 type = desc_base_type (type);
1641 return (type != NULL && TYPE_CODE (type) == TYPE_CODE_STRUCT
1642 && lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL);
1645 /* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1646 pointer to one, the type of its bounds data; otherwise, NULL. */
1648 static struct type *
1649 desc_bounds_type (struct type *type)
1653 type = desc_base_type (type);
1657 else if (is_thin_pntr (type))
1659 type = thin_descriptor_type (type);
1662 r = lookup_struct_elt_type (type, "BOUNDS", 1);
1664 return ada_check_typedef (r);
1666 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
1668 r = lookup_struct_elt_type (type, "P_BOUNDS", 1);
1670 return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r)));
1675 /* If ARR is an array descriptor (fat or thin pointer), or pointer to
1676 one, a pointer to its bounds data. Otherwise NULL. */
1678 static struct value *
1679 desc_bounds (struct value *arr)
1681 struct type *type = ada_check_typedef (value_type (arr));
1683 if (is_thin_pntr (type))
1685 struct type *bounds_type =
1686 desc_bounds_type (thin_descriptor_type (type));
1689 if (bounds_type == NULL)
1690 error (_("Bad GNAT array descriptor"));
1692 /* NOTE: The following calculation is not really kosher, but
1693 since desc_type is an XVE-encoded type (and shouldn't be),
1694 the correct calculation is a real pain. FIXME (and fix GCC). */
1695 if (TYPE_CODE (type) == TYPE_CODE_PTR)
1696 addr = value_as_long (arr);
1698 addr = value_address (arr);
1701 value_from_longest (lookup_pointer_type (bounds_type),
1702 addr - TYPE_LENGTH (bounds_type));
1705 else if (is_thick_pntr (type))
1707 struct value *p_bounds = value_struct_elt (&arr, NULL, "P_BOUNDS", NULL,
1708 _("Bad GNAT array descriptor"));
1709 struct type *p_bounds_type = value_type (p_bounds);
1712 && TYPE_CODE (p_bounds_type) == TYPE_CODE_PTR)
1714 struct type *target_type = TYPE_TARGET_TYPE (p_bounds_type);
1716 if (TYPE_STUB (target_type))
1717 p_bounds = value_cast (lookup_pointer_type
1718 (ada_check_typedef (target_type)),
1722 error (_("Bad GNAT array descriptor"));
1730 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1731 position of the field containing the address of the bounds data. */
1734 fat_pntr_bounds_bitpos (struct type *type)
1736 return TYPE_FIELD_BITPOS (desc_base_type (type), 1);
1739 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1740 size of the field containing the address of the bounds data. */
1743 fat_pntr_bounds_bitsize (struct type *type)
1745 type = desc_base_type (type);
1747 if (TYPE_FIELD_BITSIZE (type, 1) > 0)
1748 return TYPE_FIELD_BITSIZE (type, 1);
1750 return 8 * TYPE_LENGTH (ada_check_typedef (TYPE_FIELD_TYPE (type, 1)));
1753 /* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1754 pointer to one, the type of its array data (a array-with-no-bounds type);
1755 otherwise, NULL. Use ada_type_of_array to get an array type with bounds
1758 static struct type *
1759 desc_data_target_type (struct type *type)
1761 type = desc_base_type (type);
1763 /* NOTE: The following is bogus; see comment in desc_bounds. */
1764 if (is_thin_pntr (type))
1765 return desc_base_type (TYPE_FIELD_TYPE (thin_descriptor_type (type), 1));
1766 else if (is_thick_pntr (type))
1768 struct type *data_type = lookup_struct_elt_type (type, "P_ARRAY", 1);
1771 && TYPE_CODE (ada_check_typedef (data_type)) == TYPE_CODE_PTR)
1772 return ada_check_typedef (TYPE_TARGET_TYPE (data_type));
1778 /* If ARR is an array descriptor (fat or thin pointer), a pointer to
1781 static struct value *
1782 desc_data (struct value *arr)
1784 struct type *type = value_type (arr);
1786 if (is_thin_pntr (type))
1787 return thin_data_pntr (arr);
1788 else if (is_thick_pntr (type))
1789 return value_struct_elt (&arr, NULL, "P_ARRAY", NULL,
1790 _("Bad GNAT array descriptor"));
1796 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1797 position of the field containing the address of the data. */
1800 fat_pntr_data_bitpos (struct type *type)
1802 return TYPE_FIELD_BITPOS (desc_base_type (type), 0);
1805 /* If TYPE is the type of an array-descriptor (fat pointer), the bit
1806 size of the field containing the address of the data. */
1809 fat_pntr_data_bitsize (struct type *type)
1811 type = desc_base_type (type);
1813 if (TYPE_FIELD_BITSIZE (type, 0) > 0)
1814 return TYPE_FIELD_BITSIZE (type, 0);
1816 return TARGET_CHAR_BIT * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0));
1819 /* If BOUNDS is an array-bounds structure (or pointer to one), return
1820 the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1821 bound, if WHICH is 1. The first bound is I=1. */
1823 static struct value *
1824 desc_one_bound (struct value *bounds, int i, int which)
1826 return value_struct_elt (&bounds, NULL, bound_name[2 * i + which - 2], NULL,
1827 _("Bad GNAT array descriptor bounds"));
1830 /* If BOUNDS is an array-bounds structure type, return the bit position
1831 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1832 bound, if WHICH is 1. The first bound is I=1. */
1835 desc_bound_bitpos (struct type *type, int i, int which)
1837 return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2);
1840 /* If BOUNDS is an array-bounds structure type, return the bit field size
1841 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
1842 bound, if WHICH is 1. The first bound is I=1. */
1845 desc_bound_bitsize (struct type *type, int i, int which)
1847 type = desc_base_type (type);
1849 if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0)
1850 return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2);
1852 return 8 * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 2 * i + which - 2));
1855 /* If TYPE is the type of an array-bounds structure, the type of its
1856 Ith bound (numbering from 1). Otherwise, NULL. */
1858 static struct type *
1859 desc_index_type (struct type *type, int i)
1861 type = desc_base_type (type);
1863 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
1864 return lookup_struct_elt_type (type, bound_name[2 * i - 2], 1);
1869 /* The number of index positions in the array-bounds type TYPE.
1870 Return 0 if TYPE is NULL. */
1873 desc_arity (struct type *type)
1875 type = desc_base_type (type);
1878 return TYPE_NFIELDS (type) / 2;
1882 /* Non-zero iff TYPE is a simple array type (not a pointer to one) or
1883 an array descriptor type (representing an unconstrained array
1887 ada_is_direct_array_type (struct type *type)
1891 type = ada_check_typedef (type);
1892 return (TYPE_CODE (type) == TYPE_CODE_ARRAY
1893 || ada_is_array_descriptor_type (type));
1896 /* Non-zero iff TYPE represents any kind of array in Ada, or a pointer
1900 ada_is_array_type (struct type *type)
1903 && (TYPE_CODE (type) == TYPE_CODE_PTR
1904 || TYPE_CODE (type) == TYPE_CODE_REF))
1905 type = TYPE_TARGET_TYPE (type);
1906 return ada_is_direct_array_type (type);
1909 /* Non-zero iff TYPE is a simple array type or pointer to one. */
1912 ada_is_simple_array_type (struct type *type)
1916 type = ada_check_typedef (type);
1917 return (TYPE_CODE (type) == TYPE_CODE_ARRAY
1918 || (TYPE_CODE (type) == TYPE_CODE_PTR
1919 && TYPE_CODE (ada_check_typedef (TYPE_TARGET_TYPE (type)))
1920 == TYPE_CODE_ARRAY));
1923 /* Non-zero iff TYPE belongs to a GNAT array descriptor. */
1926 ada_is_array_descriptor_type (struct type *type)
1928 struct type *data_type = desc_data_target_type (type);
1932 type = ada_check_typedef (type);
1933 return (data_type != NULL
1934 && TYPE_CODE (data_type) == TYPE_CODE_ARRAY
1935 && desc_arity (desc_bounds_type (type)) > 0);
1938 /* Non-zero iff type is a partially mal-formed GNAT array
1939 descriptor. FIXME: This is to compensate for some problems with
1940 debugging output from GNAT. Re-examine periodically to see if it
1944 ada_is_bogus_array_descriptor (struct type *type)
1948 && TYPE_CODE (type) == TYPE_CODE_STRUCT
1949 && (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL
1950 || lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL)
1951 && !ada_is_array_descriptor_type (type);
1955 /* If ARR has a record type in the form of a standard GNAT array descriptor,
1956 (fat pointer) returns the type of the array data described---specifically,
1957 a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled
1958 in from the descriptor; otherwise, they are left unspecified. If
1959 the ARR denotes a null array descriptor and BOUNDS is non-zero,
1960 returns NULL. The result is simply the type of ARR if ARR is not
1963 ada_type_of_array (struct value *arr, int bounds)
1965 if (ada_is_constrained_packed_array_type (value_type (arr)))
1966 return decode_constrained_packed_array_type (value_type (arr));
1968 if (!ada_is_array_descriptor_type (value_type (arr)))
1969 return value_type (arr);
1973 struct type *array_type =
1974 ada_check_typedef (desc_data_target_type (value_type (arr)));
1976 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1977 TYPE_FIELD_BITSIZE (array_type, 0) =
1978 decode_packed_array_bitsize (value_type (arr));
1984 struct type *elt_type;
1986 struct value *descriptor;
1988 elt_type = ada_array_element_type (value_type (arr), -1);
1989 arity = ada_array_arity (value_type (arr));
1991 if (elt_type == NULL || arity == 0)
1992 return ada_check_typedef (value_type (arr));
1994 descriptor = desc_bounds (arr);
1995 if (value_as_long (descriptor) == 0)
1999 struct type *range_type = alloc_type_copy (value_type (arr));
2000 struct type *array_type = alloc_type_copy (value_type (arr));
2001 struct value *low = desc_one_bound (descriptor, arity, 0);
2002 struct value *high = desc_one_bound (descriptor, arity, 1);
2005 create_static_range_type (range_type, value_type (low),
2006 longest_to_int (value_as_long (low)),
2007 longest_to_int (value_as_long (high)));
2008 elt_type = create_array_type (array_type, elt_type, range_type);
2010 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
2012 /* We need to store the element packed bitsize, as well as
2013 recompute the array size, because it was previously
2014 computed based on the unpacked element size. */
2015 LONGEST lo = value_as_long (low);
2016 LONGEST hi = value_as_long (high);
2018 TYPE_FIELD_BITSIZE (elt_type, 0) =
2019 decode_packed_array_bitsize (value_type (arr));
2020 /* If the array has no element, then the size is already
2021 zero, and does not need to be recomputed. */
2025 (hi - lo + 1) * TYPE_FIELD_BITSIZE (elt_type, 0);
2027 TYPE_LENGTH (array_type) = (array_bitsize + 7) / 8;
2032 return lookup_pointer_type (elt_type);
2036 /* If ARR does not represent an array, returns ARR unchanged.
2037 Otherwise, returns either a standard GDB array with bounds set
2038 appropriately or, if ARR is a non-null fat pointer, a pointer to a standard
2039 GDB array. Returns NULL if ARR is a null fat pointer. */
2042 ada_coerce_to_simple_array_ptr (struct value *arr)
2044 if (ada_is_array_descriptor_type (value_type (arr)))
2046 struct type *arrType = ada_type_of_array (arr, 1);
2048 if (arrType == NULL)
2050 return value_cast (arrType, value_copy (desc_data (arr)));
2052 else if (ada_is_constrained_packed_array_type (value_type (arr)))
2053 return decode_constrained_packed_array (arr);
2058 /* If ARR does not represent an array, returns ARR unchanged.
2059 Otherwise, returns a standard GDB array describing ARR (which may
2060 be ARR itself if it already is in the proper form). */
2063 ada_coerce_to_simple_array (struct value *arr)
2065 if (ada_is_array_descriptor_type (value_type (arr)))
2067 struct value *arrVal = ada_coerce_to_simple_array_ptr (arr);
2070 error (_("Bounds unavailable for null array pointer."));
2071 ada_ensure_varsize_limit (TYPE_TARGET_TYPE (value_type (arrVal)));
2072 return value_ind (arrVal);
2074 else if (ada_is_constrained_packed_array_type (value_type (arr)))
2075 return decode_constrained_packed_array (arr);
2080 /* If TYPE represents a GNAT array type, return it translated to an
2081 ordinary GDB array type (possibly with BITSIZE fields indicating
2082 packing). For other types, is the identity. */
2085 ada_coerce_to_simple_array_type (struct type *type)
2087 if (ada_is_constrained_packed_array_type (type))
2088 return decode_constrained_packed_array_type (type);
2090 if (ada_is_array_descriptor_type (type))
2091 return ada_check_typedef (desc_data_target_type (type));
2096 /* Non-zero iff TYPE represents a standard GNAT packed-array type. */
2099 ada_is_packed_array_type (struct type *type)
2103 type = desc_base_type (type);
2104 type = ada_check_typedef (type);
2106 ada_type_name (type) != NULL
2107 && strstr (ada_type_name (type), "___XP") != NULL;
2110 /* Non-zero iff TYPE represents a standard GNAT constrained
2111 packed-array type. */
2114 ada_is_constrained_packed_array_type (struct type *type)
2116 return ada_is_packed_array_type (type)
2117 && !ada_is_array_descriptor_type (type);
2120 /* Non-zero iff TYPE represents an array descriptor for a
2121 unconstrained packed-array type. */
2124 ada_is_unconstrained_packed_array_type (struct type *type)
2126 return ada_is_packed_array_type (type)
2127 && ada_is_array_descriptor_type (type);
2130 /* Given that TYPE encodes a packed array type (constrained or unconstrained),
2131 return the size of its elements in bits. */
2134 decode_packed_array_bitsize (struct type *type)
2136 const char *raw_name;
2140 /* Access to arrays implemented as fat pointers are encoded as a typedef
2141 of the fat pointer type. We need the name of the fat pointer type
2142 to do the decoding, so strip the typedef layer. */
2143 if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
2144 type = ada_typedef_target_type (type);
2146 raw_name = ada_type_name (ada_check_typedef (type));
2148 raw_name = ada_type_name (desc_base_type (type));
2153 tail = strstr (raw_name, "___XP");
2154 gdb_assert (tail != NULL);
2156 if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1)
2159 (_("could not understand bit size information on packed array"));
2166 /* Given that TYPE is a standard GDB array type with all bounds filled
2167 in, and that the element size of its ultimate scalar constituents
2168 (that is, either its elements, or, if it is an array of arrays, its
2169 elements' elements, etc.) is *ELT_BITS, return an identical type,
2170 but with the bit sizes of its elements (and those of any
2171 constituent arrays) recorded in the BITSIZE components of its
2172 TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size
2175 Note that, for arrays whose index type has an XA encoding where
2176 a bound references a record discriminant, getting that discriminant,
2177 and therefore the actual value of that bound, is not possible
2178 because none of the given parameters gives us access to the record.
2179 This function assumes that it is OK in the context where it is being
2180 used to return an array whose bounds are still dynamic and where
2181 the length is arbitrary. */
2183 static struct type *
2184 constrained_packed_array_type (struct type *type, long *elt_bits)
2186 struct type *new_elt_type;
2187 struct type *new_type;
2188 struct type *index_type_desc;
2189 struct type *index_type;
2190 LONGEST low_bound, high_bound;
2192 type = ada_check_typedef (type);
2193 if (TYPE_CODE (type) != TYPE_CODE_ARRAY)
2196 index_type_desc = ada_find_parallel_type (type, "___XA");
2197 if (index_type_desc)
2198 index_type = to_fixed_range_type (TYPE_FIELD_TYPE (index_type_desc, 0),
2201 index_type = TYPE_INDEX_TYPE (type);
2203 new_type = alloc_type_copy (type);
2205 constrained_packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)),
2207 create_array_type (new_type, new_elt_type, index_type);
2208 TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits;
2209 TYPE_NAME (new_type) = ada_type_name (type);
2211 if ((TYPE_CODE (check_typedef (index_type)) == TYPE_CODE_RANGE
2212 && is_dynamic_type (check_typedef (index_type)))
2213 || get_discrete_bounds (index_type, &low_bound, &high_bound) < 0)
2214 low_bound = high_bound = 0;
2215 if (high_bound < low_bound)
2216 *elt_bits = TYPE_LENGTH (new_type) = 0;
2219 *elt_bits *= (high_bound - low_bound + 1);
2220 TYPE_LENGTH (new_type) =
2221 (*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2224 TYPE_FIXED_INSTANCE (new_type) = 1;
2228 /* The array type encoded by TYPE, where
2229 ada_is_constrained_packed_array_type (TYPE). */
2231 static struct type *
2232 decode_constrained_packed_array_type (struct type *type)
2234 const char *raw_name = ada_type_name (ada_check_typedef (type));
2237 struct type *shadow_type;
2241 raw_name = ada_type_name (desc_base_type (type));
2246 name = (char *) alloca (strlen (raw_name) + 1);
2247 tail = strstr (raw_name, "___XP");
2248 type = desc_base_type (type);
2250 memcpy (name, raw_name, tail - raw_name);
2251 name[tail - raw_name] = '\000';
2253 shadow_type = ada_find_parallel_type_with_name (type, name);
2255 if (shadow_type == NULL)
2257 lim_warning (_("could not find bounds information on packed array"));
2260 shadow_type = check_typedef (shadow_type);
2262 if (TYPE_CODE (shadow_type) != TYPE_CODE_ARRAY)
2264 lim_warning (_("could not understand bounds "
2265 "information on packed array"));
2269 bits = decode_packed_array_bitsize (type);
2270 return constrained_packed_array_type (shadow_type, &bits);
2273 /* Given that ARR is a struct value *indicating a GNAT constrained packed
2274 array, returns a simple array that denotes that array. Its type is a
2275 standard GDB array type except that the BITSIZEs of the array
2276 target types are set to the number of bits in each element, and the
2277 type length is set appropriately. */
2279 static struct value *
2280 decode_constrained_packed_array (struct value *arr)
2284 /* If our value is a pointer, then dereference it. Likewise if
2285 the value is a reference. Make sure that this operation does not
2286 cause the target type to be fixed, as this would indirectly cause
2287 this array to be decoded. The rest of the routine assumes that
2288 the array hasn't been decoded yet, so we use the basic "coerce_ref"
2289 and "value_ind" routines to perform the dereferencing, as opposed
2290 to using "ada_coerce_ref" or "ada_value_ind". */
2291 arr = coerce_ref (arr);
2292 if (TYPE_CODE (ada_check_typedef (value_type (arr))) == TYPE_CODE_PTR)
2293 arr = value_ind (arr);
2295 type = decode_constrained_packed_array_type (value_type (arr));
2298 error (_("can't unpack array"));
2302 if (gdbarch_bits_big_endian (get_type_arch (value_type (arr)))
2303 && ada_is_modular_type (value_type (arr)))
2305 /* This is a (right-justified) modular type representing a packed
2306 array with no wrapper. In order to interpret the value through
2307 the (left-justified) packed array type we just built, we must
2308 first left-justify it. */
2309 int bit_size, bit_pos;
2312 mod = ada_modulus (value_type (arr)) - 1;
2319 bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size;
2320 arr = ada_value_primitive_packed_val (arr, NULL,
2321 bit_pos / HOST_CHAR_BIT,
2322 bit_pos % HOST_CHAR_BIT,
2327 return coerce_unspec_val_to_type (arr, type);
2331 /* The value of the element of packed array ARR at the ARITY indices
2332 given in IND. ARR must be a simple array. */
2334 static struct value *
2335 value_subscript_packed (struct value *arr, int arity, struct value **ind)
2338 int bits, elt_off, bit_off;
2339 long elt_total_bit_offset;
2340 struct type *elt_type;
2344 elt_total_bit_offset = 0;
2345 elt_type = ada_check_typedef (value_type (arr));
2346 for (i = 0; i < arity; i += 1)
2348 if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY
2349 || TYPE_FIELD_BITSIZE (elt_type, 0) == 0)
2351 (_("attempt to do packed indexing of "
2352 "something other than a packed array"));
2355 struct type *range_type = TYPE_INDEX_TYPE (elt_type);
2356 LONGEST lowerbound, upperbound;
2359 if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
2361 lim_warning (_("don't know bounds of array"));
2362 lowerbound = upperbound = 0;
2365 idx = pos_atr (ind[i]);
2366 if (idx < lowerbound || idx > upperbound)
2367 lim_warning (_("packed array index %ld out of bounds"),
2369 bits = TYPE_FIELD_BITSIZE (elt_type, 0);
2370 elt_total_bit_offset += (idx - lowerbound) * bits;
2371 elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type));
2374 elt_off = elt_total_bit_offset / HOST_CHAR_BIT;
2375 bit_off = elt_total_bit_offset % HOST_CHAR_BIT;
2377 v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off,
2382 /* Non-zero iff TYPE includes negative integer values. */
2385 has_negatives (struct type *type)
2387 switch (TYPE_CODE (type))
2392 return !TYPE_UNSIGNED (type);
2393 case TYPE_CODE_RANGE:
2394 return TYPE_LOW_BOUND (type) < 0;
2398 /* With SRC being a buffer containing BIT_SIZE bits of data at BIT_OFFSET,
2399 unpack that data into UNPACKED. UNPACKED_LEN is the size in bytes of
2400 the unpacked buffer.
2402 The size of the unpacked buffer (UNPACKED_LEN) is expected to be large
2403 enough to contain at least BIT_OFFSET bits. If not, an error is raised.
2405 IS_BIG_ENDIAN is nonzero if the data is stored in big endian mode,
2408 IS_SIGNED_TYPE is nonzero if the data corresponds to a signed type.
2410 IS_SCALAR is nonzero if the data corresponds to a signed type. */
2413 ada_unpack_from_contents (const gdb_byte *src, int bit_offset, int bit_size,
2414 gdb_byte *unpacked, int unpacked_len,
2415 int is_big_endian, int is_signed_type,
2418 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2419 int src_idx; /* Index into the source area */
2420 int src_bytes_left; /* Number of source bytes left to process. */
2421 int srcBitsLeft; /* Number of source bits left to move */
2422 int unusedLS; /* Number of bits in next significant
2423 byte of source that are unused */
2425 int unpacked_idx; /* Index into the unpacked buffer */
2426 int unpacked_bytes_left; /* Number of bytes left to set in unpacked. */
2428 unsigned long accum; /* Staging area for bits being transferred */
2429 int accumSize; /* Number of meaningful bits in accum */
2432 /* Transmit bytes from least to most significant; delta is the direction
2433 the indices move. */
2434 int delta = is_big_endian ? -1 : 1;
2436 /* Make sure that unpacked is large enough to receive the BIT_SIZE
2438 if ((bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT > unpacked_len)
2439 error (_("Cannot unpack %d bits into buffer of %d bytes"),
2440 bit_size, unpacked_len);
2442 srcBitsLeft = bit_size;
2443 src_bytes_left = src_len;
2444 unpacked_bytes_left = unpacked_len;
2449 src_idx = src_len - 1;
2451 && ((src[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1))))
2455 (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT)
2461 unpacked_idx = unpacked_len - 1;
2465 /* Non-scalar values must be aligned at a byte boundary... */
2467 (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT;
2468 /* ... And are placed at the beginning (most-significant) bytes
2470 unpacked_idx = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT - 1;
2471 unpacked_bytes_left = unpacked_idx + 1;
2476 int sign_bit_offset = (bit_size + bit_offset - 1) % 8;
2478 src_idx = unpacked_idx = 0;
2479 unusedLS = bit_offset;
2482 if (is_signed_type && (src[src_len - 1] & (1 << sign_bit_offset)))
2487 while (src_bytes_left > 0)
2489 /* Mask for removing bits of the next source byte that are not
2490 part of the value. */
2491 unsigned int unusedMSMask =
2492 (1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) -
2494 /* Sign-extend bits for this byte. */
2495 unsigned int signMask = sign & ~unusedMSMask;
2498 (((src[src_idx] >> unusedLS) & unusedMSMask) | signMask) << accumSize;
2499 accumSize += HOST_CHAR_BIT - unusedLS;
2500 if (accumSize >= HOST_CHAR_BIT)
2502 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2503 accumSize -= HOST_CHAR_BIT;
2504 accum >>= HOST_CHAR_BIT;
2505 unpacked_bytes_left -= 1;
2506 unpacked_idx += delta;
2508 srcBitsLeft -= HOST_CHAR_BIT - unusedLS;
2510 src_bytes_left -= 1;
2513 while (unpacked_bytes_left > 0)
2515 accum |= sign << accumSize;
2516 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2517 accumSize -= HOST_CHAR_BIT;
2520 accum >>= HOST_CHAR_BIT;
2521 unpacked_bytes_left -= 1;
2522 unpacked_idx += delta;
2526 /* Create a new value of type TYPE from the contents of OBJ starting
2527 at byte OFFSET, and bit offset BIT_OFFSET within that byte,
2528 proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then
2529 assigning through the result will set the field fetched from.
2530 VALADDR is ignored unless OBJ is NULL, in which case,
2531 VALADDR+OFFSET must address the start of storage containing the
2532 packed value. The value returned in this case is never an lval.
2533 Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */
2536 ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
2537 long offset, int bit_offset, int bit_size,
2541 const gdb_byte *src; /* First byte containing data to unpack */
2543 const int is_scalar = is_scalar_type (type);
2544 const int is_big_endian = gdbarch_bits_big_endian (get_type_arch (type));
2545 gdb::byte_vector staging;
2547 type = ada_check_typedef (type);
2550 src = valaddr + offset;
2552 src = value_contents (obj) + offset;
2554 if (is_dynamic_type (type))
2556 /* The length of TYPE might by dynamic, so we need to resolve
2557 TYPE in order to know its actual size, which we then use
2558 to create the contents buffer of the value we return.
2559 The difficulty is that the data containing our object is
2560 packed, and therefore maybe not at a byte boundary. So, what
2561 we do, is unpack the data into a byte-aligned buffer, and then
2562 use that buffer as our object's value for resolving the type. */
2563 int staging_len = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2564 staging.resize (staging_len);
2566 ada_unpack_from_contents (src, bit_offset, bit_size,
2567 staging.data (), staging.size (),
2568 is_big_endian, has_negatives (type),
2570 type = resolve_dynamic_type (type, staging.data (), 0);
2571 if (TYPE_LENGTH (type) < (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT)
2573 /* This happens when the length of the object is dynamic,
2574 and is actually smaller than the space reserved for it.
2575 For instance, in an array of variant records, the bit_size
2576 we're given is the array stride, which is constant and
2577 normally equal to the maximum size of its element.
2578 But, in reality, each element only actually spans a portion
2580 bit_size = TYPE_LENGTH (type) * HOST_CHAR_BIT;
2586 v = allocate_value (type);
2587 src = valaddr + offset;
2589 else if (VALUE_LVAL (obj) == lval_memory && value_lazy (obj))
2591 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2594 v = value_at (type, value_address (obj) + offset);
2595 buf = (gdb_byte *) alloca (src_len);
2596 read_memory (value_address (v), buf, src_len);
2601 v = allocate_value (type);
2602 src = value_contents (obj) + offset;
2607 long new_offset = offset;
2609 set_value_component_location (v, obj);
2610 set_value_bitpos (v, bit_offset + value_bitpos (obj));
2611 set_value_bitsize (v, bit_size);
2612 if (value_bitpos (v) >= HOST_CHAR_BIT)
2615 set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT);
2617 set_value_offset (v, new_offset);
2619 /* Also set the parent value. This is needed when trying to
2620 assign a new value (in inferior memory). */
2621 set_value_parent (v, obj);
2624 set_value_bitsize (v, bit_size);
2625 unpacked = value_contents_writeable (v);
2629 memset (unpacked, 0, TYPE_LENGTH (type));
2633 if (staging.size () == TYPE_LENGTH (type))
2635 /* Small short-cut: If we've unpacked the data into a buffer
2636 of the same size as TYPE's length, then we can reuse that,
2637 instead of doing the unpacking again. */
2638 memcpy (unpacked, staging.data (), staging.size ());
2641 ada_unpack_from_contents (src, bit_offset, bit_size,
2642 unpacked, TYPE_LENGTH (type),
2643 is_big_endian, has_negatives (type), is_scalar);
2648 /* Store the contents of FROMVAL into the location of TOVAL.
2649 Return a new value with the location of TOVAL and contents of
2650 FROMVAL. Handles assignment into packed fields that have
2651 floating-point or non-scalar types. */
2653 static struct value *
2654 ada_value_assign (struct value *toval, struct value *fromval)
2656 struct type *type = value_type (toval);
2657 int bits = value_bitsize (toval);
2659 toval = ada_coerce_ref (toval);
2660 fromval = ada_coerce_ref (fromval);
2662 if (ada_is_direct_array_type (value_type (toval)))
2663 toval = ada_coerce_to_simple_array (toval);
2664 if (ada_is_direct_array_type (value_type (fromval)))
2665 fromval = ada_coerce_to_simple_array (fromval);
2667 if (!deprecated_value_modifiable (toval))
2668 error (_("Left operand of assignment is not a modifiable lvalue."));
2670 if (VALUE_LVAL (toval) == lval_memory
2672 && (TYPE_CODE (type) == TYPE_CODE_FLT
2673 || TYPE_CODE (type) == TYPE_CODE_STRUCT))
2675 int len = (value_bitpos (toval)
2676 + bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2678 gdb_byte *buffer = (gdb_byte *) alloca (len);
2680 CORE_ADDR to_addr = value_address (toval);
2682 if (TYPE_CODE (type) == TYPE_CODE_FLT)
2683 fromval = value_cast (type, fromval);
2685 read_memory (to_addr, buffer, len);
2686 from_size = value_bitsize (fromval);
2688 from_size = TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT;
2690 const int is_big_endian = gdbarch_bits_big_endian (get_type_arch (type));
2691 ULONGEST from_offset = 0;
2692 if (is_big_endian && is_scalar_type (value_type (fromval)))
2693 from_offset = from_size - bits;
2694 copy_bitwise (buffer, value_bitpos (toval),
2695 value_contents (fromval), from_offset,
2696 bits, is_big_endian);
2697 write_memory_with_notification (to_addr, buffer, len);
2699 val = value_copy (toval);
2700 memcpy (value_contents_raw (val), value_contents (fromval),
2701 TYPE_LENGTH (type));
2702 deprecated_set_value_type (val, type);
2707 return value_assign (toval, fromval);
2711 /* Given that COMPONENT is a memory lvalue that is part of the lvalue
2712 CONTAINER, assign the contents of VAL to COMPONENTS's place in
2713 CONTAINER. Modifies the VALUE_CONTENTS of CONTAINER only, not
2714 COMPONENT, and not the inferior's memory. The current contents
2715 of COMPONENT are ignored.
2717 Although not part of the initial design, this function also works
2718 when CONTAINER and COMPONENT are not_lval's: it works as if CONTAINER
2719 had a null address, and COMPONENT had an address which is equal to
2720 its offset inside CONTAINER. */
2723 value_assign_to_component (struct value *container, struct value *component,
2726 LONGEST offset_in_container =
2727 (LONGEST) (value_address (component) - value_address (container));
2728 int bit_offset_in_container =
2729 value_bitpos (component) - value_bitpos (container);
2732 val = value_cast (value_type (component), val);
2734 if (value_bitsize (component) == 0)
2735 bits = TARGET_CHAR_BIT * TYPE_LENGTH (value_type (component));
2737 bits = value_bitsize (component);
2739 if (gdbarch_bits_big_endian (get_type_arch (value_type (container))))
2743 if (is_scalar_type (check_typedef (value_type (component))))
2745 = TYPE_LENGTH (value_type (component)) * TARGET_CHAR_BIT - bits;
2748 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2749 value_bitpos (container) + bit_offset_in_container,
2750 value_contents (val), src_offset, bits, 1);
2753 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2754 value_bitpos (container) + bit_offset_in_container,
2755 value_contents (val), 0, bits, 0);
2758 /* Determine if TYPE is an access to an unconstrained array. */
2761 ada_is_access_to_unconstrained_array (struct type *type)
2763 return (TYPE_CODE (type) == TYPE_CODE_TYPEDEF
2764 && is_thick_pntr (ada_typedef_target_type (type)));
2767 /* The value of the element of array ARR at the ARITY indices given in IND.
2768 ARR may be either a simple array, GNAT array descriptor, or pointer
2772 ada_value_subscript (struct value *arr, int arity, struct value **ind)
2776 struct type *elt_type;
2778 elt = ada_coerce_to_simple_array (arr);
2780 elt_type = ada_check_typedef (value_type (elt));
2781 if (TYPE_CODE (elt_type) == TYPE_CODE_ARRAY
2782 && TYPE_FIELD_BITSIZE (elt_type, 0) > 0)
2783 return value_subscript_packed (elt, arity, ind);
2785 for (k = 0; k < arity; k += 1)
2787 struct type *saved_elt_type = TYPE_TARGET_TYPE (elt_type);
2789 if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY)
2790 error (_("too many subscripts (%d expected)"), k);
2792 elt = value_subscript (elt, pos_atr (ind[k]));
2794 if (ada_is_access_to_unconstrained_array (saved_elt_type)
2795 && TYPE_CODE (value_type (elt)) != TYPE_CODE_TYPEDEF)
2797 /* The element is a typedef to an unconstrained array,
2798 except that the value_subscript call stripped the
2799 typedef layer. The typedef layer is GNAT's way to
2800 specify that the element is, at the source level, an
2801 access to the unconstrained array, rather than the
2802 unconstrained array. So, we need to restore that
2803 typedef layer, which we can do by forcing the element's
2804 type back to its original type. Otherwise, the returned
2805 value is going to be printed as the array, rather
2806 than as an access. Another symptom of the same issue
2807 would be that an expression trying to dereference the
2808 element would also be improperly rejected. */
2809 deprecated_set_value_type (elt, saved_elt_type);
2812 elt_type = ada_check_typedef (value_type (elt));
2818 /* Assuming ARR is a pointer to a GDB array, the value of the element
2819 of *ARR at the ARITY indices given in IND.
2820 Does not read the entire array into memory.
2822 Note: Unlike what one would expect, this function is used instead of
2823 ada_value_subscript for basically all non-packed array types. The reason
2824 for this is that a side effect of doing our own pointer arithmetics instead
2825 of relying on value_subscript is that there is no implicit typedef peeling.
2826 This is important for arrays of array accesses, where it allows us to
2827 preserve the fact that the array's element is an array access, where the
2828 access part os encoded in a typedef layer. */
2830 static struct value *
2831 ada_value_ptr_subscript (struct value *arr, int arity, struct value **ind)
2834 struct value *array_ind = ada_value_ind (arr);
2836 = check_typedef (value_enclosing_type (array_ind));
2838 if (TYPE_CODE (type) == TYPE_CODE_ARRAY
2839 && TYPE_FIELD_BITSIZE (type, 0) > 0)
2840 return value_subscript_packed (array_ind, arity, ind);
2842 for (k = 0; k < arity; k += 1)
2845 struct value *lwb_value;
2847 if (TYPE_CODE (type) != TYPE_CODE_ARRAY)
2848 error (_("too many subscripts (%d expected)"), k);
2849 arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
2851 get_discrete_bounds (TYPE_INDEX_TYPE (type), &lwb, &upb);
2852 lwb_value = value_from_longest (value_type(ind[k]), lwb);
2853 arr = value_ptradd (arr, pos_atr (ind[k]) - pos_atr (lwb_value));
2854 type = TYPE_TARGET_TYPE (type);
2857 return value_ind (arr);
2860 /* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the
2861 actual type of ARRAY_PTR is ignored), returns the Ada slice of
2862 HIGH'Pos-LOW'Pos+1 elements starting at index LOW. The lower bound of
2863 this array is LOW, as per Ada rules. */
2864 static struct value *
2865 ada_value_slice_from_ptr (struct value *array_ptr, struct type *type,
2868 struct type *type0 = ada_check_typedef (type);
2869 struct type *base_index_type = TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (type0));
2870 struct type *index_type
2871 = create_static_range_type (NULL, base_index_type, low, high);
2872 struct type *slice_type = create_array_type_with_stride
2873 (NULL, TYPE_TARGET_TYPE (type0), index_type,
2874 get_dyn_prop (DYN_PROP_BYTE_STRIDE, type0),
2875 TYPE_FIELD_BITSIZE (type0, 0));
2876 int base_low = ada_discrete_type_low_bound (TYPE_INDEX_TYPE (type0));
2877 LONGEST base_low_pos, low_pos;
2880 if (!discrete_position (base_index_type, low, &low_pos)
2881 || !discrete_position (base_index_type, base_low, &base_low_pos))
2883 warning (_("unable to get positions in slice, use bounds instead"));
2885 base_low_pos = base_low;
2888 base = value_as_address (array_ptr)
2889 + ((low_pos - base_low_pos)
2890 * TYPE_LENGTH (TYPE_TARGET_TYPE (type0)));
2891 return value_at_lazy (slice_type, base);
2895 static struct value *
2896 ada_value_slice (struct value *array, int low, int high)
2898 struct type *type = ada_check_typedef (value_type (array));
2899 struct type *base_index_type = TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (type));
2900 struct type *index_type
2901 = create_static_range_type (NULL, TYPE_INDEX_TYPE (type), low, high);
2902 struct type *slice_type = create_array_type_with_stride
2903 (NULL, TYPE_TARGET_TYPE (type), index_type,
2904 get_dyn_prop (DYN_PROP_BYTE_STRIDE, type),
2905 TYPE_FIELD_BITSIZE (type, 0));
2906 LONGEST low_pos, high_pos;
2908 if (!discrete_position (base_index_type, low, &low_pos)
2909 || !discrete_position (base_index_type, high, &high_pos))
2911 warning (_("unable to get positions in slice, use bounds instead"));
2916 return value_cast (slice_type,
2917 value_slice (array, low, high_pos - low_pos + 1));
2920 /* If type is a record type in the form of a standard GNAT array
2921 descriptor, returns the number of dimensions for type. If arr is a
2922 simple array, returns the number of "array of"s that prefix its
2923 type designation. Otherwise, returns 0. */
2926 ada_array_arity (struct type *type)
2933 type = desc_base_type (type);
2936 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
2937 return desc_arity (desc_bounds_type (type));
2939 while (TYPE_CODE (type) == TYPE_CODE_ARRAY)
2942 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
2948 /* If TYPE is a record type in the form of a standard GNAT array
2949 descriptor or a simple array type, returns the element type for
2950 TYPE after indexing by NINDICES indices, or by all indices if
2951 NINDICES is -1. Otherwise, returns NULL. */
2954 ada_array_element_type (struct type *type, int nindices)
2956 type = desc_base_type (type);
2958 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
2961 struct type *p_array_type;
2963 p_array_type = desc_data_target_type (type);
2965 k = ada_array_arity (type);
2969 /* Initially p_array_type = elt_type(*)[]...(k times)...[]. */
2970 if (nindices >= 0 && k > nindices)
2972 while (k > 0 && p_array_type != NULL)
2974 p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type));
2977 return p_array_type;
2979 else if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
2981 while (nindices != 0 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
2983 type = TYPE_TARGET_TYPE (type);
2992 /* The type of nth index in arrays of given type (n numbering from 1).
2993 Does not examine memory. Throws an error if N is invalid or TYPE
2994 is not an array type. NAME is the name of the Ada attribute being
2995 evaluated ('range, 'first, 'last, or 'length); it is used in building
2996 the error message. */
2998 static struct type *
2999 ada_index_type (struct type *type, int n, const char *name)
3001 struct type *result_type;
3003 type = desc_base_type (type);
3005 if (n < 0 || n > ada_array_arity (type))
3006 error (_("invalid dimension number to '%s"), name);
3008 if (ada_is_simple_array_type (type))
3012 for (i = 1; i < n; i += 1)
3013 type = TYPE_TARGET_TYPE (type);
3014 result_type = TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (type));
3015 /* FIXME: The stabs type r(0,0);bound;bound in an array type
3016 has a target type of TYPE_CODE_UNDEF. We compensate here, but
3017 perhaps stabsread.c would make more sense. */
3018 if (result_type && TYPE_CODE (result_type) == TYPE_CODE_UNDEF)
3023 result_type = desc_index_type (desc_bounds_type (type), n);
3024 if (result_type == NULL)
3025 error (_("attempt to take bound of something that is not an array"));
3031 /* Given that arr is an array type, returns the lower bound of the
3032 Nth index (numbering from 1) if WHICH is 0, and the upper bound if
3033 WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an
3034 array-descriptor type. It works for other arrays with bounds supplied
3035 by run-time quantities other than discriminants. */
3038 ada_array_bound_from_type (struct type *arr_type, int n, int which)
3040 struct type *type, *index_type_desc, *index_type;
3043 gdb_assert (which == 0 || which == 1);
3045 if (ada_is_constrained_packed_array_type (arr_type))
3046 arr_type = decode_constrained_packed_array_type (arr_type);
3048 if (arr_type == NULL || !ada_is_simple_array_type (arr_type))
3049 return (LONGEST) - which;
3051 if (TYPE_CODE (arr_type) == TYPE_CODE_PTR)
3052 type = TYPE_TARGET_TYPE (arr_type);
3056 if (TYPE_FIXED_INSTANCE (type))
3058 /* The array has already been fixed, so we do not need to
3059 check the parallel ___XA type again. That encoding has
3060 already been applied, so ignore it now. */
3061 index_type_desc = NULL;
3065 index_type_desc = ada_find_parallel_type (type, "___XA");
3066 ada_fixup_array_indexes_type (index_type_desc);
3069 if (index_type_desc != NULL)
3070 index_type = to_fixed_range_type (TYPE_FIELD_TYPE (index_type_desc, n - 1),
3074 struct type *elt_type = check_typedef (type);
3076 for (i = 1; i < n; i++)
3077 elt_type = check_typedef (TYPE_TARGET_TYPE (elt_type));
3079 index_type = TYPE_INDEX_TYPE (elt_type);
3083 (LONGEST) (which == 0
3084 ? ada_discrete_type_low_bound (index_type)
3085 : ada_discrete_type_high_bound (index_type));
3088 /* Given that arr is an array value, returns the lower bound of the
3089 nth index (numbering from 1) if WHICH is 0, and the upper bound if
3090 WHICH is 1. This routine will also work for arrays with bounds
3091 supplied by run-time quantities other than discriminants. */
3094 ada_array_bound (struct value *arr, int n, int which)
3096 struct type *arr_type;
3098 if (TYPE_CODE (check_typedef (value_type (arr))) == TYPE_CODE_PTR)
3099 arr = value_ind (arr);
3100 arr_type = value_enclosing_type (arr);
3102 if (ada_is_constrained_packed_array_type (arr_type))
3103 return ada_array_bound (decode_constrained_packed_array (arr), n, which);
3104 else if (ada_is_simple_array_type (arr_type))
3105 return ada_array_bound_from_type (arr_type, n, which);
3107 return value_as_long (desc_one_bound (desc_bounds (arr), n, which));
3110 /* Given that arr is an array value, returns the length of the
3111 nth index. This routine will also work for arrays with bounds
3112 supplied by run-time quantities other than discriminants.
3113 Does not work for arrays indexed by enumeration types with representation
3114 clauses at the moment. */
3117 ada_array_length (struct value *arr, int n)
3119 struct type *arr_type, *index_type;
3122 if (TYPE_CODE (check_typedef (value_type (arr))) == TYPE_CODE_PTR)
3123 arr = value_ind (arr);
3124 arr_type = value_enclosing_type (arr);
3126 if (ada_is_constrained_packed_array_type (arr_type))
3127 return ada_array_length (decode_constrained_packed_array (arr), n);
3129 if (ada_is_simple_array_type (arr_type))
3131 low = ada_array_bound_from_type (arr_type, n, 0);
3132 high = ada_array_bound_from_type (arr_type, n, 1);
3136 low = value_as_long (desc_one_bound (desc_bounds (arr), n, 0));
3137 high = value_as_long (desc_one_bound (desc_bounds (arr), n, 1));
3140 arr_type = check_typedef (arr_type);
3141 index_type = ada_index_type (arr_type, n, "length");
3142 if (index_type != NULL)
3144 struct type *base_type;
3145 if (TYPE_CODE (index_type) == TYPE_CODE_RANGE)
3146 base_type = TYPE_TARGET_TYPE (index_type);
3148 base_type = index_type;
3150 low = pos_atr (value_from_longest (base_type, low));
3151 high = pos_atr (value_from_longest (base_type, high));
3153 return high - low + 1;
3156 /* An array whose type is that of ARR_TYPE (an array type), with
3157 bounds LOW to HIGH, but whose contents are unimportant. If HIGH is
3158 less than LOW, then LOW-1 is used. */
3160 static struct value *
3161 empty_array (struct type *arr_type, int low, int high)
3163 struct type *arr_type0 = ada_check_typedef (arr_type);
3164 struct type *index_type
3165 = create_static_range_type
3166 (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (arr_type0)), low,
3167 high < low ? low - 1 : high);
3168 struct type *elt_type = ada_array_element_type (arr_type0, 1);
3170 return allocate_value (create_array_type (NULL, elt_type, index_type));
3174 /* Name resolution */
3176 /* The "decoded" name for the user-definable Ada operator corresponding
3180 ada_decoded_op_name (enum exp_opcode op)
3184 for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
3186 if (ada_opname_table[i].op == op)
3187 return ada_opname_table[i].decoded;
3189 error (_("Could not find operator name for opcode"));
3193 /* Same as evaluate_type (*EXP), but resolves ambiguous symbol
3194 references (marked by OP_VAR_VALUE nodes in which the symbol has an
3195 undefined namespace) and converts operators that are
3196 user-defined into appropriate function calls. If CONTEXT_TYPE is
3197 non-null, it provides a preferred result type [at the moment, only
3198 type void has any effect---causing procedures to be preferred over
3199 functions in calls]. A null CONTEXT_TYPE indicates that a non-void
3200 return type is preferred. May change (expand) *EXP. */
3203 resolve (expression_up *expp, int void_context_p, int parse_completion,
3204 innermost_block_tracker *tracker)
3206 struct type *context_type = NULL;
3210 context_type = builtin_type ((*expp)->gdbarch)->builtin_void;
3212 resolve_subexp (expp, &pc, 1, context_type, parse_completion, tracker);
3215 /* Resolve the operator of the subexpression beginning at
3216 position *POS of *EXPP. "Resolving" consists of replacing
3217 the symbols that have undefined namespaces in OP_VAR_VALUE nodes
3218 with their resolutions, replacing built-in operators with
3219 function calls to user-defined operators, where appropriate, and,
3220 when DEPROCEDURE_P is non-zero, converting function-valued variables
3221 into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions
3222 are as in ada_resolve, above. */
3224 static struct value *
3225 resolve_subexp (expression_up *expp, int *pos, int deprocedure_p,
3226 struct type *context_type, int parse_completion,
3227 innermost_block_tracker *tracker)
3231 struct expression *exp; /* Convenience: == *expp. */
3232 enum exp_opcode op = (*expp)->elts[pc].opcode;
3233 struct value **argvec; /* Vector of operand types (alloca'ed). */
3234 int nargs; /* Number of operands. */
3241 /* Pass one: resolve operands, saving their types and updating *pos,
3246 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3247 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3252 resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3254 nargs = longest_to_int (exp->elts[pc + 1].longconst);
3259 resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3264 resolve_subexp (expp, pos, 1, check_typedef (exp->elts[pc + 1].type),
3265 parse_completion, tracker);
3268 case OP_ATR_MODULUS:
3278 case TERNOP_IN_RANGE:
3279 case BINOP_IN_BOUNDS:
3285 case OP_DISCRETE_RANGE:
3287 ada_forward_operator_length (exp, pc, &oplen, &nargs);
3296 arg1 = resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3298 resolve_subexp (expp, pos, 1, NULL, parse_completion, tracker);
3300 resolve_subexp (expp, pos, 1, value_type (arg1), parse_completion,
3318 case BINOP_LOGICAL_AND:
3319 case BINOP_LOGICAL_OR:
3320 case BINOP_BITWISE_AND:
3321 case BINOP_BITWISE_IOR:
3322 case BINOP_BITWISE_XOR:
3325 case BINOP_NOTEQUAL:
3332 case BINOP_SUBSCRIPT:
3340 case UNOP_LOGICAL_NOT:
3350 case OP_VAR_MSYM_VALUE:
3357 case OP_INTERNALVAR:
3367 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3370 case STRUCTOP_STRUCT:
3371 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3384 error (_("Unexpected operator during name resolution"));
3387 argvec = XALLOCAVEC (struct value *, nargs + 1);
3388 for (i = 0; i < nargs; i += 1)
3389 argvec[i] = resolve_subexp (expp, pos, 1, NULL, parse_completion,
3394 /* Pass two: perform any resolution on principal operator. */
3401 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
3403 std::vector<struct block_symbol> candidates;
3407 ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME
3408 (exp->elts[pc + 2].symbol),
3409 exp->elts[pc + 1].block, VAR_DOMAIN,
3412 if (n_candidates > 1)
3414 /* Types tend to get re-introduced locally, so if there
3415 are any local symbols that are not types, first filter
3418 for (j = 0; j < n_candidates; j += 1)
3419 switch (SYMBOL_CLASS (candidates[j].symbol))
3424 case LOC_REGPARM_ADDR:
3432 if (j < n_candidates)
3435 while (j < n_candidates)
3437 if (SYMBOL_CLASS (candidates[j].symbol) == LOC_TYPEDEF)
3439 candidates[j] = candidates[n_candidates - 1];
3448 if (n_candidates == 0)
3449 error (_("No definition found for %s"),
3450 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
3451 else if (n_candidates == 1)
3453 else if (deprocedure_p
3454 && !is_nonfunction (candidates.data (), n_candidates))
3456 i = ada_resolve_function
3457 (candidates.data (), n_candidates, NULL, 0,
3458 SYMBOL_LINKAGE_NAME (exp->elts[pc + 2].symbol),
3459 context_type, parse_completion);
3461 error (_("Could not find a match for %s"),
3462 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
3466 printf_filtered (_("Multiple matches for %s\n"),
3467 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
3468 user_select_syms (candidates.data (), n_candidates, 1);
3472 exp->elts[pc + 1].block = candidates[i].block;
3473 exp->elts[pc + 2].symbol = candidates[i].symbol;
3474 tracker->update (candidates[i]);
3478 && (TYPE_CODE (SYMBOL_TYPE (exp->elts[pc + 2].symbol))
3481 replace_operator_with_call (expp, pc, 0, 4,
3482 exp->elts[pc + 2].symbol,
3483 exp->elts[pc + 1].block);
3490 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3491 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3493 std::vector<struct block_symbol> candidates;
3497 ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME
3498 (exp->elts[pc + 5].symbol),
3499 exp->elts[pc + 4].block, VAR_DOMAIN,
3502 if (n_candidates == 1)
3506 i = ada_resolve_function
3507 (candidates.data (), n_candidates,
3509 SYMBOL_LINKAGE_NAME (exp->elts[pc + 5].symbol),
3510 context_type, parse_completion);
3512 error (_("Could not find a match for %s"),
3513 SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol));
3516 exp->elts[pc + 4].block = candidates[i].block;
3517 exp->elts[pc + 5].symbol = candidates[i].symbol;
3518 tracker->update (candidates[i]);
3529 case BINOP_BITWISE_AND:
3530 case BINOP_BITWISE_IOR:
3531 case BINOP_BITWISE_XOR:
3533 case BINOP_NOTEQUAL:
3541 case UNOP_LOGICAL_NOT:
3543 if (possible_user_operator_p (op, argvec))
3545 std::vector<struct block_symbol> candidates;
3549 ada_lookup_symbol_list (ada_decoded_op_name (op),
3553 i = ada_resolve_function (candidates.data (), n_candidates, argvec,
3554 nargs, ada_decoded_op_name (op), NULL,
3559 replace_operator_with_call (expp, pc, nargs, 1,
3560 candidates[i].symbol,
3561 candidates[i].block);
3572 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
3573 return evaluate_var_msym_value (EVAL_AVOID_SIDE_EFFECTS,
3574 exp->elts[pc + 1].objfile,
3575 exp->elts[pc + 2].msymbol);
3577 return evaluate_subexp_type (exp, pos);
3580 /* Return non-zero if formal type FTYPE matches actual type ATYPE. If
3581 MAY_DEREF is non-zero, the formal may be a pointer and the actual
3583 /* The term "match" here is rather loose. The match is heuristic and
3587 ada_type_match (struct type *ftype, struct type *atype, int may_deref)
3589 ftype = ada_check_typedef (ftype);
3590 atype = ada_check_typedef (atype);
3592 if (TYPE_CODE (ftype) == TYPE_CODE_REF)
3593 ftype = TYPE_TARGET_TYPE (ftype);
3594 if (TYPE_CODE (atype) == TYPE_CODE_REF)
3595 atype = TYPE_TARGET_TYPE (atype);
3597 switch (TYPE_CODE (ftype))
3600 return TYPE_CODE (ftype) == TYPE_CODE (atype);
3602 if (TYPE_CODE (atype) == TYPE_CODE_PTR)
3603 return ada_type_match (TYPE_TARGET_TYPE (ftype),
3604 TYPE_TARGET_TYPE (atype), 0);
3607 && ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0));
3609 case TYPE_CODE_ENUM:
3610 case TYPE_CODE_RANGE:
3611 switch (TYPE_CODE (atype))
3614 case TYPE_CODE_ENUM:
3615 case TYPE_CODE_RANGE:
3621 case TYPE_CODE_ARRAY:
3622 return (TYPE_CODE (atype) == TYPE_CODE_ARRAY
3623 || ada_is_array_descriptor_type (atype));
3625 case TYPE_CODE_STRUCT:
3626 if (ada_is_array_descriptor_type (ftype))
3627 return (TYPE_CODE (atype) == TYPE_CODE_ARRAY
3628 || ada_is_array_descriptor_type (atype));
3630 return (TYPE_CODE (atype) == TYPE_CODE_STRUCT
3631 && !ada_is_array_descriptor_type (atype));
3633 case TYPE_CODE_UNION:
3635 return (TYPE_CODE (atype) == TYPE_CODE (ftype));
3639 /* Return non-zero if the formals of FUNC "sufficiently match" the
3640 vector of actual argument types ACTUALS of size N_ACTUALS. FUNC
3641 may also be an enumeral, in which case it is treated as a 0-
3642 argument function. */
3645 ada_args_match (struct symbol *func, struct value **actuals, int n_actuals)
3648 struct type *func_type = SYMBOL_TYPE (func);
3650 if (SYMBOL_CLASS (func) == LOC_CONST
3651 && TYPE_CODE (func_type) == TYPE_CODE_ENUM)
3652 return (n_actuals == 0);
3653 else if (func_type == NULL || TYPE_CODE (func_type) != TYPE_CODE_FUNC)
3656 if (TYPE_NFIELDS (func_type) != n_actuals)
3659 for (i = 0; i < n_actuals; i += 1)
3661 if (actuals[i] == NULL)
3665 struct type *ftype = ada_check_typedef (TYPE_FIELD_TYPE (func_type,
3667 struct type *atype = ada_check_typedef (value_type (actuals[i]));
3669 if (!ada_type_match (ftype, atype, 1))
3676 /* False iff function type FUNC_TYPE definitely does not produce a value
3677 compatible with type CONTEXT_TYPE. Conservatively returns 1 if
3678 FUNC_TYPE is not a valid function type with a non-null return type
3679 or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */
3682 return_match (struct type *func_type, struct type *context_type)
3684 struct type *return_type;
3686 if (func_type == NULL)
3689 if (TYPE_CODE (func_type) == TYPE_CODE_FUNC)
3690 return_type = get_base_type (TYPE_TARGET_TYPE (func_type));
3692 return_type = get_base_type (func_type);
3693 if (return_type == NULL)
3696 context_type = get_base_type (context_type);
3698 if (TYPE_CODE (return_type) == TYPE_CODE_ENUM)
3699 return context_type == NULL || return_type == context_type;
3700 else if (context_type == NULL)
3701 return TYPE_CODE (return_type) != TYPE_CODE_VOID;
3703 return TYPE_CODE (return_type) == TYPE_CODE (context_type);
3707 /* Returns the index in SYMS[0..NSYMS-1] that contains the symbol for the
3708 function (if any) that matches the types of the NARGS arguments in
3709 ARGS. If CONTEXT_TYPE is non-null and there is at least one match
3710 that returns that type, then eliminate matches that don't. If
3711 CONTEXT_TYPE is void and there is at least one match that does not
3712 return void, eliminate all matches that do.
3714 Asks the user if there is more than one match remaining. Returns -1
3715 if there is no such symbol or none is selected. NAME is used
3716 solely for messages. May re-arrange and modify SYMS in
3717 the process; the index returned is for the modified vector. */
3720 ada_resolve_function (struct block_symbol syms[],
3721 int nsyms, struct value **args, int nargs,
3722 const char *name, struct type *context_type,
3723 int parse_completion)
3727 int m; /* Number of hits */
3730 /* In the first pass of the loop, we only accept functions matching
3731 context_type. If none are found, we add a second pass of the loop
3732 where every function is accepted. */
3733 for (fallback = 0; m == 0 && fallback < 2; fallback++)
3735 for (k = 0; k < nsyms; k += 1)
3737 struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].symbol));
3739 if (ada_args_match (syms[k].symbol, args, nargs)
3740 && (fallback || return_match (type, context_type)))
3748 /* If we got multiple matches, ask the user which one to use. Don't do this
3749 interactive thing during completion, though, as the purpose of the
3750 completion is providing a list of all possible matches. Prompting the
3751 user to filter it down would be completely unexpected in this case. */
3754 else if (m > 1 && !parse_completion)
3756 printf_filtered (_("Multiple matches for %s\n"), name);
3757 user_select_syms (syms, m, 1);
3763 /* Returns true (non-zero) iff decoded name N0 should appear before N1
3764 in a listing of choices during disambiguation (see sort_choices, below).
3765 The idea is that overloadings of a subprogram name from the
3766 same package should sort in their source order. We settle for ordering
3767 such symbols by their trailing number (__N or $N). */
3770 encoded_ordered_before (const char *N0, const char *N1)
3774 else if (N0 == NULL)
3780 for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1)
3782 for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1)
3784 if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000'
3785 && (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000')
3790 while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_')
3793 while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_')
3795 if (n0 == n1 && strncmp (N0, N1, n0) == 0)
3796 return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1));
3798 return (strcmp (N0, N1) < 0);
3802 /* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the
3806 sort_choices (struct block_symbol syms[], int nsyms)
3810 for (i = 1; i < nsyms; i += 1)
3812 struct block_symbol sym = syms[i];
3815 for (j = i - 1; j >= 0; j -= 1)
3817 if (encoded_ordered_before (SYMBOL_LINKAGE_NAME (syms[j].symbol),
3818 SYMBOL_LINKAGE_NAME (sym.symbol)))
3820 syms[j + 1] = syms[j];
3826 /* Whether GDB should display formals and return types for functions in the
3827 overloads selection menu. */
3828 static int print_signatures = 1;
3830 /* Print the signature for SYM on STREAM according to the FLAGS options. For
3831 all but functions, the signature is just the name of the symbol. For
3832 functions, this is the name of the function, the list of types for formals
3833 and the return type (if any). */
3836 ada_print_symbol_signature (struct ui_file *stream, struct symbol *sym,
3837 const struct type_print_options *flags)
3839 struct type *type = SYMBOL_TYPE (sym);
3841 fprintf_filtered (stream, "%s", SYMBOL_PRINT_NAME (sym));
3842 if (!print_signatures
3844 || TYPE_CODE (type) != TYPE_CODE_FUNC)
3847 if (TYPE_NFIELDS (type) > 0)
3851 fprintf_filtered (stream, " (");
3852 for (i = 0; i < TYPE_NFIELDS (type); ++i)
3855 fprintf_filtered (stream, "; ");
3856 ada_print_type (TYPE_FIELD_TYPE (type, i), NULL, stream, -1, 0,
3859 fprintf_filtered (stream, ")");
3861 if (TYPE_TARGET_TYPE (type) != NULL
3862 && TYPE_CODE (TYPE_TARGET_TYPE (type)) != TYPE_CODE_VOID)
3864 fprintf_filtered (stream, " return ");
3865 ada_print_type (TYPE_TARGET_TYPE (type), NULL, stream, -1, 0, flags);
3869 /* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0
3870 by asking the user (if necessary), returning the number selected,
3871 and setting the first elements of SYMS items. Error if no symbols
3874 /* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought
3875 to be re-integrated one of these days. */
3878 user_select_syms (struct block_symbol *syms, int nsyms, int max_results)
3881 int *chosen = XALLOCAVEC (int , nsyms);
3883 int first_choice = (max_results == 1) ? 1 : 2;
3884 const char *select_mode = multiple_symbols_select_mode ();
3886 if (max_results < 1)
3887 error (_("Request to select 0 symbols!"));
3891 if (select_mode == multiple_symbols_cancel)
3893 canceled because the command is ambiguous\n\
3894 See set/show multiple-symbol."));
3896 /* If select_mode is "all", then return all possible symbols.
3897 Only do that if more than one symbol can be selected, of course.
3898 Otherwise, display the menu as usual. */
3899 if (select_mode == multiple_symbols_all && max_results > 1)
3902 printf_filtered (_("[0] cancel\n"));
3903 if (max_results > 1)
3904 printf_filtered (_("[1] all\n"));
3906 sort_choices (syms, nsyms);
3908 for (i = 0; i < nsyms; i += 1)
3910 if (syms[i].symbol == NULL)
3913 if (SYMBOL_CLASS (syms[i].symbol) == LOC_BLOCK)
3915 struct symtab_and_line sal =
3916 find_function_start_sal (syms[i].symbol, 1);
3918 printf_filtered ("[%d] ", i + first_choice);
3919 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3920 &type_print_raw_options);
3921 if (sal.symtab == NULL)
3922 printf_filtered (_(" at <no source file available>:%d\n"),
3925 printf_filtered (_(" at %s:%d\n"),
3926 symtab_to_filename_for_display (sal.symtab),
3933 (SYMBOL_CLASS (syms[i].symbol) == LOC_CONST
3934 && SYMBOL_TYPE (syms[i].symbol) != NULL
3935 && TYPE_CODE (SYMBOL_TYPE (syms[i].symbol)) == TYPE_CODE_ENUM);
3936 struct symtab *symtab = NULL;
3938 if (SYMBOL_OBJFILE_OWNED (syms[i].symbol))
3939 symtab = symbol_symtab (syms[i].symbol);
3941 if (SYMBOL_LINE (syms[i].symbol) != 0 && symtab != NULL)
3943 printf_filtered ("[%d] ", i + first_choice);
3944 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3945 &type_print_raw_options);
3946 printf_filtered (_(" at %s:%d\n"),
3947 symtab_to_filename_for_display (symtab),
3948 SYMBOL_LINE (syms[i].symbol));
3950 else if (is_enumeral
3951 && TYPE_NAME (SYMBOL_TYPE (syms[i].symbol)) != NULL)
3953 printf_filtered (("[%d] "), i + first_choice);
3954 ada_print_type (SYMBOL_TYPE (syms[i].symbol), NULL,
3955 gdb_stdout, -1, 0, &type_print_raw_options);
3956 printf_filtered (_("'(%s) (enumeral)\n"),
3957 SYMBOL_PRINT_NAME (syms[i].symbol));
3961 printf_filtered ("[%d] ", i + first_choice);
3962 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3963 &type_print_raw_options);
3966 printf_filtered (is_enumeral
3967 ? _(" in %s (enumeral)\n")
3969 symtab_to_filename_for_display (symtab));
3971 printf_filtered (is_enumeral
3972 ? _(" (enumeral)\n")
3978 n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1,
3981 for (i = 0; i < n_chosen; i += 1)
3982 syms[i] = syms[chosen[i]];
3987 /* Read and validate a set of numeric choices from the user in the
3988 range 0 .. N_CHOICES-1. Place the results in increasing
3989 order in CHOICES[0 .. N-1], and return N.
3991 The user types choices as a sequence of numbers on one line
3992 separated by blanks, encoding them as follows:
3994 + A choice of 0 means to cancel the selection, throwing an error.
3995 + If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1.
3996 + The user chooses k by typing k+IS_ALL_CHOICE+1.
3998 The user is not allowed to choose more than MAX_RESULTS values.
4000 ANNOTATION_SUFFIX, if present, is used to annotate the input
4001 prompts (for use with the -f switch). */
4004 get_selections (int *choices, int n_choices, int max_results,
4005 int is_all_choice, const char *annotation_suffix)
4010 int first_choice = is_all_choice ? 2 : 1;
4012 prompt = getenv ("PS2");
4016 args = command_line_input (prompt, annotation_suffix);
4019 error_no_arg (_("one or more choice numbers"));
4023 /* Set choices[0 .. n_chosen-1] to the users' choices in ascending
4024 order, as given in args. Choices are validated. */
4030 args = skip_spaces (args);
4031 if (*args == '\0' && n_chosen == 0)
4032 error_no_arg (_("one or more choice numbers"));
4033 else if (*args == '\0')
4036 choice = strtol (args, &args2, 10);
4037 if (args == args2 || choice < 0
4038 || choice > n_choices + first_choice - 1)
4039 error (_("Argument must be choice number"));
4043 error (_("cancelled"));
4045 if (choice < first_choice)
4047 n_chosen = n_choices;
4048 for (j = 0; j < n_choices; j += 1)
4052 choice -= first_choice;
4054 for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1)
4058 if (j < 0 || choice != choices[j])
4062 for (k = n_chosen - 1; k > j; k -= 1)
4063 choices[k + 1] = choices[k];
4064 choices[j + 1] = choice;
4069 if (n_chosen > max_results)
4070 error (_("Select no more than %d of the above"), max_results);
4075 /* Replace the operator of length OPLEN at position PC in *EXPP with a call
4076 on the function identified by SYM and BLOCK, and taking NARGS
4077 arguments. Update *EXPP as needed to hold more space. */
4080 replace_operator_with_call (expression_up *expp, int pc, int nargs,
4081 int oplen, struct symbol *sym,
4082 const struct block *block)
4084 /* A new expression, with 6 more elements (3 for funcall, 4 for function
4085 symbol, -oplen for operator being replaced). */
4086 struct expression *newexp = (struct expression *)
4087 xzalloc (sizeof (struct expression)
4088 + EXP_ELEM_TO_BYTES ((*expp)->nelts + 7 - oplen));
4089 struct expression *exp = expp->get ();
4091 newexp->nelts = exp->nelts + 7 - oplen;
4092 newexp->language_defn = exp->language_defn;
4093 newexp->gdbarch = exp->gdbarch;
4094 memcpy (newexp->elts, exp->elts, EXP_ELEM_TO_BYTES (pc));
4095 memcpy (newexp->elts + pc + 7, exp->elts + pc + oplen,
4096 EXP_ELEM_TO_BYTES (exp->nelts - pc - oplen));
4098 newexp->elts[pc].opcode = newexp->elts[pc + 2].opcode = OP_FUNCALL;
4099 newexp->elts[pc + 1].longconst = (LONGEST) nargs;
4101 newexp->elts[pc + 3].opcode = newexp->elts[pc + 6].opcode = OP_VAR_VALUE;
4102 newexp->elts[pc + 4].block = block;
4103 newexp->elts[pc + 5].symbol = sym;
4105 expp->reset (newexp);
4108 /* Type-class predicates */
4110 /* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type),
4114 numeric_type_p (struct type *type)
4120 switch (TYPE_CODE (type))
4125 case TYPE_CODE_RANGE:
4126 return (type == TYPE_TARGET_TYPE (type)
4127 || numeric_type_p (TYPE_TARGET_TYPE (type)));
4134 /* True iff TYPE is integral (an INT or RANGE of INTs). */
4137 integer_type_p (struct type *type)
4143 switch (TYPE_CODE (type))
4147 case TYPE_CODE_RANGE:
4148 return (type == TYPE_TARGET_TYPE (type)
4149 || integer_type_p (TYPE_TARGET_TYPE (type)));
4156 /* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */
4159 scalar_type_p (struct type *type)
4165 switch (TYPE_CODE (type))
4168 case TYPE_CODE_RANGE:
4169 case TYPE_CODE_ENUM:
4178 /* True iff TYPE is discrete (INT, RANGE, ENUM). */
4181 discrete_type_p (struct type *type)
4187 switch (TYPE_CODE (type))
4190 case TYPE_CODE_RANGE:
4191 case TYPE_CODE_ENUM:
4192 case TYPE_CODE_BOOL:
4200 /* Returns non-zero if OP with operands in the vector ARGS could be
4201 a user-defined function. Errs on the side of pre-defined operators
4202 (i.e., result 0). */
4205 possible_user_operator_p (enum exp_opcode op, struct value *args[])
4207 struct type *type0 =
4208 (args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0]));
4209 struct type *type1 =
4210 (args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1]));
4224 return (!(numeric_type_p (type0) && numeric_type_p (type1)));
4228 case BINOP_BITWISE_AND:
4229 case BINOP_BITWISE_IOR:
4230 case BINOP_BITWISE_XOR:
4231 return (!(integer_type_p (type0) && integer_type_p (type1)));
4234 case BINOP_NOTEQUAL:
4239 return (!(scalar_type_p (type0) && scalar_type_p (type1)));
4242 return !ada_is_array_type (type0) || !ada_is_array_type (type1);
4245 return (!(numeric_type_p (type0) && integer_type_p (type1)));
4249 case UNOP_LOGICAL_NOT:
4251 return (!numeric_type_p (type0));
4260 1. In the following, we assume that a renaming type's name may
4261 have an ___XD suffix. It would be nice if this went away at some
4263 2. We handle both the (old) purely type-based representation of
4264 renamings and the (new) variable-based encoding. At some point,
4265 it is devoutly to be hoped that the former goes away
4266 (FIXME: hilfinger-2007-07-09).
4267 3. Subprogram renamings are not implemented, although the XRS
4268 suffix is recognized (FIXME: hilfinger-2007-07-09). */
4270 /* If SYM encodes a renaming,
4272 <renaming> renames <renamed entity>,
4274 sets *LEN to the length of the renamed entity's name,
4275 *RENAMED_ENTITY to that name (not null-terminated), and *RENAMING_EXPR to
4276 the string describing the subcomponent selected from the renamed
4277 entity. Returns ADA_NOT_RENAMING if SYM does not encode a renaming
4278 (in which case, the values of *RENAMED_ENTITY, *LEN, and *RENAMING_EXPR
4279 are undefined). Otherwise, returns a value indicating the category
4280 of entity renamed: an object (ADA_OBJECT_RENAMING), exception
4281 (ADA_EXCEPTION_RENAMING), package (ADA_PACKAGE_RENAMING), or
4282 subprogram (ADA_SUBPROGRAM_RENAMING). Does no allocation; the
4283 strings returned in *RENAMED_ENTITY and *RENAMING_EXPR should not be
4284 deallocated. The values of RENAMED_ENTITY, LEN, or RENAMING_EXPR
4285 may be NULL, in which case they are not assigned.
4287 [Currently, however, GCC does not generate subprogram renamings.] */
4289 enum ada_renaming_category
4290 ada_parse_renaming (struct symbol *sym,
4291 const char **renamed_entity, int *len,
4292 const char **renaming_expr)
4294 enum ada_renaming_category kind;
4299 return ADA_NOT_RENAMING;
4300 switch (SYMBOL_CLASS (sym))
4303 return ADA_NOT_RENAMING;
4305 return parse_old_style_renaming (SYMBOL_TYPE (sym),
4306 renamed_entity, len, renaming_expr);
4310 case LOC_OPTIMIZED_OUT:
4311 info = strstr (SYMBOL_LINKAGE_NAME (sym), "___XR");
4313 return ADA_NOT_RENAMING;
4317 kind = ADA_OBJECT_RENAMING;
4321 kind = ADA_EXCEPTION_RENAMING;
4325 kind = ADA_PACKAGE_RENAMING;
4329 kind = ADA_SUBPROGRAM_RENAMING;
4333 return ADA_NOT_RENAMING;
4337 if (renamed_entity != NULL)
4338 *renamed_entity = info;
4339 suffix = strstr (info, "___XE");
4340 if (suffix == NULL || suffix == info)
4341 return ADA_NOT_RENAMING;
4343 *len = strlen (info) - strlen (suffix);
4345 if (renaming_expr != NULL)
4346 *renaming_expr = suffix;
4350 /* Assuming TYPE encodes a renaming according to the old encoding in
4351 exp_dbug.ads, returns details of that renaming in *RENAMED_ENTITY,
4352 *LEN, and *RENAMING_EXPR, as for ada_parse_renaming, above. Returns
4353 ADA_NOT_RENAMING otherwise. */
4354 static enum ada_renaming_category
4355 parse_old_style_renaming (struct type *type,
4356 const char **renamed_entity, int *len,
4357 const char **renaming_expr)
4359 enum ada_renaming_category kind;
4364 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM
4365 || TYPE_NFIELDS (type) != 1)
4366 return ADA_NOT_RENAMING;
4368 name = TYPE_NAME (type);
4370 return ADA_NOT_RENAMING;
4372 name = strstr (name, "___XR");
4374 return ADA_NOT_RENAMING;
4379 kind = ADA_OBJECT_RENAMING;
4382 kind = ADA_EXCEPTION_RENAMING;
4385 kind = ADA_PACKAGE_RENAMING;
4388 kind = ADA_SUBPROGRAM_RENAMING;
4391 return ADA_NOT_RENAMING;
4394 info = TYPE_FIELD_NAME (type, 0);
4396 return ADA_NOT_RENAMING;
4397 if (renamed_entity != NULL)
4398 *renamed_entity = info;
4399 suffix = strstr (info, "___XE");
4400 if (renaming_expr != NULL)
4401 *renaming_expr = suffix + 5;
4402 if (suffix == NULL || suffix == info)
4403 return ADA_NOT_RENAMING;
4405 *len = suffix - info;
4409 /* Compute the value of the given RENAMING_SYM, which is expected to
4410 be a symbol encoding a renaming expression. BLOCK is the block
4411 used to evaluate the renaming. */
4413 static struct value *
4414 ada_read_renaming_var_value (struct symbol *renaming_sym,
4415 const struct block *block)
4417 const char *sym_name;
4419 sym_name = SYMBOL_LINKAGE_NAME (renaming_sym);
4420 expression_up expr = parse_exp_1 (&sym_name, 0, block, 0);
4421 return evaluate_expression (expr.get ());
4425 /* Evaluation: Function Calls */
4427 /* Return an lvalue containing the value VAL. This is the identity on
4428 lvalues, and otherwise has the side-effect of allocating memory
4429 in the inferior where a copy of the value contents is copied. */
4431 static struct value *
4432 ensure_lval (struct value *val)
4434 if (VALUE_LVAL (val) == not_lval
4435 || VALUE_LVAL (val) == lval_internalvar)
4437 int len = TYPE_LENGTH (ada_check_typedef (value_type (val)));
4438 const CORE_ADDR addr =
4439 value_as_long (value_allocate_space_in_inferior (len));
4441 VALUE_LVAL (val) = lval_memory;
4442 set_value_address (val, addr);
4443 write_memory (addr, value_contents (val), len);
4449 /* Return the value ACTUAL, converted to be an appropriate value for a
4450 formal of type FORMAL_TYPE. Use *SP as a stack pointer for
4451 allocating any necessary descriptors (fat pointers), or copies of
4452 values not residing in memory, updating it as needed. */
4455 ada_convert_actual (struct value *actual, struct type *formal_type0)
4457 struct type *actual_type = ada_check_typedef (value_type (actual));
4458 struct type *formal_type = ada_check_typedef (formal_type0);
4459 struct type *formal_target =
4460 TYPE_CODE (formal_type) == TYPE_CODE_PTR
4461 ? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type;
4462 struct type *actual_target =
4463 TYPE_CODE (actual_type) == TYPE_CODE_PTR
4464 ? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type;
4466 if (ada_is_array_descriptor_type (formal_target)
4467 && TYPE_CODE (actual_target) == TYPE_CODE_ARRAY)
4468 return make_array_descriptor (formal_type, actual);
4469 else if (TYPE_CODE (formal_type) == TYPE_CODE_PTR
4470 || TYPE_CODE (formal_type) == TYPE_CODE_REF)
4472 struct value *result;
4474 if (TYPE_CODE (formal_target) == TYPE_CODE_ARRAY
4475 && ada_is_array_descriptor_type (actual_target))
4476 result = desc_data (actual);
4477 else if (TYPE_CODE (formal_type) != TYPE_CODE_PTR)
4479 if (VALUE_LVAL (actual) != lval_memory)
4483 actual_type = ada_check_typedef (value_type (actual));
4484 val = allocate_value (actual_type);
4485 memcpy ((char *) value_contents_raw (val),
4486 (char *) value_contents (actual),
4487 TYPE_LENGTH (actual_type));
4488 actual = ensure_lval (val);
4490 result = value_addr (actual);
4494 return value_cast_pointers (formal_type, result, 0);
4496 else if (TYPE_CODE (actual_type) == TYPE_CODE_PTR)
4497 return ada_value_ind (actual);
4498 else if (ada_is_aligner_type (formal_type))
4500 /* We need to turn this parameter into an aligner type
4502 struct value *aligner = allocate_value (formal_type);
4503 struct value *component = ada_value_struct_elt (aligner, "F", 0);
4505 value_assign_to_component (aligner, component, actual);
4512 /* Convert VALUE (which must be an address) to a CORE_ADDR that is a pointer of
4513 type TYPE. This is usually an inefficient no-op except on some targets
4514 (such as AVR) where the representation of a pointer and an address
4518 value_pointer (struct value *value, struct type *type)
4520 struct gdbarch *gdbarch = get_type_arch (type);
4521 unsigned len = TYPE_LENGTH (type);
4522 gdb_byte *buf = (gdb_byte *) alloca (len);
4525 addr = value_address (value);
4526 gdbarch_address_to_pointer (gdbarch, type, buf, addr);
4527 addr = extract_unsigned_integer (buf, len, gdbarch_byte_order (gdbarch));
4532 /* Push a descriptor of type TYPE for array value ARR on the stack at
4533 *SP, updating *SP to reflect the new descriptor. Return either
4534 an lvalue representing the new descriptor, or (if TYPE is a pointer-
4535 to-descriptor type rather than a descriptor type), a struct value *
4536 representing a pointer to this descriptor. */
4538 static struct value *
4539 make_array_descriptor (struct type *type, struct value *arr)
4541 struct type *bounds_type = desc_bounds_type (type);
4542 struct type *desc_type = desc_base_type (type);
4543 struct value *descriptor = allocate_value (desc_type);
4544 struct value *bounds = allocate_value (bounds_type);
4547 for (i = ada_array_arity (ada_check_typedef (value_type (arr)));
4550 modify_field (value_type (bounds), value_contents_writeable (bounds),
4551 ada_array_bound (arr, i, 0),
4552 desc_bound_bitpos (bounds_type, i, 0),
4553 desc_bound_bitsize (bounds_type, i, 0));
4554 modify_field (value_type (bounds), value_contents_writeable (bounds),
4555 ada_array_bound (arr, i, 1),
4556 desc_bound_bitpos (bounds_type, i, 1),
4557 desc_bound_bitsize (bounds_type, i, 1));
4560 bounds = ensure_lval (bounds);
4562 modify_field (value_type (descriptor),
4563 value_contents_writeable (descriptor),
4564 value_pointer (ensure_lval (arr),
4565 TYPE_FIELD_TYPE (desc_type, 0)),
4566 fat_pntr_data_bitpos (desc_type),
4567 fat_pntr_data_bitsize (desc_type));
4569 modify_field (value_type (descriptor),
4570 value_contents_writeable (descriptor),
4571 value_pointer (bounds,
4572 TYPE_FIELD_TYPE (desc_type, 1)),
4573 fat_pntr_bounds_bitpos (desc_type),
4574 fat_pntr_bounds_bitsize (desc_type));
4576 descriptor = ensure_lval (descriptor);
4578 if (TYPE_CODE (type) == TYPE_CODE_PTR)
4579 return value_addr (descriptor);
4584 /* Symbol Cache Module */
4586 /* Performance measurements made as of 2010-01-15 indicate that
4587 this cache does bring some noticeable improvements. Depending
4588 on the type of entity being printed, the cache can make it as much
4589 as an order of magnitude faster than without it.
4591 The descriptive type DWARF extension has significantly reduced
4592 the need for this cache, at least when DWARF is being used. However,
4593 even in this case, some expensive name-based symbol searches are still
4594 sometimes necessary - to find an XVZ variable, mostly. */
4596 /* Initialize the contents of SYM_CACHE. */
4599 ada_init_symbol_cache (struct ada_symbol_cache *sym_cache)
4601 obstack_init (&sym_cache->cache_space);
4602 memset (sym_cache->root, '\000', sizeof (sym_cache->root));
4605 /* Free the memory used by SYM_CACHE. */
4608 ada_free_symbol_cache (struct ada_symbol_cache *sym_cache)
4610 obstack_free (&sym_cache->cache_space, NULL);
4614 /* Return the symbol cache associated to the given program space PSPACE.
4615 If not allocated for this PSPACE yet, allocate and initialize one. */
4617 static struct ada_symbol_cache *
4618 ada_get_symbol_cache (struct program_space *pspace)
4620 struct ada_pspace_data *pspace_data = get_ada_pspace_data (pspace);
4622 if (pspace_data->sym_cache == NULL)
4624 pspace_data->sym_cache = XCNEW (struct ada_symbol_cache);
4625 ada_init_symbol_cache (pspace_data->sym_cache);
4628 return pspace_data->sym_cache;
4631 /* Clear all entries from the symbol cache. */
4634 ada_clear_symbol_cache (void)
4636 struct ada_symbol_cache *sym_cache
4637 = ada_get_symbol_cache (current_program_space);
4639 obstack_free (&sym_cache->cache_space, NULL);
4640 ada_init_symbol_cache (sym_cache);
4643 /* Search our cache for an entry matching NAME and DOMAIN.
4644 Return it if found, or NULL otherwise. */
4646 static struct cache_entry **
4647 find_entry (const char *name, domain_enum domain)
4649 struct ada_symbol_cache *sym_cache
4650 = ada_get_symbol_cache (current_program_space);
4651 int h = msymbol_hash (name) % HASH_SIZE;
4652 struct cache_entry **e;
4654 for (e = &sym_cache->root[h]; *e != NULL; e = &(*e)->next)
4656 if (domain == (*e)->domain && strcmp (name, (*e)->name) == 0)
4662 /* Search the symbol cache for an entry matching NAME and DOMAIN.
4663 Return 1 if found, 0 otherwise.
4665 If an entry was found and SYM is not NULL, set *SYM to the entry's
4666 SYM. Same principle for BLOCK if not NULL. */
4669 lookup_cached_symbol (const char *name, domain_enum domain,
4670 struct symbol **sym, const struct block **block)
4672 struct cache_entry **e = find_entry (name, domain);
4679 *block = (*e)->block;
4683 /* Assuming that (SYM, BLOCK) is the result of the lookup of NAME
4684 in domain DOMAIN, save this result in our symbol cache. */
4687 cache_symbol (const char *name, domain_enum domain, struct symbol *sym,
4688 const struct block *block)
4690 struct ada_symbol_cache *sym_cache
4691 = ada_get_symbol_cache (current_program_space);
4694 struct cache_entry *e;
4696 /* Symbols for builtin types don't have a block.
4697 For now don't cache such symbols. */
4698 if (sym != NULL && !SYMBOL_OBJFILE_OWNED (sym))
4701 /* If the symbol is a local symbol, then do not cache it, as a search
4702 for that symbol depends on the context. To determine whether
4703 the symbol is local or not, we check the block where we found it
4704 against the global and static blocks of its associated symtab. */
4706 && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)),
4707 GLOBAL_BLOCK) != block
4708 && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)),
4709 STATIC_BLOCK) != block)
4712 h = msymbol_hash (name) % HASH_SIZE;
4713 e = XOBNEW (&sym_cache->cache_space, cache_entry);
4714 e->next = sym_cache->root[h];
4715 sym_cache->root[h] = e;
4717 = (char *) obstack_alloc (&sym_cache->cache_space, strlen (name) + 1);
4718 strcpy (copy, name);
4726 /* Return the symbol name match type that should be used used when
4727 searching for all symbols matching LOOKUP_NAME.
4729 LOOKUP_NAME is expected to be a symbol name after transformation
4732 static symbol_name_match_type
4733 name_match_type_from_name (const char *lookup_name)
4735 return (strstr (lookup_name, "__") == NULL
4736 ? symbol_name_match_type::WILD
4737 : symbol_name_match_type::FULL);
4740 /* Return the result of a standard (literal, C-like) lookup of NAME in
4741 given DOMAIN, visible from lexical block BLOCK. */
4743 static struct symbol *
4744 standard_lookup (const char *name, const struct block *block,
4747 /* Initialize it just to avoid a GCC false warning. */
4748 struct block_symbol sym = {};
4750 if (lookup_cached_symbol (name, domain, &sym.symbol, NULL))
4752 ada_lookup_encoded_symbol (name, block, domain, &sym);
4753 cache_symbol (name, domain, sym.symbol, sym.block);
4758 /* Non-zero iff there is at least one non-function/non-enumeral symbol
4759 in the symbol fields of SYMS[0..N-1]. We treat enumerals as functions,
4760 since they contend in overloading in the same way. */
4762 is_nonfunction (struct block_symbol syms[], int n)
4766 for (i = 0; i < n; i += 1)
4767 if (TYPE_CODE (SYMBOL_TYPE (syms[i].symbol)) != TYPE_CODE_FUNC
4768 && (TYPE_CODE (SYMBOL_TYPE (syms[i].symbol)) != TYPE_CODE_ENUM
4769 || SYMBOL_CLASS (syms[i].symbol) != LOC_CONST))
4775 /* If true (non-zero), then TYPE0 and TYPE1 represent equivalent
4776 struct types. Otherwise, they may not. */
4779 equiv_types (struct type *type0, struct type *type1)
4783 if (type0 == NULL || type1 == NULL
4784 || TYPE_CODE (type0) != TYPE_CODE (type1))
4786 if ((TYPE_CODE (type0) == TYPE_CODE_STRUCT
4787 || TYPE_CODE (type0) == TYPE_CODE_ENUM)
4788 && ada_type_name (type0) != NULL && ada_type_name (type1) != NULL
4789 && strcmp (ada_type_name (type0), ada_type_name (type1)) == 0)
4795 /* True iff SYM0 represents the same entity as SYM1, or one that is
4796 no more defined than that of SYM1. */
4799 lesseq_defined_than (struct symbol *sym0, struct symbol *sym1)
4803 if (SYMBOL_DOMAIN (sym0) != SYMBOL_DOMAIN (sym1)
4804 || SYMBOL_CLASS (sym0) != SYMBOL_CLASS (sym1))
4807 switch (SYMBOL_CLASS (sym0))
4813 struct type *type0 = SYMBOL_TYPE (sym0);
4814 struct type *type1 = SYMBOL_TYPE (sym1);
4815 const char *name0 = SYMBOL_LINKAGE_NAME (sym0);
4816 const char *name1 = SYMBOL_LINKAGE_NAME (sym1);
4817 int len0 = strlen (name0);
4820 TYPE_CODE (type0) == TYPE_CODE (type1)
4821 && (equiv_types (type0, type1)
4822 || (len0 < strlen (name1) && strncmp (name0, name1, len0) == 0
4823 && startswith (name1 + len0, "___XV")));
4826 return SYMBOL_VALUE (sym0) == SYMBOL_VALUE (sym1)
4827 && equiv_types (SYMBOL_TYPE (sym0), SYMBOL_TYPE (sym1));
4833 /* Append (SYM,BLOCK,SYMTAB) to the end of the array of struct block_symbol
4834 records in OBSTACKP. Do nothing if SYM is a duplicate. */
4837 add_defn_to_vec (struct obstack *obstackp,
4839 const struct block *block)
4842 struct block_symbol *prevDefns = defns_collected (obstackp, 0);
4844 /* Do not try to complete stub types, as the debugger is probably
4845 already scanning all symbols matching a certain name at the
4846 time when this function is called. Trying to replace the stub
4847 type by its associated full type will cause us to restart a scan
4848 which may lead to an infinite recursion. Instead, the client
4849 collecting the matching symbols will end up collecting several
4850 matches, with at least one of them complete. It can then filter
4851 out the stub ones if needed. */
4853 for (i = num_defns_collected (obstackp) - 1; i >= 0; i -= 1)
4855 if (lesseq_defined_than (sym, prevDefns[i].symbol))
4857 else if (lesseq_defined_than (prevDefns[i].symbol, sym))
4859 prevDefns[i].symbol = sym;
4860 prevDefns[i].block = block;
4866 struct block_symbol info;
4870 obstack_grow (obstackp, &info, sizeof (struct block_symbol));
4874 /* Number of block_symbol structures currently collected in current vector in
4878 num_defns_collected (struct obstack *obstackp)
4880 return obstack_object_size (obstackp) / sizeof (struct block_symbol);
4883 /* Vector of block_symbol structures currently collected in current vector in
4884 OBSTACKP. If FINISH, close off the vector and return its final address. */
4886 static struct block_symbol *
4887 defns_collected (struct obstack *obstackp, int finish)
4890 return (struct block_symbol *) obstack_finish (obstackp);
4892 return (struct block_symbol *) obstack_base (obstackp);
4895 /* Return a bound minimal symbol matching NAME according to Ada
4896 decoding rules. Returns an invalid symbol if there is no such
4897 minimal symbol. Names prefixed with "standard__" are handled
4898 specially: "standard__" is first stripped off, and only static and
4899 global symbols are searched. */
4901 struct bound_minimal_symbol
4902 ada_lookup_simple_minsym (const char *name)
4904 struct bound_minimal_symbol result;
4906 memset (&result, 0, sizeof (result));
4908 symbol_name_match_type match_type = name_match_type_from_name (name);
4909 lookup_name_info lookup_name (name, match_type);
4911 symbol_name_matcher_ftype *match_name
4912 = ada_get_symbol_name_matcher (lookup_name);
4914 for (objfile *objfile : current_program_space->objfiles ())
4916 for (minimal_symbol *msymbol : objfile->msymbols ())
4918 if (match_name (MSYMBOL_LINKAGE_NAME (msymbol), lookup_name, NULL)
4919 && MSYMBOL_TYPE (msymbol) != mst_solib_trampoline)
4921 result.minsym = msymbol;
4922 result.objfile = objfile;
4931 /* Return all the bound minimal symbols matching NAME according to Ada
4932 decoding rules. Returns an empty vector if there is no such
4933 minimal symbol. Names prefixed with "standard__" are handled
4934 specially: "standard__" is first stripped off, and only static and
4935 global symbols are searched. */
4937 static std::vector<struct bound_minimal_symbol>
4938 ada_lookup_simple_minsyms (const char *name)
4940 std::vector<struct bound_minimal_symbol> result;
4942 symbol_name_match_type match_type = name_match_type_from_name (name);
4943 lookup_name_info lookup_name (name, match_type);
4945 symbol_name_matcher_ftype *match_name
4946 = ada_get_symbol_name_matcher (lookup_name);
4948 for (objfile *objfile : current_program_space->objfiles ())
4950 for (minimal_symbol *msymbol : objfile->msymbols ())
4952 if (match_name (MSYMBOL_LINKAGE_NAME (msymbol), lookup_name, NULL)
4953 && MSYMBOL_TYPE (msymbol) != mst_solib_trampoline)
4954 result.push_back ({msymbol, objfile});
4961 /* For all subprograms that statically enclose the subprogram of the
4962 selected frame, add symbols matching identifier NAME in DOMAIN
4963 and their blocks to the list of data in OBSTACKP, as for
4964 ada_add_block_symbols (q.v.). If WILD_MATCH_P, treat as NAME
4965 with a wildcard prefix. */
4968 add_symbols_from_enclosing_procs (struct obstack *obstackp,
4969 const lookup_name_info &lookup_name,
4974 /* True if TYPE is definitely an artificial type supplied to a symbol
4975 for which no debugging information was given in the symbol file. */
4978 is_nondebugging_type (struct type *type)
4980 const char *name = ada_type_name (type);
4982 return (name != NULL && strcmp (name, "<variable, no debug info>") == 0);
4985 /* Return nonzero if TYPE1 and TYPE2 are two enumeration types
4986 that are deemed "identical" for practical purposes.
4988 This function assumes that TYPE1 and TYPE2 are both TYPE_CODE_ENUM
4989 types and that their number of enumerals is identical (in other
4990 words, TYPE_NFIELDS (type1) == TYPE_NFIELDS (type2)). */
4993 ada_identical_enum_types_p (struct type *type1, struct type *type2)
4997 /* The heuristic we use here is fairly conservative. We consider
4998 that 2 enumerate types are identical if they have the same
4999 number of enumerals and that all enumerals have the same
5000 underlying value and name. */
5002 /* All enums in the type should have an identical underlying value. */
5003 for (i = 0; i < TYPE_NFIELDS (type1); i++)
5004 if (TYPE_FIELD_ENUMVAL (type1, i) != TYPE_FIELD_ENUMVAL (type2, i))
5007 /* All enumerals should also have the same name (modulo any numerical
5009 for (i = 0; i < TYPE_NFIELDS (type1); i++)
5011 const char *name_1 = TYPE_FIELD_NAME (type1, i);
5012 const char *name_2 = TYPE_FIELD_NAME (type2, i);
5013 int len_1 = strlen (name_1);
5014 int len_2 = strlen (name_2);
5016 ada_remove_trailing_digits (TYPE_FIELD_NAME (type1, i), &len_1);
5017 ada_remove_trailing_digits (TYPE_FIELD_NAME (type2, i), &len_2);
5019 || strncmp (TYPE_FIELD_NAME (type1, i),
5020 TYPE_FIELD_NAME (type2, i),
5028 /* Return nonzero if all the symbols in SYMS are all enumeral symbols
5029 that are deemed "identical" for practical purposes. Sometimes,
5030 enumerals are not strictly identical, but their types are so similar
5031 that they can be considered identical.
5033 For instance, consider the following code:
5035 type Color is (Black, Red, Green, Blue, White);
5036 type RGB_Color is new Color range Red .. Blue;
5038 Type RGB_Color is a subrange of an implicit type which is a copy
5039 of type Color. If we call that implicit type RGB_ColorB ("B" is
5040 for "Base Type"), then type RGB_ColorB is a copy of type Color.
5041 As a result, when an expression references any of the enumeral
5042 by name (Eg. "print green"), the expression is technically
5043 ambiguous and the user should be asked to disambiguate. But
5044 doing so would only hinder the user, since it wouldn't matter
5045 what choice he makes, the outcome would always be the same.
5046 So, for practical purposes, we consider them as the same. */
5049 symbols_are_identical_enums (const std::vector<struct block_symbol> &syms)
5053 /* Before performing a thorough comparison check of each type,
5054 we perform a series of inexpensive checks. We expect that these
5055 checks will quickly fail in the vast majority of cases, and thus
5056 help prevent the unnecessary use of a more expensive comparison.
5057 Said comparison also expects us to make some of these checks
5058 (see ada_identical_enum_types_p). */
5060 /* Quick check: All symbols should have an enum type. */
5061 for (i = 0; i < syms.size (); i++)
5062 if (TYPE_CODE (SYMBOL_TYPE (syms[i].symbol)) != TYPE_CODE_ENUM)
5065 /* Quick check: They should all have the same value. */
5066 for (i = 1; i < syms.size (); i++)
5067 if (SYMBOL_VALUE (syms[i].symbol) != SYMBOL_VALUE (syms[0].symbol))
5070 /* Quick check: They should all have the same number of enumerals. */
5071 for (i = 1; i < syms.size (); i++)
5072 if (TYPE_NFIELDS (SYMBOL_TYPE (syms[i].symbol))
5073 != TYPE_NFIELDS (SYMBOL_TYPE (syms[0].symbol)))
5076 /* All the sanity checks passed, so we might have a set of
5077 identical enumeration types. Perform a more complete
5078 comparison of the type of each symbol. */
5079 for (i = 1; i < syms.size (); i++)
5080 if (!ada_identical_enum_types_p (SYMBOL_TYPE (syms[i].symbol),
5081 SYMBOL_TYPE (syms[0].symbol)))
5087 /* Remove any non-debugging symbols in SYMS that definitely
5088 duplicate other symbols in the list (The only case I know of where
5089 this happens is when object files containing stabs-in-ecoff are
5090 linked with files containing ordinary ecoff debugging symbols (or no
5091 debugging symbols)). Modifies SYMS to squeeze out deleted entries.
5092 Returns the number of items in the modified list. */
5095 remove_extra_symbols (std::vector<struct block_symbol> *syms)
5099 /* We should never be called with less than 2 symbols, as there
5100 cannot be any extra symbol in that case. But it's easy to
5101 handle, since we have nothing to do in that case. */
5102 if (syms->size () < 2)
5103 return syms->size ();
5106 while (i < syms->size ())
5110 /* If two symbols have the same name and one of them is a stub type,
5111 the get rid of the stub. */
5113 if (TYPE_STUB (SYMBOL_TYPE ((*syms)[i].symbol))
5114 && SYMBOL_LINKAGE_NAME ((*syms)[i].symbol) != NULL)
5116 for (j = 0; j < syms->size (); j++)
5119 && !TYPE_STUB (SYMBOL_TYPE ((*syms)[j].symbol))
5120 && SYMBOL_LINKAGE_NAME ((*syms)[j].symbol) != NULL
5121 && strcmp (SYMBOL_LINKAGE_NAME ((*syms)[i].symbol),
5122 SYMBOL_LINKAGE_NAME ((*syms)[j].symbol)) == 0)
5127 /* Two symbols with the same name, same class and same address
5128 should be identical. */
5130 else if (SYMBOL_LINKAGE_NAME ((*syms)[i].symbol) != NULL
5131 && SYMBOL_CLASS ((*syms)[i].symbol) == LOC_STATIC
5132 && is_nondebugging_type (SYMBOL_TYPE ((*syms)[i].symbol)))
5134 for (j = 0; j < syms->size (); j += 1)
5137 && SYMBOL_LINKAGE_NAME ((*syms)[j].symbol) != NULL
5138 && strcmp (SYMBOL_LINKAGE_NAME ((*syms)[i].symbol),
5139 SYMBOL_LINKAGE_NAME ((*syms)[j].symbol)) == 0
5140 && SYMBOL_CLASS ((*syms)[i].symbol)
5141 == SYMBOL_CLASS ((*syms)[j].symbol)
5142 && SYMBOL_VALUE_ADDRESS ((*syms)[i].symbol)
5143 == SYMBOL_VALUE_ADDRESS ((*syms)[j].symbol))
5149 syms->erase (syms->begin () + i);
5154 /* If all the remaining symbols are identical enumerals, then
5155 just keep the first one and discard the rest.
5157 Unlike what we did previously, we do not discard any entry
5158 unless they are ALL identical. This is because the symbol
5159 comparison is not a strict comparison, but rather a practical
5160 comparison. If all symbols are considered identical, then
5161 we can just go ahead and use the first one and discard the rest.
5162 But if we cannot reduce the list to a single element, we have
5163 to ask the user to disambiguate anyways. And if we have to
5164 present a multiple-choice menu, it's less confusing if the list
5165 isn't missing some choices that were identical and yet distinct. */
5166 if (symbols_are_identical_enums (*syms))
5169 return syms->size ();
5172 /* Given a type that corresponds to a renaming entity, use the type name
5173 to extract the scope (package name or function name, fully qualified,
5174 and following the GNAT encoding convention) where this renaming has been
5178 xget_renaming_scope (struct type *renaming_type)
5180 /* The renaming types adhere to the following convention:
5181 <scope>__<rename>___<XR extension>.
5182 So, to extract the scope, we search for the "___XR" extension,
5183 and then backtrack until we find the first "__". */
5185 const char *name = TYPE_NAME (renaming_type);
5186 const char *suffix = strstr (name, "___XR");
5189 /* Now, backtrack a bit until we find the first "__". Start looking
5190 at suffix - 3, as the <rename> part is at least one character long. */
5192 for (last = suffix - 3; last > name; last--)
5193 if (last[0] == '_' && last[1] == '_')
5196 /* Make a copy of scope and return it. */
5197 return std::string (name, last);
5200 /* Return nonzero if NAME corresponds to a package name. */
5203 is_package_name (const char *name)
5205 /* Here, We take advantage of the fact that no symbols are generated
5206 for packages, while symbols are generated for each function.
5207 So the condition for NAME represent a package becomes equivalent
5208 to NAME not existing in our list of symbols. There is only one
5209 small complication with library-level functions (see below). */
5211 /* If it is a function that has not been defined at library level,
5212 then we should be able to look it up in the symbols. */
5213 if (standard_lookup (name, NULL, VAR_DOMAIN) != NULL)
5216 /* Library-level function names start with "_ada_". See if function
5217 "_ada_" followed by NAME can be found. */
5219 /* Do a quick check that NAME does not contain "__", since library-level
5220 functions names cannot contain "__" in them. */
5221 if (strstr (name, "__") != NULL)
5224 std::string fun_name = string_printf ("_ada_%s", name);
5226 return (standard_lookup (fun_name.c_str (), NULL, VAR_DOMAIN) == NULL);
5229 /* Return nonzero if SYM corresponds to a renaming entity that is
5230 not visible from FUNCTION_NAME. */
5233 old_renaming_is_invisible (const struct symbol *sym, const char *function_name)
5235 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
5238 std::string scope = xget_renaming_scope (SYMBOL_TYPE (sym));
5240 /* If the rename has been defined in a package, then it is visible. */
5241 if (is_package_name (scope.c_str ()))
5244 /* Check that the rename is in the current function scope by checking
5245 that its name starts with SCOPE. */
5247 /* If the function name starts with "_ada_", it means that it is
5248 a library-level function. Strip this prefix before doing the
5249 comparison, as the encoding for the renaming does not contain
5251 if (startswith (function_name, "_ada_"))
5254 return !startswith (function_name, scope.c_str ());
5257 /* Remove entries from SYMS that corresponds to a renaming entity that
5258 is not visible from the function associated with CURRENT_BLOCK or
5259 that is superfluous due to the presence of more specific renaming
5260 information. Places surviving symbols in the initial entries of
5261 SYMS and returns the number of surviving symbols.
5264 First, in cases where an object renaming is implemented as a
5265 reference variable, GNAT may produce both the actual reference
5266 variable and the renaming encoding. In this case, we discard the
5269 Second, GNAT emits a type following a specified encoding for each renaming
5270 entity. Unfortunately, STABS currently does not support the definition
5271 of types that are local to a given lexical block, so all renamings types
5272 are emitted at library level. As a consequence, if an application
5273 contains two renaming entities using the same name, and a user tries to
5274 print the value of one of these entities, the result of the ada symbol
5275 lookup will also contain the wrong renaming type.
5277 This function partially covers for this limitation by attempting to
5278 remove from the SYMS list renaming symbols that should be visible
5279 from CURRENT_BLOCK. However, there does not seem be a 100% reliable
5280 method with the current information available. The implementation
5281 below has a couple of limitations (FIXME: brobecker-2003-05-12):
5283 - When the user tries to print a rename in a function while there
5284 is another rename entity defined in a package: Normally, the
5285 rename in the function has precedence over the rename in the
5286 package, so the latter should be removed from the list. This is
5287 currently not the case.
5289 - This function will incorrectly remove valid renames if
5290 the CURRENT_BLOCK corresponds to a function which symbol name
5291 has been changed by an "Export" pragma. As a consequence,
5292 the user will be unable to print such rename entities. */
5295 remove_irrelevant_renamings (std::vector<struct block_symbol> *syms,
5296 const struct block *current_block)
5298 struct symbol *current_function;
5299 const char *current_function_name;
5301 int is_new_style_renaming;
5303 /* If there is both a renaming foo___XR... encoded as a variable and
5304 a simple variable foo in the same block, discard the latter.
5305 First, zero out such symbols, then compress. */
5306 is_new_style_renaming = 0;
5307 for (i = 0; i < syms->size (); i += 1)
5309 struct symbol *sym = (*syms)[i].symbol;
5310 const struct block *block = (*syms)[i].block;
5314 if (sym == NULL || SYMBOL_CLASS (sym) == LOC_TYPEDEF)
5316 name = SYMBOL_LINKAGE_NAME (sym);
5317 suffix = strstr (name, "___XR");
5321 int name_len = suffix - name;
5324 is_new_style_renaming = 1;
5325 for (j = 0; j < syms->size (); j += 1)
5326 if (i != j && (*syms)[j].symbol != NULL
5327 && strncmp (name, SYMBOL_LINKAGE_NAME ((*syms)[j].symbol),
5329 && block == (*syms)[j].block)
5330 (*syms)[j].symbol = NULL;
5333 if (is_new_style_renaming)
5337 for (j = k = 0; j < syms->size (); j += 1)
5338 if ((*syms)[j].symbol != NULL)
5340 (*syms)[k] = (*syms)[j];
5346 /* Extract the function name associated to CURRENT_BLOCK.
5347 Abort if unable to do so. */
5349 if (current_block == NULL)
5350 return syms->size ();
5352 current_function = block_linkage_function (current_block);
5353 if (current_function == NULL)
5354 return syms->size ();
5356 current_function_name = SYMBOL_LINKAGE_NAME (current_function);
5357 if (current_function_name == NULL)
5358 return syms->size ();
5360 /* Check each of the symbols, and remove it from the list if it is
5361 a type corresponding to a renaming that is out of the scope of
5362 the current block. */
5365 while (i < syms->size ())
5367 if (ada_parse_renaming ((*syms)[i].symbol, NULL, NULL, NULL)
5368 == ADA_OBJECT_RENAMING
5369 && old_renaming_is_invisible ((*syms)[i].symbol,
5370 current_function_name))
5371 syms->erase (syms->begin () + i);
5376 return syms->size ();
5379 /* Add to OBSTACKP all symbols from BLOCK (and its super-blocks)
5380 whose name and domain match NAME and DOMAIN respectively.
5381 If no match was found, then extend the search to "enclosing"
5382 routines (in other words, if we're inside a nested function,
5383 search the symbols defined inside the enclosing functions).
5384 If WILD_MATCH_P is nonzero, perform the naming matching in
5385 "wild" mode (see function "wild_match" for more info).
5387 Note: This function assumes that OBSTACKP has 0 (zero) element in it. */
5390 ada_add_local_symbols (struct obstack *obstackp,
5391 const lookup_name_info &lookup_name,
5392 const struct block *block, domain_enum domain)
5394 int block_depth = 0;
5396 while (block != NULL)
5399 ada_add_block_symbols (obstackp, block, lookup_name, domain, NULL);
5401 /* If we found a non-function match, assume that's the one. */
5402 if (is_nonfunction (defns_collected (obstackp, 0),
5403 num_defns_collected (obstackp)))
5406 block = BLOCK_SUPERBLOCK (block);
5409 /* If no luck so far, try to find NAME as a local symbol in some lexically
5410 enclosing subprogram. */
5411 if (num_defns_collected (obstackp) == 0 && block_depth > 2)
5412 add_symbols_from_enclosing_procs (obstackp, lookup_name, domain);
5415 /* An object of this type is used as the user_data argument when
5416 calling the map_matching_symbols method. */
5420 struct objfile *objfile;
5421 struct obstack *obstackp;
5422 struct symbol *arg_sym;
5426 /* A callback for add_nonlocal_symbols that adds SYM, found in BLOCK,
5427 to a list of symbols. DATA0 is a pointer to a struct match_data *
5428 containing the obstack that collects the symbol list, the file that SYM
5429 must come from, a flag indicating whether a non-argument symbol has
5430 been found in the current block, and the last argument symbol
5431 passed in SYM within the current block (if any). When SYM is null,
5432 marking the end of a block, the argument symbol is added if no
5433 other has been found. */
5436 aux_add_nonlocal_symbols (const struct block *block, struct symbol *sym,
5439 struct match_data *data = (struct match_data *) data0;
5443 if (!data->found_sym && data->arg_sym != NULL)
5444 add_defn_to_vec (data->obstackp,
5445 fixup_symbol_section (data->arg_sym, data->objfile),
5447 data->found_sym = 0;
5448 data->arg_sym = NULL;
5452 if (SYMBOL_CLASS (sym) == LOC_UNRESOLVED)
5454 else if (SYMBOL_IS_ARGUMENT (sym))
5455 data->arg_sym = sym;
5458 data->found_sym = 1;
5459 add_defn_to_vec (data->obstackp,
5460 fixup_symbol_section (sym, data->objfile),
5467 /* Helper for add_nonlocal_symbols. Find symbols in DOMAIN which are
5468 targeted by renamings matching LOOKUP_NAME in BLOCK. Add these
5469 symbols to OBSTACKP. Return whether we found such symbols. */
5472 ada_add_block_renamings (struct obstack *obstackp,
5473 const struct block *block,
5474 const lookup_name_info &lookup_name,
5477 struct using_direct *renaming;
5478 int defns_mark = num_defns_collected (obstackp);
5480 symbol_name_matcher_ftype *name_match
5481 = ada_get_symbol_name_matcher (lookup_name);
5483 for (renaming = block_using (block);
5485 renaming = renaming->next)
5489 /* Avoid infinite recursions: skip this renaming if we are actually
5490 already traversing it.
5492 Currently, symbol lookup in Ada don't use the namespace machinery from
5493 C++/Fortran support: skip namespace imports that use them. */
5494 if (renaming->searched
5495 || (renaming->import_src != NULL
5496 && renaming->import_src[0] != '\0')
5497 || (renaming->import_dest != NULL
5498 && renaming->import_dest[0] != '\0'))
5500 renaming->searched = 1;
5502 /* TODO: here, we perform another name-based symbol lookup, which can
5503 pull its own multiple overloads. In theory, we should be able to do
5504 better in this case since, in DWARF, DW_AT_import is a DIE reference,
5505 not a simple name. But in order to do this, we would need to enhance
5506 the DWARF reader to associate a symbol to this renaming, instead of a
5507 name. So, for now, we do something simpler: re-use the C++/Fortran
5508 namespace machinery. */
5509 r_name = (renaming->alias != NULL
5511 : renaming->declaration);
5512 if (name_match (r_name, lookup_name, NULL))
5514 lookup_name_info decl_lookup_name (renaming->declaration,
5515 lookup_name.match_type ());
5516 ada_add_all_symbols (obstackp, block, decl_lookup_name, domain,
5519 renaming->searched = 0;
5521 return num_defns_collected (obstackp) != defns_mark;
5524 /* Implements compare_names, but only applying the comparision using
5525 the given CASING. */
5528 compare_names_with_case (const char *string1, const char *string2,
5529 enum case_sensitivity casing)
5531 while (*string1 != '\0' && *string2 != '\0')
5535 if (isspace (*string1) || isspace (*string2))
5536 return strcmp_iw_ordered (string1, string2);
5538 if (casing == case_sensitive_off)
5540 c1 = tolower (*string1);
5541 c2 = tolower (*string2);
5558 return strcmp_iw_ordered (string1, string2);
5560 if (*string2 == '\0')
5562 if (is_name_suffix (string1))
5569 if (*string2 == '(')
5570 return strcmp_iw_ordered (string1, string2);
5573 if (casing == case_sensitive_off)
5574 return tolower (*string1) - tolower (*string2);
5576 return *string1 - *string2;
5581 /* Compare STRING1 to STRING2, with results as for strcmp.
5582 Compatible with strcmp_iw_ordered in that...
5584 strcmp_iw_ordered (STRING1, STRING2) <= 0
5588 compare_names (STRING1, STRING2) <= 0
5590 (they may differ as to what symbols compare equal). */
5593 compare_names (const char *string1, const char *string2)
5597 /* Similar to what strcmp_iw_ordered does, we need to perform
5598 a case-insensitive comparison first, and only resort to
5599 a second, case-sensitive, comparison if the first one was
5600 not sufficient to differentiate the two strings. */
5602 result = compare_names_with_case (string1, string2, case_sensitive_off);
5604 result = compare_names_with_case (string1, string2, case_sensitive_on);
5609 /* Convenience function to get at the Ada encoded lookup name for
5610 LOOKUP_NAME, as a C string. */
5613 ada_lookup_name (const lookup_name_info &lookup_name)
5615 return lookup_name.ada ().lookup_name ().c_str ();
5618 /* Add to OBSTACKP all non-local symbols whose name and domain match
5619 LOOKUP_NAME and DOMAIN respectively. The search is performed on
5620 GLOBAL_BLOCK symbols if GLOBAL is non-zero, or on STATIC_BLOCK
5621 symbols otherwise. */
5624 add_nonlocal_symbols (struct obstack *obstackp,
5625 const lookup_name_info &lookup_name,
5626 domain_enum domain, int global)
5628 struct match_data data;
5630 memset (&data, 0, sizeof data);
5631 data.obstackp = obstackp;
5633 bool is_wild_match = lookup_name.ada ().wild_match_p ();
5635 for (objfile *objfile : current_program_space->objfiles ())
5637 data.objfile = objfile;
5640 objfile->sf->qf->map_matching_symbols (objfile, lookup_name.name ().c_str (),
5642 aux_add_nonlocal_symbols, &data,
5643 symbol_name_match_type::WILD,
5646 objfile->sf->qf->map_matching_symbols (objfile, lookup_name.name ().c_str (),
5648 aux_add_nonlocal_symbols, &data,
5649 symbol_name_match_type::FULL,
5652 for (compunit_symtab *cu : objfile->compunits ())
5654 const struct block *global_block
5655 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cu), GLOBAL_BLOCK);
5657 if (ada_add_block_renamings (obstackp, global_block, lookup_name,
5663 if (num_defns_collected (obstackp) == 0 && global && !is_wild_match)
5665 const char *name = ada_lookup_name (lookup_name);
5666 std::string name1 = std::string ("<_ada_") + name + '>';
5668 for (objfile *objfile : current_program_space->objfiles ())
5670 data.objfile = objfile;
5671 objfile->sf->qf->map_matching_symbols (objfile, name1.c_str (),
5673 aux_add_nonlocal_symbols,
5675 symbol_name_match_type::FULL,
5681 /* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if
5682 FULL_SEARCH is non-zero, enclosing scope and in global scopes,
5683 returning the number of matches. Add these to OBSTACKP.
5685 When FULL_SEARCH is non-zero, any non-function/non-enumeral
5686 symbol match within the nest of blocks whose innermost member is BLOCK,
5687 is the one match returned (no other matches in that or
5688 enclosing blocks is returned). If there are any matches in or
5689 surrounding BLOCK, then these alone are returned.
5691 Names prefixed with "standard__" are handled specially:
5692 "standard__" is first stripped off (by the lookup_name
5693 constructor), and only static and global symbols are searched.
5695 If MADE_GLOBAL_LOOKUP_P is non-null, set it before return to whether we had
5696 to lookup global symbols. */
5699 ada_add_all_symbols (struct obstack *obstackp,
5700 const struct block *block,
5701 const lookup_name_info &lookup_name,
5704 int *made_global_lookup_p)
5708 if (made_global_lookup_p)
5709 *made_global_lookup_p = 0;
5711 /* Special case: If the user specifies a symbol name inside package
5712 Standard, do a non-wild matching of the symbol name without
5713 the "standard__" prefix. This was primarily introduced in order
5714 to allow the user to specifically access the standard exceptions
5715 using, for instance, Standard.Constraint_Error when Constraint_Error
5716 is ambiguous (due to the user defining its own Constraint_Error
5717 entity inside its program). */
5718 if (lookup_name.ada ().standard_p ())
5721 /* Check the non-global symbols. If we have ANY match, then we're done. */
5726 ada_add_local_symbols (obstackp, lookup_name, block, domain);
5729 /* In the !full_search case we're are being called by
5730 ada_iterate_over_symbols, and we don't want to search
5732 ada_add_block_symbols (obstackp, block, lookup_name, domain, NULL);
5734 if (num_defns_collected (obstackp) > 0 || !full_search)
5738 /* No non-global symbols found. Check our cache to see if we have
5739 already performed this search before. If we have, then return
5742 if (lookup_cached_symbol (ada_lookup_name (lookup_name),
5743 domain, &sym, &block))
5746 add_defn_to_vec (obstackp, sym, block);
5750 if (made_global_lookup_p)
5751 *made_global_lookup_p = 1;
5753 /* Search symbols from all global blocks. */
5755 add_nonlocal_symbols (obstackp, lookup_name, domain, 1);
5757 /* Now add symbols from all per-file blocks if we've gotten no hits
5758 (not strictly correct, but perhaps better than an error). */
5760 if (num_defns_collected (obstackp) == 0)
5761 add_nonlocal_symbols (obstackp, lookup_name, domain, 0);
5764 /* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if FULL_SEARCH
5765 is non-zero, enclosing scope and in global scopes, returning the number of
5767 Fills *RESULTS with (SYM,BLOCK) tuples, indicating the symbols
5768 found and the blocks and symbol tables (if any) in which they were
5771 When full_search is non-zero, any non-function/non-enumeral
5772 symbol match within the nest of blocks whose innermost member is BLOCK,
5773 is the one match returned (no other matches in that or
5774 enclosing blocks is returned). If there are any matches in or
5775 surrounding BLOCK, then these alone are returned.
5777 Names prefixed with "standard__" are handled specially: "standard__"
5778 is first stripped off, and only static and global symbols are searched. */
5781 ada_lookup_symbol_list_worker (const lookup_name_info &lookup_name,
5782 const struct block *block,
5784 std::vector<struct block_symbol> *results,
5787 int syms_from_global_search;
5789 auto_obstack obstack;
5791 ada_add_all_symbols (&obstack, block, lookup_name,
5792 domain, full_search, &syms_from_global_search);
5794 ndefns = num_defns_collected (&obstack);
5796 struct block_symbol *base = defns_collected (&obstack, 1);
5797 for (int i = 0; i < ndefns; ++i)
5798 results->push_back (base[i]);
5800 ndefns = remove_extra_symbols (results);
5802 if (ndefns == 0 && full_search && syms_from_global_search)
5803 cache_symbol (ada_lookup_name (lookup_name), domain, NULL, NULL);
5805 if (ndefns == 1 && full_search && syms_from_global_search)
5806 cache_symbol (ada_lookup_name (lookup_name), domain,
5807 (*results)[0].symbol, (*results)[0].block);
5809 ndefns = remove_irrelevant_renamings (results, block);
5814 /* Find symbols in DOMAIN matching NAME, in BLOCK and enclosing scope and
5815 in global scopes, returning the number of matches, and filling *RESULTS
5816 with (SYM,BLOCK) tuples.
5818 See ada_lookup_symbol_list_worker for further details. */
5821 ada_lookup_symbol_list (const char *name, const struct block *block,
5823 std::vector<struct block_symbol> *results)
5825 symbol_name_match_type name_match_type = name_match_type_from_name (name);
5826 lookup_name_info lookup_name (name, name_match_type);
5828 return ada_lookup_symbol_list_worker (lookup_name, block, domain, results, 1);
5831 /* Implementation of the la_iterate_over_symbols method. */
5834 ada_iterate_over_symbols
5835 (const struct block *block, const lookup_name_info &name,
5837 gdb::function_view<symbol_found_callback_ftype> callback)
5840 std::vector<struct block_symbol> results;
5842 ndefs = ada_lookup_symbol_list_worker (name, block, domain, &results, 0);
5844 for (i = 0; i < ndefs; ++i)
5846 if (!callback (&results[i]))
5851 /* The result is as for ada_lookup_symbol_list with FULL_SEARCH set
5852 to 1, but choosing the first symbol found if there are multiple
5855 The result is stored in *INFO, which must be non-NULL.
5856 If no match is found, INFO->SYM is set to NULL. */
5859 ada_lookup_encoded_symbol (const char *name, const struct block *block,
5861 struct block_symbol *info)
5863 /* Since we already have an encoded name, wrap it in '<>' to force a
5864 verbatim match. Otherwise, if the name happens to not look like
5865 an encoded name (because it doesn't include a "__"),
5866 ada_lookup_name_info would re-encode/fold it again, and that
5867 would e.g., incorrectly lowercase object renaming names like
5868 "R28b" -> "r28b". */
5869 std::string verbatim = std::string ("<") + name + '>';
5871 gdb_assert (info != NULL);
5872 *info = ada_lookup_symbol (verbatim.c_str (), block, domain, NULL);
5875 /* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing
5876 scope and in global scopes, or NULL if none. NAME is folded and
5877 encoded first. Otherwise, the result is as for ada_lookup_symbol_list,
5878 choosing the first symbol if there are multiple choices.
5879 If IS_A_FIELD_OF_THIS is not NULL, it is set to zero. */
5882 ada_lookup_symbol (const char *name, const struct block *block0,
5883 domain_enum domain, int *is_a_field_of_this)
5885 if (is_a_field_of_this != NULL)
5886 *is_a_field_of_this = 0;
5888 std::vector<struct block_symbol> candidates;
5891 n_candidates = ada_lookup_symbol_list (name, block0, domain, &candidates);
5893 if (n_candidates == 0)
5896 block_symbol info = candidates[0];
5897 info.symbol = fixup_symbol_section (info.symbol, NULL);
5901 static struct block_symbol
5902 ada_lookup_symbol_nonlocal (const struct language_defn *langdef,
5904 const struct block *block,
5905 const domain_enum domain)
5907 struct block_symbol sym;
5909 sym = ada_lookup_symbol (name, block_static_block (block), domain, NULL);
5910 if (sym.symbol != NULL)
5913 /* If we haven't found a match at this point, try the primitive
5914 types. In other languages, this search is performed before
5915 searching for global symbols in order to short-circuit that
5916 global-symbol search if it happens that the name corresponds
5917 to a primitive type. But we cannot do the same in Ada, because
5918 it is perfectly legitimate for a program to declare a type which
5919 has the same name as a standard type. If looking up a type in
5920 that situation, we have traditionally ignored the primitive type
5921 in favor of user-defined types. This is why, unlike most other
5922 languages, we search the primitive types this late and only after
5923 having searched the global symbols without success. */
5925 if (domain == VAR_DOMAIN)
5927 struct gdbarch *gdbarch;
5930 gdbarch = target_gdbarch ();
5932 gdbarch = block_gdbarch (block);
5933 sym.symbol = language_lookup_primitive_type_as_symbol (langdef, gdbarch, name);
5934 if (sym.symbol != NULL)
5942 /* True iff STR is a possible encoded suffix of a normal Ada name
5943 that is to be ignored for matching purposes. Suffixes of parallel
5944 names (e.g., XVE) are not included here. Currently, the possible suffixes
5945 are given by any of the regular expressions:
5947 [.$][0-9]+ [nested subprogram suffix, on platforms such as GNU/Linux]
5948 ___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX]
5949 TKB [subprogram suffix for task bodies]
5950 _E[0-9]+[bs]$ [protected object entry suffixes]
5951 (X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$
5953 Also, any leading "__[0-9]+" sequence is skipped before the suffix
5954 match is performed. This sequence is used to differentiate homonyms,
5955 is an optional part of a valid name suffix. */
5958 is_name_suffix (const char *str)
5961 const char *matching;
5962 const int len = strlen (str);
5964 /* Skip optional leading __[0-9]+. */
5966 if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2]))
5969 while (isdigit (str[0]))
5975 if (str[0] == '.' || str[0] == '$')
5978 while (isdigit (matching[0]))
5980 if (matching[0] == '\0')
5986 if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_')
5989 while (isdigit (matching[0]))
5991 if (matching[0] == '\0')
5995 /* "TKB" suffixes are used for subprograms implementing task bodies. */
5997 if (strcmp (str, "TKB") == 0)
6001 /* FIXME: brobecker/2005-09-23: Protected Object subprograms end
6002 with a N at the end. Unfortunately, the compiler uses the same
6003 convention for other internal types it creates. So treating
6004 all entity names that end with an "N" as a name suffix causes
6005 some regressions. For instance, consider the case of an enumerated
6006 type. To support the 'Image attribute, it creates an array whose
6008 Having a single character like this as a suffix carrying some
6009 information is a bit risky. Perhaps we should change the encoding
6010 to be something like "_N" instead. In the meantime, do not do
6011 the following check. */
6012 /* Protected Object Subprograms */
6013 if (len == 1 && str [0] == 'N')
6018 if (len > 3 && str[0] == '_' && str [1] == 'E' && isdigit (str[2]))
6021 while (isdigit (matching[0]))
6023 if ((matching[0] == 'b' || matching[0] == 's')
6024 && matching [1] == '\0')
6028 /* ??? We should not modify STR directly, as we are doing below. This
6029 is fine in this case, but may become problematic later if we find
6030 that this alternative did not work, and want to try matching
6031 another one from the begining of STR. Since we modified it, we
6032 won't be able to find the begining of the string anymore! */
6036 while (str[0] != '_' && str[0] != '\0')
6038 if (str[0] != 'n' && str[0] != 'b')
6044 if (str[0] == '\000')
6049 if (str[1] != '_' || str[2] == '\000')
6053 if (strcmp (str + 3, "JM") == 0)
6055 /* FIXME: brobecker/2004-09-30: GNAT will soon stop using
6056 the LJM suffix in favor of the JM one. But we will
6057 still accept LJM as a valid suffix for a reasonable
6058 amount of time, just to allow ourselves to debug programs
6059 compiled using an older version of GNAT. */
6060 if (strcmp (str + 3, "LJM") == 0)
6064 if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B'
6065 || str[4] == 'U' || str[4] == 'P')
6067 if (str[4] == 'R' && str[5] != 'T')
6071 if (!isdigit (str[2]))
6073 for (k = 3; str[k] != '\0'; k += 1)
6074 if (!isdigit (str[k]) && str[k] != '_')
6078 if (str[0] == '$' && isdigit (str[1]))
6080 for (k = 2; str[k] != '\0'; k += 1)
6081 if (!isdigit (str[k]) && str[k] != '_')
6088 /* Return non-zero if the string starting at NAME and ending before
6089 NAME_END contains no capital letters. */
6092 is_valid_name_for_wild_match (const char *name0)
6094 const char *decoded_name = ada_decode (name0);
6097 /* If the decoded name starts with an angle bracket, it means that
6098 NAME0 does not follow the GNAT encoding format. It should then
6099 not be allowed as a possible wild match. */
6100 if (decoded_name[0] == '<')
6103 for (i=0; decoded_name[i] != '\0'; i++)
6104 if (isalpha (decoded_name[i]) && !islower (decoded_name[i]))
6110 /* Advance *NAMEP to next occurrence of TARGET0 in the string NAME0
6111 that could start a simple name. Assumes that *NAMEP points into
6112 the string beginning at NAME0. */
6115 advance_wild_match (const char **namep, const char *name0, int target0)
6117 const char *name = *namep;
6127 if ((t1 >= 'a' && t1 <= 'z') || (t1 >= '0' && t1 <= '9'))
6130 if (name == name0 + 5 && startswith (name0, "_ada"))
6135 else if (t1 == '_' && ((name[2] >= 'a' && name[2] <= 'z')
6136 || name[2] == target0))
6144 else if ((t0 >= 'a' && t0 <= 'z') || (t0 >= '0' && t0 <= '9'))
6154 /* Return true iff NAME encodes a name of the form prefix.PATN.
6155 Ignores any informational suffixes of NAME (i.e., for which
6156 is_name_suffix is true). Assumes that PATN is a lower-cased Ada
6160 wild_match (const char *name, const char *patn)
6163 const char *name0 = name;
6167 const char *match = name;
6171 for (name += 1, p = patn + 1; *p != '\0'; name += 1, p += 1)
6174 if (*p == '\0' && is_name_suffix (name))
6175 return match == name0 || is_valid_name_for_wild_match (name0);
6177 if (name[-1] == '_')
6180 if (!advance_wild_match (&name, name0, *patn))
6185 /* Returns true iff symbol name SYM_NAME matches SEARCH_NAME, ignoring
6186 any trailing suffixes that encode debugging information or leading
6187 _ada_ on SYM_NAME (see is_name_suffix commentary for the debugging
6188 information that is ignored). */
6191 full_match (const char *sym_name, const char *search_name)
6193 size_t search_name_len = strlen (search_name);
6195 if (strncmp (sym_name, search_name, search_name_len) == 0
6196 && is_name_suffix (sym_name + search_name_len))
6199 if (startswith (sym_name, "_ada_")
6200 && strncmp (sym_name + 5, search_name, search_name_len) == 0
6201 && is_name_suffix (sym_name + search_name_len + 5))
6207 /* Add symbols from BLOCK matching LOOKUP_NAME in DOMAIN to vector
6208 *defn_symbols, updating the list of symbols in OBSTACKP (if
6209 necessary). OBJFILE is the section containing BLOCK. */
6212 ada_add_block_symbols (struct obstack *obstackp,
6213 const struct block *block,
6214 const lookup_name_info &lookup_name,
6215 domain_enum domain, struct objfile *objfile)
6217 struct block_iterator iter;
6218 /* A matching argument symbol, if any. */
6219 struct symbol *arg_sym;
6220 /* Set true when we find a matching non-argument symbol. */
6226 for (sym = block_iter_match_first (block, lookup_name, &iter);
6228 sym = block_iter_match_next (lookup_name, &iter))
6230 if (symbol_matches_domain (SYMBOL_LANGUAGE (sym),
6231 SYMBOL_DOMAIN (sym), domain))
6233 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6235 if (SYMBOL_IS_ARGUMENT (sym))
6240 add_defn_to_vec (obstackp,
6241 fixup_symbol_section (sym, objfile),
6248 /* Handle renamings. */
6250 if (ada_add_block_renamings (obstackp, block, lookup_name, domain))
6253 if (!found_sym && arg_sym != NULL)
6255 add_defn_to_vec (obstackp,
6256 fixup_symbol_section (arg_sym, objfile),
6260 if (!lookup_name.ada ().wild_match_p ())
6264 const std::string &ada_lookup_name = lookup_name.ada ().lookup_name ();
6265 const char *name = ada_lookup_name.c_str ();
6266 size_t name_len = ada_lookup_name.size ();
6268 ALL_BLOCK_SYMBOLS (block, iter, sym)
6270 if (symbol_matches_domain (SYMBOL_LANGUAGE (sym),
6271 SYMBOL_DOMAIN (sym), domain))
6275 cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (sym)[0];
6278 cmp = !startswith (SYMBOL_LINKAGE_NAME (sym), "_ada_");
6280 cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym) + 5,
6285 && is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len + 5))
6287 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6289 if (SYMBOL_IS_ARGUMENT (sym))
6294 add_defn_to_vec (obstackp,
6295 fixup_symbol_section (sym, objfile),
6303 /* NOTE: This really shouldn't be needed for _ada_ symbols.
6304 They aren't parameters, right? */
6305 if (!found_sym && arg_sym != NULL)
6307 add_defn_to_vec (obstackp,
6308 fixup_symbol_section (arg_sym, objfile),
6315 /* Symbol Completion */
6320 ada_lookup_name_info::matches
6321 (const char *sym_name,
6322 symbol_name_match_type match_type,
6323 completion_match_result *comp_match_res) const
6326 const char *text = m_encoded_name.c_str ();
6327 size_t text_len = m_encoded_name.size ();
6329 /* First, test against the fully qualified name of the symbol. */
6331 if (strncmp (sym_name, text, text_len) == 0)
6334 if (match && !m_encoded_p)
6336 /* One needed check before declaring a positive match is to verify
6337 that iff we are doing a verbatim match, the decoded version
6338 of the symbol name starts with '<'. Otherwise, this symbol name
6339 is not a suitable completion. */
6340 const char *sym_name_copy = sym_name;
6341 bool has_angle_bracket;
6343 sym_name = ada_decode (sym_name);
6344 has_angle_bracket = (sym_name[0] == '<');
6345 match = (has_angle_bracket == m_verbatim_p);
6346 sym_name = sym_name_copy;
6349 if (match && !m_verbatim_p)
6351 /* When doing non-verbatim match, another check that needs to
6352 be done is to verify that the potentially matching symbol name
6353 does not include capital letters, because the ada-mode would
6354 not be able to understand these symbol names without the
6355 angle bracket notation. */
6358 for (tmp = sym_name; *tmp != '\0' && !isupper (*tmp); tmp++);
6363 /* Second: Try wild matching... */
6365 if (!match && m_wild_match_p)
6367 /* Since we are doing wild matching, this means that TEXT
6368 may represent an unqualified symbol name. We therefore must
6369 also compare TEXT against the unqualified name of the symbol. */
6370 sym_name = ada_unqualified_name (ada_decode (sym_name));
6372 if (strncmp (sym_name, text, text_len) == 0)
6376 /* Finally: If we found a match, prepare the result to return. */
6381 if (comp_match_res != NULL)
6383 std::string &match_str = comp_match_res->match.storage ();
6386 match_str = ada_decode (sym_name);
6390 match_str = add_angle_brackets (sym_name);
6392 match_str = sym_name;
6396 comp_match_res->set_match (match_str.c_str ());
6402 /* Add the list of possible symbol names completing TEXT to TRACKER.
6403 WORD is the entire command on which completion is made. */
6406 ada_collect_symbol_completion_matches (completion_tracker &tracker,
6407 complete_symbol_mode mode,
6408 symbol_name_match_type name_match_type,
6409 const char *text, const char *word,
6410 enum type_code code)
6413 const struct block *b, *surrounding_static_block = 0;
6414 struct block_iterator iter;
6416 gdb_assert (code == TYPE_CODE_UNDEF);
6418 lookup_name_info lookup_name (text, name_match_type, true);
6420 /* First, look at the partial symtab symbols. */
6421 expand_symtabs_matching (NULL,
6427 /* At this point scan through the misc symbol vectors and add each
6428 symbol you find to the list. Eventually we want to ignore
6429 anything that isn't a text symbol (everything else will be
6430 handled by the psymtab code above). */
6432 for (objfile *objfile : current_program_space->objfiles ())
6434 for (minimal_symbol *msymbol : objfile->msymbols ())
6438 if (completion_skip_symbol (mode, msymbol))
6441 language symbol_language = MSYMBOL_LANGUAGE (msymbol);
6443 /* Ada minimal symbols won't have their language set to Ada. If
6444 we let completion_list_add_name compare using the
6445 default/C-like matcher, then when completing e.g., symbols in a
6446 package named "pck", we'd match internal Ada symbols like
6447 "pckS", which are invalid in an Ada expression, unless you wrap
6448 them in '<' '>' to request a verbatim match.
6450 Unfortunately, some Ada encoded names successfully demangle as
6451 C++ symbols (using an old mangling scheme), such as "name__2Xn"
6452 -> "Xn::name(void)" and thus some Ada minimal symbols end up
6453 with the wrong language set. Paper over that issue here. */
6454 if (symbol_language == language_auto
6455 || symbol_language == language_cplus)
6456 symbol_language = language_ada;
6458 completion_list_add_name (tracker,
6460 MSYMBOL_LINKAGE_NAME (msymbol),
6461 lookup_name, text, word);
6465 /* Search upwards from currently selected frame (so that we can
6466 complete on local vars. */
6468 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
6470 if (!BLOCK_SUPERBLOCK (b))
6471 surrounding_static_block = b; /* For elmin of dups */
6473 ALL_BLOCK_SYMBOLS (b, iter, sym)
6475 if (completion_skip_symbol (mode, sym))
6478 completion_list_add_name (tracker,
6479 SYMBOL_LANGUAGE (sym),
6480 SYMBOL_LINKAGE_NAME (sym),
6481 lookup_name, text, word);
6485 /* Go through the symtabs and check the externs and statics for
6486 symbols which match. */
6488 for (objfile *objfile : current_program_space->objfiles ())
6490 for (compunit_symtab *s : objfile->compunits ())
6493 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), GLOBAL_BLOCK);
6494 ALL_BLOCK_SYMBOLS (b, iter, sym)
6496 if (completion_skip_symbol (mode, sym))
6499 completion_list_add_name (tracker,
6500 SYMBOL_LANGUAGE (sym),
6501 SYMBOL_LINKAGE_NAME (sym),
6502 lookup_name, text, word);
6507 for (objfile *objfile : current_program_space->objfiles ())
6509 for (compunit_symtab *s : objfile->compunits ())
6512 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), STATIC_BLOCK);
6513 /* Don't do this block twice. */
6514 if (b == surrounding_static_block)
6516 ALL_BLOCK_SYMBOLS (b, iter, sym)
6518 if (completion_skip_symbol (mode, sym))
6521 completion_list_add_name (tracker,
6522 SYMBOL_LANGUAGE (sym),
6523 SYMBOL_LINKAGE_NAME (sym),
6524 lookup_name, text, word);
6532 /* Return non-zero if TYPE is a pointer to the GNAT dispatch table used
6533 for tagged types. */
6536 ada_is_dispatch_table_ptr_type (struct type *type)
6540 if (TYPE_CODE (type) != TYPE_CODE_PTR)
6543 name = TYPE_NAME (TYPE_TARGET_TYPE (type));
6547 return (strcmp (name, "ada__tags__dispatch_table") == 0);
6550 /* Return non-zero if TYPE is an interface tag. */
6553 ada_is_interface_tag (struct type *type)
6555 const char *name = TYPE_NAME (type);
6560 return (strcmp (name, "ada__tags__interface_tag") == 0);
6563 /* True if field number FIELD_NUM in struct or union type TYPE is supposed
6564 to be invisible to users. */
6567 ada_is_ignored_field (struct type *type, int field_num)
6569 if (field_num < 0 || field_num > TYPE_NFIELDS (type))
6572 /* Check the name of that field. */
6574 const char *name = TYPE_FIELD_NAME (type, field_num);
6576 /* Anonymous field names should not be printed.
6577 brobecker/2007-02-20: I don't think this can actually happen
6578 but we don't want to print the value of annonymous fields anyway. */
6582 /* Normally, fields whose name start with an underscore ("_")
6583 are fields that have been internally generated by the compiler,
6584 and thus should not be printed. The "_parent" field is special,
6585 however: This is a field internally generated by the compiler
6586 for tagged types, and it contains the components inherited from
6587 the parent type. This field should not be printed as is, but
6588 should not be ignored either. */
6589 if (name[0] == '_' && !startswith (name, "_parent"))
6593 /* If this is the dispatch table of a tagged type or an interface tag,
6595 if (ada_is_tagged_type (type, 1)
6596 && (ada_is_dispatch_table_ptr_type (TYPE_FIELD_TYPE (type, field_num))
6597 || ada_is_interface_tag (TYPE_FIELD_TYPE (type, field_num))))
6600 /* Not a special field, so it should not be ignored. */
6604 /* True iff TYPE has a tag field. If REFOK, then TYPE may also be a
6605 pointer or reference type whose ultimate target has a tag field. */
6608 ada_is_tagged_type (struct type *type, int refok)
6610 return (ada_lookup_struct_elt_type (type, "_tag", refok, 1) != NULL);
6613 /* True iff TYPE represents the type of X'Tag */
6616 ada_is_tag_type (struct type *type)
6618 type = ada_check_typedef (type);
6620 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_PTR)
6624 const char *name = ada_type_name (TYPE_TARGET_TYPE (type));
6626 return (name != NULL
6627 && strcmp (name, "ada__tags__dispatch_table") == 0);
6631 /* The type of the tag on VAL. */
6634 ada_tag_type (struct value *val)
6636 return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0);
6639 /* Return 1 if TAG follows the old scheme for Ada tags (used for Ada 95,
6640 retired at Ada 05). */
6643 is_ada95_tag (struct value *tag)
6645 return ada_value_struct_elt (tag, "tsd", 1) != NULL;
6648 /* The value of the tag on VAL. */
6651 ada_value_tag (struct value *val)
6653 return ada_value_struct_elt (val, "_tag", 0);
6656 /* The value of the tag on the object of type TYPE whose contents are
6657 saved at VALADDR, if it is non-null, or is at memory address
6660 static struct value *
6661 value_tag_from_contents_and_address (struct type *type,
6662 const gdb_byte *valaddr,
6665 int tag_byte_offset;
6666 struct type *tag_type;
6668 if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset,
6671 const gdb_byte *valaddr1 = ((valaddr == NULL)
6673 : valaddr + tag_byte_offset);
6674 CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset;
6676 return value_from_contents_and_address (tag_type, valaddr1, address1);
6681 static struct type *
6682 type_from_tag (struct value *tag)
6684 const char *type_name = ada_tag_name (tag);
6686 if (type_name != NULL)
6687 return ada_find_any_type (ada_encode (type_name));
6691 /* Given a value OBJ of a tagged type, return a value of this
6692 type at the base address of the object. The base address, as
6693 defined in Ada.Tags, it is the address of the primary tag of
6694 the object, and therefore where the field values of its full
6695 view can be fetched. */
6698 ada_tag_value_at_base_address (struct value *obj)
6701 LONGEST offset_to_top = 0;
6702 struct type *ptr_type, *obj_type;
6704 CORE_ADDR base_address;
6706 obj_type = value_type (obj);
6708 /* It is the responsability of the caller to deref pointers. */
6710 if (TYPE_CODE (obj_type) == TYPE_CODE_PTR
6711 || TYPE_CODE (obj_type) == TYPE_CODE_REF)
6714 tag = ada_value_tag (obj);
6718 /* Base addresses only appeared with Ada 05 and multiple inheritance. */
6720 if (is_ada95_tag (tag))
6723 ptr_type = language_lookup_primitive_type
6724 (language_def (language_ada), target_gdbarch(), "storage_offset");
6725 ptr_type = lookup_pointer_type (ptr_type);
6726 val = value_cast (ptr_type, tag);
6730 /* It is perfectly possible that an exception be raised while
6731 trying to determine the base address, just like for the tag;
6732 see ada_tag_name for more details. We do not print the error
6733 message for the same reason. */
6737 offset_to_top = value_as_long (value_ind (value_ptradd (val, -2)));
6740 catch (const gdb_exception_error &e)
6745 /* If offset is null, nothing to do. */
6747 if (offset_to_top == 0)
6750 /* -1 is a special case in Ada.Tags; however, what should be done
6751 is not quite clear from the documentation. So do nothing for
6754 if (offset_to_top == -1)
6757 /* OFFSET_TO_TOP used to be a positive value to be subtracted
6758 from the base address. This was however incompatible with
6759 C++ dispatch table: C++ uses a *negative* value to *add*
6760 to the base address. Ada's convention has therefore been
6761 changed in GNAT 19.0w 20171023: since then, C++ and Ada
6762 use the same convention. Here, we support both cases by
6763 checking the sign of OFFSET_TO_TOP. */
6765 if (offset_to_top > 0)
6766 offset_to_top = -offset_to_top;
6768 base_address = value_address (obj) + offset_to_top;
6769 tag = value_tag_from_contents_and_address (obj_type, NULL, base_address);
6771 /* Make sure that we have a proper tag at the new address.
6772 Otherwise, offset_to_top is bogus (which can happen when
6773 the object is not initialized yet). */
6778 obj_type = type_from_tag (tag);
6783 return value_from_contents_and_address (obj_type, NULL, base_address);
6786 /* Return the "ada__tags__type_specific_data" type. */
6788 static struct type *
6789 ada_get_tsd_type (struct inferior *inf)
6791 struct ada_inferior_data *data = get_ada_inferior_data (inf);
6793 if (data->tsd_type == 0)
6794 data->tsd_type = ada_find_any_type ("ada__tags__type_specific_data");
6795 return data->tsd_type;
6798 /* Return the TSD (type-specific data) associated to the given TAG.
6799 TAG is assumed to be the tag of a tagged-type entity.
6801 May return NULL if we are unable to get the TSD. */
6803 static struct value *
6804 ada_get_tsd_from_tag (struct value *tag)
6809 /* First option: The TSD is simply stored as a field of our TAG.
6810 Only older versions of GNAT would use this format, but we have
6811 to test it first, because there are no visible markers for
6812 the current approach except the absence of that field. */
6814 val = ada_value_struct_elt (tag, "tsd", 1);
6818 /* Try the second representation for the dispatch table (in which
6819 there is no explicit 'tsd' field in the referent of the tag pointer,
6820 and instead the tsd pointer is stored just before the dispatch
6823 type = ada_get_tsd_type (current_inferior());
6826 type = lookup_pointer_type (lookup_pointer_type (type));
6827 val = value_cast (type, tag);
6830 return value_ind (value_ptradd (val, -1));
6833 /* Given the TSD of a tag (type-specific data), return a string
6834 containing the name of the associated type.
6836 The returned value is good until the next call. May return NULL
6837 if we are unable to determine the tag name. */
6840 ada_tag_name_from_tsd (struct value *tsd)
6842 static char name[1024];
6846 val = ada_value_struct_elt (tsd, "expanded_name", 1);
6849 read_memory_string (value_as_address (val), name, sizeof (name) - 1);
6850 for (p = name; *p != '\0'; p += 1)
6856 /* The type name of the dynamic type denoted by the 'tag value TAG, as
6859 Return NULL if the TAG is not an Ada tag, or if we were unable to
6860 determine the name of that tag. The result is good until the next
6864 ada_tag_name (struct value *tag)
6868 if (!ada_is_tag_type (value_type (tag)))
6871 /* It is perfectly possible that an exception be raised while trying
6872 to determine the TAG's name, even under normal circumstances:
6873 The associated variable may be uninitialized or corrupted, for
6874 instance. We do not let any exception propagate past this point.
6875 instead we return NULL.
6877 We also do not print the error message either (which often is very
6878 low-level (Eg: "Cannot read memory at 0x[...]"), but instead let
6879 the caller print a more meaningful message if necessary. */
6882 struct value *tsd = ada_get_tsd_from_tag (tag);
6885 name = ada_tag_name_from_tsd (tsd);
6887 catch (const gdb_exception_error &e)
6894 /* The parent type of TYPE, or NULL if none. */
6897 ada_parent_type (struct type *type)
6901 type = ada_check_typedef (type);
6903 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT)
6906 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
6907 if (ada_is_parent_field (type, i))
6909 struct type *parent_type = TYPE_FIELD_TYPE (type, i);
6911 /* If the _parent field is a pointer, then dereference it. */
6912 if (TYPE_CODE (parent_type) == TYPE_CODE_PTR)
6913 parent_type = TYPE_TARGET_TYPE (parent_type);
6914 /* If there is a parallel XVS type, get the actual base type. */
6915 parent_type = ada_get_base_type (parent_type);
6917 return ada_check_typedef (parent_type);
6923 /* True iff field number FIELD_NUM of structure type TYPE contains the
6924 parent-type (inherited) fields of a derived type. Assumes TYPE is
6925 a structure type with at least FIELD_NUM+1 fields. */
6928 ada_is_parent_field (struct type *type, int field_num)
6930 const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num);
6932 return (name != NULL
6933 && (startswith (name, "PARENT")
6934 || startswith (name, "_parent")));
6937 /* True iff field number FIELD_NUM of structure type TYPE is a
6938 transparent wrapper field (which should be silently traversed when doing
6939 field selection and flattened when printing). Assumes TYPE is a
6940 structure type with at least FIELD_NUM+1 fields. Such fields are always
6944 ada_is_wrapper_field (struct type *type, int field_num)
6946 const char *name = TYPE_FIELD_NAME (type, field_num);
6948 if (name != NULL && strcmp (name, "RETVAL") == 0)
6950 /* This happens in functions with "out" or "in out" parameters
6951 which are passed by copy. For such functions, GNAT describes
6952 the function's return type as being a struct where the return
6953 value is in a field called RETVAL, and where the other "out"
6954 or "in out" parameters are fields of that struct. This is not
6959 return (name != NULL
6960 && (startswith (name, "PARENT")
6961 || strcmp (name, "REP") == 0
6962 || startswith (name, "_parent")
6963 || name[0] == 'S' || name[0] == 'R' || name[0] == 'O'));
6966 /* True iff field number FIELD_NUM of structure or union type TYPE
6967 is a variant wrapper. Assumes TYPE is a structure type with at least
6968 FIELD_NUM+1 fields. */
6971 ada_is_variant_part (struct type *type, int field_num)
6973 /* Only Ada types are eligible. */
6974 if (!ADA_TYPE_P (type))
6977 struct type *field_type = TYPE_FIELD_TYPE (type, field_num);
6979 return (TYPE_CODE (field_type) == TYPE_CODE_UNION
6980 || (is_dynamic_field (type, field_num)
6981 && (TYPE_CODE (TYPE_TARGET_TYPE (field_type))
6982 == TYPE_CODE_UNION)));
6985 /* Assuming that VAR_TYPE is a variant wrapper (type of the variant part)
6986 whose discriminants are contained in the record type OUTER_TYPE,
6987 returns the type of the controlling discriminant for the variant.
6988 May return NULL if the type could not be found. */
6991 ada_variant_discrim_type (struct type *var_type, struct type *outer_type)
6993 const char *name = ada_variant_discrim_name (var_type);
6995 return ada_lookup_struct_elt_type (outer_type, name, 1, 1);
6998 /* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a
6999 valid field number within it, returns 1 iff field FIELD_NUM of TYPE
7000 represents a 'when others' clause; otherwise 0. */
7003 ada_is_others_clause (struct type *type, int field_num)
7005 const char *name = TYPE_FIELD_NAME (type, field_num);
7007 return (name != NULL && name[0] == 'O');
7010 /* Assuming that TYPE0 is the type of the variant part of a record,
7011 returns the name of the discriminant controlling the variant.
7012 The value is valid until the next call to ada_variant_discrim_name. */
7015 ada_variant_discrim_name (struct type *type0)
7017 static char *result = NULL;
7018 static size_t result_len = 0;
7021 const char *discrim_end;
7022 const char *discrim_start;
7024 if (TYPE_CODE (type0) == TYPE_CODE_PTR)
7025 type = TYPE_TARGET_TYPE (type0);
7029 name = ada_type_name (type);
7031 if (name == NULL || name[0] == '\000')
7034 for (discrim_end = name + strlen (name) - 6; discrim_end != name;
7037 if (startswith (discrim_end, "___XVN"))
7040 if (discrim_end == name)
7043 for (discrim_start = discrim_end; discrim_start != name + 3;
7046 if (discrim_start == name + 1)
7048 if ((discrim_start > name + 3
7049 && startswith (discrim_start - 3, "___"))
7050 || discrim_start[-1] == '.')
7054 GROW_VECT (result, result_len, discrim_end - discrim_start + 1);
7055 strncpy (result, discrim_start, discrim_end - discrim_start);
7056 result[discrim_end - discrim_start] = '\0';
7060 /* Scan STR for a subtype-encoded number, beginning at position K.
7061 Put the position of the character just past the number scanned in
7062 *NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL.
7063 Return 1 if there was a valid number at the given position, and 0
7064 otherwise. A "subtype-encoded" number consists of the absolute value
7065 in decimal, followed by the letter 'm' to indicate a negative number.
7066 Assumes 0m does not occur. */
7069 ada_scan_number (const char str[], int k, LONGEST * R, int *new_k)
7073 if (!isdigit (str[k]))
7076 /* Do it the hard way so as not to make any assumption about
7077 the relationship of unsigned long (%lu scan format code) and
7080 while (isdigit (str[k]))
7082 RU = RU * 10 + (str[k] - '0');
7089 *R = (-(LONGEST) (RU - 1)) - 1;
7095 /* NOTE on the above: Technically, C does not say what the results of
7096 - (LONGEST) RU or (LONGEST) -RU are for RU == largest positive
7097 number representable as a LONGEST (although either would probably work
7098 in most implementations). When RU>0, the locution in the then branch
7099 above is always equivalent to the negative of RU. */
7106 /* Assuming that TYPE is a variant part wrapper type (a VARIANTS field),
7107 and FIELD_NUM is a valid field number within it, returns 1 iff VAL is
7108 in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */
7111 ada_in_variant (LONGEST val, struct type *type, int field_num)
7113 const char *name = TYPE_FIELD_NAME (type, field_num);
7127 if (!ada_scan_number (name, p + 1, &W, &p))
7137 if (!ada_scan_number (name, p + 1, &L, &p)
7138 || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p))
7140 if (val >= L && val <= U)
7152 /* FIXME: Lots of redundancy below. Try to consolidate. */
7154 /* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type
7155 ARG_TYPE, extract and return the value of one of its (non-static)
7156 fields. FIELDNO says which field. Differs from value_primitive_field
7157 only in that it can handle packed values of arbitrary type. */
7159 static struct value *
7160 ada_value_primitive_field (struct value *arg1, int offset, int fieldno,
7161 struct type *arg_type)
7165 arg_type = ada_check_typedef (arg_type);
7166 type = TYPE_FIELD_TYPE (arg_type, fieldno);
7168 /* Handle packed fields. It might be that the field is not packed
7169 relative to its containing structure, but the structure itself is
7170 packed; in this case we must take the bit-field path. */
7171 if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0 || value_bitpos (arg1) != 0)
7173 int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno);
7174 int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno);
7176 return ada_value_primitive_packed_val (arg1, value_contents (arg1),
7177 offset + bit_pos / 8,
7178 bit_pos % 8, bit_size, type);
7181 return value_primitive_field (arg1, offset, fieldno, arg_type);
7184 /* Find field with name NAME in object of type TYPE. If found,
7185 set the following for each argument that is non-null:
7186 - *FIELD_TYPE_P to the field's type;
7187 - *BYTE_OFFSET_P to OFFSET + the byte offset of the field within
7188 an object of that type;
7189 - *BIT_OFFSET_P to the bit offset modulo byte size of the field;
7190 - *BIT_SIZE_P to its size in bits if the field is packed, and
7192 If INDEX_P is non-null, increment *INDEX_P by the number of source-visible
7193 fields up to but not including the desired field, or by the total
7194 number of fields if not found. A NULL value of NAME never
7195 matches; the function just counts visible fields in this case.
7197 Notice that we need to handle when a tagged record hierarchy
7198 has some components with the same name, like in this scenario:
7200 type Top_T is tagged record
7206 type Middle_T is new Top.Top_T with record
7207 N : Character := 'a';
7211 type Bottom_T is new Middle.Middle_T with record
7213 C : Character := '5';
7215 A : Character := 'J';
7218 Let's say we now have a variable declared and initialized as follow:
7220 TC : Top_A := new Bottom_T;
7222 And then we use this variable to call this function
7224 procedure Assign (Obj: in out Top_T; TV : Integer);
7228 Assign (Top_T (B), 12);
7230 Now, we're in the debugger, and we're inside that procedure
7231 then and we want to print the value of obj.c:
7233 Usually, the tagged record or one of the parent type owns the
7234 component to print and there's no issue but in this particular
7235 case, what does it mean to ask for Obj.C? Since the actual
7236 type for object is type Bottom_T, it could mean two things: type
7237 component C from the Middle_T view, but also component C from
7238 Bottom_T. So in that "undefined" case, when the component is
7239 not found in the non-resolved type (which includes all the
7240 components of the parent type), then resolve it and see if we
7241 get better luck once expanded.
7243 In the case of homonyms in the derived tagged type, we don't
7244 guaranty anything, and pick the one that's easiest for us
7247 Returns 1 if found, 0 otherwise. */
7250 find_struct_field (const char *name, struct type *type, int offset,
7251 struct type **field_type_p,
7252 int *byte_offset_p, int *bit_offset_p, int *bit_size_p,
7256 int parent_offset = -1;
7258 type = ada_check_typedef (type);
7260 if (field_type_p != NULL)
7261 *field_type_p = NULL;
7262 if (byte_offset_p != NULL)
7264 if (bit_offset_p != NULL)
7266 if (bit_size_p != NULL)
7269 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
7271 int bit_pos = TYPE_FIELD_BITPOS (type, i);
7272 int fld_offset = offset + bit_pos / 8;
7273 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7275 if (t_field_name == NULL)
7278 else if (ada_is_parent_field (type, i))
7280 /* This is a field pointing us to the parent type of a tagged
7281 type. As hinted in this function's documentation, we give
7282 preference to fields in the current record first, so what
7283 we do here is just record the index of this field before
7284 we skip it. If it turns out we couldn't find our field
7285 in the current record, then we'll get back to it and search
7286 inside it whether the field might exist in the parent. */
7292 else if (name != NULL && field_name_match (t_field_name, name))
7294 int bit_size = TYPE_FIELD_BITSIZE (type, i);
7296 if (field_type_p != NULL)
7297 *field_type_p = TYPE_FIELD_TYPE (type, i);
7298 if (byte_offset_p != NULL)
7299 *byte_offset_p = fld_offset;
7300 if (bit_offset_p != NULL)
7301 *bit_offset_p = bit_pos % 8;
7302 if (bit_size_p != NULL)
7303 *bit_size_p = bit_size;
7306 else if (ada_is_wrapper_field (type, i))
7308 if (find_struct_field (name, TYPE_FIELD_TYPE (type, i), fld_offset,
7309 field_type_p, byte_offset_p, bit_offset_p,
7310 bit_size_p, index_p))
7313 else if (ada_is_variant_part (type, i))
7315 /* PNH: Wait. Do we ever execute this section, or is ARG always of
7318 struct type *field_type
7319 = ada_check_typedef (TYPE_FIELD_TYPE (type, i));
7321 for (j = 0; j < TYPE_NFIELDS (field_type); j += 1)
7323 if (find_struct_field (name, TYPE_FIELD_TYPE (field_type, j),
7325 + TYPE_FIELD_BITPOS (field_type, j) / 8,
7326 field_type_p, byte_offset_p,
7327 bit_offset_p, bit_size_p, index_p))
7331 else if (index_p != NULL)
7335 /* Field not found so far. If this is a tagged type which
7336 has a parent, try finding that field in the parent now. */
7338 if (parent_offset != -1)
7340 int bit_pos = TYPE_FIELD_BITPOS (type, parent_offset);
7341 int fld_offset = offset + bit_pos / 8;
7343 if (find_struct_field (name, TYPE_FIELD_TYPE (type, parent_offset),
7344 fld_offset, field_type_p, byte_offset_p,
7345 bit_offset_p, bit_size_p, index_p))
7352 /* Number of user-visible fields in record type TYPE. */
7355 num_visible_fields (struct type *type)
7360 find_struct_field (NULL, type, 0, NULL, NULL, NULL, NULL, &n);
7364 /* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes,
7365 and search in it assuming it has (class) type TYPE.
7366 If found, return value, else return NULL.
7368 Searches recursively through wrapper fields (e.g., '_parent').
7370 In the case of homonyms in the tagged types, please refer to the
7371 long explanation in find_struct_field's function documentation. */
7373 static struct value *
7374 ada_search_struct_field (const char *name, struct value *arg, int offset,
7378 int parent_offset = -1;
7380 type = ada_check_typedef (type);
7381 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
7383 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7385 if (t_field_name == NULL)
7388 else if (ada_is_parent_field (type, i))
7390 /* This is a field pointing us to the parent type of a tagged
7391 type. As hinted in this function's documentation, we give
7392 preference to fields in the current record first, so what
7393 we do here is just record the index of this field before
7394 we skip it. If it turns out we couldn't find our field
7395 in the current record, then we'll get back to it and search
7396 inside it whether the field might exist in the parent. */
7402 else if (field_name_match (t_field_name, name))
7403 return ada_value_primitive_field (arg, offset, i, type);
7405 else if (ada_is_wrapper_field (type, i))
7407 struct value *v = /* Do not let indent join lines here. */
7408 ada_search_struct_field (name, arg,
7409 offset + TYPE_FIELD_BITPOS (type, i) / 8,
7410 TYPE_FIELD_TYPE (type, i));
7416 else if (ada_is_variant_part (type, i))
7418 /* PNH: Do we ever get here? See find_struct_field. */
7420 struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type,
7422 int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8;
7424 for (j = 0; j < TYPE_NFIELDS (field_type); j += 1)
7426 struct value *v = ada_search_struct_field /* Force line
7429 var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8,
7430 TYPE_FIELD_TYPE (field_type, j));
7438 /* Field not found so far. If this is a tagged type which
7439 has a parent, try finding that field in the parent now. */
7441 if (parent_offset != -1)
7443 struct value *v = ada_search_struct_field (
7444 name, arg, offset + TYPE_FIELD_BITPOS (type, parent_offset) / 8,
7445 TYPE_FIELD_TYPE (type, parent_offset));
7454 static struct value *ada_index_struct_field_1 (int *, struct value *,
7455 int, struct type *);
7458 /* Return field #INDEX in ARG, where the index is that returned by
7459 * find_struct_field through its INDEX_P argument. Adjust the address
7460 * of ARG by OFFSET bytes, and search in it assuming it has (class) type TYPE.
7461 * If found, return value, else return NULL. */
7463 static struct value *
7464 ada_index_struct_field (int index, struct value *arg, int offset,
7467 return ada_index_struct_field_1 (&index, arg, offset, type);
7471 /* Auxiliary function for ada_index_struct_field. Like
7472 * ada_index_struct_field, but takes index from *INDEX_P and modifies
7475 static struct value *
7476 ada_index_struct_field_1 (int *index_p, struct value *arg, int offset,
7480 type = ada_check_typedef (type);
7482 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
7484 if (TYPE_FIELD_NAME (type, i) == NULL)
7486 else if (ada_is_wrapper_field (type, i))
7488 struct value *v = /* Do not let indent join lines here. */
7489 ada_index_struct_field_1 (index_p, arg,
7490 offset + TYPE_FIELD_BITPOS (type, i) / 8,
7491 TYPE_FIELD_TYPE (type, i));
7497 else if (ada_is_variant_part (type, i))
7499 /* PNH: Do we ever get here? See ada_search_struct_field,
7500 find_struct_field. */
7501 error (_("Cannot assign this kind of variant record"));
7503 else if (*index_p == 0)
7504 return ada_value_primitive_field (arg, offset, i, type);
7511 /* Given ARG, a value of type (pointer or reference to a)*
7512 structure/union, extract the component named NAME from the ultimate
7513 target structure/union and return it as a value with its
7516 The routine searches for NAME among all members of the structure itself
7517 and (recursively) among all members of any wrapper members
7520 If NO_ERR, then simply return NULL in case of error, rather than
7524 ada_value_struct_elt (struct value *arg, const char *name, int no_err)
7526 struct type *t, *t1;
7531 t1 = t = ada_check_typedef (value_type (arg));
7532 if (TYPE_CODE (t) == TYPE_CODE_REF)
7534 t1 = TYPE_TARGET_TYPE (t);
7537 t1 = ada_check_typedef (t1);
7538 if (TYPE_CODE (t1) == TYPE_CODE_PTR)
7540 arg = coerce_ref (arg);
7545 while (TYPE_CODE (t) == TYPE_CODE_PTR)
7547 t1 = TYPE_TARGET_TYPE (t);
7550 t1 = ada_check_typedef (t1);
7551 if (TYPE_CODE (t1) == TYPE_CODE_PTR)
7553 arg = value_ind (arg);
7560 if (TYPE_CODE (t1) != TYPE_CODE_STRUCT && TYPE_CODE (t1) != TYPE_CODE_UNION)
7564 v = ada_search_struct_field (name, arg, 0, t);
7567 int bit_offset, bit_size, byte_offset;
7568 struct type *field_type;
7571 if (TYPE_CODE (t) == TYPE_CODE_PTR)
7572 address = value_address (ada_value_ind (arg));
7574 address = value_address (ada_coerce_ref (arg));
7576 /* Check to see if this is a tagged type. We also need to handle
7577 the case where the type is a reference to a tagged type, but
7578 we have to be careful to exclude pointers to tagged types.
7579 The latter should be shown as usual (as a pointer), whereas
7580 a reference should mostly be transparent to the user. */
7582 if (ada_is_tagged_type (t1, 0)
7583 || (TYPE_CODE (t1) == TYPE_CODE_REF
7584 && ada_is_tagged_type (TYPE_TARGET_TYPE (t1), 0)))
7586 /* We first try to find the searched field in the current type.
7587 If not found then let's look in the fixed type. */
7589 if (!find_struct_field (name, t1, 0,
7590 &field_type, &byte_offset, &bit_offset,
7599 /* Convert to fixed type in all cases, so that we have proper
7600 offsets to each field in unconstrained record types. */
7601 t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL,
7602 address, NULL, check_tag);
7604 if (find_struct_field (name, t1, 0,
7605 &field_type, &byte_offset, &bit_offset,
7610 if (TYPE_CODE (t) == TYPE_CODE_REF)
7611 arg = ada_coerce_ref (arg);
7613 arg = ada_value_ind (arg);
7614 v = ada_value_primitive_packed_val (arg, NULL, byte_offset,
7615 bit_offset, bit_size,
7619 v = value_at_lazy (field_type, address + byte_offset);
7623 if (v != NULL || no_err)
7626 error (_("There is no member named %s."), name);
7632 error (_("Attempt to extract a component of "
7633 "a value that is not a record."));
7636 /* Return a string representation of type TYPE. */
7639 type_as_string (struct type *type)
7641 string_file tmp_stream;
7643 type_print (type, "", &tmp_stream, -1);
7645 return std::move (tmp_stream.string ());
7648 /* Given a type TYPE, look up the type of the component of type named NAME.
7649 If DISPP is non-null, add its byte displacement from the beginning of a
7650 structure (pointed to by a value) of type TYPE to *DISPP (does not
7651 work for packed fields).
7653 Matches any field whose name has NAME as a prefix, possibly
7656 TYPE can be either a struct or union. If REFOK, TYPE may also
7657 be a (pointer or reference)+ to a struct or union, and the
7658 ultimate target type will be searched.
7660 Looks recursively into variant clauses and parent types.
7662 In the case of homonyms in the tagged types, please refer to the
7663 long explanation in find_struct_field's function documentation.
7665 If NOERR is nonzero, return NULL if NAME is not suitably defined or
7666 TYPE is not a type of the right kind. */
7668 static struct type *
7669 ada_lookup_struct_elt_type (struct type *type, const char *name, int refok,
7673 int parent_offset = -1;
7678 if (refok && type != NULL)
7681 type = ada_check_typedef (type);
7682 if (TYPE_CODE (type) != TYPE_CODE_PTR
7683 && TYPE_CODE (type) != TYPE_CODE_REF)
7685 type = TYPE_TARGET_TYPE (type);
7689 || (TYPE_CODE (type) != TYPE_CODE_STRUCT
7690 && TYPE_CODE (type) != TYPE_CODE_UNION))
7695 error (_("Type %s is not a structure or union type"),
7696 type != NULL ? type_as_string (type).c_str () : _("(null)"));
7699 type = to_static_fixed_type (type);
7701 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
7703 const char *t_field_name = TYPE_FIELD_NAME (type, i);
7706 if (t_field_name == NULL)
7709 else if (ada_is_parent_field (type, i))
7711 /* This is a field pointing us to the parent type of a tagged
7712 type. As hinted in this function's documentation, we give
7713 preference to fields in the current record first, so what
7714 we do here is just record the index of this field before
7715 we skip it. If it turns out we couldn't find our field
7716 in the current record, then we'll get back to it and search
7717 inside it whether the field might exist in the parent. */
7723 else if (field_name_match (t_field_name, name))
7724 return TYPE_FIELD_TYPE (type, i);
7726 else if (ada_is_wrapper_field (type, i))
7728 t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (type, i), name,
7734 else if (ada_is_variant_part (type, i))
7737 struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type,
7740 for (j = TYPE_NFIELDS (field_type) - 1; j >= 0; j -= 1)
7742 /* FIXME pnh 2008/01/26: We check for a field that is
7743 NOT wrapped in a struct, since the compiler sometimes
7744 generates these for unchecked variant types. Revisit
7745 if the compiler changes this practice. */
7746 const char *v_field_name = TYPE_FIELD_NAME (field_type, j);
7748 if (v_field_name != NULL
7749 && field_name_match (v_field_name, name))
7750 t = TYPE_FIELD_TYPE (field_type, j);
7752 t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (field_type,
7763 /* Field not found so far. If this is a tagged type which
7764 has a parent, try finding that field in the parent now. */
7766 if (parent_offset != -1)
7770 t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (type, parent_offset),
7779 const char *name_str = name != NULL ? name : _("<null>");
7781 error (_("Type %s has no component named %s"),
7782 type_as_string (type).c_str (), name_str);
7788 /* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7789 within a value of type OUTER_TYPE, return true iff VAR_TYPE
7790 represents an unchecked union (that is, the variant part of a
7791 record that is named in an Unchecked_Union pragma). */
7794 is_unchecked_variant (struct type *var_type, struct type *outer_type)
7796 const char *discrim_name = ada_variant_discrim_name (var_type);
7798 return (ada_lookup_struct_elt_type (outer_type, discrim_name, 0, 1) == NULL);
7802 /* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7803 within a value of type OUTER_TYPE that is stored in GDB at
7804 OUTER_VALADDR, determine which variant clause (field number in VAR_TYPE,
7805 numbering from 0) is applicable. Returns -1 if none are. */
7808 ada_which_variant_applies (struct type *var_type, struct type *outer_type,
7809 const gdb_byte *outer_valaddr)
7813 const char *discrim_name = ada_variant_discrim_name (var_type);
7814 struct value *outer;
7815 struct value *discrim;
7816 LONGEST discrim_val;
7818 /* Using plain value_from_contents_and_address here causes problems
7819 because we will end up trying to resolve a type that is currently
7820 being constructed. */
7821 outer = value_from_contents_and_address_unresolved (outer_type,
7823 discrim = ada_value_struct_elt (outer, discrim_name, 1);
7824 if (discrim == NULL)
7826 discrim_val = value_as_long (discrim);
7829 for (i = 0; i < TYPE_NFIELDS (var_type); i += 1)
7831 if (ada_is_others_clause (var_type, i))
7833 else if (ada_in_variant (discrim_val, var_type, i))
7837 return others_clause;
7842 /* Dynamic-Sized Records */
7844 /* Strategy: The type ostensibly attached to a value with dynamic size
7845 (i.e., a size that is not statically recorded in the debugging
7846 data) does not accurately reflect the size or layout of the value.
7847 Our strategy is to convert these values to values with accurate,
7848 conventional types that are constructed on the fly. */
7850 /* There is a subtle and tricky problem here. In general, we cannot
7851 determine the size of dynamic records without its data. However,
7852 the 'struct value' data structure, which GDB uses to represent
7853 quantities in the inferior process (the target), requires the size
7854 of the type at the time of its allocation in order to reserve space
7855 for GDB's internal copy of the data. That's why the
7856 'to_fixed_xxx_type' routines take (target) addresses as parameters,
7857 rather than struct value*s.
7859 However, GDB's internal history variables ($1, $2, etc.) are
7860 struct value*s containing internal copies of the data that are not, in
7861 general, the same as the data at their corresponding addresses in
7862 the target. Fortunately, the types we give to these values are all
7863 conventional, fixed-size types (as per the strategy described
7864 above), so that we don't usually have to perform the
7865 'to_fixed_xxx_type' conversions to look at their values.
7866 Unfortunately, there is one exception: if one of the internal
7867 history variables is an array whose elements are unconstrained
7868 records, then we will need to create distinct fixed types for each
7869 element selected. */
7871 /* The upshot of all of this is that many routines take a (type, host
7872 address, target address) triple as arguments to represent a value.
7873 The host address, if non-null, is supposed to contain an internal
7874 copy of the relevant data; otherwise, the program is to consult the
7875 target at the target address. */
7877 /* Assuming that VAL0 represents a pointer value, the result of
7878 dereferencing it. Differs from value_ind in its treatment of
7879 dynamic-sized types. */
7882 ada_value_ind (struct value *val0)
7884 struct value *val = value_ind (val0);
7886 if (ada_is_tagged_type (value_type (val), 0))
7887 val = ada_tag_value_at_base_address (val);
7889 return ada_to_fixed_value (val);
7892 /* The value resulting from dereferencing any "reference to"
7893 qualifiers on VAL0. */
7895 static struct value *
7896 ada_coerce_ref (struct value *val0)
7898 if (TYPE_CODE (value_type (val0)) == TYPE_CODE_REF)
7900 struct value *val = val0;
7902 val = coerce_ref (val);
7904 if (ada_is_tagged_type (value_type (val), 0))
7905 val = ada_tag_value_at_base_address (val);
7907 return ada_to_fixed_value (val);
7913 /* Return OFF rounded upward if necessary to a multiple of
7914 ALIGNMENT (a power of 2). */
7917 align_value (unsigned int off, unsigned int alignment)
7919 return (off + alignment - 1) & ~(alignment - 1);
7922 /* Return the bit alignment required for field #F of template type TYPE. */
7925 field_alignment (struct type *type, int f)
7927 const char *name = TYPE_FIELD_NAME (type, f);
7931 /* The field name should never be null, unless the debugging information
7932 is somehow malformed. In this case, we assume the field does not
7933 require any alignment. */
7937 len = strlen (name);
7939 if (!isdigit (name[len - 1]))
7942 if (isdigit (name[len - 2]))
7943 align_offset = len - 2;
7945 align_offset = len - 1;
7947 if (align_offset < 7 || !startswith (name + align_offset - 6, "___XV"))
7948 return TARGET_CHAR_BIT;
7950 return atoi (name + align_offset) * TARGET_CHAR_BIT;
7953 /* Find a typedef or tag symbol named NAME. Ignores ambiguity. */
7955 static struct symbol *
7956 ada_find_any_type_symbol (const char *name)
7960 sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN);
7961 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
7964 sym = standard_lookup (name, NULL, STRUCT_DOMAIN);
7968 /* Find a type named NAME. Ignores ambiguity. This routine will look
7969 solely for types defined by debug info, it will not search the GDB
7972 static struct type *
7973 ada_find_any_type (const char *name)
7975 struct symbol *sym = ada_find_any_type_symbol (name);
7978 return SYMBOL_TYPE (sym);
7983 /* Given NAME_SYM and an associated BLOCK, find a "renaming" symbol
7984 associated with NAME_SYM's name. NAME_SYM may itself be a renaming
7985 symbol, in which case it is returned. Otherwise, this looks for
7986 symbols whose name is that of NAME_SYM suffixed with "___XR".
7987 Return symbol if found, and NULL otherwise. */
7990 ada_find_renaming_symbol (struct symbol *name_sym, const struct block *block)
7992 const char *name = SYMBOL_LINKAGE_NAME (name_sym);
7995 if (strstr (name, "___XR") != NULL)
7998 sym = find_old_style_renaming_symbol (name, block);
8003 /* Not right yet. FIXME pnh 7/20/2007. */
8004 sym = ada_find_any_type_symbol (name);
8005 if (sym != NULL && strstr (SYMBOL_LINKAGE_NAME (sym), "___XR") != NULL)
8011 static struct symbol *
8012 find_old_style_renaming_symbol (const char *name, const struct block *block)
8014 const struct symbol *function_sym = block_linkage_function (block);
8017 if (function_sym != NULL)
8019 /* If the symbol is defined inside a function, NAME is not fully
8020 qualified. This means we need to prepend the function name
8021 as well as adding the ``___XR'' suffix to build the name of
8022 the associated renaming symbol. */
8023 const char *function_name = SYMBOL_LINKAGE_NAME (function_sym);
8024 /* Function names sometimes contain suffixes used
8025 for instance to qualify nested subprograms. When building
8026 the XR type name, we need to make sure that this suffix is
8027 not included. So do not include any suffix in the function
8028 name length below. */
8029 int function_name_len = ada_name_prefix_len (function_name);
8030 const int rename_len = function_name_len + 2 /* "__" */
8031 + strlen (name) + 6 /* "___XR\0" */ ;
8033 /* Strip the suffix if necessary. */
8034 ada_remove_trailing_digits (function_name, &function_name_len);
8035 ada_remove_po_subprogram_suffix (function_name, &function_name_len);
8036 ada_remove_Xbn_suffix (function_name, &function_name_len);
8038 /* Library-level functions are a special case, as GNAT adds
8039 a ``_ada_'' prefix to the function name to avoid namespace
8040 pollution. However, the renaming symbols themselves do not
8041 have this prefix, so we need to skip this prefix if present. */
8042 if (function_name_len > 5 /* "_ada_" */
8043 && strstr (function_name, "_ada_") == function_name)
8046 function_name_len -= 5;
8049 rename = (char *) alloca (rename_len * sizeof (char));
8050 strncpy (rename, function_name, function_name_len);
8051 xsnprintf (rename + function_name_len, rename_len - function_name_len,
8056 const int rename_len = strlen (name) + 6;
8058 rename = (char *) alloca (rename_len * sizeof (char));
8059 xsnprintf (rename, rename_len * sizeof (char), "%s___XR", name);
8062 return ada_find_any_type_symbol (rename);
8065 /* Because of GNAT encoding conventions, several GDB symbols may match a
8066 given type name. If the type denoted by TYPE0 is to be preferred to
8067 that of TYPE1 for purposes of type printing, return non-zero;
8068 otherwise return 0. */
8071 ada_prefer_type (struct type *type0, struct type *type1)
8075 else if (type0 == NULL)
8077 else if (TYPE_CODE (type1) == TYPE_CODE_VOID)
8079 else if (TYPE_CODE (type0) == TYPE_CODE_VOID)
8081 else if (TYPE_NAME (type1) == NULL && TYPE_NAME (type0) != NULL)
8083 else if (ada_is_constrained_packed_array_type (type0))
8085 else if (ada_is_array_descriptor_type (type0)
8086 && !ada_is_array_descriptor_type (type1))
8090 const char *type0_name = TYPE_NAME (type0);
8091 const char *type1_name = TYPE_NAME (type1);
8093 if (type0_name != NULL && strstr (type0_name, "___XR") != NULL
8094 && (type1_name == NULL || strstr (type1_name, "___XR") == NULL))
8100 /* The name of TYPE, which is its TYPE_NAME. Null if TYPE is
8104 ada_type_name (struct type *type)
8108 return TYPE_NAME (type);
8111 /* Search the list of "descriptive" types associated to TYPE for a type
8112 whose name is NAME. */
8114 static struct type *
8115 find_parallel_type_by_descriptive_type (struct type *type, const char *name)
8117 struct type *result, *tmp;
8119 if (ada_ignore_descriptive_types_p)
8122 /* If there no descriptive-type info, then there is no parallel type
8124 if (!HAVE_GNAT_AUX_INFO (type))
8127 result = TYPE_DESCRIPTIVE_TYPE (type);
8128 while (result != NULL)
8130 const char *result_name = ada_type_name (result);
8132 if (result_name == NULL)
8134 warning (_("unexpected null name on descriptive type"));
8138 /* If the names match, stop. */
8139 if (strcmp (result_name, name) == 0)
8142 /* Otherwise, look at the next item on the list, if any. */
8143 if (HAVE_GNAT_AUX_INFO (result))
8144 tmp = TYPE_DESCRIPTIVE_TYPE (result);
8148 /* If not found either, try after having resolved the typedef. */
8153 result = check_typedef (result);
8154 if (HAVE_GNAT_AUX_INFO (result))
8155 result = TYPE_DESCRIPTIVE_TYPE (result);
8161 /* If we didn't find a match, see whether this is a packed array. With
8162 older compilers, the descriptive type information is either absent or
8163 irrelevant when it comes to packed arrays so the above lookup fails.
8164 Fall back to using a parallel lookup by name in this case. */
8165 if (result == NULL && ada_is_constrained_packed_array_type (type))
8166 return ada_find_any_type (name);
8171 /* Find a parallel type to TYPE with the specified NAME, using the
8172 descriptive type taken from the debugging information, if available,
8173 and otherwise using the (slower) name-based method. */
8175 static struct type *
8176 ada_find_parallel_type_with_name (struct type *type, const char *name)
8178 struct type *result = NULL;
8180 if (HAVE_GNAT_AUX_INFO (type))
8181 result = find_parallel_type_by_descriptive_type (type, name);
8183 result = ada_find_any_type (name);
8188 /* Same as above, but specify the name of the parallel type by appending
8189 SUFFIX to the name of TYPE. */
8192 ada_find_parallel_type (struct type *type, const char *suffix)
8195 const char *type_name = ada_type_name (type);
8198 if (type_name == NULL)
8201 len = strlen (type_name);
8203 name = (char *) alloca (len + strlen (suffix) + 1);
8205 strcpy (name, type_name);
8206 strcpy (name + len, suffix);
8208 return ada_find_parallel_type_with_name (type, name);
8211 /* If TYPE is a variable-size record type, return the corresponding template
8212 type describing its fields. Otherwise, return NULL. */
8214 static struct type *
8215 dynamic_template_type (struct type *type)
8217 type = ada_check_typedef (type);
8219 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT
8220 || ada_type_name (type) == NULL)
8224 int len = strlen (ada_type_name (type));
8226 if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0)
8229 return ada_find_parallel_type (type, "___XVE");
8233 /* Assuming that TEMPL_TYPE is a union or struct type, returns
8234 non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */
8237 is_dynamic_field (struct type *templ_type, int field_num)
8239 const char *name = TYPE_FIELD_NAME (templ_type, field_num);
8242 && TYPE_CODE (TYPE_FIELD_TYPE (templ_type, field_num)) == TYPE_CODE_PTR
8243 && strstr (name, "___XVL") != NULL;
8246 /* The index of the variant field of TYPE, or -1 if TYPE does not
8247 represent a variant record type. */
8250 variant_field_index (struct type *type)
8254 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT)
8257 for (f = 0; f < TYPE_NFIELDS (type); f += 1)
8259 if (ada_is_variant_part (type, f))
8265 /* A record type with no fields. */
8267 static struct type *
8268 empty_record (struct type *templ)
8270 struct type *type = alloc_type_copy (templ);
8272 TYPE_CODE (type) = TYPE_CODE_STRUCT;
8273 TYPE_NFIELDS (type) = 0;
8274 TYPE_FIELDS (type) = NULL;
8275 INIT_NONE_SPECIFIC (type);
8276 TYPE_NAME (type) = "<empty>";
8277 TYPE_LENGTH (type) = 0;
8281 /* An ordinary record type (with fixed-length fields) that describes
8282 the value of type TYPE at VALADDR or ADDRESS (see comments at
8283 the beginning of this section) VAL according to GNAT conventions.
8284 DVAL0 should describe the (portion of a) record that contains any
8285 necessary discriminants. It should be NULL if value_type (VAL) is
8286 an outer-level type (i.e., as opposed to a branch of a variant.) A
8287 variant field (unless unchecked) is replaced by a particular branch
8290 If not KEEP_DYNAMIC_FIELDS, then all fields whose position or
8291 length are not statically known are discarded. As a consequence,
8292 VALADDR, ADDRESS and DVAL0 are ignored.
8294 NOTE: Limitations: For now, we assume that dynamic fields and
8295 variants occupy whole numbers of bytes. However, they need not be
8299 ada_template_to_fixed_record_type_1 (struct type *type,
8300 const gdb_byte *valaddr,
8301 CORE_ADDR address, struct value *dval0,
8302 int keep_dynamic_fields)
8304 struct value *mark = value_mark ();
8307 int nfields, bit_len;
8313 /* Compute the number of fields in this record type that are going
8314 to be processed: unless keep_dynamic_fields, this includes only
8315 fields whose position and length are static will be processed. */
8316 if (keep_dynamic_fields)
8317 nfields = TYPE_NFIELDS (type);
8321 while (nfields < TYPE_NFIELDS (type)
8322 && !ada_is_variant_part (type, nfields)
8323 && !is_dynamic_field (type, nfields))
8327 rtype = alloc_type_copy (type);
8328 TYPE_CODE (rtype) = TYPE_CODE_STRUCT;
8329 INIT_NONE_SPECIFIC (rtype);
8330 TYPE_NFIELDS (rtype) = nfields;
8331 TYPE_FIELDS (rtype) = (struct field *)
8332 TYPE_ALLOC (rtype, nfields * sizeof (struct field));
8333 memset (TYPE_FIELDS (rtype), 0, sizeof (struct field) * nfields);
8334 TYPE_NAME (rtype) = ada_type_name (type);
8335 TYPE_FIXED_INSTANCE (rtype) = 1;
8341 for (f = 0; f < nfields; f += 1)
8343 off = align_value (off, field_alignment (type, f))
8344 + TYPE_FIELD_BITPOS (type, f);
8345 SET_FIELD_BITPOS (TYPE_FIELD (rtype, f), off);
8346 TYPE_FIELD_BITSIZE (rtype, f) = 0;
8348 if (ada_is_variant_part (type, f))
8353 else if (is_dynamic_field (type, f))
8355 const gdb_byte *field_valaddr = valaddr;
8356 CORE_ADDR field_address = address;
8357 struct type *field_type =
8358 TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, f));
8362 /* rtype's length is computed based on the run-time
8363 value of discriminants. If the discriminants are not
8364 initialized, the type size may be completely bogus and
8365 GDB may fail to allocate a value for it. So check the
8366 size first before creating the value. */
8367 ada_ensure_varsize_limit (rtype);
8368 /* Using plain value_from_contents_and_address here
8369 causes problems because we will end up trying to
8370 resolve a type that is currently being
8372 dval = value_from_contents_and_address_unresolved (rtype,
8375 rtype = value_type (dval);
8380 /* If the type referenced by this field is an aligner type, we need
8381 to unwrap that aligner type, because its size might not be set.
8382 Keeping the aligner type would cause us to compute the wrong
8383 size for this field, impacting the offset of the all the fields
8384 that follow this one. */
8385 if (ada_is_aligner_type (field_type))
8387 long field_offset = TYPE_FIELD_BITPOS (field_type, f);
8389 field_valaddr = cond_offset_host (field_valaddr, field_offset);
8390 field_address = cond_offset_target (field_address, field_offset);
8391 field_type = ada_aligned_type (field_type);
8394 field_valaddr = cond_offset_host (field_valaddr,
8395 off / TARGET_CHAR_BIT);
8396 field_address = cond_offset_target (field_address,
8397 off / TARGET_CHAR_BIT);
8399 /* Get the fixed type of the field. Note that, in this case,
8400 we do not want to get the real type out of the tag: if
8401 the current field is the parent part of a tagged record,
8402 we will get the tag of the object. Clearly wrong: the real
8403 type of the parent is not the real type of the child. We
8404 would end up in an infinite loop. */
8405 field_type = ada_get_base_type (field_type);
8406 field_type = ada_to_fixed_type (field_type, field_valaddr,
8407 field_address, dval, 0);
8408 /* If the field size is already larger than the maximum
8409 object size, then the record itself will necessarily
8410 be larger than the maximum object size. We need to make
8411 this check now, because the size might be so ridiculously
8412 large (due to an uninitialized variable in the inferior)
8413 that it would cause an overflow when adding it to the
8415 ada_ensure_varsize_limit (field_type);
8417 TYPE_FIELD_TYPE (rtype, f) = field_type;
8418 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
8419 /* The multiplication can potentially overflow. But because
8420 the field length has been size-checked just above, and
8421 assuming that the maximum size is a reasonable value,
8422 an overflow should not happen in practice. So rather than
8423 adding overflow recovery code to this already complex code,
8424 we just assume that it's not going to happen. */
8426 TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, f)) * TARGET_CHAR_BIT;
8430 /* Note: If this field's type is a typedef, it is important
8431 to preserve the typedef layer.
8433 Otherwise, we might be transforming a typedef to a fat
8434 pointer (encoding a pointer to an unconstrained array),
8435 into a basic fat pointer (encoding an unconstrained
8436 array). As both types are implemented using the same
8437 structure, the typedef is the only clue which allows us
8438 to distinguish between the two options. Stripping it
8439 would prevent us from printing this field appropriately. */
8440 TYPE_FIELD_TYPE (rtype, f) = TYPE_FIELD_TYPE (type, f);
8441 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
8442 if (TYPE_FIELD_BITSIZE (type, f) > 0)
8444 TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f);
8447 struct type *field_type = TYPE_FIELD_TYPE (type, f);
8449 /* We need to be careful of typedefs when computing
8450 the length of our field. If this is a typedef,
8451 get the length of the target type, not the length
8453 if (TYPE_CODE (field_type) == TYPE_CODE_TYPEDEF)
8454 field_type = ada_typedef_target_type (field_type);
8457 TYPE_LENGTH (ada_check_typedef (field_type)) * TARGET_CHAR_BIT;
8460 if (off + fld_bit_len > bit_len)
8461 bit_len = off + fld_bit_len;
8463 TYPE_LENGTH (rtype) =
8464 align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
8467 /* We handle the variant part, if any, at the end because of certain
8468 odd cases in which it is re-ordered so as NOT to be the last field of
8469 the record. This can happen in the presence of representation
8471 if (variant_field >= 0)
8473 struct type *branch_type;
8475 off = TYPE_FIELD_BITPOS (rtype, variant_field);
8479 /* Using plain value_from_contents_and_address here causes
8480 problems because we will end up trying to resolve a type
8481 that is currently being constructed. */
8482 dval = value_from_contents_and_address_unresolved (rtype, valaddr,
8484 rtype = value_type (dval);
8490 to_fixed_variant_branch_type
8491 (TYPE_FIELD_TYPE (type, variant_field),
8492 cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
8493 cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
8494 if (branch_type == NULL)
8496 for (f = variant_field + 1; f < TYPE_NFIELDS (rtype); f += 1)
8497 TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f];
8498 TYPE_NFIELDS (rtype) -= 1;
8502 TYPE_FIELD_TYPE (rtype, variant_field) = branch_type;
8503 TYPE_FIELD_NAME (rtype, variant_field) = "S";
8505 TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, variant_field)) *
8507 if (off + fld_bit_len > bit_len)
8508 bit_len = off + fld_bit_len;
8509 TYPE_LENGTH (rtype) =
8510 align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
8514 /* According to exp_dbug.ads, the size of TYPE for variable-size records
8515 should contain the alignment of that record, which should be a strictly
8516 positive value. If null or negative, then something is wrong, most
8517 probably in the debug info. In that case, we don't round up the size
8518 of the resulting type. If this record is not part of another structure,
8519 the current RTYPE length might be good enough for our purposes. */
8520 if (TYPE_LENGTH (type) <= 0)
8522 if (TYPE_NAME (rtype))
8523 warning (_("Invalid type size for `%s' detected: %s."),
8524 TYPE_NAME (rtype), pulongest (TYPE_LENGTH (type)));
8526 warning (_("Invalid type size for <unnamed> detected: %s."),
8527 pulongest (TYPE_LENGTH (type)));
8531 TYPE_LENGTH (rtype) = align_value (TYPE_LENGTH (rtype),
8532 TYPE_LENGTH (type));
8535 value_free_to_mark (mark);
8536 if (TYPE_LENGTH (rtype) > varsize_limit)
8537 error (_("record type with dynamic size is larger than varsize-limit"));
8541 /* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS
8544 static struct type *
8545 template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr,
8546 CORE_ADDR address, struct value *dval0)
8548 return ada_template_to_fixed_record_type_1 (type, valaddr,
8552 /* An ordinary record type in which ___XVL-convention fields and
8553 ___XVU- and ___XVN-convention field types in TYPE0 are replaced with
8554 static approximations, containing all possible fields. Uses
8555 no runtime values. Useless for use in values, but that's OK,
8556 since the results are used only for type determinations. Works on both
8557 structs and unions. Representation note: to save space, we memorize
8558 the result of this function in the TYPE_TARGET_TYPE of the
8561 static struct type *
8562 template_to_static_fixed_type (struct type *type0)
8568 /* No need no do anything if the input type is already fixed. */
8569 if (TYPE_FIXED_INSTANCE (type0))
8572 /* Likewise if we already have computed the static approximation. */
8573 if (TYPE_TARGET_TYPE (type0) != NULL)
8574 return TYPE_TARGET_TYPE (type0);
8576 /* Don't clone TYPE0 until we are sure we are going to need a copy. */
8578 nfields = TYPE_NFIELDS (type0);
8580 /* Whether or not we cloned TYPE0, cache the result so that we don't do
8581 recompute all over next time. */
8582 TYPE_TARGET_TYPE (type0) = type;
8584 for (f = 0; f < nfields; f += 1)
8586 struct type *field_type = TYPE_FIELD_TYPE (type0, f);
8587 struct type *new_type;
8589 if (is_dynamic_field (type0, f))
8591 field_type = ada_check_typedef (field_type);
8592 new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type));
8595 new_type = static_unwrap_type (field_type);
8597 if (new_type != field_type)
8599 /* Clone TYPE0 only the first time we get a new field type. */
8602 TYPE_TARGET_TYPE (type0) = type = alloc_type_copy (type0);
8603 TYPE_CODE (type) = TYPE_CODE (type0);
8604 INIT_NONE_SPECIFIC (type);
8605 TYPE_NFIELDS (type) = nfields;
8606 TYPE_FIELDS (type) = (struct field *)
8607 TYPE_ALLOC (type, nfields * sizeof (struct field));
8608 memcpy (TYPE_FIELDS (type), TYPE_FIELDS (type0),
8609 sizeof (struct field) * nfields);
8610 TYPE_NAME (type) = ada_type_name (type0);
8611 TYPE_FIXED_INSTANCE (type) = 1;
8612 TYPE_LENGTH (type) = 0;
8614 TYPE_FIELD_TYPE (type, f) = new_type;
8615 TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f);
8622 /* Given an object of type TYPE whose contents are at VALADDR and
8623 whose address in memory is ADDRESS, returns a revision of TYPE,
8624 which should be a non-dynamic-sized record, in which the variant
8625 part, if any, is replaced with the appropriate branch. Looks
8626 for discriminant values in DVAL0, which can be NULL if the record
8627 contains the necessary discriminant values. */
8629 static struct type *
8630 to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr,
8631 CORE_ADDR address, struct value *dval0)
8633 struct value *mark = value_mark ();
8636 struct type *branch_type;
8637 int nfields = TYPE_NFIELDS (type);
8638 int variant_field = variant_field_index (type);
8640 if (variant_field == -1)
8645 dval = value_from_contents_and_address (type, valaddr, address);
8646 type = value_type (dval);
8651 rtype = alloc_type_copy (type);
8652 TYPE_CODE (rtype) = TYPE_CODE_STRUCT;
8653 INIT_NONE_SPECIFIC (rtype);
8654 TYPE_NFIELDS (rtype) = nfields;
8655 TYPE_FIELDS (rtype) =
8656 (struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field));
8657 memcpy (TYPE_FIELDS (rtype), TYPE_FIELDS (type),
8658 sizeof (struct field) * nfields);
8659 TYPE_NAME (rtype) = ada_type_name (type);
8660 TYPE_FIXED_INSTANCE (rtype) = 1;
8661 TYPE_LENGTH (rtype) = TYPE_LENGTH (type);
8663 branch_type = to_fixed_variant_branch_type
8664 (TYPE_FIELD_TYPE (type, variant_field),
8665 cond_offset_host (valaddr,
8666 TYPE_FIELD_BITPOS (type, variant_field)
8668 cond_offset_target (address,
8669 TYPE_FIELD_BITPOS (type, variant_field)
8670 / TARGET_CHAR_BIT), dval);
8671 if (branch_type == NULL)
8675 for (f = variant_field + 1; f < nfields; f += 1)
8676 TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f];
8677 TYPE_NFIELDS (rtype) -= 1;
8681 TYPE_FIELD_TYPE (rtype, variant_field) = branch_type;
8682 TYPE_FIELD_NAME (rtype, variant_field) = "S";
8683 TYPE_FIELD_BITSIZE (rtype, variant_field) = 0;
8684 TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type);
8686 TYPE_LENGTH (rtype) -= TYPE_LENGTH (TYPE_FIELD_TYPE (type, variant_field));
8688 value_free_to_mark (mark);
8692 /* An ordinary record type (with fixed-length fields) that describes
8693 the value at (TYPE0, VALADDR, ADDRESS) [see explanation at
8694 beginning of this section]. Any necessary discriminants' values
8695 should be in DVAL, a record value; it may be NULL if the object
8696 at ADDR itself contains any necessary discriminant values.
8697 Additionally, VALADDR and ADDRESS may also be NULL if no discriminant
8698 values from the record are needed. Except in the case that DVAL,
8699 VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless
8700 unchecked) is replaced by a particular branch of the variant.
8702 NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0
8703 is questionable and may be removed. It can arise during the
8704 processing of an unconstrained-array-of-record type where all the
8705 variant branches have exactly the same size. This is because in
8706 such cases, the compiler does not bother to use the XVS convention
8707 when encoding the record. I am currently dubious of this
8708 shortcut and suspect the compiler should be altered. FIXME. */
8710 static struct type *
8711 to_fixed_record_type (struct type *type0, const gdb_byte *valaddr,
8712 CORE_ADDR address, struct value *dval)
8714 struct type *templ_type;
8716 if (TYPE_FIXED_INSTANCE (type0))
8719 templ_type = dynamic_template_type (type0);
8721 if (templ_type != NULL)
8722 return template_to_fixed_record_type (templ_type, valaddr, address, dval);
8723 else if (variant_field_index (type0) >= 0)
8725 if (dval == NULL && valaddr == NULL && address == 0)
8727 return to_record_with_fixed_variant_part (type0, valaddr, address,
8732 TYPE_FIXED_INSTANCE (type0) = 1;
8738 /* An ordinary record type (with fixed-length fields) that describes
8739 the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a
8740 union type. Any necessary discriminants' values should be in DVAL,
8741 a record value. That is, this routine selects the appropriate
8742 branch of the union at ADDR according to the discriminant value
8743 indicated in the union's type name. Returns VAR_TYPE0 itself if
8744 it represents a variant subject to a pragma Unchecked_Union. */
8746 static struct type *
8747 to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr,
8748 CORE_ADDR address, struct value *dval)
8751 struct type *templ_type;
8752 struct type *var_type;
8754 if (TYPE_CODE (var_type0) == TYPE_CODE_PTR)
8755 var_type = TYPE_TARGET_TYPE (var_type0);
8757 var_type = var_type0;
8759 templ_type = ada_find_parallel_type (var_type, "___XVU");
8761 if (templ_type != NULL)
8762 var_type = templ_type;
8764 if (is_unchecked_variant (var_type, value_type (dval)))
8767 ada_which_variant_applies (var_type,
8768 value_type (dval), value_contents (dval));
8771 return empty_record (var_type);
8772 else if (is_dynamic_field (var_type, which))
8773 return to_fixed_record_type
8774 (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (var_type, which)),
8775 valaddr, address, dval);
8776 else if (variant_field_index (TYPE_FIELD_TYPE (var_type, which)) >= 0)
8778 to_fixed_record_type
8779 (TYPE_FIELD_TYPE (var_type, which), valaddr, address, dval);
8781 return TYPE_FIELD_TYPE (var_type, which);
8784 /* Assuming RANGE_TYPE is a TYPE_CODE_RANGE, return nonzero if
8785 ENCODING_TYPE, a type following the GNAT conventions for discrete
8786 type encodings, only carries redundant information. */
8789 ada_is_redundant_range_encoding (struct type *range_type,
8790 struct type *encoding_type)
8792 const char *bounds_str;
8796 gdb_assert (TYPE_CODE (range_type) == TYPE_CODE_RANGE);
8798 if (TYPE_CODE (get_base_type (range_type))
8799 != TYPE_CODE (get_base_type (encoding_type)))
8801 /* The compiler probably used a simple base type to describe
8802 the range type instead of the range's actual base type,
8803 expecting us to get the real base type from the encoding
8804 anyway. In this situation, the encoding cannot be ignored
8809 if (is_dynamic_type (range_type))
8812 if (TYPE_NAME (encoding_type) == NULL)
8815 bounds_str = strstr (TYPE_NAME (encoding_type), "___XDLU_");
8816 if (bounds_str == NULL)
8819 n = 8; /* Skip "___XDLU_". */
8820 if (!ada_scan_number (bounds_str, n, &lo, &n))
8822 if (TYPE_LOW_BOUND (range_type) != lo)
8825 n += 2; /* Skip the "__" separator between the two bounds. */
8826 if (!ada_scan_number (bounds_str, n, &hi, &n))
8828 if (TYPE_HIGH_BOUND (range_type) != hi)
8834 /* Given the array type ARRAY_TYPE, return nonzero if DESC_TYPE,
8835 a type following the GNAT encoding for describing array type
8836 indices, only carries redundant information. */
8839 ada_is_redundant_index_type_desc (struct type *array_type,
8840 struct type *desc_type)
8842 struct type *this_layer = check_typedef (array_type);
8845 for (i = 0; i < TYPE_NFIELDS (desc_type); i++)
8847 if (!ada_is_redundant_range_encoding (TYPE_INDEX_TYPE (this_layer),
8848 TYPE_FIELD_TYPE (desc_type, i)))
8850 this_layer = check_typedef (TYPE_TARGET_TYPE (this_layer));
8856 /* Assuming that TYPE0 is an array type describing the type of a value
8857 at ADDR, and that DVAL describes a record containing any
8858 discriminants used in TYPE0, returns a type for the value that
8859 contains no dynamic components (that is, no components whose sizes
8860 are determined by run-time quantities). Unless IGNORE_TOO_BIG is
8861 true, gives an error message if the resulting type's size is over
8864 static struct type *
8865 to_fixed_array_type (struct type *type0, struct value *dval,
8868 struct type *index_type_desc;
8869 struct type *result;
8870 int constrained_packed_array_p;
8871 static const char *xa_suffix = "___XA";
8873 type0 = ada_check_typedef (type0);
8874 if (TYPE_FIXED_INSTANCE (type0))
8877 constrained_packed_array_p = ada_is_constrained_packed_array_type (type0);
8878 if (constrained_packed_array_p)
8879 type0 = decode_constrained_packed_array_type (type0);
8881 index_type_desc = ada_find_parallel_type (type0, xa_suffix);
8883 /* As mentioned in exp_dbug.ads, for non bit-packed arrays an
8884 encoding suffixed with 'P' may still be generated. If so,
8885 it should be used to find the XA type. */
8887 if (index_type_desc == NULL)
8889 const char *type_name = ada_type_name (type0);
8891 if (type_name != NULL)
8893 const int len = strlen (type_name);
8894 char *name = (char *) alloca (len + strlen (xa_suffix));
8896 if (type_name[len - 1] == 'P')
8898 strcpy (name, type_name);
8899 strcpy (name + len - 1, xa_suffix);
8900 index_type_desc = ada_find_parallel_type_with_name (type0, name);
8905 ada_fixup_array_indexes_type (index_type_desc);
8906 if (index_type_desc != NULL
8907 && ada_is_redundant_index_type_desc (type0, index_type_desc))
8909 /* Ignore this ___XA parallel type, as it does not bring any
8910 useful information. This allows us to avoid creating fixed
8911 versions of the array's index types, which would be identical
8912 to the original ones. This, in turn, can also help avoid
8913 the creation of fixed versions of the array itself. */
8914 index_type_desc = NULL;
8917 if (index_type_desc == NULL)
8919 struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0));
8921 /* NOTE: elt_type---the fixed version of elt_type0---should never
8922 depend on the contents of the array in properly constructed
8924 /* Create a fixed version of the array element type.
8925 We're not providing the address of an element here,
8926 and thus the actual object value cannot be inspected to do
8927 the conversion. This should not be a problem, since arrays of
8928 unconstrained objects are not allowed. In particular, all
8929 the elements of an array of a tagged type should all be of
8930 the same type specified in the debugging info. No need to
8931 consult the object tag. */
8932 struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval, 1);
8934 /* Make sure we always create a new array type when dealing with
8935 packed array types, since we're going to fix-up the array
8936 type length and element bitsize a little further down. */
8937 if (elt_type0 == elt_type && !constrained_packed_array_p)
8940 result = create_array_type (alloc_type_copy (type0),
8941 elt_type, TYPE_INDEX_TYPE (type0));
8946 struct type *elt_type0;
8949 for (i = TYPE_NFIELDS (index_type_desc); i > 0; i -= 1)
8950 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
8952 /* NOTE: result---the fixed version of elt_type0---should never
8953 depend on the contents of the array in properly constructed
8955 /* Create a fixed version of the array element type.
8956 We're not providing the address of an element here,
8957 and thus the actual object value cannot be inspected to do
8958 the conversion. This should not be a problem, since arrays of
8959 unconstrained objects are not allowed. In particular, all
8960 the elements of an array of a tagged type should all be of
8961 the same type specified in the debugging info. No need to
8962 consult the object tag. */
8964 ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval, 1);
8967 for (i = TYPE_NFIELDS (index_type_desc) - 1; i >= 0; i -= 1)
8969 struct type *range_type =
8970 to_fixed_range_type (TYPE_FIELD_TYPE (index_type_desc, i), dval);
8972 result = create_array_type (alloc_type_copy (elt_type0),
8973 result, range_type);
8974 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
8976 if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit)
8977 error (_("array type with dynamic size is larger than varsize-limit"));
8980 /* We want to preserve the type name. This can be useful when
8981 trying to get the type name of a value that has already been
8982 printed (for instance, if the user did "print VAR; whatis $". */
8983 TYPE_NAME (result) = TYPE_NAME (type0);
8985 if (constrained_packed_array_p)
8987 /* So far, the resulting type has been created as if the original
8988 type was a regular (non-packed) array type. As a result, the
8989 bitsize of the array elements needs to be set again, and the array
8990 length needs to be recomputed based on that bitsize. */
8991 int len = TYPE_LENGTH (result) / TYPE_LENGTH (TYPE_TARGET_TYPE (result));
8992 int elt_bitsize = TYPE_FIELD_BITSIZE (type0, 0);
8994 TYPE_FIELD_BITSIZE (result, 0) = TYPE_FIELD_BITSIZE (type0, 0);
8995 TYPE_LENGTH (result) = len * elt_bitsize / HOST_CHAR_BIT;
8996 if (TYPE_LENGTH (result) * HOST_CHAR_BIT < len * elt_bitsize)
8997 TYPE_LENGTH (result)++;
9000 TYPE_FIXED_INSTANCE (result) = 1;
9005 /* A standard type (containing no dynamically sized components)
9006 corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS)
9007 DVAL describes a record containing any discriminants used in TYPE0,
9008 and may be NULL if there are none, or if the object of type TYPE at
9009 ADDRESS or in VALADDR contains these discriminants.
9011 If CHECK_TAG is not null, in the case of tagged types, this function
9012 attempts to locate the object's tag and use it to compute the actual
9013 type. However, when ADDRESS is null, we cannot use it to determine the
9014 location of the tag, and therefore compute the tagged type's actual type.
9015 So we return the tagged type without consulting the tag. */
9017 static struct type *
9018 ada_to_fixed_type_1 (struct type *type, const gdb_byte *valaddr,
9019 CORE_ADDR address, struct value *dval, int check_tag)
9021 type = ada_check_typedef (type);
9023 /* Only un-fixed types need to be handled here. */
9024 if (!HAVE_GNAT_AUX_INFO (type))
9027 switch (TYPE_CODE (type))
9031 case TYPE_CODE_STRUCT:
9033 struct type *static_type = to_static_fixed_type (type);
9034 struct type *fixed_record_type =
9035 to_fixed_record_type (type, valaddr, address, NULL);
9037 /* If STATIC_TYPE is a tagged type and we know the object's address,
9038 then we can determine its tag, and compute the object's actual
9039 type from there. Note that we have to use the fixed record
9040 type (the parent part of the record may have dynamic fields
9041 and the way the location of _tag is expressed may depend on
9044 if (check_tag && address != 0 && ada_is_tagged_type (static_type, 0))
9047 value_tag_from_contents_and_address
9051 struct type *real_type = type_from_tag (tag);
9053 value_from_contents_and_address (fixed_record_type,
9056 fixed_record_type = value_type (obj);
9057 if (real_type != NULL)
9058 return to_fixed_record_type
9060 value_address (ada_tag_value_at_base_address (obj)), NULL);
9063 /* Check to see if there is a parallel ___XVZ variable.
9064 If there is, then it provides the actual size of our type. */
9065 else if (ada_type_name (fixed_record_type) != NULL)
9067 const char *name = ada_type_name (fixed_record_type);
9069 = (char *) alloca (strlen (name) + 7 /* "___XVZ\0" */);
9070 bool xvz_found = false;
9073 xsnprintf (xvz_name, strlen (name) + 7, "%s___XVZ", name);
9076 xvz_found = get_int_var_value (xvz_name, size);
9078 catch (const gdb_exception_error &except)
9080 /* We found the variable, but somehow failed to read
9081 its value. Rethrow the same error, but with a little
9082 bit more information, to help the user understand
9083 what went wrong (Eg: the variable might have been
9085 throw_error (except.error,
9086 _("unable to read value of %s (%s)"),
9087 xvz_name, except.what ());
9090 if (xvz_found && TYPE_LENGTH (fixed_record_type) != size)
9092 fixed_record_type = copy_type (fixed_record_type);
9093 TYPE_LENGTH (fixed_record_type) = size;
9095 /* The FIXED_RECORD_TYPE may have be a stub. We have
9096 observed this when the debugging info is STABS, and
9097 apparently it is something that is hard to fix.
9099 In practice, we don't need the actual type definition
9100 at all, because the presence of the XVZ variable allows us
9101 to assume that there must be a XVS type as well, which we
9102 should be able to use later, when we need the actual type
9105 In the meantime, pretend that the "fixed" type we are
9106 returning is NOT a stub, because this can cause trouble
9107 when using this type to create new types targeting it.
9108 Indeed, the associated creation routines often check
9109 whether the target type is a stub and will try to replace
9110 it, thus using a type with the wrong size. This, in turn,
9111 might cause the new type to have the wrong size too.
9112 Consider the case of an array, for instance, where the size
9113 of the array is computed from the number of elements in
9114 our array multiplied by the size of its element. */
9115 TYPE_STUB (fixed_record_type) = 0;
9118 return fixed_record_type;
9120 case TYPE_CODE_ARRAY:
9121 return to_fixed_array_type (type, dval, 1);
9122 case TYPE_CODE_UNION:
9126 return to_fixed_variant_branch_type (type, valaddr, address, dval);
9130 /* The same as ada_to_fixed_type_1, except that it preserves the type
9131 if it is a TYPE_CODE_TYPEDEF of a type that is already fixed.
9133 The typedef layer needs be preserved in order to differentiate between
9134 arrays and array pointers when both types are implemented using the same
9135 fat pointer. In the array pointer case, the pointer is encoded as
9136 a typedef of the pointer type. For instance, considering:
9138 type String_Access is access String;
9139 S1 : String_Access := null;
9141 To the debugger, S1 is defined as a typedef of type String. But
9142 to the user, it is a pointer. So if the user tries to print S1,
9143 we should not dereference the array, but print the array address
9146 If we didn't preserve the typedef layer, we would lose the fact that
9147 the type is to be presented as a pointer (needs de-reference before
9148 being printed). And we would also use the source-level type name. */
9151 ada_to_fixed_type (struct type *type, const gdb_byte *valaddr,
9152 CORE_ADDR address, struct value *dval, int check_tag)
9155 struct type *fixed_type =
9156 ada_to_fixed_type_1 (type, valaddr, address, dval, check_tag);
9158 /* If TYPE is a typedef and its target type is the same as the FIXED_TYPE,
9159 then preserve the typedef layer.
9161 Implementation note: We can only check the main-type portion of
9162 the TYPE and FIXED_TYPE, because eliminating the typedef layer
9163 from TYPE now returns a type that has the same instance flags
9164 as TYPE. For instance, if TYPE is a "typedef const", and its
9165 target type is a "struct", then the typedef elimination will return
9166 a "const" version of the target type. See check_typedef for more
9167 details about how the typedef layer elimination is done.
9169 brobecker/2010-11-19: It seems to me that the only case where it is
9170 useful to preserve the typedef layer is when dealing with fat pointers.
9171 Perhaps, we could add a check for that and preserve the typedef layer
9172 only in that situation. But this seems unecessary so far, probably
9173 because we call check_typedef/ada_check_typedef pretty much everywhere.
9175 if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF
9176 && (TYPE_MAIN_TYPE (ada_typedef_target_type (type))
9177 == TYPE_MAIN_TYPE (fixed_type)))
9183 /* A standard (static-sized) type corresponding as well as possible to
9184 TYPE0, but based on no runtime data. */
9186 static struct type *
9187 to_static_fixed_type (struct type *type0)
9194 if (TYPE_FIXED_INSTANCE (type0))
9197 type0 = ada_check_typedef (type0);
9199 switch (TYPE_CODE (type0))
9203 case TYPE_CODE_STRUCT:
9204 type = dynamic_template_type (type0);
9206 return template_to_static_fixed_type (type);
9208 return template_to_static_fixed_type (type0);
9209 case TYPE_CODE_UNION:
9210 type = ada_find_parallel_type (type0, "___XVU");
9212 return template_to_static_fixed_type (type);
9214 return template_to_static_fixed_type (type0);
9218 /* A static approximation of TYPE with all type wrappers removed. */
9220 static struct type *
9221 static_unwrap_type (struct type *type)
9223 if (ada_is_aligner_type (type))
9225 struct type *type1 = TYPE_FIELD_TYPE (ada_check_typedef (type), 0);
9226 if (ada_type_name (type1) == NULL)
9227 TYPE_NAME (type1) = ada_type_name (type);
9229 return static_unwrap_type (type1);
9233 struct type *raw_real_type = ada_get_base_type (type);
9235 if (raw_real_type == type)
9238 return to_static_fixed_type (raw_real_type);
9242 /* In some cases, incomplete and private types require
9243 cross-references that are not resolved as records (for example,
9245 type FooP is access Foo;
9247 type Foo is array ...;
9248 ). In these cases, since there is no mechanism for producing
9249 cross-references to such types, we instead substitute for FooP a
9250 stub enumeration type that is nowhere resolved, and whose tag is
9251 the name of the actual type. Call these types "non-record stubs". */
9253 /* A type equivalent to TYPE that is not a non-record stub, if one
9254 exists, otherwise TYPE. */
9257 ada_check_typedef (struct type *type)
9262 /* If our type is an access to an unconstrained array, which is encoded
9263 as a TYPE_CODE_TYPEDEF of a fat pointer, then we're done.
9264 We don't want to strip the TYPE_CODE_TYPDEF layer, because this is
9265 what allows us to distinguish between fat pointers that represent
9266 array types, and fat pointers that represent array access types
9267 (in both cases, the compiler implements them as fat pointers). */
9268 if (ada_is_access_to_unconstrained_array (type))
9271 type = check_typedef (type);
9272 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM
9273 || !TYPE_STUB (type)
9274 || TYPE_NAME (type) == NULL)
9278 const char *name = TYPE_NAME (type);
9279 struct type *type1 = ada_find_any_type (name);
9284 /* TYPE1 might itself be a TYPE_CODE_TYPEDEF (this can happen with
9285 stubs pointing to arrays, as we don't create symbols for array
9286 types, only for the typedef-to-array types). If that's the case,
9287 strip the typedef layer. */
9288 if (TYPE_CODE (type1) == TYPE_CODE_TYPEDEF)
9289 type1 = ada_check_typedef (type1);
9295 /* A value representing the data at VALADDR/ADDRESS as described by
9296 type TYPE0, but with a standard (static-sized) type that correctly
9297 describes it. If VAL0 is not NULL and TYPE0 already is a standard
9298 type, then return VAL0 [this feature is simply to avoid redundant
9299 creation of struct values]. */
9301 static struct value *
9302 ada_to_fixed_value_create (struct type *type0, CORE_ADDR address,
9305 struct type *type = ada_to_fixed_type (type0, 0, address, NULL, 1);
9307 if (type == type0 && val0 != NULL)
9310 if (VALUE_LVAL (val0) != lval_memory)
9312 /* Our value does not live in memory; it could be a convenience
9313 variable, for instance. Create a not_lval value using val0's
9315 return value_from_contents (type, value_contents (val0));
9318 return value_from_contents_and_address (type, 0, address);
9321 /* A value representing VAL, but with a standard (static-sized) type
9322 that correctly describes it. Does not necessarily create a new
9326 ada_to_fixed_value (struct value *val)
9328 val = unwrap_value (val);
9329 val = ada_to_fixed_value_create (value_type (val), value_address (val), val);
9336 /* Table mapping attribute numbers to names.
9337 NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */
9339 static const char *attribute_names[] = {
9357 ada_attribute_name (enum exp_opcode n)
9359 if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL)
9360 return attribute_names[n - OP_ATR_FIRST + 1];
9362 return attribute_names[0];
9365 /* Evaluate the 'POS attribute applied to ARG. */
9368 pos_atr (struct value *arg)
9370 struct value *val = coerce_ref (arg);
9371 struct type *type = value_type (val);
9374 if (!discrete_type_p (type))
9375 error (_("'POS only defined on discrete types"));
9377 if (!discrete_position (type, value_as_long (val), &result))
9378 error (_("enumeration value is invalid: can't find 'POS"));
9383 static struct value *
9384 value_pos_atr (struct type *type, struct value *arg)
9386 return value_from_longest (type, pos_atr (arg));
9389 /* Evaluate the TYPE'VAL attribute applied to ARG. */
9391 static struct value *
9392 value_val_atr (struct type *type, struct value *arg)
9394 if (!discrete_type_p (type))
9395 error (_("'VAL only defined on discrete types"));
9396 if (!integer_type_p (value_type (arg)))
9397 error (_("'VAL requires integral argument"));
9399 if (TYPE_CODE (type) == TYPE_CODE_ENUM)
9401 long pos = value_as_long (arg);
9403 if (pos < 0 || pos >= TYPE_NFIELDS (type))
9404 error (_("argument to 'VAL out of range"));
9405 return value_from_longest (type, TYPE_FIELD_ENUMVAL (type, pos));
9408 return value_from_longest (type, value_as_long (arg));
9414 /* True if TYPE appears to be an Ada character type.
9415 [At the moment, this is true only for Character and Wide_Character;
9416 It is a heuristic test that could stand improvement]. */
9419 ada_is_character_type (struct type *type)
9423 /* If the type code says it's a character, then assume it really is,
9424 and don't check any further. */
9425 if (TYPE_CODE (type) == TYPE_CODE_CHAR)
9428 /* Otherwise, assume it's a character type iff it is a discrete type
9429 with a known character type name. */
9430 name = ada_type_name (type);
9431 return (name != NULL
9432 && (TYPE_CODE (type) == TYPE_CODE_INT
9433 || TYPE_CODE (type) == TYPE_CODE_RANGE)
9434 && (strcmp (name, "character") == 0
9435 || strcmp (name, "wide_character") == 0
9436 || strcmp (name, "wide_wide_character") == 0
9437 || strcmp (name, "unsigned char") == 0));
9440 /* True if TYPE appears to be an Ada string type. */
9443 ada_is_string_type (struct type *type)
9445 type = ada_check_typedef (type);
9447 && TYPE_CODE (type) != TYPE_CODE_PTR
9448 && (ada_is_simple_array_type (type)
9449 || ada_is_array_descriptor_type (type))
9450 && ada_array_arity (type) == 1)
9452 struct type *elttype = ada_array_element_type (type, 1);
9454 return ada_is_character_type (elttype);
9460 /* The compiler sometimes provides a parallel XVS type for a given
9461 PAD type. Normally, it is safe to follow the PAD type directly,
9462 but older versions of the compiler have a bug that causes the offset
9463 of its "F" field to be wrong. Following that field in that case
9464 would lead to incorrect results, but this can be worked around
9465 by ignoring the PAD type and using the associated XVS type instead.
9467 Set to True if the debugger should trust the contents of PAD types.
9468 Otherwise, ignore the PAD type if there is a parallel XVS type. */
9469 static int trust_pad_over_xvs = 1;
9471 /* True if TYPE is a struct type introduced by the compiler to force the
9472 alignment of a value. Such types have a single field with a
9473 distinctive name. */
9476 ada_is_aligner_type (struct type *type)
9478 type = ada_check_typedef (type);
9480 if (!trust_pad_over_xvs && ada_find_parallel_type (type, "___XVS") != NULL)
9483 return (TYPE_CODE (type) == TYPE_CODE_STRUCT
9484 && TYPE_NFIELDS (type) == 1
9485 && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0);
9488 /* If there is an ___XVS-convention type parallel to SUBTYPE, return
9489 the parallel type. */
9492 ada_get_base_type (struct type *raw_type)
9494 struct type *real_type_namer;
9495 struct type *raw_real_type;
9497 if (raw_type == NULL || TYPE_CODE (raw_type) != TYPE_CODE_STRUCT)
9500 if (ada_is_aligner_type (raw_type))
9501 /* The encoding specifies that we should always use the aligner type.
9502 So, even if this aligner type has an associated XVS type, we should
9505 According to the compiler gurus, an XVS type parallel to an aligner
9506 type may exist because of a stabs limitation. In stabs, aligner
9507 types are empty because the field has a variable-sized type, and
9508 thus cannot actually be used as an aligner type. As a result,
9509 we need the associated parallel XVS type to decode the type.
9510 Since the policy in the compiler is to not change the internal
9511 representation based on the debugging info format, we sometimes
9512 end up having a redundant XVS type parallel to the aligner type. */
9515 real_type_namer = ada_find_parallel_type (raw_type, "___XVS");
9516 if (real_type_namer == NULL
9517 || TYPE_CODE (real_type_namer) != TYPE_CODE_STRUCT
9518 || TYPE_NFIELDS (real_type_namer) != 1)
9521 if (TYPE_CODE (TYPE_FIELD_TYPE (real_type_namer, 0)) != TYPE_CODE_REF)
9523 /* This is an older encoding form where the base type needs to be
9524 looked up by name. We prefer the newer enconding because it is
9526 raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0));
9527 if (raw_real_type == NULL)
9530 return raw_real_type;
9533 /* The field in our XVS type is a reference to the base type. */
9534 return TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (real_type_namer, 0));
9537 /* The type of value designated by TYPE, with all aligners removed. */
9540 ada_aligned_type (struct type *type)
9542 if (ada_is_aligner_type (type))
9543 return ada_aligned_type (TYPE_FIELD_TYPE (type, 0));
9545 return ada_get_base_type (type);
9549 /* The address of the aligned value in an object at address VALADDR
9550 having type TYPE. Assumes ada_is_aligner_type (TYPE). */
9553 ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr)
9555 if (ada_is_aligner_type (type))
9556 return ada_aligned_value_addr (TYPE_FIELD_TYPE (type, 0),
9558 TYPE_FIELD_BITPOS (type,
9559 0) / TARGET_CHAR_BIT);
9566 /* The printed representation of an enumeration literal with encoded
9567 name NAME. The value is good to the next call of ada_enum_name. */
9569 ada_enum_name (const char *name)
9571 static char *result;
9572 static size_t result_len = 0;
9575 /* First, unqualify the enumeration name:
9576 1. Search for the last '.' character. If we find one, then skip
9577 all the preceding characters, the unqualified name starts
9578 right after that dot.
9579 2. Otherwise, we may be debugging on a target where the compiler
9580 translates dots into "__". Search forward for double underscores,
9581 but stop searching when we hit an overloading suffix, which is
9582 of the form "__" followed by digits. */
9584 tmp = strrchr (name, '.');
9589 while ((tmp = strstr (name, "__")) != NULL)
9591 if (isdigit (tmp[2]))
9602 if (name[1] == 'U' || name[1] == 'W')
9604 if (sscanf (name + 2, "%x", &v) != 1)
9610 GROW_VECT (result, result_len, 16);
9611 if (isascii (v) && isprint (v))
9612 xsnprintf (result, result_len, "'%c'", v);
9613 else if (name[1] == 'U')
9614 xsnprintf (result, result_len, "[\"%02x\"]", v);
9616 xsnprintf (result, result_len, "[\"%04x\"]", v);
9622 tmp = strstr (name, "__");
9624 tmp = strstr (name, "$");
9627 GROW_VECT (result, result_len, tmp - name + 1);
9628 strncpy (result, name, tmp - name);
9629 result[tmp - name] = '\0';
9637 /* Evaluate the subexpression of EXP starting at *POS as for
9638 evaluate_type, updating *POS to point just past the evaluated
9641 static struct value *
9642 evaluate_subexp_type (struct expression *exp, int *pos)
9644 return evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
9647 /* If VAL is wrapped in an aligner or subtype wrapper, return the
9650 static struct value *
9651 unwrap_value (struct value *val)
9653 struct type *type = ada_check_typedef (value_type (val));
9655 if (ada_is_aligner_type (type))
9657 struct value *v = ada_value_struct_elt (val, "F", 0);
9658 struct type *val_type = ada_check_typedef (value_type (v));
9660 if (ada_type_name (val_type) == NULL)
9661 TYPE_NAME (val_type) = ada_type_name (type);
9663 return unwrap_value (v);
9667 struct type *raw_real_type =
9668 ada_check_typedef (ada_get_base_type (type));
9670 /* If there is no parallel XVS or XVE type, then the value is
9671 already unwrapped. Return it without further modification. */
9672 if ((type == raw_real_type)
9673 && ada_find_parallel_type (type, "___XVE") == NULL)
9677 coerce_unspec_val_to_type
9678 (val, ada_to_fixed_type (raw_real_type, 0,
9679 value_address (val),
9684 static struct value *
9685 cast_from_fixed (struct type *type, struct value *arg)
9687 struct value *scale = ada_scaling_factor (value_type (arg));
9688 arg = value_cast (value_type (scale), arg);
9690 arg = value_binop (arg, scale, BINOP_MUL);
9691 return value_cast (type, arg);
9694 static struct value *
9695 cast_to_fixed (struct type *type, struct value *arg)
9697 if (type == value_type (arg))
9700 struct value *scale = ada_scaling_factor (type);
9701 if (ada_is_fixed_point_type (value_type (arg)))
9702 arg = cast_from_fixed (value_type (scale), arg);
9704 arg = value_cast (value_type (scale), arg);
9706 arg = value_binop (arg, scale, BINOP_DIV);
9707 return value_cast (type, arg);
9710 /* Given two array types T1 and T2, return nonzero iff both arrays
9711 contain the same number of elements. */
9714 ada_same_array_size_p (struct type *t1, struct type *t2)
9716 LONGEST lo1, hi1, lo2, hi2;
9718 /* Get the array bounds in order to verify that the size of
9719 the two arrays match. */
9720 if (!get_array_bounds (t1, &lo1, &hi1)
9721 || !get_array_bounds (t2, &lo2, &hi2))
9722 error (_("unable to determine array bounds"));
9724 /* To make things easier for size comparison, normalize a bit
9725 the case of empty arrays by making sure that the difference
9726 between upper bound and lower bound is always -1. */
9732 return (hi1 - lo1 == hi2 - lo2);
9735 /* Assuming that VAL is an array of integrals, and TYPE represents
9736 an array with the same number of elements, but with wider integral
9737 elements, return an array "casted" to TYPE. In practice, this
9738 means that the returned array is built by casting each element
9739 of the original array into TYPE's (wider) element type. */
9741 static struct value *
9742 ada_promote_array_of_integrals (struct type *type, struct value *val)
9744 struct type *elt_type = TYPE_TARGET_TYPE (type);
9749 /* Verify that both val and type are arrays of scalars, and
9750 that the size of val's elements is smaller than the size
9751 of type's element. */
9752 gdb_assert (TYPE_CODE (type) == TYPE_CODE_ARRAY);
9753 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (type)));
9754 gdb_assert (TYPE_CODE (value_type (val)) == TYPE_CODE_ARRAY);
9755 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (value_type (val))));
9756 gdb_assert (TYPE_LENGTH (TYPE_TARGET_TYPE (type))
9757 > TYPE_LENGTH (TYPE_TARGET_TYPE (value_type (val))));
9759 if (!get_array_bounds (type, &lo, &hi))
9760 error (_("unable to determine array bounds"));
9762 res = allocate_value (type);
9764 /* Promote each array element. */
9765 for (i = 0; i < hi - lo + 1; i++)
9767 struct value *elt = value_cast (elt_type, value_subscript (val, lo + i));
9769 memcpy (value_contents_writeable (res) + (i * TYPE_LENGTH (elt_type)),
9770 value_contents_all (elt), TYPE_LENGTH (elt_type));
9776 /* Coerce VAL as necessary for assignment to an lval of type TYPE, and
9777 return the converted value. */
9779 static struct value *
9780 coerce_for_assign (struct type *type, struct value *val)
9782 struct type *type2 = value_type (val);
9787 type2 = ada_check_typedef (type2);
9788 type = ada_check_typedef (type);
9790 if (TYPE_CODE (type2) == TYPE_CODE_PTR
9791 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
9793 val = ada_value_ind (val);
9794 type2 = value_type (val);
9797 if (TYPE_CODE (type2) == TYPE_CODE_ARRAY
9798 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
9800 if (!ada_same_array_size_p (type, type2))
9801 error (_("cannot assign arrays of different length"));
9803 if (is_integral_type (TYPE_TARGET_TYPE (type))
9804 && is_integral_type (TYPE_TARGET_TYPE (type2))
9805 && TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9806 < TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9808 /* Allow implicit promotion of the array elements to
9810 return ada_promote_array_of_integrals (type, val);
9813 if (TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9814 != TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9815 error (_("Incompatible types in assignment"));
9816 deprecated_set_value_type (val, type);
9821 static struct value *
9822 ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
9825 struct type *type1, *type2;
9828 arg1 = coerce_ref (arg1);
9829 arg2 = coerce_ref (arg2);
9830 type1 = get_base_type (ada_check_typedef (value_type (arg1)));
9831 type2 = get_base_type (ada_check_typedef (value_type (arg2)));
9833 if (TYPE_CODE (type1) != TYPE_CODE_INT
9834 || TYPE_CODE (type2) != TYPE_CODE_INT)
9835 return value_binop (arg1, arg2, op);
9844 return value_binop (arg1, arg2, op);
9847 v2 = value_as_long (arg2);
9849 error (_("second operand of %s must not be zero."), op_string (op));
9851 if (TYPE_UNSIGNED (type1) || op == BINOP_MOD)
9852 return value_binop (arg1, arg2, op);
9854 v1 = value_as_long (arg1);
9859 if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0)
9860 v += v > 0 ? -1 : 1;
9868 /* Should not reach this point. */
9872 val = allocate_value (type1);
9873 store_unsigned_integer (value_contents_raw (val),
9874 TYPE_LENGTH (value_type (val)),
9875 gdbarch_byte_order (get_type_arch (type1)), v);
9880 ada_value_equal (struct value *arg1, struct value *arg2)
9882 if (ada_is_direct_array_type (value_type (arg1))
9883 || ada_is_direct_array_type (value_type (arg2)))
9885 struct type *arg1_type, *arg2_type;
9887 /* Automatically dereference any array reference before
9888 we attempt to perform the comparison. */
9889 arg1 = ada_coerce_ref (arg1);
9890 arg2 = ada_coerce_ref (arg2);
9892 arg1 = ada_coerce_to_simple_array (arg1);
9893 arg2 = ada_coerce_to_simple_array (arg2);
9895 arg1_type = ada_check_typedef (value_type (arg1));
9896 arg2_type = ada_check_typedef (value_type (arg2));
9898 if (TYPE_CODE (arg1_type) != TYPE_CODE_ARRAY
9899 || TYPE_CODE (arg2_type) != TYPE_CODE_ARRAY)
9900 error (_("Attempt to compare array with non-array"));
9901 /* FIXME: The following works only for types whose
9902 representations use all bits (no padding or undefined bits)
9903 and do not have user-defined equality. */
9904 return (TYPE_LENGTH (arg1_type) == TYPE_LENGTH (arg2_type)
9905 && memcmp (value_contents (arg1), value_contents (arg2),
9906 TYPE_LENGTH (arg1_type)) == 0);
9908 return value_equal (arg1, arg2);
9911 /* Total number of component associations in the aggregate starting at
9912 index PC in EXP. Assumes that index PC is the start of an
9916 num_component_specs (struct expression *exp, int pc)
9920 m = exp->elts[pc + 1].longconst;
9923 for (i = 0; i < m; i += 1)
9925 switch (exp->elts[pc].opcode)
9931 n += exp->elts[pc + 1].longconst;
9934 ada_evaluate_subexp (NULL, exp, &pc, EVAL_SKIP);
9939 /* Assign the result of evaluating EXP starting at *POS to the INDEXth
9940 component of LHS (a simple array or a record), updating *POS past
9941 the expression, assuming that LHS is contained in CONTAINER. Does
9942 not modify the inferior's memory, nor does it modify LHS (unless
9943 LHS == CONTAINER). */
9946 assign_component (struct value *container, struct value *lhs, LONGEST index,
9947 struct expression *exp, int *pos)
9949 struct value *mark = value_mark ();
9951 struct type *lhs_type = check_typedef (value_type (lhs));
9953 if (TYPE_CODE (lhs_type) == TYPE_CODE_ARRAY)
9955 struct type *index_type = builtin_type (exp->gdbarch)->builtin_int;
9956 struct value *index_val = value_from_longest (index_type, index);
9958 elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val));
9962 elt = ada_index_struct_field (index, lhs, 0, value_type (lhs));
9963 elt = ada_to_fixed_value (elt);
9966 if (exp->elts[*pos].opcode == OP_AGGREGATE)
9967 assign_aggregate (container, elt, exp, pos, EVAL_NORMAL);
9969 value_assign_to_component (container, elt,
9970 ada_evaluate_subexp (NULL, exp, pos,
9973 value_free_to_mark (mark);
9976 /* Assuming that LHS represents an lvalue having a record or array
9977 type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment
9978 of that aggregate's value to LHS, advancing *POS past the
9979 aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an
9980 lvalue containing LHS (possibly LHS itself). Does not modify
9981 the inferior's memory, nor does it modify the contents of
9982 LHS (unless == CONTAINER). Returns the modified CONTAINER. */
9984 static struct value *
9985 assign_aggregate (struct value *container,
9986 struct value *lhs, struct expression *exp,
9987 int *pos, enum noside noside)
9989 struct type *lhs_type;
9990 int n = exp->elts[*pos+1].longconst;
9991 LONGEST low_index, high_index;
9994 int max_indices, num_indices;
9998 if (noside != EVAL_NORMAL)
10000 for (i = 0; i < n; i += 1)
10001 ada_evaluate_subexp (NULL, exp, pos, noside);
10005 container = ada_coerce_ref (container);
10006 if (ada_is_direct_array_type (value_type (container)))
10007 container = ada_coerce_to_simple_array (container);
10008 lhs = ada_coerce_ref (lhs);
10009 if (!deprecated_value_modifiable (lhs))
10010 error (_("Left operand of assignment is not a modifiable lvalue."));
10012 lhs_type = check_typedef (value_type (lhs));
10013 if (ada_is_direct_array_type (lhs_type))
10015 lhs = ada_coerce_to_simple_array (lhs);
10016 lhs_type = check_typedef (value_type (lhs));
10017 low_index = TYPE_ARRAY_LOWER_BOUND_VALUE (lhs_type);
10018 high_index = TYPE_ARRAY_UPPER_BOUND_VALUE (lhs_type);
10020 else if (TYPE_CODE (lhs_type) == TYPE_CODE_STRUCT)
10023 high_index = num_visible_fields (lhs_type) - 1;
10026 error (_("Left-hand side must be array or record."));
10028 num_specs = num_component_specs (exp, *pos - 3);
10029 max_indices = 4 * num_specs + 4;
10030 indices = XALLOCAVEC (LONGEST, max_indices);
10031 indices[0] = indices[1] = low_index - 1;
10032 indices[2] = indices[3] = high_index + 1;
10035 for (i = 0; i < n; i += 1)
10037 switch (exp->elts[*pos].opcode)
10040 aggregate_assign_from_choices (container, lhs, exp, pos, indices,
10041 &num_indices, max_indices,
10042 low_index, high_index);
10044 case OP_POSITIONAL:
10045 aggregate_assign_positional (container, lhs, exp, pos, indices,
10046 &num_indices, max_indices,
10047 low_index, high_index);
10051 error (_("Misplaced 'others' clause"));
10052 aggregate_assign_others (container, lhs, exp, pos, indices,
10053 num_indices, low_index, high_index);
10056 error (_("Internal error: bad aggregate clause"));
10063 /* Assign into the component of LHS indexed by the OP_POSITIONAL
10064 construct at *POS, updating *POS past the construct, given that
10065 the positions are relative to lower bound LOW, where HIGH is the
10066 upper bound. Record the position in INDICES[0 .. MAX_INDICES-1]
10067 updating *NUM_INDICES as needed. CONTAINER is as for
10068 assign_aggregate. */
10070 aggregate_assign_positional (struct value *container,
10071 struct value *lhs, struct expression *exp,
10072 int *pos, LONGEST *indices, int *num_indices,
10073 int max_indices, LONGEST low, LONGEST high)
10075 LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low;
10077 if (ind - 1 == high)
10078 warning (_("Extra components in aggregate ignored."));
10081 add_component_interval (ind, ind, indices, num_indices, max_indices);
10083 assign_component (container, lhs, ind, exp, pos);
10086 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
10089 /* Assign into the components of LHS indexed by the OP_CHOICES
10090 construct at *POS, updating *POS past the construct, given that
10091 the allowable indices are LOW..HIGH. Record the indices assigned
10092 to in INDICES[0 .. MAX_INDICES-1], updating *NUM_INDICES as
10093 needed. CONTAINER is as for assign_aggregate. */
10095 aggregate_assign_from_choices (struct value *container,
10096 struct value *lhs, struct expression *exp,
10097 int *pos, LONGEST *indices, int *num_indices,
10098 int max_indices, LONGEST low, LONGEST high)
10101 int n_choices = longest_to_int (exp->elts[*pos+1].longconst);
10102 int choice_pos, expr_pc;
10103 int is_array = ada_is_direct_array_type (value_type (lhs));
10105 choice_pos = *pos += 3;
10107 for (j = 0; j < n_choices; j += 1)
10108 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
10110 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
10112 for (j = 0; j < n_choices; j += 1)
10114 LONGEST lower, upper;
10115 enum exp_opcode op = exp->elts[choice_pos].opcode;
10117 if (op == OP_DISCRETE_RANGE)
10120 lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
10122 upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
10127 lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos,
10139 name = &exp->elts[choice_pos + 2].string;
10142 name = SYMBOL_NATURAL_NAME (exp->elts[choice_pos + 2].symbol);
10145 error (_("Invalid record component association."));
10147 ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP);
10149 if (! find_struct_field (name, value_type (lhs), 0,
10150 NULL, NULL, NULL, NULL, &ind))
10151 error (_("Unknown component name: %s."), name);
10152 lower = upper = ind;
10155 if (lower <= upper && (lower < low || upper > high))
10156 error (_("Index in component association out of bounds."));
10158 add_component_interval (lower, upper, indices, num_indices,
10160 while (lower <= upper)
10165 assign_component (container, lhs, lower, exp, &pos1);
10171 /* Assign the value of the expression in the OP_OTHERS construct in
10172 EXP at *POS into the components of LHS indexed from LOW .. HIGH that
10173 have not been previously assigned. The index intervals already assigned
10174 are in INDICES[0 .. NUM_INDICES-1]. Updates *POS to after the
10175 OP_OTHERS clause. CONTAINER is as for assign_aggregate. */
10177 aggregate_assign_others (struct value *container,
10178 struct value *lhs, struct expression *exp,
10179 int *pos, LONGEST *indices, int num_indices,
10180 LONGEST low, LONGEST high)
10183 int expr_pc = *pos + 1;
10185 for (i = 0; i < num_indices - 2; i += 2)
10189 for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1)
10193 localpos = expr_pc;
10194 assign_component (container, lhs, ind, exp, &localpos);
10197 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
10200 /* Add the interval [LOW .. HIGH] to the sorted set of intervals
10201 [ INDICES[0] .. INDICES[1] ],..., [ INDICES[*SIZE-2] .. INDICES[*SIZE-1] ],
10202 modifying *SIZE as needed. It is an error if *SIZE exceeds
10203 MAX_SIZE. The resulting intervals do not overlap. */
10205 add_component_interval (LONGEST low, LONGEST high,
10206 LONGEST* indices, int *size, int max_size)
10210 for (i = 0; i < *size; i += 2) {
10211 if (high >= indices[i] && low <= indices[i + 1])
10215 for (kh = i + 2; kh < *size; kh += 2)
10216 if (high < indices[kh])
10218 if (low < indices[i])
10220 indices[i + 1] = indices[kh - 1];
10221 if (high > indices[i + 1])
10222 indices[i + 1] = high;
10223 memcpy (indices + i + 2, indices + kh, *size - kh);
10224 *size -= kh - i - 2;
10227 else if (high < indices[i])
10231 if (*size == max_size)
10232 error (_("Internal error: miscounted aggregate components."));
10234 for (j = *size-1; j >= i+2; j -= 1)
10235 indices[j] = indices[j - 2];
10237 indices[i + 1] = high;
10240 /* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2
10243 static struct value *
10244 ada_value_cast (struct type *type, struct value *arg2)
10246 if (type == ada_check_typedef (value_type (arg2)))
10249 if (ada_is_fixed_point_type (type))
10250 return cast_to_fixed (type, arg2);
10252 if (ada_is_fixed_point_type (value_type (arg2)))
10253 return cast_from_fixed (type, arg2);
10255 return value_cast (type, arg2);
10258 /* Evaluating Ada expressions, and printing their result.
10259 ------------------------------------------------------
10264 We usually evaluate an Ada expression in order to print its value.
10265 We also evaluate an expression in order to print its type, which
10266 happens during the EVAL_AVOID_SIDE_EFFECTS phase of the evaluation,
10267 but we'll focus mostly on the EVAL_NORMAL phase. In practice, the
10268 EVAL_AVOID_SIDE_EFFECTS phase allows us to simplify certain aspects of
10269 the evaluation compared to the EVAL_NORMAL, but is otherwise very
10272 Evaluating expressions is a little more complicated for Ada entities
10273 than it is for entities in languages such as C. The main reason for
10274 this is that Ada provides types whose definition might be dynamic.
10275 One example of such types is variant records. Or another example
10276 would be an array whose bounds can only be known at run time.
10278 The following description is a general guide as to what should be
10279 done (and what should NOT be done) in order to evaluate an expression
10280 involving such types, and when. This does not cover how the semantic
10281 information is encoded by GNAT as this is covered separatly. For the
10282 document used as the reference for the GNAT encoding, see exp_dbug.ads
10283 in the GNAT sources.
10285 Ideally, we should embed each part of this description next to its
10286 associated code. Unfortunately, the amount of code is so vast right
10287 now that it's hard to see whether the code handling a particular
10288 situation might be duplicated or not. One day, when the code is
10289 cleaned up, this guide might become redundant with the comments
10290 inserted in the code, and we might want to remove it.
10292 2. ``Fixing'' an Entity, the Simple Case:
10293 -----------------------------------------
10295 When evaluating Ada expressions, the tricky issue is that they may
10296 reference entities whose type contents and size are not statically
10297 known. Consider for instance a variant record:
10299 type Rec (Empty : Boolean := True) is record
10302 when False => Value : Integer;
10305 Yes : Rec := (Empty => False, Value => 1);
10306 No : Rec := (empty => True);
10308 The size and contents of that record depends on the value of the
10309 descriminant (Rec.Empty). At this point, neither the debugging
10310 information nor the associated type structure in GDB are able to
10311 express such dynamic types. So what the debugger does is to create
10312 "fixed" versions of the type that applies to the specific object.
10313 We also informally refer to this opperation as "fixing" an object,
10314 which means creating its associated fixed type.
10316 Example: when printing the value of variable "Yes" above, its fixed
10317 type would look like this:
10324 On the other hand, if we printed the value of "No", its fixed type
10331 Things become a little more complicated when trying to fix an entity
10332 with a dynamic type that directly contains another dynamic type,
10333 such as an array of variant records, for instance. There are
10334 two possible cases: Arrays, and records.
10336 3. ``Fixing'' Arrays:
10337 ---------------------
10339 The type structure in GDB describes an array in terms of its bounds,
10340 and the type of its elements. By design, all elements in the array
10341 have the same type and we cannot represent an array of variant elements
10342 using the current type structure in GDB. When fixing an array,
10343 we cannot fix the array element, as we would potentially need one
10344 fixed type per element of the array. As a result, the best we can do
10345 when fixing an array is to produce an array whose bounds and size
10346 are correct (allowing us to read it from memory), but without having
10347 touched its element type. Fixing each element will be done later,
10348 when (if) necessary.
10350 Arrays are a little simpler to handle than records, because the same
10351 amount of memory is allocated for each element of the array, even if
10352 the amount of space actually used by each element differs from element
10353 to element. Consider for instance the following array of type Rec:
10355 type Rec_Array is array (1 .. 2) of Rec;
10357 The actual amount of memory occupied by each element might be different
10358 from element to element, depending on the value of their discriminant.
10359 But the amount of space reserved for each element in the array remains
10360 fixed regardless. So we simply need to compute that size using
10361 the debugging information available, from which we can then determine
10362 the array size (we multiply the number of elements of the array by
10363 the size of each element).
10365 The simplest case is when we have an array of a constrained element
10366 type. For instance, consider the following type declarations:
10368 type Bounded_String (Max_Size : Integer) is
10370 Buffer : String (1 .. Max_Size);
10372 type Bounded_String_Array is array (1 ..2) of Bounded_String (80);
10374 In this case, the compiler describes the array as an array of
10375 variable-size elements (identified by its XVS suffix) for which
10376 the size can be read in the parallel XVZ variable.
10378 In the case of an array of an unconstrained element type, the compiler
10379 wraps the array element inside a private PAD type. This type should not
10380 be shown to the user, and must be "unwrap"'ed before printing. Note
10381 that we also use the adjective "aligner" in our code to designate
10382 these wrapper types.
10384 In some cases, the size allocated for each element is statically
10385 known. In that case, the PAD type already has the correct size,
10386 and the array element should remain unfixed.
10388 But there are cases when this size is not statically known.
10389 For instance, assuming that "Five" is an integer variable:
10391 type Dynamic is array (1 .. Five) of Integer;
10392 type Wrapper (Has_Length : Boolean := False) is record
10395 when True => Length : Integer;
10396 when False => null;
10399 type Wrapper_Array is array (1 .. 2) of Wrapper;
10401 Hello : Wrapper_Array := (others => (Has_Length => True,
10402 Data => (others => 17),
10406 The debugging info would describe variable Hello as being an
10407 array of a PAD type. The size of that PAD type is not statically
10408 known, but can be determined using a parallel XVZ variable.
10409 In that case, a copy of the PAD type with the correct size should
10410 be used for the fixed array.
10412 3. ``Fixing'' record type objects:
10413 ----------------------------------
10415 Things are slightly different from arrays in the case of dynamic
10416 record types. In this case, in order to compute the associated
10417 fixed type, we need to determine the size and offset of each of
10418 its components. This, in turn, requires us to compute the fixed
10419 type of each of these components.
10421 Consider for instance the example:
10423 type Bounded_String (Max_Size : Natural) is record
10424 Str : String (1 .. Max_Size);
10427 My_String : Bounded_String (Max_Size => 10);
10429 In that case, the position of field "Length" depends on the size
10430 of field Str, which itself depends on the value of the Max_Size
10431 discriminant. In order to fix the type of variable My_String,
10432 we need to fix the type of field Str. Therefore, fixing a variant
10433 record requires us to fix each of its components.
10435 However, if a component does not have a dynamic size, the component
10436 should not be fixed. In particular, fields that use a PAD type
10437 should not fixed. Here is an example where this might happen
10438 (assuming type Rec above):
10440 type Container (Big : Boolean) is record
10444 when True => Another : Integer;
10445 when False => null;
10448 My_Container : Container := (Big => False,
10449 First => (Empty => True),
10452 In that example, the compiler creates a PAD type for component First,
10453 whose size is constant, and then positions the component After just
10454 right after it. The offset of component After is therefore constant
10457 The debugger computes the position of each field based on an algorithm
10458 that uses, among other things, the actual position and size of the field
10459 preceding it. Let's now imagine that the user is trying to print
10460 the value of My_Container. If the type fixing was recursive, we would
10461 end up computing the offset of field After based on the size of the
10462 fixed version of field First. And since in our example First has
10463 only one actual field, the size of the fixed type is actually smaller
10464 than the amount of space allocated to that field, and thus we would
10465 compute the wrong offset of field After.
10467 To make things more complicated, we need to watch out for dynamic
10468 components of variant records (identified by the ___XVL suffix in
10469 the component name). Even if the target type is a PAD type, the size
10470 of that type might not be statically known. So the PAD type needs
10471 to be unwrapped and the resulting type needs to be fixed. Otherwise,
10472 we might end up with the wrong size for our component. This can be
10473 observed with the following type declarations:
10475 type Octal is new Integer range 0 .. 7;
10476 type Octal_Array is array (Positive range <>) of Octal;
10477 pragma Pack (Octal_Array);
10479 type Octal_Buffer (Size : Positive) is record
10480 Buffer : Octal_Array (1 .. Size);
10484 In that case, Buffer is a PAD type whose size is unset and needs
10485 to be computed by fixing the unwrapped type.
10487 4. When to ``Fix'' un-``Fixed'' sub-elements of an entity:
10488 ----------------------------------------------------------
10490 Lastly, when should the sub-elements of an entity that remained unfixed
10491 thus far, be actually fixed?
10493 The answer is: Only when referencing that element. For instance
10494 when selecting one component of a record, this specific component
10495 should be fixed at that point in time. Or when printing the value
10496 of a record, each component should be fixed before its value gets
10497 printed. Similarly for arrays, the element of the array should be
10498 fixed when printing each element of the array, or when extracting
10499 one element out of that array. On the other hand, fixing should
10500 not be performed on the elements when taking a slice of an array!
10502 Note that one of the side effects of miscomputing the offset and
10503 size of each field is that we end up also miscomputing the size
10504 of the containing type. This can have adverse results when computing
10505 the value of an entity. GDB fetches the value of an entity based
10506 on the size of its type, and thus a wrong size causes GDB to fetch
10507 the wrong amount of memory. In the case where the computed size is
10508 too small, GDB fetches too little data to print the value of our
10509 entity. Results in this case are unpredictable, as we usually read
10510 past the buffer containing the data =:-o. */
10512 /* Evaluate a subexpression of EXP, at index *POS, and return a value
10513 for that subexpression cast to TO_TYPE. Advance *POS over the
10517 ada_evaluate_subexp_for_cast (expression *exp, int *pos,
10518 enum noside noside, struct type *to_type)
10522 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE
10523 || exp->elts[pc].opcode == OP_VAR_VALUE)
10528 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
10530 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10531 return value_zero (to_type, not_lval);
10533 val = evaluate_var_msym_value (noside,
10534 exp->elts[pc + 1].objfile,
10535 exp->elts[pc + 2].msymbol);
10538 val = evaluate_var_value (noside,
10539 exp->elts[pc + 1].block,
10540 exp->elts[pc + 2].symbol);
10542 if (noside == EVAL_SKIP)
10543 return eval_skip_value (exp);
10545 val = ada_value_cast (to_type, val);
10547 /* Follow the Ada language semantics that do not allow taking
10548 an address of the result of a cast (view conversion in Ada). */
10549 if (VALUE_LVAL (val) == lval_memory)
10551 if (value_lazy (val))
10552 value_fetch_lazy (val);
10553 VALUE_LVAL (val) = not_lval;
10558 value *val = evaluate_subexp (to_type, exp, pos, noside);
10559 if (noside == EVAL_SKIP)
10560 return eval_skip_value (exp);
10561 return ada_value_cast (to_type, val);
10564 /* Implement the evaluate_exp routine in the exp_descriptor structure
10565 for the Ada language. */
10567 static struct value *
10568 ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
10569 int *pos, enum noside noside)
10571 enum exp_opcode op;
10575 struct value *arg1 = NULL, *arg2 = NULL, *arg3;
10578 struct value **argvec;
10582 op = exp->elts[pc].opcode;
10588 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10590 if (noside == EVAL_NORMAL)
10591 arg1 = unwrap_value (arg1);
10593 /* If evaluating an OP_FLOAT and an EXPECT_TYPE was provided,
10594 then we need to perform the conversion manually, because
10595 evaluate_subexp_standard doesn't do it. This conversion is
10596 necessary in Ada because the different kinds of float/fixed
10597 types in Ada have different representations.
10599 Similarly, we need to perform the conversion from OP_LONG
10601 if ((op == OP_FLOAT || op == OP_LONG) && expect_type != NULL)
10602 arg1 = ada_value_cast (expect_type, arg1);
10608 struct value *result;
10611 result = evaluate_subexp_standard (expect_type, exp, pos, noside);
10612 /* The result type will have code OP_STRING, bashed there from
10613 OP_ARRAY. Bash it back. */
10614 if (TYPE_CODE (value_type (result)) == TYPE_CODE_STRING)
10615 TYPE_CODE (value_type (result)) = TYPE_CODE_ARRAY;
10621 type = exp->elts[pc + 1].type;
10622 return ada_evaluate_subexp_for_cast (exp, pos, noside, type);
10626 type = exp->elts[pc + 1].type;
10627 return ada_evaluate_subexp (type, exp, pos, noside);
10630 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10631 if (exp->elts[*pos].opcode == OP_AGGREGATE)
10633 arg1 = assign_aggregate (arg1, arg1, exp, pos, noside);
10634 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10636 return ada_value_assign (arg1, arg1);
10638 /* Force the evaluation of the rhs ARG2 to the type of the lhs ARG1,
10639 except if the lhs of our assignment is a convenience variable.
10640 In the case of assigning to a convenience variable, the lhs
10641 should be exactly the result of the evaluation of the rhs. */
10642 type = value_type (arg1);
10643 if (VALUE_LVAL (arg1) == lval_internalvar)
10645 arg2 = evaluate_subexp (type, exp, pos, noside);
10646 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10648 if (ada_is_fixed_point_type (value_type (arg1)))
10649 arg2 = cast_to_fixed (value_type (arg1), arg2);
10650 else if (ada_is_fixed_point_type (value_type (arg2)))
10652 (_("Fixed-point values must be assigned to fixed-point variables"));
10654 arg2 = coerce_for_assign (value_type (arg1), arg2);
10655 return ada_value_assign (arg1, arg2);
10658 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10659 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10660 if (noside == EVAL_SKIP)
10662 if (TYPE_CODE (value_type (arg1)) == TYPE_CODE_PTR)
10663 return (value_from_longest
10664 (value_type (arg1),
10665 value_as_long (arg1) + value_as_long (arg2)));
10666 if (TYPE_CODE (value_type (arg2)) == TYPE_CODE_PTR)
10667 return (value_from_longest
10668 (value_type (arg2),
10669 value_as_long (arg1) + value_as_long (arg2)));
10670 if ((ada_is_fixed_point_type (value_type (arg1))
10671 || ada_is_fixed_point_type (value_type (arg2)))
10672 && value_type (arg1) != value_type (arg2))
10673 error (_("Operands of fixed-point addition must have the same type"));
10674 /* Do the addition, and cast the result to the type of the first
10675 argument. We cannot cast the result to a reference type, so if
10676 ARG1 is a reference type, find its underlying type. */
10677 type = value_type (arg1);
10678 while (TYPE_CODE (type) == TYPE_CODE_REF)
10679 type = TYPE_TARGET_TYPE (type);
10680 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10681 return value_cast (type, value_binop (arg1, arg2, BINOP_ADD));
10684 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10685 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10686 if (noside == EVAL_SKIP)
10688 if (TYPE_CODE (value_type (arg1)) == TYPE_CODE_PTR)
10689 return (value_from_longest
10690 (value_type (arg1),
10691 value_as_long (arg1) - value_as_long (arg2)));
10692 if (TYPE_CODE (value_type (arg2)) == TYPE_CODE_PTR)
10693 return (value_from_longest
10694 (value_type (arg2),
10695 value_as_long (arg1) - value_as_long (arg2)));
10696 if ((ada_is_fixed_point_type (value_type (arg1))
10697 || ada_is_fixed_point_type (value_type (arg2)))
10698 && value_type (arg1) != value_type (arg2))
10699 error (_("Operands of fixed-point subtraction "
10700 "must have the same type"));
10701 /* Do the substraction, and cast the result to the type of the first
10702 argument. We cannot cast the result to a reference type, so if
10703 ARG1 is a reference type, find its underlying type. */
10704 type = value_type (arg1);
10705 while (TYPE_CODE (type) == TYPE_CODE_REF)
10706 type = TYPE_TARGET_TYPE (type);
10707 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10708 return value_cast (type, value_binop (arg1, arg2, BINOP_SUB));
10714 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10715 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10716 if (noside == EVAL_SKIP)
10718 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10720 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10721 return value_zero (value_type (arg1), not_lval);
10725 type = builtin_type (exp->gdbarch)->builtin_double;
10726 if (ada_is_fixed_point_type (value_type (arg1)))
10727 arg1 = cast_from_fixed (type, arg1);
10728 if (ada_is_fixed_point_type (value_type (arg2)))
10729 arg2 = cast_from_fixed (type, arg2);
10730 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10731 return ada_value_binop (arg1, arg2, op);
10735 case BINOP_NOTEQUAL:
10736 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10737 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
10738 if (noside == EVAL_SKIP)
10740 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10744 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10745 tem = ada_value_equal (arg1, arg2);
10747 if (op == BINOP_NOTEQUAL)
10749 type = language_bool_type (exp->language_defn, exp->gdbarch);
10750 return value_from_longest (type, (LONGEST) tem);
10753 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10754 if (noside == EVAL_SKIP)
10756 else if (ada_is_fixed_point_type (value_type (arg1)))
10757 return value_cast (value_type (arg1), value_neg (arg1));
10760 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10761 return value_neg (arg1);
10764 case BINOP_LOGICAL_AND:
10765 case BINOP_LOGICAL_OR:
10766 case UNOP_LOGICAL_NOT:
10771 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10772 type = language_bool_type (exp->language_defn, exp->gdbarch);
10773 return value_cast (type, val);
10776 case BINOP_BITWISE_AND:
10777 case BINOP_BITWISE_IOR:
10778 case BINOP_BITWISE_XOR:
10782 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
10784 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10786 return value_cast (value_type (arg1), val);
10792 if (noside == EVAL_SKIP)
10798 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
10799 /* Only encountered when an unresolved symbol occurs in a
10800 context other than a function call, in which case, it is
10802 error (_("Unexpected unresolved symbol, %s, during evaluation"),
10803 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
10805 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10807 type = static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
10808 /* Check to see if this is a tagged type. We also need to handle
10809 the case where the type is a reference to a tagged type, but
10810 we have to be careful to exclude pointers to tagged types.
10811 The latter should be shown as usual (as a pointer), whereas
10812 a reference should mostly be transparent to the user. */
10813 if (ada_is_tagged_type (type, 0)
10814 || (TYPE_CODE (type) == TYPE_CODE_REF
10815 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0)))
10817 /* Tagged types are a little special in the fact that the real
10818 type is dynamic and can only be determined by inspecting the
10819 object's tag. This means that we need to get the object's
10820 value first (EVAL_NORMAL) and then extract the actual object
10823 Note that we cannot skip the final step where we extract
10824 the object type from its tag, because the EVAL_NORMAL phase
10825 results in dynamic components being resolved into fixed ones.
10826 This can cause problems when trying to print the type
10827 description of tagged types whose parent has a dynamic size:
10828 We use the type name of the "_parent" component in order
10829 to print the name of the ancestor type in the type description.
10830 If that component had a dynamic size, the resolution into
10831 a fixed type would result in the loss of that type name,
10832 thus preventing us from printing the name of the ancestor
10833 type in the type description. */
10834 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_NORMAL);
10836 if (TYPE_CODE (type) != TYPE_CODE_REF)
10838 struct type *actual_type;
10840 actual_type = type_from_tag (ada_value_tag (arg1));
10841 if (actual_type == NULL)
10842 /* If, for some reason, we were unable to determine
10843 the actual type from the tag, then use the static
10844 approximation that we just computed as a fallback.
10845 This can happen if the debugging information is
10846 incomplete, for instance. */
10847 actual_type = type;
10848 return value_zero (actual_type, not_lval);
10852 /* In the case of a ref, ada_coerce_ref takes care
10853 of determining the actual type. But the evaluation
10854 should return a ref as it should be valid to ask
10855 for its address; so rebuild a ref after coerce. */
10856 arg1 = ada_coerce_ref (arg1);
10857 return value_ref (arg1, TYPE_CODE_REF);
10861 /* Records and unions for which GNAT encodings have been
10862 generated need to be statically fixed as well.
10863 Otherwise, non-static fixing produces a type where
10864 all dynamic properties are removed, which prevents "ptype"
10865 from being able to completely describe the type.
10866 For instance, a case statement in a variant record would be
10867 replaced by the relevant components based on the actual
10868 value of the discriminants. */
10869 if ((TYPE_CODE (type) == TYPE_CODE_STRUCT
10870 && dynamic_template_type (type) != NULL)
10871 || (TYPE_CODE (type) == TYPE_CODE_UNION
10872 && ada_find_parallel_type (type, "___XVU") != NULL))
10875 return value_zero (to_static_fixed_type (type), not_lval);
10879 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10880 return ada_to_fixed_value (arg1);
10885 /* Allocate arg vector, including space for the function to be
10886 called in argvec[0] and a terminating NULL. */
10887 nargs = longest_to_int (exp->elts[pc + 1].longconst);
10888 argvec = XALLOCAVEC (struct value *, nargs + 2);
10890 if (exp->elts[*pos].opcode == OP_VAR_VALUE
10891 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
10892 error (_("Unexpected unresolved symbol, %s, during evaluation"),
10893 SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol));
10896 for (tem = 0; tem <= nargs; tem += 1)
10897 argvec[tem] = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10900 if (noside == EVAL_SKIP)
10904 if (ada_is_constrained_packed_array_type
10905 (desc_base_type (value_type (argvec[0]))))
10906 argvec[0] = ada_coerce_to_simple_array (argvec[0]);
10907 else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_ARRAY
10908 && TYPE_FIELD_BITSIZE (value_type (argvec[0]), 0) != 0)
10909 /* This is a packed array that has already been fixed, and
10910 therefore already coerced to a simple array. Nothing further
10913 else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_REF)
10915 /* Make sure we dereference references so that all the code below
10916 feels like it's really handling the referenced value. Wrapping
10917 types (for alignment) may be there, so make sure we strip them as
10919 argvec[0] = ada_to_fixed_value (coerce_ref (argvec[0]));
10921 else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_ARRAY
10922 && VALUE_LVAL (argvec[0]) == lval_memory)
10923 argvec[0] = value_addr (argvec[0]);
10925 type = ada_check_typedef (value_type (argvec[0]));
10927 /* Ada allows us to implicitly dereference arrays when subscripting
10928 them. So, if this is an array typedef (encoding use for array
10929 access types encoded as fat pointers), strip it now. */
10930 if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
10931 type = ada_typedef_target_type (type);
10933 if (TYPE_CODE (type) == TYPE_CODE_PTR)
10935 switch (TYPE_CODE (ada_check_typedef (TYPE_TARGET_TYPE (type))))
10937 case TYPE_CODE_FUNC:
10938 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
10940 case TYPE_CODE_ARRAY:
10942 case TYPE_CODE_STRUCT:
10943 if (noside != EVAL_AVOID_SIDE_EFFECTS)
10944 argvec[0] = ada_value_ind (argvec[0]);
10945 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
10948 error (_("cannot subscript or call something of type `%s'"),
10949 ada_type_name (value_type (argvec[0])));
10954 switch (TYPE_CODE (type))
10956 case TYPE_CODE_FUNC:
10957 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10959 if (TYPE_TARGET_TYPE (type) == NULL)
10960 error_call_unknown_return_type (NULL);
10961 return allocate_value (TYPE_TARGET_TYPE (type));
10963 return call_function_by_hand (argvec[0], NULL,
10964 gdb::make_array_view (argvec + 1,
10966 case TYPE_CODE_INTERNAL_FUNCTION:
10967 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10968 /* We don't know anything about what the internal
10969 function might return, but we have to return
10971 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
10974 return call_internal_function (exp->gdbarch, exp->language_defn,
10975 argvec[0], nargs, argvec + 1);
10977 case TYPE_CODE_STRUCT:
10981 arity = ada_array_arity (type);
10982 type = ada_array_element_type (type, nargs);
10984 error (_("cannot subscript or call a record"));
10985 if (arity != nargs)
10986 error (_("wrong number of subscripts; expecting %d"), arity);
10987 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10988 return value_zero (ada_aligned_type (type), lval_memory);
10990 unwrap_value (ada_value_subscript
10991 (argvec[0], nargs, argvec + 1));
10993 case TYPE_CODE_ARRAY:
10994 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10996 type = ada_array_element_type (type, nargs);
10998 error (_("element type of array unknown"));
11000 return value_zero (ada_aligned_type (type), lval_memory);
11003 unwrap_value (ada_value_subscript
11004 (ada_coerce_to_simple_array (argvec[0]),
11005 nargs, argvec + 1));
11006 case TYPE_CODE_PTR: /* Pointer to array */
11007 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11009 type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1);
11010 type = ada_array_element_type (type, nargs);
11012 error (_("element type of array unknown"));
11014 return value_zero (ada_aligned_type (type), lval_memory);
11017 unwrap_value (ada_value_ptr_subscript (argvec[0],
11018 nargs, argvec + 1));
11021 error (_("Attempt to index or call something other than an "
11022 "array or function"));
11027 struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11028 struct value *low_bound_val =
11029 evaluate_subexp (NULL_TYPE, exp, pos, noside);
11030 struct value *high_bound_val =
11031 evaluate_subexp (NULL_TYPE, exp, pos, noside);
11033 LONGEST high_bound;
11035 low_bound_val = coerce_ref (low_bound_val);
11036 high_bound_val = coerce_ref (high_bound_val);
11037 low_bound = value_as_long (low_bound_val);
11038 high_bound = value_as_long (high_bound_val);
11040 if (noside == EVAL_SKIP)
11043 /* If this is a reference to an aligner type, then remove all
11045 if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF
11046 && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array))))
11047 TYPE_TARGET_TYPE (value_type (array)) =
11048 ada_aligned_type (TYPE_TARGET_TYPE (value_type (array)));
11050 if (ada_is_constrained_packed_array_type (value_type (array)))
11051 error (_("cannot slice a packed array"));
11053 /* If this is a reference to an array or an array lvalue,
11054 convert to a pointer. */
11055 if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF
11056 || (TYPE_CODE (value_type (array)) == TYPE_CODE_ARRAY
11057 && VALUE_LVAL (array) == lval_memory))
11058 array = value_addr (array);
11060 if (noside == EVAL_AVOID_SIDE_EFFECTS
11061 && ada_is_array_descriptor_type (ada_check_typedef
11062 (value_type (array))))
11063 return empty_array (ada_type_of_array (array, 0), low_bound,
11066 array = ada_coerce_to_simple_array_ptr (array);
11068 /* If we have more than one level of pointer indirection,
11069 dereference the value until we get only one level. */
11070 while (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR
11071 && (TYPE_CODE (TYPE_TARGET_TYPE (value_type (array)))
11073 array = value_ind (array);
11075 /* Make sure we really do have an array type before going further,
11076 to avoid a SEGV when trying to get the index type or the target
11077 type later down the road if the debug info generated by
11078 the compiler is incorrect or incomplete. */
11079 if (!ada_is_simple_array_type (value_type (array)))
11080 error (_("cannot take slice of non-array"));
11082 if (TYPE_CODE (ada_check_typedef (value_type (array)))
11085 struct type *type0 = ada_check_typedef (value_type (array));
11087 if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS)
11088 return empty_array (TYPE_TARGET_TYPE (type0), low_bound, high_bound);
11091 struct type *arr_type0 =
11092 to_fixed_array_type (TYPE_TARGET_TYPE (type0), NULL, 1);
11094 return ada_value_slice_from_ptr (array, arr_type0,
11095 longest_to_int (low_bound),
11096 longest_to_int (high_bound));
11099 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11101 else if (high_bound < low_bound)
11102 return empty_array (value_type (array), low_bound, high_bound);
11104 return ada_value_slice (array, longest_to_int (low_bound),
11105 longest_to_int (high_bound));
11108 case UNOP_IN_RANGE:
11110 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11111 type = check_typedef (exp->elts[pc + 1].type);
11113 if (noside == EVAL_SKIP)
11116 switch (TYPE_CODE (type))
11119 lim_warning (_("Membership test incompletely implemented; "
11120 "always returns true"));
11121 type = language_bool_type (exp->language_defn, exp->gdbarch);
11122 return value_from_longest (type, (LONGEST) 1);
11124 case TYPE_CODE_RANGE:
11125 arg2 = value_from_longest (type, TYPE_LOW_BOUND (type));
11126 arg3 = value_from_longest (type, TYPE_HIGH_BOUND (type));
11127 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
11128 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
11129 type = language_bool_type (exp->language_defn, exp->gdbarch);
11131 value_from_longest (type,
11132 (value_less (arg1, arg3)
11133 || value_equal (arg1, arg3))
11134 && (value_less (arg2, arg1)
11135 || value_equal (arg2, arg1)));
11138 case BINOP_IN_BOUNDS:
11140 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11141 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11143 if (noside == EVAL_SKIP)
11146 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11148 type = language_bool_type (exp->language_defn, exp->gdbarch);
11149 return value_zero (type, not_lval);
11152 tem = longest_to_int (exp->elts[pc + 1].longconst);
11154 type = ada_index_type (value_type (arg2), tem, "range");
11156 type = value_type (arg1);
11158 arg3 = value_from_longest (type, ada_array_bound (arg2, tem, 1));
11159 arg2 = value_from_longest (type, ada_array_bound (arg2, tem, 0));
11161 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
11162 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
11163 type = language_bool_type (exp->language_defn, exp->gdbarch);
11165 value_from_longest (type,
11166 (value_less (arg1, arg3)
11167 || value_equal (arg1, arg3))
11168 && (value_less (arg2, arg1)
11169 || value_equal (arg2, arg1)));
11171 case TERNOP_IN_RANGE:
11172 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11173 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11174 arg3 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11176 if (noside == EVAL_SKIP)
11179 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
11180 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
11181 type = language_bool_type (exp->language_defn, exp->gdbarch);
11183 value_from_longest (type,
11184 (value_less (arg1, arg3)
11185 || value_equal (arg1, arg3))
11186 && (value_less (arg2, arg1)
11187 || value_equal (arg2, arg1)));
11191 case OP_ATR_LENGTH:
11193 struct type *type_arg;
11195 if (exp->elts[*pos].opcode == OP_TYPE)
11197 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
11199 type_arg = check_typedef (exp->elts[pc + 2].type);
11203 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11207 if (exp->elts[*pos].opcode != OP_LONG)
11208 error (_("Invalid operand to '%s"), ada_attribute_name (op));
11209 tem = longest_to_int (exp->elts[*pos + 2].longconst);
11212 if (noside == EVAL_SKIP)
11215 if (type_arg == NULL)
11217 arg1 = ada_coerce_ref (arg1);
11219 if (ada_is_constrained_packed_array_type (value_type (arg1)))
11220 arg1 = ada_coerce_to_simple_array (arg1);
11222 if (op == OP_ATR_LENGTH)
11223 type = builtin_type (exp->gdbarch)->builtin_int;
11226 type = ada_index_type (value_type (arg1), tem,
11227 ada_attribute_name (op));
11229 type = builtin_type (exp->gdbarch)->builtin_int;
11232 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11233 return allocate_value (type);
11237 default: /* Should never happen. */
11238 error (_("unexpected attribute encountered"));
11240 return value_from_longest
11241 (type, ada_array_bound (arg1, tem, 0));
11243 return value_from_longest
11244 (type, ada_array_bound (arg1, tem, 1));
11245 case OP_ATR_LENGTH:
11246 return value_from_longest
11247 (type, ada_array_length (arg1, tem));
11250 else if (discrete_type_p (type_arg))
11252 struct type *range_type;
11253 const char *name = ada_type_name (type_arg);
11256 if (name != NULL && TYPE_CODE (type_arg) != TYPE_CODE_ENUM)
11257 range_type = to_fixed_range_type (type_arg, NULL);
11258 if (range_type == NULL)
11259 range_type = type_arg;
11263 error (_("unexpected attribute encountered"));
11265 return value_from_longest
11266 (range_type, ada_discrete_type_low_bound (range_type));
11268 return value_from_longest
11269 (range_type, ada_discrete_type_high_bound (range_type));
11270 case OP_ATR_LENGTH:
11271 error (_("the 'length attribute applies only to array types"));
11274 else if (TYPE_CODE (type_arg) == TYPE_CODE_FLT)
11275 error (_("unimplemented type attribute"));
11280 if (ada_is_constrained_packed_array_type (type_arg))
11281 type_arg = decode_constrained_packed_array_type (type_arg);
11283 if (op == OP_ATR_LENGTH)
11284 type = builtin_type (exp->gdbarch)->builtin_int;
11287 type = ada_index_type (type_arg, tem, ada_attribute_name (op));
11289 type = builtin_type (exp->gdbarch)->builtin_int;
11292 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11293 return allocate_value (type);
11298 error (_("unexpected attribute encountered"));
11300 low = ada_array_bound_from_type (type_arg, tem, 0);
11301 return value_from_longest (type, low);
11303 high = ada_array_bound_from_type (type_arg, tem, 1);
11304 return value_from_longest (type, high);
11305 case OP_ATR_LENGTH:
11306 low = ada_array_bound_from_type (type_arg, tem, 0);
11307 high = ada_array_bound_from_type (type_arg, tem, 1);
11308 return value_from_longest (type, high - low + 1);
11314 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11315 if (noside == EVAL_SKIP)
11318 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11319 return value_zero (ada_tag_type (arg1), not_lval);
11321 return ada_value_tag (arg1);
11325 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
11326 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11327 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11328 if (noside == EVAL_SKIP)
11330 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11331 return value_zero (value_type (arg1), not_lval);
11334 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
11335 return value_binop (arg1, arg2,
11336 op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
11339 case OP_ATR_MODULUS:
11341 struct type *type_arg = check_typedef (exp->elts[pc + 2].type);
11343 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
11344 if (noside == EVAL_SKIP)
11347 if (!ada_is_modular_type (type_arg))
11348 error (_("'modulus must be applied to modular type"));
11350 return value_from_longest (TYPE_TARGET_TYPE (type_arg),
11351 ada_modulus (type_arg));
11356 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
11357 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11358 if (noside == EVAL_SKIP)
11360 type = builtin_type (exp->gdbarch)->builtin_int;
11361 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11362 return value_zero (type, not_lval);
11364 return value_pos_atr (type, arg1);
11367 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11368 type = value_type (arg1);
11370 /* If the argument is a reference, then dereference its type, since
11371 the user is really asking for the size of the actual object,
11372 not the size of the pointer. */
11373 if (TYPE_CODE (type) == TYPE_CODE_REF)
11374 type = TYPE_TARGET_TYPE (type);
11376 if (noside == EVAL_SKIP)
11378 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11379 return value_zero (builtin_type (exp->gdbarch)->builtin_int, not_lval);
11381 return value_from_longest (builtin_type (exp->gdbarch)->builtin_int,
11382 TARGET_CHAR_BIT * TYPE_LENGTH (type));
11385 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
11386 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11387 type = exp->elts[pc + 2].type;
11388 if (noside == EVAL_SKIP)
11390 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11391 return value_zero (type, not_lval);
11393 return value_val_atr (type, arg1);
11396 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11397 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11398 if (noside == EVAL_SKIP)
11400 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11401 return value_zero (value_type (arg1), not_lval);
11404 /* For integer exponentiation operations,
11405 only promote the first argument. */
11406 if (is_integral_type (value_type (arg2)))
11407 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
11409 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
11411 return value_binop (arg1, arg2, op);
11415 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11416 if (noside == EVAL_SKIP)
11422 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11423 if (noside == EVAL_SKIP)
11425 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
11426 if (value_less (arg1, value_zero (value_type (arg1), not_lval)))
11427 return value_neg (arg1);
11432 preeval_pos = *pos;
11433 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11434 if (noside == EVAL_SKIP)
11436 type = ada_check_typedef (value_type (arg1));
11437 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11439 if (ada_is_array_descriptor_type (type))
11440 /* GDB allows dereferencing GNAT array descriptors. */
11442 struct type *arrType = ada_type_of_array (arg1, 0);
11444 if (arrType == NULL)
11445 error (_("Attempt to dereference null array pointer."));
11446 return value_at_lazy (arrType, 0);
11448 else if (TYPE_CODE (type) == TYPE_CODE_PTR
11449 || TYPE_CODE (type) == TYPE_CODE_REF
11450 /* In C you can dereference an array to get the 1st elt. */
11451 || TYPE_CODE (type) == TYPE_CODE_ARRAY)
11453 /* As mentioned in the OP_VAR_VALUE case, tagged types can
11454 only be determined by inspecting the object's tag.
11455 This means that we need to evaluate completely the
11456 expression in order to get its type. */
11458 if ((TYPE_CODE (type) == TYPE_CODE_REF
11459 || TYPE_CODE (type) == TYPE_CODE_PTR)
11460 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0))
11462 arg1 = evaluate_subexp (NULL_TYPE, exp, &preeval_pos,
11464 type = value_type (ada_value_ind (arg1));
11468 type = to_static_fixed_type
11470 (ada_check_typedef (TYPE_TARGET_TYPE (type))));
11472 ada_ensure_varsize_limit (type);
11473 return value_zero (type, lval_memory);
11475 else if (TYPE_CODE (type) == TYPE_CODE_INT)
11477 /* GDB allows dereferencing an int. */
11478 if (expect_type == NULL)
11479 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
11484 to_static_fixed_type (ada_aligned_type (expect_type));
11485 return value_zero (expect_type, lval_memory);
11489 error (_("Attempt to take contents of a non-pointer value."));
11491 arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */
11492 type = ada_check_typedef (value_type (arg1));
11494 if (TYPE_CODE (type) == TYPE_CODE_INT)
11495 /* GDB allows dereferencing an int. If we were given
11496 the expect_type, then use that as the target type.
11497 Otherwise, assume that the target type is an int. */
11499 if (expect_type != NULL)
11500 return ada_value_ind (value_cast (lookup_pointer_type (expect_type),
11503 return value_at_lazy (builtin_type (exp->gdbarch)->builtin_int,
11504 (CORE_ADDR) value_as_address (arg1));
11507 if (ada_is_array_descriptor_type (type))
11508 /* GDB allows dereferencing GNAT array descriptors. */
11509 return ada_coerce_to_simple_array (arg1);
11511 return ada_value_ind (arg1);
11513 case STRUCTOP_STRUCT:
11514 tem = longest_to_int (exp->elts[pc + 1].longconst);
11515 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
11516 preeval_pos = *pos;
11517 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11518 if (noside == EVAL_SKIP)
11520 if (noside == EVAL_AVOID_SIDE_EFFECTS)
11522 struct type *type1 = value_type (arg1);
11524 if (ada_is_tagged_type (type1, 1))
11526 type = ada_lookup_struct_elt_type (type1,
11527 &exp->elts[pc + 2].string,
11530 /* If the field is not found, check if it exists in the
11531 extension of this object's type. This means that we
11532 need to evaluate completely the expression. */
11536 arg1 = evaluate_subexp (NULL_TYPE, exp, &preeval_pos,
11538 arg1 = ada_value_struct_elt (arg1,
11539 &exp->elts[pc + 2].string,
11541 arg1 = unwrap_value (arg1);
11542 type = value_type (ada_to_fixed_value (arg1));
11547 ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1,
11550 return value_zero (ada_aligned_type (type), lval_memory);
11554 arg1 = ada_value_struct_elt (arg1, &exp->elts[pc + 2].string, 0);
11555 arg1 = unwrap_value (arg1);
11556 return ada_to_fixed_value (arg1);
11560 /* The value is not supposed to be used. This is here to make it
11561 easier to accommodate expressions that contain types. */
11563 if (noside == EVAL_SKIP)
11565 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
11566 return allocate_value (exp->elts[pc + 1].type);
11568 error (_("Attempt to use a type name as an expression"));
11573 case OP_DISCRETE_RANGE:
11574 case OP_POSITIONAL:
11576 if (noside == EVAL_NORMAL)
11580 error (_("Undefined name, ambiguous name, or renaming used in "
11581 "component association: %s."), &exp->elts[pc+2].string);
11583 error (_("Aggregates only allowed on the right of an assignment"));
11585 internal_error (__FILE__, __LINE__,
11586 _("aggregate apparently mangled"));
11589 ada_forward_operator_length (exp, pc, &oplen, &nargs);
11591 for (tem = 0; tem < nargs; tem += 1)
11592 ada_evaluate_subexp (NULL, exp, pos, noside);
11597 return eval_skip_value (exp);
11603 /* If TYPE encodes an Ada fixed-point type, return the suffix of the
11604 type name that encodes the 'small and 'delta information.
11605 Otherwise, return NULL. */
11607 static const char *
11608 fixed_type_info (struct type *type)
11610 const char *name = ada_type_name (type);
11611 enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : TYPE_CODE (type);
11613 if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL)
11615 const char *tail = strstr (name, "___XF_");
11622 else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type)
11623 return fixed_type_info (TYPE_TARGET_TYPE (type));
11628 /* Returns non-zero iff TYPE represents an Ada fixed-point type. */
11631 ada_is_fixed_point_type (struct type *type)
11633 return fixed_type_info (type) != NULL;
11636 /* Return non-zero iff TYPE represents a System.Address type. */
11639 ada_is_system_address_type (struct type *type)
11641 return (TYPE_NAME (type)
11642 && strcmp (TYPE_NAME (type), "system__address") == 0);
11645 /* Assuming that TYPE is the representation of an Ada fixed-point
11646 type, return the target floating-point type to be used to represent
11647 of this type during internal computation. */
11649 static struct type *
11650 ada_scaling_type (struct type *type)
11652 return builtin_type (get_type_arch (type))->builtin_long_double;
11655 /* Assuming that TYPE is the representation of an Ada fixed-point
11656 type, return its delta, or NULL if the type is malformed and the
11657 delta cannot be determined. */
11660 ada_delta (struct type *type)
11662 const char *encoding = fixed_type_info (type);
11663 struct type *scale_type = ada_scaling_type (type);
11665 long long num, den;
11667 if (sscanf (encoding, "_%lld_%lld", &num, &den) < 2)
11670 return value_binop (value_from_longest (scale_type, num),
11671 value_from_longest (scale_type, den), BINOP_DIV);
11674 /* Assuming that ada_is_fixed_point_type (TYPE), return the scaling
11675 factor ('SMALL value) associated with the type. */
11678 ada_scaling_factor (struct type *type)
11680 const char *encoding = fixed_type_info (type);
11681 struct type *scale_type = ada_scaling_type (type);
11683 long long num0, den0, num1, den1;
11686 n = sscanf (encoding, "_%lld_%lld_%lld_%lld",
11687 &num0, &den0, &num1, &den1);
11690 return value_from_longest (scale_type, 1);
11692 return value_binop (value_from_longest (scale_type, num1),
11693 value_from_longest (scale_type, den1), BINOP_DIV);
11695 return value_binop (value_from_longest (scale_type, num0),
11696 value_from_longest (scale_type, den0), BINOP_DIV);
11703 /* Scan STR beginning at position K for a discriminant name, and
11704 return the value of that discriminant field of DVAL in *PX. If
11705 PNEW_K is not null, put the position of the character beyond the
11706 name scanned in *PNEW_K. Return 1 if successful; return 0 and do
11707 not alter *PX and *PNEW_K if unsuccessful. */
11710 scan_discrim_bound (const char *str, int k, struct value *dval, LONGEST * px,
11713 static char *bound_buffer = NULL;
11714 static size_t bound_buffer_len = 0;
11715 const char *pstart, *pend, *bound;
11716 struct value *bound_val;
11718 if (dval == NULL || str == NULL || str[k] == '\0')
11722 pend = strstr (pstart, "__");
11726 k += strlen (bound);
11730 int len = pend - pstart;
11732 /* Strip __ and beyond. */
11733 GROW_VECT (bound_buffer, bound_buffer_len, len + 1);
11734 strncpy (bound_buffer, pstart, len);
11735 bound_buffer[len] = '\0';
11737 bound = bound_buffer;
11741 bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval));
11742 if (bound_val == NULL)
11745 *px = value_as_long (bound_val);
11746 if (pnew_k != NULL)
11751 /* Value of variable named NAME in the current environment. If
11752 no such variable found, then if ERR_MSG is null, returns 0, and
11753 otherwise causes an error with message ERR_MSG. */
11755 static struct value *
11756 get_var_value (const char *name, const char *err_msg)
11758 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
11760 std::vector<struct block_symbol> syms;
11761 int nsyms = ada_lookup_symbol_list_worker (lookup_name,
11762 get_selected_block (0),
11763 VAR_DOMAIN, &syms, 1);
11767 if (err_msg == NULL)
11770 error (("%s"), err_msg);
11773 return value_of_variable (syms[0].symbol, syms[0].block);
11776 /* Value of integer variable named NAME in the current environment.
11777 If no such variable is found, returns false. Otherwise, sets VALUE
11778 to the variable's value and returns true. */
11781 get_int_var_value (const char *name, LONGEST &value)
11783 struct value *var_val = get_var_value (name, 0);
11788 value = value_as_long (var_val);
11793 /* Return a range type whose base type is that of the range type named
11794 NAME in the current environment, and whose bounds are calculated
11795 from NAME according to the GNAT range encoding conventions.
11796 Extract discriminant values, if needed, from DVAL. ORIG_TYPE is the
11797 corresponding range type from debug information; fall back to using it
11798 if symbol lookup fails. If a new type must be created, allocate it
11799 like ORIG_TYPE was. The bounds information, in general, is encoded
11800 in NAME, the base type given in the named range type. */
11802 static struct type *
11803 to_fixed_range_type (struct type *raw_type, struct value *dval)
11806 struct type *base_type;
11807 const char *subtype_info;
11809 gdb_assert (raw_type != NULL);
11810 gdb_assert (TYPE_NAME (raw_type) != NULL);
11812 if (TYPE_CODE (raw_type) == TYPE_CODE_RANGE)
11813 base_type = TYPE_TARGET_TYPE (raw_type);
11815 base_type = raw_type;
11817 name = TYPE_NAME (raw_type);
11818 subtype_info = strstr (name, "___XD");
11819 if (subtype_info == NULL)
11821 LONGEST L = ada_discrete_type_low_bound (raw_type);
11822 LONGEST U = ada_discrete_type_high_bound (raw_type);
11824 if (L < INT_MIN || U > INT_MAX)
11827 return create_static_range_type (alloc_type_copy (raw_type), raw_type,
11832 static char *name_buf = NULL;
11833 static size_t name_len = 0;
11834 int prefix_len = subtype_info - name;
11837 const char *bounds_str;
11840 GROW_VECT (name_buf, name_len, prefix_len + 5);
11841 strncpy (name_buf, name, prefix_len);
11842 name_buf[prefix_len] = '\0';
11845 bounds_str = strchr (subtype_info, '_');
11848 if (*subtype_info == 'L')
11850 if (!ada_scan_number (bounds_str, n, &L, &n)
11851 && !scan_discrim_bound (bounds_str, n, dval, &L, &n))
11853 if (bounds_str[n] == '_')
11855 else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */
11861 strcpy (name_buf + prefix_len, "___L");
11862 if (!get_int_var_value (name_buf, L))
11864 lim_warning (_("Unknown lower bound, using 1."));
11869 if (*subtype_info == 'U')
11871 if (!ada_scan_number (bounds_str, n, &U, &n)
11872 && !scan_discrim_bound (bounds_str, n, dval, &U, &n))
11877 strcpy (name_buf + prefix_len, "___U");
11878 if (!get_int_var_value (name_buf, U))
11880 lim_warning (_("Unknown upper bound, using %ld."), (long) L);
11885 type = create_static_range_type (alloc_type_copy (raw_type),
11887 /* create_static_range_type alters the resulting type's length
11888 to match the size of the base_type, which is not what we want.
11889 Set it back to the original range type's length. */
11890 TYPE_LENGTH (type) = TYPE_LENGTH (raw_type);
11891 TYPE_NAME (type) = name;
11896 /* True iff NAME is the name of a range type. */
11899 ada_is_range_type_name (const char *name)
11901 return (name != NULL && strstr (name, "___XD"));
11905 /* Modular types */
11907 /* True iff TYPE is an Ada modular type. */
11910 ada_is_modular_type (struct type *type)
11912 struct type *subranged_type = get_base_type (type);
11914 return (subranged_type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE
11915 && TYPE_CODE (subranged_type) == TYPE_CODE_INT
11916 && TYPE_UNSIGNED (subranged_type));
11919 /* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */
11922 ada_modulus (struct type *type)
11924 return (ULONGEST) TYPE_HIGH_BOUND (type) + 1;
11928 /* Ada exception catchpoint support:
11929 ---------------------------------
11931 We support 3 kinds of exception catchpoints:
11932 . catchpoints on Ada exceptions
11933 . catchpoints on unhandled Ada exceptions
11934 . catchpoints on failed assertions
11936 Exceptions raised during failed assertions, or unhandled exceptions
11937 could perfectly be caught with the general catchpoint on Ada exceptions.
11938 However, we can easily differentiate these two special cases, and having
11939 the option to distinguish these two cases from the rest can be useful
11940 to zero-in on certain situations.
11942 Exception catchpoints are a specialized form of breakpoint,
11943 since they rely on inserting breakpoints inside known routines
11944 of the GNAT runtime. The implementation therefore uses a standard
11945 breakpoint structure of the BP_BREAKPOINT type, but with its own set
11948 Support in the runtime for exception catchpoints have been changed
11949 a few times already, and these changes affect the implementation
11950 of these catchpoints. In order to be able to support several
11951 variants of the runtime, we use a sniffer that will determine
11952 the runtime variant used by the program being debugged. */
11954 /* Ada's standard exceptions.
11956 The Ada 83 standard also defined Numeric_Error. But there so many
11957 situations where it was unclear from the Ada 83 Reference Manual
11958 (RM) whether Constraint_Error or Numeric_Error should be raised,
11959 that the ARG (Ada Rapporteur Group) eventually issued a Binding
11960 Interpretation saying that anytime the RM says that Numeric_Error
11961 should be raised, the implementation may raise Constraint_Error.
11962 Ada 95 went one step further and pretty much removed Numeric_Error
11963 from the list of standard exceptions (it made it a renaming of
11964 Constraint_Error, to help preserve compatibility when compiling
11965 an Ada83 compiler). As such, we do not include Numeric_Error from
11966 this list of standard exceptions. */
11968 static const char *standard_exc[] = {
11969 "constraint_error",
11975 typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void);
11977 /* A structure that describes how to support exception catchpoints
11978 for a given executable. */
11980 struct exception_support_info
11982 /* The name of the symbol to break on in order to insert
11983 a catchpoint on exceptions. */
11984 const char *catch_exception_sym;
11986 /* The name of the symbol to break on in order to insert
11987 a catchpoint on unhandled exceptions. */
11988 const char *catch_exception_unhandled_sym;
11990 /* The name of the symbol to break on in order to insert
11991 a catchpoint on failed assertions. */
11992 const char *catch_assert_sym;
11994 /* The name of the symbol to break on in order to insert
11995 a catchpoint on exception handling. */
11996 const char *catch_handlers_sym;
11998 /* Assuming that the inferior just triggered an unhandled exception
11999 catchpoint, this function is responsible for returning the address
12000 in inferior memory where the name of that exception is stored.
12001 Return zero if the address could not be computed. */
12002 ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr;
12005 static CORE_ADDR ada_unhandled_exception_name_addr (void);
12006 static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void);
12008 /* The following exception support info structure describes how to
12009 implement exception catchpoints with the latest version of the
12010 Ada runtime (as of 2007-03-06). */
12012 static const struct exception_support_info default_exception_support_info =
12014 "__gnat_debug_raise_exception", /* catch_exception_sym */
12015 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
12016 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
12017 "__gnat_begin_handler", /* catch_handlers_sym */
12018 ada_unhandled_exception_name_addr
12021 /* The following exception support info structure describes how to
12022 implement exception catchpoints with a slightly older version
12023 of the Ada runtime. */
12025 static const struct exception_support_info exception_support_info_fallback =
12027 "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */
12028 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
12029 "system__assertions__raise_assert_failure", /* catch_assert_sym */
12030 "__gnat_begin_handler", /* catch_handlers_sym */
12031 ada_unhandled_exception_name_addr_from_raise
12034 /* Return nonzero if we can detect the exception support routines
12035 described in EINFO.
12037 This function errors out if an abnormal situation is detected
12038 (for instance, if we find the exception support routines, but
12039 that support is found to be incomplete). */
12042 ada_has_this_exception_support (const struct exception_support_info *einfo)
12044 struct symbol *sym;
12046 /* The symbol we're looking up is provided by a unit in the GNAT runtime
12047 that should be compiled with debugging information. As a result, we
12048 expect to find that symbol in the symtabs. */
12050 sym = standard_lookup (einfo->catch_exception_sym, NULL, VAR_DOMAIN);
12053 /* Perhaps we did not find our symbol because the Ada runtime was
12054 compiled without debugging info, or simply stripped of it.
12055 It happens on some GNU/Linux distributions for instance, where
12056 users have to install a separate debug package in order to get
12057 the runtime's debugging info. In that situation, let the user
12058 know why we cannot insert an Ada exception catchpoint.
12060 Note: Just for the purpose of inserting our Ada exception
12061 catchpoint, we could rely purely on the associated minimal symbol.
12062 But we would be operating in degraded mode anyway, since we are
12063 still lacking the debugging info needed later on to extract
12064 the name of the exception being raised (this name is printed in
12065 the catchpoint message, and is also used when trying to catch
12066 a specific exception). We do not handle this case for now. */
12067 struct bound_minimal_symbol msym
12068 = lookup_minimal_symbol (einfo->catch_exception_sym, NULL, NULL);
12070 if (msym.minsym && MSYMBOL_TYPE (msym.minsym) != mst_solib_trampoline)
12071 error (_("Your Ada runtime appears to be missing some debugging "
12072 "information.\nCannot insert Ada exception catchpoint "
12073 "in this configuration."));
12078 /* Make sure that the symbol we found corresponds to a function. */
12080 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
12081 error (_("Symbol \"%s\" is not a function (class = %d)"),
12082 SYMBOL_LINKAGE_NAME (sym), SYMBOL_CLASS (sym));
12087 /* Inspect the Ada runtime and determine which exception info structure
12088 should be used to provide support for exception catchpoints.
12090 This function will always set the per-inferior exception_info,
12091 or raise an error. */
12094 ada_exception_support_info_sniffer (void)
12096 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
12098 /* If the exception info is already known, then no need to recompute it. */
12099 if (data->exception_info != NULL)
12102 /* Check the latest (default) exception support info. */
12103 if (ada_has_this_exception_support (&default_exception_support_info))
12105 data->exception_info = &default_exception_support_info;
12109 /* Try our fallback exception suport info. */
12110 if (ada_has_this_exception_support (&exception_support_info_fallback))
12112 data->exception_info = &exception_support_info_fallback;
12116 /* Sometimes, it is normal for us to not be able to find the routine
12117 we are looking for. This happens when the program is linked with
12118 the shared version of the GNAT runtime, and the program has not been
12119 started yet. Inform the user of these two possible causes if
12122 if (ada_update_initial_language (language_unknown) != language_ada)
12123 error (_("Unable to insert catchpoint. Is this an Ada main program?"));
12125 /* If the symbol does not exist, then check that the program is
12126 already started, to make sure that shared libraries have been
12127 loaded. If it is not started, this may mean that the symbol is
12128 in a shared library. */
12130 if (inferior_ptid.pid () == 0)
12131 error (_("Unable to insert catchpoint. Try to start the program first."));
12133 /* At this point, we know that we are debugging an Ada program and
12134 that the inferior has been started, but we still are not able to
12135 find the run-time symbols. That can mean that we are in
12136 configurable run time mode, or that a-except as been optimized
12137 out by the linker... In any case, at this point it is not worth
12138 supporting this feature. */
12140 error (_("Cannot insert Ada exception catchpoints in this configuration."));
12143 /* True iff FRAME is very likely to be that of a function that is
12144 part of the runtime system. This is all very heuristic, but is
12145 intended to be used as advice as to what frames are uninteresting
12149 is_known_support_routine (struct frame_info *frame)
12151 enum language func_lang;
12153 const char *fullname;
12155 /* If this code does not have any debugging information (no symtab),
12156 This cannot be any user code. */
12158 symtab_and_line sal = find_frame_sal (frame);
12159 if (sal.symtab == NULL)
12162 /* If there is a symtab, but the associated source file cannot be
12163 located, then assume this is not user code: Selecting a frame
12164 for which we cannot display the code would not be very helpful
12165 for the user. This should also take care of case such as VxWorks
12166 where the kernel has some debugging info provided for a few units. */
12168 fullname = symtab_to_fullname (sal.symtab);
12169 if (access (fullname, R_OK) != 0)
12172 /* Check the unit filename againt the Ada runtime file naming.
12173 We also check the name of the objfile against the name of some
12174 known system libraries that sometimes come with debugging info
12177 for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1)
12179 re_comp (known_runtime_file_name_patterns[i]);
12180 if (re_exec (lbasename (sal.symtab->filename)))
12182 if (SYMTAB_OBJFILE (sal.symtab) != NULL
12183 && re_exec (objfile_name (SYMTAB_OBJFILE (sal.symtab))))
12187 /* Check whether the function is a GNAT-generated entity. */
12189 gdb::unique_xmalloc_ptr<char> func_name
12190 = find_frame_funname (frame, &func_lang, NULL);
12191 if (func_name == NULL)
12194 for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1)
12196 re_comp (known_auxiliary_function_name_patterns[i]);
12197 if (re_exec (func_name.get ()))
12204 /* Find the first frame that contains debugging information and that is not
12205 part of the Ada run-time, starting from FI and moving upward. */
12208 ada_find_printable_frame (struct frame_info *fi)
12210 for (; fi != NULL; fi = get_prev_frame (fi))
12212 if (!is_known_support_routine (fi))
12221 /* Assuming that the inferior just triggered an unhandled exception
12222 catchpoint, return the address in inferior memory where the name
12223 of the exception is stored.
12225 Return zero if the address could not be computed. */
12228 ada_unhandled_exception_name_addr (void)
12230 return parse_and_eval_address ("e.full_name");
12233 /* Same as ada_unhandled_exception_name_addr, except that this function
12234 should be used when the inferior uses an older version of the runtime,
12235 where the exception name needs to be extracted from a specific frame
12236 several frames up in the callstack. */
12239 ada_unhandled_exception_name_addr_from_raise (void)
12242 struct frame_info *fi;
12243 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
12245 /* To determine the name of this exception, we need to select
12246 the frame corresponding to RAISE_SYM_NAME. This frame is
12247 at least 3 levels up, so we simply skip the first 3 frames
12248 without checking the name of their associated function. */
12249 fi = get_current_frame ();
12250 for (frame_level = 0; frame_level < 3; frame_level += 1)
12252 fi = get_prev_frame (fi);
12256 enum language func_lang;
12258 gdb::unique_xmalloc_ptr<char> func_name
12259 = find_frame_funname (fi, &func_lang, NULL);
12260 if (func_name != NULL)
12262 if (strcmp (func_name.get (),
12263 data->exception_info->catch_exception_sym) == 0)
12264 break; /* We found the frame we were looking for... */
12266 fi = get_prev_frame (fi);
12273 return parse_and_eval_address ("id.full_name");
12276 /* Assuming the inferior just triggered an Ada exception catchpoint
12277 (of any type), return the address in inferior memory where the name
12278 of the exception is stored, if applicable.
12280 Assumes the selected frame is the current frame.
12282 Return zero if the address could not be computed, or if not relevant. */
12285 ada_exception_name_addr_1 (enum ada_exception_catchpoint_kind ex,
12286 struct breakpoint *b)
12288 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
12292 case ada_catch_exception:
12293 return (parse_and_eval_address ("e.full_name"));
12296 case ada_catch_exception_unhandled:
12297 return data->exception_info->unhandled_exception_name_addr ();
12300 case ada_catch_handlers:
12301 return 0; /* The runtimes does not provide access to the exception
12305 case ada_catch_assert:
12306 return 0; /* Exception name is not relevant in this case. */
12310 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12314 return 0; /* Should never be reached. */
12317 /* Assuming the inferior is stopped at an exception catchpoint,
12318 return the message which was associated to the exception, if
12319 available. Return NULL if the message could not be retrieved.
12321 Note: The exception message can be associated to an exception
12322 either through the use of the Raise_Exception function, or
12323 more simply (Ada 2005 and later), via:
12325 raise Exception_Name with "exception message";
12329 static gdb::unique_xmalloc_ptr<char>
12330 ada_exception_message_1 (void)
12332 struct value *e_msg_val;
12335 /* For runtimes that support this feature, the exception message
12336 is passed as an unbounded string argument called "message". */
12337 e_msg_val = parse_and_eval ("message");
12338 if (e_msg_val == NULL)
12339 return NULL; /* Exception message not supported. */
12341 e_msg_val = ada_coerce_to_simple_array (e_msg_val);
12342 gdb_assert (e_msg_val != NULL);
12343 e_msg_len = TYPE_LENGTH (value_type (e_msg_val));
12345 /* If the message string is empty, then treat it as if there was
12346 no exception message. */
12347 if (e_msg_len <= 0)
12350 gdb::unique_xmalloc_ptr<char> e_msg ((char *) xmalloc (e_msg_len + 1));
12351 read_memory_string (value_address (e_msg_val), e_msg.get (), e_msg_len + 1);
12352 e_msg.get ()[e_msg_len] = '\0';
12357 /* Same as ada_exception_message_1, except that all exceptions are
12358 contained here (returning NULL instead). */
12360 static gdb::unique_xmalloc_ptr<char>
12361 ada_exception_message (void)
12363 gdb::unique_xmalloc_ptr<char> e_msg;
12367 e_msg = ada_exception_message_1 ();
12369 catch (const gdb_exception_error &e)
12371 e_msg.reset (nullptr);
12377 /* Same as ada_exception_name_addr_1, except that it intercepts and contains
12378 any error that ada_exception_name_addr_1 might cause to be thrown.
12379 When an error is intercepted, a warning with the error message is printed,
12380 and zero is returned. */
12383 ada_exception_name_addr (enum ada_exception_catchpoint_kind ex,
12384 struct breakpoint *b)
12386 CORE_ADDR result = 0;
12390 result = ada_exception_name_addr_1 (ex, b);
12393 catch (const gdb_exception_error &e)
12395 warning (_("failed to get exception name: %s"), e.what ());
12402 static std::string ada_exception_catchpoint_cond_string
12403 (const char *excep_string,
12404 enum ada_exception_catchpoint_kind ex);
12406 /* Ada catchpoints.
12408 In the case of catchpoints on Ada exceptions, the catchpoint will
12409 stop the target on every exception the program throws. When a user
12410 specifies the name of a specific exception, we translate this
12411 request into a condition expression (in text form), and then parse
12412 it into an expression stored in each of the catchpoint's locations.
12413 We then use this condition to check whether the exception that was
12414 raised is the one the user is interested in. If not, then the
12415 target is resumed again. We store the name of the requested
12416 exception, in order to be able to re-set the condition expression
12417 when symbols change. */
12419 /* An instance of this type is used to represent an Ada catchpoint
12420 breakpoint location. */
12422 class ada_catchpoint_location : public bp_location
12425 ada_catchpoint_location (breakpoint *owner)
12426 : bp_location (owner)
12429 /* The condition that checks whether the exception that was raised
12430 is the specific exception the user specified on catchpoint
12432 expression_up excep_cond_expr;
12435 /* An instance of this type is used to represent an Ada catchpoint. */
12437 struct ada_catchpoint : public breakpoint
12439 /* The name of the specific exception the user specified. */
12440 std::string excep_string;
12443 /* Parse the exception condition string in the context of each of the
12444 catchpoint's locations, and store them for later evaluation. */
12447 create_excep_cond_exprs (struct ada_catchpoint *c,
12448 enum ada_exception_catchpoint_kind ex)
12450 /* Nothing to do if there's no specific exception to catch. */
12451 if (c->excep_string.empty ())
12454 /* Same if there are no locations... */
12455 if (c->loc == NULL)
12458 /* We have to compute the expression once for each program space,
12459 because the expression may hold the addresses of multiple symbols
12461 std::multimap<program_space *, struct bp_location *> loc_map;
12462 for (bp_location *bl = c->loc; bl != NULL; bl = bl->next)
12463 loc_map.emplace (bl->pspace, bl);
12465 scoped_restore_current_program_space save_pspace;
12467 std::string cond_string;
12468 program_space *last_ps = nullptr;
12469 for (auto iter : loc_map)
12471 struct ada_catchpoint_location *ada_loc
12472 = (struct ada_catchpoint_location *) iter.second;
12474 if (ada_loc->pspace != last_ps)
12476 last_ps = ada_loc->pspace;
12477 set_current_program_space (last_ps);
12479 /* Compute the condition expression in text form, from the
12480 specific expection we want to catch. */
12482 = ada_exception_catchpoint_cond_string (c->excep_string.c_str (),
12488 if (!ada_loc->shlib_disabled)
12492 s = cond_string.c_str ();
12495 exp = parse_exp_1 (&s, ada_loc->address,
12496 block_for_pc (ada_loc->address),
12499 catch (const gdb_exception_error &e)
12501 warning (_("failed to reevaluate internal exception condition "
12502 "for catchpoint %d: %s"),
12503 c->number, e.what ());
12507 ada_loc->excep_cond_expr = std::move (exp);
12511 /* Implement the ALLOCATE_LOCATION method in the breakpoint_ops
12512 structure for all exception catchpoint kinds. */
12514 static struct bp_location *
12515 allocate_location_exception (enum ada_exception_catchpoint_kind ex,
12516 struct breakpoint *self)
12518 return new ada_catchpoint_location (self);
12521 /* Implement the RE_SET method in the breakpoint_ops structure for all
12522 exception catchpoint kinds. */
12525 re_set_exception (enum ada_exception_catchpoint_kind ex, struct breakpoint *b)
12527 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12529 /* Call the base class's method. This updates the catchpoint's
12531 bkpt_breakpoint_ops.re_set (b);
12533 /* Reparse the exception conditional expressions. One for each
12535 create_excep_cond_exprs (c, ex);
12538 /* Returns true if we should stop for this breakpoint hit. If the
12539 user specified a specific exception, we only want to cause a stop
12540 if the program thrown that exception. */
12543 should_stop_exception (const struct bp_location *bl)
12545 struct ada_catchpoint *c = (struct ada_catchpoint *) bl->owner;
12546 const struct ada_catchpoint_location *ada_loc
12547 = (const struct ada_catchpoint_location *) bl;
12550 /* With no specific exception, should always stop. */
12551 if (c->excep_string.empty ())
12554 if (ada_loc->excep_cond_expr == NULL)
12556 /* We will have a NULL expression if back when we were creating
12557 the expressions, this location's had failed to parse. */
12564 struct value *mark;
12566 mark = value_mark ();
12567 stop = value_true (evaluate_expression (ada_loc->excep_cond_expr.get ()));
12568 value_free_to_mark (mark);
12570 catch (const gdb_exception &ex)
12572 exception_fprintf (gdb_stderr, ex,
12573 _("Error in testing exception condition:\n"));
12579 /* Implement the CHECK_STATUS method in the breakpoint_ops structure
12580 for all exception catchpoint kinds. */
12583 check_status_exception (enum ada_exception_catchpoint_kind ex, bpstat bs)
12585 bs->stop = should_stop_exception (bs->bp_location_at);
12588 /* Implement the PRINT_IT method in the breakpoint_ops structure
12589 for all exception catchpoint kinds. */
12591 static enum print_stop_action
12592 print_it_exception (enum ada_exception_catchpoint_kind ex, bpstat bs)
12594 struct ui_out *uiout = current_uiout;
12595 struct breakpoint *b = bs->breakpoint_at;
12597 annotate_catchpoint (b->number);
12599 if (uiout->is_mi_like_p ())
12601 uiout->field_string ("reason",
12602 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
12603 uiout->field_string ("disp", bpdisp_text (b->disposition));
12606 uiout->text (b->disposition == disp_del
12607 ? "\nTemporary catchpoint " : "\nCatchpoint ");
12608 uiout->field_int ("bkptno", b->number);
12609 uiout->text (", ");
12611 /* ada_exception_name_addr relies on the selected frame being the
12612 current frame. Need to do this here because this function may be
12613 called more than once when printing a stop, and below, we'll
12614 select the first frame past the Ada run-time (see
12615 ada_find_printable_frame). */
12616 select_frame (get_current_frame ());
12620 case ada_catch_exception:
12621 case ada_catch_exception_unhandled:
12622 case ada_catch_handlers:
12624 const CORE_ADDR addr = ada_exception_name_addr (ex, b);
12625 char exception_name[256];
12629 read_memory (addr, (gdb_byte *) exception_name,
12630 sizeof (exception_name) - 1);
12631 exception_name [sizeof (exception_name) - 1] = '\0';
12635 /* For some reason, we were unable to read the exception
12636 name. This could happen if the Runtime was compiled
12637 without debugging info, for instance. In that case,
12638 just replace the exception name by the generic string
12639 "exception" - it will read as "an exception" in the
12640 notification we are about to print. */
12641 memcpy (exception_name, "exception", sizeof ("exception"));
12643 /* In the case of unhandled exception breakpoints, we print
12644 the exception name as "unhandled EXCEPTION_NAME", to make
12645 it clearer to the user which kind of catchpoint just got
12646 hit. We used ui_out_text to make sure that this extra
12647 info does not pollute the exception name in the MI case. */
12648 if (ex == ada_catch_exception_unhandled)
12649 uiout->text ("unhandled ");
12650 uiout->field_string ("exception-name", exception_name);
12653 case ada_catch_assert:
12654 /* In this case, the name of the exception is not really
12655 important. Just print "failed assertion" to make it clearer
12656 that his program just hit an assertion-failure catchpoint.
12657 We used ui_out_text because this info does not belong in
12659 uiout->text ("failed assertion");
12663 gdb::unique_xmalloc_ptr<char> exception_message = ada_exception_message ();
12664 if (exception_message != NULL)
12666 uiout->text (" (");
12667 uiout->field_string ("exception-message", exception_message.get ());
12671 uiout->text (" at ");
12672 ada_find_printable_frame (get_current_frame ());
12674 return PRINT_SRC_AND_LOC;
12677 /* Implement the PRINT_ONE method in the breakpoint_ops structure
12678 for all exception catchpoint kinds. */
12681 print_one_exception (enum ada_exception_catchpoint_kind ex,
12682 struct breakpoint *b, struct bp_location **last_loc)
12684 struct ui_out *uiout = current_uiout;
12685 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12686 struct value_print_options opts;
12688 get_user_print_options (&opts);
12689 if (opts.addressprint)
12691 annotate_field (4);
12692 uiout->field_core_addr ("addr", b->loc->gdbarch, b->loc->address);
12695 annotate_field (5);
12696 *last_loc = b->loc;
12699 case ada_catch_exception:
12700 if (!c->excep_string.empty ())
12702 std::string msg = string_printf (_("`%s' Ada exception"),
12703 c->excep_string.c_str ());
12705 uiout->field_string ("what", msg);
12708 uiout->field_string ("what", "all Ada exceptions");
12712 case ada_catch_exception_unhandled:
12713 uiout->field_string ("what", "unhandled Ada exceptions");
12716 case ada_catch_handlers:
12717 if (!c->excep_string.empty ())
12719 uiout->field_fmt ("what",
12720 _("`%s' Ada exception handlers"),
12721 c->excep_string.c_str ());
12724 uiout->field_string ("what", "all Ada exceptions handlers");
12727 case ada_catch_assert:
12728 uiout->field_string ("what", "failed Ada assertions");
12732 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12737 /* Implement the PRINT_MENTION method in the breakpoint_ops structure
12738 for all exception catchpoint kinds. */
12741 print_mention_exception (enum ada_exception_catchpoint_kind ex,
12742 struct breakpoint *b)
12744 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12745 struct ui_out *uiout = current_uiout;
12747 uiout->text (b->disposition == disp_del ? _("Temporary catchpoint ")
12748 : _("Catchpoint "));
12749 uiout->field_int ("bkptno", b->number);
12750 uiout->text (": ");
12754 case ada_catch_exception:
12755 if (!c->excep_string.empty ())
12757 std::string info = string_printf (_("`%s' Ada exception"),
12758 c->excep_string.c_str ());
12759 uiout->text (info.c_str ());
12762 uiout->text (_("all Ada exceptions"));
12765 case ada_catch_exception_unhandled:
12766 uiout->text (_("unhandled Ada exceptions"));
12769 case ada_catch_handlers:
12770 if (!c->excep_string.empty ())
12773 = string_printf (_("`%s' Ada exception handlers"),
12774 c->excep_string.c_str ());
12775 uiout->text (info.c_str ());
12778 uiout->text (_("all Ada exceptions handlers"));
12781 case ada_catch_assert:
12782 uiout->text (_("failed Ada assertions"));
12786 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12791 /* Implement the PRINT_RECREATE method in the breakpoint_ops structure
12792 for all exception catchpoint kinds. */
12795 print_recreate_exception (enum ada_exception_catchpoint_kind ex,
12796 struct breakpoint *b, struct ui_file *fp)
12798 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12802 case ada_catch_exception:
12803 fprintf_filtered (fp, "catch exception");
12804 if (!c->excep_string.empty ())
12805 fprintf_filtered (fp, " %s", c->excep_string.c_str ());
12808 case ada_catch_exception_unhandled:
12809 fprintf_filtered (fp, "catch exception unhandled");
12812 case ada_catch_handlers:
12813 fprintf_filtered (fp, "catch handlers");
12816 case ada_catch_assert:
12817 fprintf_filtered (fp, "catch assert");
12821 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12823 print_recreate_thread (b, fp);
12826 /* Virtual table for "catch exception" breakpoints. */
12828 static struct bp_location *
12829 allocate_location_catch_exception (struct breakpoint *self)
12831 return allocate_location_exception (ada_catch_exception, self);
12835 re_set_catch_exception (struct breakpoint *b)
12837 re_set_exception (ada_catch_exception, b);
12841 check_status_catch_exception (bpstat bs)
12843 check_status_exception (ada_catch_exception, bs);
12846 static enum print_stop_action
12847 print_it_catch_exception (bpstat bs)
12849 return print_it_exception (ada_catch_exception, bs);
12853 print_one_catch_exception (struct breakpoint *b, struct bp_location **last_loc)
12855 print_one_exception (ada_catch_exception, b, last_loc);
12859 print_mention_catch_exception (struct breakpoint *b)
12861 print_mention_exception (ada_catch_exception, b);
12865 print_recreate_catch_exception (struct breakpoint *b, struct ui_file *fp)
12867 print_recreate_exception (ada_catch_exception, b, fp);
12870 static struct breakpoint_ops catch_exception_breakpoint_ops;
12872 /* Virtual table for "catch exception unhandled" breakpoints. */
12874 static struct bp_location *
12875 allocate_location_catch_exception_unhandled (struct breakpoint *self)
12877 return allocate_location_exception (ada_catch_exception_unhandled, self);
12881 re_set_catch_exception_unhandled (struct breakpoint *b)
12883 re_set_exception (ada_catch_exception_unhandled, b);
12887 check_status_catch_exception_unhandled (bpstat bs)
12889 check_status_exception (ada_catch_exception_unhandled, bs);
12892 static enum print_stop_action
12893 print_it_catch_exception_unhandled (bpstat bs)
12895 return print_it_exception (ada_catch_exception_unhandled, bs);
12899 print_one_catch_exception_unhandled (struct breakpoint *b,
12900 struct bp_location **last_loc)
12902 print_one_exception (ada_catch_exception_unhandled, b, last_loc);
12906 print_mention_catch_exception_unhandled (struct breakpoint *b)
12908 print_mention_exception (ada_catch_exception_unhandled, b);
12912 print_recreate_catch_exception_unhandled (struct breakpoint *b,
12913 struct ui_file *fp)
12915 print_recreate_exception (ada_catch_exception_unhandled, b, fp);
12918 static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops;
12920 /* Virtual table for "catch assert" breakpoints. */
12922 static struct bp_location *
12923 allocate_location_catch_assert (struct breakpoint *self)
12925 return allocate_location_exception (ada_catch_assert, self);
12929 re_set_catch_assert (struct breakpoint *b)
12931 re_set_exception (ada_catch_assert, b);
12935 check_status_catch_assert (bpstat bs)
12937 check_status_exception (ada_catch_assert, bs);
12940 static enum print_stop_action
12941 print_it_catch_assert (bpstat bs)
12943 return print_it_exception (ada_catch_assert, bs);
12947 print_one_catch_assert (struct breakpoint *b, struct bp_location **last_loc)
12949 print_one_exception (ada_catch_assert, b, last_loc);
12953 print_mention_catch_assert (struct breakpoint *b)
12955 print_mention_exception (ada_catch_assert, b);
12959 print_recreate_catch_assert (struct breakpoint *b, struct ui_file *fp)
12961 print_recreate_exception (ada_catch_assert, b, fp);
12964 static struct breakpoint_ops catch_assert_breakpoint_ops;
12966 /* Virtual table for "catch handlers" breakpoints. */
12968 static struct bp_location *
12969 allocate_location_catch_handlers (struct breakpoint *self)
12971 return allocate_location_exception (ada_catch_handlers, self);
12975 re_set_catch_handlers (struct breakpoint *b)
12977 re_set_exception (ada_catch_handlers, b);
12981 check_status_catch_handlers (bpstat bs)
12983 check_status_exception (ada_catch_handlers, bs);
12986 static enum print_stop_action
12987 print_it_catch_handlers (bpstat bs)
12989 return print_it_exception (ada_catch_handlers, bs);
12993 print_one_catch_handlers (struct breakpoint *b,
12994 struct bp_location **last_loc)
12996 print_one_exception (ada_catch_handlers, b, last_loc);
13000 print_mention_catch_handlers (struct breakpoint *b)
13002 print_mention_exception (ada_catch_handlers, b);
13006 print_recreate_catch_handlers (struct breakpoint *b,
13007 struct ui_file *fp)
13009 print_recreate_exception (ada_catch_handlers, b, fp);
13012 static struct breakpoint_ops catch_handlers_breakpoint_ops;
13014 /* Split the arguments specified in a "catch exception" command.
13015 Set EX to the appropriate catchpoint type.
13016 Set EXCEP_STRING to the name of the specific exception if
13017 specified by the user.
13018 IS_CATCH_HANDLERS_CMD: True if the arguments are for a
13019 "catch handlers" command. False otherwise.
13020 If a condition is found at the end of the arguments, the condition
13021 expression is stored in COND_STRING (memory must be deallocated
13022 after use). Otherwise COND_STRING is set to NULL. */
13025 catch_ada_exception_command_split (const char *args,
13026 bool is_catch_handlers_cmd,
13027 enum ada_exception_catchpoint_kind *ex,
13028 std::string *excep_string,
13029 std::string *cond_string)
13031 std::string exception_name;
13033 exception_name = extract_arg (&args);
13034 if (exception_name == "if")
13036 /* This is not an exception name; this is the start of a condition
13037 expression for a catchpoint on all exceptions. So, "un-get"
13038 this token, and set exception_name to NULL. */
13039 exception_name.clear ();
13043 /* Check to see if we have a condition. */
13045 args = skip_spaces (args);
13046 if (startswith (args, "if")
13047 && (isspace (args[2]) || args[2] == '\0'))
13050 args = skip_spaces (args);
13052 if (args[0] == '\0')
13053 error (_("Condition missing after `if' keyword"));
13054 *cond_string = args;
13056 args += strlen (args);
13059 /* Check that we do not have any more arguments. Anything else
13062 if (args[0] != '\0')
13063 error (_("Junk at end of expression"));
13065 if (is_catch_handlers_cmd)
13067 /* Catch handling of exceptions. */
13068 *ex = ada_catch_handlers;
13069 *excep_string = exception_name;
13071 else if (exception_name.empty ())
13073 /* Catch all exceptions. */
13074 *ex = ada_catch_exception;
13075 excep_string->clear ();
13077 else if (exception_name == "unhandled")
13079 /* Catch unhandled exceptions. */
13080 *ex = ada_catch_exception_unhandled;
13081 excep_string->clear ();
13085 /* Catch a specific exception. */
13086 *ex = ada_catch_exception;
13087 *excep_string = exception_name;
13091 /* Return the name of the symbol on which we should break in order to
13092 implement a catchpoint of the EX kind. */
13094 static const char *
13095 ada_exception_sym_name (enum ada_exception_catchpoint_kind ex)
13097 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
13099 gdb_assert (data->exception_info != NULL);
13103 case ada_catch_exception:
13104 return (data->exception_info->catch_exception_sym);
13106 case ada_catch_exception_unhandled:
13107 return (data->exception_info->catch_exception_unhandled_sym);
13109 case ada_catch_assert:
13110 return (data->exception_info->catch_assert_sym);
13112 case ada_catch_handlers:
13113 return (data->exception_info->catch_handlers_sym);
13116 internal_error (__FILE__, __LINE__,
13117 _("unexpected catchpoint kind (%d)"), ex);
13121 /* Return the breakpoint ops "virtual table" used for catchpoints
13124 static const struct breakpoint_ops *
13125 ada_exception_breakpoint_ops (enum ada_exception_catchpoint_kind ex)
13129 case ada_catch_exception:
13130 return (&catch_exception_breakpoint_ops);
13132 case ada_catch_exception_unhandled:
13133 return (&catch_exception_unhandled_breakpoint_ops);
13135 case ada_catch_assert:
13136 return (&catch_assert_breakpoint_ops);
13138 case ada_catch_handlers:
13139 return (&catch_handlers_breakpoint_ops);
13142 internal_error (__FILE__, __LINE__,
13143 _("unexpected catchpoint kind (%d)"), ex);
13147 /* Return the condition that will be used to match the current exception
13148 being raised with the exception that the user wants to catch. This
13149 assumes that this condition is used when the inferior just triggered
13150 an exception catchpoint.
13151 EX: the type of catchpoints used for catching Ada exceptions. */
13154 ada_exception_catchpoint_cond_string (const char *excep_string,
13155 enum ada_exception_catchpoint_kind ex)
13158 std::string result;
13161 if (ex == ada_catch_handlers)
13163 /* For exception handlers catchpoints, the condition string does
13164 not use the same parameter as for the other exceptions. */
13165 name = ("long_integer (GNAT_GCC_exception_Access"
13166 "(gcc_exception).all.occurrence.id)");
13169 name = "long_integer (e)";
13171 /* The standard exceptions are a special case. They are defined in
13172 runtime units that have been compiled without debugging info; if
13173 EXCEP_STRING is the not-fully-qualified name of a standard
13174 exception (e.g. "constraint_error") then, during the evaluation
13175 of the condition expression, the symbol lookup on this name would
13176 *not* return this standard exception. The catchpoint condition
13177 may then be set only on user-defined exceptions which have the
13178 same not-fully-qualified name (e.g. my_package.constraint_error).
13180 To avoid this unexcepted behavior, these standard exceptions are
13181 systematically prefixed by "standard". This means that "catch
13182 exception constraint_error" is rewritten into "catch exception
13183 standard.constraint_error".
13185 If an exception named contraint_error is defined in another package of
13186 the inferior program, then the only way to specify this exception as a
13187 breakpoint condition is to use its fully-qualified named:
13188 e.g. my_package.constraint_error.
13190 Furthermore, in some situations a standard exception's symbol may
13191 be present in more than one objfile, because the compiler may
13192 choose to emit copy relocations for them. So, we have to compare
13193 against all the possible addresses. */
13195 /* Storage for a rewritten symbol name. */
13196 std::string std_name;
13197 for (i = 0; i < sizeof (standard_exc) / sizeof (char *); i++)
13199 if (strcmp (standard_exc [i], excep_string) == 0)
13201 std_name = std::string ("standard.") + excep_string;
13202 excep_string = std_name.c_str ();
13207 excep_string = ada_encode (excep_string);
13208 std::vector<struct bound_minimal_symbol> symbols
13209 = ada_lookup_simple_minsyms (excep_string);
13210 for (const bound_minimal_symbol &msym : symbols)
13212 if (!result.empty ())
13214 string_appendf (result, "%s = %s", name,
13215 pulongest (BMSYMBOL_VALUE_ADDRESS (msym)));
13221 /* Return the symtab_and_line that should be used to insert an exception
13222 catchpoint of the TYPE kind.
13224 ADDR_STRING returns the name of the function where the real
13225 breakpoint that implements the catchpoints is set, depending on the
13226 type of catchpoint we need to create. */
13228 static struct symtab_and_line
13229 ada_exception_sal (enum ada_exception_catchpoint_kind ex,
13230 std::string *addr_string, const struct breakpoint_ops **ops)
13232 const char *sym_name;
13233 struct symbol *sym;
13235 /* First, find out which exception support info to use. */
13236 ada_exception_support_info_sniffer ();
13238 /* Then lookup the function on which we will break in order to catch
13239 the Ada exceptions requested by the user. */
13240 sym_name = ada_exception_sym_name (ex);
13241 sym = standard_lookup (sym_name, NULL, VAR_DOMAIN);
13244 error (_("Catchpoint symbol not found: %s"), sym_name);
13246 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
13247 error (_("Unable to insert catchpoint. %s is not a function."), sym_name);
13249 /* Set ADDR_STRING. */
13250 *addr_string = sym_name;
13253 *ops = ada_exception_breakpoint_ops (ex);
13255 return find_function_start_sal (sym, 1);
13258 /* Create an Ada exception catchpoint.
13260 EX_KIND is the kind of exception catchpoint to be created.
13262 If EXCEPT_STRING is empty, this catchpoint is expected to trigger
13263 for all exceptions. Otherwise, EXCEPT_STRING indicates the name
13264 of the exception to which this catchpoint applies.
13266 COND_STRING, if not empty, is the catchpoint condition.
13268 TEMPFLAG, if nonzero, means that the underlying breakpoint
13269 should be temporary.
13271 FROM_TTY is the usual argument passed to all commands implementations. */
13274 create_ada_exception_catchpoint (struct gdbarch *gdbarch,
13275 enum ada_exception_catchpoint_kind ex_kind,
13276 const std::string &excep_string,
13277 const std::string &cond_string,
13282 std::string addr_string;
13283 const struct breakpoint_ops *ops = NULL;
13284 struct symtab_and_line sal = ada_exception_sal (ex_kind, &addr_string, &ops);
13286 std::unique_ptr<ada_catchpoint> c (new ada_catchpoint ());
13287 init_ada_exception_breakpoint (c.get (), gdbarch, sal, addr_string.c_str (),
13288 ops, tempflag, disabled, from_tty);
13289 c->excep_string = excep_string;
13290 create_excep_cond_exprs (c.get (), ex_kind);
13291 if (!cond_string.empty ())
13292 set_breakpoint_condition (c.get (), cond_string.c_str (), from_tty);
13293 install_breakpoint (0, std::move (c), 1);
13296 /* Implement the "catch exception" command. */
13299 catch_ada_exception_command (const char *arg_entry, int from_tty,
13300 struct cmd_list_element *command)
13302 const char *arg = arg_entry;
13303 struct gdbarch *gdbarch = get_current_arch ();
13305 enum ada_exception_catchpoint_kind ex_kind;
13306 std::string excep_string;
13307 std::string cond_string;
13309 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
13313 catch_ada_exception_command_split (arg, false, &ex_kind, &excep_string,
13315 create_ada_exception_catchpoint (gdbarch, ex_kind,
13316 excep_string, cond_string,
13317 tempflag, 1 /* enabled */,
13321 /* Implement the "catch handlers" command. */
13324 catch_ada_handlers_command (const char *arg_entry, int from_tty,
13325 struct cmd_list_element *command)
13327 const char *arg = arg_entry;
13328 struct gdbarch *gdbarch = get_current_arch ();
13330 enum ada_exception_catchpoint_kind ex_kind;
13331 std::string excep_string;
13332 std::string cond_string;
13334 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
13338 catch_ada_exception_command_split (arg, true, &ex_kind, &excep_string,
13340 create_ada_exception_catchpoint (gdbarch, ex_kind,
13341 excep_string, cond_string,
13342 tempflag, 1 /* enabled */,
13346 /* Completion function for the Ada "catch" commands. */
13349 catch_ada_completer (struct cmd_list_element *cmd, completion_tracker &tracker,
13350 const char *text, const char *word)
13352 std::vector<ada_exc_info> exceptions = ada_exceptions_list (NULL);
13354 for (const ada_exc_info &info : exceptions)
13356 if (startswith (info.name, word))
13357 tracker.add_completion
13358 (gdb::unique_xmalloc_ptr<char> (xstrdup (info.name)));
13362 /* Split the arguments specified in a "catch assert" command.
13364 ARGS contains the command's arguments (or the empty string if
13365 no arguments were passed).
13367 If ARGS contains a condition, set COND_STRING to that condition
13368 (the memory needs to be deallocated after use). */
13371 catch_ada_assert_command_split (const char *args, std::string &cond_string)
13373 args = skip_spaces (args);
13375 /* Check whether a condition was provided. */
13376 if (startswith (args, "if")
13377 && (isspace (args[2]) || args[2] == '\0'))
13380 args = skip_spaces (args);
13381 if (args[0] == '\0')
13382 error (_("condition missing after `if' keyword"));
13383 cond_string.assign (args);
13386 /* Otherwise, there should be no other argument at the end of
13388 else if (args[0] != '\0')
13389 error (_("Junk at end of arguments."));
13392 /* Implement the "catch assert" command. */
13395 catch_assert_command (const char *arg_entry, int from_tty,
13396 struct cmd_list_element *command)
13398 const char *arg = arg_entry;
13399 struct gdbarch *gdbarch = get_current_arch ();
13401 std::string cond_string;
13403 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
13407 catch_ada_assert_command_split (arg, cond_string);
13408 create_ada_exception_catchpoint (gdbarch, ada_catch_assert,
13410 tempflag, 1 /* enabled */,
13414 /* Return non-zero if the symbol SYM is an Ada exception object. */
13417 ada_is_exception_sym (struct symbol *sym)
13419 const char *type_name = TYPE_NAME (SYMBOL_TYPE (sym));
13421 return (SYMBOL_CLASS (sym) != LOC_TYPEDEF
13422 && SYMBOL_CLASS (sym) != LOC_BLOCK
13423 && SYMBOL_CLASS (sym) != LOC_CONST
13424 && SYMBOL_CLASS (sym) != LOC_UNRESOLVED
13425 && type_name != NULL && strcmp (type_name, "exception") == 0);
13428 /* Given a global symbol SYM, return non-zero iff SYM is a non-standard
13429 Ada exception object. This matches all exceptions except the ones
13430 defined by the Ada language. */
13433 ada_is_non_standard_exception_sym (struct symbol *sym)
13437 if (!ada_is_exception_sym (sym))
13440 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
13441 if (strcmp (SYMBOL_LINKAGE_NAME (sym), standard_exc[i]) == 0)
13442 return 0; /* A standard exception. */
13444 /* Numeric_Error is also a standard exception, so exclude it.
13445 See the STANDARD_EXC description for more details as to why
13446 this exception is not listed in that array. */
13447 if (strcmp (SYMBOL_LINKAGE_NAME (sym), "numeric_error") == 0)
13453 /* A helper function for std::sort, comparing two struct ada_exc_info
13456 The comparison is determined first by exception name, and then
13457 by exception address. */
13460 ada_exc_info::operator< (const ada_exc_info &other) const
13464 result = strcmp (name, other.name);
13467 if (result == 0 && addr < other.addr)
13473 ada_exc_info::operator== (const ada_exc_info &other) const
13475 return addr == other.addr && strcmp (name, other.name) == 0;
13478 /* Sort EXCEPTIONS using compare_ada_exception_info as the comparison
13479 routine, but keeping the first SKIP elements untouched.
13481 All duplicates are also removed. */
13484 sort_remove_dups_ada_exceptions_list (std::vector<ada_exc_info> *exceptions,
13487 std::sort (exceptions->begin () + skip, exceptions->end ());
13488 exceptions->erase (std::unique (exceptions->begin () + skip, exceptions->end ()),
13489 exceptions->end ());
13492 /* Add all exceptions defined by the Ada standard whose name match
13493 a regular expression.
13495 If PREG is not NULL, then this regexp_t object is used to
13496 perform the symbol name matching. Otherwise, no name-based
13497 filtering is performed.
13499 EXCEPTIONS is a vector of exceptions to which matching exceptions
13503 ada_add_standard_exceptions (compiled_regex *preg,
13504 std::vector<ada_exc_info> *exceptions)
13508 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
13511 || preg->exec (standard_exc[i], 0, NULL, 0) == 0)
13513 struct bound_minimal_symbol msymbol
13514 = ada_lookup_simple_minsym (standard_exc[i]);
13516 if (msymbol.minsym != NULL)
13518 struct ada_exc_info info
13519 = {standard_exc[i], BMSYMBOL_VALUE_ADDRESS (msymbol)};
13521 exceptions->push_back (info);
13527 /* Add all Ada exceptions defined locally and accessible from the given
13530 If PREG is not NULL, then this regexp_t object is used to
13531 perform the symbol name matching. Otherwise, no name-based
13532 filtering is performed.
13534 EXCEPTIONS is a vector of exceptions to which matching exceptions
13538 ada_add_exceptions_from_frame (compiled_regex *preg,
13539 struct frame_info *frame,
13540 std::vector<ada_exc_info> *exceptions)
13542 const struct block *block = get_frame_block (frame, 0);
13546 struct block_iterator iter;
13547 struct symbol *sym;
13549 ALL_BLOCK_SYMBOLS (block, iter, sym)
13551 switch (SYMBOL_CLASS (sym))
13558 if (ada_is_exception_sym (sym))
13560 struct ada_exc_info info = {SYMBOL_PRINT_NAME (sym),
13561 SYMBOL_VALUE_ADDRESS (sym)};
13563 exceptions->push_back (info);
13567 if (BLOCK_FUNCTION (block) != NULL)
13569 block = BLOCK_SUPERBLOCK (block);
13573 /* Return true if NAME matches PREG or if PREG is NULL. */
13576 name_matches_regex (const char *name, compiled_regex *preg)
13578 return (preg == NULL
13579 || preg->exec (ada_decode (name), 0, NULL, 0) == 0);
13582 /* Add all exceptions defined globally whose name name match
13583 a regular expression, excluding standard exceptions.
13585 The reason we exclude standard exceptions is that they need
13586 to be handled separately: Standard exceptions are defined inside
13587 a runtime unit which is normally not compiled with debugging info,
13588 and thus usually do not show up in our symbol search. However,
13589 if the unit was in fact built with debugging info, we need to
13590 exclude them because they would duplicate the entry we found
13591 during the special loop that specifically searches for those
13592 standard exceptions.
13594 If PREG is not NULL, then this regexp_t object is used to
13595 perform the symbol name matching. Otherwise, no name-based
13596 filtering is performed.
13598 EXCEPTIONS is a vector of exceptions to which matching exceptions
13602 ada_add_global_exceptions (compiled_regex *preg,
13603 std::vector<ada_exc_info> *exceptions)
13605 /* In Ada, the symbol "search name" is a linkage name, whereas the
13606 regular expression used to do the matching refers to the natural
13607 name. So match against the decoded name. */
13608 expand_symtabs_matching (NULL,
13609 lookup_name_info::match_any (),
13610 [&] (const char *search_name)
13612 const char *decoded = ada_decode (search_name);
13613 return name_matches_regex (decoded, preg);
13618 for (objfile *objfile : current_program_space->objfiles ())
13620 for (compunit_symtab *s : objfile->compunits ())
13622 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (s);
13625 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
13627 const struct block *b = BLOCKVECTOR_BLOCK (bv, i);
13628 struct block_iterator iter;
13629 struct symbol *sym;
13631 ALL_BLOCK_SYMBOLS (b, iter, sym)
13632 if (ada_is_non_standard_exception_sym (sym)
13633 && name_matches_regex (SYMBOL_NATURAL_NAME (sym), preg))
13635 struct ada_exc_info info
13636 = {SYMBOL_PRINT_NAME (sym), SYMBOL_VALUE_ADDRESS (sym)};
13638 exceptions->push_back (info);
13645 /* Implements ada_exceptions_list with the regular expression passed
13646 as a regex_t, rather than a string.
13648 If not NULL, PREG is used to filter out exceptions whose names
13649 do not match. Otherwise, all exceptions are listed. */
13651 static std::vector<ada_exc_info>
13652 ada_exceptions_list_1 (compiled_regex *preg)
13654 std::vector<ada_exc_info> result;
13657 /* First, list the known standard exceptions. These exceptions
13658 need to be handled separately, as they are usually defined in
13659 runtime units that have been compiled without debugging info. */
13661 ada_add_standard_exceptions (preg, &result);
13663 /* Next, find all exceptions whose scope is local and accessible
13664 from the currently selected frame. */
13666 if (has_stack_frames ())
13668 prev_len = result.size ();
13669 ada_add_exceptions_from_frame (preg, get_selected_frame (NULL),
13671 if (result.size () > prev_len)
13672 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13675 /* Add all exceptions whose scope is global. */
13677 prev_len = result.size ();
13678 ada_add_global_exceptions (preg, &result);
13679 if (result.size () > prev_len)
13680 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13685 /* Return a vector of ada_exc_info.
13687 If REGEXP is NULL, all exceptions are included in the result.
13688 Otherwise, it should contain a valid regular expression,
13689 and only the exceptions whose names match that regular expression
13690 are included in the result.
13692 The exceptions are sorted in the following order:
13693 - Standard exceptions (defined by the Ada language), in
13694 alphabetical order;
13695 - Exceptions only visible from the current frame, in
13696 alphabetical order;
13697 - Exceptions whose scope is global, in alphabetical order. */
13699 std::vector<ada_exc_info>
13700 ada_exceptions_list (const char *regexp)
13702 if (regexp == NULL)
13703 return ada_exceptions_list_1 (NULL);
13705 compiled_regex reg (regexp, REG_NOSUB, _("invalid regular expression"));
13706 return ada_exceptions_list_1 (®);
13709 /* Implement the "info exceptions" command. */
13712 info_exceptions_command (const char *regexp, int from_tty)
13714 struct gdbarch *gdbarch = get_current_arch ();
13716 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp);
13718 if (regexp != NULL)
13720 (_("All Ada exceptions matching regular expression \"%s\":\n"), regexp);
13722 printf_filtered (_("All defined Ada exceptions:\n"));
13724 for (const ada_exc_info &info : exceptions)
13725 printf_filtered ("%s: %s\n", info.name, paddress (gdbarch, info.addr));
13729 /* Information about operators given special treatment in functions
13731 /* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */
13733 #define ADA_OPERATORS \
13734 OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \
13735 OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \
13736 OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \
13737 OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \
13738 OP_DEFN (OP_ATR_LAST, 1, 2, 0) \
13739 OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \
13740 OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \
13741 OP_DEFN (OP_ATR_MAX, 1, 3, 0) \
13742 OP_DEFN (OP_ATR_MIN, 1, 3, 0) \
13743 OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \
13744 OP_DEFN (OP_ATR_POS, 1, 2, 0) \
13745 OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \
13746 OP_DEFN (OP_ATR_TAG, 1, 1, 0) \
13747 OP_DEFN (OP_ATR_VAL, 1, 2, 0) \
13748 OP_DEFN (UNOP_QUAL, 3, 1, 0) \
13749 OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \
13750 OP_DEFN (OP_OTHERS, 1, 1, 0) \
13751 OP_DEFN (OP_POSITIONAL, 3, 1, 0) \
13752 OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0)
13755 ada_operator_length (const struct expression *exp, int pc, int *oplenp,
13758 switch (exp->elts[pc - 1].opcode)
13761 operator_length_standard (exp, pc, oplenp, argsp);
13764 #define OP_DEFN(op, len, args, binop) \
13765 case op: *oplenp = len; *argsp = args; break;
13771 *argsp = longest_to_int (exp->elts[pc - 2].longconst);
13776 *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1;
13781 /* Implementation of the exp_descriptor method operator_check. */
13784 ada_operator_check (struct expression *exp, int pos,
13785 int (*objfile_func) (struct objfile *objfile, void *data),
13788 const union exp_element *const elts = exp->elts;
13789 struct type *type = NULL;
13791 switch (elts[pos].opcode)
13793 case UNOP_IN_RANGE:
13795 type = elts[pos + 1].type;
13799 return operator_check_standard (exp, pos, objfile_func, data);
13802 /* Invoke callbacks for TYPE and OBJFILE if they were set as non-NULL. */
13804 if (type && TYPE_OBJFILE (type)
13805 && (*objfile_func) (TYPE_OBJFILE (type), data))
13811 static const char *
13812 ada_op_name (enum exp_opcode opcode)
13817 return op_name_standard (opcode);
13819 #define OP_DEFN(op, len, args, binop) case op: return #op;
13824 return "OP_AGGREGATE";
13826 return "OP_CHOICES";
13832 /* As for operator_length, but assumes PC is pointing at the first
13833 element of the operator, and gives meaningful results only for the
13834 Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */
13837 ada_forward_operator_length (struct expression *exp, int pc,
13838 int *oplenp, int *argsp)
13840 switch (exp->elts[pc].opcode)
13843 *oplenp = *argsp = 0;
13846 #define OP_DEFN(op, len, args, binop) \
13847 case op: *oplenp = len; *argsp = args; break;
13853 *argsp = longest_to_int (exp->elts[pc + 1].longconst);
13858 *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1;
13864 int len = longest_to_int (exp->elts[pc + 1].longconst);
13866 *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1);
13874 ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
13876 enum exp_opcode op = exp->elts[elt].opcode;
13881 ada_forward_operator_length (exp, elt, &oplen, &nargs);
13885 /* Ada attributes ('Foo). */
13888 case OP_ATR_LENGTH:
13892 case OP_ATR_MODULUS:
13899 case UNOP_IN_RANGE:
13901 /* XXX: gdb_sprint_host_address, type_sprint */
13902 fprintf_filtered (stream, _("Type @"));
13903 gdb_print_host_address (exp->elts[pc + 1].type, stream);
13904 fprintf_filtered (stream, " (");
13905 type_print (exp->elts[pc + 1].type, NULL, stream, 0);
13906 fprintf_filtered (stream, ")");
13908 case BINOP_IN_BOUNDS:
13909 fprintf_filtered (stream, " (%d)",
13910 longest_to_int (exp->elts[pc + 2].longconst));
13912 case TERNOP_IN_RANGE:
13917 case OP_DISCRETE_RANGE:
13918 case OP_POSITIONAL:
13925 char *name = &exp->elts[elt + 2].string;
13926 int len = longest_to_int (exp->elts[elt + 1].longconst);
13928 fprintf_filtered (stream, "Text: `%.*s'", len, name);
13933 return dump_subexp_body_standard (exp, stream, elt);
13937 for (i = 0; i < nargs; i += 1)
13938 elt = dump_subexp (exp, stream, elt);
13943 /* The Ada extension of print_subexp (q.v.). */
13946 ada_print_subexp (struct expression *exp, int *pos,
13947 struct ui_file *stream, enum precedence prec)
13949 int oplen, nargs, i;
13951 enum exp_opcode op = exp->elts[pc].opcode;
13953 ada_forward_operator_length (exp, pc, &oplen, &nargs);
13960 print_subexp_standard (exp, pos, stream, prec);
13964 fputs_filtered (SYMBOL_NATURAL_NAME (exp->elts[pc + 2].symbol), stream);
13967 case BINOP_IN_BOUNDS:
13968 /* XXX: sprint_subexp */
13969 print_subexp (exp, pos, stream, PREC_SUFFIX);
13970 fputs_filtered (" in ", stream);
13971 print_subexp (exp, pos, stream, PREC_SUFFIX);
13972 fputs_filtered ("'range", stream);
13973 if (exp->elts[pc + 1].longconst > 1)
13974 fprintf_filtered (stream, "(%ld)",
13975 (long) exp->elts[pc + 1].longconst);
13978 case TERNOP_IN_RANGE:
13979 if (prec >= PREC_EQUAL)
13980 fputs_filtered ("(", stream);
13981 /* XXX: sprint_subexp */
13982 print_subexp (exp, pos, stream, PREC_SUFFIX);
13983 fputs_filtered (" in ", stream);
13984 print_subexp (exp, pos, stream, PREC_EQUAL);
13985 fputs_filtered (" .. ", stream);
13986 print_subexp (exp, pos, stream, PREC_EQUAL);
13987 if (prec >= PREC_EQUAL)
13988 fputs_filtered (")", stream);
13993 case OP_ATR_LENGTH:
13997 case OP_ATR_MODULUS:
14002 if (exp->elts[*pos].opcode == OP_TYPE)
14004 if (TYPE_CODE (exp->elts[*pos + 1].type) != TYPE_CODE_VOID)
14005 LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0,
14006 &type_print_raw_options);
14010 print_subexp (exp, pos, stream, PREC_SUFFIX);
14011 fprintf_filtered (stream, "'%s", ada_attribute_name (op));
14016 for (tem = 1; tem < nargs; tem += 1)
14018 fputs_filtered ((tem == 1) ? " (" : ", ", stream);
14019 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
14021 fputs_filtered (")", stream);
14026 type_print (exp->elts[pc + 1].type, "", stream, 0);
14027 fputs_filtered ("'(", stream);
14028 print_subexp (exp, pos, stream, PREC_PREFIX);
14029 fputs_filtered (")", stream);
14032 case UNOP_IN_RANGE:
14033 /* XXX: sprint_subexp */
14034 print_subexp (exp, pos, stream, PREC_SUFFIX);
14035 fputs_filtered (" in ", stream);
14036 LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0,
14037 &type_print_raw_options);
14040 case OP_DISCRETE_RANGE:
14041 print_subexp (exp, pos, stream, PREC_SUFFIX);
14042 fputs_filtered ("..", stream);
14043 print_subexp (exp, pos, stream, PREC_SUFFIX);
14047 fputs_filtered ("others => ", stream);
14048 print_subexp (exp, pos, stream, PREC_SUFFIX);
14052 for (i = 0; i < nargs-1; i += 1)
14055 fputs_filtered ("|", stream);
14056 print_subexp (exp, pos, stream, PREC_SUFFIX);
14058 fputs_filtered (" => ", stream);
14059 print_subexp (exp, pos, stream, PREC_SUFFIX);
14062 case OP_POSITIONAL:
14063 print_subexp (exp, pos, stream, PREC_SUFFIX);
14067 fputs_filtered ("(", stream);
14068 for (i = 0; i < nargs; i += 1)
14071 fputs_filtered (", ", stream);
14072 print_subexp (exp, pos, stream, PREC_SUFFIX);
14074 fputs_filtered (")", stream);
14079 /* Table mapping opcodes into strings for printing operators
14080 and precedences of the operators. */
14082 static const struct op_print ada_op_print_tab[] = {
14083 {":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
14084 {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
14085 {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
14086 {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
14087 {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
14088 {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
14089 {"=", BINOP_EQUAL, PREC_EQUAL, 0},
14090 {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
14091 {"<=", BINOP_LEQ, PREC_ORDER, 0},
14092 {">=", BINOP_GEQ, PREC_ORDER, 0},
14093 {">", BINOP_GTR, PREC_ORDER, 0},
14094 {"<", BINOP_LESS, PREC_ORDER, 0},
14095 {">>", BINOP_RSH, PREC_SHIFT, 0},
14096 {"<<", BINOP_LSH, PREC_SHIFT, 0},
14097 {"+", BINOP_ADD, PREC_ADD, 0},
14098 {"-", BINOP_SUB, PREC_ADD, 0},
14099 {"&", BINOP_CONCAT, PREC_ADD, 0},
14100 {"*", BINOP_MUL, PREC_MUL, 0},
14101 {"/", BINOP_DIV, PREC_MUL, 0},
14102 {"rem", BINOP_REM, PREC_MUL, 0},
14103 {"mod", BINOP_MOD, PREC_MUL, 0},
14104 {"**", BINOP_EXP, PREC_REPEAT, 0},
14105 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
14106 {"-", UNOP_NEG, PREC_PREFIX, 0},
14107 {"+", UNOP_PLUS, PREC_PREFIX, 0},
14108 {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
14109 {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0},
14110 {"abs ", UNOP_ABS, PREC_PREFIX, 0},
14111 {".all", UNOP_IND, PREC_SUFFIX, 1},
14112 {"'access", UNOP_ADDR, PREC_SUFFIX, 1},
14113 {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1},
14114 {NULL, OP_NULL, PREC_SUFFIX, 0}
14117 enum ada_primitive_types {
14118 ada_primitive_type_int,
14119 ada_primitive_type_long,
14120 ada_primitive_type_short,
14121 ada_primitive_type_char,
14122 ada_primitive_type_float,
14123 ada_primitive_type_double,
14124 ada_primitive_type_void,
14125 ada_primitive_type_long_long,
14126 ada_primitive_type_long_double,
14127 ada_primitive_type_natural,
14128 ada_primitive_type_positive,
14129 ada_primitive_type_system_address,
14130 ada_primitive_type_storage_offset,
14131 nr_ada_primitive_types
14135 ada_language_arch_info (struct gdbarch *gdbarch,
14136 struct language_arch_info *lai)
14138 const struct builtin_type *builtin = builtin_type (gdbarch);
14140 lai->primitive_type_vector
14141 = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_ada_primitive_types + 1,
14144 lai->primitive_type_vector [ada_primitive_type_int]
14145 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
14147 lai->primitive_type_vector [ada_primitive_type_long]
14148 = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
14149 0, "long_integer");
14150 lai->primitive_type_vector [ada_primitive_type_short]
14151 = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
14152 0, "short_integer");
14153 lai->string_char_type
14154 = lai->primitive_type_vector [ada_primitive_type_char]
14155 = arch_character_type (gdbarch, TARGET_CHAR_BIT, 0, "character");
14156 lai->primitive_type_vector [ada_primitive_type_float]
14157 = arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
14158 "float", gdbarch_float_format (gdbarch));
14159 lai->primitive_type_vector [ada_primitive_type_double]
14160 = arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
14161 "long_float", gdbarch_double_format (gdbarch));
14162 lai->primitive_type_vector [ada_primitive_type_long_long]
14163 = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
14164 0, "long_long_integer");
14165 lai->primitive_type_vector [ada_primitive_type_long_double]
14166 = arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
14167 "long_long_float", gdbarch_long_double_format (gdbarch));
14168 lai->primitive_type_vector [ada_primitive_type_natural]
14169 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
14171 lai->primitive_type_vector [ada_primitive_type_positive]
14172 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
14174 lai->primitive_type_vector [ada_primitive_type_void]
14175 = builtin->builtin_void;
14177 lai->primitive_type_vector [ada_primitive_type_system_address]
14178 = lookup_pointer_type (arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT,
14180 TYPE_NAME (lai->primitive_type_vector [ada_primitive_type_system_address])
14181 = "system__address";
14183 /* Create the equivalent of the System.Storage_Elements.Storage_Offset
14184 type. This is a signed integral type whose size is the same as
14185 the size of addresses. */
14187 unsigned int addr_length = TYPE_LENGTH
14188 (lai->primitive_type_vector [ada_primitive_type_system_address]);
14190 lai->primitive_type_vector [ada_primitive_type_storage_offset]
14191 = arch_integer_type (gdbarch, addr_length * HOST_CHAR_BIT, 0,
14195 lai->bool_type_symbol = NULL;
14196 lai->bool_type_default = builtin->builtin_bool;
14199 /* Language vector */
14201 /* Not really used, but needed in the ada_language_defn. */
14204 emit_char (int c, struct type *type, struct ui_file *stream, int quoter)
14206 ada_emit_char (c, type, stream, quoter, 1);
14210 parse (struct parser_state *ps)
14212 warnings_issued = 0;
14213 return ada_parse (ps);
14216 static const struct exp_descriptor ada_exp_descriptor = {
14218 ada_operator_length,
14219 ada_operator_check,
14221 ada_dump_subexp_body,
14222 ada_evaluate_subexp
14225 /* symbol_name_matcher_ftype adapter for wild_match. */
14228 do_wild_match (const char *symbol_search_name,
14229 const lookup_name_info &lookup_name,
14230 completion_match_result *comp_match_res)
14232 return wild_match (symbol_search_name, ada_lookup_name (lookup_name));
14235 /* symbol_name_matcher_ftype adapter for full_match. */
14238 do_full_match (const char *symbol_search_name,
14239 const lookup_name_info &lookup_name,
14240 completion_match_result *comp_match_res)
14242 return full_match (symbol_search_name, ada_lookup_name (lookup_name));
14245 /* symbol_name_matcher_ftype for exact (verbatim) matches. */
14248 do_exact_match (const char *symbol_search_name,
14249 const lookup_name_info &lookup_name,
14250 completion_match_result *comp_match_res)
14252 return strcmp (symbol_search_name, ada_lookup_name (lookup_name)) == 0;
14255 /* Build the Ada lookup name for LOOKUP_NAME. */
14257 ada_lookup_name_info::ada_lookup_name_info (const lookup_name_info &lookup_name)
14259 const std::string &user_name = lookup_name.name ();
14261 if (user_name[0] == '<')
14263 if (user_name.back () == '>')
14264 m_encoded_name = user_name.substr (1, user_name.size () - 2);
14266 m_encoded_name = user_name.substr (1, user_name.size () - 1);
14267 m_encoded_p = true;
14268 m_verbatim_p = true;
14269 m_wild_match_p = false;
14270 m_standard_p = false;
14274 m_verbatim_p = false;
14276 m_encoded_p = user_name.find ("__") != std::string::npos;
14280 const char *folded = ada_fold_name (user_name.c_str ());
14281 const char *encoded = ada_encode_1 (folded, false);
14282 if (encoded != NULL)
14283 m_encoded_name = encoded;
14285 m_encoded_name = user_name;
14288 m_encoded_name = user_name;
14290 /* Handle the 'package Standard' special case. See description
14291 of m_standard_p. */
14292 if (startswith (m_encoded_name.c_str (), "standard__"))
14294 m_encoded_name = m_encoded_name.substr (sizeof ("standard__") - 1);
14295 m_standard_p = true;
14298 m_standard_p = false;
14300 /* If the name contains a ".", then the user is entering a fully
14301 qualified entity name, and the match must not be done in wild
14302 mode. Similarly, if the user wants to complete what looks
14303 like an encoded name, the match must not be done in wild
14304 mode. Also, in the standard__ special case always do
14305 non-wild matching. */
14307 = (lookup_name.match_type () != symbol_name_match_type::FULL
14310 && user_name.find ('.') == std::string::npos);
14314 /* symbol_name_matcher_ftype method for Ada. This only handles
14315 completion mode. */
14318 ada_symbol_name_matches (const char *symbol_search_name,
14319 const lookup_name_info &lookup_name,
14320 completion_match_result *comp_match_res)
14322 return lookup_name.ada ().matches (symbol_search_name,
14323 lookup_name.match_type (),
14327 /* A name matcher that matches the symbol name exactly, with
14331 literal_symbol_name_matcher (const char *symbol_search_name,
14332 const lookup_name_info &lookup_name,
14333 completion_match_result *comp_match_res)
14335 const std::string &name = lookup_name.name ();
14337 int cmp = (lookup_name.completion_mode ()
14338 ? strncmp (symbol_search_name, name.c_str (), name.size ())
14339 : strcmp (symbol_search_name, name.c_str ()));
14342 if (comp_match_res != NULL)
14343 comp_match_res->set_match (symbol_search_name);
14350 /* Implement the "la_get_symbol_name_matcher" language_defn method for
14353 static symbol_name_matcher_ftype *
14354 ada_get_symbol_name_matcher (const lookup_name_info &lookup_name)
14356 if (lookup_name.match_type () == symbol_name_match_type::SEARCH_NAME)
14357 return literal_symbol_name_matcher;
14359 if (lookup_name.completion_mode ())
14360 return ada_symbol_name_matches;
14363 if (lookup_name.ada ().wild_match_p ())
14364 return do_wild_match;
14365 else if (lookup_name.ada ().verbatim_p ())
14366 return do_exact_match;
14368 return do_full_match;
14372 /* Implement the "la_read_var_value" language_defn method for Ada. */
14374 static struct value *
14375 ada_read_var_value (struct symbol *var, const struct block *var_block,
14376 struct frame_info *frame)
14378 const struct block *frame_block = NULL;
14379 struct symbol *renaming_sym = NULL;
14381 /* The only case where default_read_var_value is not sufficient
14382 is when VAR is a renaming... */
14384 frame_block = get_frame_block (frame, NULL);
14386 renaming_sym = ada_find_renaming_symbol (var, frame_block);
14387 if (renaming_sym != NULL)
14388 return ada_read_renaming_var_value (renaming_sym, frame_block);
14390 /* This is a typical case where we expect the default_read_var_value
14391 function to work. */
14392 return default_read_var_value (var, var_block, frame);
14395 static const char *ada_extensions[] =
14397 ".adb", ".ads", ".a", ".ada", ".dg", NULL
14400 extern const struct language_defn ada_language_defn = {
14401 "ada", /* Language name */
14405 case_sensitive_on, /* Yes, Ada is case-insensitive, but
14406 that's not quite what this means. */
14408 macro_expansion_no,
14410 &ada_exp_descriptor,
14413 ada_printchar, /* Print a character constant */
14414 ada_printstr, /* Function to print string constant */
14415 emit_char, /* Function to print single char (not used) */
14416 ada_print_type, /* Print a type using appropriate syntax */
14417 ada_print_typedef, /* Print a typedef using appropriate syntax */
14418 ada_val_print, /* Print a value using appropriate syntax */
14419 ada_value_print, /* Print a top-level value */
14420 ada_read_var_value, /* la_read_var_value */
14421 NULL, /* Language specific skip_trampoline */
14422 NULL, /* name_of_this */
14423 true, /* la_store_sym_names_in_linkage_form_p */
14424 ada_lookup_symbol_nonlocal, /* Looking up non-local symbols. */
14425 basic_lookup_transparent_type, /* lookup_transparent_type */
14426 ada_la_decode, /* Language specific symbol demangler */
14427 ada_sniff_from_mangled_name,
14428 NULL, /* Language specific
14429 class_name_from_physname */
14430 ada_op_print_tab, /* expression operators for printing */
14431 0, /* c-style arrays */
14432 1, /* String lower bound */
14433 ada_get_gdb_completer_word_break_characters,
14434 ada_collect_symbol_completion_matches,
14435 ada_language_arch_info,
14436 ada_print_array_index,
14437 default_pass_by_reference,
14439 ada_watch_location_expression,
14440 ada_get_symbol_name_matcher, /* la_get_symbol_name_matcher */
14441 ada_iterate_over_symbols,
14442 default_search_name_hash,
14446 ada_is_string_type,
14447 "(...)" /* la_struct_too_deep_ellipsis */
14450 /* Command-list for the "set/show ada" prefix command. */
14451 static struct cmd_list_element *set_ada_list;
14452 static struct cmd_list_element *show_ada_list;
14454 /* Implement the "set ada" prefix command. */
14457 set_ada_command (const char *arg, int from_tty)
14459 printf_unfiltered (_(\
14460 "\"set ada\" must be followed by the name of a setting.\n"));
14461 help_list (set_ada_list, "set ada ", all_commands, gdb_stdout);
14464 /* Implement the "show ada" prefix command. */
14467 show_ada_command (const char *args, int from_tty)
14469 cmd_show_list (show_ada_list, from_tty, "");
14473 initialize_ada_catchpoint_ops (void)
14475 struct breakpoint_ops *ops;
14477 initialize_breakpoint_ops ();
14479 ops = &catch_exception_breakpoint_ops;
14480 *ops = bkpt_breakpoint_ops;
14481 ops->allocate_location = allocate_location_catch_exception;
14482 ops->re_set = re_set_catch_exception;
14483 ops->check_status = check_status_catch_exception;
14484 ops->print_it = print_it_catch_exception;
14485 ops->print_one = print_one_catch_exception;
14486 ops->print_mention = print_mention_catch_exception;
14487 ops->print_recreate = print_recreate_catch_exception;
14489 ops = &catch_exception_unhandled_breakpoint_ops;
14490 *ops = bkpt_breakpoint_ops;
14491 ops->allocate_location = allocate_location_catch_exception_unhandled;
14492 ops->re_set = re_set_catch_exception_unhandled;
14493 ops->check_status = check_status_catch_exception_unhandled;
14494 ops->print_it = print_it_catch_exception_unhandled;
14495 ops->print_one = print_one_catch_exception_unhandled;
14496 ops->print_mention = print_mention_catch_exception_unhandled;
14497 ops->print_recreate = print_recreate_catch_exception_unhandled;
14499 ops = &catch_assert_breakpoint_ops;
14500 *ops = bkpt_breakpoint_ops;
14501 ops->allocate_location = allocate_location_catch_assert;
14502 ops->re_set = re_set_catch_assert;
14503 ops->check_status = check_status_catch_assert;
14504 ops->print_it = print_it_catch_assert;
14505 ops->print_one = print_one_catch_assert;
14506 ops->print_mention = print_mention_catch_assert;
14507 ops->print_recreate = print_recreate_catch_assert;
14509 ops = &catch_handlers_breakpoint_ops;
14510 *ops = bkpt_breakpoint_ops;
14511 ops->allocate_location = allocate_location_catch_handlers;
14512 ops->re_set = re_set_catch_handlers;
14513 ops->check_status = check_status_catch_handlers;
14514 ops->print_it = print_it_catch_handlers;
14515 ops->print_one = print_one_catch_handlers;
14516 ops->print_mention = print_mention_catch_handlers;
14517 ops->print_recreate = print_recreate_catch_handlers;
14520 /* This module's 'new_objfile' observer. */
14523 ada_new_objfile_observer (struct objfile *objfile)
14525 ada_clear_symbol_cache ();
14528 /* This module's 'free_objfile' observer. */
14531 ada_free_objfile_observer (struct objfile *objfile)
14533 ada_clear_symbol_cache ();
14537 _initialize_ada_language (void)
14539 initialize_ada_catchpoint_ops ();
14541 add_prefix_cmd ("ada", no_class, set_ada_command,
14542 _("Prefix command for changing Ada-specific settings"),
14543 &set_ada_list, "set ada ", 0, &setlist);
14545 add_prefix_cmd ("ada", no_class, show_ada_command,
14546 _("Generic command for showing Ada-specific settings."),
14547 &show_ada_list, "show ada ", 0, &showlist);
14549 add_setshow_boolean_cmd ("trust-PAD-over-XVS", class_obscure,
14550 &trust_pad_over_xvs, _("\
14551 Enable or disable an optimization trusting PAD types over XVS types"), _("\
14552 Show whether an optimization trusting PAD types over XVS types is activated"),
14554 This is related to the encoding used by the GNAT compiler. The debugger\n\
14555 should normally trust the contents of PAD types, but certain older versions\n\
14556 of GNAT have a bug that sometimes causes the information in the PAD type\n\
14557 to be incorrect. Turning this setting \"off\" allows the debugger to\n\
14558 work around this bug. It is always safe to turn this option \"off\", but\n\
14559 this incurs a slight performance penalty, so it is recommended to NOT change\n\
14560 this option to \"off\" unless necessary."),
14561 NULL, NULL, &set_ada_list, &show_ada_list);
14563 add_setshow_boolean_cmd ("print-signatures", class_vars,
14564 &print_signatures, _("\
14565 Enable or disable the output of formal and return types for functions in the \
14566 overloads selection menu"), _("\
14567 Show whether the output of formal and return types for functions in the \
14568 overloads selection menu is activated"),
14569 NULL, NULL, NULL, &set_ada_list, &show_ada_list);
14571 add_catch_command ("exception", _("\
14572 Catch Ada exceptions, when raised.\n\
14573 Usage: catch exception [ ARG ]\n\
14575 Without any argument, stop when any Ada exception is raised.\n\
14576 If ARG is \"unhandled\" (without the quotes), only stop when the exception\n\
14577 being raised does not have a handler (and will therefore lead to the task's\n\
14579 Otherwise, the catchpoint only stops when the name of the exception being\n\
14580 raised is the same as ARG."),
14581 catch_ada_exception_command,
14582 catch_ada_completer,
14586 add_catch_command ("handlers", _("\
14587 Catch Ada exceptions, when handled.\n\
14588 With an argument, catch only exceptions with the given name."),
14589 catch_ada_handlers_command,
14590 catch_ada_completer,
14593 add_catch_command ("assert", _("\
14594 Catch failed Ada assertions, when raised.\n\
14595 With an argument, catch only exceptions with the given name."),
14596 catch_assert_command,
14601 varsize_limit = 65536;
14602 add_setshow_uinteger_cmd ("varsize-limit", class_support,
14603 &varsize_limit, _("\
14604 Set the maximum number of bytes allowed in a variable-size object."), _("\
14605 Show the maximum number of bytes allowed in a variable-size object."), _("\
14606 Attempts to access an object whose size is not a compile-time constant\n\
14607 and exceeds this limit will cause an error."),
14608 NULL, NULL, &setlist, &showlist);
14610 add_info ("exceptions", info_exceptions_command,
14612 List all Ada exception names.\n\
14613 If a regular expression is passed as an argument, only those matching\n\
14614 the regular expression are listed."));
14616 add_prefix_cmd ("ada", class_maintenance, maint_set_ada_cmd,
14617 _("Set Ada maintenance-related variables."),
14618 &maint_set_ada_cmdlist, "maintenance set ada ",
14619 0/*allow-unknown*/, &maintenance_set_cmdlist);
14621 add_prefix_cmd ("ada", class_maintenance, maint_show_ada_cmd,
14622 _("Show Ada maintenance-related variables"),
14623 &maint_show_ada_cmdlist, "maintenance show ada ",
14624 0/*allow-unknown*/, &maintenance_show_cmdlist);
14626 add_setshow_boolean_cmd
14627 ("ignore-descriptive-types", class_maintenance,
14628 &ada_ignore_descriptive_types_p,
14629 _("Set whether descriptive types generated by GNAT should be ignored."),
14630 _("Show whether descriptive types generated by GNAT should be ignored."),
14632 When enabled, the debugger will stop using the DW_AT_GNAT_descriptive_type\n\
14633 DWARF attribute."),
14634 NULL, NULL, &maint_set_ada_cmdlist, &maint_show_ada_cmdlist);
14636 decoded_names_store = htab_create_alloc (256, htab_hash_string, streq_hash,
14637 NULL, xcalloc, xfree);
14639 /* The ada-lang observers. */
14640 gdb::observers::new_objfile.attach (ada_new_objfile_observer);
14641 gdb::observers::free_objfile.attach (ada_free_objfile_observer);
14642 gdb::observers::inferior_exit.attach (ada_inferior_exit);