Fix TCL error in gdb.python/py-format-string.exp.
[deliverable/binutils-gdb.git] / gdb / ada-lang.c
CommitLineData
6e681866 1/* Ada language support routines for GDB, the GNU debugger.
10a2c479 2
b811d2c2 3 Copyright (C) 1992-2020 Free Software Foundation, Inc.
14f9c5c9 4
a9762ec7 5 This file is part of GDB.
14f9c5c9 6
a9762ec7
JB
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.
14f9c5c9 11
a9762ec7
JB
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.
14f9c5c9 16
a9762ec7
JB
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/>. */
14f9c5c9 19
96d887e8 20
4c4b4cd2 21#include "defs.h"
14f9c5c9 22#include <ctype.h>
d55e5aa6 23#include "gdb_regex.h"
4de283e4
TT
24#include "frame.h"
25#include "symtab.h"
26#include "gdbtypes.h"
14f9c5c9 27#include "gdbcmd.h"
4de283e4
TT
28#include "expression.h"
29#include "parser-defs.h"
30#include "language.h"
31#include "varobj.h"
4de283e4
TT
32#include "inferior.h"
33#include "symfile.h"
34#include "objfiles.h"
35#include "breakpoint.h"
14f9c5c9 36#include "gdbcore.h"
4c4b4cd2 37#include "hashtab.h"
4de283e4
TT
38#include "gdb_obstack.h"
39#include "ada-lang.h"
40#include "completer.h"
4de283e4
TT
41#include "ui-out.h"
42#include "block.h"
04714b91 43#include "infcall.h"
4de283e4
TT
44#include "annotate.h"
45#include "valprint.h"
d55e5aa6 46#include "source.h"
4de283e4 47#include "observable.h"
692465f1 48#include "stack.h"
79d43c61 49#include "typeprint.h"
4de283e4 50#include "namespace.h"
7f6aba03 51#include "cli/cli-style.h"
4de283e4 52
40bc484c 53#include "value.h"
4de283e4
TT
54#include "mi/mi-common.h"
55#include "arch-utils.h"
56#include "cli/cli-utils.h"
268a13a5
TT
57#include "gdbsupport/function-view.h"
58#include "gdbsupport/byte-vector.h"
4de283e4 59#include <algorithm>
ccefe4c4 60
4c4b4cd2 61/* Define whether or not the C operator '/' truncates towards zero for
0963b4bd 62 differently signed operands (truncation direction is undefined in C).
4c4b4cd2
PH
63 Copied from valarith.c. */
64
65#ifndef TRUNCATION_TOWARDS_ZERO
66#define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2)
67#endif
68
d2e4a39e 69static struct type *desc_base_type (struct type *);
14f9c5c9 70
d2e4a39e 71static struct type *desc_bounds_type (struct type *);
14f9c5c9 72
d2e4a39e 73static struct value *desc_bounds (struct value *);
14f9c5c9 74
d2e4a39e 75static int fat_pntr_bounds_bitpos (struct type *);
14f9c5c9 76
d2e4a39e 77static int fat_pntr_bounds_bitsize (struct type *);
14f9c5c9 78
556bdfd4 79static struct type *desc_data_target_type (struct type *);
14f9c5c9 80
d2e4a39e 81static struct value *desc_data (struct value *);
14f9c5c9 82
d2e4a39e 83static int fat_pntr_data_bitpos (struct type *);
14f9c5c9 84
d2e4a39e 85static int fat_pntr_data_bitsize (struct type *);
14f9c5c9 86
d2e4a39e 87static struct value *desc_one_bound (struct value *, int, int);
14f9c5c9 88
d2e4a39e 89static int desc_bound_bitpos (struct type *, int, int);
14f9c5c9 90
d2e4a39e 91static int desc_bound_bitsize (struct type *, int, int);
14f9c5c9 92
d2e4a39e 93static struct type *desc_index_type (struct type *, int);
14f9c5c9 94
d2e4a39e 95static int desc_arity (struct type *);
14f9c5c9 96
d2e4a39e 97static int ada_type_match (struct type *, struct type *, int);
14f9c5c9 98
d2e4a39e 99static int ada_args_match (struct symbol *, struct value **, int);
14f9c5c9 100
40bc484c 101static struct value *make_array_descriptor (struct type *, struct value *);
14f9c5c9 102
4c4b4cd2 103static void ada_add_block_symbols (struct obstack *,
b5ec771e
PA
104 const struct block *,
105 const lookup_name_info &lookup_name,
106 domain_enum, struct objfile *);
14f9c5c9 107
22cee43f 108static void ada_add_all_symbols (struct obstack *, const struct block *,
b5ec771e
PA
109 const lookup_name_info &lookup_name,
110 domain_enum, int, int *);
22cee43f 111
d12307c1 112static int is_nonfunction (struct block_symbol *, int);
14f9c5c9 113
76a01679 114static void add_defn_to_vec (struct obstack *, struct symbol *,
f0c5f9b2 115 const struct block *);
14f9c5c9 116
4c4b4cd2
PH
117static int num_defns_collected (struct obstack *);
118
d12307c1 119static struct block_symbol *defns_collected (struct obstack *, int);
14f9c5c9 120
e9d9f57e 121static struct value *resolve_subexp (expression_up *, int *, int,
699bd4cf
TT
122 struct type *, int,
123 innermost_block_tracker *);
14f9c5c9 124
e9d9f57e 125static void replace_operator_with_call (expression_up *, int, int, int,
270140bd 126 struct symbol *, const struct block *);
14f9c5c9 127
d2e4a39e 128static int possible_user_operator_p (enum exp_opcode, struct value **);
14f9c5c9 129
a121b7c1 130static const char *ada_op_name (enum exp_opcode);
4c4b4cd2
PH
131
132static const char *ada_decoded_op_name (enum exp_opcode);
14f9c5c9 133
d2e4a39e 134static int numeric_type_p (struct type *);
14f9c5c9 135
d2e4a39e 136static int integer_type_p (struct type *);
14f9c5c9 137
d2e4a39e 138static int scalar_type_p (struct type *);
14f9c5c9 139
d2e4a39e 140static int discrete_type_p (struct type *);
14f9c5c9 141
a121b7c1 142static struct type *ada_lookup_struct_elt_type (struct type *, const char *,
988f6b3d 143 int, int);
4c4b4cd2 144
d2e4a39e 145static struct value *evaluate_subexp_type (struct expression *, int *);
14f9c5c9 146
b4ba55a1
JB
147static struct type *ada_find_parallel_type_with_name (struct type *,
148 const char *);
149
d2e4a39e 150static int is_dynamic_field (struct type *, int);
14f9c5c9 151
10a2c479 152static struct type *to_fixed_variant_branch_type (struct type *,
fc1a4b47 153 const gdb_byte *,
4c4b4cd2
PH
154 CORE_ADDR, struct value *);
155
156static struct type *to_fixed_array_type (struct type *, struct value *, int);
14f9c5c9 157
28c85d6c 158static struct type *to_fixed_range_type (struct type *, struct value *);
14f9c5c9 159
d2e4a39e 160static struct type *to_static_fixed_type (struct type *);
f192137b 161static struct type *static_unwrap_type (struct type *type);
14f9c5c9 162
d2e4a39e 163static struct value *unwrap_value (struct value *);
14f9c5c9 164
ad82864c 165static struct type *constrained_packed_array_type (struct type *, long *);
14f9c5c9 166
ad82864c 167static struct type *decode_constrained_packed_array_type (struct type *);
14f9c5c9 168
ad82864c
JB
169static long decode_packed_array_bitsize (struct type *);
170
171static struct value *decode_constrained_packed_array (struct value *);
172
173static int ada_is_packed_array_type (struct type *);
174
175static int ada_is_unconstrained_packed_array_type (struct type *);
14f9c5c9 176
d2e4a39e 177static struct value *value_subscript_packed (struct value *, int,
4c4b4cd2 178 struct value **);
14f9c5c9 179
4c4b4cd2
PH
180static struct value *coerce_unspec_val_to_type (struct value *,
181 struct type *);
14f9c5c9 182
d2e4a39e 183static int lesseq_defined_than (struct symbol *, struct symbol *);
14f9c5c9 184
d2e4a39e 185static int equiv_types (struct type *, struct type *);
14f9c5c9 186
d2e4a39e 187static int is_name_suffix (const char *);
14f9c5c9 188
73589123
PH
189static int advance_wild_match (const char **, const char *, int);
190
b5ec771e 191static bool wild_match (const char *name, const char *patn);
14f9c5c9 192
d2e4a39e 193static struct value *ada_coerce_ref (struct value *);
14f9c5c9 194
4c4b4cd2
PH
195static LONGEST pos_atr (struct value *);
196
3cb382c9 197static struct value *value_pos_atr (struct type *, struct value *);
14f9c5c9 198
53a47a3e
TT
199static struct value *val_atr (struct type *, LONGEST);
200
d2e4a39e 201static struct value *value_val_atr (struct type *, struct value *);
14f9c5c9 202
4c4b4cd2
PH
203static struct symbol *standard_lookup (const char *, const struct block *,
204 domain_enum);
14f9c5c9 205
108d56a4 206static struct value *ada_search_struct_field (const char *, struct value *, int,
4c4b4cd2
PH
207 struct type *);
208
0d5cff50 209static int find_struct_field (const char *, struct type *, int,
52ce6436 210 struct type **, int *, int *, int *, int *);
4c4b4cd2 211
d12307c1 212static int ada_resolve_function (struct block_symbol *, int,
4c4b4cd2 213 struct value **, int, const char *,
2a612529 214 struct type *, int);
4c4b4cd2 215
4c4b4cd2
PH
216static int ada_is_direct_array_type (struct type *);
217
52ce6436
PH
218static struct value *ada_index_struct_field (int, struct value *, int,
219 struct type *);
220
221static struct value *assign_aggregate (struct value *, struct value *,
0963b4bd
MS
222 struct expression *,
223 int *, enum noside);
52ce6436
PH
224
225static void aggregate_assign_from_choices (struct value *, struct value *,
226 struct expression *,
227 int *, LONGEST *, int *,
228 int, LONGEST, LONGEST);
229
230static void aggregate_assign_positional (struct value *, struct value *,
231 struct expression *,
232 int *, LONGEST *, int *, int,
233 LONGEST, LONGEST);
234
235
236static void aggregate_assign_others (struct value *, struct value *,
237 struct expression *,
238 int *, LONGEST *, int, LONGEST, LONGEST);
239
240
241static void add_component_interval (LONGEST, LONGEST, LONGEST *, int *, int);
242
243
244static struct value *ada_evaluate_subexp (struct type *, struct expression *,
245 int *, enum noside);
246
247static void ada_forward_operator_length (struct expression *, int, int *,
248 int *);
852dff6c
JB
249
250static struct type *ada_find_any_type (const char *name);
b5ec771e
PA
251
252static symbol_name_matcher_ftype *ada_get_symbol_name_matcher
253 (const lookup_name_info &lookup_name);
254
4c4b4cd2
PH
255\f
256
ee01b665
JB
257/* The result of a symbol lookup to be stored in our symbol cache. */
258
259struct cache_entry
260{
261 /* The name used to perform the lookup. */
262 const char *name;
263 /* The namespace used during the lookup. */
fe978cb0 264 domain_enum domain;
ee01b665
JB
265 /* The symbol returned by the lookup, or NULL if no matching symbol
266 was found. */
267 struct symbol *sym;
268 /* The block where the symbol was found, or NULL if no matching
269 symbol was found. */
270 const struct block *block;
271 /* A pointer to the next entry with the same hash. */
272 struct cache_entry *next;
273};
274
275/* The Ada symbol cache, used to store the result of Ada-mode symbol
276 lookups in the course of executing the user's commands.
277
278 The cache is implemented using a simple, fixed-sized hash.
279 The size is fixed on the grounds that there are not likely to be
280 all that many symbols looked up during any given session, regardless
281 of the size of the symbol table. If we decide to go to a resizable
282 table, let's just use the stuff from libiberty instead. */
283
284#define HASH_SIZE 1009
285
286struct ada_symbol_cache
287{
288 /* An obstack used to store the entries in our cache. */
289 struct obstack cache_space;
290
291 /* The root of the hash table used to implement our symbol cache. */
292 struct cache_entry *root[HASH_SIZE];
293};
294
295static void ada_free_symbol_cache (struct ada_symbol_cache *sym_cache);
76a01679 296
4c4b4cd2 297/* Maximum-sized dynamic type. */
14f9c5c9
AS
298static unsigned int varsize_limit;
299
67cb5b2d 300static const char ada_completer_word_break_characters[] =
4c4b4cd2
PH
301#ifdef VMS
302 " \t\n!@#%^&*()+=|~`}{[]\";:?/,-";
303#else
14f9c5c9 304 " \t\n!@#$%^&*()+=|~`}{[]\";:?/,-";
4c4b4cd2 305#endif
14f9c5c9 306
4c4b4cd2 307/* The name of the symbol to use to get the name of the main subprogram. */
76a01679 308static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[]
4c4b4cd2 309 = "__gnat_ada_main_program_name";
14f9c5c9 310
4c4b4cd2
PH
311/* Limit on the number of warnings to raise per expression evaluation. */
312static int warning_limit = 2;
313
314/* Number of warning messages issued; reset to 0 by cleanups after
315 expression evaluation. */
316static int warnings_issued = 0;
317
318static const char *known_runtime_file_name_patterns[] = {
319 ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL
320};
321
322static const char *known_auxiliary_function_name_patterns[] = {
323 ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL
324};
325
c6044dd1
JB
326/* Maintenance-related settings for this module. */
327
328static struct cmd_list_element *maint_set_ada_cmdlist;
329static struct cmd_list_element *maint_show_ada_cmdlist;
330
c6044dd1
JB
331/* The "maintenance ada set/show ignore-descriptive-type" value. */
332
491144b5 333static bool ada_ignore_descriptive_types_p = false;
c6044dd1 334
e802dbe0
JB
335 /* Inferior-specific data. */
336
337/* Per-inferior data for this module. */
338
339struct ada_inferior_data
340{
341 /* The ada__tags__type_specific_data type, which is used when decoding
342 tagged types. With older versions of GNAT, this type was directly
343 accessible through a component ("tsd") in the object tag. But this
344 is no longer the case, so we cache it for each inferior. */
f37b313d 345 struct type *tsd_type = nullptr;
3eecfa55
JB
346
347 /* The exception_support_info data. This data is used to determine
348 how to implement support for Ada exception catchpoints in a given
349 inferior. */
f37b313d 350 const struct exception_support_info *exception_info = nullptr;
e802dbe0
JB
351};
352
353/* Our key to this module's inferior data. */
f37b313d 354static const struct inferior_key<ada_inferior_data> ada_inferior_data;
e802dbe0
JB
355
356/* Return our inferior data for the given inferior (INF).
357
358 This function always returns a valid pointer to an allocated
359 ada_inferior_data structure. If INF's inferior data has not
360 been previously set, this functions creates a new one with all
361 fields set to zero, sets INF's inferior to it, and then returns
362 a pointer to that newly allocated ada_inferior_data. */
363
364static struct ada_inferior_data *
365get_ada_inferior_data (struct inferior *inf)
366{
367 struct ada_inferior_data *data;
368
f37b313d 369 data = ada_inferior_data.get (inf);
e802dbe0 370 if (data == NULL)
f37b313d 371 data = ada_inferior_data.emplace (inf);
e802dbe0
JB
372
373 return data;
374}
375
376/* Perform all necessary cleanups regarding our module's inferior data
377 that is required after the inferior INF just exited. */
378
379static void
380ada_inferior_exit (struct inferior *inf)
381{
f37b313d 382 ada_inferior_data.clear (inf);
e802dbe0
JB
383}
384
ee01b665
JB
385
386 /* program-space-specific data. */
387
388/* This module's per-program-space data. */
389struct ada_pspace_data
390{
f37b313d
TT
391 ~ada_pspace_data ()
392 {
393 if (sym_cache != NULL)
394 ada_free_symbol_cache (sym_cache);
395 }
396
ee01b665 397 /* The Ada symbol cache. */
f37b313d 398 struct ada_symbol_cache *sym_cache = nullptr;
ee01b665
JB
399};
400
401/* Key to our per-program-space data. */
f37b313d 402static const struct program_space_key<ada_pspace_data> ada_pspace_data_handle;
ee01b665
JB
403
404/* Return this module's data for the given program space (PSPACE).
405 If not is found, add a zero'ed one now.
406
407 This function always returns a valid object. */
408
409static struct ada_pspace_data *
410get_ada_pspace_data (struct program_space *pspace)
411{
412 struct ada_pspace_data *data;
413
f37b313d 414 data = ada_pspace_data_handle.get (pspace);
ee01b665 415 if (data == NULL)
f37b313d 416 data = ada_pspace_data_handle.emplace (pspace);
ee01b665
JB
417
418 return data;
419}
420
4c4b4cd2
PH
421 /* Utilities */
422
720d1a40 423/* If TYPE is a TYPE_CODE_TYPEDEF type, return the target type after
eed9788b 424 all typedef layers have been peeled. Otherwise, return TYPE.
720d1a40
JB
425
426 Normally, we really expect a typedef type to only have 1 typedef layer.
427 In other words, we really expect the target type of a typedef type to be
428 a non-typedef type. This is particularly true for Ada units, because
429 the language does not have a typedef vs not-typedef distinction.
430 In that respect, the Ada compiler has been trying to eliminate as many
431 typedef definitions in the debugging information, since they generally
432 do not bring any extra information (we still use typedef under certain
433 circumstances related mostly to the GNAT encoding).
434
435 Unfortunately, we have seen situations where the debugging information
436 generated by the compiler leads to such multiple typedef layers. For
437 instance, consider the following example with stabs:
438
439 .stabs "pck__float_array___XUP:Tt(0,46)=s16P_ARRAY:(0,47)=[...]"[...]
440 .stabs "pck__float_array___XUP:t(0,36)=(0,46)",128,0,6,0
441
442 This is an error in the debugging information which causes type
443 pck__float_array___XUP to be defined twice, and the second time,
444 it is defined as a typedef of a typedef.
445
446 This is on the fringe of legality as far as debugging information is
447 concerned, and certainly unexpected. But it is easy to handle these
448 situations correctly, so we can afford to be lenient in this case. */
449
450static struct type *
451ada_typedef_target_type (struct type *type)
452{
78134374 453 while (type->code () == TYPE_CODE_TYPEDEF)
720d1a40
JB
454 type = TYPE_TARGET_TYPE (type);
455 return type;
456}
457
41d27058
JB
458/* Given DECODED_NAME a string holding a symbol name in its
459 decoded form (ie using the Ada dotted notation), returns
460 its unqualified name. */
461
462static const char *
463ada_unqualified_name (const char *decoded_name)
464{
2b0f535a
JB
465 const char *result;
466
467 /* If the decoded name starts with '<', it means that the encoded
468 name does not follow standard naming conventions, and thus that
469 it is not your typical Ada symbol name. Trying to unqualify it
470 is therefore pointless and possibly erroneous. */
471 if (decoded_name[0] == '<')
472 return decoded_name;
473
474 result = strrchr (decoded_name, '.');
41d27058
JB
475 if (result != NULL)
476 result++; /* Skip the dot... */
477 else
478 result = decoded_name;
479
480 return result;
481}
482
39e7af3e 483/* Return a string starting with '<', followed by STR, and '>'. */
41d27058 484
39e7af3e 485static std::string
41d27058
JB
486add_angle_brackets (const char *str)
487{
39e7af3e 488 return string_printf ("<%s>", str);
41d27058 489}
96d887e8 490
de93309a
SM
491/* Assuming V points to an array of S objects, make sure that it contains at
492 least M objects, updating V and S as necessary. */
493
494#define GROW_VECT(v, s, m) \
495 if ((s) < (m)) (v) = (char *) grow_vect (v, &(s), m, sizeof *(v));
496
f27cf670 497/* Assuming VECT points to an array of *SIZE objects of size
14f9c5c9 498 ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects,
f27cf670 499 updating *SIZE as necessary and returning the (new) array. */
14f9c5c9 500
de93309a 501static void *
f27cf670 502grow_vect (void *vect, size_t *size, size_t min_size, int element_size)
14f9c5c9 503{
d2e4a39e
AS
504 if (*size < min_size)
505 {
506 *size *= 2;
507 if (*size < min_size)
4c4b4cd2 508 *size = min_size;
f27cf670 509 vect = xrealloc (vect, *size * element_size);
d2e4a39e 510 }
f27cf670 511 return vect;
14f9c5c9
AS
512}
513
514/* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing
4c4b4cd2 515 suffix of FIELD_NAME beginning "___". */
14f9c5c9
AS
516
517static int
ebf56fd3 518field_name_match (const char *field_name, const char *target)
14f9c5c9
AS
519{
520 int len = strlen (target);
5b4ee69b 521
d2e4a39e 522 return
4c4b4cd2
PH
523 (strncmp (field_name, target, len) == 0
524 && (field_name[len] == '\0'
61012eef 525 || (startswith (field_name + len, "___")
76a01679
JB
526 && strcmp (field_name + strlen (field_name) - 6,
527 "___XVN") != 0)));
14f9c5c9
AS
528}
529
530
872c8b51
JB
531/* Assuming TYPE is a TYPE_CODE_STRUCT or a TYPE_CODE_TYPDEF to
532 a TYPE_CODE_STRUCT, find the field whose name matches FIELD_NAME,
533 and return its index. This function also handles fields whose name
534 have ___ suffixes because the compiler sometimes alters their name
535 by adding such a suffix to represent fields with certain constraints.
536 If the field could not be found, return a negative number if
537 MAYBE_MISSING is set. Otherwise raise an error. */
4c4b4cd2
PH
538
539int
540ada_get_field_index (const struct type *type, const char *field_name,
541 int maybe_missing)
542{
543 int fieldno;
872c8b51
JB
544 struct type *struct_type = check_typedef ((struct type *) type);
545
1f704f76 546 for (fieldno = 0; fieldno < struct_type->num_fields (); fieldno++)
872c8b51 547 if (field_name_match (TYPE_FIELD_NAME (struct_type, fieldno), field_name))
4c4b4cd2
PH
548 return fieldno;
549
550 if (!maybe_missing)
323e0a4a 551 error (_("Unable to find field %s in struct %s. Aborting"),
7d93a1e0 552 field_name, struct_type->name ());
4c4b4cd2
PH
553
554 return -1;
555}
556
557/* The length of the prefix of NAME prior to any "___" suffix. */
14f9c5c9
AS
558
559int
d2e4a39e 560ada_name_prefix_len (const char *name)
14f9c5c9
AS
561{
562 if (name == NULL)
563 return 0;
d2e4a39e 564 else
14f9c5c9 565 {
d2e4a39e 566 const char *p = strstr (name, "___");
5b4ee69b 567
14f9c5c9 568 if (p == NULL)
4c4b4cd2 569 return strlen (name);
14f9c5c9 570 else
4c4b4cd2 571 return p - name;
14f9c5c9
AS
572 }
573}
574
4c4b4cd2
PH
575/* Return non-zero if SUFFIX is a suffix of STR.
576 Return zero if STR is null. */
577
14f9c5c9 578static int
d2e4a39e 579is_suffix (const char *str, const char *suffix)
14f9c5c9
AS
580{
581 int len1, len2;
5b4ee69b 582
14f9c5c9
AS
583 if (str == NULL)
584 return 0;
585 len1 = strlen (str);
586 len2 = strlen (suffix);
4c4b4cd2 587 return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0);
14f9c5c9
AS
588}
589
4c4b4cd2
PH
590/* The contents of value VAL, treated as a value of type TYPE. The
591 result is an lval in memory if VAL is. */
14f9c5c9 592
d2e4a39e 593static struct value *
4c4b4cd2 594coerce_unspec_val_to_type (struct value *val, struct type *type)
14f9c5c9 595{
61ee279c 596 type = ada_check_typedef (type);
df407dfe 597 if (value_type (val) == type)
4c4b4cd2 598 return val;
d2e4a39e 599 else
14f9c5c9 600 {
4c4b4cd2
PH
601 struct value *result;
602
603 /* Make sure that the object size is not unreasonable before
604 trying to allocate some memory for it. */
c1b5a1a6 605 ada_ensure_varsize_limit (type);
4c4b4cd2 606
41e8491f
JK
607 if (value_lazy (val)
608 || TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val)))
609 result = allocate_value_lazy (type);
610 else
611 {
612 result = allocate_value (type);
9a0dc9e3 613 value_contents_copy_raw (result, 0, val, 0, TYPE_LENGTH (type));
41e8491f 614 }
74bcbdf3 615 set_value_component_location (result, val);
9bbda503
AC
616 set_value_bitsize (result, value_bitsize (val));
617 set_value_bitpos (result, value_bitpos (val));
c408a94f
TT
618 if (VALUE_LVAL (result) == lval_memory)
619 set_value_address (result, value_address (val));
14f9c5c9
AS
620 return result;
621 }
622}
623
fc1a4b47
AC
624static const gdb_byte *
625cond_offset_host (const gdb_byte *valaddr, long offset)
14f9c5c9
AS
626{
627 if (valaddr == NULL)
628 return NULL;
629 else
630 return valaddr + offset;
631}
632
633static CORE_ADDR
ebf56fd3 634cond_offset_target (CORE_ADDR address, long offset)
14f9c5c9
AS
635{
636 if (address == 0)
637 return 0;
d2e4a39e 638 else
14f9c5c9
AS
639 return address + offset;
640}
641
4c4b4cd2
PH
642/* Issue a warning (as for the definition of warning in utils.c, but
643 with exactly one argument rather than ...), unless the limit on the
644 number of warnings has passed during the evaluation of the current
645 expression. */
a2249542 646
77109804
AC
647/* FIXME: cagney/2004-10-10: This function is mimicking the behavior
648 provided by "complaint". */
a0b31db1 649static void lim_warning (const char *format, ...) ATTRIBUTE_PRINTF (1, 2);
77109804 650
14f9c5c9 651static void
a2249542 652lim_warning (const char *format, ...)
14f9c5c9 653{
a2249542 654 va_list args;
a2249542 655
5b4ee69b 656 va_start (args, format);
4c4b4cd2
PH
657 warnings_issued += 1;
658 if (warnings_issued <= warning_limit)
a2249542
MK
659 vwarning (format, args);
660
661 va_end (args);
4c4b4cd2
PH
662}
663
714e53ab
PH
664/* Issue an error if the size of an object of type T is unreasonable,
665 i.e. if it would be a bad idea to allocate a value of this type in
666 GDB. */
667
c1b5a1a6
JB
668void
669ada_ensure_varsize_limit (const struct type *type)
714e53ab
PH
670{
671 if (TYPE_LENGTH (type) > varsize_limit)
323e0a4a 672 error (_("object size is larger than varsize-limit"));
714e53ab
PH
673}
674
0963b4bd 675/* Maximum value of a SIZE-byte signed integer type. */
4c4b4cd2 676static LONGEST
c3e5cd34 677max_of_size (int size)
4c4b4cd2 678{
76a01679 679 LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2);
5b4ee69b 680
76a01679 681 return top_bit | (top_bit - 1);
4c4b4cd2
PH
682}
683
0963b4bd 684/* Minimum value of a SIZE-byte signed integer type. */
4c4b4cd2 685static LONGEST
c3e5cd34 686min_of_size (int size)
4c4b4cd2 687{
c3e5cd34 688 return -max_of_size (size) - 1;
4c4b4cd2
PH
689}
690
0963b4bd 691/* Maximum value of a SIZE-byte unsigned integer type. */
4c4b4cd2 692static ULONGEST
c3e5cd34 693umax_of_size (int size)
4c4b4cd2 694{
76a01679 695 ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1);
5b4ee69b 696
76a01679 697 return top_bit | (top_bit - 1);
4c4b4cd2
PH
698}
699
0963b4bd 700/* Maximum value of integral type T, as a signed quantity. */
c3e5cd34
PH
701static LONGEST
702max_of_type (struct type *t)
4c4b4cd2 703{
c3e5cd34
PH
704 if (TYPE_UNSIGNED (t))
705 return (LONGEST) umax_of_size (TYPE_LENGTH (t));
706 else
707 return max_of_size (TYPE_LENGTH (t));
708}
709
0963b4bd 710/* Minimum value of integral type T, as a signed quantity. */
c3e5cd34
PH
711static LONGEST
712min_of_type (struct type *t)
713{
714 if (TYPE_UNSIGNED (t))
715 return 0;
716 else
717 return min_of_size (TYPE_LENGTH (t));
4c4b4cd2
PH
718}
719
720/* The largest value in the domain of TYPE, a discrete type, as an integer. */
43bbcdc2
PH
721LONGEST
722ada_discrete_type_high_bound (struct type *type)
4c4b4cd2 723{
b249d2c2 724 type = resolve_dynamic_type (type, {}, 0);
78134374 725 switch (type->code ())
4c4b4cd2
PH
726 {
727 case TYPE_CODE_RANGE:
690cc4eb 728 return TYPE_HIGH_BOUND (type);
4c4b4cd2 729 case TYPE_CODE_ENUM:
1f704f76 730 return TYPE_FIELD_ENUMVAL (type, type->num_fields () - 1);
690cc4eb
PH
731 case TYPE_CODE_BOOL:
732 return 1;
733 case TYPE_CODE_CHAR:
76a01679 734 case TYPE_CODE_INT:
690cc4eb 735 return max_of_type (type);
4c4b4cd2 736 default:
43bbcdc2 737 error (_("Unexpected type in ada_discrete_type_high_bound."));
4c4b4cd2
PH
738 }
739}
740
14e75d8e 741/* The smallest value in the domain of TYPE, a discrete type, as an integer. */
43bbcdc2
PH
742LONGEST
743ada_discrete_type_low_bound (struct type *type)
4c4b4cd2 744{
b249d2c2 745 type = resolve_dynamic_type (type, {}, 0);
78134374 746 switch (type->code ())
4c4b4cd2
PH
747 {
748 case TYPE_CODE_RANGE:
690cc4eb 749 return TYPE_LOW_BOUND (type);
4c4b4cd2 750 case TYPE_CODE_ENUM:
14e75d8e 751 return TYPE_FIELD_ENUMVAL (type, 0);
690cc4eb
PH
752 case TYPE_CODE_BOOL:
753 return 0;
754 case TYPE_CODE_CHAR:
76a01679 755 case TYPE_CODE_INT:
690cc4eb 756 return min_of_type (type);
4c4b4cd2 757 default:
43bbcdc2 758 error (_("Unexpected type in ada_discrete_type_low_bound."));
4c4b4cd2
PH
759 }
760}
761
762/* The identity on non-range types. For range types, the underlying
76a01679 763 non-range scalar type. */
4c4b4cd2
PH
764
765static struct type *
18af8284 766get_base_type (struct type *type)
4c4b4cd2 767{
78134374 768 while (type != NULL && type->code () == TYPE_CODE_RANGE)
4c4b4cd2 769 {
76a01679
JB
770 if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL)
771 return type;
4c4b4cd2
PH
772 type = TYPE_TARGET_TYPE (type);
773 }
774 return type;
14f9c5c9 775}
41246937
JB
776
777/* Return a decoded version of the given VALUE. This means returning
778 a value whose type is obtained by applying all the GNAT-specific
85102364 779 encodings, making the resulting type a static but standard description
41246937
JB
780 of the initial type. */
781
782struct value *
783ada_get_decoded_value (struct value *value)
784{
785 struct type *type = ada_check_typedef (value_type (value));
786
787 if (ada_is_array_descriptor_type (type)
788 || (ada_is_constrained_packed_array_type (type)
78134374 789 && type->code () != TYPE_CODE_PTR))
41246937 790 {
78134374 791 if (type->code () == TYPE_CODE_TYPEDEF) /* array access type. */
41246937
JB
792 value = ada_coerce_to_simple_array_ptr (value);
793 else
794 value = ada_coerce_to_simple_array (value);
795 }
796 else
797 value = ada_to_fixed_value (value);
798
799 return value;
800}
801
802/* Same as ada_get_decoded_value, but with the given TYPE.
803 Because there is no associated actual value for this type,
804 the resulting type might be a best-effort approximation in
805 the case of dynamic types. */
806
807struct type *
808ada_get_decoded_type (struct type *type)
809{
810 type = to_static_fixed_type (type);
811 if (ada_is_constrained_packed_array_type (type))
812 type = ada_coerce_to_simple_array_type (type);
813 return type;
814}
815
4c4b4cd2 816\f
76a01679 817
4c4b4cd2 818 /* Language Selection */
14f9c5c9
AS
819
820/* If the main program is in Ada, return language_ada, otherwise return LANG
ccefe4c4 821 (the main program is in Ada iif the adainit symbol is found). */
d2e4a39e 822
de93309a 823static enum language
ccefe4c4 824ada_update_initial_language (enum language lang)
14f9c5c9 825{
cafb3438 826 if (lookup_minimal_symbol ("adainit", NULL, NULL).minsym != NULL)
4c4b4cd2 827 return language_ada;
14f9c5c9
AS
828
829 return lang;
830}
96d887e8
PH
831
832/* If the main procedure is written in Ada, then return its name.
833 The result is good until the next call. Return NULL if the main
834 procedure doesn't appear to be in Ada. */
835
836char *
837ada_main_name (void)
838{
3b7344d5 839 struct bound_minimal_symbol msym;
e83e4e24 840 static gdb::unique_xmalloc_ptr<char> main_program_name;
6c038f32 841
96d887e8
PH
842 /* For Ada, the name of the main procedure is stored in a specific
843 string constant, generated by the binder. Look for that symbol,
844 extract its address, and then read that string. If we didn't find
845 that string, then most probably the main procedure is not written
846 in Ada. */
847 msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL);
848
3b7344d5 849 if (msym.minsym != NULL)
96d887e8 850 {
66920317 851 CORE_ADDR main_program_name_addr = BMSYMBOL_VALUE_ADDRESS (msym);
96d887e8 852 if (main_program_name_addr == 0)
323e0a4a 853 error (_("Invalid address for Ada main program name."));
96d887e8 854
66920317 855 main_program_name = target_read_string (main_program_name_addr, 1024);
e83e4e24 856 return main_program_name.get ();
96d887e8
PH
857 }
858
859 /* The main procedure doesn't seem to be in Ada. */
860 return NULL;
861}
14f9c5c9 862\f
4c4b4cd2 863 /* Symbols */
d2e4a39e 864
4c4b4cd2
PH
865/* Table of Ada operators and their GNAT-encoded names. Last entry is pair
866 of NULLs. */
14f9c5c9 867
d2e4a39e
AS
868const struct ada_opname_map ada_opname_table[] = {
869 {"Oadd", "\"+\"", BINOP_ADD},
870 {"Osubtract", "\"-\"", BINOP_SUB},
871 {"Omultiply", "\"*\"", BINOP_MUL},
872 {"Odivide", "\"/\"", BINOP_DIV},
873 {"Omod", "\"mod\"", BINOP_MOD},
874 {"Orem", "\"rem\"", BINOP_REM},
875 {"Oexpon", "\"**\"", BINOP_EXP},
876 {"Olt", "\"<\"", BINOP_LESS},
877 {"Ole", "\"<=\"", BINOP_LEQ},
878 {"Ogt", "\">\"", BINOP_GTR},
879 {"Oge", "\">=\"", BINOP_GEQ},
880 {"Oeq", "\"=\"", BINOP_EQUAL},
881 {"One", "\"/=\"", BINOP_NOTEQUAL},
882 {"Oand", "\"and\"", BINOP_BITWISE_AND},
883 {"Oor", "\"or\"", BINOP_BITWISE_IOR},
884 {"Oxor", "\"xor\"", BINOP_BITWISE_XOR},
885 {"Oconcat", "\"&\"", BINOP_CONCAT},
886 {"Oabs", "\"abs\"", UNOP_ABS},
887 {"Onot", "\"not\"", UNOP_LOGICAL_NOT},
888 {"Oadd", "\"+\"", UNOP_PLUS},
889 {"Osubtract", "\"-\"", UNOP_NEG},
890 {NULL, NULL}
14f9c5c9
AS
891};
892
b5ec771e
PA
893/* The "encoded" form of DECODED, according to GNAT conventions. The
894 result is valid until the next call to ada_encode. If
895 THROW_ERRORS, throw an error if invalid operator name is found.
896 Otherwise, return NULL in that case. */
4c4b4cd2 897
b5ec771e
PA
898static char *
899ada_encode_1 (const char *decoded, bool throw_errors)
14f9c5c9 900{
4c4b4cd2
PH
901 static char *encoding_buffer = NULL;
902 static size_t encoding_buffer_size = 0;
d2e4a39e 903 const char *p;
14f9c5c9 904 int k;
d2e4a39e 905
4c4b4cd2 906 if (decoded == NULL)
14f9c5c9
AS
907 return NULL;
908
4c4b4cd2
PH
909 GROW_VECT (encoding_buffer, encoding_buffer_size,
910 2 * strlen (decoded) + 10);
14f9c5c9
AS
911
912 k = 0;
4c4b4cd2 913 for (p = decoded; *p != '\0'; p += 1)
14f9c5c9 914 {
cdc7bb92 915 if (*p == '.')
4c4b4cd2
PH
916 {
917 encoding_buffer[k] = encoding_buffer[k + 1] = '_';
918 k += 2;
919 }
14f9c5c9 920 else if (*p == '"')
4c4b4cd2
PH
921 {
922 const struct ada_opname_map *mapping;
923
924 for (mapping = ada_opname_table;
1265e4aa 925 mapping->encoded != NULL
61012eef 926 && !startswith (p, mapping->decoded); mapping += 1)
4c4b4cd2
PH
927 ;
928 if (mapping->encoded == NULL)
b5ec771e
PA
929 {
930 if (throw_errors)
931 error (_("invalid Ada operator name: %s"), p);
932 else
933 return NULL;
934 }
4c4b4cd2
PH
935 strcpy (encoding_buffer + k, mapping->encoded);
936 k += strlen (mapping->encoded);
937 break;
938 }
d2e4a39e 939 else
4c4b4cd2
PH
940 {
941 encoding_buffer[k] = *p;
942 k += 1;
943 }
14f9c5c9
AS
944 }
945
4c4b4cd2
PH
946 encoding_buffer[k] = '\0';
947 return encoding_buffer;
14f9c5c9
AS
948}
949
b5ec771e
PA
950/* The "encoded" form of DECODED, according to GNAT conventions.
951 The result is valid until the next call to ada_encode. */
952
953char *
954ada_encode (const char *decoded)
955{
956 return ada_encode_1 (decoded, true);
957}
958
14f9c5c9 959/* Return NAME folded to lower case, or, if surrounded by single
4c4b4cd2
PH
960 quotes, unfolded, but with the quotes stripped away. Result good
961 to next call. */
962
de93309a 963static char *
e0802d59 964ada_fold_name (gdb::string_view name)
14f9c5c9 965{
d2e4a39e 966 static char *fold_buffer = NULL;
14f9c5c9
AS
967 static size_t fold_buffer_size = 0;
968
e0802d59 969 int len = name.size ();
d2e4a39e 970 GROW_VECT (fold_buffer, fold_buffer_size, len + 1);
14f9c5c9
AS
971
972 if (name[0] == '\'')
973 {
e0802d59 974 strncpy (fold_buffer, name.data () + 1, len - 2);
d2e4a39e 975 fold_buffer[len - 2] = '\000';
14f9c5c9
AS
976 }
977 else
978 {
979 int i;
5b4ee69b 980
14f9c5c9 981 for (i = 0; i <= len; i += 1)
4c4b4cd2 982 fold_buffer[i] = tolower (name[i]);
14f9c5c9
AS
983 }
984
985 return fold_buffer;
986}
987
529cad9c
PH
988/* Return nonzero if C is either a digit or a lowercase alphabet character. */
989
990static int
991is_lower_alphanum (const char c)
992{
993 return (isdigit (c) || (isalpha (c) && islower (c)));
994}
995
c90092fe
JB
996/* ENCODED is the linkage name of a symbol and LEN contains its length.
997 This function saves in LEN the length of that same symbol name but
998 without either of these suffixes:
29480c32
JB
999 . .{DIGIT}+
1000 . ${DIGIT}+
1001 . ___{DIGIT}+
1002 . __{DIGIT}+.
c90092fe 1003
29480c32
JB
1004 These are suffixes introduced by the compiler for entities such as
1005 nested subprogram for instance, in order to avoid name clashes.
1006 They do not serve any purpose for the debugger. */
1007
1008static void
1009ada_remove_trailing_digits (const char *encoded, int *len)
1010{
1011 if (*len > 1 && isdigit (encoded[*len - 1]))
1012 {
1013 int i = *len - 2;
5b4ee69b 1014
29480c32
JB
1015 while (i > 0 && isdigit (encoded[i]))
1016 i--;
1017 if (i >= 0 && encoded[i] == '.')
1018 *len = i;
1019 else if (i >= 0 && encoded[i] == '$')
1020 *len = i;
61012eef 1021 else if (i >= 2 && startswith (encoded + i - 2, "___"))
29480c32 1022 *len = i - 2;
61012eef 1023 else if (i >= 1 && startswith (encoded + i - 1, "__"))
29480c32
JB
1024 *len = i - 1;
1025 }
1026}
1027
1028/* Remove the suffix introduced by the compiler for protected object
1029 subprograms. */
1030
1031static void
1032ada_remove_po_subprogram_suffix (const char *encoded, int *len)
1033{
1034 /* Remove trailing N. */
1035
1036 /* Protected entry subprograms are broken into two
1037 separate subprograms: The first one is unprotected, and has
1038 a 'N' suffix; the second is the protected version, and has
0963b4bd 1039 the 'P' suffix. The second calls the first one after handling
29480c32
JB
1040 the protection. Since the P subprograms are internally generated,
1041 we leave these names undecoded, giving the user a clue that this
1042 entity is internal. */
1043
1044 if (*len > 1
1045 && encoded[*len - 1] == 'N'
1046 && (isdigit (encoded[*len - 2]) || islower (encoded[*len - 2])))
1047 *len = *len - 1;
1048}
1049
1050/* If ENCODED follows the GNAT entity encoding conventions, then return
1051 the decoded form of ENCODED. Otherwise, return "<%s>" where "%s" is
f945dedf 1052 replaced by ENCODED. */
14f9c5c9 1053
f945dedf 1054std::string
4c4b4cd2 1055ada_decode (const char *encoded)
14f9c5c9
AS
1056{
1057 int i, j;
1058 int len0;
d2e4a39e 1059 const char *p;
14f9c5c9 1060 int at_start_name;
f945dedf 1061 std::string decoded;
d2e4a39e 1062
0d81f350
JG
1063 /* With function descriptors on PPC64, the value of a symbol named
1064 ".FN", if it exists, is the entry point of the function "FN". */
1065 if (encoded[0] == '.')
1066 encoded += 1;
1067
29480c32
JB
1068 /* The name of the Ada main procedure starts with "_ada_".
1069 This prefix is not part of the decoded name, so skip this part
1070 if we see this prefix. */
61012eef 1071 if (startswith (encoded, "_ada_"))
4c4b4cd2 1072 encoded += 5;
14f9c5c9 1073
29480c32
JB
1074 /* If the name starts with '_', then it is not a properly encoded
1075 name, so do not attempt to decode it. Similarly, if the name
1076 starts with '<', the name should not be decoded. */
4c4b4cd2 1077 if (encoded[0] == '_' || encoded[0] == '<')
14f9c5c9
AS
1078 goto Suppress;
1079
4c4b4cd2 1080 len0 = strlen (encoded);
4c4b4cd2 1081
29480c32
JB
1082 ada_remove_trailing_digits (encoded, &len0);
1083 ada_remove_po_subprogram_suffix (encoded, &len0);
529cad9c 1084
4c4b4cd2
PH
1085 /* Remove the ___X.* suffix if present. Do not forget to verify that
1086 the suffix is located before the current "end" of ENCODED. We want
1087 to avoid re-matching parts of ENCODED that have previously been
1088 marked as discarded (by decrementing LEN0). */
1089 p = strstr (encoded, "___");
1090 if (p != NULL && p - encoded < len0 - 3)
14f9c5c9
AS
1091 {
1092 if (p[3] == 'X')
4c4b4cd2 1093 len0 = p - encoded;
14f9c5c9 1094 else
4c4b4cd2 1095 goto Suppress;
14f9c5c9 1096 }
4c4b4cd2 1097
29480c32
JB
1098 /* Remove any trailing TKB suffix. It tells us that this symbol
1099 is for the body of a task, but that information does not actually
1100 appear in the decoded name. */
1101
61012eef 1102 if (len0 > 3 && startswith (encoded + len0 - 3, "TKB"))
14f9c5c9 1103 len0 -= 3;
76a01679 1104
a10967fa
JB
1105 /* Remove any trailing TB suffix. The TB suffix is slightly different
1106 from the TKB suffix because it is used for non-anonymous task
1107 bodies. */
1108
61012eef 1109 if (len0 > 2 && startswith (encoded + len0 - 2, "TB"))
a10967fa
JB
1110 len0 -= 2;
1111
29480c32
JB
1112 /* Remove trailing "B" suffixes. */
1113 /* FIXME: brobecker/2006-04-19: Not sure what this are used for... */
1114
61012eef 1115 if (len0 > 1 && startswith (encoded + len0 - 1, "B"))
14f9c5c9
AS
1116 len0 -= 1;
1117
4c4b4cd2 1118 /* Make decoded big enough for possible expansion by operator name. */
29480c32 1119
f945dedf 1120 decoded.resize (2 * len0 + 1, 'X');
14f9c5c9 1121
29480c32
JB
1122 /* Remove trailing __{digit}+ or trailing ${digit}+. */
1123
4c4b4cd2 1124 if (len0 > 1 && isdigit (encoded[len0 - 1]))
d2e4a39e 1125 {
4c4b4cd2
PH
1126 i = len0 - 2;
1127 while ((i >= 0 && isdigit (encoded[i]))
1128 || (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1])))
1129 i -= 1;
1130 if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_')
1131 len0 = i - 1;
1132 else if (encoded[i] == '$')
1133 len0 = i;
d2e4a39e 1134 }
14f9c5c9 1135
29480c32
JB
1136 /* The first few characters that are not alphabetic are not part
1137 of any encoding we use, so we can copy them over verbatim. */
1138
4c4b4cd2
PH
1139 for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1)
1140 decoded[j] = encoded[i];
14f9c5c9
AS
1141
1142 at_start_name = 1;
1143 while (i < len0)
1144 {
29480c32 1145 /* Is this a symbol function? */
4c4b4cd2
PH
1146 if (at_start_name && encoded[i] == 'O')
1147 {
1148 int k;
5b4ee69b 1149
4c4b4cd2
PH
1150 for (k = 0; ada_opname_table[k].encoded != NULL; k += 1)
1151 {
1152 int op_len = strlen (ada_opname_table[k].encoded);
06d5cf63
JB
1153 if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1,
1154 op_len - 1) == 0)
1155 && !isalnum (encoded[i + op_len]))
4c4b4cd2 1156 {
f945dedf 1157 strcpy (&decoded.front() + j, ada_opname_table[k].decoded);
4c4b4cd2
PH
1158 at_start_name = 0;
1159 i += op_len;
1160 j += strlen (ada_opname_table[k].decoded);
1161 break;
1162 }
1163 }
1164 if (ada_opname_table[k].encoded != NULL)
1165 continue;
1166 }
14f9c5c9
AS
1167 at_start_name = 0;
1168
529cad9c
PH
1169 /* Replace "TK__" with "__", which will eventually be translated
1170 into "." (just below). */
1171
61012eef 1172 if (i < len0 - 4 && startswith (encoded + i, "TK__"))
4c4b4cd2 1173 i += 2;
529cad9c 1174
29480c32
JB
1175 /* Replace "__B_{DIGITS}+__" sequences by "__", which will eventually
1176 be translated into "." (just below). These are internal names
1177 generated for anonymous blocks inside which our symbol is nested. */
1178
1179 if (len0 - i > 5 && encoded [i] == '_' && encoded [i+1] == '_'
1180 && encoded [i+2] == 'B' && encoded [i+3] == '_'
1181 && isdigit (encoded [i+4]))
1182 {
1183 int k = i + 5;
1184
1185 while (k < len0 && isdigit (encoded[k]))
1186 k++; /* Skip any extra digit. */
1187
1188 /* Double-check that the "__B_{DIGITS}+" sequence we found
1189 is indeed followed by "__". */
1190 if (len0 - k > 2 && encoded [k] == '_' && encoded [k+1] == '_')
1191 i = k;
1192 }
1193
529cad9c
PH
1194 /* Remove _E{DIGITS}+[sb] */
1195
1196 /* Just as for protected object subprograms, there are 2 categories
0963b4bd 1197 of subprograms created by the compiler for each entry. The first
529cad9c
PH
1198 one implements the actual entry code, and has a suffix following
1199 the convention above; the second one implements the barrier and
1200 uses the same convention as above, except that the 'E' is replaced
1201 by a 'B'.
1202
1203 Just as above, we do not decode the name of barrier functions
1204 to give the user a clue that the code he is debugging has been
1205 internally generated. */
1206
1207 if (len0 - i > 3 && encoded [i] == '_' && encoded[i+1] == 'E'
1208 && isdigit (encoded[i+2]))
1209 {
1210 int k = i + 3;
1211
1212 while (k < len0 && isdigit (encoded[k]))
1213 k++;
1214
1215 if (k < len0
1216 && (encoded[k] == 'b' || encoded[k] == 's'))
1217 {
1218 k++;
1219 /* Just as an extra precaution, make sure that if this
1220 suffix is followed by anything else, it is a '_'.
1221 Otherwise, we matched this sequence by accident. */
1222 if (k == len0
1223 || (k < len0 && encoded[k] == '_'))
1224 i = k;
1225 }
1226 }
1227
1228 /* Remove trailing "N" in [a-z0-9]+N__. The N is added by
1229 the GNAT front-end in protected object subprograms. */
1230
1231 if (i < len0 + 3
1232 && encoded[i] == 'N' && encoded[i+1] == '_' && encoded[i+2] == '_')
1233 {
1234 /* Backtrack a bit up until we reach either the begining of
1235 the encoded name, or "__". Make sure that we only find
1236 digits or lowercase characters. */
1237 const char *ptr = encoded + i - 1;
1238
1239 while (ptr >= encoded && is_lower_alphanum (ptr[0]))
1240 ptr--;
1241 if (ptr < encoded
1242 || (ptr > encoded && ptr[0] == '_' && ptr[-1] == '_'))
1243 i++;
1244 }
1245
4c4b4cd2
PH
1246 if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1]))
1247 {
29480c32
JB
1248 /* This is a X[bn]* sequence not separated from the previous
1249 part of the name with a non-alpha-numeric character (in other
1250 words, immediately following an alpha-numeric character), then
1251 verify that it is placed at the end of the encoded name. If
1252 not, then the encoding is not valid and we should abort the
1253 decoding. Otherwise, just skip it, it is used in body-nested
1254 package names. */
4c4b4cd2
PH
1255 do
1256 i += 1;
1257 while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n'));
1258 if (i < len0)
1259 goto Suppress;
1260 }
cdc7bb92 1261 else if (i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_')
4c4b4cd2 1262 {
29480c32 1263 /* Replace '__' by '.'. */
4c4b4cd2
PH
1264 decoded[j] = '.';
1265 at_start_name = 1;
1266 i += 2;
1267 j += 1;
1268 }
14f9c5c9 1269 else
4c4b4cd2 1270 {
29480c32
JB
1271 /* It's a character part of the decoded name, so just copy it
1272 over. */
4c4b4cd2
PH
1273 decoded[j] = encoded[i];
1274 i += 1;
1275 j += 1;
1276 }
14f9c5c9 1277 }
f945dedf 1278 decoded.resize (j);
14f9c5c9 1279
29480c32
JB
1280 /* Decoded names should never contain any uppercase character.
1281 Double-check this, and abort the decoding if we find one. */
1282
f945dedf 1283 for (i = 0; i < decoded.length(); ++i)
4c4b4cd2 1284 if (isupper (decoded[i]) || decoded[i] == ' ')
14f9c5c9
AS
1285 goto Suppress;
1286
f945dedf 1287 return decoded;
14f9c5c9
AS
1288
1289Suppress:
4c4b4cd2 1290 if (encoded[0] == '<')
f945dedf 1291 decoded = encoded;
14f9c5c9 1292 else
f945dedf 1293 decoded = '<' + std::string(encoded) + '>';
4c4b4cd2
PH
1294 return decoded;
1295
1296}
1297
1298/* Table for keeping permanent unique copies of decoded names. Once
1299 allocated, names in this table are never released. While this is a
1300 storage leak, it should not be significant unless there are massive
1301 changes in the set of decoded names in successive versions of a
1302 symbol table loaded during a single session. */
1303static struct htab *decoded_names_store;
1304
1305/* Returns the decoded name of GSYMBOL, as for ada_decode, caching it
1306 in the language-specific part of GSYMBOL, if it has not been
1307 previously computed. Tries to save the decoded name in the same
1308 obstack as GSYMBOL, if possible, and otherwise on the heap (so that,
1309 in any case, the decoded symbol has a lifetime at least that of
0963b4bd 1310 GSYMBOL).
4c4b4cd2
PH
1311 The GSYMBOL parameter is "mutable" in the C++ sense: logically
1312 const, but nevertheless modified to a semantically equivalent form
0963b4bd 1313 when a decoded name is cached in it. */
4c4b4cd2 1314
45e6c716 1315const char *
f85f34ed 1316ada_decode_symbol (const struct general_symbol_info *arg)
4c4b4cd2 1317{
f85f34ed
TT
1318 struct general_symbol_info *gsymbol = (struct general_symbol_info *) arg;
1319 const char **resultp =
615b3f62 1320 &gsymbol->language_specific.demangled_name;
5b4ee69b 1321
f85f34ed 1322 if (!gsymbol->ada_mangled)
4c4b4cd2 1323 {
4d4eaa30 1324 std::string decoded = ada_decode (gsymbol->linkage_name ());
f85f34ed 1325 struct obstack *obstack = gsymbol->language_specific.obstack;
5b4ee69b 1326
f85f34ed 1327 gsymbol->ada_mangled = 1;
5b4ee69b 1328
f85f34ed 1329 if (obstack != NULL)
f945dedf 1330 *resultp = obstack_strdup (obstack, decoded.c_str ());
f85f34ed 1331 else
76a01679 1332 {
f85f34ed
TT
1333 /* Sometimes, we can't find a corresponding objfile, in
1334 which case, we put the result on the heap. Since we only
1335 decode when needed, we hope this usually does not cause a
1336 significant memory leak (FIXME). */
1337
76a01679 1338 char **slot = (char **) htab_find_slot (decoded_names_store,
f945dedf 1339 decoded.c_str (), INSERT);
5b4ee69b 1340
76a01679 1341 if (*slot == NULL)
f945dedf 1342 *slot = xstrdup (decoded.c_str ());
76a01679
JB
1343 *resultp = *slot;
1344 }
4c4b4cd2 1345 }
14f9c5c9 1346
4c4b4cd2
PH
1347 return *resultp;
1348}
76a01679 1349
2c0b251b 1350static char *
76a01679 1351ada_la_decode (const char *encoded, int options)
4c4b4cd2 1352{
f945dedf 1353 return xstrdup (ada_decode (encoded).c_str ());
14f9c5c9
AS
1354}
1355
14f9c5c9 1356\f
d2e4a39e 1357
4c4b4cd2 1358 /* Arrays */
14f9c5c9 1359
28c85d6c
JB
1360/* Assuming that INDEX_DESC_TYPE is an ___XA structure, a structure
1361 generated by the GNAT compiler to describe the index type used
1362 for each dimension of an array, check whether it follows the latest
1363 known encoding. If not, fix it up to conform to the latest encoding.
1364 Otherwise, do nothing. This function also does nothing if
1365 INDEX_DESC_TYPE is NULL.
1366
85102364 1367 The GNAT encoding used to describe the array index type evolved a bit.
28c85d6c
JB
1368 Initially, the information would be provided through the name of each
1369 field of the structure type only, while the type of these fields was
1370 described as unspecified and irrelevant. The debugger was then expected
1371 to perform a global type lookup using the name of that field in order
1372 to get access to the full index type description. Because these global
1373 lookups can be very expensive, the encoding was later enhanced to make
1374 the global lookup unnecessary by defining the field type as being
1375 the full index type description.
1376
1377 The purpose of this routine is to allow us to support older versions
1378 of the compiler by detecting the use of the older encoding, and by
1379 fixing up the INDEX_DESC_TYPE to follow the new one (at this point,
1380 we essentially replace each field's meaningless type by the associated
1381 index subtype). */
1382
1383void
1384ada_fixup_array_indexes_type (struct type *index_desc_type)
1385{
1386 int i;
1387
1388 if (index_desc_type == NULL)
1389 return;
1f704f76 1390 gdb_assert (index_desc_type->num_fields () > 0);
28c85d6c
JB
1391
1392 /* Check if INDEX_DESC_TYPE follows the older encoding (it is sufficient
1393 to check one field only, no need to check them all). If not, return
1394 now.
1395
1396 If our INDEX_DESC_TYPE was generated using the older encoding,
1397 the field type should be a meaningless integer type whose name
1398 is not equal to the field name. */
940da03e
SM
1399 if (index_desc_type->field (0).type ()->name () != NULL
1400 && strcmp (index_desc_type->field (0).type ()->name (),
28c85d6c
JB
1401 TYPE_FIELD_NAME (index_desc_type, 0)) == 0)
1402 return;
1403
1404 /* Fixup each field of INDEX_DESC_TYPE. */
1f704f76 1405 for (i = 0; i < index_desc_type->num_fields (); i++)
28c85d6c 1406 {
0d5cff50 1407 const char *name = TYPE_FIELD_NAME (index_desc_type, i);
28c85d6c
JB
1408 struct type *raw_type = ada_check_typedef (ada_find_any_type (name));
1409
1410 if (raw_type)
5d14b6e5 1411 index_desc_type->field (i).set_type (raw_type);
28c85d6c
JB
1412 }
1413}
1414
4c4b4cd2
PH
1415/* The desc_* routines return primitive portions of array descriptors
1416 (fat pointers). */
14f9c5c9
AS
1417
1418/* The descriptor or array type, if any, indicated by TYPE; removes
4c4b4cd2
PH
1419 level of indirection, if needed. */
1420
d2e4a39e
AS
1421static struct type *
1422desc_base_type (struct type *type)
14f9c5c9
AS
1423{
1424 if (type == NULL)
1425 return NULL;
61ee279c 1426 type = ada_check_typedef (type);
78134374 1427 if (type->code () == TYPE_CODE_TYPEDEF)
720d1a40
JB
1428 type = ada_typedef_target_type (type);
1429
1265e4aa 1430 if (type != NULL
78134374
SM
1431 && (type->code () == TYPE_CODE_PTR
1432 || type->code () == TYPE_CODE_REF))
61ee279c 1433 return ada_check_typedef (TYPE_TARGET_TYPE (type));
14f9c5c9
AS
1434 else
1435 return type;
1436}
1437
4c4b4cd2
PH
1438/* True iff TYPE indicates a "thin" array pointer type. */
1439
14f9c5c9 1440static int
d2e4a39e 1441is_thin_pntr (struct type *type)
14f9c5c9 1442{
d2e4a39e 1443 return
14f9c5c9
AS
1444 is_suffix (ada_type_name (desc_base_type (type)), "___XUT")
1445 || is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE");
1446}
1447
4c4b4cd2
PH
1448/* The descriptor type for thin pointer type TYPE. */
1449
d2e4a39e
AS
1450static struct type *
1451thin_descriptor_type (struct type *type)
14f9c5c9 1452{
d2e4a39e 1453 struct type *base_type = desc_base_type (type);
5b4ee69b 1454
14f9c5c9
AS
1455 if (base_type == NULL)
1456 return NULL;
1457 if (is_suffix (ada_type_name (base_type), "___XVE"))
1458 return base_type;
d2e4a39e 1459 else
14f9c5c9 1460 {
d2e4a39e 1461 struct type *alt_type = ada_find_parallel_type (base_type, "___XVE");
5b4ee69b 1462
14f9c5c9 1463 if (alt_type == NULL)
4c4b4cd2 1464 return base_type;
14f9c5c9 1465 else
4c4b4cd2 1466 return alt_type;
14f9c5c9
AS
1467 }
1468}
1469
4c4b4cd2
PH
1470/* A pointer to the array data for thin-pointer value VAL. */
1471
d2e4a39e
AS
1472static struct value *
1473thin_data_pntr (struct value *val)
14f9c5c9 1474{
828292f2 1475 struct type *type = ada_check_typedef (value_type (val));
556bdfd4 1476 struct type *data_type = desc_data_target_type (thin_descriptor_type (type));
5b4ee69b 1477
556bdfd4
UW
1478 data_type = lookup_pointer_type (data_type);
1479
78134374 1480 if (type->code () == TYPE_CODE_PTR)
556bdfd4 1481 return value_cast (data_type, value_copy (val));
d2e4a39e 1482 else
42ae5230 1483 return value_from_longest (data_type, value_address (val));
14f9c5c9
AS
1484}
1485
4c4b4cd2
PH
1486/* True iff TYPE indicates a "thick" array pointer type. */
1487
14f9c5c9 1488static int
d2e4a39e 1489is_thick_pntr (struct type *type)
14f9c5c9
AS
1490{
1491 type = desc_base_type (type);
78134374 1492 return (type != NULL && type->code () == TYPE_CODE_STRUCT
4c4b4cd2 1493 && lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL);
14f9c5c9
AS
1494}
1495
4c4b4cd2
PH
1496/* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1497 pointer to one, the type of its bounds data; otherwise, NULL. */
76a01679 1498
d2e4a39e
AS
1499static struct type *
1500desc_bounds_type (struct type *type)
14f9c5c9 1501{
d2e4a39e 1502 struct type *r;
14f9c5c9
AS
1503
1504 type = desc_base_type (type);
1505
1506 if (type == NULL)
1507 return NULL;
1508 else if (is_thin_pntr (type))
1509 {
1510 type = thin_descriptor_type (type);
1511 if (type == NULL)
4c4b4cd2 1512 return NULL;
14f9c5c9
AS
1513 r = lookup_struct_elt_type (type, "BOUNDS", 1);
1514 if (r != NULL)
61ee279c 1515 return ada_check_typedef (r);
14f9c5c9 1516 }
78134374 1517 else if (type->code () == TYPE_CODE_STRUCT)
14f9c5c9
AS
1518 {
1519 r = lookup_struct_elt_type (type, "P_BOUNDS", 1);
1520 if (r != NULL)
61ee279c 1521 return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r)));
14f9c5c9
AS
1522 }
1523 return NULL;
1524}
1525
1526/* If ARR is an array descriptor (fat or thin pointer), or pointer to
4c4b4cd2
PH
1527 one, a pointer to its bounds data. Otherwise NULL. */
1528
d2e4a39e
AS
1529static struct value *
1530desc_bounds (struct value *arr)
14f9c5c9 1531{
df407dfe 1532 struct type *type = ada_check_typedef (value_type (arr));
5b4ee69b 1533
d2e4a39e 1534 if (is_thin_pntr (type))
14f9c5c9 1535 {
d2e4a39e 1536 struct type *bounds_type =
4c4b4cd2 1537 desc_bounds_type (thin_descriptor_type (type));
14f9c5c9
AS
1538 LONGEST addr;
1539
4cdfadb1 1540 if (bounds_type == NULL)
323e0a4a 1541 error (_("Bad GNAT array descriptor"));
14f9c5c9
AS
1542
1543 /* NOTE: The following calculation is not really kosher, but
d2e4a39e 1544 since desc_type is an XVE-encoded type (and shouldn't be),
4c4b4cd2 1545 the correct calculation is a real pain. FIXME (and fix GCC). */
78134374 1546 if (type->code () == TYPE_CODE_PTR)
4c4b4cd2 1547 addr = value_as_long (arr);
d2e4a39e 1548 else
42ae5230 1549 addr = value_address (arr);
14f9c5c9 1550
d2e4a39e 1551 return
4c4b4cd2
PH
1552 value_from_longest (lookup_pointer_type (bounds_type),
1553 addr - TYPE_LENGTH (bounds_type));
14f9c5c9
AS
1554 }
1555
1556 else if (is_thick_pntr (type))
05e522ef
JB
1557 {
1558 struct value *p_bounds = value_struct_elt (&arr, NULL, "P_BOUNDS", NULL,
1559 _("Bad GNAT array descriptor"));
1560 struct type *p_bounds_type = value_type (p_bounds);
1561
1562 if (p_bounds_type
78134374 1563 && p_bounds_type->code () == TYPE_CODE_PTR)
05e522ef
JB
1564 {
1565 struct type *target_type = TYPE_TARGET_TYPE (p_bounds_type);
1566
1567 if (TYPE_STUB (target_type))
1568 p_bounds = value_cast (lookup_pointer_type
1569 (ada_check_typedef (target_type)),
1570 p_bounds);
1571 }
1572 else
1573 error (_("Bad GNAT array descriptor"));
1574
1575 return p_bounds;
1576 }
14f9c5c9
AS
1577 else
1578 return NULL;
1579}
1580
4c4b4cd2
PH
1581/* If TYPE is the type of an array-descriptor (fat pointer), the bit
1582 position of the field containing the address of the bounds data. */
1583
14f9c5c9 1584static int
d2e4a39e 1585fat_pntr_bounds_bitpos (struct type *type)
14f9c5c9
AS
1586{
1587 return TYPE_FIELD_BITPOS (desc_base_type (type), 1);
1588}
1589
1590/* If TYPE is the type of an array-descriptor (fat pointer), the bit
4c4b4cd2
PH
1591 size of the field containing the address of the bounds data. */
1592
14f9c5c9 1593static int
d2e4a39e 1594fat_pntr_bounds_bitsize (struct type *type)
14f9c5c9
AS
1595{
1596 type = desc_base_type (type);
1597
d2e4a39e 1598 if (TYPE_FIELD_BITSIZE (type, 1) > 0)
14f9c5c9
AS
1599 return TYPE_FIELD_BITSIZE (type, 1);
1600 else
940da03e 1601 return 8 * TYPE_LENGTH (ada_check_typedef (type->field (1).type ()));
14f9c5c9
AS
1602}
1603
4c4b4cd2 1604/* If TYPE is the type of an array descriptor (fat or thin pointer) or a
556bdfd4
UW
1605 pointer to one, the type of its array data (a array-with-no-bounds type);
1606 otherwise, NULL. Use ada_type_of_array to get an array type with bounds
1607 data. */
4c4b4cd2 1608
d2e4a39e 1609static struct type *
556bdfd4 1610desc_data_target_type (struct type *type)
14f9c5c9
AS
1611{
1612 type = desc_base_type (type);
1613
4c4b4cd2 1614 /* NOTE: The following is bogus; see comment in desc_bounds. */
14f9c5c9 1615 if (is_thin_pntr (type))
940da03e 1616 return desc_base_type (thin_descriptor_type (type)->field (1).type ());
14f9c5c9 1617 else if (is_thick_pntr (type))
556bdfd4
UW
1618 {
1619 struct type *data_type = lookup_struct_elt_type (type, "P_ARRAY", 1);
1620
1621 if (data_type
78134374 1622 && ada_check_typedef (data_type)->code () == TYPE_CODE_PTR)
05e522ef 1623 return ada_check_typedef (TYPE_TARGET_TYPE (data_type));
556bdfd4
UW
1624 }
1625
1626 return NULL;
14f9c5c9
AS
1627}
1628
1629/* If ARR is an array descriptor (fat or thin pointer), a pointer to
1630 its array data. */
4c4b4cd2 1631
d2e4a39e
AS
1632static struct value *
1633desc_data (struct value *arr)
14f9c5c9 1634{
df407dfe 1635 struct type *type = value_type (arr);
5b4ee69b 1636
14f9c5c9
AS
1637 if (is_thin_pntr (type))
1638 return thin_data_pntr (arr);
1639 else if (is_thick_pntr (type))
d2e4a39e 1640 return value_struct_elt (&arr, NULL, "P_ARRAY", NULL,
323e0a4a 1641 _("Bad GNAT array descriptor"));
14f9c5c9
AS
1642 else
1643 return NULL;
1644}
1645
1646
1647/* If TYPE is the type of an array-descriptor (fat pointer), the bit
4c4b4cd2
PH
1648 position of the field containing the address of the data. */
1649
14f9c5c9 1650static int
d2e4a39e 1651fat_pntr_data_bitpos (struct type *type)
14f9c5c9
AS
1652{
1653 return TYPE_FIELD_BITPOS (desc_base_type (type), 0);
1654}
1655
1656/* If TYPE is the type of an array-descriptor (fat pointer), the bit
4c4b4cd2
PH
1657 size of the field containing the address of the data. */
1658
14f9c5c9 1659static int
d2e4a39e 1660fat_pntr_data_bitsize (struct type *type)
14f9c5c9
AS
1661{
1662 type = desc_base_type (type);
1663
1664 if (TYPE_FIELD_BITSIZE (type, 0) > 0)
1665 return TYPE_FIELD_BITSIZE (type, 0);
d2e4a39e 1666 else
940da03e 1667 return TARGET_CHAR_BIT * TYPE_LENGTH (type->field (0).type ());
14f9c5c9
AS
1668}
1669
4c4b4cd2 1670/* If BOUNDS is an array-bounds structure (or pointer to one), return
14f9c5c9 1671 the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
4c4b4cd2
PH
1672 bound, if WHICH is 1. The first bound is I=1. */
1673
d2e4a39e
AS
1674static struct value *
1675desc_one_bound (struct value *bounds, int i, int which)
14f9c5c9 1676{
250106a7
TT
1677 char bound_name[20];
1678 xsnprintf (bound_name, sizeof (bound_name), "%cB%d",
1679 which ? 'U' : 'L', i - 1);
1680 return value_struct_elt (&bounds, NULL, bound_name, NULL,
323e0a4a 1681 _("Bad GNAT array descriptor bounds"));
14f9c5c9
AS
1682}
1683
1684/* If BOUNDS is an array-bounds structure type, return the bit position
1685 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
4c4b4cd2
PH
1686 bound, if WHICH is 1. The first bound is I=1. */
1687
14f9c5c9 1688static int
d2e4a39e 1689desc_bound_bitpos (struct type *type, int i, int which)
14f9c5c9 1690{
d2e4a39e 1691 return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2);
14f9c5c9
AS
1692}
1693
1694/* If BOUNDS is an array-bounds structure type, return the bit field size
1695 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
4c4b4cd2
PH
1696 bound, if WHICH is 1. The first bound is I=1. */
1697
76a01679 1698static int
d2e4a39e 1699desc_bound_bitsize (struct type *type, int i, int which)
14f9c5c9
AS
1700{
1701 type = desc_base_type (type);
1702
d2e4a39e
AS
1703 if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0)
1704 return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2);
1705 else
940da03e 1706 return 8 * TYPE_LENGTH (type->field (2 * i + which - 2).type ());
14f9c5c9
AS
1707}
1708
1709/* If TYPE is the type of an array-bounds structure, the type of its
4c4b4cd2
PH
1710 Ith bound (numbering from 1). Otherwise, NULL. */
1711
d2e4a39e
AS
1712static struct type *
1713desc_index_type (struct type *type, int i)
14f9c5c9
AS
1714{
1715 type = desc_base_type (type);
1716
78134374 1717 if (type->code () == TYPE_CODE_STRUCT)
250106a7
TT
1718 {
1719 char bound_name[20];
1720 xsnprintf (bound_name, sizeof (bound_name), "LB%d", i - 1);
1721 return lookup_struct_elt_type (type, bound_name, 1);
1722 }
d2e4a39e 1723 else
14f9c5c9
AS
1724 return NULL;
1725}
1726
4c4b4cd2
PH
1727/* The number of index positions in the array-bounds type TYPE.
1728 Return 0 if TYPE is NULL. */
1729
14f9c5c9 1730static int
d2e4a39e 1731desc_arity (struct type *type)
14f9c5c9
AS
1732{
1733 type = desc_base_type (type);
1734
1735 if (type != NULL)
1f704f76 1736 return type->num_fields () / 2;
14f9c5c9
AS
1737 return 0;
1738}
1739
4c4b4cd2
PH
1740/* Non-zero iff TYPE is a simple array type (not a pointer to one) or
1741 an array descriptor type (representing an unconstrained array
1742 type). */
1743
76a01679
JB
1744static int
1745ada_is_direct_array_type (struct type *type)
4c4b4cd2
PH
1746{
1747 if (type == NULL)
1748 return 0;
61ee279c 1749 type = ada_check_typedef (type);
78134374 1750 return (type->code () == TYPE_CODE_ARRAY
76a01679 1751 || ada_is_array_descriptor_type (type));
4c4b4cd2
PH
1752}
1753
52ce6436 1754/* Non-zero iff TYPE represents any kind of array in Ada, or a pointer
0963b4bd 1755 * to one. */
52ce6436 1756
2c0b251b 1757static int
52ce6436
PH
1758ada_is_array_type (struct type *type)
1759{
78134374
SM
1760 while (type != NULL
1761 && (type->code () == TYPE_CODE_PTR
1762 || type->code () == TYPE_CODE_REF))
52ce6436
PH
1763 type = TYPE_TARGET_TYPE (type);
1764 return ada_is_direct_array_type (type);
1765}
1766
4c4b4cd2 1767/* Non-zero iff TYPE is a simple array type or pointer to one. */
14f9c5c9 1768
14f9c5c9 1769int
4c4b4cd2 1770ada_is_simple_array_type (struct type *type)
14f9c5c9
AS
1771{
1772 if (type == NULL)
1773 return 0;
61ee279c 1774 type = ada_check_typedef (type);
78134374
SM
1775 return (type->code () == TYPE_CODE_ARRAY
1776 || (type->code () == TYPE_CODE_PTR
1777 && (ada_check_typedef (TYPE_TARGET_TYPE (type))->code ()
1778 == TYPE_CODE_ARRAY)));
14f9c5c9
AS
1779}
1780
4c4b4cd2
PH
1781/* Non-zero iff TYPE belongs to a GNAT array descriptor. */
1782
14f9c5c9 1783int
4c4b4cd2 1784ada_is_array_descriptor_type (struct type *type)
14f9c5c9 1785{
556bdfd4 1786 struct type *data_type = desc_data_target_type (type);
14f9c5c9
AS
1787
1788 if (type == NULL)
1789 return 0;
61ee279c 1790 type = ada_check_typedef (type);
556bdfd4 1791 return (data_type != NULL
78134374 1792 && data_type->code () == TYPE_CODE_ARRAY
556bdfd4 1793 && desc_arity (desc_bounds_type (type)) > 0);
14f9c5c9
AS
1794}
1795
1796/* Non-zero iff type is a partially mal-formed GNAT array
4c4b4cd2 1797 descriptor. FIXME: This is to compensate for some problems with
14f9c5c9 1798 debugging output from GNAT. Re-examine periodically to see if it
4c4b4cd2
PH
1799 is still needed. */
1800
14f9c5c9 1801int
ebf56fd3 1802ada_is_bogus_array_descriptor (struct type *type)
14f9c5c9 1803{
d2e4a39e 1804 return
14f9c5c9 1805 type != NULL
78134374 1806 && type->code () == TYPE_CODE_STRUCT
14f9c5c9 1807 && (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL
4c4b4cd2
PH
1808 || lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL)
1809 && !ada_is_array_descriptor_type (type);
14f9c5c9
AS
1810}
1811
1812
4c4b4cd2 1813/* If ARR has a record type in the form of a standard GNAT array descriptor,
14f9c5c9 1814 (fat pointer) returns the type of the array data described---specifically,
4c4b4cd2 1815 a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled
14f9c5c9 1816 in from the descriptor; otherwise, they are left unspecified. If
4c4b4cd2
PH
1817 the ARR denotes a null array descriptor and BOUNDS is non-zero,
1818 returns NULL. The result is simply the type of ARR if ARR is not
14f9c5c9 1819 a descriptor. */
de93309a
SM
1820
1821static struct type *
d2e4a39e 1822ada_type_of_array (struct value *arr, int bounds)
14f9c5c9 1823{
ad82864c
JB
1824 if (ada_is_constrained_packed_array_type (value_type (arr)))
1825 return decode_constrained_packed_array_type (value_type (arr));
14f9c5c9 1826
df407dfe
AC
1827 if (!ada_is_array_descriptor_type (value_type (arr)))
1828 return value_type (arr);
d2e4a39e
AS
1829
1830 if (!bounds)
ad82864c
JB
1831 {
1832 struct type *array_type =
1833 ada_check_typedef (desc_data_target_type (value_type (arr)));
1834
1835 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1836 TYPE_FIELD_BITSIZE (array_type, 0) =
1837 decode_packed_array_bitsize (value_type (arr));
1838
1839 return array_type;
1840 }
14f9c5c9
AS
1841 else
1842 {
d2e4a39e 1843 struct type *elt_type;
14f9c5c9 1844 int arity;
d2e4a39e 1845 struct value *descriptor;
14f9c5c9 1846
df407dfe
AC
1847 elt_type = ada_array_element_type (value_type (arr), -1);
1848 arity = ada_array_arity (value_type (arr));
14f9c5c9 1849
d2e4a39e 1850 if (elt_type == NULL || arity == 0)
df407dfe 1851 return ada_check_typedef (value_type (arr));
14f9c5c9
AS
1852
1853 descriptor = desc_bounds (arr);
d2e4a39e 1854 if (value_as_long (descriptor) == 0)
4c4b4cd2 1855 return NULL;
d2e4a39e 1856 while (arity > 0)
4c4b4cd2 1857 {
e9bb382b
UW
1858 struct type *range_type = alloc_type_copy (value_type (arr));
1859 struct type *array_type = alloc_type_copy (value_type (arr));
4c4b4cd2
PH
1860 struct value *low = desc_one_bound (descriptor, arity, 0);
1861 struct value *high = desc_one_bound (descriptor, arity, 1);
4c4b4cd2 1862
5b4ee69b 1863 arity -= 1;
0c9c3474
SA
1864 create_static_range_type (range_type, value_type (low),
1865 longest_to_int (value_as_long (low)),
1866 longest_to_int (value_as_long (high)));
4c4b4cd2 1867 elt_type = create_array_type (array_type, elt_type, range_type);
ad82864c
JB
1868
1869 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
e67ad678
JB
1870 {
1871 /* We need to store the element packed bitsize, as well as
1872 recompute the array size, because it was previously
1873 computed based on the unpacked element size. */
1874 LONGEST lo = value_as_long (low);
1875 LONGEST hi = value_as_long (high);
1876
1877 TYPE_FIELD_BITSIZE (elt_type, 0) =
1878 decode_packed_array_bitsize (value_type (arr));
1879 /* If the array has no element, then the size is already
1880 zero, and does not need to be recomputed. */
1881 if (lo < hi)
1882 {
1883 int array_bitsize =
1884 (hi - lo + 1) * TYPE_FIELD_BITSIZE (elt_type, 0);
1885
1886 TYPE_LENGTH (array_type) = (array_bitsize + 7) / 8;
1887 }
1888 }
4c4b4cd2 1889 }
14f9c5c9
AS
1890
1891 return lookup_pointer_type (elt_type);
1892 }
1893}
1894
1895/* If ARR does not represent an array, returns ARR unchanged.
4c4b4cd2
PH
1896 Otherwise, returns either a standard GDB array with bounds set
1897 appropriately or, if ARR is a non-null fat pointer, a pointer to a standard
1898 GDB array. Returns NULL if ARR is a null fat pointer. */
1899
d2e4a39e
AS
1900struct value *
1901ada_coerce_to_simple_array_ptr (struct value *arr)
14f9c5c9 1902{
df407dfe 1903 if (ada_is_array_descriptor_type (value_type (arr)))
14f9c5c9 1904 {
d2e4a39e 1905 struct type *arrType = ada_type_of_array (arr, 1);
5b4ee69b 1906
14f9c5c9 1907 if (arrType == NULL)
4c4b4cd2 1908 return NULL;
14f9c5c9
AS
1909 return value_cast (arrType, value_copy (desc_data (arr)));
1910 }
ad82864c
JB
1911 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1912 return decode_constrained_packed_array (arr);
14f9c5c9
AS
1913 else
1914 return arr;
1915}
1916
1917/* If ARR does not represent an array, returns ARR unchanged.
1918 Otherwise, returns a standard GDB array describing ARR (which may
4c4b4cd2
PH
1919 be ARR itself if it already is in the proper form). */
1920
720d1a40 1921struct value *
d2e4a39e 1922ada_coerce_to_simple_array (struct value *arr)
14f9c5c9 1923{
df407dfe 1924 if (ada_is_array_descriptor_type (value_type (arr)))
14f9c5c9 1925 {
d2e4a39e 1926 struct value *arrVal = ada_coerce_to_simple_array_ptr (arr);
5b4ee69b 1927
14f9c5c9 1928 if (arrVal == NULL)
323e0a4a 1929 error (_("Bounds unavailable for null array pointer."));
c1b5a1a6 1930 ada_ensure_varsize_limit (TYPE_TARGET_TYPE (value_type (arrVal)));
14f9c5c9
AS
1931 return value_ind (arrVal);
1932 }
ad82864c
JB
1933 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1934 return decode_constrained_packed_array (arr);
d2e4a39e 1935 else
14f9c5c9
AS
1936 return arr;
1937}
1938
1939/* If TYPE represents a GNAT array type, return it translated to an
1940 ordinary GDB array type (possibly with BITSIZE fields indicating
4c4b4cd2
PH
1941 packing). For other types, is the identity. */
1942
d2e4a39e
AS
1943struct type *
1944ada_coerce_to_simple_array_type (struct type *type)
14f9c5c9 1945{
ad82864c
JB
1946 if (ada_is_constrained_packed_array_type (type))
1947 return decode_constrained_packed_array_type (type);
17280b9f
UW
1948
1949 if (ada_is_array_descriptor_type (type))
556bdfd4 1950 return ada_check_typedef (desc_data_target_type (type));
17280b9f
UW
1951
1952 return type;
14f9c5c9
AS
1953}
1954
4c4b4cd2
PH
1955/* Non-zero iff TYPE represents a standard GNAT packed-array type. */
1956
ad82864c
JB
1957static int
1958ada_is_packed_array_type (struct type *type)
14f9c5c9
AS
1959{
1960 if (type == NULL)
1961 return 0;
4c4b4cd2 1962 type = desc_base_type (type);
61ee279c 1963 type = ada_check_typedef (type);
d2e4a39e 1964 return
14f9c5c9
AS
1965 ada_type_name (type) != NULL
1966 && strstr (ada_type_name (type), "___XP") != NULL;
1967}
1968
ad82864c
JB
1969/* Non-zero iff TYPE represents a standard GNAT constrained
1970 packed-array type. */
1971
1972int
1973ada_is_constrained_packed_array_type (struct type *type)
1974{
1975 return ada_is_packed_array_type (type)
1976 && !ada_is_array_descriptor_type (type);
1977}
1978
1979/* Non-zero iff TYPE represents an array descriptor for a
1980 unconstrained packed-array type. */
1981
1982static int
1983ada_is_unconstrained_packed_array_type (struct type *type)
1984{
1985 return ada_is_packed_array_type (type)
1986 && ada_is_array_descriptor_type (type);
1987}
1988
1989/* Given that TYPE encodes a packed array type (constrained or unconstrained),
1990 return the size of its elements in bits. */
1991
1992static long
1993decode_packed_array_bitsize (struct type *type)
1994{
0d5cff50
DE
1995 const char *raw_name;
1996 const char *tail;
ad82864c
JB
1997 long bits;
1998
720d1a40
JB
1999 /* Access to arrays implemented as fat pointers are encoded as a typedef
2000 of the fat pointer type. We need the name of the fat pointer type
2001 to do the decoding, so strip the typedef layer. */
78134374 2002 if (type->code () == TYPE_CODE_TYPEDEF)
720d1a40
JB
2003 type = ada_typedef_target_type (type);
2004
2005 raw_name = ada_type_name (ada_check_typedef (type));
ad82864c
JB
2006 if (!raw_name)
2007 raw_name = ada_type_name (desc_base_type (type));
2008
2009 if (!raw_name)
2010 return 0;
2011
2012 tail = strstr (raw_name, "___XP");
720d1a40 2013 gdb_assert (tail != NULL);
ad82864c
JB
2014
2015 if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1)
2016 {
2017 lim_warning
2018 (_("could not understand bit size information on packed array"));
2019 return 0;
2020 }
2021
2022 return bits;
2023}
2024
14f9c5c9
AS
2025/* Given that TYPE is a standard GDB array type with all bounds filled
2026 in, and that the element size of its ultimate scalar constituents
2027 (that is, either its elements, or, if it is an array of arrays, its
2028 elements' elements, etc.) is *ELT_BITS, return an identical type,
2029 but with the bit sizes of its elements (and those of any
2030 constituent arrays) recorded in the BITSIZE components of its
4c4b4cd2 2031 TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size
4a46959e
JB
2032 in bits.
2033
2034 Note that, for arrays whose index type has an XA encoding where
2035 a bound references a record discriminant, getting that discriminant,
2036 and therefore the actual value of that bound, is not possible
2037 because none of the given parameters gives us access to the record.
2038 This function assumes that it is OK in the context where it is being
2039 used to return an array whose bounds are still dynamic and where
2040 the length is arbitrary. */
4c4b4cd2 2041
d2e4a39e 2042static struct type *
ad82864c 2043constrained_packed_array_type (struct type *type, long *elt_bits)
14f9c5c9 2044{
d2e4a39e
AS
2045 struct type *new_elt_type;
2046 struct type *new_type;
99b1c762
JB
2047 struct type *index_type_desc;
2048 struct type *index_type;
14f9c5c9
AS
2049 LONGEST low_bound, high_bound;
2050
61ee279c 2051 type = ada_check_typedef (type);
78134374 2052 if (type->code () != TYPE_CODE_ARRAY)
14f9c5c9
AS
2053 return type;
2054
99b1c762
JB
2055 index_type_desc = ada_find_parallel_type (type, "___XA");
2056 if (index_type_desc)
940da03e 2057 index_type = to_fixed_range_type (index_type_desc->field (0).type (),
99b1c762
JB
2058 NULL);
2059 else
3d967001 2060 index_type = type->index_type ();
99b1c762 2061
e9bb382b 2062 new_type = alloc_type_copy (type);
ad82864c
JB
2063 new_elt_type =
2064 constrained_packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)),
2065 elt_bits);
99b1c762 2066 create_array_type (new_type, new_elt_type, index_type);
14f9c5c9 2067 TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits;
d0e39ea2 2068 new_type->set_name (ada_type_name (type));
14f9c5c9 2069
78134374 2070 if ((check_typedef (index_type)->code () == TYPE_CODE_RANGE
4a46959e
JB
2071 && is_dynamic_type (check_typedef (index_type)))
2072 || get_discrete_bounds (index_type, &low_bound, &high_bound) < 0)
14f9c5c9
AS
2073 low_bound = high_bound = 0;
2074 if (high_bound < low_bound)
2075 *elt_bits = TYPE_LENGTH (new_type) = 0;
d2e4a39e 2076 else
14f9c5c9
AS
2077 {
2078 *elt_bits *= (high_bound - low_bound + 1);
d2e4a39e 2079 TYPE_LENGTH (new_type) =
4c4b4cd2 2080 (*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
14f9c5c9
AS
2081 }
2082
876cecd0 2083 TYPE_FIXED_INSTANCE (new_type) = 1;
14f9c5c9
AS
2084 return new_type;
2085}
2086
ad82864c
JB
2087/* The array type encoded by TYPE, where
2088 ada_is_constrained_packed_array_type (TYPE). */
4c4b4cd2 2089
d2e4a39e 2090static struct type *
ad82864c 2091decode_constrained_packed_array_type (struct type *type)
d2e4a39e 2092{
0d5cff50 2093 const char *raw_name = ada_type_name (ada_check_typedef (type));
727e3d2e 2094 char *name;
0d5cff50 2095 const char *tail;
d2e4a39e 2096 struct type *shadow_type;
14f9c5c9 2097 long bits;
14f9c5c9 2098
727e3d2e
JB
2099 if (!raw_name)
2100 raw_name = ada_type_name (desc_base_type (type));
2101
2102 if (!raw_name)
2103 return NULL;
2104
2105 name = (char *) alloca (strlen (raw_name) + 1);
2106 tail = strstr (raw_name, "___XP");
4c4b4cd2
PH
2107 type = desc_base_type (type);
2108
14f9c5c9
AS
2109 memcpy (name, raw_name, tail - raw_name);
2110 name[tail - raw_name] = '\000';
2111
b4ba55a1
JB
2112 shadow_type = ada_find_parallel_type_with_name (type, name);
2113
2114 if (shadow_type == NULL)
14f9c5c9 2115 {
323e0a4a 2116 lim_warning (_("could not find bounds information on packed array"));
14f9c5c9
AS
2117 return NULL;
2118 }
f168693b 2119 shadow_type = check_typedef (shadow_type);
14f9c5c9 2120
78134374 2121 if (shadow_type->code () != TYPE_CODE_ARRAY)
14f9c5c9 2122 {
0963b4bd
MS
2123 lim_warning (_("could not understand bounds "
2124 "information on packed array"));
14f9c5c9
AS
2125 return NULL;
2126 }
d2e4a39e 2127
ad82864c
JB
2128 bits = decode_packed_array_bitsize (type);
2129 return constrained_packed_array_type (shadow_type, &bits);
14f9c5c9
AS
2130}
2131
ad82864c
JB
2132/* Given that ARR is a struct value *indicating a GNAT constrained packed
2133 array, returns a simple array that denotes that array. Its type is a
14f9c5c9
AS
2134 standard GDB array type except that the BITSIZEs of the array
2135 target types are set to the number of bits in each element, and the
4c4b4cd2 2136 type length is set appropriately. */
14f9c5c9 2137
d2e4a39e 2138static struct value *
ad82864c 2139decode_constrained_packed_array (struct value *arr)
14f9c5c9 2140{
4c4b4cd2 2141 struct type *type;
14f9c5c9 2142
11aa919a
PMR
2143 /* If our value is a pointer, then dereference it. Likewise if
2144 the value is a reference. Make sure that this operation does not
2145 cause the target type to be fixed, as this would indirectly cause
2146 this array to be decoded. The rest of the routine assumes that
2147 the array hasn't been decoded yet, so we use the basic "coerce_ref"
2148 and "value_ind" routines to perform the dereferencing, as opposed
2149 to using "ada_coerce_ref" or "ada_value_ind". */
2150 arr = coerce_ref (arr);
78134374 2151 if (ada_check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
284614f0 2152 arr = value_ind (arr);
4c4b4cd2 2153
ad82864c 2154 type = decode_constrained_packed_array_type (value_type (arr));
14f9c5c9
AS
2155 if (type == NULL)
2156 {
323e0a4a 2157 error (_("can't unpack array"));
14f9c5c9
AS
2158 return NULL;
2159 }
61ee279c 2160
d5a22e77 2161 if (type_byte_order (value_type (arr)) == BFD_ENDIAN_BIG
32c9a795 2162 && ada_is_modular_type (value_type (arr)))
61ee279c
PH
2163 {
2164 /* This is a (right-justified) modular type representing a packed
2165 array with no wrapper. In order to interpret the value through
2166 the (left-justified) packed array type we just built, we must
2167 first left-justify it. */
2168 int bit_size, bit_pos;
2169 ULONGEST mod;
2170
df407dfe 2171 mod = ada_modulus (value_type (arr)) - 1;
61ee279c
PH
2172 bit_size = 0;
2173 while (mod > 0)
2174 {
2175 bit_size += 1;
2176 mod >>= 1;
2177 }
df407dfe 2178 bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size;
61ee279c
PH
2179 arr = ada_value_primitive_packed_val (arr, NULL,
2180 bit_pos / HOST_CHAR_BIT,
2181 bit_pos % HOST_CHAR_BIT,
2182 bit_size,
2183 type);
2184 }
2185
4c4b4cd2 2186 return coerce_unspec_val_to_type (arr, type);
14f9c5c9
AS
2187}
2188
2189
2190/* The value of the element of packed array ARR at the ARITY indices
4c4b4cd2 2191 given in IND. ARR must be a simple array. */
14f9c5c9 2192
d2e4a39e
AS
2193static struct value *
2194value_subscript_packed (struct value *arr, int arity, struct value **ind)
14f9c5c9
AS
2195{
2196 int i;
2197 int bits, elt_off, bit_off;
2198 long elt_total_bit_offset;
d2e4a39e
AS
2199 struct type *elt_type;
2200 struct value *v;
14f9c5c9
AS
2201
2202 bits = 0;
2203 elt_total_bit_offset = 0;
df407dfe 2204 elt_type = ada_check_typedef (value_type (arr));
d2e4a39e 2205 for (i = 0; i < arity; i += 1)
14f9c5c9 2206 {
78134374 2207 if (elt_type->code () != TYPE_CODE_ARRAY
4c4b4cd2
PH
2208 || TYPE_FIELD_BITSIZE (elt_type, 0) == 0)
2209 error
0963b4bd
MS
2210 (_("attempt to do packed indexing of "
2211 "something other than a packed array"));
14f9c5c9 2212 else
4c4b4cd2 2213 {
3d967001 2214 struct type *range_type = elt_type->index_type ();
4c4b4cd2
PH
2215 LONGEST lowerbound, upperbound;
2216 LONGEST idx;
2217
2218 if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
2219 {
323e0a4a 2220 lim_warning (_("don't know bounds of array"));
4c4b4cd2
PH
2221 lowerbound = upperbound = 0;
2222 }
2223
3cb382c9 2224 idx = pos_atr (ind[i]);
4c4b4cd2 2225 if (idx < lowerbound || idx > upperbound)
0963b4bd
MS
2226 lim_warning (_("packed array index %ld out of bounds"),
2227 (long) idx);
4c4b4cd2
PH
2228 bits = TYPE_FIELD_BITSIZE (elt_type, 0);
2229 elt_total_bit_offset += (idx - lowerbound) * bits;
61ee279c 2230 elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type));
4c4b4cd2 2231 }
14f9c5c9
AS
2232 }
2233 elt_off = elt_total_bit_offset / HOST_CHAR_BIT;
2234 bit_off = elt_total_bit_offset % HOST_CHAR_BIT;
d2e4a39e
AS
2235
2236 v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off,
4c4b4cd2 2237 bits, elt_type);
14f9c5c9
AS
2238 return v;
2239}
2240
4c4b4cd2 2241/* Non-zero iff TYPE includes negative integer values. */
14f9c5c9
AS
2242
2243static int
d2e4a39e 2244has_negatives (struct type *type)
14f9c5c9 2245{
78134374 2246 switch (type->code ())
d2e4a39e
AS
2247 {
2248 default:
2249 return 0;
2250 case TYPE_CODE_INT:
2251 return !TYPE_UNSIGNED (type);
2252 case TYPE_CODE_RANGE:
4e962e74 2253 return TYPE_LOW_BOUND (type) - TYPE_RANGE_DATA (type)->bias < 0;
d2e4a39e 2254 }
14f9c5c9 2255}
d2e4a39e 2256
f93fca70 2257/* With SRC being a buffer containing BIT_SIZE bits of data at BIT_OFFSET,
5b639dea 2258 unpack that data into UNPACKED. UNPACKED_LEN is the size in bytes of
f93fca70 2259 the unpacked buffer.
14f9c5c9 2260
5b639dea
JB
2261 The size of the unpacked buffer (UNPACKED_LEN) is expected to be large
2262 enough to contain at least BIT_OFFSET bits. If not, an error is raised.
2263
f93fca70
JB
2264 IS_BIG_ENDIAN is nonzero if the data is stored in big endian mode,
2265 zero otherwise.
14f9c5c9 2266
f93fca70 2267 IS_SIGNED_TYPE is nonzero if the data corresponds to a signed type.
a1c95e6b 2268
f93fca70
JB
2269 IS_SCALAR is nonzero if the data corresponds to a signed type. */
2270
2271static void
2272ada_unpack_from_contents (const gdb_byte *src, int bit_offset, int bit_size,
2273 gdb_byte *unpacked, int unpacked_len,
2274 int is_big_endian, int is_signed_type,
2275 int is_scalar)
2276{
a1c95e6b
JB
2277 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
2278 int src_idx; /* Index into the source area */
2279 int src_bytes_left; /* Number of source bytes left to process. */
2280 int srcBitsLeft; /* Number of source bits left to move */
2281 int unusedLS; /* Number of bits in next significant
2282 byte of source that are unused */
2283
a1c95e6b
JB
2284 int unpacked_idx; /* Index into the unpacked buffer */
2285 int unpacked_bytes_left; /* Number of bytes left to set in unpacked. */
2286
4c4b4cd2 2287 unsigned long accum; /* Staging area for bits being transferred */
a1c95e6b 2288 int accumSize; /* Number of meaningful bits in accum */
14f9c5c9 2289 unsigned char sign;
a1c95e6b 2290
4c4b4cd2
PH
2291 /* Transmit bytes from least to most significant; delta is the direction
2292 the indices move. */
f93fca70 2293 int delta = is_big_endian ? -1 : 1;
14f9c5c9 2294
5b639dea
JB
2295 /* Make sure that unpacked is large enough to receive the BIT_SIZE
2296 bits from SRC. .*/
2297 if ((bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT > unpacked_len)
2298 error (_("Cannot unpack %d bits into buffer of %d bytes"),
2299 bit_size, unpacked_len);
2300
14f9c5c9 2301 srcBitsLeft = bit_size;
086ca51f 2302 src_bytes_left = src_len;
f93fca70 2303 unpacked_bytes_left = unpacked_len;
14f9c5c9 2304 sign = 0;
f93fca70
JB
2305
2306 if (is_big_endian)
14f9c5c9 2307 {
086ca51f 2308 src_idx = src_len - 1;
f93fca70
JB
2309 if (is_signed_type
2310 && ((src[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1))))
4c4b4cd2 2311 sign = ~0;
d2e4a39e
AS
2312
2313 unusedLS =
4c4b4cd2
PH
2314 (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT)
2315 % HOST_CHAR_BIT;
14f9c5c9 2316
f93fca70
JB
2317 if (is_scalar)
2318 {
2319 accumSize = 0;
2320 unpacked_idx = unpacked_len - 1;
2321 }
2322 else
2323 {
4c4b4cd2
PH
2324 /* Non-scalar values must be aligned at a byte boundary... */
2325 accumSize =
2326 (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT;
2327 /* ... And are placed at the beginning (most-significant) bytes
2328 of the target. */
086ca51f
JB
2329 unpacked_idx = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT - 1;
2330 unpacked_bytes_left = unpacked_idx + 1;
f93fca70 2331 }
14f9c5c9 2332 }
d2e4a39e 2333 else
14f9c5c9
AS
2334 {
2335 int sign_bit_offset = (bit_size + bit_offset - 1) % 8;
2336
086ca51f 2337 src_idx = unpacked_idx = 0;
14f9c5c9
AS
2338 unusedLS = bit_offset;
2339 accumSize = 0;
2340
f93fca70 2341 if (is_signed_type && (src[src_len - 1] & (1 << sign_bit_offset)))
4c4b4cd2 2342 sign = ~0;
14f9c5c9 2343 }
d2e4a39e 2344
14f9c5c9 2345 accum = 0;
086ca51f 2346 while (src_bytes_left > 0)
14f9c5c9
AS
2347 {
2348 /* Mask for removing bits of the next source byte that are not
4c4b4cd2 2349 part of the value. */
d2e4a39e 2350 unsigned int unusedMSMask =
4c4b4cd2
PH
2351 (1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) -
2352 1;
2353 /* Sign-extend bits for this byte. */
14f9c5c9 2354 unsigned int signMask = sign & ~unusedMSMask;
5b4ee69b 2355
d2e4a39e 2356 accum |=
086ca51f 2357 (((src[src_idx] >> unusedLS) & unusedMSMask) | signMask) << accumSize;
14f9c5c9 2358 accumSize += HOST_CHAR_BIT - unusedLS;
d2e4a39e 2359 if (accumSize >= HOST_CHAR_BIT)
4c4b4cd2 2360 {
db297a65 2361 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
4c4b4cd2
PH
2362 accumSize -= HOST_CHAR_BIT;
2363 accum >>= HOST_CHAR_BIT;
086ca51f
JB
2364 unpacked_bytes_left -= 1;
2365 unpacked_idx += delta;
4c4b4cd2 2366 }
14f9c5c9
AS
2367 srcBitsLeft -= HOST_CHAR_BIT - unusedLS;
2368 unusedLS = 0;
086ca51f
JB
2369 src_bytes_left -= 1;
2370 src_idx += delta;
14f9c5c9 2371 }
086ca51f 2372 while (unpacked_bytes_left > 0)
14f9c5c9
AS
2373 {
2374 accum |= sign << accumSize;
db297a65 2375 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
14f9c5c9 2376 accumSize -= HOST_CHAR_BIT;
9cd4d857
JB
2377 if (accumSize < 0)
2378 accumSize = 0;
14f9c5c9 2379 accum >>= HOST_CHAR_BIT;
086ca51f
JB
2380 unpacked_bytes_left -= 1;
2381 unpacked_idx += delta;
14f9c5c9 2382 }
f93fca70
JB
2383}
2384
2385/* Create a new value of type TYPE from the contents of OBJ starting
2386 at byte OFFSET, and bit offset BIT_OFFSET within that byte,
2387 proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then
2388 assigning through the result will set the field fetched from.
2389 VALADDR is ignored unless OBJ is NULL, in which case,
2390 VALADDR+OFFSET must address the start of storage containing the
2391 packed value. The value returned in this case is never an lval.
2392 Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */
2393
2394struct value *
2395ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
2396 long offset, int bit_offset, int bit_size,
2397 struct type *type)
2398{
2399 struct value *v;
bfb1c796 2400 const gdb_byte *src; /* First byte containing data to unpack */
f93fca70 2401 gdb_byte *unpacked;
220475ed 2402 const int is_scalar = is_scalar_type (type);
d5a22e77 2403 const int is_big_endian = type_byte_order (type) == BFD_ENDIAN_BIG;
d5722aa2 2404 gdb::byte_vector staging;
f93fca70
JB
2405
2406 type = ada_check_typedef (type);
2407
d0a9e810 2408 if (obj == NULL)
bfb1c796 2409 src = valaddr + offset;
d0a9e810 2410 else
bfb1c796 2411 src = value_contents (obj) + offset;
d0a9e810
JB
2412
2413 if (is_dynamic_type (type))
2414 {
2415 /* The length of TYPE might by dynamic, so we need to resolve
2416 TYPE in order to know its actual size, which we then use
2417 to create the contents buffer of the value we return.
2418 The difficulty is that the data containing our object is
2419 packed, and therefore maybe not at a byte boundary. So, what
2420 we do, is unpack the data into a byte-aligned buffer, and then
2421 use that buffer as our object's value for resolving the type. */
d5722aa2
PA
2422 int staging_len = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
2423 staging.resize (staging_len);
d0a9e810
JB
2424
2425 ada_unpack_from_contents (src, bit_offset, bit_size,
d5722aa2 2426 staging.data (), staging.size (),
d0a9e810
JB
2427 is_big_endian, has_negatives (type),
2428 is_scalar);
b249d2c2 2429 type = resolve_dynamic_type (type, staging, 0);
0cafa88c
JB
2430 if (TYPE_LENGTH (type) < (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT)
2431 {
2432 /* This happens when the length of the object is dynamic,
2433 and is actually smaller than the space reserved for it.
2434 For instance, in an array of variant records, the bit_size
2435 we're given is the array stride, which is constant and
2436 normally equal to the maximum size of its element.
2437 But, in reality, each element only actually spans a portion
2438 of that stride. */
2439 bit_size = TYPE_LENGTH (type) * HOST_CHAR_BIT;
2440 }
d0a9e810
JB
2441 }
2442
f93fca70
JB
2443 if (obj == NULL)
2444 {
2445 v = allocate_value (type);
bfb1c796 2446 src = valaddr + offset;
f93fca70
JB
2447 }
2448 else if (VALUE_LVAL (obj) == lval_memory && value_lazy (obj))
2449 {
0cafa88c 2450 int src_len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
bfb1c796 2451 gdb_byte *buf;
0cafa88c 2452
f93fca70 2453 v = value_at (type, value_address (obj) + offset);
bfb1c796
PA
2454 buf = (gdb_byte *) alloca (src_len);
2455 read_memory (value_address (v), buf, src_len);
2456 src = buf;
f93fca70
JB
2457 }
2458 else
2459 {
2460 v = allocate_value (type);
bfb1c796 2461 src = value_contents (obj) + offset;
f93fca70
JB
2462 }
2463
2464 if (obj != NULL)
2465 {
2466 long new_offset = offset;
2467
2468 set_value_component_location (v, obj);
2469 set_value_bitpos (v, bit_offset + value_bitpos (obj));
2470 set_value_bitsize (v, bit_size);
2471 if (value_bitpos (v) >= HOST_CHAR_BIT)
2472 {
2473 ++new_offset;
2474 set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT);
2475 }
2476 set_value_offset (v, new_offset);
2477
2478 /* Also set the parent value. This is needed when trying to
2479 assign a new value (in inferior memory). */
2480 set_value_parent (v, obj);
2481 }
2482 else
2483 set_value_bitsize (v, bit_size);
bfb1c796 2484 unpacked = value_contents_writeable (v);
f93fca70
JB
2485
2486 if (bit_size == 0)
2487 {
2488 memset (unpacked, 0, TYPE_LENGTH (type));
2489 return v;
2490 }
2491
d5722aa2 2492 if (staging.size () == TYPE_LENGTH (type))
f93fca70 2493 {
d0a9e810
JB
2494 /* Small short-cut: If we've unpacked the data into a buffer
2495 of the same size as TYPE's length, then we can reuse that,
2496 instead of doing the unpacking again. */
d5722aa2 2497 memcpy (unpacked, staging.data (), staging.size ());
f93fca70 2498 }
d0a9e810
JB
2499 else
2500 ada_unpack_from_contents (src, bit_offset, bit_size,
2501 unpacked, TYPE_LENGTH (type),
2502 is_big_endian, has_negatives (type), is_scalar);
f93fca70 2503
14f9c5c9
AS
2504 return v;
2505}
d2e4a39e 2506
14f9c5c9
AS
2507/* Store the contents of FROMVAL into the location of TOVAL.
2508 Return a new value with the location of TOVAL and contents of
2509 FROMVAL. Handles assignment into packed fields that have
4c4b4cd2 2510 floating-point or non-scalar types. */
14f9c5c9 2511
d2e4a39e
AS
2512static struct value *
2513ada_value_assign (struct value *toval, struct value *fromval)
14f9c5c9 2514{
df407dfe
AC
2515 struct type *type = value_type (toval);
2516 int bits = value_bitsize (toval);
14f9c5c9 2517
52ce6436
PH
2518 toval = ada_coerce_ref (toval);
2519 fromval = ada_coerce_ref (fromval);
2520
2521 if (ada_is_direct_array_type (value_type (toval)))
2522 toval = ada_coerce_to_simple_array (toval);
2523 if (ada_is_direct_array_type (value_type (fromval)))
2524 fromval = ada_coerce_to_simple_array (fromval);
2525
88e3b34b 2526 if (!deprecated_value_modifiable (toval))
323e0a4a 2527 error (_("Left operand of assignment is not a modifiable lvalue."));
14f9c5c9 2528
d2e4a39e 2529 if (VALUE_LVAL (toval) == lval_memory
14f9c5c9 2530 && bits > 0
78134374
SM
2531 && (type->code () == TYPE_CODE_FLT
2532 || type->code () == TYPE_CODE_STRUCT))
14f9c5c9 2533 {
df407dfe
AC
2534 int len = (value_bitpos (toval)
2535 + bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
aced2898 2536 int from_size;
224c3ddb 2537 gdb_byte *buffer = (gdb_byte *) alloca (len);
d2e4a39e 2538 struct value *val;
42ae5230 2539 CORE_ADDR to_addr = value_address (toval);
14f9c5c9 2540
78134374 2541 if (type->code () == TYPE_CODE_FLT)
4c4b4cd2 2542 fromval = value_cast (type, fromval);
14f9c5c9 2543
52ce6436 2544 read_memory (to_addr, buffer, len);
aced2898
PH
2545 from_size = value_bitsize (fromval);
2546 if (from_size == 0)
2547 from_size = TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT;
d48e62f4 2548
d5a22e77 2549 const int is_big_endian = type_byte_order (type) == BFD_ENDIAN_BIG;
d48e62f4
TT
2550 ULONGEST from_offset = 0;
2551 if (is_big_endian && is_scalar_type (value_type (fromval)))
2552 from_offset = from_size - bits;
2553 copy_bitwise (buffer, value_bitpos (toval),
2554 value_contents (fromval), from_offset,
2555 bits, is_big_endian);
972daa01 2556 write_memory_with_notification (to_addr, buffer, len);
8cebebb9 2557
14f9c5c9 2558 val = value_copy (toval);
0fd88904 2559 memcpy (value_contents_raw (val), value_contents (fromval),
4c4b4cd2 2560 TYPE_LENGTH (type));
04624583 2561 deprecated_set_value_type (val, type);
d2e4a39e 2562
14f9c5c9
AS
2563 return val;
2564 }
2565
2566 return value_assign (toval, fromval);
2567}
2568
2569
7c512744
JB
2570/* Given that COMPONENT is a memory lvalue that is part of the lvalue
2571 CONTAINER, assign the contents of VAL to COMPONENTS's place in
2572 CONTAINER. Modifies the VALUE_CONTENTS of CONTAINER only, not
2573 COMPONENT, and not the inferior's memory. The current contents
2574 of COMPONENT are ignored.
2575
2576 Although not part of the initial design, this function also works
2577 when CONTAINER and COMPONENT are not_lval's: it works as if CONTAINER
2578 had a null address, and COMPONENT had an address which is equal to
2579 its offset inside CONTAINER. */
2580
52ce6436
PH
2581static void
2582value_assign_to_component (struct value *container, struct value *component,
2583 struct value *val)
2584{
2585 LONGEST offset_in_container =
42ae5230 2586 (LONGEST) (value_address (component) - value_address (container));
7c512744 2587 int bit_offset_in_container =
52ce6436
PH
2588 value_bitpos (component) - value_bitpos (container);
2589 int bits;
7c512744 2590
52ce6436
PH
2591 val = value_cast (value_type (component), val);
2592
2593 if (value_bitsize (component) == 0)
2594 bits = TARGET_CHAR_BIT * TYPE_LENGTH (value_type (component));
2595 else
2596 bits = value_bitsize (component);
2597
d5a22e77 2598 if (type_byte_order (value_type (container)) == BFD_ENDIAN_BIG)
2a62dfa9
JB
2599 {
2600 int src_offset;
2601
2602 if (is_scalar_type (check_typedef (value_type (component))))
2603 src_offset
2604 = TYPE_LENGTH (value_type (component)) * TARGET_CHAR_BIT - bits;
2605 else
2606 src_offset = 0;
a99bc3d2
JB
2607 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2608 value_bitpos (container) + bit_offset_in_container,
2609 value_contents (val), src_offset, bits, 1);
2a62dfa9 2610 }
52ce6436 2611 else
a99bc3d2
JB
2612 copy_bitwise (value_contents_writeable (container) + offset_in_container,
2613 value_bitpos (container) + bit_offset_in_container,
2614 value_contents (val), 0, bits, 0);
7c512744
JB
2615}
2616
736ade86
XR
2617/* Determine if TYPE is an access to an unconstrained array. */
2618
d91e9ea8 2619bool
736ade86
XR
2620ada_is_access_to_unconstrained_array (struct type *type)
2621{
78134374 2622 return (type->code () == TYPE_CODE_TYPEDEF
736ade86
XR
2623 && is_thick_pntr (ada_typedef_target_type (type)));
2624}
2625
4c4b4cd2
PH
2626/* The value of the element of array ARR at the ARITY indices given in IND.
2627 ARR may be either a simple array, GNAT array descriptor, or pointer
14f9c5c9
AS
2628 thereto. */
2629
d2e4a39e
AS
2630struct value *
2631ada_value_subscript (struct value *arr, int arity, struct value **ind)
14f9c5c9
AS
2632{
2633 int k;
d2e4a39e
AS
2634 struct value *elt;
2635 struct type *elt_type;
14f9c5c9
AS
2636
2637 elt = ada_coerce_to_simple_array (arr);
2638
df407dfe 2639 elt_type = ada_check_typedef (value_type (elt));
78134374 2640 if (elt_type->code () == TYPE_CODE_ARRAY
14f9c5c9
AS
2641 && TYPE_FIELD_BITSIZE (elt_type, 0) > 0)
2642 return value_subscript_packed (elt, arity, ind);
2643
2644 for (k = 0; k < arity; k += 1)
2645 {
b9c50e9a
XR
2646 struct type *saved_elt_type = TYPE_TARGET_TYPE (elt_type);
2647
78134374 2648 if (elt_type->code () != TYPE_CODE_ARRAY)
323e0a4a 2649 error (_("too many subscripts (%d expected)"), k);
b9c50e9a 2650
2497b498 2651 elt = value_subscript (elt, pos_atr (ind[k]));
b9c50e9a
XR
2652
2653 if (ada_is_access_to_unconstrained_array (saved_elt_type)
78134374 2654 && value_type (elt)->code () != TYPE_CODE_TYPEDEF)
b9c50e9a
XR
2655 {
2656 /* The element is a typedef to an unconstrained array,
2657 except that the value_subscript call stripped the
2658 typedef layer. The typedef layer is GNAT's way to
2659 specify that the element is, at the source level, an
2660 access to the unconstrained array, rather than the
2661 unconstrained array. So, we need to restore that
2662 typedef layer, which we can do by forcing the element's
2663 type back to its original type. Otherwise, the returned
2664 value is going to be printed as the array, rather
2665 than as an access. Another symptom of the same issue
2666 would be that an expression trying to dereference the
2667 element would also be improperly rejected. */
2668 deprecated_set_value_type (elt, saved_elt_type);
2669 }
2670
2671 elt_type = ada_check_typedef (value_type (elt));
14f9c5c9 2672 }
b9c50e9a 2673
14f9c5c9
AS
2674 return elt;
2675}
2676
deede10c
JB
2677/* Assuming ARR is a pointer to a GDB array, the value of the element
2678 of *ARR at the ARITY indices given in IND.
919e6dbe
PMR
2679 Does not read the entire array into memory.
2680
2681 Note: Unlike what one would expect, this function is used instead of
2682 ada_value_subscript for basically all non-packed array types. The reason
2683 for this is that a side effect of doing our own pointer arithmetics instead
2684 of relying on value_subscript is that there is no implicit typedef peeling.
2685 This is important for arrays of array accesses, where it allows us to
2686 preserve the fact that the array's element is an array access, where the
2687 access part os encoded in a typedef layer. */
14f9c5c9 2688
2c0b251b 2689static struct value *
deede10c 2690ada_value_ptr_subscript (struct value *arr, int arity, struct value **ind)
14f9c5c9
AS
2691{
2692 int k;
919e6dbe 2693 struct value *array_ind = ada_value_ind (arr);
deede10c 2694 struct type *type
919e6dbe
PMR
2695 = check_typedef (value_enclosing_type (array_ind));
2696
78134374 2697 if (type->code () == TYPE_CODE_ARRAY
919e6dbe
PMR
2698 && TYPE_FIELD_BITSIZE (type, 0) > 0)
2699 return value_subscript_packed (array_ind, arity, ind);
14f9c5c9
AS
2700
2701 for (k = 0; k < arity; k += 1)
2702 {
2703 LONGEST lwb, upb;
14f9c5c9 2704
78134374 2705 if (type->code () != TYPE_CODE_ARRAY)
323e0a4a 2706 error (_("too many subscripts (%d expected)"), k);
d2e4a39e 2707 arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
4c4b4cd2 2708 value_copy (arr));
3d967001 2709 get_discrete_bounds (type->index_type (), &lwb, &upb);
53a47a3e 2710 arr = value_ptradd (arr, pos_atr (ind[k]) - lwb);
14f9c5c9
AS
2711 type = TYPE_TARGET_TYPE (type);
2712 }
2713
2714 return value_ind (arr);
2715}
2716
0b5d8877 2717/* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the
aa715135
JG
2718 actual type of ARRAY_PTR is ignored), returns the Ada slice of
2719 HIGH'Pos-LOW'Pos+1 elements starting at index LOW. The lower bound of
2720 this array is LOW, as per Ada rules. */
0b5d8877 2721static struct value *
f5938064
JG
2722ada_value_slice_from_ptr (struct value *array_ptr, struct type *type,
2723 int low, int high)
0b5d8877 2724{
b0dd7688 2725 struct type *type0 = ada_check_typedef (type);
3d967001 2726 struct type *base_index_type = TYPE_TARGET_TYPE (type0->index_type ());
0c9c3474 2727 struct type *index_type
aa715135 2728 = create_static_range_type (NULL, base_index_type, low, high);
9fe561ab
JB
2729 struct type *slice_type = create_array_type_with_stride
2730 (NULL, TYPE_TARGET_TYPE (type0), index_type,
24e99c6c 2731 type0->dyn_prop (DYN_PROP_BYTE_STRIDE),
9fe561ab 2732 TYPE_FIELD_BITSIZE (type0, 0));
3d967001 2733 int base_low = ada_discrete_type_low_bound (type0->index_type ());
aa715135
JG
2734 LONGEST base_low_pos, low_pos;
2735 CORE_ADDR base;
2736
2737 if (!discrete_position (base_index_type, low, &low_pos)
2738 || !discrete_position (base_index_type, base_low, &base_low_pos))
2739 {
2740 warning (_("unable to get positions in slice, use bounds instead"));
2741 low_pos = low;
2742 base_low_pos = base_low;
2743 }
5b4ee69b 2744
aa715135
JG
2745 base = value_as_address (array_ptr)
2746 + ((low_pos - base_low_pos)
2747 * TYPE_LENGTH (TYPE_TARGET_TYPE (type0)));
f5938064 2748 return value_at_lazy (slice_type, base);
0b5d8877
PH
2749}
2750
2751
2752static struct value *
2753ada_value_slice (struct value *array, int low, int high)
2754{
b0dd7688 2755 struct type *type = ada_check_typedef (value_type (array));
3d967001 2756 struct type *base_index_type = TYPE_TARGET_TYPE (type->index_type ());
0c9c3474 2757 struct type *index_type
3d967001 2758 = create_static_range_type (NULL, type->index_type (), low, high);
9fe561ab
JB
2759 struct type *slice_type = create_array_type_with_stride
2760 (NULL, TYPE_TARGET_TYPE (type), index_type,
24e99c6c 2761 type->dyn_prop (DYN_PROP_BYTE_STRIDE),
9fe561ab 2762 TYPE_FIELD_BITSIZE (type, 0));
aa715135 2763 LONGEST low_pos, high_pos;
5b4ee69b 2764
aa715135
JG
2765 if (!discrete_position (base_index_type, low, &low_pos)
2766 || !discrete_position (base_index_type, high, &high_pos))
2767 {
2768 warning (_("unable to get positions in slice, use bounds instead"));
2769 low_pos = low;
2770 high_pos = high;
2771 }
2772
2773 return value_cast (slice_type,
2774 value_slice (array, low, high_pos - low_pos + 1));
0b5d8877
PH
2775}
2776
14f9c5c9
AS
2777/* If type is a record type in the form of a standard GNAT array
2778 descriptor, returns the number of dimensions for type. If arr is a
2779 simple array, returns the number of "array of"s that prefix its
4c4b4cd2 2780 type designation. Otherwise, returns 0. */
14f9c5c9
AS
2781
2782int
d2e4a39e 2783ada_array_arity (struct type *type)
14f9c5c9
AS
2784{
2785 int arity;
2786
2787 if (type == NULL)
2788 return 0;
2789
2790 type = desc_base_type (type);
2791
2792 arity = 0;
78134374 2793 if (type->code () == TYPE_CODE_STRUCT)
14f9c5c9 2794 return desc_arity (desc_bounds_type (type));
d2e4a39e 2795 else
78134374 2796 while (type->code () == TYPE_CODE_ARRAY)
14f9c5c9 2797 {
4c4b4cd2 2798 arity += 1;
61ee279c 2799 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
14f9c5c9 2800 }
d2e4a39e 2801
14f9c5c9
AS
2802 return arity;
2803}
2804
2805/* If TYPE is a record type in the form of a standard GNAT array
2806 descriptor or a simple array type, returns the element type for
2807 TYPE after indexing by NINDICES indices, or by all indices if
4c4b4cd2 2808 NINDICES is -1. Otherwise, returns NULL. */
14f9c5c9 2809
d2e4a39e
AS
2810struct type *
2811ada_array_element_type (struct type *type, int nindices)
14f9c5c9
AS
2812{
2813 type = desc_base_type (type);
2814
78134374 2815 if (type->code () == TYPE_CODE_STRUCT)
14f9c5c9
AS
2816 {
2817 int k;
d2e4a39e 2818 struct type *p_array_type;
14f9c5c9 2819
556bdfd4 2820 p_array_type = desc_data_target_type (type);
14f9c5c9
AS
2821
2822 k = ada_array_arity (type);
2823 if (k == 0)
4c4b4cd2 2824 return NULL;
d2e4a39e 2825
4c4b4cd2 2826 /* Initially p_array_type = elt_type(*)[]...(k times)...[]. */
14f9c5c9 2827 if (nindices >= 0 && k > nindices)
4c4b4cd2 2828 k = nindices;
d2e4a39e 2829 while (k > 0 && p_array_type != NULL)
4c4b4cd2 2830 {
61ee279c 2831 p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type));
4c4b4cd2
PH
2832 k -= 1;
2833 }
14f9c5c9
AS
2834 return p_array_type;
2835 }
78134374 2836 else if (type->code () == TYPE_CODE_ARRAY)
14f9c5c9 2837 {
78134374 2838 while (nindices != 0 && type->code () == TYPE_CODE_ARRAY)
4c4b4cd2
PH
2839 {
2840 type = TYPE_TARGET_TYPE (type);
2841 nindices -= 1;
2842 }
14f9c5c9
AS
2843 return type;
2844 }
2845
2846 return NULL;
2847}
2848
4c4b4cd2 2849/* The type of nth index in arrays of given type (n numbering from 1).
dd19d49e
UW
2850 Does not examine memory. Throws an error if N is invalid or TYPE
2851 is not an array type. NAME is the name of the Ada attribute being
2852 evaluated ('range, 'first, 'last, or 'length); it is used in building
2853 the error message. */
14f9c5c9 2854
1eea4ebd
UW
2855static struct type *
2856ada_index_type (struct type *type, int n, const char *name)
14f9c5c9 2857{
4c4b4cd2
PH
2858 struct type *result_type;
2859
14f9c5c9
AS
2860 type = desc_base_type (type);
2861
1eea4ebd
UW
2862 if (n < 0 || n > ada_array_arity (type))
2863 error (_("invalid dimension number to '%s"), name);
14f9c5c9 2864
4c4b4cd2 2865 if (ada_is_simple_array_type (type))
14f9c5c9
AS
2866 {
2867 int i;
2868
2869 for (i = 1; i < n; i += 1)
4c4b4cd2 2870 type = TYPE_TARGET_TYPE (type);
3d967001 2871 result_type = TYPE_TARGET_TYPE (type->index_type ());
4c4b4cd2
PH
2872 /* FIXME: The stabs type r(0,0);bound;bound in an array type
2873 has a target type of TYPE_CODE_UNDEF. We compensate here, but
76a01679 2874 perhaps stabsread.c would make more sense. */
78134374 2875 if (result_type && result_type->code () == TYPE_CODE_UNDEF)
1eea4ebd 2876 result_type = NULL;
14f9c5c9 2877 }
d2e4a39e 2878 else
1eea4ebd
UW
2879 {
2880 result_type = desc_index_type (desc_bounds_type (type), n);
2881 if (result_type == NULL)
2882 error (_("attempt to take bound of something that is not an array"));
2883 }
2884
2885 return result_type;
14f9c5c9
AS
2886}
2887
2888/* Given that arr is an array type, returns the lower bound of the
2889 Nth index (numbering from 1) if WHICH is 0, and the upper bound if
4c4b4cd2 2890 WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an
1eea4ebd
UW
2891 array-descriptor type. It works for other arrays with bounds supplied
2892 by run-time quantities other than discriminants. */
14f9c5c9 2893
abb68b3e 2894static LONGEST
fb5e3d5c 2895ada_array_bound_from_type (struct type *arr_type, int n, int which)
14f9c5c9 2896{
8a48ac95 2897 struct type *type, *index_type_desc, *index_type;
1ce677a4 2898 int i;
262452ec
JK
2899
2900 gdb_assert (which == 0 || which == 1);
14f9c5c9 2901
ad82864c
JB
2902 if (ada_is_constrained_packed_array_type (arr_type))
2903 arr_type = decode_constrained_packed_array_type (arr_type);
14f9c5c9 2904
4c4b4cd2 2905 if (arr_type == NULL || !ada_is_simple_array_type (arr_type))
1eea4ebd 2906 return (LONGEST) - which;
14f9c5c9 2907
78134374 2908 if (arr_type->code () == TYPE_CODE_PTR)
14f9c5c9
AS
2909 type = TYPE_TARGET_TYPE (arr_type);
2910 else
2911 type = arr_type;
2912
bafffb51
JB
2913 if (TYPE_FIXED_INSTANCE (type))
2914 {
2915 /* The array has already been fixed, so we do not need to
2916 check the parallel ___XA type again. That encoding has
2917 already been applied, so ignore it now. */
2918 index_type_desc = NULL;
2919 }
2920 else
2921 {
2922 index_type_desc = ada_find_parallel_type (type, "___XA");
2923 ada_fixup_array_indexes_type (index_type_desc);
2924 }
2925
262452ec 2926 if (index_type_desc != NULL)
940da03e 2927 index_type = to_fixed_range_type (index_type_desc->field (n - 1).type (),
28c85d6c 2928 NULL);
262452ec 2929 else
8a48ac95
JB
2930 {
2931 struct type *elt_type = check_typedef (type);
2932
2933 for (i = 1; i < n; i++)
2934 elt_type = check_typedef (TYPE_TARGET_TYPE (elt_type));
2935
3d967001 2936 index_type = elt_type->index_type ();
8a48ac95 2937 }
262452ec 2938
43bbcdc2
PH
2939 return
2940 (LONGEST) (which == 0
2941 ? ada_discrete_type_low_bound (index_type)
2942 : ada_discrete_type_high_bound (index_type));
14f9c5c9
AS
2943}
2944
2945/* Given that arr is an array value, returns the lower bound of the
abb68b3e
JB
2946 nth index (numbering from 1) if WHICH is 0, and the upper bound if
2947 WHICH is 1. This routine will also work for arrays with bounds
4c4b4cd2 2948 supplied by run-time quantities other than discriminants. */
14f9c5c9 2949
1eea4ebd 2950static LONGEST
4dc81987 2951ada_array_bound (struct value *arr, int n, int which)
14f9c5c9 2952{
eb479039
JB
2953 struct type *arr_type;
2954
78134374 2955 if (check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
eb479039
JB
2956 arr = value_ind (arr);
2957 arr_type = value_enclosing_type (arr);
14f9c5c9 2958
ad82864c
JB
2959 if (ada_is_constrained_packed_array_type (arr_type))
2960 return ada_array_bound (decode_constrained_packed_array (arr), n, which);
4c4b4cd2 2961 else if (ada_is_simple_array_type (arr_type))
1eea4ebd 2962 return ada_array_bound_from_type (arr_type, n, which);
14f9c5c9 2963 else
1eea4ebd 2964 return value_as_long (desc_one_bound (desc_bounds (arr), n, which));
14f9c5c9
AS
2965}
2966
2967/* Given that arr is an array value, returns the length of the
2968 nth index. This routine will also work for arrays with bounds
4c4b4cd2
PH
2969 supplied by run-time quantities other than discriminants.
2970 Does not work for arrays indexed by enumeration types with representation
2971 clauses at the moment. */
14f9c5c9 2972
1eea4ebd 2973static LONGEST
d2e4a39e 2974ada_array_length (struct value *arr, int n)
14f9c5c9 2975{
aa715135
JG
2976 struct type *arr_type, *index_type;
2977 int low, high;
eb479039 2978
78134374 2979 if (check_typedef (value_type (arr))->code () == TYPE_CODE_PTR)
eb479039
JB
2980 arr = value_ind (arr);
2981 arr_type = value_enclosing_type (arr);
14f9c5c9 2982
ad82864c
JB
2983 if (ada_is_constrained_packed_array_type (arr_type))
2984 return ada_array_length (decode_constrained_packed_array (arr), n);
14f9c5c9 2985
4c4b4cd2 2986 if (ada_is_simple_array_type (arr_type))
aa715135
JG
2987 {
2988 low = ada_array_bound_from_type (arr_type, n, 0);
2989 high = ada_array_bound_from_type (arr_type, n, 1);
2990 }
14f9c5c9 2991 else
aa715135
JG
2992 {
2993 low = value_as_long (desc_one_bound (desc_bounds (arr), n, 0));
2994 high = value_as_long (desc_one_bound (desc_bounds (arr), n, 1));
2995 }
2996
f168693b 2997 arr_type = check_typedef (arr_type);
7150d33c 2998 index_type = ada_index_type (arr_type, n, "length");
aa715135
JG
2999 if (index_type != NULL)
3000 {
3001 struct type *base_type;
78134374 3002 if (index_type->code () == TYPE_CODE_RANGE)
aa715135
JG
3003 base_type = TYPE_TARGET_TYPE (index_type);
3004 else
3005 base_type = index_type;
3006
3007 low = pos_atr (value_from_longest (base_type, low));
3008 high = pos_atr (value_from_longest (base_type, high));
3009 }
3010 return high - low + 1;
4c4b4cd2
PH
3011}
3012
bff8c71f
TT
3013/* An array whose type is that of ARR_TYPE (an array type), with
3014 bounds LOW to HIGH, but whose contents are unimportant. If HIGH is
3015 less than LOW, then LOW-1 is used. */
4c4b4cd2
PH
3016
3017static struct value *
bff8c71f 3018empty_array (struct type *arr_type, int low, int high)
4c4b4cd2 3019{
b0dd7688 3020 struct type *arr_type0 = ada_check_typedef (arr_type);
0c9c3474
SA
3021 struct type *index_type
3022 = create_static_range_type
3d967001 3023 (NULL, TYPE_TARGET_TYPE (arr_type0->index_type ()), low,
bff8c71f 3024 high < low ? low - 1 : high);
b0dd7688 3025 struct type *elt_type = ada_array_element_type (arr_type0, 1);
5b4ee69b 3026
0b5d8877 3027 return allocate_value (create_array_type (NULL, elt_type, index_type));
14f9c5c9 3028}
14f9c5c9 3029\f
d2e4a39e 3030
4c4b4cd2 3031 /* Name resolution */
14f9c5c9 3032
4c4b4cd2
PH
3033/* The "decoded" name for the user-definable Ada operator corresponding
3034 to OP. */
14f9c5c9 3035
d2e4a39e 3036static const char *
4c4b4cd2 3037ada_decoded_op_name (enum exp_opcode op)
14f9c5c9
AS
3038{
3039 int i;
3040
4c4b4cd2 3041 for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
14f9c5c9
AS
3042 {
3043 if (ada_opname_table[i].op == op)
4c4b4cd2 3044 return ada_opname_table[i].decoded;
14f9c5c9 3045 }
323e0a4a 3046 error (_("Could not find operator name for opcode"));
14f9c5c9
AS
3047}
3048
de93309a
SM
3049/* Returns true (non-zero) iff decoded name N0 should appear before N1
3050 in a listing of choices during disambiguation (see sort_choices, below).
3051 The idea is that overloadings of a subprogram name from the
3052 same package should sort in their source order. We settle for ordering
3053 such symbols by their trailing number (__N or $N). */
14f9c5c9 3054
de93309a
SM
3055static int
3056encoded_ordered_before (const char *N0, const char *N1)
14f9c5c9 3057{
de93309a
SM
3058 if (N1 == NULL)
3059 return 0;
3060 else if (N0 == NULL)
3061 return 1;
3062 else
3063 {
3064 int k0, k1;
30b15541 3065
de93309a
SM
3066 for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1)
3067 ;
3068 for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1)
3069 ;
3070 if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000'
3071 && (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000')
3072 {
3073 int n0, n1;
30b15541 3074
de93309a
SM
3075 n0 = k0;
3076 while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_')
3077 n0 -= 1;
3078 n1 = k1;
3079 while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_')
3080 n1 -= 1;
3081 if (n0 == n1 && strncmp (N0, N1, n0) == 0)
3082 return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1));
3083 }
3084 return (strcmp (N0, N1) < 0);
3085 }
14f9c5c9
AS
3086}
3087
de93309a
SM
3088/* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the
3089 encoded names. */
14f9c5c9 3090
de93309a
SM
3091static void
3092sort_choices (struct block_symbol syms[], int nsyms)
14f9c5c9 3093{
14f9c5c9 3094 int i;
14f9c5c9 3095
de93309a 3096 for (i = 1; i < nsyms; i += 1)
14f9c5c9 3097 {
de93309a
SM
3098 struct block_symbol sym = syms[i];
3099 int j;
3100
3101 for (j = i - 1; j >= 0; j -= 1)
4c4b4cd2 3102 {
987012b8
CB
3103 if (encoded_ordered_before (syms[j].symbol->linkage_name (),
3104 sym.symbol->linkage_name ()))
de93309a
SM
3105 break;
3106 syms[j + 1] = syms[j];
4c4b4cd2 3107 }
de93309a
SM
3108 syms[j + 1] = sym;
3109 }
3110}
14f9c5c9 3111
de93309a
SM
3112/* Whether GDB should display formals and return types for functions in the
3113 overloads selection menu. */
3114static bool print_signatures = true;
4c4b4cd2 3115
de93309a
SM
3116/* Print the signature for SYM on STREAM according to the FLAGS options. For
3117 all but functions, the signature is just the name of the symbol. For
3118 functions, this is the name of the function, the list of types for formals
3119 and the return type (if any). */
4c4b4cd2 3120
de93309a
SM
3121static void
3122ada_print_symbol_signature (struct ui_file *stream, struct symbol *sym,
3123 const struct type_print_options *flags)
3124{
3125 struct type *type = SYMBOL_TYPE (sym);
14f9c5c9 3126
987012b8 3127 fprintf_filtered (stream, "%s", sym->print_name ());
de93309a
SM
3128 if (!print_signatures
3129 || type == NULL
78134374 3130 || type->code () != TYPE_CODE_FUNC)
de93309a 3131 return;
4c4b4cd2 3132
1f704f76 3133 if (type->num_fields () > 0)
de93309a
SM
3134 {
3135 int i;
14f9c5c9 3136
de93309a 3137 fprintf_filtered (stream, " (");
1f704f76 3138 for (i = 0; i < type->num_fields (); ++i)
de93309a
SM
3139 {
3140 if (i > 0)
3141 fprintf_filtered (stream, "; ");
940da03e 3142 ada_print_type (type->field (i).type (), NULL, stream, -1, 0,
de93309a
SM
3143 flags);
3144 }
3145 fprintf_filtered (stream, ")");
3146 }
3147 if (TYPE_TARGET_TYPE (type) != NULL
78134374 3148 && TYPE_TARGET_TYPE (type)->code () != TYPE_CODE_VOID)
de93309a
SM
3149 {
3150 fprintf_filtered (stream, " return ");
3151 ada_print_type (TYPE_TARGET_TYPE (type), NULL, stream, -1, 0, flags);
3152 }
3153}
14f9c5c9 3154
de93309a
SM
3155/* Read and validate a set of numeric choices from the user in the
3156 range 0 .. N_CHOICES-1. Place the results in increasing
3157 order in CHOICES[0 .. N-1], and return N.
14f9c5c9 3158
de93309a
SM
3159 The user types choices as a sequence of numbers on one line
3160 separated by blanks, encoding them as follows:
14f9c5c9 3161
de93309a
SM
3162 + A choice of 0 means to cancel the selection, throwing an error.
3163 + If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1.
3164 + The user chooses k by typing k+IS_ALL_CHOICE+1.
14f9c5c9 3165
de93309a 3166 The user is not allowed to choose more than MAX_RESULTS values.
14f9c5c9 3167
de93309a
SM
3168 ANNOTATION_SUFFIX, if present, is used to annotate the input
3169 prompts (for use with the -f switch). */
14f9c5c9 3170
de93309a
SM
3171static int
3172get_selections (int *choices, int n_choices, int max_results,
3173 int is_all_choice, const char *annotation_suffix)
3174{
992a7040 3175 const char *args;
de93309a
SM
3176 const char *prompt;
3177 int n_chosen;
3178 int first_choice = is_all_choice ? 2 : 1;
14f9c5c9 3179
de93309a
SM
3180 prompt = getenv ("PS2");
3181 if (prompt == NULL)
3182 prompt = "> ";
4c4b4cd2 3183
de93309a 3184 args = command_line_input (prompt, annotation_suffix);
4c4b4cd2 3185
de93309a
SM
3186 if (args == NULL)
3187 error_no_arg (_("one or more choice numbers"));
14f9c5c9 3188
de93309a 3189 n_chosen = 0;
4c4b4cd2 3190
de93309a
SM
3191 /* Set choices[0 .. n_chosen-1] to the users' choices in ascending
3192 order, as given in args. Choices are validated. */
3193 while (1)
14f9c5c9 3194 {
de93309a
SM
3195 char *args2;
3196 int choice, j;
76a01679 3197
de93309a
SM
3198 args = skip_spaces (args);
3199 if (*args == '\0' && n_chosen == 0)
3200 error_no_arg (_("one or more choice numbers"));
3201 else if (*args == '\0')
3202 break;
76a01679 3203
de93309a
SM
3204 choice = strtol (args, &args2, 10);
3205 if (args == args2 || choice < 0
3206 || choice > n_choices + first_choice - 1)
3207 error (_("Argument must be choice number"));
3208 args = args2;
76a01679 3209
de93309a
SM
3210 if (choice == 0)
3211 error (_("cancelled"));
76a01679 3212
de93309a
SM
3213 if (choice < first_choice)
3214 {
3215 n_chosen = n_choices;
3216 for (j = 0; j < n_choices; j += 1)
3217 choices[j] = j;
3218 break;
76a01679 3219 }
de93309a 3220 choice -= first_choice;
76a01679 3221
de93309a 3222 for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1)
76a01679 3223 {
76a01679 3224 }
4c4b4cd2 3225
de93309a 3226 if (j < 0 || choice != choices[j])
4c4b4cd2 3227 {
de93309a 3228 int k;
4c4b4cd2 3229
de93309a
SM
3230 for (k = n_chosen - 1; k > j; k -= 1)
3231 choices[k + 1] = choices[k];
3232 choices[j + 1] = choice;
3233 n_chosen += 1;
4c4b4cd2 3234 }
14f9c5c9
AS
3235 }
3236
de93309a
SM
3237 if (n_chosen > max_results)
3238 error (_("Select no more than %d of the above"), max_results);
3239
3240 return n_chosen;
14f9c5c9
AS
3241}
3242
de93309a
SM
3243/* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0
3244 by asking the user (if necessary), returning the number selected,
3245 and setting the first elements of SYMS items. Error if no symbols
3246 selected. */
3247
3248/* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought
3249 to be re-integrated one of these days. */
14f9c5c9
AS
3250
3251static int
de93309a 3252user_select_syms (struct block_symbol *syms, int nsyms, int max_results)
14f9c5c9 3253{
de93309a
SM
3254 int i;
3255 int *chosen = XALLOCAVEC (int , nsyms);
3256 int n_chosen;
3257 int first_choice = (max_results == 1) ? 1 : 2;
3258 const char *select_mode = multiple_symbols_select_mode ();
14f9c5c9 3259
de93309a
SM
3260 if (max_results < 1)
3261 error (_("Request to select 0 symbols!"));
3262 if (nsyms <= 1)
3263 return nsyms;
14f9c5c9 3264
de93309a
SM
3265 if (select_mode == multiple_symbols_cancel)
3266 error (_("\
3267canceled because the command is ambiguous\n\
3268See set/show multiple-symbol."));
14f9c5c9 3269
de93309a
SM
3270 /* If select_mode is "all", then return all possible symbols.
3271 Only do that if more than one symbol can be selected, of course.
3272 Otherwise, display the menu as usual. */
3273 if (select_mode == multiple_symbols_all && max_results > 1)
3274 return nsyms;
14f9c5c9 3275
de93309a
SM
3276 printf_filtered (_("[0] cancel\n"));
3277 if (max_results > 1)
3278 printf_filtered (_("[1] all\n"));
14f9c5c9 3279
de93309a 3280 sort_choices (syms, nsyms);
14f9c5c9 3281
de93309a
SM
3282 for (i = 0; i < nsyms; i += 1)
3283 {
3284 if (syms[i].symbol == NULL)
3285 continue;
14f9c5c9 3286
de93309a
SM
3287 if (SYMBOL_CLASS (syms[i].symbol) == LOC_BLOCK)
3288 {
3289 struct symtab_and_line sal =
3290 find_function_start_sal (syms[i].symbol, 1);
14f9c5c9 3291
de93309a
SM
3292 printf_filtered ("[%d] ", i + first_choice);
3293 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3294 &type_print_raw_options);
3295 if (sal.symtab == NULL)
3296 printf_filtered (_(" at %p[<no source file available>%p]:%d\n"),
3297 metadata_style.style ().ptr (), nullptr, sal.line);
3298 else
3299 printf_filtered
3300 (_(" at %ps:%d\n"),
3301 styled_string (file_name_style.style (),
3302 symtab_to_filename_for_display (sal.symtab)),
3303 sal.line);
3304 continue;
3305 }
76a01679
JB
3306 else
3307 {
de93309a
SM
3308 int is_enumeral =
3309 (SYMBOL_CLASS (syms[i].symbol) == LOC_CONST
3310 && SYMBOL_TYPE (syms[i].symbol) != NULL
78134374 3311 && SYMBOL_TYPE (syms[i].symbol)->code () == TYPE_CODE_ENUM);
de93309a 3312 struct symtab *symtab = NULL;
4c4b4cd2 3313
de93309a
SM
3314 if (SYMBOL_OBJFILE_OWNED (syms[i].symbol))
3315 symtab = symbol_symtab (syms[i].symbol);
3316
3317 if (SYMBOL_LINE (syms[i].symbol) != 0 && symtab != NULL)
3318 {
3319 printf_filtered ("[%d] ", i + first_choice);
3320 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3321 &type_print_raw_options);
3322 printf_filtered (_(" at %s:%d\n"),
3323 symtab_to_filename_for_display (symtab),
3324 SYMBOL_LINE (syms[i].symbol));
3325 }
3326 else if (is_enumeral
7d93a1e0 3327 && SYMBOL_TYPE (syms[i].symbol)->name () != NULL)
de93309a
SM
3328 {
3329 printf_filtered (("[%d] "), i + first_choice);
3330 ada_print_type (SYMBOL_TYPE (syms[i].symbol), NULL,
3331 gdb_stdout, -1, 0, &type_print_raw_options);
3332 printf_filtered (_("'(%s) (enumeral)\n"),
987012b8 3333 syms[i].symbol->print_name ());
de93309a
SM
3334 }
3335 else
3336 {
3337 printf_filtered ("[%d] ", i + first_choice);
3338 ada_print_symbol_signature (gdb_stdout, syms[i].symbol,
3339 &type_print_raw_options);
3340
3341 if (symtab != NULL)
3342 printf_filtered (is_enumeral
3343 ? _(" in %s (enumeral)\n")
3344 : _(" at %s:?\n"),
3345 symtab_to_filename_for_display (symtab));
3346 else
3347 printf_filtered (is_enumeral
3348 ? _(" (enumeral)\n")
3349 : _(" at ?\n"));
3350 }
76a01679 3351 }
14f9c5c9 3352 }
14f9c5c9 3353
de93309a
SM
3354 n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1,
3355 "overload-choice");
14f9c5c9 3356
de93309a
SM
3357 for (i = 0; i < n_chosen; i += 1)
3358 syms[i] = syms[chosen[i]];
14f9c5c9 3359
de93309a
SM
3360 return n_chosen;
3361}
14f9c5c9 3362
de93309a
SM
3363/* Same as evaluate_type (*EXP), but resolves ambiguous symbol
3364 references (marked by OP_VAR_VALUE nodes in which the symbol has an
3365 undefined namespace) and converts operators that are
3366 user-defined into appropriate function calls. If CONTEXT_TYPE is
3367 non-null, it provides a preferred result type [at the moment, only
3368 type void has any effect---causing procedures to be preferred over
3369 functions in calls]. A null CONTEXT_TYPE indicates that a non-void
3370 return type is preferred. May change (expand) *EXP. */
14f9c5c9 3371
de93309a
SM
3372static void
3373resolve (expression_up *expp, int void_context_p, int parse_completion,
3374 innermost_block_tracker *tracker)
3375{
3376 struct type *context_type = NULL;
3377 int pc = 0;
14f9c5c9 3378
de93309a
SM
3379 if (void_context_p)
3380 context_type = builtin_type ((*expp)->gdbarch)->builtin_void;
14f9c5c9 3381
de93309a
SM
3382 resolve_subexp (expp, &pc, 1, context_type, parse_completion, tracker);
3383}
4c4b4cd2 3384
de93309a
SM
3385/* Resolve the operator of the subexpression beginning at
3386 position *POS of *EXPP. "Resolving" consists of replacing
3387 the symbols that have undefined namespaces in OP_VAR_VALUE nodes
3388 with their resolutions, replacing built-in operators with
3389 function calls to user-defined operators, where appropriate, and,
3390 when DEPROCEDURE_P is non-zero, converting function-valued variables
3391 into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions
3392 are as in ada_resolve, above. */
14f9c5c9 3393
de93309a
SM
3394static struct value *
3395resolve_subexp (expression_up *expp, int *pos, int deprocedure_p,
3396 struct type *context_type, int parse_completion,
3397 innermost_block_tracker *tracker)
14f9c5c9 3398{
de93309a
SM
3399 int pc = *pos;
3400 int i;
3401 struct expression *exp; /* Convenience: == *expp. */
3402 enum exp_opcode op = (*expp)->elts[pc].opcode;
3403 struct value **argvec; /* Vector of operand types (alloca'ed). */
3404 int nargs; /* Number of operands. */
3405 int oplen;
14f9c5c9 3406
de93309a
SM
3407 argvec = NULL;
3408 nargs = 0;
3409 exp = expp->get ();
4c4b4cd2 3410
de93309a
SM
3411 /* Pass one: resolve operands, saving their types and updating *pos,
3412 if needed. */
3413 switch (op)
3414 {
3415 case OP_FUNCALL:
3416 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3417 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3418 *pos += 7;
3419 else
3420 {
3421 *pos += 3;
3422 resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
4c4b4cd2 3423 }
de93309a
SM
3424 nargs = longest_to_int (exp->elts[pc + 1].longconst);
3425 break;
14f9c5c9 3426
de93309a
SM
3427 case UNOP_ADDR:
3428 *pos += 1;
3429 resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3430 break;
3431
3432 case UNOP_QUAL:
3433 *pos += 3;
3434 resolve_subexp (expp, pos, 1, check_typedef (exp->elts[pc + 1].type),
3435 parse_completion, tracker);
3436 break;
3437
3438 case OP_ATR_MODULUS:
3439 case OP_ATR_SIZE:
3440 case OP_ATR_TAG:
3441 case OP_ATR_FIRST:
3442 case OP_ATR_LAST:
3443 case OP_ATR_LENGTH:
3444 case OP_ATR_POS:
3445 case OP_ATR_VAL:
3446 case OP_ATR_MIN:
3447 case OP_ATR_MAX:
3448 case TERNOP_IN_RANGE:
3449 case BINOP_IN_BOUNDS:
3450 case UNOP_IN_RANGE:
3451 case OP_AGGREGATE:
3452 case OP_OTHERS:
3453 case OP_CHOICES:
3454 case OP_POSITIONAL:
3455 case OP_DISCRETE_RANGE:
3456 case OP_NAME:
3457 ada_forward_operator_length (exp, pc, &oplen, &nargs);
3458 *pos += oplen;
3459 break;
3460
3461 case BINOP_ASSIGN:
3462 {
3463 struct value *arg1;
3464
3465 *pos += 1;
3466 arg1 = resolve_subexp (expp, pos, 0, NULL, parse_completion, tracker);
3467 if (arg1 == NULL)
3468 resolve_subexp (expp, pos, 1, NULL, parse_completion, tracker);
3469 else
3470 resolve_subexp (expp, pos, 1, value_type (arg1), parse_completion,
3471 tracker);
3472 break;
3473 }
3474
3475 case UNOP_CAST:
3476 *pos += 3;
3477 nargs = 1;
3478 break;
3479
3480 case BINOP_ADD:
3481 case BINOP_SUB:
3482 case BINOP_MUL:
3483 case BINOP_DIV:
3484 case BINOP_REM:
3485 case BINOP_MOD:
3486 case BINOP_EXP:
3487 case BINOP_CONCAT:
3488 case BINOP_LOGICAL_AND:
3489 case BINOP_LOGICAL_OR:
3490 case BINOP_BITWISE_AND:
3491 case BINOP_BITWISE_IOR:
3492 case BINOP_BITWISE_XOR:
3493
3494 case BINOP_EQUAL:
3495 case BINOP_NOTEQUAL:
3496 case BINOP_LESS:
3497 case BINOP_GTR:
3498 case BINOP_LEQ:
3499 case BINOP_GEQ:
3500
3501 case BINOP_REPEAT:
3502 case BINOP_SUBSCRIPT:
3503 case BINOP_COMMA:
3504 *pos += 1;
3505 nargs = 2;
3506 break;
3507
3508 case UNOP_NEG:
3509 case UNOP_PLUS:
3510 case UNOP_LOGICAL_NOT:
3511 case UNOP_ABS:
3512 case UNOP_IND:
3513 *pos += 1;
3514 nargs = 1;
3515 break;
3516
3517 case OP_LONG:
3518 case OP_FLOAT:
3519 case OP_VAR_VALUE:
3520 case OP_VAR_MSYM_VALUE:
3521 *pos += 4;
3522 break;
3523
3524 case OP_TYPE:
3525 case OP_BOOL:
3526 case OP_LAST:
3527 case OP_INTERNALVAR:
3528 *pos += 3;
3529 break;
3530
3531 case UNOP_MEMVAL:
3532 *pos += 3;
3533 nargs = 1;
3534 break;
3535
3536 case OP_REGISTER:
3537 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3538 break;
3539
3540 case STRUCTOP_STRUCT:
3541 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
3542 nargs = 1;
3543 break;
3544
3545 case TERNOP_SLICE:
3546 *pos += 1;
3547 nargs = 3;
3548 break;
3549
3550 case OP_STRING:
3551 break;
3552
3553 default:
3554 error (_("Unexpected operator during name resolution"));
14f9c5c9 3555 }
14f9c5c9 3556
de93309a
SM
3557 argvec = XALLOCAVEC (struct value *, nargs + 1);
3558 for (i = 0; i < nargs; i += 1)
3559 argvec[i] = resolve_subexp (expp, pos, 1, NULL, parse_completion,
3560 tracker);
3561 argvec[i] = NULL;
3562 exp = expp->get ();
4c4b4cd2 3563
de93309a
SM
3564 /* Pass two: perform any resolution on principal operator. */
3565 switch (op)
14f9c5c9 3566 {
de93309a
SM
3567 default:
3568 break;
5b4ee69b 3569
de93309a
SM
3570 case OP_VAR_VALUE:
3571 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
4c4b4cd2 3572 {
de93309a
SM
3573 std::vector<struct block_symbol> candidates;
3574 int n_candidates;
5b4ee69b 3575
de93309a 3576 n_candidates =
987012b8 3577 ada_lookup_symbol_list (exp->elts[pc + 2].symbol->linkage_name (),
de93309a
SM
3578 exp->elts[pc + 1].block, VAR_DOMAIN,
3579 &candidates);
d2e4a39e 3580
de93309a
SM
3581 if (n_candidates > 1)
3582 {
3583 /* Types tend to get re-introduced locally, so if there
3584 are any local symbols that are not types, first filter
3585 out all types. */
3586 int j;
3587 for (j = 0; j < n_candidates; j += 1)
3588 switch (SYMBOL_CLASS (candidates[j].symbol))
3589 {
3590 case LOC_REGISTER:
3591 case LOC_ARG:
3592 case LOC_REF_ARG:
3593 case LOC_REGPARM_ADDR:
3594 case LOC_LOCAL:
3595 case LOC_COMPUTED:
3596 goto FoundNonType;
3597 default:
3598 break;
3599 }
3600 FoundNonType:
3601 if (j < n_candidates)
3602 {
3603 j = 0;
3604 while (j < n_candidates)
3605 {
3606 if (SYMBOL_CLASS (candidates[j].symbol) == LOC_TYPEDEF)
3607 {
3608 candidates[j] = candidates[n_candidates - 1];
3609 n_candidates -= 1;
3610 }
3611 else
3612 j += 1;
3613 }
3614 }
3615 }
4c4b4cd2 3616
de93309a
SM
3617 if (n_candidates == 0)
3618 error (_("No definition found for %s"),
987012b8 3619 exp->elts[pc + 2].symbol->print_name ());
de93309a
SM
3620 else if (n_candidates == 1)
3621 i = 0;
3622 else if (deprocedure_p
3623 && !is_nonfunction (candidates.data (), n_candidates))
3624 {
3625 i = ada_resolve_function
3626 (candidates.data (), n_candidates, NULL, 0,
987012b8 3627 exp->elts[pc + 2].symbol->linkage_name (),
de93309a
SM
3628 context_type, parse_completion);
3629 if (i < 0)
3630 error (_("Could not find a match for %s"),
987012b8 3631 exp->elts[pc + 2].symbol->print_name ());
de93309a
SM
3632 }
3633 else
3634 {
3635 printf_filtered (_("Multiple matches for %s\n"),
987012b8 3636 exp->elts[pc + 2].symbol->print_name ());
de93309a
SM
3637 user_select_syms (candidates.data (), n_candidates, 1);
3638 i = 0;
3639 }
5b4ee69b 3640
de93309a
SM
3641 exp->elts[pc + 1].block = candidates[i].block;
3642 exp->elts[pc + 2].symbol = candidates[i].symbol;
3643 tracker->update (candidates[i]);
3644 }
14f9c5c9 3645
de93309a 3646 if (deprocedure_p
78134374 3647 && (SYMBOL_TYPE (exp->elts[pc + 2].symbol)->code ()
de93309a 3648 == TYPE_CODE_FUNC))
4c4b4cd2 3649 {
de93309a
SM
3650 replace_operator_with_call (expp, pc, 0, 4,
3651 exp->elts[pc + 2].symbol,
3652 exp->elts[pc + 1].block);
3653 exp = expp->get ();
4c4b4cd2 3654 }
de93309a
SM
3655 break;
3656
3657 case OP_FUNCALL:
3658 {
3659 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
3660 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
3661 {
3662 std::vector<struct block_symbol> candidates;
3663 int n_candidates;
3664
3665 n_candidates =
987012b8 3666 ada_lookup_symbol_list (exp->elts[pc + 5].symbol->linkage_name (),
de93309a
SM
3667 exp->elts[pc + 4].block, VAR_DOMAIN,
3668 &candidates);
14f9c5c9 3669
de93309a
SM
3670 if (n_candidates == 1)
3671 i = 0;
3672 else
3673 {
3674 i = ada_resolve_function
3675 (candidates.data (), n_candidates,
3676 argvec, nargs,
987012b8 3677 exp->elts[pc + 5].symbol->linkage_name (),
de93309a
SM
3678 context_type, parse_completion);
3679 if (i < 0)
3680 error (_("Could not find a match for %s"),
987012b8 3681 exp->elts[pc + 5].symbol->print_name ());
de93309a 3682 }
d72413e6 3683
de93309a
SM
3684 exp->elts[pc + 4].block = candidates[i].block;
3685 exp->elts[pc + 5].symbol = candidates[i].symbol;
3686 tracker->update (candidates[i]);
3687 }
3688 }
3689 break;
3690 case BINOP_ADD:
3691 case BINOP_SUB:
3692 case BINOP_MUL:
3693 case BINOP_DIV:
3694 case BINOP_REM:
3695 case BINOP_MOD:
3696 case BINOP_CONCAT:
3697 case BINOP_BITWISE_AND:
3698 case BINOP_BITWISE_IOR:
3699 case BINOP_BITWISE_XOR:
3700 case BINOP_EQUAL:
3701 case BINOP_NOTEQUAL:
3702 case BINOP_LESS:
3703 case BINOP_GTR:
3704 case BINOP_LEQ:
3705 case BINOP_GEQ:
3706 case BINOP_EXP:
3707 case UNOP_NEG:
3708 case UNOP_PLUS:
3709 case UNOP_LOGICAL_NOT:
3710 case UNOP_ABS:
3711 if (possible_user_operator_p (op, argvec))
3712 {
3713 std::vector<struct block_symbol> candidates;
3714 int n_candidates;
d72413e6 3715
de93309a
SM
3716 n_candidates =
3717 ada_lookup_symbol_list (ada_decoded_op_name (op),
3718 NULL, VAR_DOMAIN,
3719 &candidates);
d72413e6 3720
de93309a
SM
3721 i = ada_resolve_function (candidates.data (), n_candidates, argvec,
3722 nargs, ada_decoded_op_name (op), NULL,
3723 parse_completion);
3724 if (i < 0)
3725 break;
d72413e6 3726
de93309a
SM
3727 replace_operator_with_call (expp, pc, nargs, 1,
3728 candidates[i].symbol,
3729 candidates[i].block);
3730 exp = expp->get ();
3731 }
3732 break;
d72413e6 3733
de93309a
SM
3734 case OP_TYPE:
3735 case OP_REGISTER:
3736 return NULL;
d72413e6 3737 }
d72413e6 3738
de93309a
SM
3739 *pos = pc;
3740 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
3741 return evaluate_var_msym_value (EVAL_AVOID_SIDE_EFFECTS,
3742 exp->elts[pc + 1].objfile,
3743 exp->elts[pc + 2].msymbol);
3744 else
3745 return evaluate_subexp_type (exp, pos);
3746}
14f9c5c9 3747
de93309a
SM
3748/* Return non-zero if formal type FTYPE matches actual type ATYPE. If
3749 MAY_DEREF is non-zero, the formal may be a pointer and the actual
3750 a non-pointer. */
3751/* The term "match" here is rather loose. The match is heuristic and
3752 liberal. */
14f9c5c9 3753
de93309a
SM
3754static int
3755ada_type_match (struct type *ftype, struct type *atype, int may_deref)
14f9c5c9 3756{
de93309a
SM
3757 ftype = ada_check_typedef (ftype);
3758 atype = ada_check_typedef (atype);
14f9c5c9 3759
78134374 3760 if (ftype->code () == TYPE_CODE_REF)
de93309a 3761 ftype = TYPE_TARGET_TYPE (ftype);
78134374 3762 if (atype->code () == TYPE_CODE_REF)
de93309a 3763 atype = TYPE_TARGET_TYPE (atype);
14f9c5c9 3764
78134374 3765 switch (ftype->code ())
14f9c5c9 3766 {
de93309a 3767 default:
78134374 3768 return ftype->code () == atype->code ();
de93309a 3769 case TYPE_CODE_PTR:
78134374 3770 if (atype->code () == TYPE_CODE_PTR)
de93309a
SM
3771 return ada_type_match (TYPE_TARGET_TYPE (ftype),
3772 TYPE_TARGET_TYPE (atype), 0);
d2e4a39e 3773 else
de93309a
SM
3774 return (may_deref
3775 && ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0));
3776 case TYPE_CODE_INT:
3777 case TYPE_CODE_ENUM:
3778 case TYPE_CODE_RANGE:
78134374 3779 switch (atype->code ())
4c4b4cd2 3780 {
de93309a
SM
3781 case TYPE_CODE_INT:
3782 case TYPE_CODE_ENUM:
3783 case TYPE_CODE_RANGE:
3784 return 1;
3785 default:
3786 return 0;
4c4b4cd2 3787 }
d2e4a39e 3788
de93309a 3789 case TYPE_CODE_ARRAY:
78134374 3790 return (atype->code () == TYPE_CODE_ARRAY
de93309a 3791 || ada_is_array_descriptor_type (atype));
14f9c5c9 3792
de93309a
SM
3793 case TYPE_CODE_STRUCT:
3794 if (ada_is_array_descriptor_type (ftype))
78134374 3795 return (atype->code () == TYPE_CODE_ARRAY
de93309a
SM
3796 || ada_is_array_descriptor_type (atype));
3797 else
78134374 3798 return (atype->code () == TYPE_CODE_STRUCT
de93309a 3799 && !ada_is_array_descriptor_type (atype));
14f9c5c9 3800
de93309a
SM
3801 case TYPE_CODE_UNION:
3802 case TYPE_CODE_FLT:
78134374 3803 return (atype->code () == ftype->code ());
de93309a 3804 }
14f9c5c9
AS
3805}
3806
de93309a
SM
3807/* Return non-zero if the formals of FUNC "sufficiently match" the
3808 vector of actual argument types ACTUALS of size N_ACTUALS. FUNC
3809 may also be an enumeral, in which case it is treated as a 0-
3810 argument function. */
14f9c5c9 3811
de93309a
SM
3812static int
3813ada_args_match (struct symbol *func, struct value **actuals, int n_actuals)
3814{
3815 int i;
3816 struct type *func_type = SYMBOL_TYPE (func);
14f9c5c9 3817
de93309a 3818 if (SYMBOL_CLASS (func) == LOC_CONST
78134374 3819 && func_type->code () == TYPE_CODE_ENUM)
de93309a 3820 return (n_actuals == 0);
78134374 3821 else if (func_type == NULL || func_type->code () != TYPE_CODE_FUNC)
de93309a 3822 return 0;
14f9c5c9 3823
1f704f76 3824 if (func_type->num_fields () != n_actuals)
de93309a 3825 return 0;
14f9c5c9 3826
de93309a
SM
3827 for (i = 0; i < n_actuals; i += 1)
3828 {
3829 if (actuals[i] == NULL)
3830 return 0;
3831 else
3832 {
940da03e 3833 struct type *ftype = ada_check_typedef (func_type->field (i).type ());
de93309a 3834 struct type *atype = ada_check_typedef (value_type (actuals[i]));
14f9c5c9 3835
de93309a
SM
3836 if (!ada_type_match (ftype, atype, 1))
3837 return 0;
3838 }
3839 }
3840 return 1;
3841}
d2e4a39e 3842
de93309a
SM
3843/* False iff function type FUNC_TYPE definitely does not produce a value
3844 compatible with type CONTEXT_TYPE. Conservatively returns 1 if
3845 FUNC_TYPE is not a valid function type with a non-null return type
3846 or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */
14f9c5c9 3847
de93309a
SM
3848static int
3849return_match (struct type *func_type, struct type *context_type)
3850{
3851 struct type *return_type;
d2e4a39e 3852
de93309a
SM
3853 if (func_type == NULL)
3854 return 1;
14f9c5c9 3855
78134374 3856 if (func_type->code () == TYPE_CODE_FUNC)
de93309a
SM
3857 return_type = get_base_type (TYPE_TARGET_TYPE (func_type));
3858 else
3859 return_type = get_base_type (func_type);
3860 if (return_type == NULL)
3861 return 1;
76a01679 3862
de93309a 3863 context_type = get_base_type (context_type);
14f9c5c9 3864
78134374 3865 if (return_type->code () == TYPE_CODE_ENUM)
de93309a
SM
3866 return context_type == NULL || return_type == context_type;
3867 else if (context_type == NULL)
78134374 3868 return return_type->code () != TYPE_CODE_VOID;
de93309a 3869 else
78134374 3870 return return_type->code () == context_type->code ();
de93309a 3871}
14f9c5c9 3872
14f9c5c9 3873
de93309a
SM
3874/* Returns the index in SYMS[0..NSYMS-1] that contains the symbol for the
3875 function (if any) that matches the types of the NARGS arguments in
3876 ARGS. If CONTEXT_TYPE is non-null and there is at least one match
3877 that returns that type, then eliminate matches that don't. If
3878 CONTEXT_TYPE is void and there is at least one match that does not
3879 return void, eliminate all matches that do.
14f9c5c9 3880
de93309a
SM
3881 Asks the user if there is more than one match remaining. Returns -1
3882 if there is no such symbol or none is selected. NAME is used
3883 solely for messages. May re-arrange and modify SYMS in
3884 the process; the index returned is for the modified vector. */
14f9c5c9 3885
de93309a
SM
3886static int
3887ada_resolve_function (struct block_symbol syms[],
3888 int nsyms, struct value **args, int nargs,
3889 const char *name, struct type *context_type,
3890 int parse_completion)
3891{
3892 int fallback;
3893 int k;
3894 int m; /* Number of hits */
14f9c5c9 3895
de93309a
SM
3896 m = 0;
3897 /* In the first pass of the loop, we only accept functions matching
3898 context_type. If none are found, we add a second pass of the loop
3899 where every function is accepted. */
3900 for (fallback = 0; m == 0 && fallback < 2; fallback++)
3901 {
3902 for (k = 0; k < nsyms; k += 1)
4c4b4cd2 3903 {
de93309a 3904 struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].symbol));
5b4ee69b 3905
de93309a
SM
3906 if (ada_args_match (syms[k].symbol, args, nargs)
3907 && (fallback || return_match (type, context_type)))
3908 {
3909 syms[m] = syms[k];
3910 m += 1;
3911 }
4c4b4cd2 3912 }
14f9c5c9
AS
3913 }
3914
de93309a
SM
3915 /* If we got multiple matches, ask the user which one to use. Don't do this
3916 interactive thing during completion, though, as the purpose of the
3917 completion is providing a list of all possible matches. Prompting the
3918 user to filter it down would be completely unexpected in this case. */
3919 if (m == 0)
3920 return -1;
3921 else if (m > 1 && !parse_completion)
3922 {
3923 printf_filtered (_("Multiple matches for %s\n"), name);
3924 user_select_syms (syms, m, 1);
3925 return 0;
3926 }
3927 return 0;
14f9c5c9
AS
3928}
3929
4c4b4cd2
PH
3930/* Replace the operator of length OPLEN at position PC in *EXPP with a call
3931 on the function identified by SYM and BLOCK, and taking NARGS
3932 arguments. Update *EXPP as needed to hold more space. */
14f9c5c9
AS
3933
3934static void
e9d9f57e 3935replace_operator_with_call (expression_up *expp, int pc, int nargs,
4c4b4cd2 3936 int oplen, struct symbol *sym,
270140bd 3937 const struct block *block)
14f9c5c9
AS
3938{
3939 /* A new expression, with 6 more elements (3 for funcall, 4 for function
4c4b4cd2 3940 symbol, -oplen for operator being replaced). */
d2e4a39e 3941 struct expression *newexp = (struct expression *)
8c1a34e7 3942 xzalloc (sizeof (struct expression)
4c4b4cd2 3943 + EXP_ELEM_TO_BYTES ((*expp)->nelts + 7 - oplen));
e9d9f57e 3944 struct expression *exp = expp->get ();
14f9c5c9
AS
3945
3946 newexp->nelts = exp->nelts + 7 - oplen;
3947 newexp->language_defn = exp->language_defn;
3489610d 3948 newexp->gdbarch = exp->gdbarch;
14f9c5c9 3949 memcpy (newexp->elts, exp->elts, EXP_ELEM_TO_BYTES (pc));
d2e4a39e 3950 memcpy (newexp->elts + pc + 7, exp->elts + pc + oplen,
4c4b4cd2 3951 EXP_ELEM_TO_BYTES (exp->nelts - pc - oplen));
14f9c5c9
AS
3952
3953 newexp->elts[pc].opcode = newexp->elts[pc + 2].opcode = OP_FUNCALL;
3954 newexp->elts[pc + 1].longconst = (LONGEST) nargs;
3955
3956 newexp->elts[pc + 3].opcode = newexp->elts[pc + 6].opcode = OP_VAR_VALUE;
3957 newexp->elts[pc + 4].block = block;
3958 newexp->elts[pc + 5].symbol = sym;
3959
e9d9f57e 3960 expp->reset (newexp);
d2e4a39e 3961}
14f9c5c9
AS
3962
3963/* Type-class predicates */
3964
4c4b4cd2
PH
3965/* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type),
3966 or FLOAT). */
14f9c5c9
AS
3967
3968static int
d2e4a39e 3969numeric_type_p (struct type *type)
14f9c5c9
AS
3970{
3971 if (type == NULL)
3972 return 0;
d2e4a39e
AS
3973 else
3974 {
78134374 3975 switch (type->code ())
4c4b4cd2
PH
3976 {
3977 case TYPE_CODE_INT:
3978 case TYPE_CODE_FLT:
3979 return 1;
3980 case TYPE_CODE_RANGE:
3981 return (type == TYPE_TARGET_TYPE (type)
3982 || numeric_type_p (TYPE_TARGET_TYPE (type)));
3983 default:
3984 return 0;
3985 }
d2e4a39e 3986 }
14f9c5c9
AS
3987}
3988
4c4b4cd2 3989/* True iff TYPE is integral (an INT or RANGE of INTs). */
14f9c5c9
AS
3990
3991static int
d2e4a39e 3992integer_type_p (struct type *type)
14f9c5c9
AS
3993{
3994 if (type == NULL)
3995 return 0;
d2e4a39e
AS
3996 else
3997 {
78134374 3998 switch (type->code ())
4c4b4cd2
PH
3999 {
4000 case TYPE_CODE_INT:
4001 return 1;
4002 case TYPE_CODE_RANGE:
4003 return (type == TYPE_TARGET_TYPE (type)
4004 || integer_type_p (TYPE_TARGET_TYPE (type)));
4005 default:
4006 return 0;
4007 }
d2e4a39e 4008 }
14f9c5c9
AS
4009}
4010
4c4b4cd2 4011/* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */
14f9c5c9
AS
4012
4013static int
d2e4a39e 4014scalar_type_p (struct type *type)
14f9c5c9
AS
4015{
4016 if (type == NULL)
4017 return 0;
d2e4a39e
AS
4018 else
4019 {
78134374 4020 switch (type->code ())
4c4b4cd2
PH
4021 {
4022 case TYPE_CODE_INT:
4023 case TYPE_CODE_RANGE:
4024 case TYPE_CODE_ENUM:
4025 case TYPE_CODE_FLT:
4026 return 1;
4027 default:
4028 return 0;
4029 }
d2e4a39e 4030 }
14f9c5c9
AS
4031}
4032
4c4b4cd2 4033/* True iff TYPE is discrete (INT, RANGE, ENUM). */
14f9c5c9
AS
4034
4035static int
d2e4a39e 4036discrete_type_p (struct type *type)
14f9c5c9
AS
4037{
4038 if (type == NULL)
4039 return 0;
d2e4a39e
AS
4040 else
4041 {
78134374 4042 switch (type->code ())
4c4b4cd2
PH
4043 {
4044 case TYPE_CODE_INT:
4045 case TYPE_CODE_RANGE:
4046 case TYPE_CODE_ENUM:
872f0337 4047 case TYPE_CODE_BOOL:
4c4b4cd2
PH
4048 return 1;
4049 default:
4050 return 0;
4051 }
d2e4a39e 4052 }
14f9c5c9
AS
4053}
4054
4c4b4cd2
PH
4055/* Returns non-zero if OP with operands in the vector ARGS could be
4056 a user-defined function. Errs on the side of pre-defined operators
4057 (i.e., result 0). */
14f9c5c9
AS
4058
4059static int
d2e4a39e 4060possible_user_operator_p (enum exp_opcode op, struct value *args[])
14f9c5c9 4061{
76a01679 4062 struct type *type0 =
df407dfe 4063 (args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0]));
d2e4a39e 4064 struct type *type1 =
df407dfe 4065 (args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1]));
d2e4a39e 4066
4c4b4cd2
PH
4067 if (type0 == NULL)
4068 return 0;
4069
14f9c5c9
AS
4070 switch (op)
4071 {
4072 default:
4073 return 0;
4074
4075 case BINOP_ADD:
4076 case BINOP_SUB:
4077 case BINOP_MUL:
4078 case BINOP_DIV:
d2e4a39e 4079 return (!(numeric_type_p (type0) && numeric_type_p (type1)));
14f9c5c9
AS
4080
4081 case BINOP_REM:
4082 case BINOP_MOD:
4083 case BINOP_BITWISE_AND:
4084 case BINOP_BITWISE_IOR:
4085 case BINOP_BITWISE_XOR:
d2e4a39e 4086 return (!(integer_type_p (type0) && integer_type_p (type1)));
14f9c5c9
AS
4087
4088 case BINOP_EQUAL:
4089 case BINOP_NOTEQUAL:
4090 case BINOP_LESS:
4091 case BINOP_GTR:
4092 case BINOP_LEQ:
4093 case BINOP_GEQ:
d2e4a39e 4094 return (!(scalar_type_p (type0) && scalar_type_p (type1)));
14f9c5c9
AS
4095
4096 case BINOP_CONCAT:
ee90b9ab 4097 return !ada_is_array_type (type0) || !ada_is_array_type (type1);
14f9c5c9
AS
4098
4099 case BINOP_EXP:
d2e4a39e 4100 return (!(numeric_type_p (type0) && integer_type_p (type1)));
14f9c5c9
AS
4101
4102 case UNOP_NEG:
4103 case UNOP_PLUS:
4104 case UNOP_LOGICAL_NOT:
d2e4a39e
AS
4105 case UNOP_ABS:
4106 return (!numeric_type_p (type0));
14f9c5c9
AS
4107
4108 }
4109}
4110\f
4c4b4cd2 4111 /* Renaming */
14f9c5c9 4112
aeb5907d
JB
4113/* NOTES:
4114
4115 1. In the following, we assume that a renaming type's name may
4116 have an ___XD suffix. It would be nice if this went away at some
4117 point.
4118 2. We handle both the (old) purely type-based representation of
4119 renamings and the (new) variable-based encoding. At some point,
4120 it is devoutly to be hoped that the former goes away
4121 (FIXME: hilfinger-2007-07-09).
4122 3. Subprogram renamings are not implemented, although the XRS
4123 suffix is recognized (FIXME: hilfinger-2007-07-09). */
4124
4125/* If SYM encodes a renaming,
4126
4127 <renaming> renames <renamed entity>,
4128
4129 sets *LEN to the length of the renamed entity's name,
4130 *RENAMED_ENTITY to that name (not null-terminated), and *RENAMING_EXPR to
4131 the string describing the subcomponent selected from the renamed
0963b4bd 4132 entity. Returns ADA_NOT_RENAMING if SYM does not encode a renaming
aeb5907d
JB
4133 (in which case, the values of *RENAMED_ENTITY, *LEN, and *RENAMING_EXPR
4134 are undefined). Otherwise, returns a value indicating the category
4135 of entity renamed: an object (ADA_OBJECT_RENAMING), exception
4136 (ADA_EXCEPTION_RENAMING), package (ADA_PACKAGE_RENAMING), or
4137 subprogram (ADA_SUBPROGRAM_RENAMING). Does no allocation; the
4138 strings returned in *RENAMED_ENTITY and *RENAMING_EXPR should not be
4139 deallocated. The values of RENAMED_ENTITY, LEN, or RENAMING_EXPR
4140 may be NULL, in which case they are not assigned.
4141
4142 [Currently, however, GCC does not generate subprogram renamings.] */
4143
4144enum ada_renaming_category
4145ada_parse_renaming (struct symbol *sym,
4146 const char **renamed_entity, int *len,
4147 const char **renaming_expr)
4148{
4149 enum ada_renaming_category kind;
4150 const char *info;
4151 const char *suffix;
4152
4153 if (sym == NULL)
4154 return ADA_NOT_RENAMING;
4155 switch (SYMBOL_CLASS (sym))
14f9c5c9 4156 {
aeb5907d
JB
4157 default:
4158 return ADA_NOT_RENAMING;
aeb5907d
JB
4159 case LOC_LOCAL:
4160 case LOC_STATIC:
4161 case LOC_COMPUTED:
4162 case LOC_OPTIMIZED_OUT:
987012b8 4163 info = strstr (sym->linkage_name (), "___XR");
aeb5907d
JB
4164 if (info == NULL)
4165 return ADA_NOT_RENAMING;
4166 switch (info[5])
4167 {
4168 case '_':
4169 kind = ADA_OBJECT_RENAMING;
4170 info += 6;
4171 break;
4172 case 'E':
4173 kind = ADA_EXCEPTION_RENAMING;
4174 info += 7;
4175 break;
4176 case 'P':
4177 kind = ADA_PACKAGE_RENAMING;
4178 info += 7;
4179 break;
4180 case 'S':
4181 kind = ADA_SUBPROGRAM_RENAMING;
4182 info += 7;
4183 break;
4184 default:
4185 return ADA_NOT_RENAMING;
4186 }
14f9c5c9 4187 }
4c4b4cd2 4188
de93309a
SM
4189 if (renamed_entity != NULL)
4190 *renamed_entity = info;
4191 suffix = strstr (info, "___XE");
4192 if (suffix == NULL || suffix == info)
4193 return ADA_NOT_RENAMING;
4194 if (len != NULL)
4195 *len = strlen (info) - strlen (suffix);
4196 suffix += 5;
4197 if (renaming_expr != NULL)
4198 *renaming_expr = suffix;
4199 return kind;
4200}
4201
4202/* Compute the value of the given RENAMING_SYM, which is expected to
4203 be a symbol encoding a renaming expression. BLOCK is the block
4204 used to evaluate the renaming. */
4205
4206static struct value *
4207ada_read_renaming_var_value (struct symbol *renaming_sym,
4208 const struct block *block)
4209{
4210 const char *sym_name;
4211
987012b8 4212 sym_name = renaming_sym->linkage_name ();
de93309a
SM
4213 expression_up expr = parse_exp_1 (&sym_name, 0, block, 0);
4214 return evaluate_expression (expr.get ());
4215}
4216\f
4217
4218 /* Evaluation: Function Calls */
4219
4220/* Return an lvalue containing the value VAL. This is the identity on
4221 lvalues, and otherwise has the side-effect of allocating memory
4222 in the inferior where a copy of the value contents is copied. */
4223
4224static struct value *
4225ensure_lval (struct value *val)
4226{
4227 if (VALUE_LVAL (val) == not_lval
4228 || VALUE_LVAL (val) == lval_internalvar)
4229 {
4230 int len = TYPE_LENGTH (ada_check_typedef (value_type (val)));
4231 const CORE_ADDR addr =
4232 value_as_long (value_allocate_space_in_inferior (len));
4233
4234 VALUE_LVAL (val) = lval_memory;
4235 set_value_address (val, addr);
4236 write_memory (addr, value_contents (val), len);
4237 }
4238
4239 return val;
4240}
4241
4242/* Given ARG, a value of type (pointer or reference to a)*
4243 structure/union, extract the component named NAME from the ultimate
4244 target structure/union and return it as a value with its
4245 appropriate type.
4246
4247 The routine searches for NAME among all members of the structure itself
4248 and (recursively) among all members of any wrapper members
4249 (e.g., '_parent').
4250
4251 If NO_ERR, then simply return NULL in case of error, rather than
4252 calling error. */
4253
4254static struct value *
4255ada_value_struct_elt (struct value *arg, const char *name, int no_err)
4256{
4257 struct type *t, *t1;
4258 struct value *v;
4259 int check_tag;
4260
4261 v = NULL;
4262 t1 = t = ada_check_typedef (value_type (arg));
78134374 4263 if (t->code () == TYPE_CODE_REF)
de93309a
SM
4264 {
4265 t1 = TYPE_TARGET_TYPE (t);
4266 if (t1 == NULL)
4267 goto BadValue;
4268 t1 = ada_check_typedef (t1);
78134374 4269 if (t1->code () == TYPE_CODE_PTR)
de93309a
SM
4270 {
4271 arg = coerce_ref (arg);
4272 t = t1;
4273 }
4274 }
4275
78134374 4276 while (t->code () == TYPE_CODE_PTR)
de93309a
SM
4277 {
4278 t1 = TYPE_TARGET_TYPE (t);
4279 if (t1 == NULL)
4280 goto BadValue;
4281 t1 = ada_check_typedef (t1);
78134374 4282 if (t1->code () == TYPE_CODE_PTR)
de93309a
SM
4283 {
4284 arg = value_ind (arg);
4285 t = t1;
4286 }
4287 else
4288 break;
4289 }
aeb5907d 4290
78134374 4291 if (t1->code () != TYPE_CODE_STRUCT && t1->code () != TYPE_CODE_UNION)
de93309a 4292 goto BadValue;
52ce6436 4293
de93309a
SM
4294 if (t1 == t)
4295 v = ada_search_struct_field (name, arg, 0, t);
4296 else
4297 {
4298 int bit_offset, bit_size, byte_offset;
4299 struct type *field_type;
4300 CORE_ADDR address;
a5ee536b 4301
78134374 4302 if (t->code () == TYPE_CODE_PTR)
de93309a
SM
4303 address = value_address (ada_value_ind (arg));
4304 else
4305 address = value_address (ada_coerce_ref (arg));
d2e4a39e 4306
de93309a
SM
4307 /* Check to see if this is a tagged type. We also need to handle
4308 the case where the type is a reference to a tagged type, but
4309 we have to be careful to exclude pointers to tagged types.
4310 The latter should be shown as usual (as a pointer), whereas
4311 a reference should mostly be transparent to the user. */
14f9c5c9 4312
de93309a 4313 if (ada_is_tagged_type (t1, 0)
78134374 4314 || (t1->code () == TYPE_CODE_REF
de93309a
SM
4315 && ada_is_tagged_type (TYPE_TARGET_TYPE (t1), 0)))
4316 {
4317 /* We first try to find the searched field in the current type.
4318 If not found then let's look in the fixed type. */
14f9c5c9 4319
de93309a
SM
4320 if (!find_struct_field (name, t1, 0,
4321 &field_type, &byte_offset, &bit_offset,
4322 &bit_size, NULL))
4323 check_tag = 1;
4324 else
4325 check_tag = 0;
4326 }
4327 else
4328 check_tag = 0;
c3e5cd34 4329
de93309a
SM
4330 /* Convert to fixed type in all cases, so that we have proper
4331 offsets to each field in unconstrained record types. */
4332 t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL,
4333 address, NULL, check_tag);
4334
4335 if (find_struct_field (name, t1, 0,
4336 &field_type, &byte_offset, &bit_offset,
4337 &bit_size, NULL))
4338 {
4339 if (bit_size != 0)
4340 {
78134374 4341 if (t->code () == TYPE_CODE_REF)
de93309a
SM
4342 arg = ada_coerce_ref (arg);
4343 else
4344 arg = ada_value_ind (arg);
4345 v = ada_value_primitive_packed_val (arg, NULL, byte_offset,
4346 bit_offset, bit_size,
4347 field_type);
4348 }
4349 else
4350 v = value_at_lazy (field_type, address + byte_offset);
4351 }
c3e5cd34 4352 }
14f9c5c9 4353
de93309a
SM
4354 if (v != NULL || no_err)
4355 return v;
4356 else
4357 error (_("There is no member named %s."), name);
4358
4359 BadValue:
4360 if (no_err)
4361 return NULL;
4362 else
4363 error (_("Attempt to extract a component of "
4364 "a value that is not a record."));
14f9c5c9
AS
4365}
4366
4367/* Return the value ACTUAL, converted to be an appropriate value for a
4368 formal of type FORMAL_TYPE. Use *SP as a stack pointer for
4369 allocating any necessary descriptors (fat pointers), or copies of
4c4b4cd2 4370 values not residing in memory, updating it as needed. */
14f9c5c9 4371
a93c0eb6 4372struct value *
40bc484c 4373ada_convert_actual (struct value *actual, struct type *formal_type0)
14f9c5c9 4374{
df407dfe 4375 struct type *actual_type = ada_check_typedef (value_type (actual));
61ee279c 4376 struct type *formal_type = ada_check_typedef (formal_type0);
d2e4a39e 4377 struct type *formal_target =
78134374 4378 formal_type->code () == TYPE_CODE_PTR
61ee279c 4379 ? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type;
d2e4a39e 4380 struct type *actual_target =
78134374 4381 actual_type->code () == TYPE_CODE_PTR
61ee279c 4382 ? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type;
14f9c5c9 4383
4c4b4cd2 4384 if (ada_is_array_descriptor_type (formal_target)
78134374 4385 && actual_target->code () == TYPE_CODE_ARRAY)
40bc484c 4386 return make_array_descriptor (formal_type, actual);
78134374
SM
4387 else if (formal_type->code () == TYPE_CODE_PTR
4388 || formal_type->code () == TYPE_CODE_REF)
14f9c5c9 4389 {
a84a8a0d 4390 struct value *result;
5b4ee69b 4391
78134374 4392 if (formal_target->code () == TYPE_CODE_ARRAY
4c4b4cd2 4393 && ada_is_array_descriptor_type (actual_target))
a84a8a0d 4394 result = desc_data (actual);
78134374 4395 else if (formal_type->code () != TYPE_CODE_PTR)
4c4b4cd2
PH
4396 {
4397 if (VALUE_LVAL (actual) != lval_memory)
4398 {
4399 struct value *val;
5b4ee69b 4400
df407dfe 4401 actual_type = ada_check_typedef (value_type (actual));
4c4b4cd2 4402 val = allocate_value (actual_type);
990a07ab 4403 memcpy ((char *) value_contents_raw (val),
0fd88904 4404 (char *) value_contents (actual),
4c4b4cd2 4405 TYPE_LENGTH (actual_type));
40bc484c 4406 actual = ensure_lval (val);
4c4b4cd2 4407 }
a84a8a0d 4408 result = value_addr (actual);
4c4b4cd2 4409 }
a84a8a0d
JB
4410 else
4411 return actual;
b1af9e97 4412 return value_cast_pointers (formal_type, result, 0);
14f9c5c9 4413 }
78134374 4414 else if (actual_type->code () == TYPE_CODE_PTR)
14f9c5c9 4415 return ada_value_ind (actual);
8344af1e
JB
4416 else if (ada_is_aligner_type (formal_type))
4417 {
4418 /* We need to turn this parameter into an aligner type
4419 as well. */
4420 struct value *aligner = allocate_value (formal_type);
4421 struct value *component = ada_value_struct_elt (aligner, "F", 0);
4422
4423 value_assign_to_component (aligner, component, actual);
4424 return aligner;
4425 }
14f9c5c9
AS
4426
4427 return actual;
4428}
4429
438c98a1
JB
4430/* Convert VALUE (which must be an address) to a CORE_ADDR that is a pointer of
4431 type TYPE. This is usually an inefficient no-op except on some targets
4432 (such as AVR) where the representation of a pointer and an address
4433 differs. */
4434
4435static CORE_ADDR
4436value_pointer (struct value *value, struct type *type)
4437{
4438 struct gdbarch *gdbarch = get_type_arch (type);
4439 unsigned len = TYPE_LENGTH (type);
224c3ddb 4440 gdb_byte *buf = (gdb_byte *) alloca (len);
438c98a1
JB
4441 CORE_ADDR addr;
4442
4443 addr = value_address (value);
4444 gdbarch_address_to_pointer (gdbarch, type, buf, addr);
34877895 4445 addr = extract_unsigned_integer (buf, len, type_byte_order (type));
438c98a1
JB
4446 return addr;
4447}
4448
14f9c5c9 4449
4c4b4cd2
PH
4450/* Push a descriptor of type TYPE for array value ARR on the stack at
4451 *SP, updating *SP to reflect the new descriptor. Return either
14f9c5c9 4452 an lvalue representing the new descriptor, or (if TYPE is a pointer-
4c4b4cd2
PH
4453 to-descriptor type rather than a descriptor type), a struct value *
4454 representing a pointer to this descriptor. */
14f9c5c9 4455
d2e4a39e 4456static struct value *
40bc484c 4457make_array_descriptor (struct type *type, struct value *arr)
14f9c5c9 4458{
d2e4a39e
AS
4459 struct type *bounds_type = desc_bounds_type (type);
4460 struct type *desc_type = desc_base_type (type);
4461 struct value *descriptor = allocate_value (desc_type);
4462 struct value *bounds = allocate_value (bounds_type);
14f9c5c9 4463 int i;
d2e4a39e 4464
0963b4bd
MS
4465 for (i = ada_array_arity (ada_check_typedef (value_type (arr)));
4466 i > 0; i -= 1)
14f9c5c9 4467 {
19f220c3
JK
4468 modify_field (value_type (bounds), value_contents_writeable (bounds),
4469 ada_array_bound (arr, i, 0),
4470 desc_bound_bitpos (bounds_type, i, 0),
4471 desc_bound_bitsize (bounds_type, i, 0));
4472 modify_field (value_type (bounds), value_contents_writeable (bounds),
4473 ada_array_bound (arr, i, 1),
4474 desc_bound_bitpos (bounds_type, i, 1),
4475 desc_bound_bitsize (bounds_type, i, 1));
14f9c5c9 4476 }
d2e4a39e 4477
40bc484c 4478 bounds = ensure_lval (bounds);
d2e4a39e 4479
19f220c3
JK
4480 modify_field (value_type (descriptor),
4481 value_contents_writeable (descriptor),
4482 value_pointer (ensure_lval (arr),
940da03e 4483 desc_type->field (0).type ()),
19f220c3
JK
4484 fat_pntr_data_bitpos (desc_type),
4485 fat_pntr_data_bitsize (desc_type));
4486
4487 modify_field (value_type (descriptor),
4488 value_contents_writeable (descriptor),
4489 value_pointer (bounds,
940da03e 4490 desc_type->field (1).type ()),
19f220c3
JK
4491 fat_pntr_bounds_bitpos (desc_type),
4492 fat_pntr_bounds_bitsize (desc_type));
14f9c5c9 4493
40bc484c 4494 descriptor = ensure_lval (descriptor);
14f9c5c9 4495
78134374 4496 if (type->code () == TYPE_CODE_PTR)
14f9c5c9
AS
4497 return value_addr (descriptor);
4498 else
4499 return descriptor;
4500}
14f9c5c9 4501\f
3d9434b5
JB
4502 /* Symbol Cache Module */
4503
3d9434b5 4504/* Performance measurements made as of 2010-01-15 indicate that
ee01b665 4505 this cache does bring some noticeable improvements. Depending
3d9434b5
JB
4506 on the type of entity being printed, the cache can make it as much
4507 as an order of magnitude faster than without it.
4508
4509 The descriptive type DWARF extension has significantly reduced
4510 the need for this cache, at least when DWARF is being used. However,
4511 even in this case, some expensive name-based symbol searches are still
4512 sometimes necessary - to find an XVZ variable, mostly. */
4513
ee01b665 4514/* Initialize the contents of SYM_CACHE. */
3d9434b5 4515
ee01b665
JB
4516static void
4517ada_init_symbol_cache (struct ada_symbol_cache *sym_cache)
4518{
4519 obstack_init (&sym_cache->cache_space);
4520 memset (sym_cache->root, '\000', sizeof (sym_cache->root));
4521}
3d9434b5 4522
ee01b665
JB
4523/* Free the memory used by SYM_CACHE. */
4524
4525static void
4526ada_free_symbol_cache (struct ada_symbol_cache *sym_cache)
3d9434b5 4527{
ee01b665
JB
4528 obstack_free (&sym_cache->cache_space, NULL);
4529 xfree (sym_cache);
4530}
3d9434b5 4531
ee01b665
JB
4532/* Return the symbol cache associated to the given program space PSPACE.
4533 If not allocated for this PSPACE yet, allocate and initialize one. */
3d9434b5 4534
ee01b665
JB
4535static struct ada_symbol_cache *
4536ada_get_symbol_cache (struct program_space *pspace)
4537{
4538 struct ada_pspace_data *pspace_data = get_ada_pspace_data (pspace);
ee01b665 4539
66c168ae 4540 if (pspace_data->sym_cache == NULL)
ee01b665 4541 {
66c168ae
JB
4542 pspace_data->sym_cache = XCNEW (struct ada_symbol_cache);
4543 ada_init_symbol_cache (pspace_data->sym_cache);
ee01b665
JB
4544 }
4545
66c168ae 4546 return pspace_data->sym_cache;
ee01b665 4547}
3d9434b5
JB
4548
4549/* Clear all entries from the symbol cache. */
4550
4551static void
4552ada_clear_symbol_cache (void)
4553{
ee01b665
JB
4554 struct ada_symbol_cache *sym_cache
4555 = ada_get_symbol_cache (current_program_space);
4556
4557 obstack_free (&sym_cache->cache_space, NULL);
4558 ada_init_symbol_cache (sym_cache);
3d9434b5
JB
4559}
4560
fe978cb0 4561/* Search our cache for an entry matching NAME and DOMAIN.
3d9434b5
JB
4562 Return it if found, or NULL otherwise. */
4563
4564static struct cache_entry **
fe978cb0 4565find_entry (const char *name, domain_enum domain)
3d9434b5 4566{
ee01b665
JB
4567 struct ada_symbol_cache *sym_cache
4568 = ada_get_symbol_cache (current_program_space);
3d9434b5
JB
4569 int h = msymbol_hash (name) % HASH_SIZE;
4570 struct cache_entry **e;
4571
ee01b665 4572 for (e = &sym_cache->root[h]; *e != NULL; e = &(*e)->next)
3d9434b5 4573 {
fe978cb0 4574 if (domain == (*e)->domain && strcmp (name, (*e)->name) == 0)
3d9434b5
JB
4575 return e;
4576 }
4577 return NULL;
4578}
4579
fe978cb0 4580/* Search the symbol cache for an entry matching NAME and DOMAIN.
3d9434b5
JB
4581 Return 1 if found, 0 otherwise.
4582
4583 If an entry was found and SYM is not NULL, set *SYM to the entry's
4584 SYM. Same principle for BLOCK if not NULL. */
96d887e8 4585
96d887e8 4586static int
fe978cb0 4587lookup_cached_symbol (const char *name, domain_enum domain,
f0c5f9b2 4588 struct symbol **sym, const struct block **block)
96d887e8 4589{
fe978cb0 4590 struct cache_entry **e = find_entry (name, domain);
3d9434b5
JB
4591
4592 if (e == NULL)
4593 return 0;
4594 if (sym != NULL)
4595 *sym = (*e)->sym;
4596 if (block != NULL)
4597 *block = (*e)->block;
4598 return 1;
96d887e8
PH
4599}
4600
3d9434b5 4601/* Assuming that (SYM, BLOCK) is the result of the lookup of NAME
fe978cb0 4602 in domain DOMAIN, save this result in our symbol cache. */
3d9434b5 4603
96d887e8 4604static void
fe978cb0 4605cache_symbol (const char *name, domain_enum domain, struct symbol *sym,
270140bd 4606 const struct block *block)
96d887e8 4607{
ee01b665
JB
4608 struct ada_symbol_cache *sym_cache
4609 = ada_get_symbol_cache (current_program_space);
3d9434b5 4610 int h;
3d9434b5
JB
4611 struct cache_entry *e;
4612
1994afbf
DE
4613 /* Symbols for builtin types don't have a block.
4614 For now don't cache such symbols. */
4615 if (sym != NULL && !SYMBOL_OBJFILE_OWNED (sym))
4616 return;
4617
3d9434b5
JB
4618 /* If the symbol is a local symbol, then do not cache it, as a search
4619 for that symbol depends on the context. To determine whether
4620 the symbol is local or not, we check the block where we found it
4621 against the global and static blocks of its associated symtab. */
4622 if (sym
08be3fe3 4623 && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)),
439247b6 4624 GLOBAL_BLOCK) != block
08be3fe3 4625 && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)),
439247b6 4626 STATIC_BLOCK) != block)
3d9434b5
JB
4627 return;
4628
4629 h = msymbol_hash (name) % HASH_SIZE;
e39db4db 4630 e = XOBNEW (&sym_cache->cache_space, cache_entry);
ee01b665
JB
4631 e->next = sym_cache->root[h];
4632 sym_cache->root[h] = e;
2ef5453b 4633 e->name = obstack_strdup (&sym_cache->cache_space, name);
3d9434b5 4634 e->sym = sym;
fe978cb0 4635 e->domain = domain;
3d9434b5 4636 e->block = block;
96d887e8 4637}
4c4b4cd2
PH
4638\f
4639 /* Symbol Lookup */
4640
b5ec771e
PA
4641/* Return the symbol name match type that should be used used when
4642 searching for all symbols matching LOOKUP_NAME.
c0431670
JB
4643
4644 LOOKUP_NAME is expected to be a symbol name after transformation
f98b2e33 4645 for Ada lookups. */
c0431670 4646
b5ec771e
PA
4647static symbol_name_match_type
4648name_match_type_from_name (const char *lookup_name)
c0431670 4649{
b5ec771e
PA
4650 return (strstr (lookup_name, "__") == NULL
4651 ? symbol_name_match_type::WILD
4652 : symbol_name_match_type::FULL);
c0431670
JB
4653}
4654
4c4b4cd2
PH
4655/* Return the result of a standard (literal, C-like) lookup of NAME in
4656 given DOMAIN, visible from lexical block BLOCK. */
4657
4658static struct symbol *
4659standard_lookup (const char *name, const struct block *block,
4660 domain_enum domain)
4661{
acbd605d 4662 /* Initialize it just to avoid a GCC false warning. */
6640a367 4663 struct block_symbol sym = {};
4c4b4cd2 4664
d12307c1
PMR
4665 if (lookup_cached_symbol (name, domain, &sym.symbol, NULL))
4666 return sym.symbol;
a2cd4f14 4667 ada_lookup_encoded_symbol (name, block, domain, &sym);
d12307c1
PMR
4668 cache_symbol (name, domain, sym.symbol, sym.block);
4669 return sym.symbol;
4c4b4cd2
PH
4670}
4671
4672
4673/* Non-zero iff there is at least one non-function/non-enumeral symbol
4674 in the symbol fields of SYMS[0..N-1]. We treat enumerals as functions,
4675 since they contend in overloading in the same way. */
4676static int
d12307c1 4677is_nonfunction (struct block_symbol syms[], int n)
4c4b4cd2
PH
4678{
4679 int i;
4680
4681 for (i = 0; i < n; i += 1)
78134374
SM
4682 if (SYMBOL_TYPE (syms[i].symbol)->code () != TYPE_CODE_FUNC
4683 && (SYMBOL_TYPE (syms[i].symbol)->code () != TYPE_CODE_ENUM
d12307c1 4684 || SYMBOL_CLASS (syms[i].symbol) != LOC_CONST))
14f9c5c9
AS
4685 return 1;
4686
4687 return 0;
4688}
4689
4690/* If true (non-zero), then TYPE0 and TYPE1 represent equivalent
4c4b4cd2 4691 struct types. Otherwise, they may not. */
14f9c5c9
AS
4692
4693static int
d2e4a39e 4694equiv_types (struct type *type0, struct type *type1)
14f9c5c9 4695{
d2e4a39e 4696 if (type0 == type1)
14f9c5c9 4697 return 1;
d2e4a39e 4698 if (type0 == NULL || type1 == NULL
78134374 4699 || type0->code () != type1->code ())
14f9c5c9 4700 return 0;
78134374
SM
4701 if ((type0->code () == TYPE_CODE_STRUCT
4702 || type0->code () == TYPE_CODE_ENUM)
14f9c5c9 4703 && ada_type_name (type0) != NULL && ada_type_name (type1) != NULL
4c4b4cd2 4704 && strcmp (ada_type_name (type0), ada_type_name (type1)) == 0)
14f9c5c9 4705 return 1;
d2e4a39e 4706
14f9c5c9
AS
4707 return 0;
4708}
4709
4710/* True iff SYM0 represents the same entity as SYM1, or one that is
4c4b4cd2 4711 no more defined than that of SYM1. */
14f9c5c9
AS
4712
4713static int
d2e4a39e 4714lesseq_defined_than (struct symbol *sym0, struct symbol *sym1)
14f9c5c9
AS
4715{
4716 if (sym0 == sym1)
4717 return 1;
176620f1 4718 if (SYMBOL_DOMAIN (sym0) != SYMBOL_DOMAIN (sym1)
14f9c5c9
AS
4719 || SYMBOL_CLASS (sym0) != SYMBOL_CLASS (sym1))
4720 return 0;
4721
d2e4a39e 4722 switch (SYMBOL_CLASS (sym0))
14f9c5c9
AS
4723 {
4724 case LOC_UNDEF:
4725 return 1;
4726 case LOC_TYPEDEF:
4727 {
4c4b4cd2
PH
4728 struct type *type0 = SYMBOL_TYPE (sym0);
4729 struct type *type1 = SYMBOL_TYPE (sym1);
987012b8
CB
4730 const char *name0 = sym0->linkage_name ();
4731 const char *name1 = sym1->linkage_name ();
4c4b4cd2 4732 int len0 = strlen (name0);
5b4ee69b 4733
4c4b4cd2 4734 return
78134374 4735 type0->code () == type1->code ()
4c4b4cd2
PH
4736 && (equiv_types (type0, type1)
4737 || (len0 < strlen (name1) && strncmp (name0, name1, len0) == 0
61012eef 4738 && startswith (name1 + len0, "___XV")));
14f9c5c9
AS
4739 }
4740 case LOC_CONST:
4741 return SYMBOL_VALUE (sym0) == SYMBOL_VALUE (sym1)
4c4b4cd2 4742 && equiv_types (SYMBOL_TYPE (sym0), SYMBOL_TYPE (sym1));
4b610737
TT
4743
4744 case LOC_STATIC:
4745 {
987012b8
CB
4746 const char *name0 = sym0->linkage_name ();
4747 const char *name1 = sym1->linkage_name ();
4b610737
TT
4748 return (strcmp (name0, name1) == 0
4749 && SYMBOL_VALUE_ADDRESS (sym0) == SYMBOL_VALUE_ADDRESS (sym1));
4750 }
4751
d2e4a39e
AS
4752 default:
4753 return 0;
14f9c5c9
AS
4754 }
4755}
4756
d12307c1 4757/* Append (SYM,BLOCK,SYMTAB) to the end of the array of struct block_symbol
4c4b4cd2 4758 records in OBSTACKP. Do nothing if SYM is a duplicate. */
14f9c5c9
AS
4759
4760static void
76a01679
JB
4761add_defn_to_vec (struct obstack *obstackp,
4762 struct symbol *sym,
f0c5f9b2 4763 const struct block *block)
14f9c5c9
AS
4764{
4765 int i;
d12307c1 4766 struct block_symbol *prevDefns = defns_collected (obstackp, 0);
14f9c5c9 4767
529cad9c
PH
4768 /* Do not try to complete stub types, as the debugger is probably
4769 already scanning all symbols matching a certain name at the
4770 time when this function is called. Trying to replace the stub
4771 type by its associated full type will cause us to restart a scan
4772 which may lead to an infinite recursion. Instead, the client
4773 collecting the matching symbols will end up collecting several
4774 matches, with at least one of them complete. It can then filter
4775 out the stub ones if needed. */
4776
4c4b4cd2
PH
4777 for (i = num_defns_collected (obstackp) - 1; i >= 0; i -= 1)
4778 {
d12307c1 4779 if (lesseq_defined_than (sym, prevDefns[i].symbol))
4c4b4cd2 4780 return;
d12307c1 4781 else if (lesseq_defined_than (prevDefns[i].symbol, sym))
4c4b4cd2 4782 {
d12307c1 4783 prevDefns[i].symbol = sym;
4c4b4cd2 4784 prevDefns[i].block = block;
4c4b4cd2 4785 return;
76a01679 4786 }
4c4b4cd2
PH
4787 }
4788
4789 {
d12307c1 4790 struct block_symbol info;
4c4b4cd2 4791
d12307c1 4792 info.symbol = sym;
4c4b4cd2 4793 info.block = block;
d12307c1 4794 obstack_grow (obstackp, &info, sizeof (struct block_symbol));
4c4b4cd2
PH
4795 }
4796}
4797
d12307c1
PMR
4798/* Number of block_symbol structures currently collected in current vector in
4799 OBSTACKP. */
4c4b4cd2 4800
76a01679
JB
4801static int
4802num_defns_collected (struct obstack *obstackp)
4c4b4cd2 4803{
d12307c1 4804 return obstack_object_size (obstackp) / sizeof (struct block_symbol);
4c4b4cd2
PH
4805}
4806
d12307c1
PMR
4807/* Vector of block_symbol structures currently collected in current vector in
4808 OBSTACKP. If FINISH, close off the vector and return its final address. */
4c4b4cd2 4809
d12307c1 4810static struct block_symbol *
4c4b4cd2
PH
4811defns_collected (struct obstack *obstackp, int finish)
4812{
4813 if (finish)
224c3ddb 4814 return (struct block_symbol *) obstack_finish (obstackp);
4c4b4cd2 4815 else
d12307c1 4816 return (struct block_symbol *) obstack_base (obstackp);
4c4b4cd2
PH
4817}
4818
7c7b6655
TT
4819/* Return a bound minimal symbol matching NAME according to Ada
4820 decoding rules. Returns an invalid symbol if there is no such
4821 minimal symbol. Names prefixed with "standard__" are handled
4822 specially: "standard__" is first stripped off, and only static and
4823 global symbols are searched. */
4c4b4cd2 4824
7c7b6655 4825struct bound_minimal_symbol
96d887e8 4826ada_lookup_simple_minsym (const char *name)
4c4b4cd2 4827{
7c7b6655 4828 struct bound_minimal_symbol result;
4c4b4cd2 4829
7c7b6655
TT
4830 memset (&result, 0, sizeof (result));
4831
b5ec771e
PA
4832 symbol_name_match_type match_type = name_match_type_from_name (name);
4833 lookup_name_info lookup_name (name, match_type);
4834
4835 symbol_name_matcher_ftype *match_name
4836 = ada_get_symbol_name_matcher (lookup_name);
4c4b4cd2 4837
2030c079 4838 for (objfile *objfile : current_program_space->objfiles ())
5325b9bf 4839 {
7932255d 4840 for (minimal_symbol *msymbol : objfile->msymbols ())
5325b9bf 4841 {
c9d95fa3 4842 if (match_name (msymbol->linkage_name (), lookup_name, NULL)
5325b9bf
TT
4843 && MSYMBOL_TYPE (msymbol) != mst_solib_trampoline)
4844 {
4845 result.minsym = msymbol;
4846 result.objfile = objfile;
4847 break;
4848 }
4849 }
4850 }
4c4b4cd2 4851
7c7b6655 4852 return result;
96d887e8 4853}
4c4b4cd2 4854
96d887e8
PH
4855/* For all subprograms that statically enclose the subprogram of the
4856 selected frame, add symbols matching identifier NAME in DOMAIN
4857 and their blocks to the list of data in OBSTACKP, as for
48b78332
JB
4858 ada_add_block_symbols (q.v.). If WILD_MATCH_P, treat as NAME
4859 with a wildcard prefix. */
4c4b4cd2 4860
96d887e8
PH
4861static void
4862add_symbols_from_enclosing_procs (struct obstack *obstackp,
b5ec771e
PA
4863 const lookup_name_info &lookup_name,
4864 domain_enum domain)
96d887e8 4865{
96d887e8 4866}
14f9c5c9 4867
96d887e8
PH
4868/* True if TYPE is definitely an artificial type supplied to a symbol
4869 for which no debugging information was given in the symbol file. */
14f9c5c9 4870
96d887e8
PH
4871static int
4872is_nondebugging_type (struct type *type)
4873{
0d5cff50 4874 const char *name = ada_type_name (type);
5b4ee69b 4875
96d887e8
PH
4876 return (name != NULL && strcmp (name, "<variable, no debug info>") == 0);
4877}
4c4b4cd2 4878
8f17729f
JB
4879/* Return nonzero if TYPE1 and TYPE2 are two enumeration types
4880 that are deemed "identical" for practical purposes.
4881
4882 This function assumes that TYPE1 and TYPE2 are both TYPE_CODE_ENUM
4883 types and that their number of enumerals is identical (in other
1f704f76 4884 words, type1->num_fields () == type2->num_fields ()). */
8f17729f
JB
4885
4886static int
4887ada_identical_enum_types_p (struct type *type1, struct type *type2)
4888{
4889 int i;
4890
4891 /* The heuristic we use here is fairly conservative. We consider
4892 that 2 enumerate types are identical if they have the same
4893 number of enumerals and that all enumerals have the same
4894 underlying value and name. */
4895
4896 /* All enums in the type should have an identical underlying value. */
1f704f76 4897 for (i = 0; i < type1->num_fields (); i++)
14e75d8e 4898 if (TYPE_FIELD_ENUMVAL (type1, i) != TYPE_FIELD_ENUMVAL (type2, i))
8f17729f
JB
4899 return 0;
4900
4901 /* All enumerals should also have the same name (modulo any numerical
4902 suffix). */
1f704f76 4903 for (i = 0; i < type1->num_fields (); i++)
8f17729f 4904 {
0d5cff50
DE
4905 const char *name_1 = TYPE_FIELD_NAME (type1, i);
4906 const char *name_2 = TYPE_FIELD_NAME (type2, i);
8f17729f
JB
4907 int len_1 = strlen (name_1);
4908 int len_2 = strlen (name_2);
4909
4910 ada_remove_trailing_digits (TYPE_FIELD_NAME (type1, i), &len_1);
4911 ada_remove_trailing_digits (TYPE_FIELD_NAME (type2, i), &len_2);
4912 if (len_1 != len_2
4913 || strncmp (TYPE_FIELD_NAME (type1, i),
4914 TYPE_FIELD_NAME (type2, i),
4915 len_1) != 0)
4916 return 0;
4917 }
4918
4919 return 1;
4920}
4921
4922/* Return nonzero if all the symbols in SYMS are all enumeral symbols
4923 that are deemed "identical" for practical purposes. Sometimes,
4924 enumerals are not strictly identical, but their types are so similar
4925 that they can be considered identical.
4926
4927 For instance, consider the following code:
4928
4929 type Color is (Black, Red, Green, Blue, White);
4930 type RGB_Color is new Color range Red .. Blue;
4931
4932 Type RGB_Color is a subrange of an implicit type which is a copy
4933 of type Color. If we call that implicit type RGB_ColorB ("B" is
4934 for "Base Type"), then type RGB_ColorB is a copy of type Color.
4935 As a result, when an expression references any of the enumeral
4936 by name (Eg. "print green"), the expression is technically
4937 ambiguous and the user should be asked to disambiguate. But
4938 doing so would only hinder the user, since it wouldn't matter
4939 what choice he makes, the outcome would always be the same.
4940 So, for practical purposes, we consider them as the same. */
4941
4942static int
54d343a2 4943symbols_are_identical_enums (const std::vector<struct block_symbol> &syms)
8f17729f
JB
4944{
4945 int i;
4946
4947 /* Before performing a thorough comparison check of each type,
4948 we perform a series of inexpensive checks. We expect that these
4949 checks will quickly fail in the vast majority of cases, and thus
4950 help prevent the unnecessary use of a more expensive comparison.
4951 Said comparison also expects us to make some of these checks
4952 (see ada_identical_enum_types_p). */
4953
4954 /* Quick check: All symbols should have an enum type. */
54d343a2 4955 for (i = 0; i < syms.size (); i++)
78134374 4956 if (SYMBOL_TYPE (syms[i].symbol)->code () != TYPE_CODE_ENUM)
8f17729f
JB
4957 return 0;
4958
4959 /* Quick check: They should all have the same value. */
54d343a2 4960 for (i = 1; i < syms.size (); i++)
d12307c1 4961 if (SYMBOL_VALUE (syms[i].symbol) != SYMBOL_VALUE (syms[0].symbol))
8f17729f
JB
4962 return 0;
4963
4964 /* Quick check: They should all have the same number of enumerals. */
54d343a2 4965 for (i = 1; i < syms.size (); i++)
1f704f76
SM
4966 if (SYMBOL_TYPE (syms[i].symbol)->num_fields ()
4967 != SYMBOL_TYPE (syms[0].symbol)->num_fields ())
8f17729f
JB
4968 return 0;
4969
4970 /* All the sanity checks passed, so we might have a set of
4971 identical enumeration types. Perform a more complete
4972 comparison of the type of each symbol. */
54d343a2 4973 for (i = 1; i < syms.size (); i++)
d12307c1
PMR
4974 if (!ada_identical_enum_types_p (SYMBOL_TYPE (syms[i].symbol),
4975 SYMBOL_TYPE (syms[0].symbol)))
8f17729f
JB
4976 return 0;
4977
4978 return 1;
4979}
4980
54d343a2 4981/* Remove any non-debugging symbols in SYMS that definitely
96d887e8
PH
4982 duplicate other symbols in the list (The only case I know of where
4983 this happens is when object files containing stabs-in-ecoff are
4984 linked with files containing ordinary ecoff debugging symbols (or no
4985 debugging symbols)). Modifies SYMS to squeeze out deleted entries.
4986 Returns the number of items in the modified list. */
4c4b4cd2 4987
96d887e8 4988static int
54d343a2 4989remove_extra_symbols (std::vector<struct block_symbol> *syms)
96d887e8
PH
4990{
4991 int i, j;
4c4b4cd2 4992
8f17729f
JB
4993 /* We should never be called with less than 2 symbols, as there
4994 cannot be any extra symbol in that case. But it's easy to
4995 handle, since we have nothing to do in that case. */
54d343a2
TT
4996 if (syms->size () < 2)
4997 return syms->size ();
8f17729f 4998
96d887e8 4999 i = 0;
54d343a2 5000 while (i < syms->size ())
96d887e8 5001 {
a35ddb44 5002 int remove_p = 0;
339c13b6
JB
5003
5004 /* If two symbols have the same name and one of them is a stub type,
5005 the get rid of the stub. */
5006
54d343a2 5007 if (TYPE_STUB (SYMBOL_TYPE ((*syms)[i].symbol))
987012b8 5008 && (*syms)[i].symbol->linkage_name () != NULL)
339c13b6 5009 {
54d343a2 5010 for (j = 0; j < syms->size (); j++)
339c13b6
JB
5011 {
5012 if (j != i
54d343a2 5013 && !TYPE_STUB (SYMBOL_TYPE ((*syms)[j].symbol))
987012b8
CB
5014 && (*syms)[j].symbol->linkage_name () != NULL
5015 && strcmp ((*syms)[i].symbol->linkage_name (),
5016 (*syms)[j].symbol->linkage_name ()) == 0)
a35ddb44 5017 remove_p = 1;
339c13b6
JB
5018 }
5019 }
5020
5021 /* Two symbols with the same name, same class and same address
5022 should be identical. */
5023
987012b8 5024 else if ((*syms)[i].symbol->linkage_name () != NULL
54d343a2
TT
5025 && SYMBOL_CLASS ((*syms)[i].symbol) == LOC_STATIC
5026 && is_nondebugging_type (SYMBOL_TYPE ((*syms)[i].symbol)))
96d887e8 5027 {
54d343a2 5028 for (j = 0; j < syms->size (); j += 1)
96d887e8
PH
5029 {
5030 if (i != j
987012b8
CB
5031 && (*syms)[j].symbol->linkage_name () != NULL
5032 && strcmp ((*syms)[i].symbol->linkage_name (),
5033 (*syms)[j].symbol->linkage_name ()) == 0
54d343a2
TT
5034 && SYMBOL_CLASS ((*syms)[i].symbol)
5035 == SYMBOL_CLASS ((*syms)[j].symbol)
5036 && SYMBOL_VALUE_ADDRESS ((*syms)[i].symbol)
5037 == SYMBOL_VALUE_ADDRESS ((*syms)[j].symbol))
a35ddb44 5038 remove_p = 1;
4c4b4cd2 5039 }
4c4b4cd2 5040 }
339c13b6 5041
a35ddb44 5042 if (remove_p)
54d343a2 5043 syms->erase (syms->begin () + i);
339c13b6 5044
96d887e8 5045 i += 1;
14f9c5c9 5046 }
8f17729f
JB
5047
5048 /* If all the remaining symbols are identical enumerals, then
5049 just keep the first one and discard the rest.
5050
5051 Unlike what we did previously, we do not discard any entry
5052 unless they are ALL identical. This is because the symbol
5053 comparison is not a strict comparison, but rather a practical
5054 comparison. If all symbols are considered identical, then
5055 we can just go ahead and use the first one and discard the rest.
5056 But if we cannot reduce the list to a single element, we have
5057 to ask the user to disambiguate anyways. And if we have to
5058 present a multiple-choice menu, it's less confusing if the list
5059 isn't missing some choices that were identical and yet distinct. */
54d343a2
TT
5060 if (symbols_are_identical_enums (*syms))
5061 syms->resize (1);
8f17729f 5062
54d343a2 5063 return syms->size ();
14f9c5c9
AS
5064}
5065
96d887e8
PH
5066/* Given a type that corresponds to a renaming entity, use the type name
5067 to extract the scope (package name or function name, fully qualified,
5068 and following the GNAT encoding convention) where this renaming has been
49d83361 5069 defined. */
4c4b4cd2 5070
49d83361 5071static std::string
96d887e8 5072xget_renaming_scope (struct type *renaming_type)
14f9c5c9 5073{
96d887e8 5074 /* The renaming types adhere to the following convention:
0963b4bd 5075 <scope>__<rename>___<XR extension>.
96d887e8
PH
5076 So, to extract the scope, we search for the "___XR" extension,
5077 and then backtrack until we find the first "__". */
76a01679 5078
7d93a1e0 5079 const char *name = renaming_type->name ();
108d56a4
SM
5080 const char *suffix = strstr (name, "___XR");
5081 const char *last;
14f9c5c9 5082
96d887e8
PH
5083 /* Now, backtrack a bit until we find the first "__". Start looking
5084 at suffix - 3, as the <rename> part is at least one character long. */
14f9c5c9 5085
96d887e8
PH
5086 for (last = suffix - 3; last > name; last--)
5087 if (last[0] == '_' && last[1] == '_')
5088 break;
76a01679 5089
96d887e8 5090 /* Make a copy of scope and return it. */
49d83361 5091 return std::string (name, last);
4c4b4cd2
PH
5092}
5093
96d887e8 5094/* Return nonzero if NAME corresponds to a package name. */
4c4b4cd2 5095
96d887e8
PH
5096static int
5097is_package_name (const char *name)
4c4b4cd2 5098{
96d887e8
PH
5099 /* Here, We take advantage of the fact that no symbols are generated
5100 for packages, while symbols are generated for each function.
5101 So the condition for NAME represent a package becomes equivalent
5102 to NAME not existing in our list of symbols. There is only one
5103 small complication with library-level functions (see below). */
4c4b4cd2 5104
96d887e8
PH
5105 /* If it is a function that has not been defined at library level,
5106 then we should be able to look it up in the symbols. */
5107 if (standard_lookup (name, NULL, VAR_DOMAIN) != NULL)
5108 return 0;
14f9c5c9 5109
96d887e8
PH
5110 /* Library-level function names start with "_ada_". See if function
5111 "_ada_" followed by NAME can be found. */
14f9c5c9 5112
96d887e8 5113 /* Do a quick check that NAME does not contain "__", since library-level
e1d5a0d2 5114 functions names cannot contain "__" in them. */
96d887e8
PH
5115 if (strstr (name, "__") != NULL)
5116 return 0;
4c4b4cd2 5117
528e1572 5118 std::string fun_name = string_printf ("_ada_%s", name);
14f9c5c9 5119
528e1572 5120 return (standard_lookup (fun_name.c_str (), NULL, VAR_DOMAIN) == NULL);
96d887e8 5121}
14f9c5c9 5122
96d887e8 5123/* Return nonzero if SYM corresponds to a renaming entity that is
aeb5907d 5124 not visible from FUNCTION_NAME. */
14f9c5c9 5125
96d887e8 5126static int
0d5cff50 5127old_renaming_is_invisible (const struct symbol *sym, const char *function_name)
96d887e8 5128{
aeb5907d
JB
5129 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
5130 return 0;
5131
49d83361 5132 std::string scope = xget_renaming_scope (SYMBOL_TYPE (sym));
14f9c5c9 5133
96d887e8 5134 /* If the rename has been defined in a package, then it is visible. */
49d83361
TT
5135 if (is_package_name (scope.c_str ()))
5136 return 0;
14f9c5c9 5137
96d887e8
PH
5138 /* Check that the rename is in the current function scope by checking
5139 that its name starts with SCOPE. */
76a01679 5140
96d887e8
PH
5141 /* If the function name starts with "_ada_", it means that it is
5142 a library-level function. Strip this prefix before doing the
5143 comparison, as the encoding for the renaming does not contain
5144 this prefix. */
61012eef 5145 if (startswith (function_name, "_ada_"))
96d887e8 5146 function_name += 5;
f26caa11 5147
49d83361 5148 return !startswith (function_name, scope.c_str ());
f26caa11
PH
5149}
5150
aeb5907d
JB
5151/* Remove entries from SYMS that corresponds to a renaming entity that
5152 is not visible from the function associated with CURRENT_BLOCK or
5153 that is superfluous due to the presence of more specific renaming
5154 information. Places surviving symbols in the initial entries of
5155 SYMS and returns the number of surviving symbols.
96d887e8
PH
5156
5157 Rationale:
aeb5907d
JB
5158 First, in cases where an object renaming is implemented as a
5159 reference variable, GNAT may produce both the actual reference
5160 variable and the renaming encoding. In this case, we discard the
5161 latter.
5162
5163 Second, GNAT emits a type following a specified encoding for each renaming
96d887e8
PH
5164 entity. Unfortunately, STABS currently does not support the definition
5165 of types that are local to a given lexical block, so all renamings types
5166 are emitted at library level. As a consequence, if an application
5167 contains two renaming entities using the same name, and a user tries to
5168 print the value of one of these entities, the result of the ada symbol
5169 lookup will also contain the wrong renaming type.
f26caa11 5170
96d887e8
PH
5171 This function partially covers for this limitation by attempting to
5172 remove from the SYMS list renaming symbols that should be visible
5173 from CURRENT_BLOCK. However, there does not seem be a 100% reliable
5174 method with the current information available. The implementation
5175 below has a couple of limitations (FIXME: brobecker-2003-05-12):
5176
5177 - When the user tries to print a rename in a function while there
5178 is another rename entity defined in a package: Normally, the
5179 rename in the function has precedence over the rename in the
5180 package, so the latter should be removed from the list. This is
5181 currently not the case.
5182
5183 - This function will incorrectly remove valid renames if
5184 the CURRENT_BLOCK corresponds to a function which symbol name
5185 has been changed by an "Export" pragma. As a consequence,
5186 the user will be unable to print such rename entities. */
4c4b4cd2 5187
14f9c5c9 5188static int
54d343a2
TT
5189remove_irrelevant_renamings (std::vector<struct block_symbol> *syms,
5190 const struct block *current_block)
4c4b4cd2
PH
5191{
5192 struct symbol *current_function;
0d5cff50 5193 const char *current_function_name;
4c4b4cd2 5194 int i;
aeb5907d
JB
5195 int is_new_style_renaming;
5196
5197 /* If there is both a renaming foo___XR... encoded as a variable and
5198 a simple variable foo in the same block, discard the latter.
0963b4bd 5199 First, zero out such symbols, then compress. */
aeb5907d 5200 is_new_style_renaming = 0;
54d343a2 5201 for (i = 0; i < syms->size (); i += 1)
aeb5907d 5202 {
54d343a2
TT
5203 struct symbol *sym = (*syms)[i].symbol;
5204 const struct block *block = (*syms)[i].block;
aeb5907d
JB
5205 const char *name;
5206 const char *suffix;
5207
5208 if (sym == NULL || SYMBOL_CLASS (sym) == LOC_TYPEDEF)
5209 continue;
987012b8 5210 name = sym->linkage_name ();
aeb5907d
JB
5211 suffix = strstr (name, "___XR");
5212
5213 if (suffix != NULL)
5214 {
5215 int name_len = suffix - name;
5216 int j;
5b4ee69b 5217
aeb5907d 5218 is_new_style_renaming = 1;
54d343a2
TT
5219 for (j = 0; j < syms->size (); j += 1)
5220 if (i != j && (*syms)[j].symbol != NULL
987012b8 5221 && strncmp (name, (*syms)[j].symbol->linkage_name (),
aeb5907d 5222 name_len) == 0
54d343a2
TT
5223 && block == (*syms)[j].block)
5224 (*syms)[j].symbol = NULL;
aeb5907d
JB
5225 }
5226 }
5227 if (is_new_style_renaming)
5228 {
5229 int j, k;
5230
54d343a2
TT
5231 for (j = k = 0; j < syms->size (); j += 1)
5232 if ((*syms)[j].symbol != NULL)
aeb5907d 5233 {
54d343a2 5234 (*syms)[k] = (*syms)[j];
aeb5907d
JB
5235 k += 1;
5236 }
5237 return k;
5238 }
4c4b4cd2
PH
5239
5240 /* Extract the function name associated to CURRENT_BLOCK.
5241 Abort if unable to do so. */
76a01679 5242
4c4b4cd2 5243 if (current_block == NULL)
54d343a2 5244 return syms->size ();
76a01679 5245
7f0df278 5246 current_function = block_linkage_function (current_block);
4c4b4cd2 5247 if (current_function == NULL)
54d343a2 5248 return syms->size ();
4c4b4cd2 5249
987012b8 5250 current_function_name = current_function->linkage_name ();
4c4b4cd2 5251 if (current_function_name == NULL)
54d343a2 5252 return syms->size ();
4c4b4cd2
PH
5253
5254 /* Check each of the symbols, and remove it from the list if it is
5255 a type corresponding to a renaming that is out of the scope of
5256 the current block. */
5257
5258 i = 0;
54d343a2 5259 while (i < syms->size ())
4c4b4cd2 5260 {
54d343a2 5261 if (ada_parse_renaming ((*syms)[i].symbol, NULL, NULL, NULL)
aeb5907d 5262 == ADA_OBJECT_RENAMING
54d343a2
TT
5263 && old_renaming_is_invisible ((*syms)[i].symbol,
5264 current_function_name))
5265 syms->erase (syms->begin () + i);
4c4b4cd2
PH
5266 else
5267 i += 1;
5268 }
5269
54d343a2 5270 return syms->size ();
4c4b4cd2
PH
5271}
5272
339c13b6
JB
5273/* Add to OBSTACKP all symbols from BLOCK (and its super-blocks)
5274 whose name and domain match NAME and DOMAIN respectively.
5275 If no match was found, then extend the search to "enclosing"
5276 routines (in other words, if we're inside a nested function,
5277 search the symbols defined inside the enclosing functions).
d0a8ab18
JB
5278 If WILD_MATCH_P is nonzero, perform the naming matching in
5279 "wild" mode (see function "wild_match" for more info).
339c13b6
JB
5280
5281 Note: This function assumes that OBSTACKP has 0 (zero) element in it. */
5282
5283static void
b5ec771e
PA
5284ada_add_local_symbols (struct obstack *obstackp,
5285 const lookup_name_info &lookup_name,
5286 const struct block *block, domain_enum domain)
339c13b6
JB
5287{
5288 int block_depth = 0;
5289
5290 while (block != NULL)
5291 {
5292 block_depth += 1;
b5ec771e 5293 ada_add_block_symbols (obstackp, block, lookup_name, domain, NULL);
339c13b6
JB
5294
5295 /* If we found a non-function match, assume that's the one. */
5296 if (is_nonfunction (defns_collected (obstackp, 0),
5297 num_defns_collected (obstackp)))
5298 return;
5299
5300 block = BLOCK_SUPERBLOCK (block);
5301 }
5302
5303 /* If no luck so far, try to find NAME as a local symbol in some lexically
5304 enclosing subprogram. */
5305 if (num_defns_collected (obstackp) == 0 && block_depth > 2)
b5ec771e 5306 add_symbols_from_enclosing_procs (obstackp, lookup_name, domain);
339c13b6
JB
5307}
5308
ccefe4c4 5309/* An object of this type is used as the user_data argument when
40658b94 5310 calling the map_matching_symbols method. */
ccefe4c4 5311
40658b94 5312struct match_data
ccefe4c4 5313{
40658b94 5314 struct objfile *objfile;
ccefe4c4 5315 struct obstack *obstackp;
40658b94
PH
5316 struct symbol *arg_sym;
5317 int found_sym;
ccefe4c4
TT
5318};
5319
199b4314
TT
5320/* A callback for add_nonlocal_symbols that adds symbol, found in BSYM,
5321 to a list of symbols. DATA is a pointer to a struct match_data *
40658b94
PH
5322 containing the obstack that collects the symbol list, the file that SYM
5323 must come from, a flag indicating whether a non-argument symbol has
5324 been found in the current block, and the last argument symbol
5325 passed in SYM within the current block (if any). When SYM is null,
5326 marking the end of a block, the argument symbol is added if no
5327 other has been found. */
ccefe4c4 5328
199b4314
TT
5329static bool
5330aux_add_nonlocal_symbols (struct block_symbol *bsym,
5331 struct match_data *data)
ccefe4c4 5332{
199b4314
TT
5333 const struct block *block = bsym->block;
5334 struct symbol *sym = bsym->symbol;
5335
40658b94
PH
5336 if (sym == NULL)
5337 {
5338 if (!data->found_sym && data->arg_sym != NULL)
5339 add_defn_to_vec (data->obstackp,
5340 fixup_symbol_section (data->arg_sym, data->objfile),
5341 block);
5342 data->found_sym = 0;
5343 data->arg_sym = NULL;
5344 }
5345 else
5346 {
5347 if (SYMBOL_CLASS (sym) == LOC_UNRESOLVED)
199b4314 5348 return true;
40658b94
PH
5349 else if (SYMBOL_IS_ARGUMENT (sym))
5350 data->arg_sym = sym;
5351 else
5352 {
5353 data->found_sym = 1;
5354 add_defn_to_vec (data->obstackp,
5355 fixup_symbol_section (sym, data->objfile),
5356 block);
5357 }
5358 }
199b4314 5359 return true;
40658b94
PH
5360}
5361
b5ec771e
PA
5362/* Helper for add_nonlocal_symbols. Find symbols in DOMAIN which are
5363 targeted by renamings matching LOOKUP_NAME in BLOCK. Add these
5364 symbols to OBSTACKP. Return whether we found such symbols. */
22cee43f
PMR
5365
5366static int
5367ada_add_block_renamings (struct obstack *obstackp,
5368 const struct block *block,
b5ec771e
PA
5369 const lookup_name_info &lookup_name,
5370 domain_enum domain)
22cee43f
PMR
5371{
5372 struct using_direct *renaming;
5373 int defns_mark = num_defns_collected (obstackp);
5374
b5ec771e
PA
5375 symbol_name_matcher_ftype *name_match
5376 = ada_get_symbol_name_matcher (lookup_name);
5377
22cee43f
PMR
5378 for (renaming = block_using (block);
5379 renaming != NULL;
5380 renaming = renaming->next)
5381 {
5382 const char *r_name;
22cee43f
PMR
5383
5384 /* Avoid infinite recursions: skip this renaming if we are actually
5385 already traversing it.
5386
5387 Currently, symbol lookup in Ada don't use the namespace machinery from
5388 C++/Fortran support: skip namespace imports that use them. */
5389 if (renaming->searched
5390 || (renaming->import_src != NULL
5391 && renaming->import_src[0] != '\0')
5392 || (renaming->import_dest != NULL
5393 && renaming->import_dest[0] != '\0'))
5394 continue;
5395 renaming->searched = 1;
5396
5397 /* TODO: here, we perform another name-based symbol lookup, which can
5398 pull its own multiple overloads. In theory, we should be able to do
5399 better in this case since, in DWARF, DW_AT_import is a DIE reference,
5400 not a simple name. But in order to do this, we would need to enhance
5401 the DWARF reader to associate a symbol to this renaming, instead of a
5402 name. So, for now, we do something simpler: re-use the C++/Fortran
5403 namespace machinery. */
5404 r_name = (renaming->alias != NULL
5405 ? renaming->alias
5406 : renaming->declaration);
b5ec771e
PA
5407 if (name_match (r_name, lookup_name, NULL))
5408 {
5409 lookup_name_info decl_lookup_name (renaming->declaration,
5410 lookup_name.match_type ());
5411 ada_add_all_symbols (obstackp, block, decl_lookup_name, domain,
5412 1, NULL);
5413 }
22cee43f
PMR
5414 renaming->searched = 0;
5415 }
5416 return num_defns_collected (obstackp) != defns_mark;
5417}
5418
db230ce3
JB
5419/* Implements compare_names, but only applying the comparision using
5420 the given CASING. */
5b4ee69b 5421
40658b94 5422static int
db230ce3
JB
5423compare_names_with_case (const char *string1, const char *string2,
5424 enum case_sensitivity casing)
40658b94
PH
5425{
5426 while (*string1 != '\0' && *string2 != '\0')
5427 {
db230ce3
JB
5428 char c1, c2;
5429
40658b94
PH
5430 if (isspace (*string1) || isspace (*string2))
5431 return strcmp_iw_ordered (string1, string2);
db230ce3
JB
5432
5433 if (casing == case_sensitive_off)
5434 {
5435 c1 = tolower (*string1);
5436 c2 = tolower (*string2);
5437 }
5438 else
5439 {
5440 c1 = *string1;
5441 c2 = *string2;
5442 }
5443 if (c1 != c2)
40658b94 5444 break;
db230ce3 5445
40658b94
PH
5446 string1 += 1;
5447 string2 += 1;
5448 }
db230ce3 5449
40658b94
PH
5450 switch (*string1)
5451 {
5452 case '(':
5453 return strcmp_iw_ordered (string1, string2);
5454 case '_':
5455 if (*string2 == '\0')
5456 {
052874e8 5457 if (is_name_suffix (string1))
40658b94
PH
5458 return 0;
5459 else
1a1d5513 5460 return 1;
40658b94 5461 }
dbb8534f 5462 /* FALLTHROUGH */
40658b94
PH
5463 default:
5464 if (*string2 == '(')
5465 return strcmp_iw_ordered (string1, string2);
5466 else
db230ce3
JB
5467 {
5468 if (casing == case_sensitive_off)
5469 return tolower (*string1) - tolower (*string2);
5470 else
5471 return *string1 - *string2;
5472 }
40658b94 5473 }
ccefe4c4
TT
5474}
5475
db230ce3
JB
5476/* Compare STRING1 to STRING2, with results as for strcmp.
5477 Compatible with strcmp_iw_ordered in that...
5478
5479 strcmp_iw_ordered (STRING1, STRING2) <= 0
5480
5481 ... implies...
5482
5483 compare_names (STRING1, STRING2) <= 0
5484
5485 (they may differ as to what symbols compare equal). */
5486
5487static int
5488compare_names (const char *string1, const char *string2)
5489{
5490 int result;
5491
5492 /* Similar to what strcmp_iw_ordered does, we need to perform
5493 a case-insensitive comparison first, and only resort to
5494 a second, case-sensitive, comparison if the first one was
5495 not sufficient to differentiate the two strings. */
5496
5497 result = compare_names_with_case (string1, string2, case_sensitive_off);
5498 if (result == 0)
5499 result = compare_names_with_case (string1, string2, case_sensitive_on);
5500
5501 return result;
5502}
5503
b5ec771e
PA
5504/* Convenience function to get at the Ada encoded lookup name for
5505 LOOKUP_NAME, as a C string. */
5506
5507static const char *
5508ada_lookup_name (const lookup_name_info &lookup_name)
5509{
5510 return lookup_name.ada ().lookup_name ().c_str ();
5511}
5512
339c13b6 5513/* Add to OBSTACKP all non-local symbols whose name and domain match
b5ec771e
PA
5514 LOOKUP_NAME and DOMAIN respectively. The search is performed on
5515 GLOBAL_BLOCK symbols if GLOBAL is non-zero, or on STATIC_BLOCK
5516 symbols otherwise. */
339c13b6
JB
5517
5518static void
b5ec771e
PA
5519add_nonlocal_symbols (struct obstack *obstackp,
5520 const lookup_name_info &lookup_name,
5521 domain_enum domain, int global)
339c13b6 5522{
40658b94 5523 struct match_data data;
339c13b6 5524
6475f2fe 5525 memset (&data, 0, sizeof data);
ccefe4c4 5526 data.obstackp = obstackp;
339c13b6 5527
b5ec771e
PA
5528 bool is_wild_match = lookup_name.ada ().wild_match_p ();
5529
199b4314
TT
5530 auto callback = [&] (struct block_symbol *bsym)
5531 {
5532 return aux_add_nonlocal_symbols (bsym, &data);
5533 };
5534
2030c079 5535 for (objfile *objfile : current_program_space->objfiles ())
40658b94
PH
5536 {
5537 data.objfile = objfile;
5538
b054970d
TT
5539 objfile->sf->qf->map_matching_symbols (objfile, lookup_name,
5540 domain, global, callback,
5541 (is_wild_match
5542 ? NULL : compare_names));
22cee43f 5543
b669c953 5544 for (compunit_symtab *cu : objfile->compunits ())
22cee43f
PMR
5545 {
5546 const struct block *global_block
5547 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cu), GLOBAL_BLOCK);
5548
b5ec771e
PA
5549 if (ada_add_block_renamings (obstackp, global_block, lookup_name,
5550 domain))
22cee43f
PMR
5551 data.found_sym = 1;
5552 }
40658b94
PH
5553 }
5554
5555 if (num_defns_collected (obstackp) == 0 && global && !is_wild_match)
5556 {
b5ec771e 5557 const char *name = ada_lookup_name (lookup_name);
e0802d59
TT
5558 std::string bracket_name = std::string ("<_ada_") + name + '>';
5559 lookup_name_info name1 (bracket_name, symbol_name_match_type::FULL);
b5ec771e 5560
2030c079 5561 for (objfile *objfile : current_program_space->objfiles ())
40658b94 5562 {
40658b94 5563 data.objfile = objfile;
b054970d 5564 objfile->sf->qf->map_matching_symbols (objfile, name1,
199b4314 5565 domain, global, callback,
b5ec771e 5566 compare_names);
40658b94
PH
5567 }
5568 }
339c13b6
JB
5569}
5570
b5ec771e
PA
5571/* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if
5572 FULL_SEARCH is non-zero, enclosing scope and in global scopes,
5573 returning the number of matches. Add these to OBSTACKP.
4eeaa230 5574
22cee43f
PMR
5575 When FULL_SEARCH is non-zero, any non-function/non-enumeral
5576 symbol match within the nest of blocks whose innermost member is BLOCK,
4c4b4cd2 5577 is the one match returned (no other matches in that or
d9680e73 5578 enclosing blocks is returned). If there are any matches in or
22cee43f 5579 surrounding BLOCK, then these alone are returned.
4eeaa230 5580
b5ec771e
PA
5581 Names prefixed with "standard__" are handled specially:
5582 "standard__" is first stripped off (by the lookup_name
5583 constructor), and only static and global symbols are searched.
14f9c5c9 5584
22cee43f
PMR
5585 If MADE_GLOBAL_LOOKUP_P is non-null, set it before return to whether we had
5586 to lookup global symbols. */
5587
5588static void
5589ada_add_all_symbols (struct obstack *obstackp,
5590 const struct block *block,
b5ec771e 5591 const lookup_name_info &lookup_name,
22cee43f
PMR
5592 domain_enum domain,
5593 int full_search,
5594 int *made_global_lookup_p)
14f9c5c9
AS
5595{
5596 struct symbol *sym;
14f9c5c9 5597
22cee43f
PMR
5598 if (made_global_lookup_p)
5599 *made_global_lookup_p = 0;
339c13b6
JB
5600
5601 /* Special case: If the user specifies a symbol name inside package
5602 Standard, do a non-wild matching of the symbol name without
5603 the "standard__" prefix. This was primarily introduced in order
5604 to allow the user to specifically access the standard exceptions
5605 using, for instance, Standard.Constraint_Error when Constraint_Error
5606 is ambiguous (due to the user defining its own Constraint_Error
5607 entity inside its program). */
b5ec771e
PA
5608 if (lookup_name.ada ().standard_p ())
5609 block = NULL;
4c4b4cd2 5610
339c13b6 5611 /* Check the non-global symbols. If we have ANY match, then we're done. */
14f9c5c9 5612
4eeaa230
DE
5613 if (block != NULL)
5614 {
5615 if (full_search)
b5ec771e 5616 ada_add_local_symbols (obstackp, lookup_name, block, domain);
4eeaa230
DE
5617 else
5618 {
5619 /* In the !full_search case we're are being called by
4009ee92 5620 iterate_over_symbols, and we don't want to search
4eeaa230 5621 superblocks. */
b5ec771e 5622 ada_add_block_symbols (obstackp, block, lookup_name, domain, NULL);
4eeaa230 5623 }
22cee43f
PMR
5624 if (num_defns_collected (obstackp) > 0 || !full_search)
5625 return;
4eeaa230 5626 }
d2e4a39e 5627
339c13b6
JB
5628 /* No non-global symbols found. Check our cache to see if we have
5629 already performed this search before. If we have, then return
5630 the same result. */
5631
b5ec771e
PA
5632 if (lookup_cached_symbol (ada_lookup_name (lookup_name),
5633 domain, &sym, &block))
4c4b4cd2
PH
5634 {
5635 if (sym != NULL)
b5ec771e 5636 add_defn_to_vec (obstackp, sym, block);
22cee43f 5637 return;
4c4b4cd2 5638 }
14f9c5c9 5639
22cee43f
PMR
5640 if (made_global_lookup_p)
5641 *made_global_lookup_p = 1;
b1eedac9 5642
339c13b6
JB
5643 /* Search symbols from all global blocks. */
5644
b5ec771e 5645 add_nonlocal_symbols (obstackp, lookup_name, domain, 1);
d2e4a39e 5646
4c4b4cd2 5647 /* Now add symbols from all per-file blocks if we've gotten no hits
339c13b6 5648 (not strictly correct, but perhaps better than an error). */
d2e4a39e 5649
22cee43f 5650 if (num_defns_collected (obstackp) == 0)
b5ec771e 5651 add_nonlocal_symbols (obstackp, lookup_name, domain, 0);
22cee43f
PMR
5652}
5653
b5ec771e
PA
5654/* Find symbols in DOMAIN matching LOOKUP_NAME, in BLOCK and, if FULL_SEARCH
5655 is non-zero, enclosing scope and in global scopes, returning the number of
22cee43f 5656 matches.
54d343a2
TT
5657 Fills *RESULTS with (SYM,BLOCK) tuples, indicating the symbols
5658 found and the blocks and symbol tables (if any) in which they were
5659 found.
22cee43f
PMR
5660
5661 When full_search is non-zero, any non-function/non-enumeral
5662 symbol match within the nest of blocks whose innermost member is BLOCK,
5663 is the one match returned (no other matches in that or
5664 enclosing blocks is returned). If there are any matches in or
5665 surrounding BLOCK, then these alone are returned.
5666
5667 Names prefixed with "standard__" are handled specially: "standard__"
5668 is first stripped off, and only static and global symbols are searched. */
5669
5670static int
b5ec771e
PA
5671ada_lookup_symbol_list_worker (const lookup_name_info &lookup_name,
5672 const struct block *block,
22cee43f 5673 domain_enum domain,
54d343a2 5674 std::vector<struct block_symbol> *results,
22cee43f
PMR
5675 int full_search)
5676{
22cee43f
PMR
5677 int syms_from_global_search;
5678 int ndefns;
ec6a20c2 5679 auto_obstack obstack;
22cee43f 5680
ec6a20c2 5681 ada_add_all_symbols (&obstack, block, lookup_name,
b5ec771e 5682 domain, full_search, &syms_from_global_search);
14f9c5c9 5683
ec6a20c2
JB
5684 ndefns = num_defns_collected (&obstack);
5685
54d343a2
TT
5686 struct block_symbol *base = defns_collected (&obstack, 1);
5687 for (int i = 0; i < ndefns; ++i)
5688 results->push_back (base[i]);
4c4b4cd2 5689
54d343a2 5690 ndefns = remove_extra_symbols (results);
4c4b4cd2 5691
b1eedac9 5692 if (ndefns == 0 && full_search && syms_from_global_search)
b5ec771e 5693 cache_symbol (ada_lookup_name (lookup_name), domain, NULL, NULL);
14f9c5c9 5694
b1eedac9 5695 if (ndefns == 1 && full_search && syms_from_global_search)
b5ec771e
PA
5696 cache_symbol (ada_lookup_name (lookup_name), domain,
5697 (*results)[0].symbol, (*results)[0].block);
14f9c5c9 5698
54d343a2 5699 ndefns = remove_irrelevant_renamings (results, block);
ec6a20c2 5700
14f9c5c9
AS
5701 return ndefns;
5702}
5703
b5ec771e 5704/* Find symbols in DOMAIN matching NAME, in BLOCK and enclosing scope and
54d343a2
TT
5705 in global scopes, returning the number of matches, and filling *RESULTS
5706 with (SYM,BLOCK) tuples.
ec6a20c2 5707
4eeaa230
DE
5708 See ada_lookup_symbol_list_worker for further details. */
5709
5710int
b5ec771e 5711ada_lookup_symbol_list (const char *name, const struct block *block,
54d343a2
TT
5712 domain_enum domain,
5713 std::vector<struct block_symbol> *results)
4eeaa230 5714{
b5ec771e
PA
5715 symbol_name_match_type name_match_type = name_match_type_from_name (name);
5716 lookup_name_info lookup_name (name, name_match_type);
5717
5718 return ada_lookup_symbol_list_worker (lookup_name, block, domain, results, 1);
4eeaa230
DE
5719}
5720
4e5c77fe
JB
5721/* The result is as for ada_lookup_symbol_list with FULL_SEARCH set
5722 to 1, but choosing the first symbol found if there are multiple
5723 choices.
5724
5e2336be
JB
5725 The result is stored in *INFO, which must be non-NULL.
5726 If no match is found, INFO->SYM is set to NULL. */
4e5c77fe
JB
5727
5728void
5729ada_lookup_encoded_symbol (const char *name, const struct block *block,
fe978cb0 5730 domain_enum domain,
d12307c1 5731 struct block_symbol *info)
14f9c5c9 5732{
b5ec771e
PA
5733 /* Since we already have an encoded name, wrap it in '<>' to force a
5734 verbatim match. Otherwise, if the name happens to not look like
5735 an encoded name (because it doesn't include a "__"),
5736 ada_lookup_name_info would re-encode/fold it again, and that
5737 would e.g., incorrectly lowercase object renaming names like
5738 "R28b" -> "r28b". */
5739 std::string verbatim = std::string ("<") + name + '>';
5740
5e2336be 5741 gdb_assert (info != NULL);
65392b3e 5742 *info = ada_lookup_symbol (verbatim.c_str (), block, domain);
4e5c77fe 5743}
aeb5907d
JB
5744
5745/* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing
5746 scope and in global scopes, or NULL if none. NAME is folded and
5747 encoded first. Otherwise, the result is as for ada_lookup_symbol_list,
65392b3e 5748 choosing the first symbol if there are multiple choices. */
4e5c77fe 5749
d12307c1 5750struct block_symbol
aeb5907d 5751ada_lookup_symbol (const char *name, const struct block *block0,
65392b3e 5752 domain_enum domain)
aeb5907d 5753{
54d343a2 5754 std::vector<struct block_symbol> candidates;
f98fc17b 5755 int n_candidates;
f98fc17b
PA
5756
5757 n_candidates = ada_lookup_symbol_list (name, block0, domain, &candidates);
f98fc17b
PA
5758
5759 if (n_candidates == 0)
54d343a2 5760 return {};
f98fc17b
PA
5761
5762 block_symbol info = candidates[0];
5763 info.symbol = fixup_symbol_section (info.symbol, NULL);
d12307c1 5764 return info;
4c4b4cd2 5765}
14f9c5c9 5766
14f9c5c9 5767
4c4b4cd2
PH
5768/* True iff STR is a possible encoded suffix of a normal Ada name
5769 that is to be ignored for matching purposes. Suffixes of parallel
5770 names (e.g., XVE) are not included here. Currently, the possible suffixes
5823c3ef 5771 are given by any of the regular expressions:
4c4b4cd2 5772
babe1480
JB
5773 [.$][0-9]+ [nested subprogram suffix, on platforms such as GNU/Linux]
5774 ___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX]
9ac7f98e 5775 TKB [subprogram suffix for task bodies]
babe1480 5776 _E[0-9]+[bs]$ [protected object entry suffixes]
61ee279c 5777 (X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$
babe1480
JB
5778
5779 Also, any leading "__[0-9]+" sequence is skipped before the suffix
5780 match is performed. This sequence is used to differentiate homonyms,
5781 is an optional part of a valid name suffix. */
4c4b4cd2 5782
14f9c5c9 5783static int
d2e4a39e 5784is_name_suffix (const char *str)
14f9c5c9
AS
5785{
5786 int k;
4c4b4cd2
PH
5787 const char *matching;
5788 const int len = strlen (str);
5789
babe1480
JB
5790 /* Skip optional leading __[0-9]+. */
5791
4c4b4cd2
PH
5792 if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2]))
5793 {
babe1480
JB
5794 str += 3;
5795 while (isdigit (str[0]))
5796 str += 1;
4c4b4cd2 5797 }
babe1480
JB
5798
5799 /* [.$][0-9]+ */
4c4b4cd2 5800
babe1480 5801 if (str[0] == '.' || str[0] == '$')
4c4b4cd2 5802 {
babe1480 5803 matching = str + 1;
4c4b4cd2
PH
5804 while (isdigit (matching[0]))
5805 matching += 1;
5806 if (matching[0] == '\0')
5807 return 1;
5808 }
5809
5810 /* ___[0-9]+ */
babe1480 5811
4c4b4cd2
PH
5812 if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_')
5813 {
5814 matching = str + 3;
5815 while (isdigit (matching[0]))
5816 matching += 1;
5817 if (matching[0] == '\0')
5818 return 1;
5819 }
5820
9ac7f98e
JB
5821 /* "TKB" suffixes are used for subprograms implementing task bodies. */
5822
5823 if (strcmp (str, "TKB") == 0)
5824 return 1;
5825
529cad9c
PH
5826#if 0
5827 /* FIXME: brobecker/2005-09-23: Protected Object subprograms end
0963b4bd
MS
5828 with a N at the end. Unfortunately, the compiler uses the same
5829 convention for other internal types it creates. So treating
529cad9c 5830 all entity names that end with an "N" as a name suffix causes
0963b4bd
MS
5831 some regressions. For instance, consider the case of an enumerated
5832 type. To support the 'Image attribute, it creates an array whose
529cad9c
PH
5833 name ends with N.
5834 Having a single character like this as a suffix carrying some
0963b4bd 5835 information is a bit risky. Perhaps we should change the encoding
529cad9c
PH
5836 to be something like "_N" instead. In the meantime, do not do
5837 the following check. */
5838 /* Protected Object Subprograms */
5839 if (len == 1 && str [0] == 'N')
5840 return 1;
5841#endif
5842
5843 /* _E[0-9]+[bs]$ */
5844 if (len > 3 && str[0] == '_' && str [1] == 'E' && isdigit (str[2]))
5845 {
5846 matching = str + 3;
5847 while (isdigit (matching[0]))
5848 matching += 1;
5849 if ((matching[0] == 'b' || matching[0] == 's')
5850 && matching [1] == '\0')
5851 return 1;
5852 }
5853
4c4b4cd2
PH
5854 /* ??? We should not modify STR directly, as we are doing below. This
5855 is fine in this case, but may become problematic later if we find
5856 that this alternative did not work, and want to try matching
5857 another one from the begining of STR. Since we modified it, we
5858 won't be able to find the begining of the string anymore! */
14f9c5c9
AS
5859 if (str[0] == 'X')
5860 {
5861 str += 1;
d2e4a39e 5862 while (str[0] != '_' && str[0] != '\0')
4c4b4cd2
PH
5863 {
5864 if (str[0] != 'n' && str[0] != 'b')
5865 return 0;
5866 str += 1;
5867 }
14f9c5c9 5868 }
babe1480 5869
14f9c5c9
AS
5870 if (str[0] == '\000')
5871 return 1;
babe1480 5872
d2e4a39e 5873 if (str[0] == '_')
14f9c5c9
AS
5874 {
5875 if (str[1] != '_' || str[2] == '\000')
4c4b4cd2 5876 return 0;
d2e4a39e 5877 if (str[2] == '_')
4c4b4cd2 5878 {
61ee279c
PH
5879 if (strcmp (str + 3, "JM") == 0)
5880 return 1;
5881 /* FIXME: brobecker/2004-09-30: GNAT will soon stop using
5882 the LJM suffix in favor of the JM one. But we will
5883 still accept LJM as a valid suffix for a reasonable
5884 amount of time, just to allow ourselves to debug programs
5885 compiled using an older version of GNAT. */
4c4b4cd2
PH
5886 if (strcmp (str + 3, "LJM") == 0)
5887 return 1;
5888 if (str[3] != 'X')
5889 return 0;
1265e4aa
JB
5890 if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B'
5891 || str[4] == 'U' || str[4] == 'P')
4c4b4cd2
PH
5892 return 1;
5893 if (str[4] == 'R' && str[5] != 'T')
5894 return 1;
5895 return 0;
5896 }
5897 if (!isdigit (str[2]))
5898 return 0;
5899 for (k = 3; str[k] != '\0'; k += 1)
5900 if (!isdigit (str[k]) && str[k] != '_')
5901 return 0;
14f9c5c9
AS
5902 return 1;
5903 }
4c4b4cd2 5904 if (str[0] == '$' && isdigit (str[1]))
14f9c5c9 5905 {
4c4b4cd2
PH
5906 for (k = 2; str[k] != '\0'; k += 1)
5907 if (!isdigit (str[k]) && str[k] != '_')
5908 return 0;
14f9c5c9
AS
5909 return 1;
5910 }
5911 return 0;
5912}
d2e4a39e 5913
aeb5907d
JB
5914/* Return non-zero if the string starting at NAME and ending before
5915 NAME_END contains no capital letters. */
529cad9c
PH
5916
5917static int
5918is_valid_name_for_wild_match (const char *name0)
5919{
f945dedf 5920 std::string decoded_name = ada_decode (name0);
529cad9c
PH
5921 int i;
5922
5823c3ef
JB
5923 /* If the decoded name starts with an angle bracket, it means that
5924 NAME0 does not follow the GNAT encoding format. It should then
5925 not be allowed as a possible wild match. */
5926 if (decoded_name[0] == '<')
5927 return 0;
5928
529cad9c
PH
5929 for (i=0; decoded_name[i] != '\0'; i++)
5930 if (isalpha (decoded_name[i]) && !islower (decoded_name[i]))
5931 return 0;
5932
5933 return 1;
5934}
5935
73589123
PH
5936/* Advance *NAMEP to next occurrence of TARGET0 in the string NAME0
5937 that could start a simple name. Assumes that *NAMEP points into
5938 the string beginning at NAME0. */
4c4b4cd2 5939
14f9c5c9 5940static int
73589123 5941advance_wild_match (const char **namep, const char *name0, int target0)
14f9c5c9 5942{
73589123 5943 const char *name = *namep;
5b4ee69b 5944
5823c3ef 5945 while (1)
14f9c5c9 5946 {
aa27d0b3 5947 int t0, t1;
73589123
PH
5948
5949 t0 = *name;
5950 if (t0 == '_')
5951 {
5952 t1 = name[1];
5953 if ((t1 >= 'a' && t1 <= 'z') || (t1 >= '0' && t1 <= '9'))
5954 {
5955 name += 1;
61012eef 5956 if (name == name0 + 5 && startswith (name0, "_ada"))
73589123
PH
5957 break;
5958 else
5959 name += 1;
5960 }
aa27d0b3
JB
5961 else if (t1 == '_' && ((name[2] >= 'a' && name[2] <= 'z')
5962 || name[2] == target0))
73589123
PH
5963 {
5964 name += 2;
5965 break;
5966 }
5967 else
5968 return 0;
5969 }
5970 else if ((t0 >= 'a' && t0 <= 'z') || (t0 >= '0' && t0 <= '9'))
5971 name += 1;
5972 else
5823c3ef 5973 return 0;
73589123
PH
5974 }
5975
5976 *namep = name;
5977 return 1;
5978}
5979
b5ec771e
PA
5980/* Return true iff NAME encodes a name of the form prefix.PATN.
5981 Ignores any informational suffixes of NAME (i.e., for which
5982 is_name_suffix is true). Assumes that PATN is a lower-cased Ada
5983 simple name. */
73589123 5984
b5ec771e 5985static bool
73589123
PH
5986wild_match (const char *name, const char *patn)
5987{
22e048c9 5988 const char *p;
73589123
PH
5989 const char *name0 = name;
5990
5991 while (1)
5992 {
5993 const char *match = name;
5994
5995 if (*name == *patn)
5996 {
5997 for (name += 1, p = patn + 1; *p != '\0'; name += 1, p += 1)
5998 if (*p != *name)
5999 break;
6000 if (*p == '\0' && is_name_suffix (name))
b5ec771e 6001 return match == name0 || is_valid_name_for_wild_match (name0);
73589123
PH
6002
6003 if (name[-1] == '_')
6004 name -= 1;
6005 }
6006 if (!advance_wild_match (&name, name0, *patn))
b5ec771e 6007 return false;
96d887e8 6008 }
96d887e8
PH
6009}
6010
b5ec771e
PA
6011/* Returns true iff symbol name SYM_NAME matches SEARCH_NAME, ignoring
6012 any trailing suffixes that encode debugging information or leading
6013 _ada_ on SYM_NAME (see is_name_suffix commentary for the debugging
6014 information that is ignored). */
40658b94 6015
b5ec771e 6016static bool
c4d840bd
PH
6017full_match (const char *sym_name, const char *search_name)
6018{
b5ec771e
PA
6019 size_t search_name_len = strlen (search_name);
6020
6021 if (strncmp (sym_name, search_name, search_name_len) == 0
6022 && is_name_suffix (sym_name + search_name_len))
6023 return true;
6024
6025 if (startswith (sym_name, "_ada_")
6026 && strncmp (sym_name + 5, search_name, search_name_len) == 0
6027 && is_name_suffix (sym_name + search_name_len + 5))
6028 return true;
c4d840bd 6029
b5ec771e
PA
6030 return false;
6031}
c4d840bd 6032
b5ec771e
PA
6033/* Add symbols from BLOCK matching LOOKUP_NAME in DOMAIN to vector
6034 *defn_symbols, updating the list of symbols in OBSTACKP (if
6035 necessary). OBJFILE is the section containing BLOCK. */
96d887e8
PH
6036
6037static void
6038ada_add_block_symbols (struct obstack *obstackp,
b5ec771e
PA
6039 const struct block *block,
6040 const lookup_name_info &lookup_name,
6041 domain_enum domain, struct objfile *objfile)
96d887e8 6042{
8157b174 6043 struct block_iterator iter;
96d887e8
PH
6044 /* A matching argument symbol, if any. */
6045 struct symbol *arg_sym;
6046 /* Set true when we find a matching non-argument symbol. */
6047 int found_sym;
6048 struct symbol *sym;
6049
6050 arg_sym = NULL;
6051 found_sym = 0;
b5ec771e
PA
6052 for (sym = block_iter_match_first (block, lookup_name, &iter);
6053 sym != NULL;
6054 sym = block_iter_match_next (lookup_name, &iter))
96d887e8 6055 {
c1b5c1eb 6056 if (symbol_matches_domain (sym->language (), SYMBOL_DOMAIN (sym), domain))
b5ec771e
PA
6057 {
6058 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6059 {
6060 if (SYMBOL_IS_ARGUMENT (sym))
6061 arg_sym = sym;
6062 else
6063 {
6064 found_sym = 1;
6065 add_defn_to_vec (obstackp,
6066 fixup_symbol_section (sym, objfile),
6067 block);
6068 }
6069 }
6070 }
96d887e8
PH
6071 }
6072
22cee43f
PMR
6073 /* Handle renamings. */
6074
b5ec771e 6075 if (ada_add_block_renamings (obstackp, block, lookup_name, domain))
22cee43f
PMR
6076 found_sym = 1;
6077
96d887e8
PH
6078 if (!found_sym && arg_sym != NULL)
6079 {
76a01679
JB
6080 add_defn_to_vec (obstackp,
6081 fixup_symbol_section (arg_sym, objfile),
2570f2b7 6082 block);
96d887e8
PH
6083 }
6084
b5ec771e 6085 if (!lookup_name.ada ().wild_match_p ())
96d887e8
PH
6086 {
6087 arg_sym = NULL;
6088 found_sym = 0;
b5ec771e
PA
6089 const std::string &ada_lookup_name = lookup_name.ada ().lookup_name ();
6090 const char *name = ada_lookup_name.c_str ();
6091 size_t name_len = ada_lookup_name.size ();
96d887e8
PH
6092
6093 ALL_BLOCK_SYMBOLS (block, iter, sym)
76a01679 6094 {
c1b5c1eb 6095 if (symbol_matches_domain (sym->language (),
4186eb54 6096 SYMBOL_DOMAIN (sym), domain))
76a01679
JB
6097 {
6098 int cmp;
6099
987012b8 6100 cmp = (int) '_' - (int) sym->linkage_name ()[0];
76a01679
JB
6101 if (cmp == 0)
6102 {
987012b8 6103 cmp = !startswith (sym->linkage_name (), "_ada_");
76a01679 6104 if (cmp == 0)
987012b8 6105 cmp = strncmp (name, sym->linkage_name () + 5,
76a01679
JB
6106 name_len);
6107 }
6108
6109 if (cmp == 0
987012b8 6110 && is_name_suffix (sym->linkage_name () + name_len + 5))
76a01679 6111 {
2a2d4dc3
AS
6112 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
6113 {
6114 if (SYMBOL_IS_ARGUMENT (sym))
6115 arg_sym = sym;
6116 else
6117 {
6118 found_sym = 1;
6119 add_defn_to_vec (obstackp,
6120 fixup_symbol_section (sym, objfile),
6121 block);
6122 }
6123 }
76a01679
JB
6124 }
6125 }
76a01679 6126 }
96d887e8
PH
6127
6128 /* NOTE: This really shouldn't be needed for _ada_ symbols.
6129 They aren't parameters, right? */
6130 if (!found_sym && arg_sym != NULL)
6131 {
6132 add_defn_to_vec (obstackp,
76a01679 6133 fixup_symbol_section (arg_sym, objfile),
2570f2b7 6134 block);
96d887e8
PH
6135 }
6136 }
6137}
6138\f
41d27058
JB
6139
6140 /* Symbol Completion */
6141
b5ec771e 6142/* See symtab.h. */
41d27058 6143
b5ec771e
PA
6144bool
6145ada_lookup_name_info::matches
6146 (const char *sym_name,
6147 symbol_name_match_type match_type,
a207cff2 6148 completion_match_result *comp_match_res) const
41d27058 6149{
b5ec771e
PA
6150 bool match = false;
6151 const char *text = m_encoded_name.c_str ();
6152 size_t text_len = m_encoded_name.size ();
41d27058
JB
6153
6154 /* First, test against the fully qualified name of the symbol. */
6155
6156 if (strncmp (sym_name, text, text_len) == 0)
b5ec771e 6157 match = true;
41d27058 6158
f945dedf 6159 std::string decoded_name = ada_decode (sym_name);
b5ec771e 6160 if (match && !m_encoded_p)
41d27058
JB
6161 {
6162 /* One needed check before declaring a positive match is to verify
6163 that iff we are doing a verbatim match, the decoded version
6164 of the symbol name starts with '<'. Otherwise, this symbol name
6165 is not a suitable completion. */
41d27058 6166
f945dedf 6167 bool has_angle_bracket = (decoded_name[0] == '<');
b5ec771e 6168 match = (has_angle_bracket == m_verbatim_p);
41d27058
JB
6169 }
6170
b5ec771e 6171 if (match && !m_verbatim_p)
41d27058
JB
6172 {
6173 /* When doing non-verbatim match, another check that needs to
6174 be done is to verify that the potentially matching symbol name
6175 does not include capital letters, because the ada-mode would
6176 not be able to understand these symbol names without the
6177 angle bracket notation. */
6178 const char *tmp;
6179
6180 for (tmp = sym_name; *tmp != '\0' && !isupper (*tmp); tmp++);
6181 if (*tmp != '\0')
b5ec771e 6182 match = false;
41d27058
JB
6183 }
6184
6185 /* Second: Try wild matching... */
6186
b5ec771e 6187 if (!match && m_wild_match_p)
41d27058
JB
6188 {
6189 /* Since we are doing wild matching, this means that TEXT
6190 may represent an unqualified symbol name. We therefore must
6191 also compare TEXT against the unqualified name of the symbol. */
f945dedf 6192 sym_name = ada_unqualified_name (decoded_name.c_str ());
41d27058
JB
6193
6194 if (strncmp (sym_name, text, text_len) == 0)
b5ec771e 6195 match = true;
41d27058
JB
6196 }
6197
b5ec771e 6198 /* Finally: If we found a match, prepare the result to return. */
41d27058
JB
6199
6200 if (!match)
b5ec771e 6201 return false;
41d27058 6202
a207cff2 6203 if (comp_match_res != NULL)
b5ec771e 6204 {
a207cff2 6205 std::string &match_str = comp_match_res->match.storage ();
41d27058 6206
b5ec771e 6207 if (!m_encoded_p)
a207cff2 6208 match_str = ada_decode (sym_name);
b5ec771e
PA
6209 else
6210 {
6211 if (m_verbatim_p)
6212 match_str = add_angle_brackets (sym_name);
6213 else
6214 match_str = sym_name;
41d27058 6215
b5ec771e 6216 }
a207cff2
PA
6217
6218 comp_match_res->set_match (match_str.c_str ());
41d27058
JB
6219 }
6220
b5ec771e 6221 return true;
41d27058
JB
6222}
6223
963a6417 6224 /* Field Access */
96d887e8 6225
73fb9985
JB
6226/* Return non-zero if TYPE is a pointer to the GNAT dispatch table used
6227 for tagged types. */
6228
6229static int
6230ada_is_dispatch_table_ptr_type (struct type *type)
6231{
0d5cff50 6232 const char *name;
73fb9985 6233
78134374 6234 if (type->code () != TYPE_CODE_PTR)
73fb9985
JB
6235 return 0;
6236
7d93a1e0 6237 name = TYPE_TARGET_TYPE (type)->name ();
73fb9985
JB
6238 if (name == NULL)
6239 return 0;
6240
6241 return (strcmp (name, "ada__tags__dispatch_table") == 0);
6242}
6243
ac4a2da4
JG
6244/* Return non-zero if TYPE is an interface tag. */
6245
6246static int
6247ada_is_interface_tag (struct type *type)
6248{
7d93a1e0 6249 const char *name = type->name ();
ac4a2da4
JG
6250
6251 if (name == NULL)
6252 return 0;
6253
6254 return (strcmp (name, "ada__tags__interface_tag") == 0);
6255}
6256
963a6417
PH
6257/* True if field number FIELD_NUM in struct or union type TYPE is supposed
6258 to be invisible to users. */
96d887e8 6259
963a6417
PH
6260int
6261ada_is_ignored_field (struct type *type, int field_num)
96d887e8 6262{
1f704f76 6263 if (field_num < 0 || field_num > type->num_fields ())
963a6417 6264 return 1;
ffde82bf 6265
73fb9985
JB
6266 /* Check the name of that field. */
6267 {
6268 const char *name = TYPE_FIELD_NAME (type, field_num);
6269
6270 /* Anonymous field names should not be printed.
6271 brobecker/2007-02-20: I don't think this can actually happen
30baf67b 6272 but we don't want to print the value of anonymous fields anyway. */
73fb9985
JB
6273 if (name == NULL)
6274 return 1;
6275
ffde82bf
JB
6276 /* Normally, fields whose name start with an underscore ("_")
6277 are fields that have been internally generated by the compiler,
6278 and thus should not be printed. The "_parent" field is special,
6279 however: This is a field internally generated by the compiler
6280 for tagged types, and it contains the components inherited from
6281 the parent type. This field should not be printed as is, but
6282 should not be ignored either. */
61012eef 6283 if (name[0] == '_' && !startswith (name, "_parent"))
73fb9985
JB
6284 return 1;
6285 }
6286
ac4a2da4
JG
6287 /* If this is the dispatch table of a tagged type or an interface tag,
6288 then ignore. */
73fb9985 6289 if (ada_is_tagged_type (type, 1)
940da03e
SM
6290 && (ada_is_dispatch_table_ptr_type (type->field (field_num).type ())
6291 || ada_is_interface_tag (type->field (field_num).type ())))
73fb9985
JB
6292 return 1;
6293
6294 /* Not a special field, so it should not be ignored. */
6295 return 0;
963a6417 6296}
96d887e8 6297
963a6417 6298/* True iff TYPE has a tag field. If REFOK, then TYPE may also be a
0963b4bd 6299 pointer or reference type whose ultimate target has a tag field. */
96d887e8 6300
963a6417
PH
6301int
6302ada_is_tagged_type (struct type *type, int refok)
6303{
988f6b3d 6304 return (ada_lookup_struct_elt_type (type, "_tag", refok, 1) != NULL);
963a6417 6305}
96d887e8 6306
963a6417 6307/* True iff TYPE represents the type of X'Tag */
96d887e8 6308
963a6417
PH
6309int
6310ada_is_tag_type (struct type *type)
6311{
460efde1
JB
6312 type = ada_check_typedef (type);
6313
78134374 6314 if (type == NULL || type->code () != TYPE_CODE_PTR)
963a6417
PH
6315 return 0;
6316 else
96d887e8 6317 {
963a6417 6318 const char *name = ada_type_name (TYPE_TARGET_TYPE (type));
5b4ee69b 6319
963a6417
PH
6320 return (name != NULL
6321 && strcmp (name, "ada__tags__dispatch_table") == 0);
96d887e8 6322 }
96d887e8
PH
6323}
6324
963a6417 6325/* The type of the tag on VAL. */
76a01679 6326
de93309a 6327static struct type *
963a6417 6328ada_tag_type (struct value *val)
96d887e8 6329{
988f6b3d 6330 return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0);
963a6417 6331}
96d887e8 6332
b50d69b5
JG
6333/* Return 1 if TAG follows the old scheme for Ada tags (used for Ada 95,
6334 retired at Ada 05). */
6335
6336static int
6337is_ada95_tag (struct value *tag)
6338{
6339 return ada_value_struct_elt (tag, "tsd", 1) != NULL;
6340}
6341
963a6417 6342/* The value of the tag on VAL. */
96d887e8 6343
de93309a 6344static struct value *
963a6417
PH
6345ada_value_tag (struct value *val)
6346{
03ee6b2e 6347 return ada_value_struct_elt (val, "_tag", 0);
96d887e8
PH
6348}
6349
963a6417
PH
6350/* The value of the tag on the object of type TYPE whose contents are
6351 saved at VALADDR, if it is non-null, or is at memory address
0963b4bd 6352 ADDRESS. */
96d887e8 6353
963a6417 6354static struct value *
10a2c479 6355value_tag_from_contents_and_address (struct type *type,
fc1a4b47 6356 const gdb_byte *valaddr,
963a6417 6357 CORE_ADDR address)
96d887e8 6358{
b5385fc0 6359 int tag_byte_offset;
963a6417 6360 struct type *tag_type;
5b4ee69b 6361
963a6417 6362 if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset,
52ce6436 6363 NULL, NULL, NULL))
96d887e8 6364 {
fc1a4b47 6365 const gdb_byte *valaddr1 = ((valaddr == NULL)
10a2c479
AC
6366 ? NULL
6367 : valaddr + tag_byte_offset);
963a6417 6368 CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset;
96d887e8 6369
963a6417 6370 return value_from_contents_and_address (tag_type, valaddr1, address1);
96d887e8 6371 }
963a6417
PH
6372 return NULL;
6373}
96d887e8 6374
963a6417
PH
6375static struct type *
6376type_from_tag (struct value *tag)
6377{
f5272a3b 6378 gdb::unique_xmalloc_ptr<char> type_name = ada_tag_name (tag);
5b4ee69b 6379
963a6417 6380 if (type_name != NULL)
f5272a3b 6381 return ada_find_any_type (ada_encode (type_name.get ()));
963a6417
PH
6382 return NULL;
6383}
96d887e8 6384
b50d69b5
JG
6385/* Given a value OBJ of a tagged type, return a value of this
6386 type at the base address of the object. The base address, as
6387 defined in Ada.Tags, it is the address of the primary tag of
6388 the object, and therefore where the field values of its full
6389 view can be fetched. */
6390
6391struct value *
6392ada_tag_value_at_base_address (struct value *obj)
6393{
b50d69b5
JG
6394 struct value *val;
6395 LONGEST offset_to_top = 0;
6396 struct type *ptr_type, *obj_type;
6397 struct value *tag;
6398 CORE_ADDR base_address;
6399
6400 obj_type = value_type (obj);
6401
6402 /* It is the responsability of the caller to deref pointers. */
6403
78134374 6404 if (obj_type->code () == TYPE_CODE_PTR || obj_type->code () == TYPE_CODE_REF)
b50d69b5
JG
6405 return obj;
6406
6407 tag = ada_value_tag (obj);
6408 if (!tag)
6409 return obj;
6410
6411 /* Base addresses only appeared with Ada 05 and multiple inheritance. */
6412
6413 if (is_ada95_tag (tag))
6414 return obj;
6415
08f49010
XR
6416 ptr_type = language_lookup_primitive_type
6417 (language_def (language_ada), target_gdbarch(), "storage_offset");
b50d69b5
JG
6418 ptr_type = lookup_pointer_type (ptr_type);
6419 val = value_cast (ptr_type, tag);
6420 if (!val)
6421 return obj;
6422
6423 /* It is perfectly possible that an exception be raised while
6424 trying to determine the base address, just like for the tag;
6425 see ada_tag_name for more details. We do not print the error
6426 message for the same reason. */
6427
a70b8144 6428 try
b50d69b5
JG
6429 {
6430 offset_to_top = value_as_long (value_ind (value_ptradd (val, -2)));
6431 }
6432
230d2906 6433 catch (const gdb_exception_error &e)
492d29ea
PA
6434 {
6435 return obj;
6436 }
b50d69b5
JG
6437
6438 /* If offset is null, nothing to do. */
6439
6440 if (offset_to_top == 0)
6441 return obj;
6442
6443 /* -1 is a special case in Ada.Tags; however, what should be done
6444 is not quite clear from the documentation. So do nothing for
6445 now. */
6446
6447 if (offset_to_top == -1)
6448 return obj;
6449
08f49010
XR
6450 /* OFFSET_TO_TOP used to be a positive value to be subtracted
6451 from the base address. This was however incompatible with
6452 C++ dispatch table: C++ uses a *negative* value to *add*
6453 to the base address. Ada's convention has therefore been
6454 changed in GNAT 19.0w 20171023: since then, C++ and Ada
6455 use the same convention. Here, we support both cases by
6456 checking the sign of OFFSET_TO_TOP. */
6457
6458 if (offset_to_top > 0)
6459 offset_to_top = -offset_to_top;
6460
6461 base_address = value_address (obj) + offset_to_top;
b50d69b5
JG
6462 tag = value_tag_from_contents_and_address (obj_type, NULL, base_address);
6463
6464 /* Make sure that we have a proper tag at the new address.
6465 Otherwise, offset_to_top is bogus (which can happen when
6466 the object is not initialized yet). */
6467
6468 if (!tag)
6469 return obj;
6470
6471 obj_type = type_from_tag (tag);
6472
6473 if (!obj_type)
6474 return obj;
6475
6476 return value_from_contents_and_address (obj_type, NULL, base_address);
6477}
6478
1b611343
JB
6479/* Return the "ada__tags__type_specific_data" type. */
6480
6481static struct type *
6482ada_get_tsd_type (struct inferior *inf)
963a6417 6483{
1b611343 6484 struct ada_inferior_data *data = get_ada_inferior_data (inf);
4c4b4cd2 6485
1b611343
JB
6486 if (data->tsd_type == 0)
6487 data->tsd_type = ada_find_any_type ("ada__tags__type_specific_data");
6488 return data->tsd_type;
6489}
529cad9c 6490
1b611343
JB
6491/* Return the TSD (type-specific data) associated to the given TAG.
6492 TAG is assumed to be the tag of a tagged-type entity.
529cad9c 6493
1b611343 6494 May return NULL if we are unable to get the TSD. */
4c4b4cd2 6495
1b611343
JB
6496static struct value *
6497ada_get_tsd_from_tag (struct value *tag)
4c4b4cd2 6498{
4c4b4cd2 6499 struct value *val;
1b611343 6500 struct type *type;
5b4ee69b 6501
1b611343
JB
6502 /* First option: The TSD is simply stored as a field of our TAG.
6503 Only older versions of GNAT would use this format, but we have
6504 to test it first, because there are no visible markers for
6505 the current approach except the absence of that field. */
529cad9c 6506
1b611343
JB
6507 val = ada_value_struct_elt (tag, "tsd", 1);
6508 if (val)
6509 return val;
e802dbe0 6510
1b611343
JB
6511 /* Try the second representation for the dispatch table (in which
6512 there is no explicit 'tsd' field in the referent of the tag pointer,
6513 and instead the tsd pointer is stored just before the dispatch
6514 table. */
e802dbe0 6515
1b611343
JB
6516 type = ada_get_tsd_type (current_inferior());
6517 if (type == NULL)
6518 return NULL;
6519 type = lookup_pointer_type (lookup_pointer_type (type));
6520 val = value_cast (type, tag);
6521 if (val == NULL)
6522 return NULL;
6523 return value_ind (value_ptradd (val, -1));
e802dbe0
JB
6524}
6525
1b611343
JB
6526/* Given the TSD of a tag (type-specific data), return a string
6527 containing the name of the associated type.
6528
f5272a3b 6529 May return NULL if we are unable to determine the tag name. */
1b611343 6530
f5272a3b 6531static gdb::unique_xmalloc_ptr<char>
1b611343 6532ada_tag_name_from_tsd (struct value *tsd)
529cad9c 6533{
529cad9c 6534 char *p;
1b611343 6535 struct value *val;
529cad9c 6536
1b611343 6537 val = ada_value_struct_elt (tsd, "expanded_name", 1);
4c4b4cd2 6538 if (val == NULL)
1b611343 6539 return NULL;
66920317
TT
6540 gdb::unique_xmalloc_ptr<char> buffer
6541 = target_read_string (value_as_address (val), INT_MAX);
6542 if (buffer == nullptr)
f5272a3b
TT
6543 return nullptr;
6544
6545 for (p = buffer.get (); *p != '\0'; ++p)
6546 {
6547 if (isalpha (*p))
6548 *p = tolower (*p);
6549 }
6550
6551 return buffer;
4c4b4cd2
PH
6552}
6553
6554/* The type name of the dynamic type denoted by the 'tag value TAG, as
1b611343
JB
6555 a C string.
6556
6557 Return NULL if the TAG is not an Ada tag, or if we were unable to
f5272a3b 6558 determine the name of that tag. */
4c4b4cd2 6559
f5272a3b 6560gdb::unique_xmalloc_ptr<char>
4c4b4cd2
PH
6561ada_tag_name (struct value *tag)
6562{
f5272a3b 6563 gdb::unique_xmalloc_ptr<char> name;
5b4ee69b 6564
df407dfe 6565 if (!ada_is_tag_type (value_type (tag)))
4c4b4cd2 6566 return NULL;
1b611343
JB
6567
6568 /* It is perfectly possible that an exception be raised while trying
6569 to determine the TAG's name, even under normal circumstances:
6570 The associated variable may be uninitialized or corrupted, for
6571 instance. We do not let any exception propagate past this point.
6572 instead we return NULL.
6573
6574 We also do not print the error message either (which often is very
6575 low-level (Eg: "Cannot read memory at 0x[...]"), but instead let
6576 the caller print a more meaningful message if necessary. */
a70b8144 6577 try
1b611343
JB
6578 {
6579 struct value *tsd = ada_get_tsd_from_tag (tag);
6580
6581 if (tsd != NULL)
6582 name = ada_tag_name_from_tsd (tsd);
6583 }
230d2906 6584 catch (const gdb_exception_error &e)
492d29ea
PA
6585 {
6586 }
1b611343
JB
6587
6588 return name;
4c4b4cd2
PH
6589}
6590
6591/* The parent type of TYPE, or NULL if none. */
14f9c5c9 6592
d2e4a39e 6593struct type *
ebf56fd3 6594ada_parent_type (struct type *type)
14f9c5c9
AS
6595{
6596 int i;
6597
61ee279c 6598 type = ada_check_typedef (type);
14f9c5c9 6599
78134374 6600 if (type == NULL || type->code () != TYPE_CODE_STRUCT)
14f9c5c9
AS
6601 return NULL;
6602
1f704f76 6603 for (i = 0; i < type->num_fields (); i += 1)
14f9c5c9 6604 if (ada_is_parent_field (type, i))
0c1f74cf 6605 {
940da03e 6606 struct type *parent_type = type->field (i).type ();
0c1f74cf
JB
6607
6608 /* If the _parent field is a pointer, then dereference it. */
78134374 6609 if (parent_type->code () == TYPE_CODE_PTR)
0c1f74cf
JB
6610 parent_type = TYPE_TARGET_TYPE (parent_type);
6611 /* If there is a parallel XVS type, get the actual base type. */
6612 parent_type = ada_get_base_type (parent_type);
6613
6614 return ada_check_typedef (parent_type);
6615 }
14f9c5c9
AS
6616
6617 return NULL;
6618}
6619
4c4b4cd2
PH
6620/* True iff field number FIELD_NUM of structure type TYPE contains the
6621 parent-type (inherited) fields of a derived type. Assumes TYPE is
6622 a structure type with at least FIELD_NUM+1 fields. */
14f9c5c9
AS
6623
6624int
ebf56fd3 6625ada_is_parent_field (struct type *type, int field_num)
14f9c5c9 6626{
61ee279c 6627 const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num);
5b4ee69b 6628
4c4b4cd2 6629 return (name != NULL
61012eef
GB
6630 && (startswith (name, "PARENT")
6631 || startswith (name, "_parent")));
14f9c5c9
AS
6632}
6633
4c4b4cd2 6634/* True iff field number FIELD_NUM of structure type TYPE is a
14f9c5c9 6635 transparent wrapper field (which should be silently traversed when doing
4c4b4cd2 6636 field selection and flattened when printing). Assumes TYPE is a
14f9c5c9 6637 structure type with at least FIELD_NUM+1 fields. Such fields are always
4c4b4cd2 6638 structures. */
14f9c5c9
AS
6639
6640int
ebf56fd3 6641ada_is_wrapper_field (struct type *type, int field_num)
14f9c5c9 6642{
d2e4a39e 6643 const char *name = TYPE_FIELD_NAME (type, field_num);
5b4ee69b 6644
dddc0e16
JB
6645 if (name != NULL && strcmp (name, "RETVAL") == 0)
6646 {
6647 /* This happens in functions with "out" or "in out" parameters
6648 which are passed by copy. For such functions, GNAT describes
6649 the function's return type as being a struct where the return
6650 value is in a field called RETVAL, and where the other "out"
6651 or "in out" parameters are fields of that struct. This is not
6652 a wrapper. */
6653 return 0;
6654 }
6655
d2e4a39e 6656 return (name != NULL
61012eef 6657 && (startswith (name, "PARENT")
4c4b4cd2 6658 || strcmp (name, "REP") == 0
61012eef 6659 || startswith (name, "_parent")
4c4b4cd2 6660 || name[0] == 'S' || name[0] == 'R' || name[0] == 'O'));
14f9c5c9
AS
6661}
6662
4c4b4cd2
PH
6663/* True iff field number FIELD_NUM of structure or union type TYPE
6664 is a variant wrapper. Assumes TYPE is a structure type with at least
6665 FIELD_NUM+1 fields. */
14f9c5c9
AS
6666
6667int
ebf56fd3 6668ada_is_variant_part (struct type *type, int field_num)
14f9c5c9 6669{
8ecb59f8
TT
6670 /* Only Ada types are eligible. */
6671 if (!ADA_TYPE_P (type))
6672 return 0;
6673
940da03e 6674 struct type *field_type = type->field (field_num).type ();
5b4ee69b 6675
78134374
SM
6676 return (field_type->code () == TYPE_CODE_UNION
6677 || (is_dynamic_field (type, field_num)
6678 && (TYPE_TARGET_TYPE (field_type)->code ()
c3e5cd34 6679 == TYPE_CODE_UNION)));
14f9c5c9
AS
6680}
6681
6682/* Assuming that VAR_TYPE is a variant wrapper (type of the variant part)
4c4b4cd2 6683 whose discriminants are contained in the record type OUTER_TYPE,
7c964f07
UW
6684 returns the type of the controlling discriminant for the variant.
6685 May return NULL if the type could not be found. */
14f9c5c9 6686
d2e4a39e 6687struct type *
ebf56fd3 6688ada_variant_discrim_type (struct type *var_type, struct type *outer_type)
14f9c5c9 6689{
a121b7c1 6690 const char *name = ada_variant_discrim_name (var_type);
5b4ee69b 6691
988f6b3d 6692 return ada_lookup_struct_elt_type (outer_type, name, 1, 1);
14f9c5c9
AS
6693}
6694
4c4b4cd2 6695/* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a
14f9c5c9 6696 valid field number within it, returns 1 iff field FIELD_NUM of TYPE
4c4b4cd2 6697 represents a 'when others' clause; otherwise 0. */
14f9c5c9 6698
de93309a 6699static int
ebf56fd3 6700ada_is_others_clause (struct type *type, int field_num)
14f9c5c9 6701{
d2e4a39e 6702 const char *name = TYPE_FIELD_NAME (type, field_num);
5b4ee69b 6703
14f9c5c9
AS
6704 return (name != NULL && name[0] == 'O');
6705}
6706
6707/* Assuming that TYPE0 is the type of the variant part of a record,
4c4b4cd2
PH
6708 returns the name of the discriminant controlling the variant.
6709 The value is valid until the next call to ada_variant_discrim_name. */
14f9c5c9 6710
a121b7c1 6711const char *
ebf56fd3 6712ada_variant_discrim_name (struct type *type0)
14f9c5c9 6713{
d2e4a39e 6714 static char *result = NULL;
14f9c5c9 6715 static size_t result_len = 0;
d2e4a39e
AS
6716 struct type *type;
6717 const char *name;
6718 const char *discrim_end;
6719 const char *discrim_start;
14f9c5c9 6720
78134374 6721 if (type0->code () == TYPE_CODE_PTR)
14f9c5c9
AS
6722 type = TYPE_TARGET_TYPE (type0);
6723 else
6724 type = type0;
6725
6726 name = ada_type_name (type);
6727
6728 if (name == NULL || name[0] == '\000')
6729 return "";
6730
6731 for (discrim_end = name + strlen (name) - 6; discrim_end != name;
6732 discrim_end -= 1)
6733 {
61012eef 6734 if (startswith (discrim_end, "___XVN"))
4c4b4cd2 6735 break;
14f9c5c9
AS
6736 }
6737 if (discrim_end == name)
6738 return "";
6739
d2e4a39e 6740 for (discrim_start = discrim_end; discrim_start != name + 3;
14f9c5c9
AS
6741 discrim_start -= 1)
6742 {
d2e4a39e 6743 if (discrim_start == name + 1)
4c4b4cd2 6744 return "";
76a01679 6745 if ((discrim_start > name + 3
61012eef 6746 && startswith (discrim_start - 3, "___"))
4c4b4cd2
PH
6747 || discrim_start[-1] == '.')
6748 break;
14f9c5c9
AS
6749 }
6750
6751 GROW_VECT (result, result_len, discrim_end - discrim_start + 1);
6752 strncpy (result, discrim_start, discrim_end - discrim_start);
d2e4a39e 6753 result[discrim_end - discrim_start] = '\0';
14f9c5c9
AS
6754 return result;
6755}
6756
4c4b4cd2
PH
6757/* Scan STR for a subtype-encoded number, beginning at position K.
6758 Put the position of the character just past the number scanned in
6759 *NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL.
6760 Return 1 if there was a valid number at the given position, and 0
6761 otherwise. A "subtype-encoded" number consists of the absolute value
6762 in decimal, followed by the letter 'm' to indicate a negative number.
6763 Assumes 0m does not occur. */
14f9c5c9
AS
6764
6765int
d2e4a39e 6766ada_scan_number (const char str[], int k, LONGEST * R, int *new_k)
14f9c5c9
AS
6767{
6768 ULONGEST RU;
6769
d2e4a39e 6770 if (!isdigit (str[k]))
14f9c5c9
AS
6771 return 0;
6772
4c4b4cd2 6773 /* Do it the hard way so as not to make any assumption about
14f9c5c9 6774 the relationship of unsigned long (%lu scan format code) and
4c4b4cd2 6775 LONGEST. */
14f9c5c9
AS
6776 RU = 0;
6777 while (isdigit (str[k]))
6778 {
d2e4a39e 6779 RU = RU * 10 + (str[k] - '0');
14f9c5c9
AS
6780 k += 1;
6781 }
6782
d2e4a39e 6783 if (str[k] == 'm')
14f9c5c9
AS
6784 {
6785 if (R != NULL)
4c4b4cd2 6786 *R = (-(LONGEST) (RU - 1)) - 1;
14f9c5c9
AS
6787 k += 1;
6788 }
6789 else if (R != NULL)
6790 *R = (LONGEST) RU;
6791
4c4b4cd2 6792 /* NOTE on the above: Technically, C does not say what the results of
14f9c5c9
AS
6793 - (LONGEST) RU or (LONGEST) -RU are for RU == largest positive
6794 number representable as a LONGEST (although either would probably work
6795 in most implementations). When RU>0, the locution in the then branch
4c4b4cd2 6796 above is always equivalent to the negative of RU. */
14f9c5c9
AS
6797
6798 if (new_k != NULL)
6799 *new_k = k;
6800 return 1;
6801}
6802
4c4b4cd2
PH
6803/* Assuming that TYPE is a variant part wrapper type (a VARIANTS field),
6804 and FIELD_NUM is a valid field number within it, returns 1 iff VAL is
6805 in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */
14f9c5c9 6806
de93309a 6807static int
ebf56fd3 6808ada_in_variant (LONGEST val, struct type *type, int field_num)
14f9c5c9 6809{
d2e4a39e 6810 const char *name = TYPE_FIELD_NAME (type, field_num);
14f9c5c9
AS
6811 int p;
6812
6813 p = 0;
6814 while (1)
6815 {
d2e4a39e 6816 switch (name[p])
4c4b4cd2
PH
6817 {
6818 case '\0':
6819 return 0;
6820 case 'S':
6821 {
6822 LONGEST W;
5b4ee69b 6823
4c4b4cd2
PH
6824 if (!ada_scan_number (name, p + 1, &W, &p))
6825 return 0;
6826 if (val == W)
6827 return 1;
6828 break;
6829 }
6830 case 'R':
6831 {
6832 LONGEST L, U;
5b4ee69b 6833
4c4b4cd2
PH
6834 if (!ada_scan_number (name, p + 1, &L, &p)
6835 || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p))
6836 return 0;
6837 if (val >= L && val <= U)
6838 return 1;
6839 break;
6840 }
6841 case 'O':
6842 return 1;
6843 default:
6844 return 0;
6845 }
6846 }
6847}
6848
0963b4bd 6849/* FIXME: Lots of redundancy below. Try to consolidate. */
4c4b4cd2
PH
6850
6851/* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type
6852 ARG_TYPE, extract and return the value of one of its (non-static)
6853 fields. FIELDNO says which field. Differs from value_primitive_field
6854 only in that it can handle packed values of arbitrary type. */
14f9c5c9 6855
5eb68a39 6856struct value *
d2e4a39e 6857ada_value_primitive_field (struct value *arg1, int offset, int fieldno,
4c4b4cd2 6858 struct type *arg_type)
14f9c5c9 6859{
14f9c5c9
AS
6860 struct type *type;
6861
61ee279c 6862 arg_type = ada_check_typedef (arg_type);
940da03e 6863 type = arg_type->field (fieldno).type ();
14f9c5c9 6864
4504bbde
TT
6865 /* Handle packed fields. It might be that the field is not packed
6866 relative to its containing structure, but the structure itself is
6867 packed; in this case we must take the bit-field path. */
6868 if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0 || value_bitpos (arg1) != 0)
14f9c5c9
AS
6869 {
6870 int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno);
6871 int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno);
d2e4a39e 6872
0fd88904 6873 return ada_value_primitive_packed_val (arg1, value_contents (arg1),
4c4b4cd2
PH
6874 offset + bit_pos / 8,
6875 bit_pos % 8, bit_size, type);
14f9c5c9
AS
6876 }
6877 else
6878 return value_primitive_field (arg1, offset, fieldno, arg_type);
6879}
6880
52ce6436
PH
6881/* Find field with name NAME in object of type TYPE. If found,
6882 set the following for each argument that is non-null:
6883 - *FIELD_TYPE_P to the field's type;
6884 - *BYTE_OFFSET_P to OFFSET + the byte offset of the field within
6885 an object of that type;
6886 - *BIT_OFFSET_P to the bit offset modulo byte size of the field;
6887 - *BIT_SIZE_P to its size in bits if the field is packed, and
6888 0 otherwise;
6889 If INDEX_P is non-null, increment *INDEX_P by the number of source-visible
6890 fields up to but not including the desired field, or by the total
6891 number of fields if not found. A NULL value of NAME never
6892 matches; the function just counts visible fields in this case.
6893
828d5846
XR
6894 Notice that we need to handle when a tagged record hierarchy
6895 has some components with the same name, like in this scenario:
6896
6897 type Top_T is tagged record
6898 N : Integer := 1;
6899 U : Integer := 974;
6900 A : Integer := 48;
6901 end record;
6902
6903 type Middle_T is new Top.Top_T with record
6904 N : Character := 'a';
6905 C : Integer := 3;
6906 end record;
6907
6908 type Bottom_T is new Middle.Middle_T with record
6909 N : Float := 4.0;
6910 C : Character := '5';
6911 X : Integer := 6;
6912 A : Character := 'J';
6913 end record;
6914
6915 Let's say we now have a variable declared and initialized as follow:
6916
6917 TC : Top_A := new Bottom_T;
6918
6919 And then we use this variable to call this function
6920
6921 procedure Assign (Obj: in out Top_T; TV : Integer);
6922
6923 as follow:
6924
6925 Assign (Top_T (B), 12);
6926
6927 Now, we're in the debugger, and we're inside that procedure
6928 then and we want to print the value of obj.c:
6929
6930 Usually, the tagged record or one of the parent type owns the
6931 component to print and there's no issue but in this particular
6932 case, what does it mean to ask for Obj.C? Since the actual
6933 type for object is type Bottom_T, it could mean two things: type
6934 component C from the Middle_T view, but also component C from
6935 Bottom_T. So in that "undefined" case, when the component is
6936 not found in the non-resolved type (which includes all the
6937 components of the parent type), then resolve it and see if we
6938 get better luck once expanded.
6939
6940 In the case of homonyms in the derived tagged type, we don't
6941 guaranty anything, and pick the one that's easiest for us
6942 to program.
6943
0963b4bd 6944 Returns 1 if found, 0 otherwise. */
52ce6436 6945
4c4b4cd2 6946static int
0d5cff50 6947find_struct_field (const char *name, struct type *type, int offset,
76a01679 6948 struct type **field_type_p,
52ce6436
PH
6949 int *byte_offset_p, int *bit_offset_p, int *bit_size_p,
6950 int *index_p)
4c4b4cd2
PH
6951{
6952 int i;
828d5846 6953 int parent_offset = -1;
4c4b4cd2 6954
61ee279c 6955 type = ada_check_typedef (type);
76a01679 6956
52ce6436
PH
6957 if (field_type_p != NULL)
6958 *field_type_p = NULL;
6959 if (byte_offset_p != NULL)
d5d6fca5 6960 *byte_offset_p = 0;
52ce6436
PH
6961 if (bit_offset_p != NULL)
6962 *bit_offset_p = 0;
6963 if (bit_size_p != NULL)
6964 *bit_size_p = 0;
6965
1f704f76 6966 for (i = 0; i < type->num_fields (); i += 1)
4c4b4cd2
PH
6967 {
6968 int bit_pos = TYPE_FIELD_BITPOS (type, i);
6969 int fld_offset = offset + bit_pos / 8;
0d5cff50 6970 const char *t_field_name = TYPE_FIELD_NAME (type, i);
76a01679 6971
4c4b4cd2
PH
6972 if (t_field_name == NULL)
6973 continue;
6974
828d5846
XR
6975 else if (ada_is_parent_field (type, i))
6976 {
6977 /* This is a field pointing us to the parent type of a tagged
6978 type. As hinted in this function's documentation, we give
6979 preference to fields in the current record first, so what
6980 we do here is just record the index of this field before
6981 we skip it. If it turns out we couldn't find our field
6982 in the current record, then we'll get back to it and search
6983 inside it whether the field might exist in the parent. */
6984
6985 parent_offset = i;
6986 continue;
6987 }
6988
52ce6436 6989 else if (name != NULL && field_name_match (t_field_name, name))
76a01679
JB
6990 {
6991 int bit_size = TYPE_FIELD_BITSIZE (type, i);
5b4ee69b 6992
52ce6436 6993 if (field_type_p != NULL)
940da03e 6994 *field_type_p = type->field (i).type ();
52ce6436
PH
6995 if (byte_offset_p != NULL)
6996 *byte_offset_p = fld_offset;
6997 if (bit_offset_p != NULL)
6998 *bit_offset_p = bit_pos % 8;
6999 if (bit_size_p != NULL)
7000 *bit_size_p = bit_size;
76a01679
JB
7001 return 1;
7002 }
4c4b4cd2
PH
7003 else if (ada_is_wrapper_field (type, i))
7004 {
940da03e 7005 if (find_struct_field (name, type->field (i).type (), fld_offset,
52ce6436
PH
7006 field_type_p, byte_offset_p, bit_offset_p,
7007 bit_size_p, index_p))
76a01679
JB
7008 return 1;
7009 }
4c4b4cd2
PH
7010 else if (ada_is_variant_part (type, i))
7011 {
52ce6436
PH
7012 /* PNH: Wait. Do we ever execute this section, or is ARG always of
7013 fixed type?? */
4c4b4cd2 7014 int j;
52ce6436 7015 struct type *field_type
940da03e 7016 = ada_check_typedef (type->field (i).type ());
4c4b4cd2 7017
1f704f76 7018 for (j = 0; j < field_type->num_fields (); j += 1)
4c4b4cd2 7019 {
940da03e 7020 if (find_struct_field (name, field_type->field (j).type (),
76a01679
JB
7021 fld_offset
7022 + TYPE_FIELD_BITPOS (field_type, j) / 8,
7023 field_type_p, byte_offset_p,
52ce6436 7024 bit_offset_p, bit_size_p, index_p))
76a01679 7025 return 1;
4c4b4cd2
PH
7026 }
7027 }
52ce6436
PH
7028 else if (index_p != NULL)
7029 *index_p += 1;
4c4b4cd2 7030 }
828d5846
XR
7031
7032 /* Field not found so far. If this is a tagged type which
7033 has a parent, try finding that field in the parent now. */
7034
7035 if (parent_offset != -1)
7036 {
7037 int bit_pos = TYPE_FIELD_BITPOS (type, parent_offset);
7038 int fld_offset = offset + bit_pos / 8;
7039
940da03e 7040 if (find_struct_field (name, type->field (parent_offset).type (),
828d5846
XR
7041 fld_offset, field_type_p, byte_offset_p,
7042 bit_offset_p, bit_size_p, index_p))
7043 return 1;
7044 }
7045
4c4b4cd2
PH
7046 return 0;
7047}
7048
0963b4bd 7049/* Number of user-visible fields in record type TYPE. */
4c4b4cd2 7050
52ce6436
PH
7051static int
7052num_visible_fields (struct type *type)
7053{
7054 int n;
5b4ee69b 7055
52ce6436
PH
7056 n = 0;
7057 find_struct_field (NULL, type, 0, NULL, NULL, NULL, NULL, &n);
7058 return n;
7059}
14f9c5c9 7060
4c4b4cd2 7061/* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes,
14f9c5c9
AS
7062 and search in it assuming it has (class) type TYPE.
7063 If found, return value, else return NULL.
7064
828d5846
XR
7065 Searches recursively through wrapper fields (e.g., '_parent').
7066
7067 In the case of homonyms in the tagged types, please refer to the
7068 long explanation in find_struct_field's function documentation. */
14f9c5c9 7069
4c4b4cd2 7070static struct value *
108d56a4 7071ada_search_struct_field (const char *name, struct value *arg, int offset,
4c4b4cd2 7072 struct type *type)
14f9c5c9
AS
7073{
7074 int i;
828d5846 7075 int parent_offset = -1;
14f9c5c9 7076
5b4ee69b 7077 type = ada_check_typedef (type);
1f704f76 7078 for (i = 0; i < type->num_fields (); i += 1)
14f9c5c9 7079 {
0d5cff50 7080 const char *t_field_name = TYPE_FIELD_NAME (type, i);
14f9c5c9
AS
7081
7082 if (t_field_name == NULL)
4c4b4cd2 7083 continue;
14f9c5c9 7084
828d5846
XR
7085 else if (ada_is_parent_field (type, i))
7086 {
7087 /* This is a field pointing us to the parent type of a tagged
7088 type. As hinted in this function's documentation, we give
7089 preference to fields in the current record first, so what
7090 we do here is just record the index of this field before
7091 we skip it. If it turns out we couldn't find our field
7092 in the current record, then we'll get back to it and search
7093 inside it whether the field might exist in the parent. */
7094
7095 parent_offset = i;
7096 continue;
7097 }
7098
14f9c5c9 7099 else if (field_name_match (t_field_name, name))
4c4b4cd2 7100 return ada_value_primitive_field (arg, offset, i, type);
14f9c5c9
AS
7101
7102 else if (ada_is_wrapper_field (type, i))
4c4b4cd2 7103 {
0963b4bd 7104 struct value *v = /* Do not let indent join lines here. */
06d5cf63
JB
7105 ada_search_struct_field (name, arg,
7106 offset + TYPE_FIELD_BITPOS (type, i) / 8,
940da03e 7107 type->field (i).type ());
5b4ee69b 7108
4c4b4cd2
PH
7109 if (v != NULL)
7110 return v;
7111 }
14f9c5c9
AS
7112
7113 else if (ada_is_variant_part (type, i))
4c4b4cd2 7114 {
0963b4bd 7115 /* PNH: Do we ever get here? See find_struct_field. */
4c4b4cd2 7116 int j;
940da03e 7117 struct type *field_type = ada_check_typedef (type->field (i).type ());
4c4b4cd2
PH
7118 int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8;
7119
1f704f76 7120 for (j = 0; j < field_type->num_fields (); j += 1)
4c4b4cd2 7121 {
0963b4bd
MS
7122 struct value *v = ada_search_struct_field /* Force line
7123 break. */
06d5cf63
JB
7124 (name, arg,
7125 var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8,
940da03e 7126 field_type->field (j).type ());
5b4ee69b 7127
4c4b4cd2
PH
7128 if (v != NULL)
7129 return v;
7130 }
7131 }
14f9c5c9 7132 }
828d5846
XR
7133
7134 /* Field not found so far. If this is a tagged type which
7135 has a parent, try finding that field in the parent now. */
7136
7137 if (parent_offset != -1)
7138 {
7139 struct value *v = ada_search_struct_field (
7140 name, arg, offset + TYPE_FIELD_BITPOS (type, parent_offset) / 8,
940da03e 7141 type->field (parent_offset).type ());
828d5846
XR
7142
7143 if (v != NULL)
7144 return v;
7145 }
7146
14f9c5c9
AS
7147 return NULL;
7148}
d2e4a39e 7149
52ce6436
PH
7150static struct value *ada_index_struct_field_1 (int *, struct value *,
7151 int, struct type *);
7152
7153
7154/* Return field #INDEX in ARG, where the index is that returned by
7155 * find_struct_field through its INDEX_P argument. Adjust the address
7156 * of ARG by OFFSET bytes, and search in it assuming it has (class) type TYPE.
0963b4bd 7157 * If found, return value, else return NULL. */
52ce6436
PH
7158
7159static struct value *
7160ada_index_struct_field (int index, struct value *arg, int offset,
7161 struct type *type)
7162{
7163 return ada_index_struct_field_1 (&index, arg, offset, type);
7164}
7165
7166
7167/* Auxiliary function for ada_index_struct_field. Like
7168 * ada_index_struct_field, but takes index from *INDEX_P and modifies
0963b4bd 7169 * *INDEX_P. */
52ce6436
PH
7170
7171static struct value *
7172ada_index_struct_field_1 (int *index_p, struct value *arg, int offset,
7173 struct type *type)
7174{
7175 int i;
7176 type = ada_check_typedef (type);
7177
1f704f76 7178 for (i = 0; i < type->num_fields (); i += 1)
52ce6436
PH
7179 {
7180 if (TYPE_FIELD_NAME (type, i) == NULL)
7181 continue;
7182 else if (ada_is_wrapper_field (type, i))
7183 {
0963b4bd 7184 struct value *v = /* Do not let indent join lines here. */
52ce6436
PH
7185 ada_index_struct_field_1 (index_p, arg,
7186 offset + TYPE_FIELD_BITPOS (type, i) / 8,
940da03e 7187 type->field (i).type ());
5b4ee69b 7188
52ce6436
PH
7189 if (v != NULL)
7190 return v;
7191 }
7192
7193 else if (ada_is_variant_part (type, i))
7194 {
7195 /* PNH: Do we ever get here? See ada_search_struct_field,
0963b4bd 7196 find_struct_field. */
52ce6436
PH
7197 error (_("Cannot assign this kind of variant record"));
7198 }
7199 else if (*index_p == 0)
7200 return ada_value_primitive_field (arg, offset, i, type);
7201 else
7202 *index_p -= 1;
7203 }
7204 return NULL;
7205}
7206
3b4de39c 7207/* Return a string representation of type TYPE. */
99bbb428 7208
3b4de39c 7209static std::string
99bbb428
PA
7210type_as_string (struct type *type)
7211{
d7e74731 7212 string_file tmp_stream;
99bbb428 7213
d7e74731 7214 type_print (type, "", &tmp_stream, -1);
99bbb428 7215
d7e74731 7216 return std::move (tmp_stream.string ());
99bbb428
PA
7217}
7218
14f9c5c9 7219/* Given a type TYPE, look up the type of the component of type named NAME.
4c4b4cd2
PH
7220 If DISPP is non-null, add its byte displacement from the beginning of a
7221 structure (pointed to by a value) of type TYPE to *DISPP (does not
14f9c5c9
AS
7222 work for packed fields).
7223
7224 Matches any field whose name has NAME as a prefix, possibly
4c4b4cd2 7225 followed by "___".
14f9c5c9 7226
0963b4bd 7227 TYPE can be either a struct or union. If REFOK, TYPE may also
4c4b4cd2
PH
7228 be a (pointer or reference)+ to a struct or union, and the
7229 ultimate target type will be searched.
14f9c5c9
AS
7230
7231 Looks recursively into variant clauses and parent types.
7232
828d5846
XR
7233 In the case of homonyms in the tagged types, please refer to the
7234 long explanation in find_struct_field's function documentation.
7235
4c4b4cd2
PH
7236 If NOERR is nonzero, return NULL if NAME is not suitably defined or
7237 TYPE is not a type of the right kind. */
14f9c5c9 7238
4c4b4cd2 7239static struct type *
a121b7c1 7240ada_lookup_struct_elt_type (struct type *type, const char *name, int refok,
988f6b3d 7241 int noerr)
14f9c5c9
AS
7242{
7243 int i;
828d5846 7244 int parent_offset = -1;
14f9c5c9
AS
7245
7246 if (name == NULL)
7247 goto BadName;
7248
76a01679 7249 if (refok && type != NULL)
4c4b4cd2
PH
7250 while (1)
7251 {
61ee279c 7252 type = ada_check_typedef (type);
78134374 7253 if (type->code () != TYPE_CODE_PTR && type->code () != TYPE_CODE_REF)
76a01679
JB
7254 break;
7255 type = TYPE_TARGET_TYPE (type);
4c4b4cd2 7256 }
14f9c5c9 7257
76a01679 7258 if (type == NULL
78134374
SM
7259 || (type->code () != TYPE_CODE_STRUCT
7260 && type->code () != TYPE_CODE_UNION))
14f9c5c9 7261 {
4c4b4cd2 7262 if (noerr)
76a01679 7263 return NULL;
99bbb428 7264
3b4de39c
PA
7265 error (_("Type %s is not a structure or union type"),
7266 type != NULL ? type_as_string (type).c_str () : _("(null)"));
14f9c5c9
AS
7267 }
7268
7269 type = to_static_fixed_type (type);
7270
1f704f76 7271 for (i = 0; i < type->num_fields (); i += 1)
14f9c5c9 7272 {
0d5cff50 7273 const char *t_field_name = TYPE_FIELD_NAME (type, i);
14f9c5c9 7274 struct type *t;
d2e4a39e 7275
14f9c5c9 7276 if (t_field_name == NULL)
4c4b4cd2 7277 continue;
14f9c5c9 7278
828d5846
XR
7279 else if (ada_is_parent_field (type, i))
7280 {
7281 /* This is a field pointing us to the parent type of a tagged
7282 type. As hinted in this function's documentation, we give
7283 preference to fields in the current record first, so what
7284 we do here is just record the index of this field before
7285 we skip it. If it turns out we couldn't find our field
7286 in the current record, then we'll get back to it and search
7287 inside it whether the field might exist in the parent. */
7288
7289 parent_offset = i;
7290 continue;
7291 }
7292
14f9c5c9 7293 else if (field_name_match (t_field_name, name))
940da03e 7294 return type->field (i).type ();
14f9c5c9
AS
7295
7296 else if (ada_is_wrapper_field (type, i))
4c4b4cd2 7297 {
940da03e 7298 t = ada_lookup_struct_elt_type (type->field (i).type (), name,
988f6b3d 7299 0, 1);
4c4b4cd2 7300 if (t != NULL)
988f6b3d 7301 return t;
4c4b4cd2 7302 }
14f9c5c9
AS
7303
7304 else if (ada_is_variant_part (type, i))
4c4b4cd2
PH
7305 {
7306 int j;
940da03e 7307 struct type *field_type = ada_check_typedef (type->field (i).type ());
4c4b4cd2 7308
1f704f76 7309 for (j = field_type->num_fields () - 1; j >= 0; j -= 1)
4c4b4cd2 7310 {
b1f33ddd
JB
7311 /* FIXME pnh 2008/01/26: We check for a field that is
7312 NOT wrapped in a struct, since the compiler sometimes
7313 generates these for unchecked variant types. Revisit
0963b4bd 7314 if the compiler changes this practice. */
0d5cff50 7315 const char *v_field_name = TYPE_FIELD_NAME (field_type, j);
988f6b3d 7316
b1f33ddd
JB
7317 if (v_field_name != NULL
7318 && field_name_match (v_field_name, name))
940da03e 7319 t = field_type->field (j).type ();
b1f33ddd 7320 else
940da03e 7321 t = ada_lookup_struct_elt_type (field_type->field (j).type (),
988f6b3d 7322 name, 0, 1);
b1f33ddd 7323
4c4b4cd2 7324 if (t != NULL)
988f6b3d 7325 return t;
4c4b4cd2
PH
7326 }
7327 }
14f9c5c9
AS
7328
7329 }
7330
828d5846
XR
7331 /* Field not found so far. If this is a tagged type which
7332 has a parent, try finding that field in the parent now. */
7333
7334 if (parent_offset != -1)
7335 {
7336 struct type *t;
7337
940da03e 7338 t = ada_lookup_struct_elt_type (type->field (parent_offset).type (),
828d5846
XR
7339 name, 0, 1);
7340 if (t != NULL)
7341 return t;
7342 }
7343
14f9c5c9 7344BadName:
d2e4a39e 7345 if (!noerr)
14f9c5c9 7346 {
2b2798cc 7347 const char *name_str = name != NULL ? name : _("<null>");
99bbb428
PA
7348
7349 error (_("Type %s has no component named %s"),
3b4de39c 7350 type_as_string (type).c_str (), name_str);
14f9c5c9
AS
7351 }
7352
7353 return NULL;
7354}
7355
b1f33ddd
JB
7356/* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
7357 within a value of type OUTER_TYPE, return true iff VAR_TYPE
7358 represents an unchecked union (that is, the variant part of a
0963b4bd 7359 record that is named in an Unchecked_Union pragma). */
b1f33ddd
JB
7360
7361static int
7362is_unchecked_variant (struct type *var_type, struct type *outer_type)
7363{
a121b7c1 7364 const char *discrim_name = ada_variant_discrim_name (var_type);
5b4ee69b 7365
988f6b3d 7366 return (ada_lookup_struct_elt_type (outer_type, discrim_name, 0, 1) == NULL);
b1f33ddd
JB
7367}
7368
7369
14f9c5c9 7370/* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
d8af9068 7371 within OUTER, determine which variant clause (field number in VAR_TYPE,
4c4b4cd2 7372 numbering from 0) is applicable. Returns -1 if none are. */
14f9c5c9 7373
d2e4a39e 7374int
d8af9068 7375ada_which_variant_applies (struct type *var_type, struct value *outer)
14f9c5c9
AS
7376{
7377 int others_clause;
7378 int i;
a121b7c1 7379 const char *discrim_name = ada_variant_discrim_name (var_type);
0c281816 7380 struct value *discrim;
14f9c5c9
AS
7381 LONGEST discrim_val;
7382
012370f6
TT
7383 /* Using plain value_from_contents_and_address here causes problems
7384 because we will end up trying to resolve a type that is currently
7385 being constructed. */
0c281816
JB
7386 discrim = ada_value_struct_elt (outer, discrim_name, 1);
7387 if (discrim == NULL)
14f9c5c9 7388 return -1;
0c281816 7389 discrim_val = value_as_long (discrim);
14f9c5c9
AS
7390
7391 others_clause = -1;
1f704f76 7392 for (i = 0; i < var_type->num_fields (); i += 1)
14f9c5c9
AS
7393 {
7394 if (ada_is_others_clause (var_type, i))
4c4b4cd2 7395 others_clause = i;
14f9c5c9 7396 else if (ada_in_variant (discrim_val, var_type, i))
4c4b4cd2 7397 return i;
14f9c5c9
AS
7398 }
7399
7400 return others_clause;
7401}
d2e4a39e 7402\f
14f9c5c9
AS
7403
7404
4c4b4cd2 7405 /* Dynamic-Sized Records */
14f9c5c9
AS
7406
7407/* Strategy: The type ostensibly attached to a value with dynamic size
7408 (i.e., a size that is not statically recorded in the debugging
7409 data) does not accurately reflect the size or layout of the value.
7410 Our strategy is to convert these values to values with accurate,
4c4b4cd2 7411 conventional types that are constructed on the fly. */
14f9c5c9
AS
7412
7413/* There is a subtle and tricky problem here. In general, we cannot
7414 determine the size of dynamic records without its data. However,
7415 the 'struct value' data structure, which GDB uses to represent
7416 quantities in the inferior process (the target), requires the size
7417 of the type at the time of its allocation in order to reserve space
7418 for GDB's internal copy of the data. That's why the
7419 'to_fixed_xxx_type' routines take (target) addresses as parameters,
4c4b4cd2 7420 rather than struct value*s.
14f9c5c9
AS
7421
7422 However, GDB's internal history variables ($1, $2, etc.) are
7423 struct value*s containing internal copies of the data that are not, in
7424 general, the same as the data at their corresponding addresses in
7425 the target. Fortunately, the types we give to these values are all
7426 conventional, fixed-size types (as per the strategy described
7427 above), so that we don't usually have to perform the
7428 'to_fixed_xxx_type' conversions to look at their values.
7429 Unfortunately, there is one exception: if one of the internal
7430 history variables is an array whose elements are unconstrained
7431 records, then we will need to create distinct fixed types for each
7432 element selected. */
7433
7434/* The upshot of all of this is that many routines take a (type, host
7435 address, target address) triple as arguments to represent a value.
7436 The host address, if non-null, is supposed to contain an internal
7437 copy of the relevant data; otherwise, the program is to consult the
4c4b4cd2 7438 target at the target address. */
14f9c5c9
AS
7439
7440/* Assuming that VAL0 represents a pointer value, the result of
7441 dereferencing it. Differs from value_ind in its treatment of
4c4b4cd2 7442 dynamic-sized types. */
14f9c5c9 7443
d2e4a39e
AS
7444struct value *
7445ada_value_ind (struct value *val0)
14f9c5c9 7446{
c48db5ca 7447 struct value *val = value_ind (val0);
5b4ee69b 7448
b50d69b5
JG
7449 if (ada_is_tagged_type (value_type (val), 0))
7450 val = ada_tag_value_at_base_address (val);
7451
4c4b4cd2 7452 return ada_to_fixed_value (val);
14f9c5c9
AS
7453}
7454
7455/* The value resulting from dereferencing any "reference to"
4c4b4cd2
PH
7456 qualifiers on VAL0. */
7457
d2e4a39e
AS
7458static struct value *
7459ada_coerce_ref (struct value *val0)
7460{
78134374 7461 if (value_type (val0)->code () == TYPE_CODE_REF)
d2e4a39e
AS
7462 {
7463 struct value *val = val0;
5b4ee69b 7464
994b9211 7465 val = coerce_ref (val);
b50d69b5
JG
7466
7467 if (ada_is_tagged_type (value_type (val), 0))
7468 val = ada_tag_value_at_base_address (val);
7469
4c4b4cd2 7470 return ada_to_fixed_value (val);
d2e4a39e
AS
7471 }
7472 else
14f9c5c9
AS
7473 return val0;
7474}
7475
4c4b4cd2 7476/* Return the bit alignment required for field #F of template type TYPE. */
14f9c5c9
AS
7477
7478static unsigned int
ebf56fd3 7479field_alignment (struct type *type, int f)
14f9c5c9 7480{
d2e4a39e 7481 const char *name = TYPE_FIELD_NAME (type, f);
64a1bf19 7482 int len;
14f9c5c9
AS
7483 int align_offset;
7484
64a1bf19
JB
7485 /* The field name should never be null, unless the debugging information
7486 is somehow malformed. In this case, we assume the field does not
7487 require any alignment. */
7488 if (name == NULL)
7489 return 1;
7490
7491 len = strlen (name);
7492
4c4b4cd2
PH
7493 if (!isdigit (name[len - 1]))
7494 return 1;
14f9c5c9 7495
d2e4a39e 7496 if (isdigit (name[len - 2]))
14f9c5c9
AS
7497 align_offset = len - 2;
7498 else
7499 align_offset = len - 1;
7500
61012eef 7501 if (align_offset < 7 || !startswith (name + align_offset - 6, "___XV"))
14f9c5c9
AS
7502 return TARGET_CHAR_BIT;
7503
4c4b4cd2
PH
7504 return atoi (name + align_offset) * TARGET_CHAR_BIT;
7505}
7506
852dff6c 7507/* Find a typedef or tag symbol named NAME. Ignores ambiguity. */
4c4b4cd2 7508
852dff6c
JB
7509static struct symbol *
7510ada_find_any_type_symbol (const char *name)
4c4b4cd2
PH
7511{
7512 struct symbol *sym;
7513
7514 sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN);
4186eb54 7515 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
4c4b4cd2
PH
7516 return sym;
7517
4186eb54
KS
7518 sym = standard_lookup (name, NULL, STRUCT_DOMAIN);
7519 return sym;
14f9c5c9
AS
7520}
7521
dddfab26
UW
7522/* Find a type named NAME. Ignores ambiguity. This routine will look
7523 solely for types defined by debug info, it will not search the GDB
7524 primitive types. */
4c4b4cd2 7525
852dff6c 7526static struct type *
ebf56fd3 7527ada_find_any_type (const char *name)
14f9c5c9 7528{
852dff6c 7529 struct symbol *sym = ada_find_any_type_symbol (name);
14f9c5c9 7530
14f9c5c9 7531 if (sym != NULL)
dddfab26 7532 return SYMBOL_TYPE (sym);
14f9c5c9 7533
dddfab26 7534 return NULL;
14f9c5c9
AS
7535}
7536
739593e0
JB
7537/* Given NAME_SYM and an associated BLOCK, find a "renaming" symbol
7538 associated with NAME_SYM's name. NAME_SYM may itself be a renaming
7539 symbol, in which case it is returned. Otherwise, this looks for
7540 symbols whose name is that of NAME_SYM suffixed with "___XR".
7541 Return symbol if found, and NULL otherwise. */
4c4b4cd2 7542
c0e70c62
TT
7543static bool
7544ada_is_renaming_symbol (struct symbol *name_sym)
aeb5907d 7545{
987012b8 7546 const char *name = name_sym->linkage_name ();
c0e70c62 7547 return strstr (name, "___XR") != NULL;
4c4b4cd2
PH
7548}
7549
14f9c5c9 7550/* Because of GNAT encoding conventions, several GDB symbols may match a
4c4b4cd2 7551 given type name. If the type denoted by TYPE0 is to be preferred to
14f9c5c9 7552 that of TYPE1 for purposes of type printing, return non-zero;
4c4b4cd2
PH
7553 otherwise return 0. */
7554
14f9c5c9 7555int
d2e4a39e 7556ada_prefer_type (struct type *type0, struct type *type1)
14f9c5c9
AS
7557{
7558 if (type1 == NULL)
7559 return 1;
7560 else if (type0 == NULL)
7561 return 0;
78134374 7562 else if (type1->code () == TYPE_CODE_VOID)
14f9c5c9 7563 return 1;
78134374 7564 else if (type0->code () == TYPE_CODE_VOID)
14f9c5c9 7565 return 0;
7d93a1e0 7566 else if (type1->name () == NULL && type0->name () != NULL)
4c4b4cd2 7567 return 1;
ad82864c 7568 else if (ada_is_constrained_packed_array_type (type0))
14f9c5c9 7569 return 1;
4c4b4cd2
PH
7570 else if (ada_is_array_descriptor_type (type0)
7571 && !ada_is_array_descriptor_type (type1))
14f9c5c9 7572 return 1;
aeb5907d
JB
7573 else
7574 {
7d93a1e0
SM
7575 const char *type0_name = type0->name ();
7576 const char *type1_name = type1->name ();
aeb5907d
JB
7577
7578 if (type0_name != NULL && strstr (type0_name, "___XR") != NULL
7579 && (type1_name == NULL || strstr (type1_name, "___XR") == NULL))
7580 return 1;
7581 }
14f9c5c9
AS
7582 return 0;
7583}
7584
e86ca25f
TT
7585/* The name of TYPE, which is its TYPE_NAME. Null if TYPE is
7586 null. */
4c4b4cd2 7587
0d5cff50 7588const char *
d2e4a39e 7589ada_type_name (struct type *type)
14f9c5c9 7590{
d2e4a39e 7591 if (type == NULL)
14f9c5c9 7592 return NULL;
7d93a1e0 7593 return type->name ();
14f9c5c9
AS
7594}
7595
b4ba55a1
JB
7596/* Search the list of "descriptive" types associated to TYPE for a type
7597 whose name is NAME. */
7598
7599static struct type *
7600find_parallel_type_by_descriptive_type (struct type *type, const char *name)
7601{
931e5bc3 7602 struct type *result, *tmp;
b4ba55a1 7603
c6044dd1
JB
7604 if (ada_ignore_descriptive_types_p)
7605 return NULL;
7606
b4ba55a1
JB
7607 /* If there no descriptive-type info, then there is no parallel type
7608 to be found. */
7609 if (!HAVE_GNAT_AUX_INFO (type))
7610 return NULL;
7611
7612 result = TYPE_DESCRIPTIVE_TYPE (type);
7613 while (result != NULL)
7614 {
0d5cff50 7615 const char *result_name = ada_type_name (result);
b4ba55a1
JB
7616
7617 if (result_name == NULL)
7618 {
7619 warning (_("unexpected null name on descriptive type"));
7620 return NULL;
7621 }
7622
7623 /* If the names match, stop. */
7624 if (strcmp (result_name, name) == 0)
7625 break;
7626
7627 /* Otherwise, look at the next item on the list, if any. */
7628 if (HAVE_GNAT_AUX_INFO (result))
931e5bc3
JG
7629 tmp = TYPE_DESCRIPTIVE_TYPE (result);
7630 else
7631 tmp = NULL;
7632
7633 /* If not found either, try after having resolved the typedef. */
7634 if (tmp != NULL)
7635 result = tmp;
b4ba55a1 7636 else
931e5bc3 7637 {
f168693b 7638 result = check_typedef (result);
931e5bc3
JG
7639 if (HAVE_GNAT_AUX_INFO (result))
7640 result = TYPE_DESCRIPTIVE_TYPE (result);
7641 else
7642 result = NULL;
7643 }
b4ba55a1
JB
7644 }
7645
7646 /* If we didn't find a match, see whether this is a packed array. With
7647 older compilers, the descriptive type information is either absent or
7648 irrelevant when it comes to packed arrays so the above lookup fails.
7649 Fall back to using a parallel lookup by name in this case. */
12ab9e09 7650 if (result == NULL && ada_is_constrained_packed_array_type (type))
b4ba55a1
JB
7651 return ada_find_any_type (name);
7652
7653 return result;
7654}
7655
7656/* Find a parallel type to TYPE with the specified NAME, using the
7657 descriptive type taken from the debugging information, if available,
7658 and otherwise using the (slower) name-based method. */
7659
7660static struct type *
7661ada_find_parallel_type_with_name (struct type *type, const char *name)
7662{
7663 struct type *result = NULL;
7664
7665 if (HAVE_GNAT_AUX_INFO (type))
7666 result = find_parallel_type_by_descriptive_type (type, name);
7667 else
7668 result = ada_find_any_type (name);
7669
7670 return result;
7671}
7672
7673/* Same as above, but specify the name of the parallel type by appending
4c4b4cd2 7674 SUFFIX to the name of TYPE. */
14f9c5c9 7675
d2e4a39e 7676struct type *
ebf56fd3 7677ada_find_parallel_type (struct type *type, const char *suffix)
14f9c5c9 7678{
0d5cff50 7679 char *name;
fe978cb0 7680 const char *type_name = ada_type_name (type);
14f9c5c9 7681 int len;
d2e4a39e 7682
fe978cb0 7683 if (type_name == NULL)
14f9c5c9
AS
7684 return NULL;
7685
fe978cb0 7686 len = strlen (type_name);
14f9c5c9 7687
b4ba55a1 7688 name = (char *) alloca (len + strlen (suffix) + 1);
14f9c5c9 7689
fe978cb0 7690 strcpy (name, type_name);
14f9c5c9
AS
7691 strcpy (name + len, suffix);
7692
b4ba55a1 7693 return ada_find_parallel_type_with_name (type, name);
14f9c5c9
AS
7694}
7695
14f9c5c9 7696/* If TYPE is a variable-size record type, return the corresponding template
4c4b4cd2 7697 type describing its fields. Otherwise, return NULL. */
14f9c5c9 7698
d2e4a39e
AS
7699static struct type *
7700dynamic_template_type (struct type *type)
14f9c5c9 7701{
61ee279c 7702 type = ada_check_typedef (type);
14f9c5c9 7703
78134374 7704 if (type == NULL || type->code () != TYPE_CODE_STRUCT
d2e4a39e 7705 || ada_type_name (type) == NULL)
14f9c5c9 7706 return NULL;
d2e4a39e 7707 else
14f9c5c9
AS
7708 {
7709 int len = strlen (ada_type_name (type));
5b4ee69b 7710
4c4b4cd2
PH
7711 if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0)
7712 return type;
14f9c5c9 7713 else
4c4b4cd2 7714 return ada_find_parallel_type (type, "___XVE");
14f9c5c9
AS
7715 }
7716}
7717
7718/* Assuming that TEMPL_TYPE is a union or struct type, returns
4c4b4cd2 7719 non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */
14f9c5c9 7720
d2e4a39e
AS
7721static int
7722is_dynamic_field (struct type *templ_type, int field_num)
14f9c5c9
AS
7723{
7724 const char *name = TYPE_FIELD_NAME (templ_type, field_num);
5b4ee69b 7725
d2e4a39e 7726 return name != NULL
940da03e 7727 && templ_type->field (field_num).type ()->code () == TYPE_CODE_PTR
14f9c5c9
AS
7728 && strstr (name, "___XVL") != NULL;
7729}
7730
4c4b4cd2
PH
7731/* The index of the variant field of TYPE, or -1 if TYPE does not
7732 represent a variant record type. */
14f9c5c9 7733
d2e4a39e 7734static int
4c4b4cd2 7735variant_field_index (struct type *type)
14f9c5c9
AS
7736{
7737 int f;
7738
78134374 7739 if (type == NULL || type->code () != TYPE_CODE_STRUCT)
4c4b4cd2
PH
7740 return -1;
7741
1f704f76 7742 for (f = 0; f < type->num_fields (); f += 1)
4c4b4cd2
PH
7743 {
7744 if (ada_is_variant_part (type, f))
7745 return f;
7746 }
7747 return -1;
14f9c5c9
AS
7748}
7749
4c4b4cd2
PH
7750/* A record type with no fields. */
7751
d2e4a39e 7752static struct type *
fe978cb0 7753empty_record (struct type *templ)
14f9c5c9 7754{
fe978cb0 7755 struct type *type = alloc_type_copy (templ);
5b4ee69b 7756
67607e24 7757 type->set_code (TYPE_CODE_STRUCT);
8ecb59f8 7758 INIT_NONE_SPECIFIC (type);
d0e39ea2 7759 type->set_name ("<empty>");
14f9c5c9
AS
7760 TYPE_LENGTH (type) = 0;
7761 return type;
7762}
7763
7764/* An ordinary record type (with fixed-length fields) that describes
4c4b4cd2
PH
7765 the value of type TYPE at VALADDR or ADDRESS (see comments at
7766 the beginning of this section) VAL according to GNAT conventions.
7767 DVAL0 should describe the (portion of a) record that contains any
df407dfe 7768 necessary discriminants. It should be NULL if value_type (VAL) is
14f9c5c9
AS
7769 an outer-level type (i.e., as opposed to a branch of a variant.) A
7770 variant field (unless unchecked) is replaced by a particular branch
4c4b4cd2 7771 of the variant.
14f9c5c9 7772
4c4b4cd2
PH
7773 If not KEEP_DYNAMIC_FIELDS, then all fields whose position or
7774 length are not statically known are discarded. As a consequence,
7775 VALADDR, ADDRESS and DVAL0 are ignored.
7776
7777 NOTE: Limitations: For now, we assume that dynamic fields and
7778 variants occupy whole numbers of bytes. However, they need not be
7779 byte-aligned. */
7780
7781struct type *
10a2c479 7782ada_template_to_fixed_record_type_1 (struct type *type,
fc1a4b47 7783 const gdb_byte *valaddr,
4c4b4cd2
PH
7784 CORE_ADDR address, struct value *dval0,
7785 int keep_dynamic_fields)
14f9c5c9 7786{
d2e4a39e
AS
7787 struct value *mark = value_mark ();
7788 struct value *dval;
7789 struct type *rtype;
14f9c5c9 7790 int nfields, bit_len;
4c4b4cd2 7791 int variant_field;
14f9c5c9 7792 long off;
d94e4f4f 7793 int fld_bit_len;
14f9c5c9
AS
7794 int f;
7795
4c4b4cd2
PH
7796 /* Compute the number of fields in this record type that are going
7797 to be processed: unless keep_dynamic_fields, this includes only
7798 fields whose position and length are static will be processed. */
7799 if (keep_dynamic_fields)
1f704f76 7800 nfields = type->num_fields ();
4c4b4cd2
PH
7801 else
7802 {
7803 nfields = 0;
1f704f76 7804 while (nfields < type->num_fields ()
4c4b4cd2
PH
7805 && !ada_is_variant_part (type, nfields)
7806 && !is_dynamic_field (type, nfields))
7807 nfields++;
7808 }
7809
e9bb382b 7810 rtype = alloc_type_copy (type);
67607e24 7811 rtype->set_code (TYPE_CODE_STRUCT);
8ecb59f8 7812 INIT_NONE_SPECIFIC (rtype);
5e33d5f4 7813 rtype->set_num_fields (nfields);
3cabb6b0
SM
7814 rtype->set_fields
7815 ((struct field *) TYPE_ZALLOC (rtype, nfields * sizeof (struct field)));
d0e39ea2 7816 rtype->set_name (ada_type_name (type));
876cecd0 7817 TYPE_FIXED_INSTANCE (rtype) = 1;
14f9c5c9 7818
d2e4a39e
AS
7819 off = 0;
7820 bit_len = 0;
4c4b4cd2
PH
7821 variant_field = -1;
7822
14f9c5c9
AS
7823 for (f = 0; f < nfields; f += 1)
7824 {
a89febbd 7825 off = align_up (off, field_alignment (type, f))
6c038f32 7826 + TYPE_FIELD_BITPOS (type, f);
ceacbf6e 7827 SET_FIELD_BITPOS (rtype->field (f), off);
d2e4a39e 7828 TYPE_FIELD_BITSIZE (rtype, f) = 0;
14f9c5c9 7829
d2e4a39e 7830 if (ada_is_variant_part (type, f))
4c4b4cd2
PH
7831 {
7832 variant_field = f;
d94e4f4f 7833 fld_bit_len = 0;
4c4b4cd2 7834 }
14f9c5c9 7835 else if (is_dynamic_field (type, f))
4c4b4cd2 7836 {
284614f0
JB
7837 const gdb_byte *field_valaddr = valaddr;
7838 CORE_ADDR field_address = address;
7839 struct type *field_type =
940da03e 7840 TYPE_TARGET_TYPE (type->field (f).type ());
284614f0 7841
4c4b4cd2 7842 if (dval0 == NULL)
b5304971
JG
7843 {
7844 /* rtype's length is computed based on the run-time
7845 value of discriminants. If the discriminants are not
7846 initialized, the type size may be completely bogus and
0963b4bd 7847 GDB may fail to allocate a value for it. So check the
b5304971 7848 size first before creating the value. */
c1b5a1a6 7849 ada_ensure_varsize_limit (rtype);
012370f6
TT
7850 /* Using plain value_from_contents_and_address here
7851 causes problems because we will end up trying to
7852 resolve a type that is currently being
7853 constructed. */
7854 dval = value_from_contents_and_address_unresolved (rtype,
7855 valaddr,
7856 address);
9f1f738a 7857 rtype = value_type (dval);
b5304971 7858 }
4c4b4cd2
PH
7859 else
7860 dval = dval0;
7861
284614f0
JB
7862 /* If the type referenced by this field is an aligner type, we need
7863 to unwrap that aligner type, because its size might not be set.
7864 Keeping the aligner type would cause us to compute the wrong
7865 size for this field, impacting the offset of the all the fields
7866 that follow this one. */
7867 if (ada_is_aligner_type (field_type))
7868 {
7869 long field_offset = TYPE_FIELD_BITPOS (field_type, f);
7870
7871 field_valaddr = cond_offset_host (field_valaddr, field_offset);
7872 field_address = cond_offset_target (field_address, field_offset);
7873 field_type = ada_aligned_type (field_type);
7874 }
7875
7876 field_valaddr = cond_offset_host (field_valaddr,
7877 off / TARGET_CHAR_BIT);
7878 field_address = cond_offset_target (field_address,
7879 off / TARGET_CHAR_BIT);
7880
7881 /* Get the fixed type of the field. Note that, in this case,
7882 we do not want to get the real type out of the tag: if
7883 the current field is the parent part of a tagged record,
7884 we will get the tag of the object. Clearly wrong: the real
7885 type of the parent is not the real type of the child. We
7886 would end up in an infinite loop. */
7887 field_type = ada_get_base_type (field_type);
7888 field_type = ada_to_fixed_type (field_type, field_valaddr,
7889 field_address, dval, 0);
27f2a97b
JB
7890 /* If the field size is already larger than the maximum
7891 object size, then the record itself will necessarily
7892 be larger than the maximum object size. We need to make
7893 this check now, because the size might be so ridiculously
7894 large (due to an uninitialized variable in the inferior)
7895 that it would cause an overflow when adding it to the
7896 record size. */
c1b5a1a6 7897 ada_ensure_varsize_limit (field_type);
284614f0 7898
5d14b6e5 7899 rtype->field (f).set_type (field_type);
4c4b4cd2 7900 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
27f2a97b
JB
7901 /* The multiplication can potentially overflow. But because
7902 the field length has been size-checked just above, and
7903 assuming that the maximum size is a reasonable value,
7904 an overflow should not happen in practice. So rather than
7905 adding overflow recovery code to this already complex code,
7906 we just assume that it's not going to happen. */
d94e4f4f 7907 fld_bit_len =
940da03e 7908 TYPE_LENGTH (rtype->field (f).type ()) * TARGET_CHAR_BIT;
4c4b4cd2 7909 }
14f9c5c9 7910 else
4c4b4cd2 7911 {
5ded5331
JB
7912 /* Note: If this field's type is a typedef, it is important
7913 to preserve the typedef layer.
7914
7915 Otherwise, we might be transforming a typedef to a fat
7916 pointer (encoding a pointer to an unconstrained array),
7917 into a basic fat pointer (encoding an unconstrained
7918 array). As both types are implemented using the same
7919 structure, the typedef is the only clue which allows us
7920 to distinguish between the two options. Stripping it
7921 would prevent us from printing this field appropriately. */
940da03e 7922 rtype->field (f).set_type (type->field (f).type ());
4c4b4cd2
PH
7923 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
7924 if (TYPE_FIELD_BITSIZE (type, f) > 0)
d94e4f4f 7925 fld_bit_len =
4c4b4cd2
PH
7926 TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f);
7927 else
5ded5331 7928 {
940da03e 7929 struct type *field_type = type->field (f).type ();
5ded5331
JB
7930
7931 /* We need to be careful of typedefs when computing
7932 the length of our field. If this is a typedef,
7933 get the length of the target type, not the length
7934 of the typedef. */
78134374 7935 if (field_type->code () == TYPE_CODE_TYPEDEF)
5ded5331
JB
7936 field_type = ada_typedef_target_type (field_type);
7937
7938 fld_bit_len =
7939 TYPE_LENGTH (ada_check_typedef (field_type)) * TARGET_CHAR_BIT;
7940 }
4c4b4cd2 7941 }
14f9c5c9 7942 if (off + fld_bit_len > bit_len)
4c4b4cd2 7943 bit_len = off + fld_bit_len;
d94e4f4f 7944 off += fld_bit_len;
4c4b4cd2 7945 TYPE_LENGTH (rtype) =
a89febbd 7946 align_up (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
14f9c5c9 7947 }
4c4b4cd2
PH
7948
7949 /* We handle the variant part, if any, at the end because of certain
b1f33ddd 7950 odd cases in which it is re-ordered so as NOT to be the last field of
4c4b4cd2
PH
7951 the record. This can happen in the presence of representation
7952 clauses. */
7953 if (variant_field >= 0)
7954 {
7955 struct type *branch_type;
7956
7957 off = TYPE_FIELD_BITPOS (rtype, variant_field);
7958
7959 if (dval0 == NULL)
9f1f738a 7960 {
012370f6
TT
7961 /* Using plain value_from_contents_and_address here causes
7962 problems because we will end up trying to resolve a type
7963 that is currently being constructed. */
7964 dval = value_from_contents_and_address_unresolved (rtype, valaddr,
7965 address);
9f1f738a
SA
7966 rtype = value_type (dval);
7967 }
4c4b4cd2
PH
7968 else
7969 dval = dval0;
7970
7971 branch_type =
7972 to_fixed_variant_branch_type
940da03e 7973 (type->field (variant_field).type (),
4c4b4cd2
PH
7974 cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
7975 cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
7976 if (branch_type == NULL)
7977 {
1f704f76 7978 for (f = variant_field + 1; f < rtype->num_fields (); f += 1)
80fc5e77 7979 rtype->field (f - 1) = rtype->field (f);
5e33d5f4 7980 rtype->set_num_fields (rtype->num_fields () - 1);
4c4b4cd2
PH
7981 }
7982 else
7983 {
5d14b6e5 7984 rtype->field (variant_field).set_type (branch_type);
4c4b4cd2
PH
7985 TYPE_FIELD_NAME (rtype, variant_field) = "S";
7986 fld_bit_len =
940da03e 7987 TYPE_LENGTH (rtype->field (variant_field).type ()) *
4c4b4cd2
PH
7988 TARGET_CHAR_BIT;
7989 if (off + fld_bit_len > bit_len)
7990 bit_len = off + fld_bit_len;
7991 TYPE_LENGTH (rtype) =
a89febbd 7992 align_up (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
4c4b4cd2
PH
7993 }
7994 }
7995
714e53ab
PH
7996 /* According to exp_dbug.ads, the size of TYPE for variable-size records
7997 should contain the alignment of that record, which should be a strictly
7998 positive value. If null or negative, then something is wrong, most
7999 probably in the debug info. In that case, we don't round up the size
0963b4bd 8000 of the resulting type. If this record is not part of another structure,
714e53ab
PH
8001 the current RTYPE length might be good enough for our purposes. */
8002 if (TYPE_LENGTH (type) <= 0)
8003 {
7d93a1e0 8004 if (rtype->name ())
cc1defb1 8005 warning (_("Invalid type size for `%s' detected: %s."),
7d93a1e0 8006 rtype->name (), pulongest (TYPE_LENGTH (type)));
323e0a4a 8007 else
cc1defb1
KS
8008 warning (_("Invalid type size for <unnamed> detected: %s."),
8009 pulongest (TYPE_LENGTH (type)));
714e53ab
PH
8010 }
8011 else
8012 {
a89febbd
TT
8013 TYPE_LENGTH (rtype) = align_up (TYPE_LENGTH (rtype),
8014 TYPE_LENGTH (type));
714e53ab 8015 }
14f9c5c9
AS
8016
8017 value_free_to_mark (mark);
d2e4a39e 8018 if (TYPE_LENGTH (rtype) > varsize_limit)
323e0a4a 8019 error (_("record type with dynamic size is larger than varsize-limit"));
14f9c5c9
AS
8020 return rtype;
8021}
8022
4c4b4cd2
PH
8023/* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS
8024 of 1. */
14f9c5c9 8025
d2e4a39e 8026static struct type *
fc1a4b47 8027template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr,
4c4b4cd2
PH
8028 CORE_ADDR address, struct value *dval0)
8029{
8030 return ada_template_to_fixed_record_type_1 (type, valaddr,
8031 address, dval0, 1);
8032}
8033
8034/* An ordinary record type in which ___XVL-convention fields and
8035 ___XVU- and ___XVN-convention field types in TYPE0 are replaced with
8036 static approximations, containing all possible fields. Uses
8037 no runtime values. Useless for use in values, but that's OK,
8038 since the results are used only for type determinations. Works on both
8039 structs and unions. Representation note: to save space, we memorize
8040 the result of this function in the TYPE_TARGET_TYPE of the
8041 template type. */
8042
8043static struct type *
8044template_to_static_fixed_type (struct type *type0)
14f9c5c9
AS
8045{
8046 struct type *type;
8047 int nfields;
8048 int f;
8049
9e195661
PMR
8050 /* No need no do anything if the input type is already fixed. */
8051 if (TYPE_FIXED_INSTANCE (type0))
8052 return type0;
8053
8054 /* Likewise if we already have computed the static approximation. */
4c4b4cd2
PH
8055 if (TYPE_TARGET_TYPE (type0) != NULL)
8056 return TYPE_TARGET_TYPE (type0);
8057
9e195661 8058 /* Don't clone TYPE0 until we are sure we are going to need a copy. */
4c4b4cd2 8059 type = type0;
1f704f76 8060 nfields = type0->num_fields ();
9e195661
PMR
8061
8062 /* Whether or not we cloned TYPE0, cache the result so that we don't do
8063 recompute all over next time. */
8064 TYPE_TARGET_TYPE (type0) = type;
14f9c5c9
AS
8065
8066 for (f = 0; f < nfields; f += 1)
8067 {
940da03e 8068 struct type *field_type = type0->field (f).type ();
4c4b4cd2 8069 struct type *new_type;
14f9c5c9 8070
4c4b4cd2 8071 if (is_dynamic_field (type0, f))
460efde1
JB
8072 {
8073 field_type = ada_check_typedef (field_type);
8074 new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type));
8075 }
14f9c5c9 8076 else
f192137b 8077 new_type = static_unwrap_type (field_type);
9e195661
PMR
8078
8079 if (new_type != field_type)
8080 {
8081 /* Clone TYPE0 only the first time we get a new field type. */
8082 if (type == type0)
8083 {
8084 TYPE_TARGET_TYPE (type0) = type = alloc_type_copy (type0);
78134374 8085 type->set_code (type0->code ());
8ecb59f8 8086 INIT_NONE_SPECIFIC (type);
5e33d5f4 8087 type->set_num_fields (nfields);
3cabb6b0
SM
8088
8089 field *fields =
8090 ((struct field *)
8091 TYPE_ALLOC (type, nfields * sizeof (struct field)));
80fc5e77 8092 memcpy (fields, type0->fields (),
9e195661 8093 sizeof (struct field) * nfields);
3cabb6b0
SM
8094 type->set_fields (fields);
8095
d0e39ea2 8096 type->set_name (ada_type_name (type0));
9e195661
PMR
8097 TYPE_FIXED_INSTANCE (type) = 1;
8098 TYPE_LENGTH (type) = 0;
8099 }
5d14b6e5 8100 type->field (f).set_type (new_type);
9e195661
PMR
8101 TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f);
8102 }
14f9c5c9 8103 }
9e195661 8104
14f9c5c9
AS
8105 return type;
8106}
8107
4c4b4cd2 8108/* Given an object of type TYPE whose contents are at VALADDR and
5823c3ef
JB
8109 whose address in memory is ADDRESS, returns a revision of TYPE,
8110 which should be a non-dynamic-sized record, in which the variant
8111 part, if any, is replaced with the appropriate branch. Looks
4c4b4cd2
PH
8112 for discriminant values in DVAL0, which can be NULL if the record
8113 contains the necessary discriminant values. */
8114
d2e4a39e 8115static struct type *
fc1a4b47 8116to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr,
4c4b4cd2 8117 CORE_ADDR address, struct value *dval0)
14f9c5c9 8118{
d2e4a39e 8119 struct value *mark = value_mark ();
4c4b4cd2 8120 struct value *dval;
d2e4a39e 8121 struct type *rtype;
14f9c5c9 8122 struct type *branch_type;
1f704f76 8123 int nfields = type->num_fields ();
4c4b4cd2 8124 int variant_field = variant_field_index (type);
14f9c5c9 8125
4c4b4cd2 8126 if (variant_field == -1)
14f9c5c9
AS
8127 return type;
8128
4c4b4cd2 8129 if (dval0 == NULL)
9f1f738a
SA
8130 {
8131 dval = value_from_contents_and_address (type, valaddr, address);
8132 type = value_type (dval);
8133 }
4c4b4cd2
PH
8134 else
8135 dval = dval0;
8136
e9bb382b 8137 rtype = alloc_type_copy (type);
67607e24 8138 rtype->set_code (TYPE_CODE_STRUCT);
8ecb59f8 8139 INIT_NONE_SPECIFIC (rtype);
5e33d5f4 8140 rtype->set_num_fields (nfields);
3cabb6b0
SM
8141
8142 field *fields =
d2e4a39e 8143 (struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field));
80fc5e77 8144 memcpy (fields, type->fields (), sizeof (struct field) * nfields);
3cabb6b0
SM
8145 rtype->set_fields (fields);
8146
d0e39ea2 8147 rtype->set_name (ada_type_name (type));
876cecd0 8148 TYPE_FIXED_INSTANCE (rtype) = 1;
14f9c5c9
AS
8149 TYPE_LENGTH (rtype) = TYPE_LENGTH (type);
8150
4c4b4cd2 8151 branch_type = to_fixed_variant_branch_type
940da03e 8152 (type->field (variant_field).type (),
d2e4a39e 8153 cond_offset_host (valaddr,
4c4b4cd2
PH
8154 TYPE_FIELD_BITPOS (type, variant_field)
8155 / TARGET_CHAR_BIT),
d2e4a39e 8156 cond_offset_target (address,
4c4b4cd2
PH
8157 TYPE_FIELD_BITPOS (type, variant_field)
8158 / TARGET_CHAR_BIT), dval);
d2e4a39e 8159 if (branch_type == NULL)
14f9c5c9 8160 {
4c4b4cd2 8161 int f;
5b4ee69b 8162
4c4b4cd2 8163 for (f = variant_field + 1; f < nfields; f += 1)
80fc5e77 8164 rtype->field (f - 1) = rtype->field (f);
5e33d5f4 8165 rtype->set_num_fields (rtype->num_fields () - 1);
14f9c5c9
AS
8166 }
8167 else
8168 {
5d14b6e5 8169 rtype->field (variant_field).set_type (branch_type);
4c4b4cd2
PH
8170 TYPE_FIELD_NAME (rtype, variant_field) = "S";
8171 TYPE_FIELD_BITSIZE (rtype, variant_field) = 0;
14f9c5c9 8172 TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type);
14f9c5c9 8173 }
940da03e 8174 TYPE_LENGTH (rtype) -= TYPE_LENGTH (type->field (variant_field).type ());
d2e4a39e 8175
4c4b4cd2 8176 value_free_to_mark (mark);
14f9c5c9
AS
8177 return rtype;
8178}
8179
8180/* An ordinary record type (with fixed-length fields) that describes
8181 the value at (TYPE0, VALADDR, ADDRESS) [see explanation at
8182 beginning of this section]. Any necessary discriminants' values
4c4b4cd2
PH
8183 should be in DVAL, a record value; it may be NULL if the object
8184 at ADDR itself contains any necessary discriminant values.
8185 Additionally, VALADDR and ADDRESS may also be NULL if no discriminant
8186 values from the record are needed. Except in the case that DVAL,
8187 VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless
8188 unchecked) is replaced by a particular branch of the variant.
8189
8190 NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0
8191 is questionable and may be removed. It can arise during the
8192 processing of an unconstrained-array-of-record type where all the
8193 variant branches have exactly the same size. This is because in
8194 such cases, the compiler does not bother to use the XVS convention
8195 when encoding the record. I am currently dubious of this
8196 shortcut and suspect the compiler should be altered. FIXME. */
14f9c5c9 8197
d2e4a39e 8198static struct type *
fc1a4b47 8199to_fixed_record_type (struct type *type0, const gdb_byte *valaddr,
4c4b4cd2 8200 CORE_ADDR address, struct value *dval)
14f9c5c9 8201{
d2e4a39e 8202 struct type *templ_type;
14f9c5c9 8203
876cecd0 8204 if (TYPE_FIXED_INSTANCE (type0))
4c4b4cd2
PH
8205 return type0;
8206
d2e4a39e 8207 templ_type = dynamic_template_type (type0);
14f9c5c9
AS
8208
8209 if (templ_type != NULL)
8210 return template_to_fixed_record_type (templ_type, valaddr, address, dval);
4c4b4cd2
PH
8211 else if (variant_field_index (type0) >= 0)
8212 {
8213 if (dval == NULL && valaddr == NULL && address == 0)
8214 return type0;
8215 return to_record_with_fixed_variant_part (type0, valaddr, address,
8216 dval);
8217 }
14f9c5c9
AS
8218 else
8219 {
876cecd0 8220 TYPE_FIXED_INSTANCE (type0) = 1;
14f9c5c9
AS
8221 return type0;
8222 }
8223
8224}
8225
8226/* An ordinary record type (with fixed-length fields) that describes
8227 the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a
8228 union type. Any necessary discriminants' values should be in DVAL,
8229 a record value. That is, this routine selects the appropriate
8230 branch of the union at ADDR according to the discriminant value
b1f33ddd 8231 indicated in the union's type name. Returns VAR_TYPE0 itself if
0963b4bd 8232 it represents a variant subject to a pragma Unchecked_Union. */
14f9c5c9 8233
d2e4a39e 8234static struct type *
fc1a4b47 8235to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr,
4c4b4cd2 8236 CORE_ADDR address, struct value *dval)
14f9c5c9
AS
8237{
8238 int which;
d2e4a39e
AS
8239 struct type *templ_type;
8240 struct type *var_type;
14f9c5c9 8241
78134374 8242 if (var_type0->code () == TYPE_CODE_PTR)
14f9c5c9 8243 var_type = TYPE_TARGET_TYPE (var_type0);
d2e4a39e 8244 else
14f9c5c9
AS
8245 var_type = var_type0;
8246
8247 templ_type = ada_find_parallel_type (var_type, "___XVU");
8248
8249 if (templ_type != NULL)
8250 var_type = templ_type;
8251
b1f33ddd
JB
8252 if (is_unchecked_variant (var_type, value_type (dval)))
8253 return var_type0;
d8af9068 8254 which = ada_which_variant_applies (var_type, dval);
14f9c5c9
AS
8255
8256 if (which < 0)
e9bb382b 8257 return empty_record (var_type);
14f9c5c9 8258 else if (is_dynamic_field (var_type, which))
4c4b4cd2 8259 return to_fixed_record_type
940da03e 8260 (TYPE_TARGET_TYPE (var_type->field (which).type ()),
d2e4a39e 8261 valaddr, address, dval);
940da03e 8262 else if (variant_field_index (var_type->field (which).type ()) >= 0)
d2e4a39e
AS
8263 return
8264 to_fixed_record_type
940da03e 8265 (var_type->field (which).type (), valaddr, address, dval);
14f9c5c9 8266 else
940da03e 8267 return var_type->field (which).type ();
14f9c5c9
AS
8268}
8269
8908fca5
JB
8270/* Assuming RANGE_TYPE is a TYPE_CODE_RANGE, return nonzero if
8271 ENCODING_TYPE, a type following the GNAT conventions for discrete
8272 type encodings, only carries redundant information. */
8273
8274static int
8275ada_is_redundant_range_encoding (struct type *range_type,
8276 struct type *encoding_type)
8277{
108d56a4 8278 const char *bounds_str;
8908fca5
JB
8279 int n;
8280 LONGEST lo, hi;
8281
78134374 8282 gdb_assert (range_type->code () == TYPE_CODE_RANGE);
8908fca5 8283
78134374
SM
8284 if (get_base_type (range_type)->code ()
8285 != get_base_type (encoding_type)->code ())
005e2509
JB
8286 {
8287 /* The compiler probably used a simple base type to describe
8288 the range type instead of the range's actual base type,
8289 expecting us to get the real base type from the encoding
8290 anyway. In this situation, the encoding cannot be ignored
8291 as redundant. */
8292 return 0;
8293 }
8294
8908fca5
JB
8295 if (is_dynamic_type (range_type))
8296 return 0;
8297
7d93a1e0 8298 if (encoding_type->name () == NULL)
8908fca5
JB
8299 return 0;
8300
7d93a1e0 8301 bounds_str = strstr (encoding_type->name (), "___XDLU_");
8908fca5
JB
8302 if (bounds_str == NULL)
8303 return 0;
8304
8305 n = 8; /* Skip "___XDLU_". */
8306 if (!ada_scan_number (bounds_str, n, &lo, &n))
8307 return 0;
8308 if (TYPE_LOW_BOUND (range_type) != lo)
8309 return 0;
8310
8311 n += 2; /* Skip the "__" separator between the two bounds. */
8312 if (!ada_scan_number (bounds_str, n, &hi, &n))
8313 return 0;
8314 if (TYPE_HIGH_BOUND (range_type) != hi)
8315 return 0;
8316
8317 return 1;
8318}
8319
8320/* Given the array type ARRAY_TYPE, return nonzero if DESC_TYPE,
8321 a type following the GNAT encoding for describing array type
8322 indices, only carries redundant information. */
8323
8324static int
8325ada_is_redundant_index_type_desc (struct type *array_type,
8326 struct type *desc_type)
8327{
8328 struct type *this_layer = check_typedef (array_type);
8329 int i;
8330
1f704f76 8331 for (i = 0; i < desc_type->num_fields (); i++)
8908fca5 8332 {
3d967001 8333 if (!ada_is_redundant_range_encoding (this_layer->index_type (),
940da03e 8334 desc_type->field (i).type ()))
8908fca5
JB
8335 return 0;
8336 this_layer = check_typedef (TYPE_TARGET_TYPE (this_layer));
8337 }
8338
8339 return 1;
8340}
8341
14f9c5c9
AS
8342/* Assuming that TYPE0 is an array type describing the type of a value
8343 at ADDR, and that DVAL describes a record containing any
8344 discriminants used in TYPE0, returns a type for the value that
8345 contains no dynamic components (that is, no components whose sizes
8346 are determined by run-time quantities). Unless IGNORE_TOO_BIG is
8347 true, gives an error message if the resulting type's size is over
4c4b4cd2 8348 varsize_limit. */
14f9c5c9 8349
d2e4a39e
AS
8350static struct type *
8351to_fixed_array_type (struct type *type0, struct value *dval,
4c4b4cd2 8352 int ignore_too_big)
14f9c5c9 8353{
d2e4a39e
AS
8354 struct type *index_type_desc;
8355 struct type *result;
ad82864c 8356 int constrained_packed_array_p;
931e5bc3 8357 static const char *xa_suffix = "___XA";
14f9c5c9 8358
b0dd7688 8359 type0 = ada_check_typedef (type0);
284614f0 8360 if (TYPE_FIXED_INSTANCE (type0))
4c4b4cd2 8361 return type0;
14f9c5c9 8362
ad82864c
JB
8363 constrained_packed_array_p = ada_is_constrained_packed_array_type (type0);
8364 if (constrained_packed_array_p)
8365 type0 = decode_constrained_packed_array_type (type0);
284614f0 8366
931e5bc3
JG
8367 index_type_desc = ada_find_parallel_type (type0, xa_suffix);
8368
8369 /* As mentioned in exp_dbug.ads, for non bit-packed arrays an
8370 encoding suffixed with 'P' may still be generated. If so,
8371 it should be used to find the XA type. */
8372
8373 if (index_type_desc == NULL)
8374 {
1da0522e 8375 const char *type_name = ada_type_name (type0);
931e5bc3 8376
1da0522e 8377 if (type_name != NULL)
931e5bc3 8378 {
1da0522e 8379 const int len = strlen (type_name);
931e5bc3
JG
8380 char *name = (char *) alloca (len + strlen (xa_suffix));
8381
1da0522e 8382 if (type_name[len - 1] == 'P')
931e5bc3 8383 {
1da0522e 8384 strcpy (name, type_name);
931e5bc3
JG
8385 strcpy (name + len - 1, xa_suffix);
8386 index_type_desc = ada_find_parallel_type_with_name (type0, name);
8387 }
8388 }
8389 }
8390
28c85d6c 8391 ada_fixup_array_indexes_type (index_type_desc);
8908fca5
JB
8392 if (index_type_desc != NULL
8393 && ada_is_redundant_index_type_desc (type0, index_type_desc))
8394 {
8395 /* Ignore this ___XA parallel type, as it does not bring any
8396 useful information. This allows us to avoid creating fixed
8397 versions of the array's index types, which would be identical
8398 to the original ones. This, in turn, can also help avoid
8399 the creation of fixed versions of the array itself. */
8400 index_type_desc = NULL;
8401 }
8402
14f9c5c9
AS
8403 if (index_type_desc == NULL)
8404 {
61ee279c 8405 struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0));
5b4ee69b 8406
14f9c5c9 8407 /* NOTE: elt_type---the fixed version of elt_type0---should never
4c4b4cd2
PH
8408 depend on the contents of the array in properly constructed
8409 debugging data. */
529cad9c
PH
8410 /* Create a fixed version of the array element type.
8411 We're not providing the address of an element here,
e1d5a0d2 8412 and thus the actual object value cannot be inspected to do
529cad9c
PH
8413 the conversion. This should not be a problem, since arrays of
8414 unconstrained objects are not allowed. In particular, all
8415 the elements of an array of a tagged type should all be of
8416 the same type specified in the debugging info. No need to
8417 consult the object tag. */
1ed6ede0 8418 struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval, 1);
14f9c5c9 8419
284614f0
JB
8420 /* Make sure we always create a new array type when dealing with
8421 packed array types, since we're going to fix-up the array
8422 type length and element bitsize a little further down. */
ad82864c 8423 if (elt_type0 == elt_type && !constrained_packed_array_p)
4c4b4cd2 8424 result = type0;
14f9c5c9 8425 else
e9bb382b 8426 result = create_array_type (alloc_type_copy (type0),
3d967001 8427 elt_type, type0->index_type ());
14f9c5c9
AS
8428 }
8429 else
8430 {
8431 int i;
8432 struct type *elt_type0;
8433
8434 elt_type0 = type0;
1f704f76 8435 for (i = index_type_desc->num_fields (); i > 0; i -= 1)
4c4b4cd2 8436 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
14f9c5c9
AS
8437
8438 /* NOTE: result---the fixed version of elt_type0---should never
4c4b4cd2
PH
8439 depend on the contents of the array in properly constructed
8440 debugging data. */
529cad9c
PH
8441 /* Create a fixed version of the array element type.
8442 We're not providing the address of an element here,
e1d5a0d2 8443 and thus the actual object value cannot be inspected to do
529cad9c
PH
8444 the conversion. This should not be a problem, since arrays of
8445 unconstrained objects are not allowed. In particular, all
8446 the elements of an array of a tagged type should all be of
8447 the same type specified in the debugging info. No need to
8448 consult the object tag. */
1ed6ede0
JB
8449 result =
8450 ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval, 1);
1ce677a4
UW
8451
8452 elt_type0 = type0;
1f704f76 8453 for (i = index_type_desc->num_fields () - 1; i >= 0; i -= 1)
4c4b4cd2
PH
8454 {
8455 struct type *range_type =
940da03e 8456 to_fixed_range_type (index_type_desc->field (i).type (), dval);
5b4ee69b 8457
e9bb382b 8458 result = create_array_type (alloc_type_copy (elt_type0),
4c4b4cd2 8459 result, range_type);
1ce677a4 8460 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
4c4b4cd2 8461 }
d2e4a39e 8462 if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit)
323e0a4a 8463 error (_("array type with dynamic size is larger than varsize-limit"));
14f9c5c9
AS
8464 }
8465
2e6fda7d
JB
8466 /* We want to preserve the type name. This can be useful when
8467 trying to get the type name of a value that has already been
8468 printed (for instance, if the user did "print VAR; whatis $". */
7d93a1e0 8469 result->set_name (type0->name ());
2e6fda7d 8470
ad82864c 8471 if (constrained_packed_array_p)
284614f0
JB
8472 {
8473 /* So far, the resulting type has been created as if the original
8474 type was a regular (non-packed) array type. As a result, the
8475 bitsize of the array elements needs to be set again, and the array
8476 length needs to be recomputed based on that bitsize. */
8477 int len = TYPE_LENGTH (result) / TYPE_LENGTH (TYPE_TARGET_TYPE (result));
8478 int elt_bitsize = TYPE_FIELD_BITSIZE (type0, 0);
8479
8480 TYPE_FIELD_BITSIZE (result, 0) = TYPE_FIELD_BITSIZE (type0, 0);
8481 TYPE_LENGTH (result) = len * elt_bitsize / HOST_CHAR_BIT;
8482 if (TYPE_LENGTH (result) * HOST_CHAR_BIT < len * elt_bitsize)
8483 TYPE_LENGTH (result)++;
8484 }
8485
876cecd0 8486 TYPE_FIXED_INSTANCE (result) = 1;
14f9c5c9 8487 return result;
d2e4a39e 8488}
14f9c5c9
AS
8489
8490
8491/* A standard type (containing no dynamically sized components)
8492 corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS)
8493 DVAL describes a record containing any discriminants used in TYPE0,
4c4b4cd2 8494 and may be NULL if there are none, or if the object of type TYPE at
529cad9c
PH
8495 ADDRESS or in VALADDR contains these discriminants.
8496
1ed6ede0
JB
8497 If CHECK_TAG is not null, in the case of tagged types, this function
8498 attempts to locate the object's tag and use it to compute the actual
8499 type. However, when ADDRESS is null, we cannot use it to determine the
8500 location of the tag, and therefore compute the tagged type's actual type.
8501 So we return the tagged type without consulting the tag. */
529cad9c 8502
f192137b
JB
8503static struct type *
8504ada_to_fixed_type_1 (struct type *type, const gdb_byte *valaddr,
1ed6ede0 8505 CORE_ADDR address, struct value *dval, int check_tag)
14f9c5c9 8506{
61ee279c 8507 type = ada_check_typedef (type);
8ecb59f8
TT
8508
8509 /* Only un-fixed types need to be handled here. */
8510 if (!HAVE_GNAT_AUX_INFO (type))
8511 return type;
8512
78134374 8513 switch (type->code ())
d2e4a39e
AS
8514 {
8515 default:
14f9c5c9 8516 return type;
d2e4a39e 8517 case TYPE_CODE_STRUCT:
4c4b4cd2 8518 {
76a01679 8519 struct type *static_type = to_static_fixed_type (type);
1ed6ede0
JB
8520 struct type *fixed_record_type =
8521 to_fixed_record_type (type, valaddr, address, NULL);
5b4ee69b 8522
529cad9c
PH
8523 /* If STATIC_TYPE is a tagged type and we know the object's address,
8524 then we can determine its tag, and compute the object's actual
0963b4bd 8525 type from there. Note that we have to use the fixed record
1ed6ede0
JB
8526 type (the parent part of the record may have dynamic fields
8527 and the way the location of _tag is expressed may depend on
8528 them). */
529cad9c 8529
1ed6ede0 8530 if (check_tag && address != 0 && ada_is_tagged_type (static_type, 0))
76a01679 8531 {
b50d69b5
JG
8532 struct value *tag =
8533 value_tag_from_contents_and_address
8534 (fixed_record_type,
8535 valaddr,
8536 address);
8537 struct type *real_type = type_from_tag (tag);
8538 struct value *obj =
8539 value_from_contents_and_address (fixed_record_type,
8540 valaddr,
8541 address);
9f1f738a 8542 fixed_record_type = value_type (obj);
76a01679 8543 if (real_type != NULL)
b50d69b5
JG
8544 return to_fixed_record_type
8545 (real_type, NULL,
8546 value_address (ada_tag_value_at_base_address (obj)), NULL);
76a01679 8547 }
4af88198
JB
8548
8549 /* Check to see if there is a parallel ___XVZ variable.
8550 If there is, then it provides the actual size of our type. */
8551 else if (ada_type_name (fixed_record_type) != NULL)
8552 {
0d5cff50 8553 const char *name = ada_type_name (fixed_record_type);
224c3ddb
SM
8554 char *xvz_name
8555 = (char *) alloca (strlen (name) + 7 /* "___XVZ\0" */);
eccab96d 8556 bool xvz_found = false;
4af88198
JB
8557 LONGEST size;
8558
88c15c34 8559 xsnprintf (xvz_name, strlen (name) + 7, "%s___XVZ", name);
a70b8144 8560 try
eccab96d
JB
8561 {
8562 xvz_found = get_int_var_value (xvz_name, size);
8563 }
230d2906 8564 catch (const gdb_exception_error &except)
eccab96d
JB
8565 {
8566 /* We found the variable, but somehow failed to read
8567 its value. Rethrow the same error, but with a little
8568 bit more information, to help the user understand
8569 what went wrong (Eg: the variable might have been
8570 optimized out). */
8571 throw_error (except.error,
8572 _("unable to read value of %s (%s)"),
3d6e9d23 8573 xvz_name, except.what ());
eccab96d 8574 }
eccab96d
JB
8575
8576 if (xvz_found && TYPE_LENGTH (fixed_record_type) != size)
4af88198
JB
8577 {
8578 fixed_record_type = copy_type (fixed_record_type);
8579 TYPE_LENGTH (fixed_record_type) = size;
8580
8581 /* The FIXED_RECORD_TYPE may have be a stub. We have
8582 observed this when the debugging info is STABS, and
8583 apparently it is something that is hard to fix.
8584
8585 In practice, we don't need the actual type definition
8586 at all, because the presence of the XVZ variable allows us
8587 to assume that there must be a XVS type as well, which we
8588 should be able to use later, when we need the actual type
8589 definition.
8590
8591 In the meantime, pretend that the "fixed" type we are
8592 returning is NOT a stub, because this can cause trouble
8593 when using this type to create new types targeting it.
8594 Indeed, the associated creation routines often check
8595 whether the target type is a stub and will try to replace
0963b4bd 8596 it, thus using a type with the wrong size. This, in turn,
4af88198
JB
8597 might cause the new type to have the wrong size too.
8598 Consider the case of an array, for instance, where the size
8599 of the array is computed from the number of elements in
8600 our array multiplied by the size of its element. */
8601 TYPE_STUB (fixed_record_type) = 0;
8602 }
8603 }
1ed6ede0 8604 return fixed_record_type;
4c4b4cd2 8605 }
d2e4a39e 8606 case TYPE_CODE_ARRAY:
4c4b4cd2 8607 return to_fixed_array_type (type, dval, 1);
d2e4a39e
AS
8608 case TYPE_CODE_UNION:
8609 if (dval == NULL)
4c4b4cd2 8610 return type;
d2e4a39e 8611 else
4c4b4cd2 8612 return to_fixed_variant_branch_type (type, valaddr, address, dval);
d2e4a39e 8613 }
14f9c5c9
AS
8614}
8615
f192137b
JB
8616/* The same as ada_to_fixed_type_1, except that it preserves the type
8617 if it is a TYPE_CODE_TYPEDEF of a type that is already fixed.
96dbd2c1
JB
8618
8619 The typedef layer needs be preserved in order to differentiate between
8620 arrays and array pointers when both types are implemented using the same
8621 fat pointer. In the array pointer case, the pointer is encoded as
8622 a typedef of the pointer type. For instance, considering:
8623
8624 type String_Access is access String;
8625 S1 : String_Access := null;
8626
8627 To the debugger, S1 is defined as a typedef of type String. But
8628 to the user, it is a pointer. So if the user tries to print S1,
8629 we should not dereference the array, but print the array address
8630 instead.
8631
8632 If we didn't preserve the typedef layer, we would lose the fact that
8633 the type is to be presented as a pointer (needs de-reference before
8634 being printed). And we would also use the source-level type name. */
f192137b
JB
8635
8636struct type *
8637ada_to_fixed_type (struct type *type, const gdb_byte *valaddr,
8638 CORE_ADDR address, struct value *dval, int check_tag)
8639
8640{
8641 struct type *fixed_type =
8642 ada_to_fixed_type_1 (type, valaddr, address, dval, check_tag);
8643
96dbd2c1
JB
8644 /* If TYPE is a typedef and its target type is the same as the FIXED_TYPE,
8645 then preserve the typedef layer.
8646
8647 Implementation note: We can only check the main-type portion of
8648 the TYPE and FIXED_TYPE, because eliminating the typedef layer
8649 from TYPE now returns a type that has the same instance flags
8650 as TYPE. For instance, if TYPE is a "typedef const", and its
8651 target type is a "struct", then the typedef elimination will return
8652 a "const" version of the target type. See check_typedef for more
8653 details about how the typedef layer elimination is done.
8654
8655 brobecker/2010-11-19: It seems to me that the only case where it is
8656 useful to preserve the typedef layer is when dealing with fat pointers.
8657 Perhaps, we could add a check for that and preserve the typedef layer
85102364 8658 only in that situation. But this seems unnecessary so far, probably
96dbd2c1
JB
8659 because we call check_typedef/ada_check_typedef pretty much everywhere.
8660 */
78134374 8661 if (type->code () == TYPE_CODE_TYPEDEF
720d1a40 8662 && (TYPE_MAIN_TYPE (ada_typedef_target_type (type))
96dbd2c1 8663 == TYPE_MAIN_TYPE (fixed_type)))
f192137b
JB
8664 return type;
8665
8666 return fixed_type;
8667}
8668
14f9c5c9 8669/* A standard (static-sized) type corresponding as well as possible to
4c4b4cd2 8670 TYPE0, but based on no runtime data. */
14f9c5c9 8671
d2e4a39e
AS
8672static struct type *
8673to_static_fixed_type (struct type *type0)
14f9c5c9 8674{
d2e4a39e 8675 struct type *type;
14f9c5c9
AS
8676
8677 if (type0 == NULL)
8678 return NULL;
8679
876cecd0 8680 if (TYPE_FIXED_INSTANCE (type0))
4c4b4cd2
PH
8681 return type0;
8682
61ee279c 8683 type0 = ada_check_typedef (type0);
d2e4a39e 8684
78134374 8685 switch (type0->code ())
14f9c5c9
AS
8686 {
8687 default:
8688 return type0;
8689 case TYPE_CODE_STRUCT:
8690 type = dynamic_template_type (type0);
d2e4a39e 8691 if (type != NULL)
4c4b4cd2
PH
8692 return template_to_static_fixed_type (type);
8693 else
8694 return template_to_static_fixed_type (type0);
14f9c5c9
AS
8695 case TYPE_CODE_UNION:
8696 type = ada_find_parallel_type (type0, "___XVU");
8697 if (type != NULL)
4c4b4cd2
PH
8698 return template_to_static_fixed_type (type);
8699 else
8700 return template_to_static_fixed_type (type0);
14f9c5c9
AS
8701 }
8702}
8703
4c4b4cd2
PH
8704/* A static approximation of TYPE with all type wrappers removed. */
8705
d2e4a39e
AS
8706static struct type *
8707static_unwrap_type (struct type *type)
14f9c5c9
AS
8708{
8709 if (ada_is_aligner_type (type))
8710 {
940da03e 8711 struct type *type1 = ada_check_typedef (type)->field (0).type ();
14f9c5c9 8712 if (ada_type_name (type1) == NULL)
d0e39ea2 8713 type1->set_name (ada_type_name (type));
14f9c5c9
AS
8714
8715 return static_unwrap_type (type1);
8716 }
d2e4a39e 8717 else
14f9c5c9 8718 {
d2e4a39e 8719 struct type *raw_real_type = ada_get_base_type (type);
5b4ee69b 8720
d2e4a39e 8721 if (raw_real_type == type)
4c4b4cd2 8722 return type;
14f9c5c9 8723 else
4c4b4cd2 8724 return to_static_fixed_type (raw_real_type);
14f9c5c9
AS
8725 }
8726}
8727
8728/* In some cases, incomplete and private types require
4c4b4cd2 8729 cross-references that are not resolved as records (for example,
14f9c5c9
AS
8730 type Foo;
8731 type FooP is access Foo;
8732 V: FooP;
8733 type Foo is array ...;
4c4b4cd2 8734 ). In these cases, since there is no mechanism for producing
14f9c5c9
AS
8735 cross-references to such types, we instead substitute for FooP a
8736 stub enumeration type that is nowhere resolved, and whose tag is
4c4b4cd2 8737 the name of the actual type. Call these types "non-record stubs". */
14f9c5c9
AS
8738
8739/* A type equivalent to TYPE that is not a non-record stub, if one
4c4b4cd2
PH
8740 exists, otherwise TYPE. */
8741
d2e4a39e 8742struct type *
61ee279c 8743ada_check_typedef (struct type *type)
14f9c5c9 8744{
727e3d2e
JB
8745 if (type == NULL)
8746 return NULL;
8747
736ade86
XR
8748 /* If our type is an access to an unconstrained array, which is encoded
8749 as a TYPE_CODE_TYPEDEF of a fat pointer, then we're done.
720d1a40
JB
8750 We don't want to strip the TYPE_CODE_TYPDEF layer, because this is
8751 what allows us to distinguish between fat pointers that represent
8752 array types, and fat pointers that represent array access types
8753 (in both cases, the compiler implements them as fat pointers). */
736ade86 8754 if (ada_is_access_to_unconstrained_array (type))
720d1a40
JB
8755 return type;
8756
f168693b 8757 type = check_typedef (type);
78134374 8758 if (type == NULL || type->code () != TYPE_CODE_ENUM
529cad9c 8759 || !TYPE_STUB (type)
7d93a1e0 8760 || type->name () == NULL)
14f9c5c9 8761 return type;
d2e4a39e 8762 else
14f9c5c9 8763 {
7d93a1e0 8764 const char *name = type->name ();
d2e4a39e 8765 struct type *type1 = ada_find_any_type (name);
5b4ee69b 8766
05e522ef
JB
8767 if (type1 == NULL)
8768 return type;
8769
8770 /* TYPE1 might itself be a TYPE_CODE_TYPEDEF (this can happen with
8771 stubs pointing to arrays, as we don't create symbols for array
3a867c22
JB
8772 types, only for the typedef-to-array types). If that's the case,
8773 strip the typedef layer. */
78134374 8774 if (type1->code () == TYPE_CODE_TYPEDEF)
3a867c22
JB
8775 type1 = ada_check_typedef (type1);
8776
8777 return type1;
14f9c5c9
AS
8778 }
8779}
8780
8781/* A value representing the data at VALADDR/ADDRESS as described by
8782 type TYPE0, but with a standard (static-sized) type that correctly
8783 describes it. If VAL0 is not NULL and TYPE0 already is a standard
8784 type, then return VAL0 [this feature is simply to avoid redundant
4c4b4cd2 8785 creation of struct values]. */
14f9c5c9 8786
4c4b4cd2
PH
8787static struct value *
8788ada_to_fixed_value_create (struct type *type0, CORE_ADDR address,
8789 struct value *val0)
14f9c5c9 8790{
1ed6ede0 8791 struct type *type = ada_to_fixed_type (type0, 0, address, NULL, 1);
5b4ee69b 8792
14f9c5c9
AS
8793 if (type == type0 && val0 != NULL)
8794 return val0;
cc0e770c
JB
8795
8796 if (VALUE_LVAL (val0) != lval_memory)
8797 {
8798 /* Our value does not live in memory; it could be a convenience
8799 variable, for instance. Create a not_lval value using val0's
8800 contents. */
8801 return value_from_contents (type, value_contents (val0));
8802 }
8803
8804 return value_from_contents_and_address (type, 0, address);
4c4b4cd2
PH
8805}
8806
8807/* A value representing VAL, but with a standard (static-sized) type
8808 that correctly describes it. Does not necessarily create a new
8809 value. */
8810
0c3acc09 8811struct value *
4c4b4cd2
PH
8812ada_to_fixed_value (struct value *val)
8813{
c48db5ca 8814 val = unwrap_value (val);
d8ce9127 8815 val = ada_to_fixed_value_create (value_type (val), value_address (val), val);
c48db5ca 8816 return val;
14f9c5c9 8817}
d2e4a39e 8818\f
14f9c5c9 8819
14f9c5c9
AS
8820/* Attributes */
8821
4c4b4cd2
PH
8822/* Table mapping attribute numbers to names.
8823 NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */
14f9c5c9 8824
d2e4a39e 8825static const char *attribute_names[] = {
14f9c5c9
AS
8826 "<?>",
8827
d2e4a39e 8828 "first",
14f9c5c9
AS
8829 "last",
8830 "length",
8831 "image",
14f9c5c9
AS
8832 "max",
8833 "min",
4c4b4cd2
PH
8834 "modulus",
8835 "pos",
8836 "size",
8837 "tag",
14f9c5c9 8838 "val",
14f9c5c9
AS
8839 0
8840};
8841
de93309a 8842static const char *
4c4b4cd2 8843ada_attribute_name (enum exp_opcode n)
14f9c5c9 8844{
4c4b4cd2
PH
8845 if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL)
8846 return attribute_names[n - OP_ATR_FIRST + 1];
14f9c5c9
AS
8847 else
8848 return attribute_names[0];
8849}
8850
4c4b4cd2 8851/* Evaluate the 'POS attribute applied to ARG. */
14f9c5c9 8852
4c4b4cd2
PH
8853static LONGEST
8854pos_atr (struct value *arg)
14f9c5c9 8855{
24209737
PH
8856 struct value *val = coerce_ref (arg);
8857 struct type *type = value_type (val);
aa715135 8858 LONGEST result;
14f9c5c9 8859
d2e4a39e 8860 if (!discrete_type_p (type))
323e0a4a 8861 error (_("'POS only defined on discrete types"));
14f9c5c9 8862
aa715135
JG
8863 if (!discrete_position (type, value_as_long (val), &result))
8864 error (_("enumeration value is invalid: can't find 'POS"));
14f9c5c9 8865
aa715135 8866 return result;
4c4b4cd2
PH
8867}
8868
8869static struct value *
3cb382c9 8870value_pos_atr (struct type *type, struct value *arg)
4c4b4cd2 8871{
3cb382c9 8872 return value_from_longest (type, pos_atr (arg));
14f9c5c9
AS
8873}
8874
4c4b4cd2 8875/* Evaluate the TYPE'VAL attribute applied to ARG. */
14f9c5c9 8876
d2e4a39e 8877static struct value *
53a47a3e 8878val_atr (struct type *type, LONGEST val)
14f9c5c9 8879{
53a47a3e 8880 gdb_assert (discrete_type_p (type));
0bc2354b
TT
8881 if (type->code () == TYPE_CODE_RANGE)
8882 type = TYPE_TARGET_TYPE (type);
78134374 8883 if (type->code () == TYPE_CODE_ENUM)
14f9c5c9 8884 {
53a47a3e 8885 if (val < 0 || val >= type->num_fields ())
323e0a4a 8886 error (_("argument to 'VAL out of range"));
53a47a3e 8887 val = TYPE_FIELD_ENUMVAL (type, val);
14f9c5c9 8888 }
53a47a3e
TT
8889 return value_from_longest (type, val);
8890}
8891
8892static struct value *
8893value_val_atr (struct type *type, struct value *arg)
8894{
8895 if (!discrete_type_p (type))
8896 error (_("'VAL only defined on discrete types"));
8897 if (!integer_type_p (value_type (arg)))
8898 error (_("'VAL requires integral argument"));
8899
8900 return val_atr (type, value_as_long (arg));
14f9c5c9 8901}
14f9c5c9 8902\f
d2e4a39e 8903
4c4b4cd2 8904 /* Evaluation */
14f9c5c9 8905
4c4b4cd2
PH
8906/* True if TYPE appears to be an Ada character type.
8907 [At the moment, this is true only for Character and Wide_Character;
8908 It is a heuristic test that could stand improvement]. */
14f9c5c9 8909
fc913e53 8910bool
d2e4a39e 8911ada_is_character_type (struct type *type)
14f9c5c9 8912{
7b9f71f2
JB
8913 const char *name;
8914
8915 /* If the type code says it's a character, then assume it really is,
8916 and don't check any further. */
78134374 8917 if (type->code () == TYPE_CODE_CHAR)
fc913e53 8918 return true;
7b9f71f2
JB
8919
8920 /* Otherwise, assume it's a character type iff it is a discrete type
8921 with a known character type name. */
8922 name = ada_type_name (type);
8923 return (name != NULL
78134374
SM
8924 && (type->code () == TYPE_CODE_INT
8925 || type->code () == TYPE_CODE_RANGE)
7b9f71f2
JB
8926 && (strcmp (name, "character") == 0
8927 || strcmp (name, "wide_character") == 0
5a517ebd 8928 || strcmp (name, "wide_wide_character") == 0
7b9f71f2 8929 || strcmp (name, "unsigned char") == 0));
14f9c5c9
AS
8930}
8931
4c4b4cd2 8932/* True if TYPE appears to be an Ada string type. */
14f9c5c9 8933
fc913e53 8934bool
ebf56fd3 8935ada_is_string_type (struct type *type)
14f9c5c9 8936{
61ee279c 8937 type = ada_check_typedef (type);
d2e4a39e 8938 if (type != NULL
78134374 8939 && type->code () != TYPE_CODE_PTR
76a01679
JB
8940 && (ada_is_simple_array_type (type)
8941 || ada_is_array_descriptor_type (type))
14f9c5c9
AS
8942 && ada_array_arity (type) == 1)
8943 {
8944 struct type *elttype = ada_array_element_type (type, 1);
8945
8946 return ada_is_character_type (elttype);
8947 }
d2e4a39e 8948 else
fc913e53 8949 return false;
14f9c5c9
AS
8950}
8951
5bf03f13
JB
8952/* The compiler sometimes provides a parallel XVS type for a given
8953 PAD type. Normally, it is safe to follow the PAD type directly,
8954 but older versions of the compiler have a bug that causes the offset
8955 of its "F" field to be wrong. Following that field in that case
8956 would lead to incorrect results, but this can be worked around
8957 by ignoring the PAD type and using the associated XVS type instead.
8958
8959 Set to True if the debugger should trust the contents of PAD types.
8960 Otherwise, ignore the PAD type if there is a parallel XVS type. */
491144b5 8961static bool trust_pad_over_xvs = true;
14f9c5c9
AS
8962
8963/* True if TYPE is a struct type introduced by the compiler to force the
8964 alignment of a value. Such types have a single field with a
4c4b4cd2 8965 distinctive name. */
14f9c5c9
AS
8966
8967int
ebf56fd3 8968ada_is_aligner_type (struct type *type)
14f9c5c9 8969{
61ee279c 8970 type = ada_check_typedef (type);
714e53ab 8971
5bf03f13 8972 if (!trust_pad_over_xvs && ada_find_parallel_type (type, "___XVS") != NULL)
714e53ab
PH
8973 return 0;
8974
78134374 8975 return (type->code () == TYPE_CODE_STRUCT
1f704f76 8976 && type->num_fields () == 1
4c4b4cd2 8977 && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0);
14f9c5c9
AS
8978}
8979
8980/* If there is an ___XVS-convention type parallel to SUBTYPE, return
4c4b4cd2 8981 the parallel type. */
14f9c5c9 8982
d2e4a39e
AS
8983struct type *
8984ada_get_base_type (struct type *raw_type)
14f9c5c9 8985{
d2e4a39e
AS
8986 struct type *real_type_namer;
8987 struct type *raw_real_type;
14f9c5c9 8988
78134374 8989 if (raw_type == NULL || raw_type->code () != TYPE_CODE_STRUCT)
14f9c5c9
AS
8990 return raw_type;
8991
284614f0
JB
8992 if (ada_is_aligner_type (raw_type))
8993 /* The encoding specifies that we should always use the aligner type.
8994 So, even if this aligner type has an associated XVS type, we should
8995 simply ignore it.
8996
8997 According to the compiler gurus, an XVS type parallel to an aligner
8998 type may exist because of a stabs limitation. In stabs, aligner
8999 types are empty because the field has a variable-sized type, and
9000 thus cannot actually be used as an aligner type. As a result,
9001 we need the associated parallel XVS type to decode the type.
9002 Since the policy in the compiler is to not change the internal
9003 representation based on the debugging info format, we sometimes
9004 end up having a redundant XVS type parallel to the aligner type. */
9005 return raw_type;
9006
14f9c5c9 9007 real_type_namer = ada_find_parallel_type (raw_type, "___XVS");
d2e4a39e 9008 if (real_type_namer == NULL
78134374 9009 || real_type_namer->code () != TYPE_CODE_STRUCT
1f704f76 9010 || real_type_namer->num_fields () != 1)
14f9c5c9
AS
9011 return raw_type;
9012
940da03e 9013 if (real_type_namer->field (0).type ()->code () != TYPE_CODE_REF)
f80d3ff2
JB
9014 {
9015 /* This is an older encoding form where the base type needs to be
85102364 9016 looked up by name. We prefer the newer encoding because it is
f80d3ff2
JB
9017 more efficient. */
9018 raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0));
9019 if (raw_real_type == NULL)
9020 return raw_type;
9021 else
9022 return raw_real_type;
9023 }
9024
9025 /* The field in our XVS type is a reference to the base type. */
940da03e 9026 return TYPE_TARGET_TYPE (real_type_namer->field (0).type ());
d2e4a39e 9027}
14f9c5c9 9028
4c4b4cd2 9029/* The type of value designated by TYPE, with all aligners removed. */
14f9c5c9 9030
d2e4a39e
AS
9031struct type *
9032ada_aligned_type (struct type *type)
14f9c5c9
AS
9033{
9034 if (ada_is_aligner_type (type))
940da03e 9035 return ada_aligned_type (type->field (0).type ());
14f9c5c9
AS
9036 else
9037 return ada_get_base_type (type);
9038}
9039
9040
9041/* The address of the aligned value in an object at address VALADDR
4c4b4cd2 9042 having type TYPE. Assumes ada_is_aligner_type (TYPE). */
14f9c5c9 9043
fc1a4b47
AC
9044const gdb_byte *
9045ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr)
14f9c5c9 9046{
d2e4a39e 9047 if (ada_is_aligner_type (type))
940da03e 9048 return ada_aligned_value_addr (type->field (0).type (),
4c4b4cd2
PH
9049 valaddr +
9050 TYPE_FIELD_BITPOS (type,
9051 0) / TARGET_CHAR_BIT);
14f9c5c9
AS
9052 else
9053 return valaddr;
9054}
9055
4c4b4cd2
PH
9056
9057
14f9c5c9 9058/* The printed representation of an enumeration literal with encoded
4c4b4cd2 9059 name NAME. The value is good to the next call of ada_enum_name. */
d2e4a39e
AS
9060const char *
9061ada_enum_name (const char *name)
14f9c5c9 9062{
4c4b4cd2
PH
9063 static char *result;
9064 static size_t result_len = 0;
e6a959d6 9065 const char *tmp;
14f9c5c9 9066
4c4b4cd2
PH
9067 /* First, unqualify the enumeration name:
9068 1. Search for the last '.' character. If we find one, then skip
177b42fe 9069 all the preceding characters, the unqualified name starts
76a01679 9070 right after that dot.
4c4b4cd2 9071 2. Otherwise, we may be debugging on a target where the compiler
76a01679
JB
9072 translates dots into "__". Search forward for double underscores,
9073 but stop searching when we hit an overloading suffix, which is
9074 of the form "__" followed by digits. */
4c4b4cd2 9075
c3e5cd34
PH
9076 tmp = strrchr (name, '.');
9077 if (tmp != NULL)
4c4b4cd2
PH
9078 name = tmp + 1;
9079 else
14f9c5c9 9080 {
4c4b4cd2
PH
9081 while ((tmp = strstr (name, "__")) != NULL)
9082 {
9083 if (isdigit (tmp[2]))
9084 break;
9085 else
9086 name = tmp + 2;
9087 }
14f9c5c9
AS
9088 }
9089
9090 if (name[0] == 'Q')
9091 {
14f9c5c9 9092 int v;
5b4ee69b 9093
14f9c5c9 9094 if (name[1] == 'U' || name[1] == 'W')
4c4b4cd2
PH
9095 {
9096 if (sscanf (name + 2, "%x", &v) != 1)
9097 return name;
9098 }
272560b5
TT
9099 else if (((name[1] >= '0' && name[1] <= '9')
9100 || (name[1] >= 'a' && name[1] <= 'z'))
9101 && name[2] == '\0')
9102 {
9103 GROW_VECT (result, result_len, 4);
9104 xsnprintf (result, result_len, "'%c'", name[1]);
9105 return result;
9106 }
14f9c5c9 9107 else
4c4b4cd2 9108 return name;
14f9c5c9 9109
4c4b4cd2 9110 GROW_VECT (result, result_len, 16);
14f9c5c9 9111 if (isascii (v) && isprint (v))
88c15c34 9112 xsnprintf (result, result_len, "'%c'", v);
14f9c5c9 9113 else if (name[1] == 'U')
88c15c34 9114 xsnprintf (result, result_len, "[\"%02x\"]", v);
14f9c5c9 9115 else
88c15c34 9116 xsnprintf (result, result_len, "[\"%04x\"]", v);
14f9c5c9
AS
9117
9118 return result;
9119 }
d2e4a39e 9120 else
4c4b4cd2 9121 {
c3e5cd34
PH
9122 tmp = strstr (name, "__");
9123 if (tmp == NULL)
9124 tmp = strstr (name, "$");
9125 if (tmp != NULL)
4c4b4cd2
PH
9126 {
9127 GROW_VECT (result, result_len, tmp - name + 1);
9128 strncpy (result, name, tmp - name);
9129 result[tmp - name] = '\0';
9130 return result;
9131 }
9132
9133 return name;
9134 }
14f9c5c9
AS
9135}
9136
14f9c5c9
AS
9137/* Evaluate the subexpression of EXP starting at *POS as for
9138 evaluate_type, updating *POS to point just past the evaluated
4c4b4cd2 9139 expression. */
14f9c5c9 9140
d2e4a39e
AS
9141static struct value *
9142evaluate_subexp_type (struct expression *exp, int *pos)
14f9c5c9 9143{
4b27a620 9144 return evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
14f9c5c9
AS
9145}
9146
9147/* If VAL is wrapped in an aligner or subtype wrapper, return the
4c4b4cd2 9148 value it wraps. */
14f9c5c9 9149
d2e4a39e
AS
9150static struct value *
9151unwrap_value (struct value *val)
14f9c5c9 9152{
df407dfe 9153 struct type *type = ada_check_typedef (value_type (val));
5b4ee69b 9154
14f9c5c9
AS
9155 if (ada_is_aligner_type (type))
9156 {
de4d072f 9157 struct value *v = ada_value_struct_elt (val, "F", 0);
df407dfe 9158 struct type *val_type = ada_check_typedef (value_type (v));
5b4ee69b 9159
14f9c5c9 9160 if (ada_type_name (val_type) == NULL)
d0e39ea2 9161 val_type->set_name (ada_type_name (type));
14f9c5c9
AS
9162
9163 return unwrap_value (v);
9164 }
d2e4a39e 9165 else
14f9c5c9 9166 {
d2e4a39e 9167 struct type *raw_real_type =
61ee279c 9168 ada_check_typedef (ada_get_base_type (type));
d2e4a39e 9169
5bf03f13
JB
9170 /* If there is no parallel XVS or XVE type, then the value is
9171 already unwrapped. Return it without further modification. */
9172 if ((type == raw_real_type)
9173 && ada_find_parallel_type (type, "___XVE") == NULL)
9174 return val;
14f9c5c9 9175
d2e4a39e 9176 return
4c4b4cd2
PH
9177 coerce_unspec_val_to_type
9178 (val, ada_to_fixed_type (raw_real_type, 0,
42ae5230 9179 value_address (val),
1ed6ede0 9180 NULL, 1));
14f9c5c9
AS
9181 }
9182}
d2e4a39e
AS
9183
9184static struct value *
50eff16b 9185cast_from_fixed (struct type *type, struct value *arg)
14f9c5c9 9186{
50eff16b
UW
9187 struct value *scale = ada_scaling_factor (value_type (arg));
9188 arg = value_cast (value_type (scale), arg);
14f9c5c9 9189
50eff16b
UW
9190 arg = value_binop (arg, scale, BINOP_MUL);
9191 return value_cast (type, arg);
14f9c5c9
AS
9192}
9193
d2e4a39e 9194static struct value *
50eff16b 9195cast_to_fixed (struct type *type, struct value *arg)
14f9c5c9 9196{
50eff16b
UW
9197 if (type == value_type (arg))
9198 return arg;
5b4ee69b 9199
50eff16b 9200 struct value *scale = ada_scaling_factor (type);
b2188a06 9201 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg)))
50eff16b
UW
9202 arg = cast_from_fixed (value_type (scale), arg);
9203 else
9204 arg = value_cast (value_type (scale), arg);
9205
9206 arg = value_binop (arg, scale, BINOP_DIV);
9207 return value_cast (type, arg);
14f9c5c9
AS
9208}
9209
d99dcf51
JB
9210/* Given two array types T1 and T2, return nonzero iff both arrays
9211 contain the same number of elements. */
9212
9213static int
9214ada_same_array_size_p (struct type *t1, struct type *t2)
9215{
9216 LONGEST lo1, hi1, lo2, hi2;
9217
9218 /* Get the array bounds in order to verify that the size of
9219 the two arrays match. */
9220 if (!get_array_bounds (t1, &lo1, &hi1)
9221 || !get_array_bounds (t2, &lo2, &hi2))
9222 error (_("unable to determine array bounds"));
9223
9224 /* To make things easier for size comparison, normalize a bit
9225 the case of empty arrays by making sure that the difference
9226 between upper bound and lower bound is always -1. */
9227 if (lo1 > hi1)
9228 hi1 = lo1 - 1;
9229 if (lo2 > hi2)
9230 hi2 = lo2 - 1;
9231
9232 return (hi1 - lo1 == hi2 - lo2);
9233}
9234
9235/* Assuming that VAL is an array of integrals, and TYPE represents
9236 an array with the same number of elements, but with wider integral
9237 elements, return an array "casted" to TYPE. In practice, this
9238 means that the returned array is built by casting each element
9239 of the original array into TYPE's (wider) element type. */
9240
9241static struct value *
9242ada_promote_array_of_integrals (struct type *type, struct value *val)
9243{
9244 struct type *elt_type = TYPE_TARGET_TYPE (type);
9245 LONGEST lo, hi;
9246 struct value *res;
9247 LONGEST i;
9248
9249 /* Verify that both val and type are arrays of scalars, and
9250 that the size of val's elements is smaller than the size
9251 of type's element. */
78134374 9252 gdb_assert (type->code () == TYPE_CODE_ARRAY);
d99dcf51 9253 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (type)));
78134374 9254 gdb_assert (value_type (val)->code () == TYPE_CODE_ARRAY);
d99dcf51
JB
9255 gdb_assert (is_integral_type (TYPE_TARGET_TYPE (value_type (val))));
9256 gdb_assert (TYPE_LENGTH (TYPE_TARGET_TYPE (type))
9257 > TYPE_LENGTH (TYPE_TARGET_TYPE (value_type (val))));
9258
9259 if (!get_array_bounds (type, &lo, &hi))
9260 error (_("unable to determine array bounds"));
9261
9262 res = allocate_value (type);
9263
9264 /* Promote each array element. */
9265 for (i = 0; i < hi - lo + 1; i++)
9266 {
9267 struct value *elt = value_cast (elt_type, value_subscript (val, lo + i));
9268
9269 memcpy (value_contents_writeable (res) + (i * TYPE_LENGTH (elt_type)),
9270 value_contents_all (elt), TYPE_LENGTH (elt_type));
9271 }
9272
9273 return res;
9274}
9275
4c4b4cd2
PH
9276/* Coerce VAL as necessary for assignment to an lval of type TYPE, and
9277 return the converted value. */
9278
d2e4a39e
AS
9279static struct value *
9280coerce_for_assign (struct type *type, struct value *val)
14f9c5c9 9281{
df407dfe 9282 struct type *type2 = value_type (val);
5b4ee69b 9283
14f9c5c9
AS
9284 if (type == type2)
9285 return val;
9286
61ee279c
PH
9287 type2 = ada_check_typedef (type2);
9288 type = ada_check_typedef (type);
14f9c5c9 9289
78134374
SM
9290 if (type2->code () == TYPE_CODE_PTR
9291 && type->code () == TYPE_CODE_ARRAY)
14f9c5c9
AS
9292 {
9293 val = ada_value_ind (val);
df407dfe 9294 type2 = value_type (val);
14f9c5c9
AS
9295 }
9296
78134374
SM
9297 if (type2->code () == TYPE_CODE_ARRAY
9298 && type->code () == TYPE_CODE_ARRAY)
14f9c5c9 9299 {
d99dcf51
JB
9300 if (!ada_same_array_size_p (type, type2))
9301 error (_("cannot assign arrays of different length"));
9302
9303 if (is_integral_type (TYPE_TARGET_TYPE (type))
9304 && is_integral_type (TYPE_TARGET_TYPE (type2))
9305 && TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9306 < TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
9307 {
9308 /* Allow implicit promotion of the array elements to
9309 a wider type. */
9310 return ada_promote_array_of_integrals (type, val);
9311 }
9312
9313 if (TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
9314 != TYPE_LENGTH (TYPE_TARGET_TYPE (type)))
323e0a4a 9315 error (_("Incompatible types in assignment"));
04624583 9316 deprecated_set_value_type (val, type);
14f9c5c9 9317 }
d2e4a39e 9318 return val;
14f9c5c9
AS
9319}
9320
4c4b4cd2
PH
9321static struct value *
9322ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
9323{
9324 struct value *val;
9325 struct type *type1, *type2;
9326 LONGEST v, v1, v2;
9327
994b9211
AC
9328 arg1 = coerce_ref (arg1);
9329 arg2 = coerce_ref (arg2);
18af8284
JB
9330 type1 = get_base_type (ada_check_typedef (value_type (arg1)));
9331 type2 = get_base_type (ada_check_typedef (value_type (arg2)));
4c4b4cd2 9332
78134374
SM
9333 if (type1->code () != TYPE_CODE_INT
9334 || type2->code () != TYPE_CODE_INT)
4c4b4cd2
PH
9335 return value_binop (arg1, arg2, op);
9336
76a01679 9337 switch (op)
4c4b4cd2
PH
9338 {
9339 case BINOP_MOD:
9340 case BINOP_DIV:
9341 case BINOP_REM:
9342 break;
9343 default:
9344 return value_binop (arg1, arg2, op);
9345 }
9346
9347 v2 = value_as_long (arg2);
9348 if (v2 == 0)
323e0a4a 9349 error (_("second operand of %s must not be zero."), op_string (op));
4c4b4cd2
PH
9350
9351 if (TYPE_UNSIGNED (type1) || op == BINOP_MOD)
9352 return value_binop (arg1, arg2, op);
9353
9354 v1 = value_as_long (arg1);
9355 switch (op)
9356 {
9357 case BINOP_DIV:
9358 v = v1 / v2;
76a01679
JB
9359 if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0)
9360 v += v > 0 ? -1 : 1;
4c4b4cd2
PH
9361 break;
9362 case BINOP_REM:
9363 v = v1 % v2;
76a01679
JB
9364 if (v * v1 < 0)
9365 v -= v2;
4c4b4cd2
PH
9366 break;
9367 default:
9368 /* Should not reach this point. */
9369 v = 0;
9370 }
9371
9372 val = allocate_value (type1);
990a07ab 9373 store_unsigned_integer (value_contents_raw (val),
e17a4113 9374 TYPE_LENGTH (value_type (val)),
34877895 9375 type_byte_order (type1), v);
4c4b4cd2
PH
9376 return val;
9377}
9378
9379static int
9380ada_value_equal (struct value *arg1, struct value *arg2)
9381{
df407dfe
AC
9382 if (ada_is_direct_array_type (value_type (arg1))
9383 || ada_is_direct_array_type (value_type (arg2)))
4c4b4cd2 9384 {
79e8fcaa
JB
9385 struct type *arg1_type, *arg2_type;
9386
f58b38bf
JB
9387 /* Automatically dereference any array reference before
9388 we attempt to perform the comparison. */
9389 arg1 = ada_coerce_ref (arg1);
9390 arg2 = ada_coerce_ref (arg2);
79e8fcaa 9391
4c4b4cd2
PH
9392 arg1 = ada_coerce_to_simple_array (arg1);
9393 arg2 = ada_coerce_to_simple_array (arg2);
79e8fcaa
JB
9394
9395 arg1_type = ada_check_typedef (value_type (arg1));
9396 arg2_type = ada_check_typedef (value_type (arg2));
9397
78134374
SM
9398 if (arg1_type->code () != TYPE_CODE_ARRAY
9399 || arg2_type->code () != TYPE_CODE_ARRAY)
323e0a4a 9400 error (_("Attempt to compare array with non-array"));
4c4b4cd2 9401 /* FIXME: The following works only for types whose
76a01679
JB
9402 representations use all bits (no padding or undefined bits)
9403 and do not have user-defined equality. */
79e8fcaa
JB
9404 return (TYPE_LENGTH (arg1_type) == TYPE_LENGTH (arg2_type)
9405 && memcmp (value_contents (arg1), value_contents (arg2),
9406 TYPE_LENGTH (arg1_type)) == 0);
4c4b4cd2
PH
9407 }
9408 return value_equal (arg1, arg2);
9409}
9410
52ce6436
PH
9411/* Total number of component associations in the aggregate starting at
9412 index PC in EXP. Assumes that index PC is the start of an
0963b4bd 9413 OP_AGGREGATE. */
52ce6436
PH
9414
9415static int
9416num_component_specs (struct expression *exp, int pc)
9417{
9418 int n, m, i;
5b4ee69b 9419
52ce6436
PH
9420 m = exp->elts[pc + 1].longconst;
9421 pc += 3;
9422 n = 0;
9423 for (i = 0; i < m; i += 1)
9424 {
9425 switch (exp->elts[pc].opcode)
9426 {
9427 default:
9428 n += 1;
9429 break;
9430 case OP_CHOICES:
9431 n += exp->elts[pc + 1].longconst;
9432 break;
9433 }
9434 ada_evaluate_subexp (NULL, exp, &pc, EVAL_SKIP);
9435 }
9436 return n;
9437}
9438
9439/* Assign the result of evaluating EXP starting at *POS to the INDEXth
9440 component of LHS (a simple array or a record), updating *POS past
9441 the expression, assuming that LHS is contained in CONTAINER. Does
9442 not modify the inferior's memory, nor does it modify LHS (unless
9443 LHS == CONTAINER). */
9444
9445static void
9446assign_component (struct value *container, struct value *lhs, LONGEST index,
9447 struct expression *exp, int *pos)
9448{
9449 struct value *mark = value_mark ();
9450 struct value *elt;
0e2da9f0 9451 struct type *lhs_type = check_typedef (value_type (lhs));
5b4ee69b 9452
78134374 9453 if (lhs_type->code () == TYPE_CODE_ARRAY)
52ce6436 9454 {
22601c15
UW
9455 struct type *index_type = builtin_type (exp->gdbarch)->builtin_int;
9456 struct value *index_val = value_from_longest (index_type, index);
5b4ee69b 9457
52ce6436
PH
9458 elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val));
9459 }
9460 else
9461 {
9462 elt = ada_index_struct_field (index, lhs, 0, value_type (lhs));
c48db5ca 9463 elt = ada_to_fixed_value (elt);
52ce6436
PH
9464 }
9465
9466 if (exp->elts[*pos].opcode == OP_AGGREGATE)
9467 assign_aggregate (container, elt, exp, pos, EVAL_NORMAL);
9468 else
9469 value_assign_to_component (container, elt,
9470 ada_evaluate_subexp (NULL, exp, pos,
9471 EVAL_NORMAL));
9472
9473 value_free_to_mark (mark);
9474}
9475
9476/* Assuming that LHS represents an lvalue having a record or array
9477 type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment
9478 of that aggregate's value to LHS, advancing *POS past the
9479 aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an
9480 lvalue containing LHS (possibly LHS itself). Does not modify
9481 the inferior's memory, nor does it modify the contents of
0963b4bd 9482 LHS (unless == CONTAINER). Returns the modified CONTAINER. */
52ce6436
PH
9483
9484static struct value *
9485assign_aggregate (struct value *container,
9486 struct value *lhs, struct expression *exp,
9487 int *pos, enum noside noside)
9488{
9489 struct type *lhs_type;
9490 int n = exp->elts[*pos+1].longconst;
9491 LONGEST low_index, high_index;
9492 int num_specs;
9493 LONGEST *indices;
9494 int max_indices, num_indices;
52ce6436 9495 int i;
52ce6436
PH
9496
9497 *pos += 3;
9498 if (noside != EVAL_NORMAL)
9499 {
52ce6436
PH
9500 for (i = 0; i < n; i += 1)
9501 ada_evaluate_subexp (NULL, exp, pos, noside);
9502 return container;
9503 }
9504
9505 container = ada_coerce_ref (container);
9506 if (ada_is_direct_array_type (value_type (container)))
9507 container = ada_coerce_to_simple_array (container);
9508 lhs = ada_coerce_ref (lhs);
9509 if (!deprecated_value_modifiable (lhs))
9510 error (_("Left operand of assignment is not a modifiable lvalue."));
9511
0e2da9f0 9512 lhs_type = check_typedef (value_type (lhs));
52ce6436
PH
9513 if (ada_is_direct_array_type (lhs_type))
9514 {
9515 lhs = ada_coerce_to_simple_array (lhs);
0e2da9f0 9516 lhs_type = check_typedef (value_type (lhs));
52ce6436
PH
9517 low_index = TYPE_ARRAY_LOWER_BOUND_VALUE (lhs_type);
9518 high_index = TYPE_ARRAY_UPPER_BOUND_VALUE (lhs_type);
52ce6436 9519 }
78134374 9520 else if (lhs_type->code () == TYPE_CODE_STRUCT)
52ce6436
PH
9521 {
9522 low_index = 0;
9523 high_index = num_visible_fields (lhs_type) - 1;
52ce6436
PH
9524 }
9525 else
9526 error (_("Left-hand side must be array or record."));
9527
9528 num_specs = num_component_specs (exp, *pos - 3);
9529 max_indices = 4 * num_specs + 4;
8d749320 9530 indices = XALLOCAVEC (LONGEST, max_indices);
52ce6436
PH
9531 indices[0] = indices[1] = low_index - 1;
9532 indices[2] = indices[3] = high_index + 1;
9533 num_indices = 4;
9534
9535 for (i = 0; i < n; i += 1)
9536 {
9537 switch (exp->elts[*pos].opcode)
9538 {
1fbf5ada
JB
9539 case OP_CHOICES:
9540 aggregate_assign_from_choices (container, lhs, exp, pos, indices,
9541 &num_indices, max_indices,
9542 low_index, high_index);
9543 break;
9544 case OP_POSITIONAL:
9545 aggregate_assign_positional (container, lhs, exp, pos, indices,
52ce6436
PH
9546 &num_indices, max_indices,
9547 low_index, high_index);
1fbf5ada
JB
9548 break;
9549 case OP_OTHERS:
9550 if (i != n-1)
9551 error (_("Misplaced 'others' clause"));
9552 aggregate_assign_others (container, lhs, exp, pos, indices,
9553 num_indices, low_index, high_index);
9554 break;
9555 default:
9556 error (_("Internal error: bad aggregate clause"));
52ce6436
PH
9557 }
9558 }
9559
9560 return container;
9561}
9562
9563/* Assign into the component of LHS indexed by the OP_POSITIONAL
9564 construct at *POS, updating *POS past the construct, given that
9565 the positions are relative to lower bound LOW, where HIGH is the
9566 upper bound. Record the position in INDICES[0 .. MAX_INDICES-1]
9567 updating *NUM_INDICES as needed. CONTAINER is as for
0963b4bd 9568 assign_aggregate. */
52ce6436
PH
9569static void
9570aggregate_assign_positional (struct value *container,
9571 struct value *lhs, struct expression *exp,
9572 int *pos, LONGEST *indices, int *num_indices,
9573 int max_indices, LONGEST low, LONGEST high)
9574{
9575 LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low;
9576
9577 if (ind - 1 == high)
e1d5a0d2 9578 warning (_("Extra components in aggregate ignored."));
52ce6436
PH
9579 if (ind <= high)
9580 {
9581 add_component_interval (ind, ind, indices, num_indices, max_indices);
9582 *pos += 3;
9583 assign_component (container, lhs, ind, exp, pos);
9584 }
9585 else
9586 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9587}
9588
9589/* Assign into the components of LHS indexed by the OP_CHOICES
9590 construct at *POS, updating *POS past the construct, given that
9591 the allowable indices are LOW..HIGH. Record the indices assigned
9592 to in INDICES[0 .. MAX_INDICES-1], updating *NUM_INDICES as
0963b4bd 9593 needed. CONTAINER is as for assign_aggregate. */
52ce6436
PH
9594static void
9595aggregate_assign_from_choices (struct value *container,
9596 struct value *lhs, struct expression *exp,
9597 int *pos, LONGEST *indices, int *num_indices,
9598 int max_indices, LONGEST low, LONGEST high)
9599{
9600 int j;
9601 int n_choices = longest_to_int (exp->elts[*pos+1].longconst);
9602 int choice_pos, expr_pc;
9603 int is_array = ada_is_direct_array_type (value_type (lhs));
9604
9605 choice_pos = *pos += 3;
9606
9607 for (j = 0; j < n_choices; j += 1)
9608 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9609 expr_pc = *pos;
9610 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9611
9612 for (j = 0; j < n_choices; j += 1)
9613 {
9614 LONGEST lower, upper;
9615 enum exp_opcode op = exp->elts[choice_pos].opcode;
5b4ee69b 9616
52ce6436
PH
9617 if (op == OP_DISCRETE_RANGE)
9618 {
9619 choice_pos += 1;
9620 lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
9621 EVAL_NORMAL));
9622 upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
9623 EVAL_NORMAL));
9624 }
9625 else if (is_array)
9626 {
9627 lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos,
9628 EVAL_NORMAL));
9629 upper = lower;
9630 }
9631 else
9632 {
9633 int ind;
0d5cff50 9634 const char *name;
5b4ee69b 9635
52ce6436
PH
9636 switch (op)
9637 {
9638 case OP_NAME:
9639 name = &exp->elts[choice_pos + 2].string;
9640 break;
9641 case OP_VAR_VALUE:
987012b8 9642 name = exp->elts[choice_pos + 2].symbol->natural_name ();
52ce6436
PH
9643 break;
9644 default:
9645 error (_("Invalid record component association."));
9646 }
9647 ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP);
9648 ind = 0;
9649 if (! find_struct_field (name, value_type (lhs), 0,
9650 NULL, NULL, NULL, NULL, &ind))
9651 error (_("Unknown component name: %s."), name);
9652 lower = upper = ind;
9653 }
9654
9655 if (lower <= upper && (lower < low || upper > high))
9656 error (_("Index in component association out of bounds."));
9657
9658 add_component_interval (lower, upper, indices, num_indices,
9659 max_indices);
9660 while (lower <= upper)
9661 {
9662 int pos1;
5b4ee69b 9663
52ce6436
PH
9664 pos1 = expr_pc;
9665 assign_component (container, lhs, lower, exp, &pos1);
9666 lower += 1;
9667 }
9668 }
9669}
9670
9671/* Assign the value of the expression in the OP_OTHERS construct in
9672 EXP at *POS into the components of LHS indexed from LOW .. HIGH that
9673 have not been previously assigned. The index intervals already assigned
9674 are in INDICES[0 .. NUM_INDICES-1]. Updates *POS to after the
0963b4bd 9675 OP_OTHERS clause. CONTAINER is as for assign_aggregate. */
52ce6436
PH
9676static void
9677aggregate_assign_others (struct value *container,
9678 struct value *lhs, struct expression *exp,
9679 int *pos, LONGEST *indices, int num_indices,
9680 LONGEST low, LONGEST high)
9681{
9682 int i;
5ce64950 9683 int expr_pc = *pos + 1;
52ce6436
PH
9684
9685 for (i = 0; i < num_indices - 2; i += 2)
9686 {
9687 LONGEST ind;
5b4ee69b 9688
52ce6436
PH
9689 for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1)
9690 {
5ce64950 9691 int localpos;
5b4ee69b 9692
5ce64950
MS
9693 localpos = expr_pc;
9694 assign_component (container, lhs, ind, exp, &localpos);
52ce6436
PH
9695 }
9696 }
9697 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
9698}
9699
9700/* Add the interval [LOW .. HIGH] to the sorted set of intervals
9701 [ INDICES[0] .. INDICES[1] ],..., [ INDICES[*SIZE-2] .. INDICES[*SIZE-1] ],
9702 modifying *SIZE as needed. It is an error if *SIZE exceeds
9703 MAX_SIZE. The resulting intervals do not overlap. */
9704static void
9705add_component_interval (LONGEST low, LONGEST high,
9706 LONGEST* indices, int *size, int max_size)
9707{
9708 int i, j;
5b4ee69b 9709
52ce6436
PH
9710 for (i = 0; i < *size; i += 2) {
9711 if (high >= indices[i] && low <= indices[i + 1])
9712 {
9713 int kh;
5b4ee69b 9714
52ce6436
PH
9715 for (kh = i + 2; kh < *size; kh += 2)
9716 if (high < indices[kh])
9717 break;
9718 if (low < indices[i])
9719 indices[i] = low;
9720 indices[i + 1] = indices[kh - 1];
9721 if (high > indices[i + 1])
9722 indices[i + 1] = high;
9723 memcpy (indices + i + 2, indices + kh, *size - kh);
9724 *size -= kh - i - 2;
9725 return;
9726 }
9727 else if (high < indices[i])
9728 break;
9729 }
9730
9731 if (*size == max_size)
9732 error (_("Internal error: miscounted aggregate components."));
9733 *size += 2;
9734 for (j = *size-1; j >= i+2; j -= 1)
9735 indices[j] = indices[j - 2];
9736 indices[i] = low;
9737 indices[i + 1] = high;
9738}
9739
6e48bd2c
JB
9740/* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2
9741 is different. */
9742
9743static struct value *
b7e22850 9744ada_value_cast (struct type *type, struct value *arg2)
6e48bd2c
JB
9745{
9746 if (type == ada_check_typedef (value_type (arg2)))
9747 return arg2;
9748
b2188a06 9749 if (ada_is_gnat_encoded_fixed_point_type (type))
95f39a5b 9750 return cast_to_fixed (type, arg2);
6e48bd2c 9751
b2188a06 9752 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
a53b7a21 9753 return cast_from_fixed (type, arg2);
6e48bd2c
JB
9754
9755 return value_cast (type, arg2);
9756}
9757
284614f0
JB
9758/* Evaluating Ada expressions, and printing their result.
9759 ------------------------------------------------------
9760
21649b50
JB
9761 1. Introduction:
9762 ----------------
9763
284614f0
JB
9764 We usually evaluate an Ada expression in order to print its value.
9765 We also evaluate an expression in order to print its type, which
9766 happens during the EVAL_AVOID_SIDE_EFFECTS phase of the evaluation,
9767 but we'll focus mostly on the EVAL_NORMAL phase. In practice, the
9768 EVAL_AVOID_SIDE_EFFECTS phase allows us to simplify certain aspects of
9769 the evaluation compared to the EVAL_NORMAL, but is otherwise very
9770 similar.
9771
9772 Evaluating expressions is a little more complicated for Ada entities
9773 than it is for entities in languages such as C. The main reason for
9774 this is that Ada provides types whose definition might be dynamic.
9775 One example of such types is variant records. Or another example
9776 would be an array whose bounds can only be known at run time.
9777
9778 The following description is a general guide as to what should be
9779 done (and what should NOT be done) in order to evaluate an expression
9780 involving such types, and when. This does not cover how the semantic
9781 information is encoded by GNAT as this is covered separatly. For the
9782 document used as the reference for the GNAT encoding, see exp_dbug.ads
9783 in the GNAT sources.
9784
9785 Ideally, we should embed each part of this description next to its
9786 associated code. Unfortunately, the amount of code is so vast right
9787 now that it's hard to see whether the code handling a particular
9788 situation might be duplicated or not. One day, when the code is
9789 cleaned up, this guide might become redundant with the comments
9790 inserted in the code, and we might want to remove it.
9791
21649b50
JB
9792 2. ``Fixing'' an Entity, the Simple Case:
9793 -----------------------------------------
9794
284614f0
JB
9795 When evaluating Ada expressions, the tricky issue is that they may
9796 reference entities whose type contents and size are not statically
9797 known. Consider for instance a variant record:
9798
9799 type Rec (Empty : Boolean := True) is record
9800 case Empty is
9801 when True => null;
9802 when False => Value : Integer;
9803 end case;
9804 end record;
9805 Yes : Rec := (Empty => False, Value => 1);
9806 No : Rec := (empty => True);
9807
9808 The size and contents of that record depends on the value of the
9809 descriminant (Rec.Empty). At this point, neither the debugging
9810 information nor the associated type structure in GDB are able to
9811 express such dynamic types. So what the debugger does is to create
9812 "fixed" versions of the type that applies to the specific object.
30baf67b 9813 We also informally refer to this operation as "fixing" an object,
284614f0
JB
9814 which means creating its associated fixed type.
9815
9816 Example: when printing the value of variable "Yes" above, its fixed
9817 type would look like this:
9818
9819 type Rec is record
9820 Empty : Boolean;
9821 Value : Integer;
9822 end record;
9823
9824 On the other hand, if we printed the value of "No", its fixed type
9825 would become:
9826
9827 type Rec is record
9828 Empty : Boolean;
9829 end record;
9830
9831 Things become a little more complicated when trying to fix an entity
9832 with a dynamic type that directly contains another dynamic type,
9833 such as an array of variant records, for instance. There are
9834 two possible cases: Arrays, and records.
9835
21649b50
JB
9836 3. ``Fixing'' Arrays:
9837 ---------------------
9838
9839 The type structure in GDB describes an array in terms of its bounds,
9840 and the type of its elements. By design, all elements in the array
9841 have the same type and we cannot represent an array of variant elements
9842 using the current type structure in GDB. When fixing an array,
9843 we cannot fix the array element, as we would potentially need one
9844 fixed type per element of the array. As a result, the best we can do
9845 when fixing an array is to produce an array whose bounds and size
9846 are correct (allowing us to read it from memory), but without having
9847 touched its element type. Fixing each element will be done later,
9848 when (if) necessary.
9849
9850 Arrays are a little simpler to handle than records, because the same
9851 amount of memory is allocated for each element of the array, even if
1b536f04 9852 the amount of space actually used by each element differs from element
21649b50 9853 to element. Consider for instance the following array of type Rec:
284614f0
JB
9854
9855 type Rec_Array is array (1 .. 2) of Rec;
9856
1b536f04
JB
9857 The actual amount of memory occupied by each element might be different
9858 from element to element, depending on the value of their discriminant.
21649b50 9859 But the amount of space reserved for each element in the array remains
1b536f04 9860 fixed regardless. So we simply need to compute that size using
21649b50
JB
9861 the debugging information available, from which we can then determine
9862 the array size (we multiply the number of elements of the array by
9863 the size of each element).
9864
9865 The simplest case is when we have an array of a constrained element
9866 type. For instance, consider the following type declarations:
9867
9868 type Bounded_String (Max_Size : Integer) is
9869 Length : Integer;
9870 Buffer : String (1 .. Max_Size);
9871 end record;
9872 type Bounded_String_Array is array (1 ..2) of Bounded_String (80);
9873
9874 In this case, the compiler describes the array as an array of
9875 variable-size elements (identified by its XVS suffix) for which
9876 the size can be read in the parallel XVZ variable.
9877
9878 In the case of an array of an unconstrained element type, the compiler
9879 wraps the array element inside a private PAD type. This type should not
9880 be shown to the user, and must be "unwrap"'ed before printing. Note
284614f0
JB
9881 that we also use the adjective "aligner" in our code to designate
9882 these wrapper types.
9883
1b536f04 9884 In some cases, the size allocated for each element is statically
21649b50
JB
9885 known. In that case, the PAD type already has the correct size,
9886 and the array element should remain unfixed.
9887
9888 But there are cases when this size is not statically known.
9889 For instance, assuming that "Five" is an integer variable:
284614f0
JB
9890
9891 type Dynamic is array (1 .. Five) of Integer;
9892 type Wrapper (Has_Length : Boolean := False) is record
9893 Data : Dynamic;
9894 case Has_Length is
9895 when True => Length : Integer;
9896 when False => null;
9897 end case;
9898 end record;
9899 type Wrapper_Array is array (1 .. 2) of Wrapper;
9900
9901 Hello : Wrapper_Array := (others => (Has_Length => True,
9902 Data => (others => 17),
9903 Length => 1));
9904
9905
9906 The debugging info would describe variable Hello as being an
9907 array of a PAD type. The size of that PAD type is not statically
9908 known, but can be determined using a parallel XVZ variable.
9909 In that case, a copy of the PAD type with the correct size should
9910 be used for the fixed array.
9911
21649b50
JB
9912 3. ``Fixing'' record type objects:
9913 ----------------------------------
9914
9915 Things are slightly different from arrays in the case of dynamic
284614f0
JB
9916 record types. In this case, in order to compute the associated
9917 fixed type, we need to determine the size and offset of each of
9918 its components. This, in turn, requires us to compute the fixed
9919 type of each of these components.
9920
9921 Consider for instance the example:
9922
9923 type Bounded_String (Max_Size : Natural) is record
9924 Str : String (1 .. Max_Size);
9925 Length : Natural;
9926 end record;
9927 My_String : Bounded_String (Max_Size => 10);
9928
9929 In that case, the position of field "Length" depends on the size
9930 of field Str, which itself depends on the value of the Max_Size
21649b50 9931 discriminant. In order to fix the type of variable My_String,
284614f0
JB
9932 we need to fix the type of field Str. Therefore, fixing a variant
9933 record requires us to fix each of its components.
9934
9935 However, if a component does not have a dynamic size, the component
9936 should not be fixed. In particular, fields that use a PAD type
9937 should not fixed. Here is an example where this might happen
9938 (assuming type Rec above):
9939
9940 type Container (Big : Boolean) is record
9941 First : Rec;
9942 After : Integer;
9943 case Big is
9944 when True => Another : Integer;
9945 when False => null;
9946 end case;
9947 end record;
9948 My_Container : Container := (Big => False,
9949 First => (Empty => True),
9950 After => 42);
9951
9952 In that example, the compiler creates a PAD type for component First,
9953 whose size is constant, and then positions the component After just
9954 right after it. The offset of component After is therefore constant
9955 in this case.
9956
9957 The debugger computes the position of each field based on an algorithm
9958 that uses, among other things, the actual position and size of the field
21649b50
JB
9959 preceding it. Let's now imagine that the user is trying to print
9960 the value of My_Container. If the type fixing was recursive, we would
284614f0
JB
9961 end up computing the offset of field After based on the size of the
9962 fixed version of field First. And since in our example First has
9963 only one actual field, the size of the fixed type is actually smaller
9964 than the amount of space allocated to that field, and thus we would
9965 compute the wrong offset of field After.
9966
21649b50
JB
9967 To make things more complicated, we need to watch out for dynamic
9968 components of variant records (identified by the ___XVL suffix in
9969 the component name). Even if the target type is a PAD type, the size
9970 of that type might not be statically known. So the PAD type needs
9971 to be unwrapped and the resulting type needs to be fixed. Otherwise,
9972 we might end up with the wrong size for our component. This can be
9973 observed with the following type declarations:
284614f0
JB
9974
9975 type Octal is new Integer range 0 .. 7;
9976 type Octal_Array is array (Positive range <>) of Octal;
9977 pragma Pack (Octal_Array);
9978
9979 type Octal_Buffer (Size : Positive) is record
9980 Buffer : Octal_Array (1 .. Size);
9981 Length : Integer;
9982 end record;
9983
9984 In that case, Buffer is a PAD type whose size is unset and needs
9985 to be computed by fixing the unwrapped type.
9986
21649b50
JB
9987 4. When to ``Fix'' un-``Fixed'' sub-elements of an entity:
9988 ----------------------------------------------------------
9989
9990 Lastly, when should the sub-elements of an entity that remained unfixed
284614f0
JB
9991 thus far, be actually fixed?
9992
9993 The answer is: Only when referencing that element. For instance
9994 when selecting one component of a record, this specific component
9995 should be fixed at that point in time. Or when printing the value
9996 of a record, each component should be fixed before its value gets
9997 printed. Similarly for arrays, the element of the array should be
9998 fixed when printing each element of the array, or when extracting
9999 one element out of that array. On the other hand, fixing should
10000 not be performed on the elements when taking a slice of an array!
10001
31432a67 10002 Note that one of the side effects of miscomputing the offset and
284614f0
JB
10003 size of each field is that we end up also miscomputing the size
10004 of the containing type. This can have adverse results when computing
10005 the value of an entity. GDB fetches the value of an entity based
10006 on the size of its type, and thus a wrong size causes GDB to fetch
10007 the wrong amount of memory. In the case where the computed size is
10008 too small, GDB fetches too little data to print the value of our
31432a67 10009 entity. Results in this case are unpredictable, as we usually read
284614f0
JB
10010 past the buffer containing the data =:-o. */
10011
ced9779b
JB
10012/* Evaluate a subexpression of EXP, at index *POS, and return a value
10013 for that subexpression cast to TO_TYPE. Advance *POS over the
10014 subexpression. */
10015
10016static value *
10017ada_evaluate_subexp_for_cast (expression *exp, int *pos,
10018 enum noside noside, struct type *to_type)
10019{
10020 int pc = *pos;
10021
10022 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE
10023 || exp->elts[pc].opcode == OP_VAR_VALUE)
10024 {
10025 (*pos) += 4;
10026
10027 value *val;
10028 if (exp->elts[pc].opcode == OP_VAR_MSYM_VALUE)
10029 {
10030 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10031 return value_zero (to_type, not_lval);
10032
10033 val = evaluate_var_msym_value (noside,
10034 exp->elts[pc + 1].objfile,
10035 exp->elts[pc + 2].msymbol);
10036 }
10037 else
10038 val = evaluate_var_value (noside,
10039 exp->elts[pc + 1].block,
10040 exp->elts[pc + 2].symbol);
10041
10042 if (noside == EVAL_SKIP)
10043 return eval_skip_value (exp);
10044
10045 val = ada_value_cast (to_type, val);
10046
10047 /* Follow the Ada language semantics that do not allow taking
10048 an address of the result of a cast (view conversion in Ada). */
10049 if (VALUE_LVAL (val) == lval_memory)
10050 {
10051 if (value_lazy (val))
10052 value_fetch_lazy (val);
10053 VALUE_LVAL (val) = not_lval;
10054 }
10055 return val;
10056 }
10057
10058 value *val = evaluate_subexp (to_type, exp, pos, noside);
10059 if (noside == EVAL_SKIP)
10060 return eval_skip_value (exp);
10061 return ada_value_cast (to_type, val);
10062}
10063
284614f0
JB
10064/* Implement the evaluate_exp routine in the exp_descriptor structure
10065 for the Ada language. */
10066
52ce6436 10067static struct value *
ebf56fd3 10068ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
4c4b4cd2 10069 int *pos, enum noside noside)
14f9c5c9
AS
10070{
10071 enum exp_opcode op;
b5385fc0 10072 int tem;
14f9c5c9 10073 int pc;
5ec18f2b 10074 int preeval_pos;
14f9c5c9
AS
10075 struct value *arg1 = NULL, *arg2 = NULL, *arg3;
10076 struct type *type;
52ce6436 10077 int nargs, oplen;
d2e4a39e 10078 struct value **argvec;
14f9c5c9 10079
d2e4a39e
AS
10080 pc = *pos;
10081 *pos += 1;
14f9c5c9
AS
10082 op = exp->elts[pc].opcode;
10083
d2e4a39e 10084 switch (op)
14f9c5c9
AS
10085 {
10086 default:
10087 *pos -= 1;
6e48bd2c 10088 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
ca1f964d
JG
10089
10090 if (noside == EVAL_NORMAL)
10091 arg1 = unwrap_value (arg1);
6e48bd2c 10092
edd079d9 10093 /* If evaluating an OP_FLOAT and an EXPECT_TYPE was provided,
6e48bd2c
JB
10094 then we need to perform the conversion manually, because
10095 evaluate_subexp_standard doesn't do it. This conversion is
10096 necessary in Ada because the different kinds of float/fixed
10097 types in Ada have different representations.
10098
10099 Similarly, we need to perform the conversion from OP_LONG
10100 ourselves. */
edd079d9 10101 if ((op == OP_FLOAT || op == OP_LONG) && expect_type != NULL)
b7e22850 10102 arg1 = ada_value_cast (expect_type, arg1);
6e48bd2c
JB
10103
10104 return arg1;
4c4b4cd2
PH
10105
10106 case OP_STRING:
10107 {
76a01679 10108 struct value *result;
5b4ee69b 10109
76a01679
JB
10110 *pos -= 1;
10111 result = evaluate_subexp_standard (expect_type, exp, pos, noside);
10112 /* The result type will have code OP_STRING, bashed there from
10113 OP_ARRAY. Bash it back. */
78134374 10114 if (value_type (result)->code () == TYPE_CODE_STRING)
67607e24 10115 value_type (result)->set_code (TYPE_CODE_ARRAY);
76a01679 10116 return result;
4c4b4cd2 10117 }
14f9c5c9
AS
10118
10119 case UNOP_CAST:
10120 (*pos) += 2;
10121 type = exp->elts[pc + 1].type;
ced9779b 10122 return ada_evaluate_subexp_for_cast (exp, pos, noside, type);
14f9c5c9 10123
4c4b4cd2
PH
10124 case UNOP_QUAL:
10125 (*pos) += 2;
10126 type = exp->elts[pc + 1].type;
10127 return ada_evaluate_subexp (type, exp, pos, noside);
10128
14f9c5c9
AS
10129 case BINOP_ASSIGN:
10130 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
52ce6436
PH
10131 if (exp->elts[*pos].opcode == OP_AGGREGATE)
10132 {
10133 arg1 = assign_aggregate (arg1, arg1, exp, pos, noside);
10134 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
10135 return arg1;
10136 return ada_value_assign (arg1, arg1);
10137 }
003f3813
JB
10138 /* Force the evaluation of the rhs ARG2 to the type of the lhs ARG1,
10139 except if the lhs of our assignment is a convenience variable.
10140 In the case of assigning to a convenience variable, the lhs
10141 should be exactly the result of the evaluation of the rhs. */
10142 type = value_type (arg1);
10143 if (VALUE_LVAL (arg1) == lval_internalvar)
10144 type = NULL;
10145 arg2 = evaluate_subexp (type, exp, pos, noside);
14f9c5c9 10146 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
4c4b4cd2 10147 return arg1;
f411722c
TT
10148 if (VALUE_LVAL (arg1) == lval_internalvar)
10149 {
10150 /* Nothing. */
10151 }
b2188a06 10152 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
df407dfe 10153 arg2 = cast_to_fixed (value_type (arg1), arg2);
b2188a06 10154 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
76a01679 10155 error
323e0a4a 10156 (_("Fixed-point values must be assigned to fixed-point variables"));
d2e4a39e 10157 else
df407dfe 10158 arg2 = coerce_for_assign (value_type (arg1), arg2);
4c4b4cd2 10159 return ada_value_assign (arg1, arg2);
14f9c5c9
AS
10160
10161 case BINOP_ADD:
10162 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10163 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10164 if (noside == EVAL_SKIP)
4c4b4cd2 10165 goto nosideret;
78134374 10166 if (value_type (arg1)->code () == TYPE_CODE_PTR)
2ac8a782
JB
10167 return (value_from_longest
10168 (value_type (arg1),
10169 value_as_long (arg1) + value_as_long (arg2)));
78134374 10170 if (value_type (arg2)->code () == TYPE_CODE_PTR)
c40cc657
JB
10171 return (value_from_longest
10172 (value_type (arg2),
10173 value_as_long (arg1) + value_as_long (arg2)));
b2188a06
JB
10174 if ((ada_is_gnat_encoded_fixed_point_type (value_type (arg1))
10175 || ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
df407dfe 10176 && value_type (arg1) != value_type (arg2))
323e0a4a 10177 error (_("Operands of fixed-point addition must have the same type"));
b7789565
JB
10178 /* Do the addition, and cast the result to the type of the first
10179 argument. We cannot cast the result to a reference type, so if
10180 ARG1 is a reference type, find its underlying type. */
10181 type = value_type (arg1);
78134374 10182 while (type->code () == TYPE_CODE_REF)
b7789565 10183 type = TYPE_TARGET_TYPE (type);
f44316fa 10184 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
89eef114 10185 return value_cast (type, value_binop (arg1, arg2, BINOP_ADD));
14f9c5c9
AS
10186
10187 case BINOP_SUB:
10188 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
10189 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
10190 if (noside == EVAL_SKIP)
4c4b4cd2 10191 goto nosideret;
78134374 10192 if (value_type (arg1)->code () == TYPE_CODE_PTR)
2ac8a782
JB
10193 return (value_from_longest
10194 (value_type (arg1),
10195 value_as_long (arg1) - value_as_long (arg2)));
78134374 10196 if (value_type (arg2)->code () == TYPE_CODE_PTR)
c40cc657
JB
10197 return (value_from_longest
10198 (value_type (arg2),
10199 value_as_long (arg1) - value_as_long (arg2)));
b2188a06
JB
10200 if ((ada_is_gnat_encoded_fixed_point_type (value_type (arg1))
10201 || ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
df407dfe 10202 && value_type (arg1) != value_type (arg2))
0963b4bd
MS
10203 error (_("Operands of fixed-point subtraction "
10204 "must have the same type"));
b7789565
JB
10205 /* Do the substraction, and cast the result to the type of the first
10206 argument. We cannot cast the result to a reference type, so if
10207 ARG1 is a reference type, find its underlying type. */
10208 type = value_type (arg1);
78134374 10209 while (type->code () == TYPE_CODE_REF)
b7789565 10210 type = TYPE_TARGET_TYPE (type);
f44316fa 10211 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
89eef114 10212 return value_cast (type, value_binop (arg1, arg2, BINOP_SUB));
14f9c5c9
AS
10213
10214 case BINOP_MUL:
10215 case BINOP_DIV:
e1578042
JB
10216 case BINOP_REM:
10217 case BINOP_MOD:
14f9c5c9
AS
10218 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10219 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10220 if (noside == EVAL_SKIP)
4c4b4cd2 10221 goto nosideret;
e1578042 10222 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
9c2be529
JB
10223 {
10224 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10225 return value_zero (value_type (arg1), not_lval);
10226 }
14f9c5c9 10227 else
4c4b4cd2 10228 {
a53b7a21 10229 type = builtin_type (exp->gdbarch)->builtin_double;
b2188a06 10230 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
a53b7a21 10231 arg1 = cast_from_fixed (type, arg1);
b2188a06 10232 if (ada_is_gnat_encoded_fixed_point_type (value_type (arg2)))
a53b7a21 10233 arg2 = cast_from_fixed (type, arg2);
f44316fa 10234 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
4c4b4cd2
PH
10235 return ada_value_binop (arg1, arg2, op);
10236 }
10237
4c4b4cd2
PH
10238 case BINOP_EQUAL:
10239 case BINOP_NOTEQUAL:
14f9c5c9 10240 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 10241 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
14f9c5c9 10242 if (noside == EVAL_SKIP)
76a01679 10243 goto nosideret;
4c4b4cd2 10244 if (noside == EVAL_AVOID_SIDE_EFFECTS)
76a01679 10245 tem = 0;
4c4b4cd2 10246 else
f44316fa
UW
10247 {
10248 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10249 tem = ada_value_equal (arg1, arg2);
10250 }
4c4b4cd2 10251 if (op == BINOP_NOTEQUAL)
76a01679 10252 tem = !tem;
fbb06eb1
UW
10253 type = language_bool_type (exp->language_defn, exp->gdbarch);
10254 return value_from_longest (type, (LONGEST) tem);
4c4b4cd2
PH
10255
10256 case UNOP_NEG:
10257 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10258 if (noside == EVAL_SKIP)
10259 goto nosideret;
b2188a06 10260 else if (ada_is_gnat_encoded_fixed_point_type (value_type (arg1)))
df407dfe 10261 return value_cast (value_type (arg1), value_neg (arg1));
14f9c5c9 10262 else
f44316fa
UW
10263 {
10264 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10265 return value_neg (arg1);
10266 }
4c4b4cd2 10267
2330c6c6
JB
10268 case BINOP_LOGICAL_AND:
10269 case BINOP_LOGICAL_OR:
10270 case UNOP_LOGICAL_NOT:
000d5124
JB
10271 {
10272 struct value *val;
10273
10274 *pos -= 1;
10275 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
fbb06eb1
UW
10276 type = language_bool_type (exp->language_defn, exp->gdbarch);
10277 return value_cast (type, val);
000d5124 10278 }
2330c6c6
JB
10279
10280 case BINOP_BITWISE_AND:
10281 case BINOP_BITWISE_IOR:
10282 case BINOP_BITWISE_XOR:
000d5124
JB
10283 {
10284 struct value *val;
10285
10286 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
10287 *pos = pc;
10288 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
10289
10290 return value_cast (value_type (arg1), val);
10291 }
2330c6c6 10292
14f9c5c9
AS
10293 case OP_VAR_VALUE:
10294 *pos -= 1;
6799def4 10295
14f9c5c9 10296 if (noside == EVAL_SKIP)
4c4b4cd2
PH
10297 {
10298 *pos += 4;
10299 goto nosideret;
10300 }
da5c522f
JB
10301
10302 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
76a01679
JB
10303 /* Only encountered when an unresolved symbol occurs in a
10304 context other than a function call, in which case, it is
52ce6436 10305 invalid. */
323e0a4a 10306 error (_("Unexpected unresolved symbol, %s, during evaluation"),
987012b8 10307 exp->elts[pc + 2].symbol->print_name ());
da5c522f
JB
10308
10309 if (noside == EVAL_AVOID_SIDE_EFFECTS)
4c4b4cd2 10310 {
0c1f74cf 10311 type = static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
31dbc1c5
JB
10312 /* Check to see if this is a tagged type. We also need to handle
10313 the case where the type is a reference to a tagged type, but
10314 we have to be careful to exclude pointers to tagged types.
10315 The latter should be shown as usual (as a pointer), whereas
10316 a reference should mostly be transparent to the user. */
10317 if (ada_is_tagged_type (type, 0)
78134374 10318 || (type->code () == TYPE_CODE_REF
31dbc1c5 10319 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0)))
0d72a7c3
JB
10320 {
10321 /* Tagged types are a little special in the fact that the real
10322 type is dynamic and can only be determined by inspecting the
10323 object's tag. This means that we need to get the object's
10324 value first (EVAL_NORMAL) and then extract the actual object
10325 type from its tag.
10326
10327 Note that we cannot skip the final step where we extract
10328 the object type from its tag, because the EVAL_NORMAL phase
10329 results in dynamic components being resolved into fixed ones.
10330 This can cause problems when trying to print the type
10331 description of tagged types whose parent has a dynamic size:
10332 We use the type name of the "_parent" component in order
10333 to print the name of the ancestor type in the type description.
10334 If that component had a dynamic size, the resolution into
10335 a fixed type would result in the loss of that type name,
10336 thus preventing us from printing the name of the ancestor
10337 type in the type description. */
10338 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_NORMAL);
10339
78134374 10340 if (type->code () != TYPE_CODE_REF)
0d72a7c3
JB
10341 {
10342 struct type *actual_type;
10343
10344 actual_type = type_from_tag (ada_value_tag (arg1));
10345 if (actual_type == NULL)
10346 /* If, for some reason, we were unable to determine
10347 the actual type from the tag, then use the static
10348 approximation that we just computed as a fallback.
10349 This can happen if the debugging information is
10350 incomplete, for instance. */
10351 actual_type = type;
10352 return value_zero (actual_type, not_lval);
10353 }
10354 else
10355 {
10356 /* In the case of a ref, ada_coerce_ref takes care
10357 of determining the actual type. But the evaluation
10358 should return a ref as it should be valid to ask
10359 for its address; so rebuild a ref after coerce. */
10360 arg1 = ada_coerce_ref (arg1);
a65cfae5 10361 return value_ref (arg1, TYPE_CODE_REF);
0d72a7c3
JB
10362 }
10363 }
0c1f74cf 10364
84754697
JB
10365 /* Records and unions for which GNAT encodings have been
10366 generated need to be statically fixed as well.
10367 Otherwise, non-static fixing produces a type where
10368 all dynamic properties are removed, which prevents "ptype"
10369 from being able to completely describe the type.
10370 For instance, a case statement in a variant record would be
10371 replaced by the relevant components based on the actual
10372 value of the discriminants. */
78134374 10373 if ((type->code () == TYPE_CODE_STRUCT
84754697 10374 && dynamic_template_type (type) != NULL)
78134374 10375 || (type->code () == TYPE_CODE_UNION
84754697
JB
10376 && ada_find_parallel_type (type, "___XVU") != NULL))
10377 {
10378 *pos += 4;
10379 return value_zero (to_static_fixed_type (type), not_lval);
10380 }
4c4b4cd2 10381 }
da5c522f
JB
10382
10383 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
10384 return ada_to_fixed_value (arg1);
4c4b4cd2
PH
10385
10386 case OP_FUNCALL:
10387 (*pos) += 2;
10388
10389 /* Allocate arg vector, including space for the function to be
10390 called in argvec[0] and a terminating NULL. */
10391 nargs = longest_to_int (exp->elts[pc + 1].longconst);
8d749320 10392 argvec = XALLOCAVEC (struct value *, nargs + 2);
4c4b4cd2
PH
10393
10394 if (exp->elts[*pos].opcode == OP_VAR_VALUE
76a01679 10395 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
323e0a4a 10396 error (_("Unexpected unresolved symbol, %s, during evaluation"),
987012b8 10397 exp->elts[pc + 5].symbol->print_name ());
4c4b4cd2
PH
10398 else
10399 {
10400 for (tem = 0; tem <= nargs; tem += 1)
10401 argvec[tem] = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10402 argvec[tem] = 0;
10403
10404 if (noside == EVAL_SKIP)
10405 goto nosideret;
10406 }
10407
ad82864c
JB
10408 if (ada_is_constrained_packed_array_type
10409 (desc_base_type (value_type (argvec[0]))))
4c4b4cd2 10410 argvec[0] = ada_coerce_to_simple_array (argvec[0]);
78134374 10411 else if (value_type (argvec[0])->code () == TYPE_CODE_ARRAY
284614f0
JB
10412 && TYPE_FIELD_BITSIZE (value_type (argvec[0]), 0) != 0)
10413 /* This is a packed array that has already been fixed, and
10414 therefore already coerced to a simple array. Nothing further
10415 to do. */
10416 ;
78134374 10417 else if (value_type (argvec[0])->code () == TYPE_CODE_REF)
e6c2c623
PMR
10418 {
10419 /* Make sure we dereference references so that all the code below
10420 feels like it's really handling the referenced value. Wrapping
10421 types (for alignment) may be there, so make sure we strip them as
10422 well. */
10423 argvec[0] = ada_to_fixed_value (coerce_ref (argvec[0]));
10424 }
78134374 10425 else if (value_type (argvec[0])->code () == TYPE_CODE_ARRAY
e6c2c623
PMR
10426 && VALUE_LVAL (argvec[0]) == lval_memory)
10427 argvec[0] = value_addr (argvec[0]);
4c4b4cd2 10428
df407dfe 10429 type = ada_check_typedef (value_type (argvec[0]));
720d1a40
JB
10430
10431 /* Ada allows us to implicitly dereference arrays when subscripting
8f465ea7
JB
10432 them. So, if this is an array typedef (encoding use for array
10433 access types encoded as fat pointers), strip it now. */
78134374 10434 if (type->code () == TYPE_CODE_TYPEDEF)
720d1a40
JB
10435 type = ada_typedef_target_type (type);
10436
78134374 10437 if (type->code () == TYPE_CODE_PTR)
4c4b4cd2 10438 {
78134374 10439 switch (ada_check_typedef (TYPE_TARGET_TYPE (type))->code ())
4c4b4cd2
PH
10440 {
10441 case TYPE_CODE_FUNC:
61ee279c 10442 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
4c4b4cd2
PH
10443 break;
10444 case TYPE_CODE_ARRAY:
10445 break;
10446 case TYPE_CODE_STRUCT:
10447 if (noside != EVAL_AVOID_SIDE_EFFECTS)
10448 argvec[0] = ada_value_ind (argvec[0]);
61ee279c 10449 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
4c4b4cd2
PH
10450 break;
10451 default:
323e0a4a 10452 error (_("cannot subscript or call something of type `%s'"),
df407dfe 10453 ada_type_name (value_type (argvec[0])));
4c4b4cd2
PH
10454 break;
10455 }
10456 }
10457
78134374 10458 switch (type->code ())
4c4b4cd2
PH
10459 {
10460 case TYPE_CODE_FUNC:
10461 if (noside == EVAL_AVOID_SIDE_EFFECTS)
c8ea1972 10462 {
7022349d
PA
10463 if (TYPE_TARGET_TYPE (type) == NULL)
10464 error_call_unknown_return_type (NULL);
10465 return allocate_value (TYPE_TARGET_TYPE (type));
c8ea1972 10466 }
e71585ff
PA
10467 return call_function_by_hand (argvec[0], NULL,
10468 gdb::make_array_view (argvec + 1,
10469 nargs));
c8ea1972
PH
10470 case TYPE_CODE_INTERNAL_FUNCTION:
10471 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10472 /* We don't know anything about what the internal
10473 function might return, but we have to return
10474 something. */
10475 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
10476 not_lval);
10477 else
10478 return call_internal_function (exp->gdbarch, exp->language_defn,
10479 argvec[0], nargs, argvec + 1);
10480
4c4b4cd2
PH
10481 case TYPE_CODE_STRUCT:
10482 {
10483 int arity;
10484
4c4b4cd2
PH
10485 arity = ada_array_arity (type);
10486 type = ada_array_element_type (type, nargs);
10487 if (type == NULL)
323e0a4a 10488 error (_("cannot subscript or call a record"));
4c4b4cd2 10489 if (arity != nargs)
323e0a4a 10490 error (_("wrong number of subscripts; expecting %d"), arity);
4c4b4cd2 10491 if (noside == EVAL_AVOID_SIDE_EFFECTS)
0a07e705 10492 return value_zero (ada_aligned_type (type), lval_memory);
4c4b4cd2
PH
10493 return
10494 unwrap_value (ada_value_subscript
10495 (argvec[0], nargs, argvec + 1));
10496 }
10497 case TYPE_CODE_ARRAY:
10498 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10499 {
10500 type = ada_array_element_type (type, nargs);
10501 if (type == NULL)
323e0a4a 10502 error (_("element type of array unknown"));
4c4b4cd2 10503 else
0a07e705 10504 return value_zero (ada_aligned_type (type), lval_memory);
4c4b4cd2
PH
10505 }
10506 return
10507 unwrap_value (ada_value_subscript
10508 (ada_coerce_to_simple_array (argvec[0]),
10509 nargs, argvec + 1));
10510 case TYPE_CODE_PTR: /* Pointer to array */
4c4b4cd2
PH
10511 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10512 {
deede10c 10513 type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1);
4c4b4cd2
PH
10514 type = ada_array_element_type (type, nargs);
10515 if (type == NULL)
323e0a4a 10516 error (_("element type of array unknown"));
4c4b4cd2 10517 else
0a07e705 10518 return value_zero (ada_aligned_type (type), lval_memory);
4c4b4cd2
PH
10519 }
10520 return
deede10c
JB
10521 unwrap_value (ada_value_ptr_subscript (argvec[0],
10522 nargs, argvec + 1));
4c4b4cd2
PH
10523
10524 default:
e1d5a0d2
PH
10525 error (_("Attempt to index or call something other than an "
10526 "array or function"));
4c4b4cd2
PH
10527 }
10528
10529 case TERNOP_SLICE:
10530 {
10531 struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10532 struct value *low_bound_val =
10533 evaluate_subexp (NULL_TYPE, exp, pos, noside);
714e53ab
PH
10534 struct value *high_bound_val =
10535 evaluate_subexp (NULL_TYPE, exp, pos, noside);
10536 LONGEST low_bound;
10537 LONGEST high_bound;
5b4ee69b 10538
994b9211
AC
10539 low_bound_val = coerce_ref (low_bound_val);
10540 high_bound_val = coerce_ref (high_bound_val);
aa715135
JG
10541 low_bound = value_as_long (low_bound_val);
10542 high_bound = value_as_long (high_bound_val);
963a6417 10543
4c4b4cd2
PH
10544 if (noside == EVAL_SKIP)
10545 goto nosideret;
10546
4c4b4cd2
PH
10547 /* If this is a reference to an aligner type, then remove all
10548 the aligners. */
78134374 10549 if (value_type (array)->code () == TYPE_CODE_REF
df407dfe
AC
10550 && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array))))
10551 TYPE_TARGET_TYPE (value_type (array)) =
10552 ada_aligned_type (TYPE_TARGET_TYPE (value_type (array)));
4c4b4cd2 10553
ad82864c 10554 if (ada_is_constrained_packed_array_type (value_type (array)))
323e0a4a 10555 error (_("cannot slice a packed array"));
4c4b4cd2
PH
10556
10557 /* If this is a reference to an array or an array lvalue,
10558 convert to a pointer. */
78134374
SM
10559 if (value_type (array)->code () == TYPE_CODE_REF
10560 || (value_type (array)->code () == TYPE_CODE_ARRAY
4c4b4cd2
PH
10561 && VALUE_LVAL (array) == lval_memory))
10562 array = value_addr (array);
10563
1265e4aa 10564 if (noside == EVAL_AVOID_SIDE_EFFECTS
61ee279c 10565 && ada_is_array_descriptor_type (ada_check_typedef
df407dfe 10566 (value_type (array))))
bff8c71f
TT
10567 return empty_array (ada_type_of_array (array, 0), low_bound,
10568 high_bound);
4c4b4cd2
PH
10569
10570 array = ada_coerce_to_simple_array_ptr (array);
10571
714e53ab
PH
10572 /* If we have more than one level of pointer indirection,
10573 dereference the value until we get only one level. */
78134374
SM
10574 while (value_type (array)->code () == TYPE_CODE_PTR
10575 && (TYPE_TARGET_TYPE (value_type (array))->code ()
714e53ab
PH
10576 == TYPE_CODE_PTR))
10577 array = value_ind (array);
10578
10579 /* Make sure we really do have an array type before going further,
10580 to avoid a SEGV when trying to get the index type or the target
10581 type later down the road if the debug info generated by
10582 the compiler is incorrect or incomplete. */
df407dfe 10583 if (!ada_is_simple_array_type (value_type (array)))
323e0a4a 10584 error (_("cannot take slice of non-array"));
714e53ab 10585
78134374 10586 if (ada_check_typedef (value_type (array))->code ()
828292f2 10587 == TYPE_CODE_PTR)
4c4b4cd2 10588 {
828292f2
JB
10589 struct type *type0 = ada_check_typedef (value_type (array));
10590
0b5d8877 10591 if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS)
bff8c71f 10592 return empty_array (TYPE_TARGET_TYPE (type0), low_bound, high_bound);
4c4b4cd2
PH
10593 else
10594 {
10595 struct type *arr_type0 =
828292f2 10596 to_fixed_array_type (TYPE_TARGET_TYPE (type0), NULL, 1);
5b4ee69b 10597
f5938064
JG
10598 return ada_value_slice_from_ptr (array, arr_type0,
10599 longest_to_int (low_bound),
10600 longest_to_int (high_bound));
4c4b4cd2
PH
10601 }
10602 }
10603 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10604 return array;
10605 else if (high_bound < low_bound)
bff8c71f 10606 return empty_array (value_type (array), low_bound, high_bound);
4c4b4cd2 10607 else
529cad9c
PH
10608 return ada_value_slice (array, longest_to_int (low_bound),
10609 longest_to_int (high_bound));
4c4b4cd2 10610 }
14f9c5c9 10611
4c4b4cd2
PH
10612 case UNOP_IN_RANGE:
10613 (*pos) += 2;
10614 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8008e265 10615 type = check_typedef (exp->elts[pc + 1].type);
14f9c5c9 10616
14f9c5c9 10617 if (noside == EVAL_SKIP)
4c4b4cd2 10618 goto nosideret;
14f9c5c9 10619
78134374 10620 switch (type->code ())
4c4b4cd2
PH
10621 {
10622 default:
e1d5a0d2
PH
10623 lim_warning (_("Membership test incompletely implemented; "
10624 "always returns true"));
fbb06eb1
UW
10625 type = language_bool_type (exp->language_defn, exp->gdbarch);
10626 return value_from_longest (type, (LONGEST) 1);
4c4b4cd2
PH
10627
10628 case TYPE_CODE_RANGE:
030b4912
UW
10629 arg2 = value_from_longest (type, TYPE_LOW_BOUND (type));
10630 arg3 = value_from_longest (type, TYPE_HIGH_BOUND (type));
f44316fa
UW
10631 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10632 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
fbb06eb1
UW
10633 type = language_bool_type (exp->language_defn, exp->gdbarch);
10634 return
10635 value_from_longest (type,
4c4b4cd2
PH
10636 (value_less (arg1, arg3)
10637 || value_equal (arg1, arg3))
10638 && (value_less (arg2, arg1)
10639 || value_equal (arg2, arg1)));
10640 }
10641
10642 case BINOP_IN_BOUNDS:
14f9c5c9 10643 (*pos) += 2;
4c4b4cd2
PH
10644 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10645 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
14f9c5c9 10646
4c4b4cd2
PH
10647 if (noside == EVAL_SKIP)
10648 goto nosideret;
14f9c5c9 10649
4c4b4cd2 10650 if (noside == EVAL_AVOID_SIDE_EFFECTS)
fbb06eb1
UW
10651 {
10652 type = language_bool_type (exp->language_defn, exp->gdbarch);
10653 return value_zero (type, not_lval);
10654 }
14f9c5c9 10655
4c4b4cd2 10656 tem = longest_to_int (exp->elts[pc + 1].longconst);
14f9c5c9 10657
1eea4ebd
UW
10658 type = ada_index_type (value_type (arg2), tem, "range");
10659 if (!type)
10660 type = value_type (arg1);
14f9c5c9 10661
1eea4ebd
UW
10662 arg3 = value_from_longest (type, ada_array_bound (arg2, tem, 1));
10663 arg2 = value_from_longest (type, ada_array_bound (arg2, tem, 0));
d2e4a39e 10664
f44316fa
UW
10665 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10666 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
fbb06eb1 10667 type = language_bool_type (exp->language_defn, exp->gdbarch);
4c4b4cd2 10668 return
fbb06eb1 10669 value_from_longest (type,
4c4b4cd2
PH
10670 (value_less (arg1, arg3)
10671 || value_equal (arg1, arg3))
10672 && (value_less (arg2, arg1)
10673 || value_equal (arg2, arg1)));
10674
10675 case TERNOP_IN_RANGE:
10676 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10677 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10678 arg3 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10679
10680 if (noside == EVAL_SKIP)
10681 goto nosideret;
10682
f44316fa
UW
10683 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10684 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
fbb06eb1 10685 type = language_bool_type (exp->language_defn, exp->gdbarch);
4c4b4cd2 10686 return
fbb06eb1 10687 value_from_longest (type,
4c4b4cd2
PH
10688 (value_less (arg1, arg3)
10689 || value_equal (arg1, arg3))
10690 && (value_less (arg2, arg1)
10691 || value_equal (arg2, arg1)));
10692
10693 case OP_ATR_FIRST:
10694 case OP_ATR_LAST:
10695 case OP_ATR_LENGTH:
10696 {
76a01679 10697 struct type *type_arg;
5b4ee69b 10698
76a01679
JB
10699 if (exp->elts[*pos].opcode == OP_TYPE)
10700 {
10701 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
10702 arg1 = NULL;
5bc23cb3 10703 type_arg = check_typedef (exp->elts[pc + 2].type);
76a01679
JB
10704 }
10705 else
10706 {
10707 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10708 type_arg = NULL;
10709 }
10710
10711 if (exp->elts[*pos].opcode != OP_LONG)
323e0a4a 10712 error (_("Invalid operand to '%s"), ada_attribute_name (op));
76a01679
JB
10713 tem = longest_to_int (exp->elts[*pos + 2].longconst);
10714 *pos += 4;
10715
10716 if (noside == EVAL_SKIP)
10717 goto nosideret;
680e1bee
TT
10718 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
10719 {
10720 if (type_arg == NULL)
10721 type_arg = value_type (arg1);
76a01679 10722
680e1bee
TT
10723 if (ada_is_constrained_packed_array_type (type_arg))
10724 type_arg = decode_constrained_packed_array_type (type_arg);
10725
10726 if (!discrete_type_p (type_arg))
10727 {
10728 switch (op)
10729 {
10730 default: /* Should never happen. */
10731 error (_("unexpected attribute encountered"));
10732 case OP_ATR_FIRST:
10733 case OP_ATR_LAST:
10734 type_arg = ada_index_type (type_arg, tem,
10735 ada_attribute_name (op));
10736 break;
10737 case OP_ATR_LENGTH:
10738 type_arg = builtin_type (exp->gdbarch)->builtin_int;
10739 break;
10740 }
10741 }
10742
10743 return value_zero (type_arg, not_lval);
10744 }
10745 else if (type_arg == NULL)
76a01679
JB
10746 {
10747 arg1 = ada_coerce_ref (arg1);
10748
ad82864c 10749 if (ada_is_constrained_packed_array_type (value_type (arg1)))
76a01679
JB
10750 arg1 = ada_coerce_to_simple_array (arg1);
10751
aa4fb036 10752 if (op == OP_ATR_LENGTH)
1eea4ebd 10753 type = builtin_type (exp->gdbarch)->builtin_int;
aa4fb036
JB
10754 else
10755 {
10756 type = ada_index_type (value_type (arg1), tem,
10757 ada_attribute_name (op));
10758 if (type == NULL)
10759 type = builtin_type (exp->gdbarch)->builtin_int;
10760 }
76a01679 10761
76a01679
JB
10762 switch (op)
10763 {
10764 default: /* Should never happen. */
323e0a4a 10765 error (_("unexpected attribute encountered"));
76a01679 10766 case OP_ATR_FIRST:
1eea4ebd
UW
10767 return value_from_longest
10768 (type, ada_array_bound (arg1, tem, 0));
76a01679 10769 case OP_ATR_LAST:
1eea4ebd
UW
10770 return value_from_longest
10771 (type, ada_array_bound (arg1, tem, 1));
76a01679 10772 case OP_ATR_LENGTH:
1eea4ebd
UW
10773 return value_from_longest
10774 (type, ada_array_length (arg1, tem));
76a01679
JB
10775 }
10776 }
10777 else if (discrete_type_p (type_arg))
10778 {
10779 struct type *range_type;
0d5cff50 10780 const char *name = ada_type_name (type_arg);
5b4ee69b 10781
76a01679 10782 range_type = NULL;
78134374 10783 if (name != NULL && type_arg->code () != TYPE_CODE_ENUM)
28c85d6c 10784 range_type = to_fixed_range_type (type_arg, NULL);
76a01679
JB
10785 if (range_type == NULL)
10786 range_type = type_arg;
10787 switch (op)
10788 {
10789 default:
323e0a4a 10790 error (_("unexpected attribute encountered"));
76a01679 10791 case OP_ATR_FIRST:
690cc4eb 10792 return value_from_longest
43bbcdc2 10793 (range_type, ada_discrete_type_low_bound (range_type));
76a01679 10794 case OP_ATR_LAST:
690cc4eb 10795 return value_from_longest
43bbcdc2 10796 (range_type, ada_discrete_type_high_bound (range_type));
76a01679 10797 case OP_ATR_LENGTH:
323e0a4a 10798 error (_("the 'length attribute applies only to array types"));
76a01679
JB
10799 }
10800 }
78134374 10801 else if (type_arg->code () == TYPE_CODE_FLT)
323e0a4a 10802 error (_("unimplemented type attribute"));
76a01679
JB
10803 else
10804 {
10805 LONGEST low, high;
10806
ad82864c
JB
10807 if (ada_is_constrained_packed_array_type (type_arg))
10808 type_arg = decode_constrained_packed_array_type (type_arg);
76a01679 10809
aa4fb036 10810 if (op == OP_ATR_LENGTH)
1eea4ebd 10811 type = builtin_type (exp->gdbarch)->builtin_int;
aa4fb036
JB
10812 else
10813 {
10814 type = ada_index_type (type_arg, tem, ada_attribute_name (op));
10815 if (type == NULL)
10816 type = builtin_type (exp->gdbarch)->builtin_int;
10817 }
1eea4ebd 10818
76a01679
JB
10819 switch (op)
10820 {
10821 default:
323e0a4a 10822 error (_("unexpected attribute encountered"));
76a01679 10823 case OP_ATR_FIRST:
1eea4ebd 10824 low = ada_array_bound_from_type (type_arg, tem, 0);
76a01679
JB
10825 return value_from_longest (type, low);
10826 case OP_ATR_LAST:
1eea4ebd 10827 high = ada_array_bound_from_type (type_arg, tem, 1);
76a01679
JB
10828 return value_from_longest (type, high);
10829 case OP_ATR_LENGTH:
1eea4ebd
UW
10830 low = ada_array_bound_from_type (type_arg, tem, 0);
10831 high = ada_array_bound_from_type (type_arg, tem, 1);
76a01679
JB
10832 return value_from_longest (type, high - low + 1);
10833 }
10834 }
14f9c5c9
AS
10835 }
10836
4c4b4cd2
PH
10837 case OP_ATR_TAG:
10838 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10839 if (noside == EVAL_SKIP)
76a01679 10840 goto nosideret;
4c4b4cd2
PH
10841
10842 if (noside == EVAL_AVOID_SIDE_EFFECTS)
76a01679 10843 return value_zero (ada_tag_type (arg1), not_lval);
4c4b4cd2
PH
10844
10845 return ada_value_tag (arg1);
10846
10847 case OP_ATR_MIN:
10848 case OP_ATR_MAX:
10849 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
14f9c5c9
AS
10850 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10851 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10852 if (noside == EVAL_SKIP)
76a01679 10853 goto nosideret;
d2e4a39e 10854 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
df407dfe 10855 return value_zero (value_type (arg1), not_lval);
14f9c5c9 10856 else
f44316fa
UW
10857 {
10858 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10859 return value_binop (arg1, arg2,
10860 op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
10861 }
14f9c5c9 10862
4c4b4cd2
PH
10863 case OP_ATR_MODULUS:
10864 {
31dedfee 10865 struct type *type_arg = check_typedef (exp->elts[pc + 2].type);
4c4b4cd2 10866
5b4ee69b 10867 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
76a01679
JB
10868 if (noside == EVAL_SKIP)
10869 goto nosideret;
4c4b4cd2 10870
76a01679 10871 if (!ada_is_modular_type (type_arg))
323e0a4a 10872 error (_("'modulus must be applied to modular type"));
4c4b4cd2 10873
76a01679
JB
10874 return value_from_longest (TYPE_TARGET_TYPE (type_arg),
10875 ada_modulus (type_arg));
4c4b4cd2
PH
10876 }
10877
10878
10879 case OP_ATR_POS:
10880 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
14f9c5c9
AS
10881 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10882 if (noside == EVAL_SKIP)
76a01679 10883 goto nosideret;
3cb382c9
UW
10884 type = builtin_type (exp->gdbarch)->builtin_int;
10885 if (noside == EVAL_AVOID_SIDE_EFFECTS)
10886 return value_zero (type, not_lval);
14f9c5c9 10887 else
3cb382c9 10888 return value_pos_atr (type, arg1);
14f9c5c9 10889
4c4b4cd2
PH
10890 case OP_ATR_SIZE:
10891 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8c1c099f
JB
10892 type = value_type (arg1);
10893
10894 /* If the argument is a reference, then dereference its type, since
10895 the user is really asking for the size of the actual object,
10896 not the size of the pointer. */
78134374 10897 if (type->code () == TYPE_CODE_REF)
8c1c099f
JB
10898 type = TYPE_TARGET_TYPE (type);
10899
4c4b4cd2 10900 if (noside == EVAL_SKIP)
76a01679 10901 goto nosideret;
4c4b4cd2 10902 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
22601c15 10903 return value_zero (builtin_type (exp->gdbarch)->builtin_int, not_lval);
4c4b4cd2 10904 else
22601c15 10905 return value_from_longest (builtin_type (exp->gdbarch)->builtin_int,
8c1c099f 10906 TARGET_CHAR_BIT * TYPE_LENGTH (type));
4c4b4cd2
PH
10907
10908 case OP_ATR_VAL:
10909 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
14f9c5c9 10910 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
4c4b4cd2 10911 type = exp->elts[pc + 2].type;
14f9c5c9 10912 if (noside == EVAL_SKIP)
76a01679 10913 goto nosideret;
4c4b4cd2 10914 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
76a01679 10915 return value_zero (type, not_lval);
4c4b4cd2 10916 else
76a01679 10917 return value_val_atr (type, arg1);
4c4b4cd2
PH
10918
10919 case BINOP_EXP:
10920 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10921 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10922 if (noside == EVAL_SKIP)
10923 goto nosideret;
10924 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
df407dfe 10925 return value_zero (value_type (arg1), not_lval);
4c4b4cd2 10926 else
f44316fa
UW
10927 {
10928 /* For integer exponentiation operations,
10929 only promote the first argument. */
10930 if (is_integral_type (value_type (arg2)))
10931 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
10932 else
10933 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
10934
10935 return value_binop (arg1, arg2, op);
10936 }
4c4b4cd2
PH
10937
10938 case UNOP_PLUS:
10939 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10940 if (noside == EVAL_SKIP)
10941 goto nosideret;
10942 else
10943 return arg1;
10944
10945 case UNOP_ABS:
10946 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
10947 if (noside == EVAL_SKIP)
10948 goto nosideret;
f44316fa 10949 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
df407dfe 10950 if (value_less (arg1, value_zero (value_type (arg1), not_lval)))
4c4b4cd2 10951 return value_neg (arg1);
14f9c5c9 10952 else
4c4b4cd2 10953 return arg1;
14f9c5c9
AS
10954
10955 case UNOP_IND:
5ec18f2b 10956 preeval_pos = *pos;
6b0d7253 10957 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
14f9c5c9 10958 if (noside == EVAL_SKIP)
4c4b4cd2 10959 goto nosideret;
df407dfe 10960 type = ada_check_typedef (value_type (arg1));
14f9c5c9 10961 if (noside == EVAL_AVOID_SIDE_EFFECTS)
4c4b4cd2
PH
10962 {
10963 if (ada_is_array_descriptor_type (type))
10964 /* GDB allows dereferencing GNAT array descriptors. */
10965 {
10966 struct type *arrType = ada_type_of_array (arg1, 0);
5b4ee69b 10967
4c4b4cd2 10968 if (arrType == NULL)
323e0a4a 10969 error (_("Attempt to dereference null array pointer."));
00a4c844 10970 return value_at_lazy (arrType, 0);
4c4b4cd2 10971 }
78134374
SM
10972 else if (type->code () == TYPE_CODE_PTR
10973 || type->code () == TYPE_CODE_REF
4c4b4cd2 10974 /* In C you can dereference an array to get the 1st elt. */
78134374 10975 || type->code () == TYPE_CODE_ARRAY)
714e53ab 10976 {
5ec18f2b
JG
10977 /* As mentioned in the OP_VAR_VALUE case, tagged types can
10978 only be determined by inspecting the object's tag.
10979 This means that we need to evaluate completely the
10980 expression in order to get its type. */
10981
78134374
SM
10982 if ((type->code () == TYPE_CODE_REF
10983 || type->code () == TYPE_CODE_PTR)
5ec18f2b
JG
10984 && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0))
10985 {
10986 arg1 = evaluate_subexp (NULL_TYPE, exp, &preeval_pos,
10987 EVAL_NORMAL);
10988 type = value_type (ada_value_ind (arg1));
10989 }
10990 else
10991 {
10992 type = to_static_fixed_type
10993 (ada_aligned_type
10994 (ada_check_typedef (TYPE_TARGET_TYPE (type))));
10995 }
c1b5a1a6 10996 ada_ensure_varsize_limit (type);
714e53ab
PH
10997 return value_zero (type, lval_memory);
10998 }
78134374 10999 else if (type->code () == TYPE_CODE_INT)
6b0d7253
JB
11000 {
11001 /* GDB allows dereferencing an int. */
11002 if (expect_type == NULL)
11003 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
11004 lval_memory);
11005 else
11006 {
11007 expect_type =
11008 to_static_fixed_type (ada_aligned_type (expect_type));
11009 return value_zero (expect_type, lval_memory);
11010 }
11011 }
4c4b4cd2 11012 else
323e0a4a 11013 error (_("Attempt to take contents of a non-pointer value."));
4c4b4cd2 11014 }
0963b4bd 11015 arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */
df407dfe 11016 type = ada_check_typedef (value_type (arg1));
d2e4a39e 11017
78134374 11018 if (type->code () == TYPE_CODE_INT)
96967637
JB
11019 /* GDB allows dereferencing an int. If we were given
11020 the expect_type, then use that as the target type.
11021 Otherwise, assume that the target type is an int. */
11022 {
11023 if (expect_type != NULL)
11024 return ada_value_ind (value_cast (lookup_pointer_type (expect_type),
11025 arg1));
11026 else
11027 return value_at_lazy (builtin_type (exp->gdbarch)->builtin_int,
11028 (CORE_ADDR) value_as_address (arg1));
11029 }
6b0d7253 11030
4c4b4cd2
PH
11031 if (ada_is_array_descriptor_type (type))
11032 /* GDB allows dereferencing GNAT array descriptors. */
11033 return ada_coerce_to_simple_array (arg1);
14f9c5c9 11034 else
4c4b4cd2 11035 return ada_value_ind (arg1);
14f9c5c9
AS
11036
11037 case STRUCTOP_STRUCT:
11038 tem = longest_to_int (exp->elts[pc + 1].longconst);
11039 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
5ec18f2b 11040 preeval_pos = *pos;
14f9c5c9
AS
11041 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
11042 if (noside == EVAL_SKIP)
4c4b4cd2 11043 goto nosideret;
14f9c5c9 11044 if (noside == EVAL_AVOID_SIDE_EFFECTS)
76a01679 11045 {
df407dfe 11046 struct type *type1 = value_type (arg1);
5b4ee69b 11047
76a01679
JB
11048 if (ada_is_tagged_type (type1, 1))
11049 {
11050 type = ada_lookup_struct_elt_type (type1,
11051 &exp->elts[pc + 2].string,
988f6b3d 11052 1, 1);
5ec18f2b
JG
11053
11054 /* If the field is not found, check if it exists in the
11055 extension of this object's type. This means that we
11056 need to evaluate completely the expression. */
11057
76a01679 11058 if (type == NULL)
5ec18f2b
JG
11059 {
11060 arg1 = evaluate_subexp (NULL_TYPE, exp, &preeval_pos,
11061 EVAL_NORMAL);
11062 arg1 = ada_value_struct_elt (arg1,
11063 &exp->elts[pc + 2].string,
11064 0);
11065 arg1 = unwrap_value (arg1);
11066 type = value_type (ada_to_fixed_value (arg1));
11067 }
76a01679
JB
11068 }
11069 else
11070 type =
11071 ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1,
988f6b3d 11072 0);
76a01679
JB
11073
11074 return value_zero (ada_aligned_type (type), lval_memory);
11075 }
14f9c5c9 11076 else
a579cd9a
MW
11077 {
11078 arg1 = ada_value_struct_elt (arg1, &exp->elts[pc + 2].string, 0);
11079 arg1 = unwrap_value (arg1);
11080 return ada_to_fixed_value (arg1);
11081 }
284614f0 11082
14f9c5c9 11083 case OP_TYPE:
4c4b4cd2
PH
11084 /* The value is not supposed to be used. This is here to make it
11085 easier to accommodate expressions that contain types. */
14f9c5c9
AS
11086 (*pos) += 2;
11087 if (noside == EVAL_SKIP)
4c4b4cd2 11088 goto nosideret;
14f9c5c9 11089 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
a6cfbe68 11090 return allocate_value (exp->elts[pc + 1].type);
14f9c5c9 11091 else
323e0a4a 11092 error (_("Attempt to use a type name as an expression"));
52ce6436
PH
11093
11094 case OP_AGGREGATE:
11095 case OP_CHOICES:
11096 case OP_OTHERS:
11097 case OP_DISCRETE_RANGE:
11098 case OP_POSITIONAL:
11099 case OP_NAME:
11100 if (noside == EVAL_NORMAL)
11101 switch (op)
11102 {
11103 case OP_NAME:
11104 error (_("Undefined name, ambiguous name, or renaming used in "
e1d5a0d2 11105 "component association: %s."), &exp->elts[pc+2].string);
52ce6436
PH
11106 case OP_AGGREGATE:
11107 error (_("Aggregates only allowed on the right of an assignment"));
11108 default:
0963b4bd
MS
11109 internal_error (__FILE__, __LINE__,
11110 _("aggregate apparently mangled"));
52ce6436
PH
11111 }
11112
11113 ada_forward_operator_length (exp, pc, &oplen, &nargs);
11114 *pos += oplen - 1;
11115 for (tem = 0; tem < nargs; tem += 1)
11116 ada_evaluate_subexp (NULL, exp, pos, noside);
11117 goto nosideret;
14f9c5c9
AS
11118 }
11119
11120nosideret:
ced9779b 11121 return eval_skip_value (exp);
14f9c5c9 11122}
14f9c5c9 11123\f
d2e4a39e 11124
4c4b4cd2 11125 /* Fixed point */
14f9c5c9
AS
11126
11127/* If TYPE encodes an Ada fixed-point type, return the suffix of the
11128 type name that encodes the 'small and 'delta information.
4c4b4cd2 11129 Otherwise, return NULL. */
14f9c5c9 11130
d2e4a39e 11131static const char *
b2188a06 11132gnat_encoded_fixed_type_info (struct type *type)
14f9c5c9 11133{
d2e4a39e 11134 const char *name = ada_type_name (type);
78134374 11135 enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : type->code ();
14f9c5c9 11136
d2e4a39e
AS
11137 if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL)
11138 {
14f9c5c9 11139 const char *tail = strstr (name, "___XF_");
5b4ee69b 11140
14f9c5c9 11141 if (tail == NULL)
4c4b4cd2 11142 return NULL;
d2e4a39e 11143 else
4c4b4cd2 11144 return tail + 5;
14f9c5c9
AS
11145 }
11146 else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type)
b2188a06 11147 return gnat_encoded_fixed_type_info (TYPE_TARGET_TYPE (type));
14f9c5c9
AS
11148 else
11149 return NULL;
11150}
11151
4c4b4cd2 11152/* Returns non-zero iff TYPE represents an Ada fixed-point type. */
14f9c5c9
AS
11153
11154int
b2188a06 11155ada_is_gnat_encoded_fixed_point_type (struct type *type)
14f9c5c9 11156{
b2188a06 11157 return gnat_encoded_fixed_type_info (type) != NULL;
14f9c5c9
AS
11158}
11159
4c4b4cd2
PH
11160/* Return non-zero iff TYPE represents a System.Address type. */
11161
11162int
11163ada_is_system_address_type (struct type *type)
11164{
7d93a1e0 11165 return (type->name () && strcmp (type->name (), "system__address") == 0);
4c4b4cd2
PH
11166}
11167
14f9c5c9 11168/* Assuming that TYPE is the representation of an Ada fixed-point
50eff16b
UW
11169 type, return the target floating-point type to be used to represent
11170 of this type during internal computation. */
11171
11172static struct type *
11173ada_scaling_type (struct type *type)
11174{
11175 return builtin_type (get_type_arch (type))->builtin_long_double;
11176}
11177
11178/* Assuming that TYPE is the representation of an Ada fixed-point
11179 type, return its delta, or NULL if the type is malformed and the
4c4b4cd2 11180 delta cannot be determined. */
14f9c5c9 11181
50eff16b 11182struct value *
b2188a06 11183gnat_encoded_fixed_point_delta (struct type *type)
14f9c5c9 11184{
b2188a06 11185 const char *encoding = gnat_encoded_fixed_type_info (type);
50eff16b
UW
11186 struct type *scale_type = ada_scaling_type (type);
11187
11188 long long num, den;
11189
11190 if (sscanf (encoding, "_%lld_%lld", &num, &den) < 2)
11191 return nullptr;
d2e4a39e 11192 else
50eff16b
UW
11193 return value_binop (value_from_longest (scale_type, num),
11194 value_from_longest (scale_type, den), BINOP_DIV);
14f9c5c9
AS
11195}
11196
b2188a06
JB
11197/* Assuming that ada_is_gnat_encoded_fixed_point_type (TYPE), return
11198 the scaling factor ('SMALL value) associated with the type. */
14f9c5c9 11199
50eff16b
UW
11200struct value *
11201ada_scaling_factor (struct type *type)
14f9c5c9 11202{
b2188a06 11203 const char *encoding = gnat_encoded_fixed_type_info (type);
50eff16b
UW
11204 struct type *scale_type = ada_scaling_type (type);
11205
11206 long long num0, den0, num1, den1;
14f9c5c9 11207 int n;
d2e4a39e 11208
50eff16b 11209 n = sscanf (encoding, "_%lld_%lld_%lld_%lld",
facc390f 11210 &num0, &den0, &num1, &den1);
14f9c5c9
AS
11211
11212 if (n < 2)
50eff16b 11213 return value_from_longest (scale_type, 1);
14f9c5c9 11214 else if (n == 4)
50eff16b
UW
11215 return value_binop (value_from_longest (scale_type, num1),
11216 value_from_longest (scale_type, den1), BINOP_DIV);
d2e4a39e 11217 else
50eff16b
UW
11218 return value_binop (value_from_longest (scale_type, num0),
11219 value_from_longest (scale_type, den0), BINOP_DIV);
14f9c5c9
AS
11220}
11221
14f9c5c9 11222\f
d2e4a39e 11223
4c4b4cd2 11224 /* Range types */
14f9c5c9
AS
11225
11226/* Scan STR beginning at position K for a discriminant name, and
11227 return the value of that discriminant field of DVAL in *PX. If
11228 PNEW_K is not null, put the position of the character beyond the
11229 name scanned in *PNEW_K. Return 1 if successful; return 0 and do
4c4b4cd2 11230 not alter *PX and *PNEW_K if unsuccessful. */
14f9c5c9
AS
11231
11232static int
108d56a4 11233scan_discrim_bound (const char *str, int k, struct value *dval, LONGEST * px,
76a01679 11234 int *pnew_k)
14f9c5c9
AS
11235{
11236 static char *bound_buffer = NULL;
11237 static size_t bound_buffer_len = 0;
5da1a4d3 11238 const char *pstart, *pend, *bound;
d2e4a39e 11239 struct value *bound_val;
14f9c5c9
AS
11240
11241 if (dval == NULL || str == NULL || str[k] == '\0')
11242 return 0;
11243
5da1a4d3
SM
11244 pstart = str + k;
11245 pend = strstr (pstart, "__");
14f9c5c9
AS
11246 if (pend == NULL)
11247 {
5da1a4d3 11248 bound = pstart;
14f9c5c9
AS
11249 k += strlen (bound);
11250 }
d2e4a39e 11251 else
14f9c5c9 11252 {
5da1a4d3
SM
11253 int len = pend - pstart;
11254
11255 /* Strip __ and beyond. */
11256 GROW_VECT (bound_buffer, bound_buffer_len, len + 1);
11257 strncpy (bound_buffer, pstart, len);
11258 bound_buffer[len] = '\0';
11259
14f9c5c9 11260 bound = bound_buffer;
d2e4a39e 11261 k = pend - str;
14f9c5c9 11262 }
d2e4a39e 11263
df407dfe 11264 bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval));
14f9c5c9
AS
11265 if (bound_val == NULL)
11266 return 0;
11267
11268 *px = value_as_long (bound_val);
11269 if (pnew_k != NULL)
11270 *pnew_k = k;
11271 return 1;
11272}
11273
11274/* Value of variable named NAME in the current environment. If
11275 no such variable found, then if ERR_MSG is null, returns 0, and
4c4b4cd2
PH
11276 otherwise causes an error with message ERR_MSG. */
11277
d2e4a39e 11278static struct value *
edb0c9cb 11279get_var_value (const char *name, const char *err_msg)
14f9c5c9 11280{
b5ec771e 11281 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
14f9c5c9 11282
54d343a2 11283 std::vector<struct block_symbol> syms;
b5ec771e
PA
11284 int nsyms = ada_lookup_symbol_list_worker (lookup_name,
11285 get_selected_block (0),
11286 VAR_DOMAIN, &syms, 1);
14f9c5c9
AS
11287
11288 if (nsyms != 1)
11289 {
11290 if (err_msg == NULL)
4c4b4cd2 11291 return 0;
14f9c5c9 11292 else
8a3fe4f8 11293 error (("%s"), err_msg);
14f9c5c9
AS
11294 }
11295
54d343a2 11296 return value_of_variable (syms[0].symbol, syms[0].block);
14f9c5c9 11297}
d2e4a39e 11298
edb0c9cb
PA
11299/* Value of integer variable named NAME in the current environment.
11300 If no such variable is found, returns false. Otherwise, sets VALUE
11301 to the variable's value and returns true. */
4c4b4cd2 11302
edb0c9cb
PA
11303bool
11304get_int_var_value (const char *name, LONGEST &value)
14f9c5c9 11305{
4c4b4cd2 11306 struct value *var_val = get_var_value (name, 0);
d2e4a39e 11307
14f9c5c9 11308 if (var_val == 0)
edb0c9cb
PA
11309 return false;
11310
11311 value = value_as_long (var_val);
11312 return true;
14f9c5c9 11313}
d2e4a39e 11314
14f9c5c9
AS
11315
11316/* Return a range type whose base type is that of the range type named
11317 NAME in the current environment, and whose bounds are calculated
4c4b4cd2 11318 from NAME according to the GNAT range encoding conventions.
1ce677a4
UW
11319 Extract discriminant values, if needed, from DVAL. ORIG_TYPE is the
11320 corresponding range type from debug information; fall back to using it
11321 if symbol lookup fails. If a new type must be created, allocate it
11322 like ORIG_TYPE was. The bounds information, in general, is encoded
11323 in NAME, the base type given in the named range type. */
14f9c5c9 11324
d2e4a39e 11325static struct type *
28c85d6c 11326to_fixed_range_type (struct type *raw_type, struct value *dval)
14f9c5c9 11327{
0d5cff50 11328 const char *name;
14f9c5c9 11329 struct type *base_type;
108d56a4 11330 const char *subtype_info;
14f9c5c9 11331
28c85d6c 11332 gdb_assert (raw_type != NULL);
7d93a1e0 11333 gdb_assert (raw_type->name () != NULL);
dddfab26 11334
78134374 11335 if (raw_type->code () == TYPE_CODE_RANGE)
14f9c5c9
AS
11336 base_type = TYPE_TARGET_TYPE (raw_type);
11337 else
11338 base_type = raw_type;
11339
7d93a1e0 11340 name = raw_type->name ();
14f9c5c9
AS
11341 subtype_info = strstr (name, "___XD");
11342 if (subtype_info == NULL)
690cc4eb 11343 {
43bbcdc2
PH
11344 LONGEST L = ada_discrete_type_low_bound (raw_type);
11345 LONGEST U = ada_discrete_type_high_bound (raw_type);
5b4ee69b 11346
690cc4eb
PH
11347 if (L < INT_MIN || U > INT_MAX)
11348 return raw_type;
11349 else
0c9c3474
SA
11350 return create_static_range_type (alloc_type_copy (raw_type), raw_type,
11351 L, U);
690cc4eb 11352 }
14f9c5c9
AS
11353 else
11354 {
11355 static char *name_buf = NULL;
11356 static size_t name_len = 0;
11357 int prefix_len = subtype_info - name;
11358 LONGEST L, U;
11359 struct type *type;
108d56a4 11360 const char *bounds_str;
14f9c5c9
AS
11361 int n;
11362
11363 GROW_VECT (name_buf, name_len, prefix_len + 5);
11364 strncpy (name_buf, name, prefix_len);
11365 name_buf[prefix_len] = '\0';
11366
11367 subtype_info += 5;
11368 bounds_str = strchr (subtype_info, '_');
11369 n = 1;
11370
d2e4a39e 11371 if (*subtype_info == 'L')
4c4b4cd2
PH
11372 {
11373 if (!ada_scan_number (bounds_str, n, &L, &n)
11374 && !scan_discrim_bound (bounds_str, n, dval, &L, &n))
11375 return raw_type;
11376 if (bounds_str[n] == '_')
11377 n += 2;
0963b4bd 11378 else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */
4c4b4cd2
PH
11379 n += 1;
11380 subtype_info += 1;
11381 }
d2e4a39e 11382 else
4c4b4cd2 11383 {
4c4b4cd2 11384 strcpy (name_buf + prefix_len, "___L");
edb0c9cb 11385 if (!get_int_var_value (name_buf, L))
4c4b4cd2 11386 {
323e0a4a 11387 lim_warning (_("Unknown lower bound, using 1."));
4c4b4cd2
PH
11388 L = 1;
11389 }
11390 }
14f9c5c9 11391
d2e4a39e 11392 if (*subtype_info == 'U')
4c4b4cd2
PH
11393 {
11394 if (!ada_scan_number (bounds_str, n, &U, &n)
11395 && !scan_discrim_bound (bounds_str, n, dval, &U, &n))
11396 return raw_type;
11397 }
d2e4a39e 11398 else
4c4b4cd2 11399 {
4c4b4cd2 11400 strcpy (name_buf + prefix_len, "___U");
edb0c9cb 11401 if (!get_int_var_value (name_buf, U))
4c4b4cd2 11402 {
323e0a4a 11403 lim_warning (_("Unknown upper bound, using %ld."), (long) L);
4c4b4cd2
PH
11404 U = L;
11405 }
11406 }
14f9c5c9 11407
0c9c3474
SA
11408 type = create_static_range_type (alloc_type_copy (raw_type),
11409 base_type, L, U);
f5a91472
JB
11410 /* create_static_range_type alters the resulting type's length
11411 to match the size of the base_type, which is not what we want.
11412 Set it back to the original range type's length. */
11413 TYPE_LENGTH (type) = TYPE_LENGTH (raw_type);
d0e39ea2 11414 type->set_name (name);
14f9c5c9
AS
11415 return type;
11416 }
11417}
11418
4c4b4cd2
PH
11419/* True iff NAME is the name of a range type. */
11420
14f9c5c9 11421int
d2e4a39e 11422ada_is_range_type_name (const char *name)
14f9c5c9
AS
11423{
11424 return (name != NULL && strstr (name, "___XD"));
d2e4a39e 11425}
14f9c5c9 11426\f
d2e4a39e 11427
4c4b4cd2
PH
11428 /* Modular types */
11429
11430/* True iff TYPE is an Ada modular type. */
14f9c5c9 11431
14f9c5c9 11432int
d2e4a39e 11433ada_is_modular_type (struct type *type)
14f9c5c9 11434{
18af8284 11435 struct type *subranged_type = get_base_type (type);
14f9c5c9 11436
78134374
SM
11437 return (subranged_type != NULL && type->code () == TYPE_CODE_RANGE
11438 && subranged_type->code () == TYPE_CODE_INT
4c4b4cd2 11439 && TYPE_UNSIGNED (subranged_type));
14f9c5c9
AS
11440}
11441
4c4b4cd2
PH
11442/* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */
11443
61ee279c 11444ULONGEST
0056e4d5 11445ada_modulus (struct type *type)
14f9c5c9 11446{
43bbcdc2 11447 return (ULONGEST) TYPE_HIGH_BOUND (type) + 1;
14f9c5c9 11448}
d2e4a39e 11449\f
f7f9143b
JB
11450
11451/* Ada exception catchpoint support:
11452 ---------------------------------
11453
11454 We support 3 kinds of exception catchpoints:
11455 . catchpoints on Ada exceptions
11456 . catchpoints on unhandled Ada exceptions
11457 . catchpoints on failed assertions
11458
11459 Exceptions raised during failed assertions, or unhandled exceptions
11460 could perfectly be caught with the general catchpoint on Ada exceptions.
11461 However, we can easily differentiate these two special cases, and having
11462 the option to distinguish these two cases from the rest can be useful
11463 to zero-in on certain situations.
11464
11465 Exception catchpoints are a specialized form of breakpoint,
11466 since they rely on inserting breakpoints inside known routines
11467 of the GNAT runtime. The implementation therefore uses a standard
11468 breakpoint structure of the BP_BREAKPOINT type, but with its own set
11469 of breakpoint_ops.
11470
0259addd
JB
11471 Support in the runtime for exception catchpoints have been changed
11472 a few times already, and these changes affect the implementation
11473 of these catchpoints. In order to be able to support several
11474 variants of the runtime, we use a sniffer that will determine
28010a5d 11475 the runtime variant used by the program being debugged. */
f7f9143b 11476
82eacd52
JB
11477/* Ada's standard exceptions.
11478
11479 The Ada 83 standard also defined Numeric_Error. But there so many
11480 situations where it was unclear from the Ada 83 Reference Manual
11481 (RM) whether Constraint_Error or Numeric_Error should be raised,
11482 that the ARG (Ada Rapporteur Group) eventually issued a Binding
11483 Interpretation saying that anytime the RM says that Numeric_Error
11484 should be raised, the implementation may raise Constraint_Error.
11485 Ada 95 went one step further and pretty much removed Numeric_Error
11486 from the list of standard exceptions (it made it a renaming of
11487 Constraint_Error, to help preserve compatibility when compiling
11488 an Ada83 compiler). As such, we do not include Numeric_Error from
11489 this list of standard exceptions. */
3d0b0fa3 11490
a121b7c1 11491static const char *standard_exc[] = {
3d0b0fa3
JB
11492 "constraint_error",
11493 "program_error",
11494 "storage_error",
11495 "tasking_error"
11496};
11497
0259addd
JB
11498typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void);
11499
11500/* A structure that describes how to support exception catchpoints
11501 for a given executable. */
11502
11503struct exception_support_info
11504{
11505 /* The name of the symbol to break on in order to insert
11506 a catchpoint on exceptions. */
11507 const char *catch_exception_sym;
11508
11509 /* The name of the symbol to break on in order to insert
11510 a catchpoint on unhandled exceptions. */
11511 const char *catch_exception_unhandled_sym;
11512
11513 /* The name of the symbol to break on in order to insert
11514 a catchpoint on failed assertions. */
11515 const char *catch_assert_sym;
11516
9f757bf7
XR
11517 /* The name of the symbol to break on in order to insert
11518 a catchpoint on exception handling. */
11519 const char *catch_handlers_sym;
11520
0259addd
JB
11521 /* Assuming that the inferior just triggered an unhandled exception
11522 catchpoint, this function is responsible for returning the address
11523 in inferior memory where the name of that exception is stored.
11524 Return zero if the address could not be computed. */
11525 ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr;
11526};
11527
11528static CORE_ADDR ada_unhandled_exception_name_addr (void);
11529static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void);
11530
11531/* The following exception support info structure describes how to
11532 implement exception catchpoints with the latest version of the
ca683e3a 11533 Ada runtime (as of 2019-08-??). */
0259addd
JB
11534
11535static const struct exception_support_info default_exception_support_info =
ca683e3a
AO
11536{
11537 "__gnat_debug_raise_exception", /* catch_exception_sym */
11538 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11539 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
11540 "__gnat_begin_handler_v1", /* catch_handlers_sym */
11541 ada_unhandled_exception_name_addr
11542};
11543
11544/* The following exception support info structure describes how to
11545 implement exception catchpoints with an earlier version of the
11546 Ada runtime (as of 2007-03-06) using v0 of the EH ABI. */
11547
11548static const struct exception_support_info exception_support_info_v0 =
0259addd
JB
11549{
11550 "__gnat_debug_raise_exception", /* catch_exception_sym */
11551 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11552 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
9f757bf7 11553 "__gnat_begin_handler", /* catch_handlers_sym */
0259addd
JB
11554 ada_unhandled_exception_name_addr
11555};
11556
11557/* The following exception support info structure describes how to
11558 implement exception catchpoints with a slightly older version
11559 of the Ada runtime. */
11560
11561static const struct exception_support_info exception_support_info_fallback =
11562{
11563 "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */
11564 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
11565 "system__assertions__raise_assert_failure", /* catch_assert_sym */
9f757bf7 11566 "__gnat_begin_handler", /* catch_handlers_sym */
0259addd
JB
11567 ada_unhandled_exception_name_addr_from_raise
11568};
11569
f17011e0
JB
11570/* Return nonzero if we can detect the exception support routines
11571 described in EINFO.
11572
11573 This function errors out if an abnormal situation is detected
11574 (for instance, if we find the exception support routines, but
11575 that support is found to be incomplete). */
11576
11577static int
11578ada_has_this_exception_support (const struct exception_support_info *einfo)
11579{
11580 struct symbol *sym;
11581
11582 /* The symbol we're looking up is provided by a unit in the GNAT runtime
11583 that should be compiled with debugging information. As a result, we
11584 expect to find that symbol in the symtabs. */
11585
11586 sym = standard_lookup (einfo->catch_exception_sym, NULL, VAR_DOMAIN);
11587 if (sym == NULL)
a6af7abe
JB
11588 {
11589 /* Perhaps we did not find our symbol because the Ada runtime was
11590 compiled without debugging info, or simply stripped of it.
11591 It happens on some GNU/Linux distributions for instance, where
11592 users have to install a separate debug package in order to get
11593 the runtime's debugging info. In that situation, let the user
11594 know why we cannot insert an Ada exception catchpoint.
11595
11596 Note: Just for the purpose of inserting our Ada exception
11597 catchpoint, we could rely purely on the associated minimal symbol.
11598 But we would be operating in degraded mode anyway, since we are
11599 still lacking the debugging info needed later on to extract
11600 the name of the exception being raised (this name is printed in
11601 the catchpoint message, and is also used when trying to catch
11602 a specific exception). We do not handle this case for now. */
3b7344d5 11603 struct bound_minimal_symbol msym
1c8e84b0
JB
11604 = lookup_minimal_symbol (einfo->catch_exception_sym, NULL, NULL);
11605
3b7344d5 11606 if (msym.minsym && MSYMBOL_TYPE (msym.minsym) != mst_solib_trampoline)
a6af7abe
JB
11607 error (_("Your Ada runtime appears to be missing some debugging "
11608 "information.\nCannot insert Ada exception catchpoint "
11609 "in this configuration."));
11610
11611 return 0;
11612 }
f17011e0
JB
11613
11614 /* Make sure that the symbol we found corresponds to a function. */
11615
11616 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
ca683e3a
AO
11617 {
11618 error (_("Symbol \"%s\" is not a function (class = %d)"),
987012b8 11619 sym->linkage_name (), SYMBOL_CLASS (sym));
ca683e3a
AO
11620 return 0;
11621 }
11622
11623 sym = standard_lookup (einfo->catch_handlers_sym, NULL, VAR_DOMAIN);
11624 if (sym == NULL)
11625 {
11626 struct bound_minimal_symbol msym
11627 = lookup_minimal_symbol (einfo->catch_handlers_sym, NULL, NULL);
11628
11629 if (msym.minsym && MSYMBOL_TYPE (msym.minsym) != mst_solib_trampoline)
11630 error (_("Your Ada runtime appears to be missing some debugging "
11631 "information.\nCannot insert Ada exception catchpoint "
11632 "in this configuration."));
11633
11634 return 0;
11635 }
11636
11637 /* Make sure that the symbol we found corresponds to a function. */
11638
11639 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
11640 {
11641 error (_("Symbol \"%s\" is not a function (class = %d)"),
987012b8 11642 sym->linkage_name (), SYMBOL_CLASS (sym));
ca683e3a
AO
11643 return 0;
11644 }
f17011e0
JB
11645
11646 return 1;
11647}
11648
0259addd
JB
11649/* Inspect the Ada runtime and determine which exception info structure
11650 should be used to provide support for exception catchpoints.
11651
3eecfa55
JB
11652 This function will always set the per-inferior exception_info,
11653 or raise an error. */
0259addd
JB
11654
11655static void
11656ada_exception_support_info_sniffer (void)
11657{
3eecfa55 11658 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
0259addd
JB
11659
11660 /* If the exception info is already known, then no need to recompute it. */
3eecfa55 11661 if (data->exception_info != NULL)
0259addd
JB
11662 return;
11663
11664 /* Check the latest (default) exception support info. */
f17011e0 11665 if (ada_has_this_exception_support (&default_exception_support_info))
0259addd 11666 {
3eecfa55 11667 data->exception_info = &default_exception_support_info;
0259addd
JB
11668 return;
11669 }
11670
ca683e3a
AO
11671 /* Try the v0 exception suport info. */
11672 if (ada_has_this_exception_support (&exception_support_info_v0))
11673 {
11674 data->exception_info = &exception_support_info_v0;
11675 return;
11676 }
11677
0259addd 11678 /* Try our fallback exception suport info. */
f17011e0 11679 if (ada_has_this_exception_support (&exception_support_info_fallback))
0259addd 11680 {
3eecfa55 11681 data->exception_info = &exception_support_info_fallback;
0259addd
JB
11682 return;
11683 }
11684
11685 /* Sometimes, it is normal for us to not be able to find the routine
11686 we are looking for. This happens when the program is linked with
11687 the shared version of the GNAT runtime, and the program has not been
11688 started yet. Inform the user of these two possible causes if
11689 applicable. */
11690
ccefe4c4 11691 if (ada_update_initial_language (language_unknown) != language_ada)
0259addd
JB
11692 error (_("Unable to insert catchpoint. Is this an Ada main program?"));
11693
11694 /* If the symbol does not exist, then check that the program is
11695 already started, to make sure that shared libraries have been
11696 loaded. If it is not started, this may mean that the symbol is
11697 in a shared library. */
11698
e99b03dc 11699 if (inferior_ptid.pid () == 0)
0259addd
JB
11700 error (_("Unable to insert catchpoint. Try to start the program first."));
11701
11702 /* At this point, we know that we are debugging an Ada program and
11703 that the inferior has been started, but we still are not able to
0963b4bd 11704 find the run-time symbols. That can mean that we are in
0259addd
JB
11705 configurable run time mode, or that a-except as been optimized
11706 out by the linker... In any case, at this point it is not worth
11707 supporting this feature. */
11708
7dda8cff 11709 error (_("Cannot insert Ada exception catchpoints in this configuration."));
0259addd
JB
11710}
11711
f7f9143b
JB
11712/* True iff FRAME is very likely to be that of a function that is
11713 part of the runtime system. This is all very heuristic, but is
11714 intended to be used as advice as to what frames are uninteresting
11715 to most users. */
11716
11717static int
11718is_known_support_routine (struct frame_info *frame)
11719{
692465f1 11720 enum language func_lang;
f7f9143b 11721 int i;
f35a17b5 11722 const char *fullname;
f7f9143b 11723
4ed6b5be
JB
11724 /* If this code does not have any debugging information (no symtab),
11725 This cannot be any user code. */
f7f9143b 11726
51abb421 11727 symtab_and_line sal = find_frame_sal (frame);
f7f9143b
JB
11728 if (sal.symtab == NULL)
11729 return 1;
11730
4ed6b5be
JB
11731 /* If there is a symtab, but the associated source file cannot be
11732 located, then assume this is not user code: Selecting a frame
11733 for which we cannot display the code would not be very helpful
11734 for the user. This should also take care of case such as VxWorks
11735 where the kernel has some debugging info provided for a few units. */
f7f9143b 11736
f35a17b5
JK
11737 fullname = symtab_to_fullname (sal.symtab);
11738 if (access (fullname, R_OK) != 0)
f7f9143b
JB
11739 return 1;
11740
85102364 11741 /* Check the unit filename against the Ada runtime file naming.
4ed6b5be
JB
11742 We also check the name of the objfile against the name of some
11743 known system libraries that sometimes come with debugging info
11744 too. */
11745
f7f9143b
JB
11746 for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1)
11747 {
11748 re_comp (known_runtime_file_name_patterns[i]);
f69c91ad 11749 if (re_exec (lbasename (sal.symtab->filename)))
f7f9143b 11750 return 1;
eb822aa6
DE
11751 if (SYMTAB_OBJFILE (sal.symtab) != NULL
11752 && re_exec (objfile_name (SYMTAB_OBJFILE (sal.symtab))))
4ed6b5be 11753 return 1;
f7f9143b
JB
11754 }
11755
4ed6b5be 11756 /* Check whether the function is a GNAT-generated entity. */
f7f9143b 11757
c6dc63a1
TT
11758 gdb::unique_xmalloc_ptr<char> func_name
11759 = find_frame_funname (frame, &func_lang, NULL);
f7f9143b
JB
11760 if (func_name == NULL)
11761 return 1;
11762
11763 for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1)
11764 {
11765 re_comp (known_auxiliary_function_name_patterns[i]);
c6dc63a1
TT
11766 if (re_exec (func_name.get ()))
11767 return 1;
f7f9143b
JB
11768 }
11769
11770 return 0;
11771}
11772
11773/* Find the first frame that contains debugging information and that is not
11774 part of the Ada run-time, starting from FI and moving upward. */
11775
0ef643c8 11776void
f7f9143b
JB
11777ada_find_printable_frame (struct frame_info *fi)
11778{
11779 for (; fi != NULL; fi = get_prev_frame (fi))
11780 {
11781 if (!is_known_support_routine (fi))
11782 {
11783 select_frame (fi);
11784 break;
11785 }
11786 }
11787
11788}
11789
11790/* Assuming that the inferior just triggered an unhandled exception
11791 catchpoint, return the address in inferior memory where the name
11792 of the exception is stored.
11793
11794 Return zero if the address could not be computed. */
11795
11796static CORE_ADDR
11797ada_unhandled_exception_name_addr (void)
0259addd
JB
11798{
11799 return parse_and_eval_address ("e.full_name");
11800}
11801
11802/* Same as ada_unhandled_exception_name_addr, except that this function
11803 should be used when the inferior uses an older version of the runtime,
11804 where the exception name needs to be extracted from a specific frame
11805 several frames up in the callstack. */
11806
11807static CORE_ADDR
11808ada_unhandled_exception_name_addr_from_raise (void)
f7f9143b
JB
11809{
11810 int frame_level;
11811 struct frame_info *fi;
3eecfa55 11812 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
f7f9143b
JB
11813
11814 /* To determine the name of this exception, we need to select
11815 the frame corresponding to RAISE_SYM_NAME. This frame is
11816 at least 3 levels up, so we simply skip the first 3 frames
11817 without checking the name of their associated function. */
11818 fi = get_current_frame ();
11819 for (frame_level = 0; frame_level < 3; frame_level += 1)
11820 if (fi != NULL)
11821 fi = get_prev_frame (fi);
11822
11823 while (fi != NULL)
11824 {
692465f1
JB
11825 enum language func_lang;
11826
c6dc63a1
TT
11827 gdb::unique_xmalloc_ptr<char> func_name
11828 = find_frame_funname (fi, &func_lang, NULL);
55b87a52
KS
11829 if (func_name != NULL)
11830 {
c6dc63a1 11831 if (strcmp (func_name.get (),
55b87a52
KS
11832 data->exception_info->catch_exception_sym) == 0)
11833 break; /* We found the frame we were looking for... */
55b87a52 11834 }
fb44b1a7 11835 fi = get_prev_frame (fi);
f7f9143b
JB
11836 }
11837
11838 if (fi == NULL)
11839 return 0;
11840
11841 select_frame (fi);
11842 return parse_and_eval_address ("id.full_name");
11843}
11844
11845/* Assuming the inferior just triggered an Ada exception catchpoint
11846 (of any type), return the address in inferior memory where the name
11847 of the exception is stored, if applicable.
11848
45db7c09
PA
11849 Assumes the selected frame is the current frame.
11850
f7f9143b
JB
11851 Return zero if the address could not be computed, or if not relevant. */
11852
11853static CORE_ADDR
761269c8 11854ada_exception_name_addr_1 (enum ada_exception_catchpoint_kind ex,
f7f9143b
JB
11855 struct breakpoint *b)
11856{
3eecfa55
JB
11857 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
11858
f7f9143b
JB
11859 switch (ex)
11860 {
761269c8 11861 case ada_catch_exception:
f7f9143b
JB
11862 return (parse_and_eval_address ("e.full_name"));
11863 break;
11864
761269c8 11865 case ada_catch_exception_unhandled:
3eecfa55 11866 return data->exception_info->unhandled_exception_name_addr ();
f7f9143b 11867 break;
9f757bf7
XR
11868
11869 case ada_catch_handlers:
11870 return 0; /* The runtimes does not provide access to the exception
11871 name. */
11872 break;
11873
761269c8 11874 case ada_catch_assert:
f7f9143b
JB
11875 return 0; /* Exception name is not relevant in this case. */
11876 break;
11877
11878 default:
11879 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
11880 break;
11881 }
11882
11883 return 0; /* Should never be reached. */
11884}
11885
e547c119
JB
11886/* Assuming the inferior is stopped at an exception catchpoint,
11887 return the message which was associated to the exception, if
11888 available. Return NULL if the message could not be retrieved.
11889
e547c119
JB
11890 Note: The exception message can be associated to an exception
11891 either through the use of the Raise_Exception function, or
11892 more simply (Ada 2005 and later), via:
11893
11894 raise Exception_Name with "exception message";
11895
11896 */
11897
6f46ac85 11898static gdb::unique_xmalloc_ptr<char>
e547c119
JB
11899ada_exception_message_1 (void)
11900{
11901 struct value *e_msg_val;
e547c119 11902 int e_msg_len;
e547c119
JB
11903
11904 /* For runtimes that support this feature, the exception message
11905 is passed as an unbounded string argument called "message". */
11906 e_msg_val = parse_and_eval ("message");
11907 if (e_msg_val == NULL)
11908 return NULL; /* Exception message not supported. */
11909
11910 e_msg_val = ada_coerce_to_simple_array (e_msg_val);
11911 gdb_assert (e_msg_val != NULL);
11912 e_msg_len = TYPE_LENGTH (value_type (e_msg_val));
11913
11914 /* If the message string is empty, then treat it as if there was
11915 no exception message. */
11916 if (e_msg_len <= 0)
11917 return NULL;
11918
66920317 11919 return target_read_string (value_address (e_msg_val), INT_MAX);
e547c119
JB
11920}
11921
11922/* Same as ada_exception_message_1, except that all exceptions are
11923 contained here (returning NULL instead). */
11924
6f46ac85 11925static gdb::unique_xmalloc_ptr<char>
e547c119
JB
11926ada_exception_message (void)
11927{
6f46ac85 11928 gdb::unique_xmalloc_ptr<char> e_msg;
e547c119 11929
a70b8144 11930 try
e547c119
JB
11931 {
11932 e_msg = ada_exception_message_1 ();
11933 }
230d2906 11934 catch (const gdb_exception_error &e)
e547c119 11935 {
6f46ac85 11936 e_msg.reset (nullptr);
e547c119 11937 }
e547c119
JB
11938
11939 return e_msg;
11940}
11941
f7f9143b
JB
11942/* Same as ada_exception_name_addr_1, except that it intercepts and contains
11943 any error that ada_exception_name_addr_1 might cause to be thrown.
11944 When an error is intercepted, a warning with the error message is printed,
11945 and zero is returned. */
11946
11947static CORE_ADDR
761269c8 11948ada_exception_name_addr (enum ada_exception_catchpoint_kind ex,
f7f9143b
JB
11949 struct breakpoint *b)
11950{
f7f9143b
JB
11951 CORE_ADDR result = 0;
11952
a70b8144 11953 try
f7f9143b
JB
11954 {
11955 result = ada_exception_name_addr_1 (ex, b);
11956 }
11957
230d2906 11958 catch (const gdb_exception_error &e)
f7f9143b 11959 {
3d6e9d23 11960 warning (_("failed to get exception name: %s"), e.what ());
f7f9143b
JB
11961 return 0;
11962 }
11963
11964 return result;
11965}
11966
cb7de75e 11967static std::string ada_exception_catchpoint_cond_string
9f757bf7
XR
11968 (const char *excep_string,
11969 enum ada_exception_catchpoint_kind ex);
28010a5d
PA
11970
11971/* Ada catchpoints.
11972
11973 In the case of catchpoints on Ada exceptions, the catchpoint will
11974 stop the target on every exception the program throws. When a user
11975 specifies the name of a specific exception, we translate this
11976 request into a condition expression (in text form), and then parse
11977 it into an expression stored in each of the catchpoint's locations.
11978 We then use this condition to check whether the exception that was
11979 raised is the one the user is interested in. If not, then the
11980 target is resumed again. We store the name of the requested
11981 exception, in order to be able to re-set the condition expression
11982 when symbols change. */
11983
11984/* An instance of this type is used to represent an Ada catchpoint
5625a286 11985 breakpoint location. */
28010a5d 11986
5625a286 11987class ada_catchpoint_location : public bp_location
28010a5d 11988{
5625a286 11989public:
5f486660 11990 ada_catchpoint_location (breakpoint *owner)
f06f1252 11991 : bp_location (owner, bp_loc_software_breakpoint)
5625a286 11992 {}
28010a5d
PA
11993
11994 /* The condition that checks whether the exception that was raised
11995 is the specific exception the user specified on catchpoint
11996 creation. */
4d01a485 11997 expression_up excep_cond_expr;
28010a5d
PA
11998};
11999
c1fc2657 12000/* An instance of this type is used to represent an Ada catchpoint. */
28010a5d 12001
c1fc2657 12002struct ada_catchpoint : public breakpoint
28010a5d 12003{
37f6a7f4
TT
12004 explicit ada_catchpoint (enum ada_exception_catchpoint_kind kind)
12005 : m_kind (kind)
12006 {
12007 }
12008
28010a5d 12009 /* The name of the specific exception the user specified. */
bc18fbb5 12010 std::string excep_string;
37f6a7f4
TT
12011
12012 /* What kind of catchpoint this is. */
12013 enum ada_exception_catchpoint_kind m_kind;
28010a5d
PA
12014};
12015
12016/* Parse the exception condition string in the context of each of the
12017 catchpoint's locations, and store them for later evaluation. */
12018
12019static void
9f757bf7
XR
12020create_excep_cond_exprs (struct ada_catchpoint *c,
12021 enum ada_exception_catchpoint_kind ex)
28010a5d 12022{
fccf9de1
TT
12023 struct bp_location *bl;
12024
28010a5d 12025 /* Nothing to do if there's no specific exception to catch. */
bc18fbb5 12026 if (c->excep_string.empty ())
28010a5d
PA
12027 return;
12028
12029 /* Same if there are no locations... */
c1fc2657 12030 if (c->loc == NULL)
28010a5d
PA
12031 return;
12032
fccf9de1
TT
12033 /* Compute the condition expression in text form, from the specific
12034 expection we want to catch. */
12035 std::string cond_string
12036 = ada_exception_catchpoint_cond_string (c->excep_string.c_str (), ex);
28010a5d 12037
fccf9de1
TT
12038 /* Iterate over all the catchpoint's locations, and parse an
12039 expression for each. */
12040 for (bl = c->loc; bl != NULL; bl = bl->next)
28010a5d
PA
12041 {
12042 struct ada_catchpoint_location *ada_loc
fccf9de1 12043 = (struct ada_catchpoint_location *) bl;
4d01a485 12044 expression_up exp;
28010a5d 12045
fccf9de1 12046 if (!bl->shlib_disabled)
28010a5d 12047 {
bbc13ae3 12048 const char *s;
28010a5d 12049
cb7de75e 12050 s = cond_string.c_str ();
a70b8144 12051 try
28010a5d 12052 {
fccf9de1
TT
12053 exp = parse_exp_1 (&s, bl->address,
12054 block_for_pc (bl->address),
036e657b 12055 0);
28010a5d 12056 }
230d2906 12057 catch (const gdb_exception_error &e)
849f2b52
JB
12058 {
12059 warning (_("failed to reevaluate internal exception condition "
12060 "for catchpoint %d: %s"),
3d6e9d23 12061 c->number, e.what ());
849f2b52 12062 }
28010a5d
PA
12063 }
12064
b22e99fd 12065 ada_loc->excep_cond_expr = std::move (exp);
28010a5d 12066 }
28010a5d
PA
12067}
12068
28010a5d
PA
12069/* Implement the ALLOCATE_LOCATION method in the breakpoint_ops
12070 structure for all exception catchpoint kinds. */
12071
12072static struct bp_location *
37f6a7f4 12073allocate_location_exception (struct breakpoint *self)
28010a5d 12074{
5f486660 12075 return new ada_catchpoint_location (self);
28010a5d
PA
12076}
12077
12078/* Implement the RE_SET method in the breakpoint_ops structure for all
12079 exception catchpoint kinds. */
12080
12081static void
37f6a7f4 12082re_set_exception (struct breakpoint *b)
28010a5d
PA
12083{
12084 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12085
12086 /* Call the base class's method. This updates the catchpoint's
12087 locations. */
2060206e 12088 bkpt_breakpoint_ops.re_set (b);
28010a5d
PA
12089
12090 /* Reparse the exception conditional expressions. One for each
12091 location. */
37f6a7f4 12092 create_excep_cond_exprs (c, c->m_kind);
28010a5d
PA
12093}
12094
12095/* Returns true if we should stop for this breakpoint hit. If the
12096 user specified a specific exception, we only want to cause a stop
12097 if the program thrown that exception. */
12098
12099static int
12100should_stop_exception (const struct bp_location *bl)
12101{
12102 struct ada_catchpoint *c = (struct ada_catchpoint *) bl->owner;
12103 const struct ada_catchpoint_location *ada_loc
12104 = (const struct ada_catchpoint_location *) bl;
28010a5d
PA
12105 int stop;
12106
37f6a7f4
TT
12107 struct internalvar *var = lookup_internalvar ("_ada_exception");
12108 if (c->m_kind == ada_catch_assert)
12109 clear_internalvar (var);
12110 else
12111 {
12112 try
12113 {
12114 const char *expr;
12115
12116 if (c->m_kind == ada_catch_handlers)
12117 expr = ("GNAT_GCC_exception_Access(gcc_exception)"
12118 ".all.occurrence.id");
12119 else
12120 expr = "e";
12121
12122 struct value *exc = parse_and_eval (expr);
12123 set_internalvar (var, exc);
12124 }
12125 catch (const gdb_exception_error &ex)
12126 {
12127 clear_internalvar (var);
12128 }
12129 }
12130
28010a5d 12131 /* With no specific exception, should always stop. */
bc18fbb5 12132 if (c->excep_string.empty ())
28010a5d
PA
12133 return 1;
12134
12135 if (ada_loc->excep_cond_expr == NULL)
12136 {
12137 /* We will have a NULL expression if back when we were creating
12138 the expressions, this location's had failed to parse. */
12139 return 1;
12140 }
12141
12142 stop = 1;
a70b8144 12143 try
28010a5d
PA
12144 {
12145 struct value *mark;
12146
12147 mark = value_mark ();
4d01a485 12148 stop = value_true (evaluate_expression (ada_loc->excep_cond_expr.get ()));
28010a5d
PA
12149 value_free_to_mark (mark);
12150 }
230d2906 12151 catch (const gdb_exception &ex)
492d29ea
PA
12152 {
12153 exception_fprintf (gdb_stderr, ex,
12154 _("Error in testing exception condition:\n"));
12155 }
492d29ea 12156
28010a5d
PA
12157 return stop;
12158}
12159
12160/* Implement the CHECK_STATUS method in the breakpoint_ops structure
12161 for all exception catchpoint kinds. */
12162
12163static void
37f6a7f4 12164check_status_exception (bpstat bs)
28010a5d
PA
12165{
12166 bs->stop = should_stop_exception (bs->bp_location_at);
12167}
12168
f7f9143b
JB
12169/* Implement the PRINT_IT method in the breakpoint_ops structure
12170 for all exception catchpoint kinds. */
12171
12172static enum print_stop_action
37f6a7f4 12173print_it_exception (bpstat bs)
f7f9143b 12174{
79a45e25 12175 struct ui_out *uiout = current_uiout;
348d480f
PA
12176 struct breakpoint *b = bs->breakpoint_at;
12177
956a9fb9 12178 annotate_catchpoint (b->number);
f7f9143b 12179
112e8700 12180 if (uiout->is_mi_like_p ())
f7f9143b 12181 {
112e8700 12182 uiout->field_string ("reason",
956a9fb9 12183 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700 12184 uiout->field_string ("disp", bpdisp_text (b->disposition));
f7f9143b
JB
12185 }
12186
112e8700
SM
12187 uiout->text (b->disposition == disp_del
12188 ? "\nTemporary catchpoint " : "\nCatchpoint ");
381befee 12189 uiout->field_signed ("bkptno", b->number);
112e8700 12190 uiout->text (", ");
f7f9143b 12191
45db7c09
PA
12192 /* ada_exception_name_addr relies on the selected frame being the
12193 current frame. Need to do this here because this function may be
12194 called more than once when printing a stop, and below, we'll
12195 select the first frame past the Ada run-time (see
12196 ada_find_printable_frame). */
12197 select_frame (get_current_frame ());
12198
37f6a7f4
TT
12199 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12200 switch (c->m_kind)
f7f9143b 12201 {
761269c8
JB
12202 case ada_catch_exception:
12203 case ada_catch_exception_unhandled:
9f757bf7 12204 case ada_catch_handlers:
956a9fb9 12205 {
37f6a7f4 12206 const CORE_ADDR addr = ada_exception_name_addr (c->m_kind, b);
956a9fb9
JB
12207 char exception_name[256];
12208
12209 if (addr != 0)
12210 {
c714b426
PA
12211 read_memory (addr, (gdb_byte *) exception_name,
12212 sizeof (exception_name) - 1);
956a9fb9
JB
12213 exception_name [sizeof (exception_name) - 1] = '\0';
12214 }
12215 else
12216 {
12217 /* For some reason, we were unable to read the exception
12218 name. This could happen if the Runtime was compiled
12219 without debugging info, for instance. In that case,
12220 just replace the exception name by the generic string
12221 "exception" - it will read as "an exception" in the
12222 notification we are about to print. */
967cff16 12223 memcpy (exception_name, "exception", sizeof ("exception"));
956a9fb9
JB
12224 }
12225 /* In the case of unhandled exception breakpoints, we print
12226 the exception name as "unhandled EXCEPTION_NAME", to make
12227 it clearer to the user which kind of catchpoint just got
12228 hit. We used ui_out_text to make sure that this extra
12229 info does not pollute the exception name in the MI case. */
37f6a7f4 12230 if (c->m_kind == ada_catch_exception_unhandled)
112e8700
SM
12231 uiout->text ("unhandled ");
12232 uiout->field_string ("exception-name", exception_name);
956a9fb9
JB
12233 }
12234 break;
761269c8 12235 case ada_catch_assert:
956a9fb9
JB
12236 /* In this case, the name of the exception is not really
12237 important. Just print "failed assertion" to make it clearer
12238 that his program just hit an assertion-failure catchpoint.
12239 We used ui_out_text because this info does not belong in
12240 the MI output. */
112e8700 12241 uiout->text ("failed assertion");
956a9fb9 12242 break;
f7f9143b 12243 }
e547c119 12244
6f46ac85 12245 gdb::unique_xmalloc_ptr<char> exception_message = ada_exception_message ();
e547c119
JB
12246 if (exception_message != NULL)
12247 {
e547c119 12248 uiout->text (" (");
6f46ac85 12249 uiout->field_string ("exception-message", exception_message.get ());
e547c119 12250 uiout->text (")");
e547c119
JB
12251 }
12252
112e8700 12253 uiout->text (" at ");
956a9fb9 12254 ada_find_printable_frame (get_current_frame ());
f7f9143b
JB
12255
12256 return PRINT_SRC_AND_LOC;
12257}
12258
12259/* Implement the PRINT_ONE method in the breakpoint_ops structure
12260 for all exception catchpoint kinds. */
12261
12262static void
37f6a7f4 12263print_one_exception (struct breakpoint *b, struct bp_location **last_loc)
f7f9143b 12264{
79a45e25 12265 struct ui_out *uiout = current_uiout;
28010a5d 12266 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
79a45b7d
TT
12267 struct value_print_options opts;
12268
12269 get_user_print_options (&opts);
f06f1252 12270
79a45b7d 12271 if (opts.addressprint)
f06f1252 12272 uiout->field_skip ("addr");
f7f9143b
JB
12273
12274 annotate_field (5);
37f6a7f4 12275 switch (c->m_kind)
f7f9143b 12276 {
761269c8 12277 case ada_catch_exception:
bc18fbb5 12278 if (!c->excep_string.empty ())
f7f9143b 12279 {
bc18fbb5
TT
12280 std::string msg = string_printf (_("`%s' Ada exception"),
12281 c->excep_string.c_str ());
28010a5d 12282
112e8700 12283 uiout->field_string ("what", msg);
f7f9143b
JB
12284 }
12285 else
112e8700 12286 uiout->field_string ("what", "all Ada exceptions");
f7f9143b
JB
12287
12288 break;
12289
761269c8 12290 case ada_catch_exception_unhandled:
112e8700 12291 uiout->field_string ("what", "unhandled Ada exceptions");
f7f9143b
JB
12292 break;
12293
9f757bf7 12294 case ada_catch_handlers:
bc18fbb5 12295 if (!c->excep_string.empty ())
9f757bf7
XR
12296 {
12297 uiout->field_fmt ("what",
12298 _("`%s' Ada exception handlers"),
bc18fbb5 12299 c->excep_string.c_str ());
9f757bf7
XR
12300 }
12301 else
12302 uiout->field_string ("what", "all Ada exceptions handlers");
12303 break;
12304
761269c8 12305 case ada_catch_assert:
112e8700 12306 uiout->field_string ("what", "failed Ada assertions");
f7f9143b
JB
12307 break;
12308
12309 default:
12310 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12311 break;
12312 }
12313}
12314
12315/* Implement the PRINT_MENTION method in the breakpoint_ops structure
12316 for all exception catchpoint kinds. */
12317
12318static void
37f6a7f4 12319print_mention_exception (struct breakpoint *b)
f7f9143b 12320{
28010a5d 12321 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
79a45e25 12322 struct ui_out *uiout = current_uiout;
28010a5d 12323
112e8700 12324 uiout->text (b->disposition == disp_del ? _("Temporary catchpoint ")
00eb2c4a 12325 : _("Catchpoint "));
381befee 12326 uiout->field_signed ("bkptno", b->number);
112e8700 12327 uiout->text (": ");
00eb2c4a 12328
37f6a7f4 12329 switch (c->m_kind)
f7f9143b 12330 {
761269c8 12331 case ada_catch_exception:
bc18fbb5 12332 if (!c->excep_string.empty ())
00eb2c4a 12333 {
862d101a 12334 std::string info = string_printf (_("`%s' Ada exception"),
bc18fbb5 12335 c->excep_string.c_str ());
862d101a 12336 uiout->text (info.c_str ());
00eb2c4a 12337 }
f7f9143b 12338 else
112e8700 12339 uiout->text (_("all Ada exceptions"));
f7f9143b
JB
12340 break;
12341
761269c8 12342 case ada_catch_exception_unhandled:
112e8700 12343 uiout->text (_("unhandled Ada exceptions"));
f7f9143b 12344 break;
9f757bf7
XR
12345
12346 case ada_catch_handlers:
bc18fbb5 12347 if (!c->excep_string.empty ())
9f757bf7
XR
12348 {
12349 std::string info
12350 = string_printf (_("`%s' Ada exception handlers"),
bc18fbb5 12351 c->excep_string.c_str ());
9f757bf7
XR
12352 uiout->text (info.c_str ());
12353 }
12354 else
12355 uiout->text (_("all Ada exceptions handlers"));
12356 break;
12357
761269c8 12358 case ada_catch_assert:
112e8700 12359 uiout->text (_("failed Ada assertions"));
f7f9143b
JB
12360 break;
12361
12362 default:
12363 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12364 break;
12365 }
12366}
12367
6149aea9
PA
12368/* Implement the PRINT_RECREATE method in the breakpoint_ops structure
12369 for all exception catchpoint kinds. */
12370
12371static void
37f6a7f4 12372print_recreate_exception (struct breakpoint *b, struct ui_file *fp)
6149aea9 12373{
28010a5d
PA
12374 struct ada_catchpoint *c = (struct ada_catchpoint *) b;
12375
37f6a7f4 12376 switch (c->m_kind)
6149aea9 12377 {
761269c8 12378 case ada_catch_exception:
6149aea9 12379 fprintf_filtered (fp, "catch exception");
bc18fbb5
TT
12380 if (!c->excep_string.empty ())
12381 fprintf_filtered (fp, " %s", c->excep_string.c_str ());
6149aea9
PA
12382 break;
12383
761269c8 12384 case ada_catch_exception_unhandled:
78076abc 12385 fprintf_filtered (fp, "catch exception unhandled");
6149aea9
PA
12386 break;
12387
9f757bf7
XR
12388 case ada_catch_handlers:
12389 fprintf_filtered (fp, "catch handlers");
12390 break;
12391
761269c8 12392 case ada_catch_assert:
6149aea9
PA
12393 fprintf_filtered (fp, "catch assert");
12394 break;
12395
12396 default:
12397 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
12398 }
d9b3f62e 12399 print_recreate_thread (b, fp);
6149aea9
PA
12400}
12401
37f6a7f4 12402/* Virtual tables for various breakpoint types. */
2060206e 12403static struct breakpoint_ops catch_exception_breakpoint_ops;
2060206e 12404static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops;
2060206e 12405static struct breakpoint_ops catch_assert_breakpoint_ops;
9f757bf7
XR
12406static struct breakpoint_ops catch_handlers_breakpoint_ops;
12407
f06f1252
TT
12408/* See ada-lang.h. */
12409
12410bool
12411is_ada_exception_catchpoint (breakpoint *bp)
12412{
12413 return (bp->ops == &catch_exception_breakpoint_ops
12414 || bp->ops == &catch_exception_unhandled_breakpoint_ops
12415 || bp->ops == &catch_assert_breakpoint_ops
12416 || bp->ops == &catch_handlers_breakpoint_ops);
12417}
12418
f7f9143b
JB
12419/* Split the arguments specified in a "catch exception" command.
12420 Set EX to the appropriate catchpoint type.
28010a5d 12421 Set EXCEP_STRING to the name of the specific exception if
5845583d 12422 specified by the user.
9f757bf7
XR
12423 IS_CATCH_HANDLERS_CMD: True if the arguments are for a
12424 "catch handlers" command. False otherwise.
5845583d
JB
12425 If a condition is found at the end of the arguments, the condition
12426 expression is stored in COND_STRING (memory must be deallocated
12427 after use). Otherwise COND_STRING is set to NULL. */
f7f9143b
JB
12428
12429static void
a121b7c1 12430catch_ada_exception_command_split (const char *args,
9f757bf7 12431 bool is_catch_handlers_cmd,
761269c8 12432 enum ada_exception_catchpoint_kind *ex,
bc18fbb5
TT
12433 std::string *excep_string,
12434 std::string *cond_string)
f7f9143b 12435{
bc18fbb5 12436 std::string exception_name;
f7f9143b 12437
bc18fbb5
TT
12438 exception_name = extract_arg (&args);
12439 if (exception_name == "if")
5845583d
JB
12440 {
12441 /* This is not an exception name; this is the start of a condition
12442 expression for a catchpoint on all exceptions. So, "un-get"
12443 this token, and set exception_name to NULL. */
bc18fbb5 12444 exception_name.clear ();
5845583d
JB
12445 args -= 2;
12446 }
f7f9143b 12447
5845583d 12448 /* Check to see if we have a condition. */
f7f9143b 12449
f1735a53 12450 args = skip_spaces (args);
61012eef 12451 if (startswith (args, "if")
5845583d
JB
12452 && (isspace (args[2]) || args[2] == '\0'))
12453 {
12454 args += 2;
f1735a53 12455 args = skip_spaces (args);
5845583d
JB
12456
12457 if (args[0] == '\0')
12458 error (_("Condition missing after `if' keyword"));
bc18fbb5 12459 *cond_string = args;
5845583d
JB
12460
12461 args += strlen (args);
12462 }
12463
12464 /* Check that we do not have any more arguments. Anything else
12465 is unexpected. */
f7f9143b
JB
12466
12467 if (args[0] != '\0')
12468 error (_("Junk at end of expression"));
12469
9f757bf7
XR
12470 if (is_catch_handlers_cmd)
12471 {
12472 /* Catch handling of exceptions. */
12473 *ex = ada_catch_handlers;
12474 *excep_string = exception_name;
12475 }
bc18fbb5 12476 else if (exception_name.empty ())
f7f9143b
JB
12477 {
12478 /* Catch all exceptions. */
761269c8 12479 *ex = ada_catch_exception;
bc18fbb5 12480 excep_string->clear ();
f7f9143b 12481 }
bc18fbb5 12482 else if (exception_name == "unhandled")
f7f9143b
JB
12483 {
12484 /* Catch unhandled exceptions. */
761269c8 12485 *ex = ada_catch_exception_unhandled;
bc18fbb5 12486 excep_string->clear ();
f7f9143b
JB
12487 }
12488 else
12489 {
12490 /* Catch a specific exception. */
761269c8 12491 *ex = ada_catch_exception;
28010a5d 12492 *excep_string = exception_name;
f7f9143b
JB
12493 }
12494}
12495
12496/* Return the name of the symbol on which we should break in order to
12497 implement a catchpoint of the EX kind. */
12498
12499static const char *
761269c8 12500ada_exception_sym_name (enum ada_exception_catchpoint_kind ex)
f7f9143b 12501{
3eecfa55
JB
12502 struct ada_inferior_data *data = get_ada_inferior_data (current_inferior ());
12503
12504 gdb_assert (data->exception_info != NULL);
0259addd 12505
f7f9143b
JB
12506 switch (ex)
12507 {
761269c8 12508 case ada_catch_exception:
3eecfa55 12509 return (data->exception_info->catch_exception_sym);
f7f9143b 12510 break;
761269c8 12511 case ada_catch_exception_unhandled:
3eecfa55 12512 return (data->exception_info->catch_exception_unhandled_sym);
f7f9143b 12513 break;
761269c8 12514 case ada_catch_assert:
3eecfa55 12515 return (data->exception_info->catch_assert_sym);
f7f9143b 12516 break;
9f757bf7
XR
12517 case ada_catch_handlers:
12518 return (data->exception_info->catch_handlers_sym);
12519 break;
f7f9143b
JB
12520 default:
12521 internal_error (__FILE__, __LINE__,
12522 _("unexpected catchpoint kind (%d)"), ex);
12523 }
12524}
12525
12526/* Return the breakpoint ops "virtual table" used for catchpoints
12527 of the EX kind. */
12528
c0a91b2b 12529static const struct breakpoint_ops *
761269c8 12530ada_exception_breakpoint_ops (enum ada_exception_catchpoint_kind ex)
f7f9143b
JB
12531{
12532 switch (ex)
12533 {
761269c8 12534 case ada_catch_exception:
f7f9143b
JB
12535 return (&catch_exception_breakpoint_ops);
12536 break;
761269c8 12537 case ada_catch_exception_unhandled:
f7f9143b
JB
12538 return (&catch_exception_unhandled_breakpoint_ops);
12539 break;
761269c8 12540 case ada_catch_assert:
f7f9143b
JB
12541 return (&catch_assert_breakpoint_ops);
12542 break;
9f757bf7
XR
12543 case ada_catch_handlers:
12544 return (&catch_handlers_breakpoint_ops);
12545 break;
f7f9143b
JB
12546 default:
12547 internal_error (__FILE__, __LINE__,
12548 _("unexpected catchpoint kind (%d)"), ex);
12549 }
12550}
12551
12552/* Return the condition that will be used to match the current exception
12553 being raised with the exception that the user wants to catch. This
12554 assumes that this condition is used when the inferior just triggered
12555 an exception catchpoint.
cb7de75e 12556 EX: the type of catchpoints used for catching Ada exceptions. */
f7f9143b 12557
cb7de75e 12558static std::string
9f757bf7
XR
12559ada_exception_catchpoint_cond_string (const char *excep_string,
12560 enum ada_exception_catchpoint_kind ex)
f7f9143b 12561{
3d0b0fa3 12562 int i;
fccf9de1 12563 bool is_standard_exc = false;
cb7de75e 12564 std::string result;
9f757bf7
XR
12565
12566 if (ex == ada_catch_handlers)
12567 {
12568 /* For exception handlers catchpoints, the condition string does
12569 not use the same parameter as for the other exceptions. */
fccf9de1
TT
12570 result = ("long_integer (GNAT_GCC_exception_Access"
12571 "(gcc_exception).all.occurrence.id)");
9f757bf7
XR
12572 }
12573 else
fccf9de1 12574 result = "long_integer (e)";
3d0b0fa3 12575
0963b4bd 12576 /* The standard exceptions are a special case. They are defined in
3d0b0fa3 12577 runtime units that have been compiled without debugging info; if
28010a5d 12578 EXCEP_STRING is the not-fully-qualified name of a standard
3d0b0fa3
JB
12579 exception (e.g. "constraint_error") then, during the evaluation
12580 of the condition expression, the symbol lookup on this name would
0963b4bd 12581 *not* return this standard exception. The catchpoint condition
3d0b0fa3
JB
12582 may then be set only on user-defined exceptions which have the
12583 same not-fully-qualified name (e.g. my_package.constraint_error).
12584
12585 To avoid this unexcepted behavior, these standard exceptions are
0963b4bd 12586 systematically prefixed by "standard". This means that "catch
3d0b0fa3
JB
12587 exception constraint_error" is rewritten into "catch exception
12588 standard.constraint_error".
12589
85102364 12590 If an exception named constraint_error is defined in another package of
3d0b0fa3
JB
12591 the inferior program, then the only way to specify this exception as a
12592 breakpoint condition is to use its fully-qualified named:
fccf9de1 12593 e.g. my_package.constraint_error. */
3d0b0fa3
JB
12594
12595 for (i = 0; i < sizeof (standard_exc) / sizeof (char *); i++)
12596 {
28010a5d 12597 if (strcmp (standard_exc [i], excep_string) == 0)
3d0b0fa3 12598 {
fccf9de1 12599 is_standard_exc = true;
9f757bf7 12600 break;
3d0b0fa3
JB
12601 }
12602 }
9f757bf7 12603
fccf9de1
TT
12604 result += " = ";
12605
12606 if (is_standard_exc)
12607 string_appendf (result, "long_integer (&standard.%s)", excep_string);
12608 else
12609 string_appendf (result, "long_integer (&%s)", excep_string);
9f757bf7 12610
9f757bf7 12611 return result;
f7f9143b
JB
12612}
12613
12614/* Return the symtab_and_line that should be used to insert an exception
12615 catchpoint of the TYPE kind.
12616
28010a5d
PA
12617 ADDR_STRING returns the name of the function where the real
12618 breakpoint that implements the catchpoints is set, depending on the
12619 type of catchpoint we need to create. */
f7f9143b
JB
12620
12621static struct symtab_and_line
bc18fbb5 12622ada_exception_sal (enum ada_exception_catchpoint_kind ex,
cc12f4a8 12623 std::string *addr_string, const struct breakpoint_ops **ops)
f7f9143b
JB
12624{
12625 const char *sym_name;
12626 struct symbol *sym;
f7f9143b 12627
0259addd
JB
12628 /* First, find out which exception support info to use. */
12629 ada_exception_support_info_sniffer ();
12630
12631 /* Then lookup the function on which we will break in order to catch
f7f9143b 12632 the Ada exceptions requested by the user. */
f7f9143b
JB
12633 sym_name = ada_exception_sym_name (ex);
12634 sym = standard_lookup (sym_name, NULL, VAR_DOMAIN);
12635
57aff202
JB
12636 if (sym == NULL)
12637 error (_("Catchpoint symbol not found: %s"), sym_name);
12638
12639 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
12640 error (_("Unable to insert catchpoint. %s is not a function."), sym_name);
f7f9143b
JB
12641
12642 /* Set ADDR_STRING. */
cc12f4a8 12643 *addr_string = sym_name;
f7f9143b 12644
f7f9143b 12645 /* Set OPS. */
4b9eee8c 12646 *ops = ada_exception_breakpoint_ops (ex);
f7f9143b 12647
f17011e0 12648 return find_function_start_sal (sym, 1);
f7f9143b
JB
12649}
12650
b4a5b78b 12651/* Create an Ada exception catchpoint.
f7f9143b 12652
b4a5b78b 12653 EX_KIND is the kind of exception catchpoint to be created.
5845583d 12654
bc18fbb5 12655 If EXCEPT_STRING is empty, this catchpoint is expected to trigger
2df4d1d5 12656 for all exceptions. Otherwise, EXCEPT_STRING indicates the name
bc18fbb5 12657 of the exception to which this catchpoint applies.
2df4d1d5 12658
bc18fbb5 12659 COND_STRING, if not empty, is the catchpoint condition.
f7f9143b 12660
b4a5b78b
JB
12661 TEMPFLAG, if nonzero, means that the underlying breakpoint
12662 should be temporary.
28010a5d 12663
b4a5b78b 12664 FROM_TTY is the usual argument passed to all commands implementations. */
28010a5d 12665
349774ef 12666void
28010a5d 12667create_ada_exception_catchpoint (struct gdbarch *gdbarch,
761269c8 12668 enum ada_exception_catchpoint_kind ex_kind,
bc18fbb5 12669 const std::string &excep_string,
56ecd069 12670 const std::string &cond_string,
28010a5d 12671 int tempflag,
349774ef 12672 int disabled,
28010a5d
PA
12673 int from_tty)
12674{
cc12f4a8 12675 std::string addr_string;
b4a5b78b 12676 const struct breakpoint_ops *ops = NULL;
bc18fbb5 12677 struct symtab_and_line sal = ada_exception_sal (ex_kind, &addr_string, &ops);
28010a5d 12678
37f6a7f4 12679 std::unique_ptr<ada_catchpoint> c (new ada_catchpoint (ex_kind));
cc12f4a8 12680 init_ada_exception_breakpoint (c.get (), gdbarch, sal, addr_string.c_str (),
349774ef 12681 ops, tempflag, disabled, from_tty);
28010a5d 12682 c->excep_string = excep_string;
9f757bf7 12683 create_excep_cond_exprs (c.get (), ex_kind);
56ecd069
XR
12684 if (!cond_string.empty ())
12685 set_breakpoint_condition (c.get (), cond_string.c_str (), from_tty);
b270e6f9 12686 install_breakpoint (0, std::move (c), 1);
f7f9143b
JB
12687}
12688
9ac4176b
PA
12689/* Implement the "catch exception" command. */
12690
12691static void
eb4c3f4a 12692catch_ada_exception_command (const char *arg_entry, int from_tty,
9ac4176b
PA
12693 struct cmd_list_element *command)
12694{
a121b7c1 12695 const char *arg = arg_entry;
9ac4176b
PA
12696 struct gdbarch *gdbarch = get_current_arch ();
12697 int tempflag;
761269c8 12698 enum ada_exception_catchpoint_kind ex_kind;
bc18fbb5 12699 std::string excep_string;
56ecd069 12700 std::string cond_string;
9ac4176b
PA
12701
12702 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12703
12704 if (!arg)
12705 arg = "";
9f757bf7 12706 catch_ada_exception_command_split (arg, false, &ex_kind, &excep_string,
bc18fbb5 12707 &cond_string);
9f757bf7
XR
12708 create_ada_exception_catchpoint (gdbarch, ex_kind,
12709 excep_string, cond_string,
12710 tempflag, 1 /* enabled */,
12711 from_tty);
12712}
12713
12714/* Implement the "catch handlers" command. */
12715
12716static void
12717catch_ada_handlers_command (const char *arg_entry, int from_tty,
12718 struct cmd_list_element *command)
12719{
12720 const char *arg = arg_entry;
12721 struct gdbarch *gdbarch = get_current_arch ();
12722 int tempflag;
12723 enum ada_exception_catchpoint_kind ex_kind;
bc18fbb5 12724 std::string excep_string;
56ecd069 12725 std::string cond_string;
9f757bf7
XR
12726
12727 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12728
12729 if (!arg)
12730 arg = "";
12731 catch_ada_exception_command_split (arg, true, &ex_kind, &excep_string,
bc18fbb5 12732 &cond_string);
b4a5b78b
JB
12733 create_ada_exception_catchpoint (gdbarch, ex_kind,
12734 excep_string, cond_string,
349774ef
JB
12735 tempflag, 1 /* enabled */,
12736 from_tty);
9ac4176b
PA
12737}
12738
71bed2db
TT
12739/* Completion function for the Ada "catch" commands. */
12740
12741static void
12742catch_ada_completer (struct cmd_list_element *cmd, completion_tracker &tracker,
12743 const char *text, const char *word)
12744{
12745 std::vector<ada_exc_info> exceptions = ada_exceptions_list (NULL);
12746
12747 for (const ada_exc_info &info : exceptions)
12748 {
12749 if (startswith (info.name, word))
b02f78f9 12750 tracker.add_completion (make_unique_xstrdup (info.name));
71bed2db
TT
12751 }
12752}
12753
b4a5b78b 12754/* Split the arguments specified in a "catch assert" command.
5845583d 12755
b4a5b78b
JB
12756 ARGS contains the command's arguments (or the empty string if
12757 no arguments were passed).
5845583d
JB
12758
12759 If ARGS contains a condition, set COND_STRING to that condition
b4a5b78b 12760 (the memory needs to be deallocated after use). */
5845583d 12761
b4a5b78b 12762static void
56ecd069 12763catch_ada_assert_command_split (const char *args, std::string &cond_string)
f7f9143b 12764{
f1735a53 12765 args = skip_spaces (args);
f7f9143b 12766
5845583d 12767 /* Check whether a condition was provided. */
61012eef 12768 if (startswith (args, "if")
5845583d 12769 && (isspace (args[2]) || args[2] == '\0'))
f7f9143b 12770 {
5845583d 12771 args += 2;
f1735a53 12772 args = skip_spaces (args);
5845583d
JB
12773 if (args[0] == '\0')
12774 error (_("condition missing after `if' keyword"));
56ecd069 12775 cond_string.assign (args);
f7f9143b
JB
12776 }
12777
5845583d
JB
12778 /* Otherwise, there should be no other argument at the end of
12779 the command. */
12780 else if (args[0] != '\0')
12781 error (_("Junk at end of arguments."));
f7f9143b
JB
12782}
12783
9ac4176b
PA
12784/* Implement the "catch assert" command. */
12785
12786static void
eb4c3f4a 12787catch_assert_command (const char *arg_entry, int from_tty,
9ac4176b
PA
12788 struct cmd_list_element *command)
12789{
a121b7c1 12790 const char *arg = arg_entry;
9ac4176b
PA
12791 struct gdbarch *gdbarch = get_current_arch ();
12792 int tempflag;
56ecd069 12793 std::string cond_string;
9ac4176b
PA
12794
12795 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
12796
12797 if (!arg)
12798 arg = "";
56ecd069 12799 catch_ada_assert_command_split (arg, cond_string);
761269c8 12800 create_ada_exception_catchpoint (gdbarch, ada_catch_assert,
241db429 12801 "", cond_string,
349774ef
JB
12802 tempflag, 1 /* enabled */,
12803 from_tty);
9ac4176b 12804}
778865d3
JB
12805
12806/* Return non-zero if the symbol SYM is an Ada exception object. */
12807
12808static int
12809ada_is_exception_sym (struct symbol *sym)
12810{
7d93a1e0 12811 const char *type_name = SYMBOL_TYPE (sym)->name ();
778865d3
JB
12812
12813 return (SYMBOL_CLASS (sym) != LOC_TYPEDEF
12814 && SYMBOL_CLASS (sym) != LOC_BLOCK
12815 && SYMBOL_CLASS (sym) != LOC_CONST
12816 && SYMBOL_CLASS (sym) != LOC_UNRESOLVED
12817 && type_name != NULL && strcmp (type_name, "exception") == 0);
12818}
12819
12820/* Given a global symbol SYM, return non-zero iff SYM is a non-standard
12821 Ada exception object. This matches all exceptions except the ones
12822 defined by the Ada language. */
12823
12824static int
12825ada_is_non_standard_exception_sym (struct symbol *sym)
12826{
12827 int i;
12828
12829 if (!ada_is_exception_sym (sym))
12830 return 0;
12831
12832 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
987012b8 12833 if (strcmp (sym->linkage_name (), standard_exc[i]) == 0)
778865d3
JB
12834 return 0; /* A standard exception. */
12835
12836 /* Numeric_Error is also a standard exception, so exclude it.
12837 See the STANDARD_EXC description for more details as to why
12838 this exception is not listed in that array. */
987012b8 12839 if (strcmp (sym->linkage_name (), "numeric_error") == 0)
778865d3
JB
12840 return 0;
12841
12842 return 1;
12843}
12844
ab816a27 12845/* A helper function for std::sort, comparing two struct ada_exc_info
778865d3
JB
12846 objects.
12847
12848 The comparison is determined first by exception name, and then
12849 by exception address. */
12850
ab816a27 12851bool
cc536b21 12852ada_exc_info::operator< (const ada_exc_info &other) const
778865d3 12853{
778865d3
JB
12854 int result;
12855
ab816a27
TT
12856 result = strcmp (name, other.name);
12857 if (result < 0)
12858 return true;
12859 if (result == 0 && addr < other.addr)
12860 return true;
12861 return false;
12862}
778865d3 12863
ab816a27 12864bool
cc536b21 12865ada_exc_info::operator== (const ada_exc_info &other) const
ab816a27
TT
12866{
12867 return addr == other.addr && strcmp (name, other.name) == 0;
778865d3
JB
12868}
12869
12870/* Sort EXCEPTIONS using compare_ada_exception_info as the comparison
12871 routine, but keeping the first SKIP elements untouched.
12872
12873 All duplicates are also removed. */
12874
12875static void
ab816a27 12876sort_remove_dups_ada_exceptions_list (std::vector<ada_exc_info> *exceptions,
778865d3
JB
12877 int skip)
12878{
ab816a27
TT
12879 std::sort (exceptions->begin () + skip, exceptions->end ());
12880 exceptions->erase (std::unique (exceptions->begin () + skip, exceptions->end ()),
12881 exceptions->end ());
778865d3
JB
12882}
12883
778865d3
JB
12884/* Add all exceptions defined by the Ada standard whose name match
12885 a regular expression.
12886
12887 If PREG is not NULL, then this regexp_t object is used to
12888 perform the symbol name matching. Otherwise, no name-based
12889 filtering is performed.
12890
12891 EXCEPTIONS is a vector of exceptions to which matching exceptions
12892 gets pushed. */
12893
12894static void
2d7cc5c7 12895ada_add_standard_exceptions (compiled_regex *preg,
ab816a27 12896 std::vector<ada_exc_info> *exceptions)
778865d3
JB
12897{
12898 int i;
12899
12900 for (i = 0; i < ARRAY_SIZE (standard_exc); i++)
12901 {
12902 if (preg == NULL
2d7cc5c7 12903 || preg->exec (standard_exc[i], 0, NULL, 0) == 0)
778865d3
JB
12904 {
12905 struct bound_minimal_symbol msymbol
12906 = ada_lookup_simple_minsym (standard_exc[i]);
12907
12908 if (msymbol.minsym != NULL)
12909 {
12910 struct ada_exc_info info
77e371c0 12911 = {standard_exc[i], BMSYMBOL_VALUE_ADDRESS (msymbol)};
778865d3 12912
ab816a27 12913 exceptions->push_back (info);
778865d3
JB
12914 }
12915 }
12916 }
12917}
12918
12919/* Add all Ada exceptions defined locally and accessible from the given
12920 FRAME.
12921
12922 If PREG is not NULL, then this regexp_t object is used to
12923 perform the symbol name matching. Otherwise, no name-based
12924 filtering is performed.
12925
12926 EXCEPTIONS is a vector of exceptions to which matching exceptions
12927 gets pushed. */
12928
12929static void
2d7cc5c7
PA
12930ada_add_exceptions_from_frame (compiled_regex *preg,
12931 struct frame_info *frame,
ab816a27 12932 std::vector<ada_exc_info> *exceptions)
778865d3 12933{
3977b71f 12934 const struct block *block = get_frame_block (frame, 0);
778865d3
JB
12935
12936 while (block != 0)
12937 {
12938 struct block_iterator iter;
12939 struct symbol *sym;
12940
12941 ALL_BLOCK_SYMBOLS (block, iter, sym)
12942 {
12943 switch (SYMBOL_CLASS (sym))
12944 {
12945 case LOC_TYPEDEF:
12946 case LOC_BLOCK:
12947 case LOC_CONST:
12948 break;
12949 default:
12950 if (ada_is_exception_sym (sym))
12951 {
987012b8 12952 struct ada_exc_info info = {sym->print_name (),
778865d3
JB
12953 SYMBOL_VALUE_ADDRESS (sym)};
12954
ab816a27 12955 exceptions->push_back (info);
778865d3
JB
12956 }
12957 }
12958 }
12959 if (BLOCK_FUNCTION (block) != NULL)
12960 break;
12961 block = BLOCK_SUPERBLOCK (block);
12962 }
12963}
12964
14bc53a8
PA
12965/* Return true if NAME matches PREG or if PREG is NULL. */
12966
12967static bool
2d7cc5c7 12968name_matches_regex (const char *name, compiled_regex *preg)
14bc53a8
PA
12969{
12970 return (preg == NULL
f945dedf 12971 || preg->exec (ada_decode (name).c_str (), 0, NULL, 0) == 0);
14bc53a8
PA
12972}
12973
778865d3
JB
12974/* Add all exceptions defined globally whose name name match
12975 a regular expression, excluding standard exceptions.
12976
12977 The reason we exclude standard exceptions is that they need
12978 to be handled separately: Standard exceptions are defined inside
12979 a runtime unit which is normally not compiled with debugging info,
12980 and thus usually do not show up in our symbol search. However,
12981 if the unit was in fact built with debugging info, we need to
12982 exclude them because they would duplicate the entry we found
12983 during the special loop that specifically searches for those
12984 standard exceptions.
12985
12986 If PREG is not NULL, then this regexp_t object is used to
12987 perform the symbol name matching. Otherwise, no name-based
12988 filtering is performed.
12989
12990 EXCEPTIONS is a vector of exceptions to which matching exceptions
12991 gets pushed. */
12992
12993static void
2d7cc5c7 12994ada_add_global_exceptions (compiled_regex *preg,
ab816a27 12995 std::vector<ada_exc_info> *exceptions)
778865d3 12996{
14bc53a8
PA
12997 /* In Ada, the symbol "search name" is a linkage name, whereas the
12998 regular expression used to do the matching refers to the natural
12999 name. So match against the decoded name. */
13000 expand_symtabs_matching (NULL,
b5ec771e 13001 lookup_name_info::match_any (),
14bc53a8
PA
13002 [&] (const char *search_name)
13003 {
f945dedf
CB
13004 std::string decoded = ada_decode (search_name);
13005 return name_matches_regex (decoded.c_str (), preg);
14bc53a8
PA
13006 },
13007 NULL,
13008 VARIABLES_DOMAIN);
778865d3 13009
2030c079 13010 for (objfile *objfile : current_program_space->objfiles ())
778865d3 13011 {
b669c953 13012 for (compunit_symtab *s : objfile->compunits ())
778865d3 13013 {
d8aeb77f
TT
13014 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (s);
13015 int i;
778865d3 13016
d8aeb77f
TT
13017 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
13018 {
582942f4 13019 const struct block *b = BLOCKVECTOR_BLOCK (bv, i);
d8aeb77f
TT
13020 struct block_iterator iter;
13021 struct symbol *sym;
778865d3 13022
d8aeb77f
TT
13023 ALL_BLOCK_SYMBOLS (b, iter, sym)
13024 if (ada_is_non_standard_exception_sym (sym)
987012b8 13025 && name_matches_regex (sym->natural_name (), preg))
d8aeb77f
TT
13026 {
13027 struct ada_exc_info info
987012b8 13028 = {sym->print_name (), SYMBOL_VALUE_ADDRESS (sym)};
d8aeb77f
TT
13029
13030 exceptions->push_back (info);
13031 }
13032 }
778865d3
JB
13033 }
13034 }
13035}
13036
13037/* Implements ada_exceptions_list with the regular expression passed
13038 as a regex_t, rather than a string.
13039
13040 If not NULL, PREG is used to filter out exceptions whose names
13041 do not match. Otherwise, all exceptions are listed. */
13042
ab816a27 13043static std::vector<ada_exc_info>
2d7cc5c7 13044ada_exceptions_list_1 (compiled_regex *preg)
778865d3 13045{
ab816a27 13046 std::vector<ada_exc_info> result;
778865d3
JB
13047 int prev_len;
13048
13049 /* First, list the known standard exceptions. These exceptions
13050 need to be handled separately, as they are usually defined in
13051 runtime units that have been compiled without debugging info. */
13052
13053 ada_add_standard_exceptions (preg, &result);
13054
13055 /* Next, find all exceptions whose scope is local and accessible
13056 from the currently selected frame. */
13057
13058 if (has_stack_frames ())
13059 {
ab816a27 13060 prev_len = result.size ();
778865d3
JB
13061 ada_add_exceptions_from_frame (preg, get_selected_frame (NULL),
13062 &result);
ab816a27 13063 if (result.size () > prev_len)
778865d3
JB
13064 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13065 }
13066
13067 /* Add all exceptions whose scope is global. */
13068
ab816a27 13069 prev_len = result.size ();
778865d3 13070 ada_add_global_exceptions (preg, &result);
ab816a27 13071 if (result.size () > prev_len)
778865d3
JB
13072 sort_remove_dups_ada_exceptions_list (&result, prev_len);
13073
778865d3
JB
13074 return result;
13075}
13076
13077/* Return a vector of ada_exc_info.
13078
13079 If REGEXP is NULL, all exceptions are included in the result.
13080 Otherwise, it should contain a valid regular expression,
13081 and only the exceptions whose names match that regular expression
13082 are included in the result.
13083
13084 The exceptions are sorted in the following order:
13085 - Standard exceptions (defined by the Ada language), in
13086 alphabetical order;
13087 - Exceptions only visible from the current frame, in
13088 alphabetical order;
13089 - Exceptions whose scope is global, in alphabetical order. */
13090
ab816a27 13091std::vector<ada_exc_info>
778865d3
JB
13092ada_exceptions_list (const char *regexp)
13093{
2d7cc5c7
PA
13094 if (regexp == NULL)
13095 return ada_exceptions_list_1 (NULL);
778865d3 13096
2d7cc5c7
PA
13097 compiled_regex reg (regexp, REG_NOSUB, _("invalid regular expression"));
13098 return ada_exceptions_list_1 (&reg);
778865d3
JB
13099}
13100
13101/* Implement the "info exceptions" command. */
13102
13103static void
1d12d88f 13104info_exceptions_command (const char *regexp, int from_tty)
778865d3 13105{
778865d3 13106 struct gdbarch *gdbarch = get_current_arch ();
778865d3 13107
ab816a27 13108 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp);
778865d3
JB
13109
13110 if (regexp != NULL)
13111 printf_filtered
13112 (_("All Ada exceptions matching regular expression \"%s\":\n"), regexp);
13113 else
13114 printf_filtered (_("All defined Ada exceptions:\n"));
13115
ab816a27
TT
13116 for (const ada_exc_info &info : exceptions)
13117 printf_filtered ("%s: %s\n", info.name, paddress (gdbarch, info.addr));
778865d3
JB
13118}
13119
4c4b4cd2
PH
13120 /* Operators */
13121/* Information about operators given special treatment in functions
13122 below. */
13123/* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */
13124
13125#define ADA_OPERATORS \
13126 OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \
13127 OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \
13128 OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \
13129 OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \
13130 OP_DEFN (OP_ATR_LAST, 1, 2, 0) \
13131 OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \
13132 OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \
13133 OP_DEFN (OP_ATR_MAX, 1, 3, 0) \
13134 OP_DEFN (OP_ATR_MIN, 1, 3, 0) \
13135 OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \
13136 OP_DEFN (OP_ATR_POS, 1, 2, 0) \
13137 OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \
13138 OP_DEFN (OP_ATR_TAG, 1, 1, 0) \
13139 OP_DEFN (OP_ATR_VAL, 1, 2, 0) \
13140 OP_DEFN (UNOP_QUAL, 3, 1, 0) \
52ce6436
PH
13141 OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \
13142 OP_DEFN (OP_OTHERS, 1, 1, 0) \
13143 OP_DEFN (OP_POSITIONAL, 3, 1, 0) \
13144 OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0)
4c4b4cd2
PH
13145
13146static void
554794dc
SDJ
13147ada_operator_length (const struct expression *exp, int pc, int *oplenp,
13148 int *argsp)
4c4b4cd2
PH
13149{
13150 switch (exp->elts[pc - 1].opcode)
13151 {
76a01679 13152 default:
4c4b4cd2
PH
13153 operator_length_standard (exp, pc, oplenp, argsp);
13154 break;
13155
13156#define OP_DEFN(op, len, args, binop) \
13157 case op: *oplenp = len; *argsp = args; break;
13158 ADA_OPERATORS;
13159#undef OP_DEFN
52ce6436
PH
13160
13161 case OP_AGGREGATE:
13162 *oplenp = 3;
13163 *argsp = longest_to_int (exp->elts[pc - 2].longconst);
13164 break;
13165
13166 case OP_CHOICES:
13167 *oplenp = 3;
13168 *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1;
13169 break;
4c4b4cd2
PH
13170 }
13171}
13172
c0201579
JK
13173/* Implementation of the exp_descriptor method operator_check. */
13174
13175static int
13176ada_operator_check (struct expression *exp, int pos,
13177 int (*objfile_func) (struct objfile *objfile, void *data),
13178 void *data)
13179{
13180 const union exp_element *const elts = exp->elts;
13181 struct type *type = NULL;
13182
13183 switch (elts[pos].opcode)
13184 {
13185 case UNOP_IN_RANGE:
13186 case UNOP_QUAL:
13187 type = elts[pos + 1].type;
13188 break;
13189
13190 default:
13191 return operator_check_standard (exp, pos, objfile_func, data);
13192 }
13193
13194 /* Invoke callbacks for TYPE and OBJFILE if they were set as non-NULL. */
13195
13196 if (type && TYPE_OBJFILE (type)
13197 && (*objfile_func) (TYPE_OBJFILE (type), data))
13198 return 1;
13199
13200 return 0;
13201}
13202
a121b7c1 13203static const char *
4c4b4cd2
PH
13204ada_op_name (enum exp_opcode opcode)
13205{
13206 switch (opcode)
13207 {
76a01679 13208 default:
4c4b4cd2 13209 return op_name_standard (opcode);
52ce6436 13210
4c4b4cd2
PH
13211#define OP_DEFN(op, len, args, binop) case op: return #op;
13212 ADA_OPERATORS;
13213#undef OP_DEFN
52ce6436
PH
13214
13215 case OP_AGGREGATE:
13216 return "OP_AGGREGATE";
13217 case OP_CHOICES:
13218 return "OP_CHOICES";
13219 case OP_NAME:
13220 return "OP_NAME";
4c4b4cd2
PH
13221 }
13222}
13223
13224/* As for operator_length, but assumes PC is pointing at the first
13225 element of the operator, and gives meaningful results only for the
52ce6436 13226 Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */
4c4b4cd2
PH
13227
13228static void
76a01679
JB
13229ada_forward_operator_length (struct expression *exp, int pc,
13230 int *oplenp, int *argsp)
4c4b4cd2 13231{
76a01679 13232 switch (exp->elts[pc].opcode)
4c4b4cd2
PH
13233 {
13234 default:
13235 *oplenp = *argsp = 0;
13236 break;
52ce6436 13237
4c4b4cd2
PH
13238#define OP_DEFN(op, len, args, binop) \
13239 case op: *oplenp = len; *argsp = args; break;
13240 ADA_OPERATORS;
13241#undef OP_DEFN
52ce6436
PH
13242
13243 case OP_AGGREGATE:
13244 *oplenp = 3;
13245 *argsp = longest_to_int (exp->elts[pc + 1].longconst);
13246 break;
13247
13248 case OP_CHOICES:
13249 *oplenp = 3;
13250 *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1;
13251 break;
13252
13253 case OP_STRING:
13254 case OP_NAME:
13255 {
13256 int len = longest_to_int (exp->elts[pc + 1].longconst);
5b4ee69b 13257
52ce6436
PH
13258 *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1);
13259 *argsp = 0;
13260 break;
13261 }
4c4b4cd2
PH
13262 }
13263}
13264
13265static int
13266ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
13267{
13268 enum exp_opcode op = exp->elts[elt].opcode;
13269 int oplen, nargs;
13270 int pc = elt;
13271 int i;
76a01679 13272
4c4b4cd2
PH
13273 ada_forward_operator_length (exp, elt, &oplen, &nargs);
13274
76a01679 13275 switch (op)
4c4b4cd2 13276 {
76a01679 13277 /* Ada attributes ('Foo). */
4c4b4cd2
PH
13278 case OP_ATR_FIRST:
13279 case OP_ATR_LAST:
13280 case OP_ATR_LENGTH:
13281 case OP_ATR_IMAGE:
13282 case OP_ATR_MAX:
13283 case OP_ATR_MIN:
13284 case OP_ATR_MODULUS:
13285 case OP_ATR_POS:
13286 case OP_ATR_SIZE:
13287 case OP_ATR_TAG:
13288 case OP_ATR_VAL:
13289 break;
13290
13291 case UNOP_IN_RANGE:
13292 case UNOP_QUAL:
323e0a4a
AC
13293 /* XXX: gdb_sprint_host_address, type_sprint */
13294 fprintf_filtered (stream, _("Type @"));
4c4b4cd2
PH
13295 gdb_print_host_address (exp->elts[pc + 1].type, stream);
13296 fprintf_filtered (stream, " (");
13297 type_print (exp->elts[pc + 1].type, NULL, stream, 0);
13298 fprintf_filtered (stream, ")");
13299 break;
13300 case BINOP_IN_BOUNDS:
52ce6436
PH
13301 fprintf_filtered (stream, " (%d)",
13302 longest_to_int (exp->elts[pc + 2].longconst));
4c4b4cd2
PH
13303 break;
13304 case TERNOP_IN_RANGE:
13305 break;
13306
52ce6436
PH
13307 case OP_AGGREGATE:
13308 case OP_OTHERS:
13309 case OP_DISCRETE_RANGE:
13310 case OP_POSITIONAL:
13311 case OP_CHOICES:
13312 break;
13313
13314 case OP_NAME:
13315 case OP_STRING:
13316 {
13317 char *name = &exp->elts[elt + 2].string;
13318 int len = longest_to_int (exp->elts[elt + 1].longconst);
5b4ee69b 13319
52ce6436
PH
13320 fprintf_filtered (stream, "Text: `%.*s'", len, name);
13321 break;
13322 }
13323
4c4b4cd2
PH
13324 default:
13325 return dump_subexp_body_standard (exp, stream, elt);
13326 }
13327
13328 elt += oplen;
13329 for (i = 0; i < nargs; i += 1)
13330 elt = dump_subexp (exp, stream, elt);
13331
13332 return elt;
13333}
13334
13335/* The Ada extension of print_subexp (q.v.). */
13336
76a01679
JB
13337static void
13338ada_print_subexp (struct expression *exp, int *pos,
13339 struct ui_file *stream, enum precedence prec)
4c4b4cd2 13340{
52ce6436 13341 int oplen, nargs, i;
4c4b4cd2
PH
13342 int pc = *pos;
13343 enum exp_opcode op = exp->elts[pc].opcode;
13344
13345 ada_forward_operator_length (exp, pc, &oplen, &nargs);
13346
52ce6436 13347 *pos += oplen;
4c4b4cd2
PH
13348 switch (op)
13349 {
13350 default:
52ce6436 13351 *pos -= oplen;
4c4b4cd2
PH
13352 print_subexp_standard (exp, pos, stream, prec);
13353 return;
13354
13355 case OP_VAR_VALUE:
987012b8 13356 fputs_filtered (exp->elts[pc + 2].symbol->natural_name (), stream);
4c4b4cd2
PH
13357 return;
13358
13359 case BINOP_IN_BOUNDS:
323e0a4a 13360 /* XXX: sprint_subexp */
4c4b4cd2 13361 print_subexp (exp, pos, stream, PREC_SUFFIX);
0b48a291 13362 fputs_filtered (" in ", stream);
4c4b4cd2 13363 print_subexp (exp, pos, stream, PREC_SUFFIX);
0b48a291 13364 fputs_filtered ("'range", stream);
4c4b4cd2 13365 if (exp->elts[pc + 1].longconst > 1)
76a01679
JB
13366 fprintf_filtered (stream, "(%ld)",
13367 (long) exp->elts[pc + 1].longconst);
4c4b4cd2
PH
13368 return;
13369
13370 case TERNOP_IN_RANGE:
4c4b4cd2 13371 if (prec >= PREC_EQUAL)
76a01679 13372 fputs_filtered ("(", stream);
323e0a4a 13373 /* XXX: sprint_subexp */
4c4b4cd2 13374 print_subexp (exp, pos, stream, PREC_SUFFIX);
0b48a291 13375 fputs_filtered (" in ", stream);
4c4b4cd2
PH
13376 print_subexp (exp, pos, stream, PREC_EQUAL);
13377 fputs_filtered (" .. ", stream);
13378 print_subexp (exp, pos, stream, PREC_EQUAL);
13379 if (prec >= PREC_EQUAL)
76a01679
JB
13380 fputs_filtered (")", stream);
13381 return;
4c4b4cd2
PH
13382
13383 case OP_ATR_FIRST:
13384 case OP_ATR_LAST:
13385 case OP_ATR_LENGTH:
13386 case OP_ATR_IMAGE:
13387 case OP_ATR_MAX:
13388 case OP_ATR_MIN:
13389 case OP_ATR_MODULUS:
13390 case OP_ATR_POS:
13391 case OP_ATR_SIZE:
13392 case OP_ATR_TAG:
13393 case OP_ATR_VAL:
4c4b4cd2 13394 if (exp->elts[*pos].opcode == OP_TYPE)
76a01679 13395 {
78134374 13396 if (exp->elts[*pos + 1].type->code () != TYPE_CODE_VOID)
79d43c61
TT
13397 LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0,
13398 &type_print_raw_options);
76a01679
JB
13399 *pos += 3;
13400 }
4c4b4cd2 13401 else
76a01679 13402 print_subexp (exp, pos, stream, PREC_SUFFIX);
4c4b4cd2
PH
13403 fprintf_filtered (stream, "'%s", ada_attribute_name (op));
13404 if (nargs > 1)
76a01679
JB
13405 {
13406 int tem;
5b4ee69b 13407
76a01679
JB
13408 for (tem = 1; tem < nargs; tem += 1)
13409 {
13410 fputs_filtered ((tem == 1) ? " (" : ", ", stream);
13411 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
13412 }
13413 fputs_filtered (")", stream);
13414 }
4c4b4cd2 13415 return;
14f9c5c9 13416
4c4b4cd2 13417 case UNOP_QUAL:
4c4b4cd2
PH
13418 type_print (exp->elts[pc + 1].type, "", stream, 0);
13419 fputs_filtered ("'(", stream);
13420 print_subexp (exp, pos, stream, PREC_PREFIX);
13421 fputs_filtered (")", stream);
13422 return;
14f9c5c9 13423
4c4b4cd2 13424 case UNOP_IN_RANGE:
323e0a4a 13425 /* XXX: sprint_subexp */
4c4b4cd2 13426 print_subexp (exp, pos, stream, PREC_SUFFIX);
0b48a291 13427 fputs_filtered (" in ", stream);
79d43c61
TT
13428 LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0,
13429 &type_print_raw_options);
4c4b4cd2 13430 return;
52ce6436
PH
13431
13432 case OP_DISCRETE_RANGE:
13433 print_subexp (exp, pos, stream, PREC_SUFFIX);
13434 fputs_filtered ("..", stream);
13435 print_subexp (exp, pos, stream, PREC_SUFFIX);
13436 return;
13437
13438 case OP_OTHERS:
13439 fputs_filtered ("others => ", stream);
13440 print_subexp (exp, pos, stream, PREC_SUFFIX);
13441 return;
13442
13443 case OP_CHOICES:
13444 for (i = 0; i < nargs-1; i += 1)
13445 {
13446 if (i > 0)
13447 fputs_filtered ("|", stream);
13448 print_subexp (exp, pos, stream, PREC_SUFFIX);
13449 }
13450 fputs_filtered (" => ", stream);
13451 print_subexp (exp, pos, stream, PREC_SUFFIX);
13452 return;
13453
13454 case OP_POSITIONAL:
13455 print_subexp (exp, pos, stream, PREC_SUFFIX);
13456 return;
13457
13458 case OP_AGGREGATE:
13459 fputs_filtered ("(", stream);
13460 for (i = 0; i < nargs; i += 1)
13461 {
13462 if (i > 0)
13463 fputs_filtered (", ", stream);
13464 print_subexp (exp, pos, stream, PREC_SUFFIX);
13465 }
13466 fputs_filtered (")", stream);
13467 return;
4c4b4cd2
PH
13468 }
13469}
14f9c5c9
AS
13470
13471/* Table mapping opcodes into strings for printing operators
13472 and precedences of the operators. */
13473
d2e4a39e
AS
13474static const struct op_print ada_op_print_tab[] = {
13475 {":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
13476 {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
13477 {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
13478 {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
13479 {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
13480 {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
13481 {"=", BINOP_EQUAL, PREC_EQUAL, 0},
13482 {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
13483 {"<=", BINOP_LEQ, PREC_ORDER, 0},
13484 {">=", BINOP_GEQ, PREC_ORDER, 0},
13485 {">", BINOP_GTR, PREC_ORDER, 0},
13486 {"<", BINOP_LESS, PREC_ORDER, 0},
13487 {">>", BINOP_RSH, PREC_SHIFT, 0},
13488 {"<<", BINOP_LSH, PREC_SHIFT, 0},
13489 {"+", BINOP_ADD, PREC_ADD, 0},
13490 {"-", BINOP_SUB, PREC_ADD, 0},
13491 {"&", BINOP_CONCAT, PREC_ADD, 0},
13492 {"*", BINOP_MUL, PREC_MUL, 0},
13493 {"/", BINOP_DIV, PREC_MUL, 0},
13494 {"rem", BINOP_REM, PREC_MUL, 0},
13495 {"mod", BINOP_MOD, PREC_MUL, 0},
13496 {"**", BINOP_EXP, PREC_REPEAT, 0},
13497 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
13498 {"-", UNOP_NEG, PREC_PREFIX, 0},
13499 {"+", UNOP_PLUS, PREC_PREFIX, 0},
13500 {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
13501 {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0},
13502 {"abs ", UNOP_ABS, PREC_PREFIX, 0},
4c4b4cd2
PH
13503 {".all", UNOP_IND, PREC_SUFFIX, 1},
13504 {"'access", UNOP_ADDR, PREC_SUFFIX, 1},
13505 {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1},
f486487f 13506 {NULL, OP_NULL, PREC_SUFFIX, 0}
14f9c5c9
AS
13507};
13508\f
72d5681a
PH
13509enum ada_primitive_types {
13510 ada_primitive_type_int,
13511 ada_primitive_type_long,
13512 ada_primitive_type_short,
13513 ada_primitive_type_char,
13514 ada_primitive_type_float,
13515 ada_primitive_type_double,
13516 ada_primitive_type_void,
13517 ada_primitive_type_long_long,
13518 ada_primitive_type_long_double,
13519 ada_primitive_type_natural,
13520 ada_primitive_type_positive,
13521 ada_primitive_type_system_address,
08f49010 13522 ada_primitive_type_storage_offset,
72d5681a
PH
13523 nr_ada_primitive_types
13524};
6c038f32 13525
6c038f32
PH
13526\f
13527 /* Language vector */
13528
13529/* Not really used, but needed in the ada_language_defn. */
13530
13531static void
6c7a06a3 13532emit_char (int c, struct type *type, struct ui_file *stream, int quoter)
6c038f32 13533{
6c7a06a3 13534 ada_emit_char (c, type, stream, quoter, 1);
6c038f32
PH
13535}
13536
13537static int
410a0ff2 13538parse (struct parser_state *ps)
6c038f32
PH
13539{
13540 warnings_issued = 0;
410a0ff2 13541 return ada_parse (ps);
6c038f32
PH
13542}
13543
13544static const struct exp_descriptor ada_exp_descriptor = {
13545 ada_print_subexp,
13546 ada_operator_length,
c0201579 13547 ada_operator_check,
6c038f32
PH
13548 ada_op_name,
13549 ada_dump_subexp_body,
13550 ada_evaluate_subexp
13551};
13552
b5ec771e
PA
13553/* symbol_name_matcher_ftype adapter for wild_match. */
13554
13555static bool
13556do_wild_match (const char *symbol_search_name,
13557 const lookup_name_info &lookup_name,
a207cff2 13558 completion_match_result *comp_match_res)
b5ec771e
PA
13559{
13560 return wild_match (symbol_search_name, ada_lookup_name (lookup_name));
13561}
13562
13563/* symbol_name_matcher_ftype adapter for full_match. */
13564
13565static bool
13566do_full_match (const char *symbol_search_name,
13567 const lookup_name_info &lookup_name,
a207cff2 13568 completion_match_result *comp_match_res)
b5ec771e
PA
13569{
13570 return full_match (symbol_search_name, ada_lookup_name (lookup_name));
13571}
13572
a2cd4f14
JB
13573/* symbol_name_matcher_ftype for exact (verbatim) matches. */
13574
13575static bool
13576do_exact_match (const char *symbol_search_name,
13577 const lookup_name_info &lookup_name,
13578 completion_match_result *comp_match_res)
13579{
13580 return strcmp (symbol_search_name, ada_lookup_name (lookup_name)) == 0;
13581}
13582
b5ec771e
PA
13583/* Build the Ada lookup name for LOOKUP_NAME. */
13584
13585ada_lookup_name_info::ada_lookup_name_info (const lookup_name_info &lookup_name)
13586{
e0802d59 13587 gdb::string_view user_name = lookup_name.name ();
b5ec771e
PA
13588
13589 if (user_name[0] == '<')
13590 {
13591 if (user_name.back () == '>')
e0802d59
TT
13592 m_encoded_name
13593 = user_name.substr (1, user_name.size () - 2).to_string ();
b5ec771e 13594 else
e0802d59
TT
13595 m_encoded_name
13596 = user_name.substr (1, user_name.size () - 1).to_string ();
b5ec771e
PA
13597 m_encoded_p = true;
13598 m_verbatim_p = true;
13599 m_wild_match_p = false;
13600 m_standard_p = false;
13601 }
13602 else
13603 {
13604 m_verbatim_p = false;
13605
e0802d59 13606 m_encoded_p = user_name.find ("__") != gdb::string_view::npos;
b5ec771e
PA
13607
13608 if (!m_encoded_p)
13609 {
e0802d59 13610 const char *folded = ada_fold_name (user_name);
b5ec771e
PA
13611 const char *encoded = ada_encode_1 (folded, false);
13612 if (encoded != NULL)
13613 m_encoded_name = encoded;
13614 else
e0802d59 13615 m_encoded_name = user_name.to_string ();
b5ec771e
PA
13616 }
13617 else
e0802d59 13618 m_encoded_name = user_name.to_string ();
b5ec771e
PA
13619
13620 /* Handle the 'package Standard' special case. See description
13621 of m_standard_p. */
13622 if (startswith (m_encoded_name.c_str (), "standard__"))
13623 {
13624 m_encoded_name = m_encoded_name.substr (sizeof ("standard__") - 1);
13625 m_standard_p = true;
13626 }
13627 else
13628 m_standard_p = false;
74ccd7f5 13629
b5ec771e
PA
13630 /* If the name contains a ".", then the user is entering a fully
13631 qualified entity name, and the match must not be done in wild
13632 mode. Similarly, if the user wants to complete what looks
13633 like an encoded name, the match must not be done in wild
13634 mode. Also, in the standard__ special case always do
13635 non-wild matching. */
13636 m_wild_match_p
13637 = (lookup_name.match_type () != symbol_name_match_type::FULL
13638 && !m_encoded_p
13639 && !m_standard_p
13640 && user_name.find ('.') == std::string::npos);
13641 }
13642}
13643
13644/* symbol_name_matcher_ftype method for Ada. This only handles
13645 completion mode. */
13646
13647static bool
13648ada_symbol_name_matches (const char *symbol_search_name,
13649 const lookup_name_info &lookup_name,
a207cff2 13650 completion_match_result *comp_match_res)
74ccd7f5 13651{
b5ec771e
PA
13652 return lookup_name.ada ().matches (symbol_search_name,
13653 lookup_name.match_type (),
a207cff2 13654 comp_match_res);
b5ec771e
PA
13655}
13656
de63c46b
PA
13657/* A name matcher that matches the symbol name exactly, with
13658 strcmp. */
13659
13660static bool
13661literal_symbol_name_matcher (const char *symbol_search_name,
13662 const lookup_name_info &lookup_name,
13663 completion_match_result *comp_match_res)
13664{
e0802d59 13665 gdb::string_view name_view = lookup_name.name ();
de63c46b 13666
e0802d59
TT
13667 if (lookup_name.completion_mode ()
13668 ? (strncmp (symbol_search_name, name_view.data (),
13669 name_view.size ()) == 0)
13670 : symbol_search_name == name_view)
de63c46b
PA
13671 {
13672 if (comp_match_res != NULL)
13673 comp_match_res->set_match (symbol_search_name);
13674 return true;
13675 }
13676 else
13677 return false;
13678}
13679
c9debfb9 13680/* Implement the "get_symbol_name_matcher" language_defn method for
b5ec771e
PA
13681 Ada. */
13682
13683static symbol_name_matcher_ftype *
13684ada_get_symbol_name_matcher (const lookup_name_info &lookup_name)
13685{
de63c46b
PA
13686 if (lookup_name.match_type () == symbol_name_match_type::SEARCH_NAME)
13687 return literal_symbol_name_matcher;
13688
b5ec771e
PA
13689 if (lookup_name.completion_mode ())
13690 return ada_symbol_name_matches;
74ccd7f5 13691 else
b5ec771e
PA
13692 {
13693 if (lookup_name.ada ().wild_match_p ())
13694 return do_wild_match;
a2cd4f14
JB
13695 else if (lookup_name.ada ().verbatim_p ())
13696 return do_exact_match;
b5ec771e
PA
13697 else
13698 return do_full_match;
13699 }
74ccd7f5
JB
13700}
13701
56618e20
TT
13702static const char *ada_extensions[] =
13703{
13704 ".adb", ".ads", ".a", ".ada", ".dg", NULL
13705};
13706
0874fd07
AB
13707/* Constant data that describes the Ada language. */
13708
13709extern const struct language_data ada_language_data =
13710{
6c038f32 13711 "ada", /* Language name */
6abde28f 13712 "Ada",
6c038f32 13713 language_ada,
6c038f32 13714 range_check_off,
6c038f32
PH
13715 case_sensitive_on, /* Yes, Ada is case-insensitive, but
13716 that's not quite what this means. */
6c038f32 13717 array_row_major,
9a044a89 13718 macro_expansion_no,
56618e20 13719 ada_extensions,
6c038f32
PH
13720 &ada_exp_descriptor,
13721 parse,
6c038f32
PH
13722 resolve,
13723 ada_printchar, /* Print a character constant */
13724 ada_printstr, /* Function to print string constant */
13725 emit_char, /* Function to print single char (not used) */
be942545 13726 ada_print_typedef, /* Print a typedef using appropriate syntax */
2b2d9e11 13727 NULL, /* name_of_this */
59cc4834 13728 true, /* la_store_sym_names_in_linkage_form_p */
6c038f32
PH
13729 ada_op_print_tab, /* expression operators for printing */
13730 0, /* c-style arrays */
13731 1, /* String lower bound */
a53b64ea 13732 &ada_varobj_ops,
4be290b2 13733 ada_is_string_type,
721b08c6 13734 "(...)" /* la_struct_too_deep_ellipsis */
6c038f32
PH
13735};
13736
0874fd07
AB
13737/* Class representing the Ada language. */
13738
13739class ada_language : public language_defn
13740{
13741public:
13742 ada_language ()
13743 : language_defn (language_ada, ada_language_data)
13744 { /* Nothing. */ }
5bd40f2a
AB
13745
13746 /* Print an array element index using the Ada syntax. */
13747
13748 void print_array_index (struct type *index_type,
13749 LONGEST index,
13750 struct ui_file *stream,
13751 const value_print_options *options) const override
13752 {
13753 struct value *index_value = val_atr (index_type, index);
13754
13755 LA_VALUE_PRINT (index_value, stream, options);
13756 fprintf_filtered (stream, " => ");
13757 }
15e5fd35
AB
13758
13759 /* Implement the "read_var_value" language_defn method for Ada. */
13760
13761 struct value *read_var_value (struct symbol *var,
13762 const struct block *var_block,
13763 struct frame_info *frame) const override
13764 {
13765 /* The only case where default_read_var_value is not sufficient
13766 is when VAR is a renaming... */
13767 if (frame != nullptr)
13768 {
13769 const struct block *frame_block = get_frame_block (frame, NULL);
13770 if (frame_block != nullptr && ada_is_renaming_symbol (var))
13771 return ada_read_renaming_var_value (var, frame_block);
13772 }
13773
13774 /* This is a typical case where we expect the default_read_var_value
13775 function to work. */
13776 return language_defn::read_var_value (var, var_block, frame);
13777 }
1fb314aa
AB
13778
13779 /* See language.h. */
13780 void language_arch_info (struct gdbarch *gdbarch,
13781 struct language_arch_info *lai) const override
13782 {
13783 const struct builtin_type *builtin = builtin_type (gdbarch);
13784
13785 lai->primitive_type_vector
13786 = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_ada_primitive_types + 1,
13787 struct type *);
13788
13789 lai->primitive_type_vector [ada_primitive_type_int]
13790 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13791 0, "integer");
13792 lai->primitive_type_vector [ada_primitive_type_long]
13793 = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
13794 0, "long_integer");
13795 lai->primitive_type_vector [ada_primitive_type_short]
13796 = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
13797 0, "short_integer");
13798 lai->string_char_type
13799 = lai->primitive_type_vector [ada_primitive_type_char]
13800 = arch_character_type (gdbarch, TARGET_CHAR_BIT, 0, "character");
13801 lai->primitive_type_vector [ada_primitive_type_float]
13802 = arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
13803 "float", gdbarch_float_format (gdbarch));
13804 lai->primitive_type_vector [ada_primitive_type_double]
13805 = arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
13806 "long_float", gdbarch_double_format (gdbarch));
13807 lai->primitive_type_vector [ada_primitive_type_long_long]
13808 = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
13809 0, "long_long_integer");
13810 lai->primitive_type_vector [ada_primitive_type_long_double]
13811 = arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
13812 "long_long_float", gdbarch_long_double_format (gdbarch));
13813 lai->primitive_type_vector [ada_primitive_type_natural]
13814 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13815 0, "natural");
13816 lai->primitive_type_vector [ada_primitive_type_positive]
13817 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
13818 0, "positive");
13819 lai->primitive_type_vector [ada_primitive_type_void]
13820 = builtin->builtin_void;
13821
13822 lai->primitive_type_vector [ada_primitive_type_system_address]
13823 = lookup_pointer_type (arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT,
13824 "void"));
13825 lai->primitive_type_vector [ada_primitive_type_system_address]
13826 ->set_name ("system__address");
13827
13828 /* Create the equivalent of the System.Storage_Elements.Storage_Offset
13829 type. This is a signed integral type whose size is the same as
13830 the size of addresses. */
13831 {
13832 unsigned int addr_length = TYPE_LENGTH
13833 (lai->primitive_type_vector [ada_primitive_type_system_address]);
13834
13835 lai->primitive_type_vector [ada_primitive_type_storage_offset]
13836 = arch_integer_type (gdbarch, addr_length * HOST_CHAR_BIT, 0,
13837 "storage_offset");
13838 }
13839
13840 lai->bool_type_symbol = NULL;
13841 lai->bool_type_default = builtin->builtin_bool;
13842 }
4009ee92
AB
13843
13844 /* See language.h. */
13845
13846 bool iterate_over_symbols
13847 (const struct block *block, const lookup_name_info &name,
13848 domain_enum domain,
13849 gdb::function_view<symbol_found_callback_ftype> callback) const override
13850 {
13851 std::vector<struct block_symbol> results;
13852
13853 ada_lookup_symbol_list_worker (name, block, domain, &results, 0);
13854 for (block_symbol &sym : results)
13855 {
13856 if (!callback (&sym))
13857 return false;
13858 }
13859
13860 return true;
13861 }
6f827019
AB
13862
13863 /* See language.h. */
13864 bool sniff_from_mangled_name (const char *mangled,
13865 char **out) const override
13866 {
13867 std::string demangled = ada_decode (mangled);
13868
13869 *out = NULL;
13870
13871 if (demangled != mangled && demangled[0] != '<')
13872 {
13873 /* Set the gsymbol language to Ada, but still return 0.
13874 Two reasons for that:
13875
13876 1. For Ada, we prefer computing the symbol's decoded name
13877 on the fly rather than pre-compute it, in order to save
13878 memory (Ada projects are typically very large).
13879
13880 2. There are some areas in the definition of the GNAT
13881 encoding where, with a bit of bad luck, we might be able
13882 to decode a non-Ada symbol, generating an incorrect
13883 demangled name (Eg: names ending with "TB" for instance
13884 are identified as task bodies and so stripped from
13885 the decoded name returned).
13886
13887 Returning true, here, but not setting *DEMANGLED, helps us get
13888 a little bit of the best of both worlds. Because we're last,
13889 we should not affect any of the other languages that were
13890 able to demangle the symbol before us; we get to correctly
13891 tag Ada symbols as such; and even if we incorrectly tagged a
13892 non-Ada symbol, which should be rare, any routing through the
13893 Ada language should be transparent (Ada tries to behave much
13894 like C/C++ with non-Ada symbols). */
13895 return true;
13896 }
13897
13898 return false;
13899 }
fbfb0a46
AB
13900
13901 /* See language.h. */
13902
0a50df5d
AB
13903 char *demangle (const char *mangled, int options) const override
13904 {
13905 return ada_la_decode (mangled, options);
13906 }
13907
13908 /* See language.h. */
13909
fbfb0a46
AB
13910 void print_type (struct type *type, const char *varstring,
13911 struct ui_file *stream, int show, int level,
13912 const struct type_print_options *flags) const override
13913 {
13914 ada_print_type (type, varstring, stream, show, level, flags);
13915 }
c9debfb9 13916
53fc67f8
AB
13917 /* See language.h. */
13918
13919 const char *word_break_characters (void) const override
13920 {
13921 return ada_completer_word_break_characters;
13922 }
13923
7e56227d
AB
13924 /* See language.h. */
13925
13926 void collect_symbol_completion_matches (completion_tracker &tracker,
13927 complete_symbol_mode mode,
13928 symbol_name_match_type name_match_type,
13929 const char *text, const char *word,
13930 enum type_code code) const override
13931 {
13932 struct symbol *sym;
13933 const struct block *b, *surrounding_static_block = 0;
13934 struct block_iterator iter;
13935
13936 gdb_assert (code == TYPE_CODE_UNDEF);
13937
13938 lookup_name_info lookup_name (text, name_match_type, true);
13939
13940 /* First, look at the partial symtab symbols. */
13941 expand_symtabs_matching (NULL,
13942 lookup_name,
13943 NULL,
13944 NULL,
13945 ALL_DOMAIN);
13946
13947 /* At this point scan through the misc symbol vectors and add each
13948 symbol you find to the list. Eventually we want to ignore
13949 anything that isn't a text symbol (everything else will be
13950 handled by the psymtab code above). */
13951
13952 for (objfile *objfile : current_program_space->objfiles ())
13953 {
13954 for (minimal_symbol *msymbol : objfile->msymbols ())
13955 {
13956 QUIT;
13957
13958 if (completion_skip_symbol (mode, msymbol))
13959 continue;
13960
13961 language symbol_language = msymbol->language ();
13962
13963 /* Ada minimal symbols won't have their language set to Ada. If
13964 we let completion_list_add_name compare using the
13965 default/C-like matcher, then when completing e.g., symbols in a
13966 package named "pck", we'd match internal Ada symbols like
13967 "pckS", which are invalid in an Ada expression, unless you wrap
13968 them in '<' '>' to request a verbatim match.
13969
13970 Unfortunately, some Ada encoded names successfully demangle as
13971 C++ symbols (using an old mangling scheme), such as "name__2Xn"
13972 -> "Xn::name(void)" and thus some Ada minimal symbols end up
13973 with the wrong language set. Paper over that issue here. */
13974 if (symbol_language == language_auto
13975 || symbol_language == language_cplus)
13976 symbol_language = language_ada;
13977
13978 completion_list_add_name (tracker,
13979 symbol_language,
13980 msymbol->linkage_name (),
13981 lookup_name, text, word);
13982 }
13983 }
13984
13985 /* Search upwards from currently selected frame (so that we can
13986 complete on local vars. */
13987
13988 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
13989 {
13990 if (!BLOCK_SUPERBLOCK (b))
13991 surrounding_static_block = b; /* For elmin of dups */
13992
13993 ALL_BLOCK_SYMBOLS (b, iter, sym)
13994 {
13995 if (completion_skip_symbol (mode, sym))
13996 continue;
13997
13998 completion_list_add_name (tracker,
13999 sym->language (),
14000 sym->linkage_name (),
14001 lookup_name, text, word);
14002 }
14003 }
14004
14005 /* Go through the symtabs and check the externs and statics for
14006 symbols which match. */
14007
14008 for (objfile *objfile : current_program_space->objfiles ())
14009 {
14010 for (compunit_symtab *s : objfile->compunits ())
14011 {
14012 QUIT;
14013 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), GLOBAL_BLOCK);
14014 ALL_BLOCK_SYMBOLS (b, iter, sym)
14015 {
14016 if (completion_skip_symbol (mode, sym))
14017 continue;
14018
14019 completion_list_add_name (tracker,
14020 sym->language (),
14021 sym->linkage_name (),
14022 lookup_name, text, word);
14023 }
14024 }
14025 }
14026
14027 for (objfile *objfile : current_program_space->objfiles ())
14028 {
14029 for (compunit_symtab *s : objfile->compunits ())
14030 {
14031 QUIT;
14032 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (s), STATIC_BLOCK);
14033 /* Don't do this block twice. */
14034 if (b == surrounding_static_block)
14035 continue;
14036 ALL_BLOCK_SYMBOLS (b, iter, sym)
14037 {
14038 if (completion_skip_symbol (mode, sym))
14039 continue;
14040
14041 completion_list_add_name (tracker,
14042 sym->language (),
14043 sym->linkage_name (),
14044 lookup_name, text, word);
14045 }
14046 }
14047 }
14048 }
14049
f16a9f57
AB
14050 /* See language.h. */
14051
14052 gdb::unique_xmalloc_ptr<char> watch_location_expression
14053 (struct type *type, CORE_ADDR addr) const override
14054 {
14055 type = check_typedef (TYPE_TARGET_TYPE (check_typedef (type)));
14056 std::string name = type_to_string (type);
14057 return gdb::unique_xmalloc_ptr<char>
14058 (xstrprintf ("{%s} %s", name.c_str (), core_addr_to_string (addr)));
14059 }
14060
a1d1fa3e
AB
14061 /* See language.h. */
14062
14063 void value_print (struct value *val, struct ui_file *stream,
14064 const struct value_print_options *options) const override
14065 {
14066 return ada_value_print (val, stream, options);
14067 }
14068
ebe2334e
AB
14069 /* See language.h. */
14070
14071 void value_print_inner
14072 (struct value *val, struct ui_file *stream, int recurse,
14073 const struct value_print_options *options) const override
14074 {
14075 return ada_value_print_inner (val, stream, recurse, options);
14076 }
14077
a78a19b1
AB
14078 /* See language.h. */
14079
14080 struct block_symbol lookup_symbol_nonlocal
14081 (const char *name, const struct block *block,
14082 const domain_enum domain) const override
14083 {
14084 struct block_symbol sym;
14085
14086 sym = ada_lookup_symbol (name, block_static_block (block), domain);
14087 if (sym.symbol != NULL)
14088 return sym;
14089
14090 /* If we haven't found a match at this point, try the primitive
14091 types. In other languages, this search is performed before
14092 searching for global symbols in order to short-circuit that
14093 global-symbol search if it happens that the name corresponds
14094 to a primitive type. But we cannot do the same in Ada, because
14095 it is perfectly legitimate for a program to declare a type which
14096 has the same name as a standard type. If looking up a type in
14097 that situation, we have traditionally ignored the primitive type
14098 in favor of user-defined types. This is why, unlike most other
14099 languages, we search the primitive types this late and only after
14100 having searched the global symbols without success. */
14101
14102 if (domain == VAR_DOMAIN)
14103 {
14104 struct gdbarch *gdbarch;
14105
14106 if (block == NULL)
14107 gdbarch = target_gdbarch ();
14108 else
14109 gdbarch = block_gdbarch (block);
14110 sym.symbol
14111 = language_lookup_primitive_type_as_symbol (this, gdbarch, name);
14112 if (sym.symbol != NULL)
14113 return sym;
14114 }
14115
14116 return {};
14117 }
14118
c9debfb9
AB
14119protected:
14120 /* See language.h. */
14121
14122 symbol_name_matcher_ftype *get_symbol_name_matcher_inner
14123 (const lookup_name_info &lookup_name) const override
14124 {
14125 return ada_get_symbol_name_matcher (lookup_name);
14126 }
0874fd07
AB
14127};
14128
14129/* Single instance of the Ada language class. */
14130
14131static ada_language ada_language_defn;
14132
5bf03f13
JB
14133/* Command-list for the "set/show ada" prefix command. */
14134static struct cmd_list_element *set_ada_list;
14135static struct cmd_list_element *show_ada_list;
14136
2060206e
PA
14137static void
14138initialize_ada_catchpoint_ops (void)
14139{
14140 struct breakpoint_ops *ops;
14141
14142 initialize_breakpoint_ops ();
14143
14144 ops = &catch_exception_breakpoint_ops;
14145 *ops = bkpt_breakpoint_ops;
37f6a7f4
TT
14146 ops->allocate_location = allocate_location_exception;
14147 ops->re_set = re_set_exception;
14148 ops->check_status = check_status_exception;
14149 ops->print_it = print_it_exception;
14150 ops->print_one = print_one_exception;
14151 ops->print_mention = print_mention_exception;
14152 ops->print_recreate = print_recreate_exception;
2060206e
PA
14153
14154 ops = &catch_exception_unhandled_breakpoint_ops;
14155 *ops = bkpt_breakpoint_ops;
37f6a7f4
TT
14156 ops->allocate_location = allocate_location_exception;
14157 ops->re_set = re_set_exception;
14158 ops->check_status = check_status_exception;
14159 ops->print_it = print_it_exception;
14160 ops->print_one = print_one_exception;
14161 ops->print_mention = print_mention_exception;
14162 ops->print_recreate = print_recreate_exception;
2060206e
PA
14163
14164 ops = &catch_assert_breakpoint_ops;
14165 *ops = bkpt_breakpoint_ops;
37f6a7f4
TT
14166 ops->allocate_location = allocate_location_exception;
14167 ops->re_set = re_set_exception;
14168 ops->check_status = check_status_exception;
14169 ops->print_it = print_it_exception;
14170 ops->print_one = print_one_exception;
14171 ops->print_mention = print_mention_exception;
14172 ops->print_recreate = print_recreate_exception;
9f757bf7
XR
14173
14174 ops = &catch_handlers_breakpoint_ops;
14175 *ops = bkpt_breakpoint_ops;
37f6a7f4
TT
14176 ops->allocate_location = allocate_location_exception;
14177 ops->re_set = re_set_exception;
14178 ops->check_status = check_status_exception;
14179 ops->print_it = print_it_exception;
14180 ops->print_one = print_one_exception;
14181 ops->print_mention = print_mention_exception;
14182 ops->print_recreate = print_recreate_exception;
2060206e
PA
14183}
14184
3d9434b5
JB
14185/* This module's 'new_objfile' observer. */
14186
14187static void
14188ada_new_objfile_observer (struct objfile *objfile)
14189{
14190 ada_clear_symbol_cache ();
14191}
14192
14193/* This module's 'free_objfile' observer. */
14194
14195static void
14196ada_free_objfile_observer (struct objfile *objfile)
14197{
14198 ada_clear_symbol_cache ();
14199}
14200
6c265988 14201void _initialize_ada_language ();
d2e4a39e 14202void
6c265988 14203_initialize_ada_language ()
14f9c5c9 14204{
2060206e
PA
14205 initialize_ada_catchpoint_ops ();
14206
0743fc83
TT
14207 add_basic_prefix_cmd ("ada", no_class,
14208 _("Prefix command for changing Ada-specific settings."),
14209 &set_ada_list, "set ada ", 0, &setlist);
5bf03f13 14210
0743fc83
TT
14211 add_show_prefix_cmd ("ada", no_class,
14212 _("Generic command for showing Ada-specific settings."),
14213 &show_ada_list, "show ada ", 0, &showlist);
5bf03f13
JB
14214
14215 add_setshow_boolean_cmd ("trust-PAD-over-XVS", class_obscure,
14216 &trust_pad_over_xvs, _("\
590042fc
PW
14217Enable or disable an optimization trusting PAD types over XVS types."), _("\
14218Show whether an optimization trusting PAD types over XVS types is activated."),
5bf03f13
JB
14219 _("\
14220This is related to the encoding used by the GNAT compiler. The debugger\n\
14221should normally trust the contents of PAD types, but certain older versions\n\
14222of GNAT have a bug that sometimes causes the information in the PAD type\n\
14223to be incorrect. Turning this setting \"off\" allows the debugger to\n\
14224work around this bug. It is always safe to turn this option \"off\", but\n\
14225this incurs a slight performance penalty, so it is recommended to NOT change\n\
14226this option to \"off\" unless necessary."),
14227 NULL, NULL, &set_ada_list, &show_ada_list);
14228
d72413e6
PMR
14229 add_setshow_boolean_cmd ("print-signatures", class_vars,
14230 &print_signatures, _("\
14231Enable or disable the output of formal and return types for functions in the \
590042fc 14232overloads selection menu."), _("\
d72413e6 14233Show whether the output of formal and return types for functions in the \
590042fc 14234overloads selection menu is activated."),
d72413e6
PMR
14235 NULL, NULL, NULL, &set_ada_list, &show_ada_list);
14236
9ac4176b
PA
14237 add_catch_command ("exception", _("\
14238Catch Ada exceptions, when raised.\n\
9bf7038b 14239Usage: catch exception [ARG] [if CONDITION]\n\
60a90376
JB
14240Without any argument, stop when any Ada exception is raised.\n\
14241If ARG is \"unhandled\" (without the quotes), only stop when the exception\n\
14242being raised does not have a handler (and will therefore lead to the task's\n\
14243termination).\n\
14244Otherwise, the catchpoint only stops when the name of the exception being\n\
9bf7038b
TT
14245raised is the same as ARG.\n\
14246CONDITION is a boolean expression that is evaluated to see whether the\n\
14247exception should cause a stop."),
9ac4176b 14248 catch_ada_exception_command,
71bed2db 14249 catch_ada_completer,
9ac4176b
PA
14250 CATCH_PERMANENT,
14251 CATCH_TEMPORARY);
9f757bf7
XR
14252
14253 add_catch_command ("handlers", _("\
14254Catch Ada exceptions, when handled.\n\
9bf7038b
TT
14255Usage: catch handlers [ARG] [if CONDITION]\n\
14256Without any argument, stop when any Ada exception is handled.\n\
14257With an argument, catch only exceptions with the given name.\n\
14258CONDITION is a boolean expression that is evaluated to see whether the\n\
14259exception should cause a stop."),
9f757bf7 14260 catch_ada_handlers_command,
71bed2db 14261 catch_ada_completer,
9f757bf7
XR
14262 CATCH_PERMANENT,
14263 CATCH_TEMPORARY);
9ac4176b
PA
14264 add_catch_command ("assert", _("\
14265Catch failed Ada assertions, when raised.\n\
9bf7038b
TT
14266Usage: catch assert [if CONDITION]\n\
14267CONDITION is a boolean expression that is evaluated to see whether the\n\
14268exception should cause a stop."),
9ac4176b
PA
14269 catch_assert_command,
14270 NULL,
14271 CATCH_PERMANENT,
14272 CATCH_TEMPORARY);
14273
6c038f32 14274 varsize_limit = 65536;
3fcded8f
JB
14275 add_setshow_uinteger_cmd ("varsize-limit", class_support,
14276 &varsize_limit, _("\
14277Set the maximum number of bytes allowed in a variable-size object."), _("\
14278Show the maximum number of bytes allowed in a variable-size object."), _("\
14279Attempts to access an object whose size is not a compile-time constant\n\
14280and exceeds this limit will cause an error."),
14281 NULL, NULL, &setlist, &showlist);
6c038f32 14282
778865d3
JB
14283 add_info ("exceptions", info_exceptions_command,
14284 _("\
14285List all Ada exception names.\n\
9bf7038b 14286Usage: info exceptions [REGEXP]\n\
778865d3
JB
14287If a regular expression is passed as an argument, only those matching\n\
14288the regular expression are listed."));
14289
0743fc83
TT
14290 add_basic_prefix_cmd ("ada", class_maintenance,
14291 _("Set Ada maintenance-related variables."),
14292 &maint_set_ada_cmdlist, "maintenance set ada ",
14293 0/*allow-unknown*/, &maintenance_set_cmdlist);
c6044dd1 14294
0743fc83
TT
14295 add_show_prefix_cmd ("ada", class_maintenance,
14296 _("Show Ada maintenance-related variables."),
14297 &maint_show_ada_cmdlist, "maintenance show ada ",
14298 0/*allow-unknown*/, &maintenance_show_cmdlist);
c6044dd1
JB
14299
14300 add_setshow_boolean_cmd
14301 ("ignore-descriptive-types", class_maintenance,
14302 &ada_ignore_descriptive_types_p,
14303 _("Set whether descriptive types generated by GNAT should be ignored."),
14304 _("Show whether descriptive types generated by GNAT should be ignored."),
14305 _("\
14306When enabled, the debugger will stop using the DW_AT_GNAT_descriptive_type\n\
14307DWARF attribute."),
14308 NULL, NULL, &maint_set_ada_cmdlist, &maint_show_ada_cmdlist);
14309
459a2e4c
TT
14310 decoded_names_store = htab_create_alloc (256, htab_hash_string, streq_hash,
14311 NULL, xcalloc, xfree);
6b69afc4 14312
3d9434b5 14313 /* The ada-lang observers. */
76727919
TT
14314 gdb::observers::new_objfile.attach (ada_new_objfile_observer);
14315 gdb::observers::free_objfile.attach (ada_free_objfile_observer);
14316 gdb::observers::inferior_exit.attach (ada_inferior_exit);
14f9c5c9 14317}
This page took 2.773651 seconds and 4 git commands to generate.