]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/ada-lang.c
PR 11122
[thirdparty/binutils-gdb.git] / gdb / ada-lang.c
CommitLineData
197e01b6 1/* Ada language support routines for GDB, the GNU debugger. Copyright (C)
10a2c479 2
ae6a3a4c
TJB
3 1992, 1993, 1994, 1997, 1998, 1999, 2000, 2003, 2004, 2005, 2007, 2008,
4 2009 Free Software Foundation, Inc.
14f9c5c9 5
a9762ec7 6 This file is part of GDB.
14f9c5c9 7
a9762ec7
JB
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
14f9c5c9 12
a9762ec7
JB
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
14f9c5c9 17
a9762ec7
JB
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
14f9c5c9 20
96d887e8 21
4c4b4cd2 22#include "defs.h"
14f9c5c9 23#include <stdio.h>
0c30c098 24#include "gdb_string.h"
14f9c5c9
AS
25#include <ctype.h>
26#include <stdarg.h>
27#include "demangle.h"
4c4b4cd2
PH
28#include "gdb_regex.h"
29#include "frame.h"
14f9c5c9
AS
30#include "symtab.h"
31#include "gdbtypes.h"
32#include "gdbcmd.h"
33#include "expression.h"
34#include "parser-defs.h"
35#include "language.h"
36#include "c-lang.h"
37#include "inferior.h"
38#include "symfile.h"
39#include "objfiles.h"
40#include "breakpoint.h"
41#include "gdbcore.h"
4c4b4cd2
PH
42#include "hashtab.h"
43#include "gdb_obstack.h"
14f9c5c9 44#include "ada-lang.h"
4c4b4cd2
PH
45#include "completer.h"
46#include "gdb_stat.h"
47#ifdef UI_OUT
14f9c5c9 48#include "ui-out.h"
4c4b4cd2 49#endif
fe898f56 50#include "block.h"
04714b91 51#include "infcall.h"
de4f826b 52#include "dictionary.h"
60250e8b 53#include "exceptions.h"
f7f9143b
JB
54#include "annotate.h"
55#include "valprint.h"
9bbc9174 56#include "source.h"
0259addd 57#include "observer.h"
2ba95b9b 58#include "vec.h"
14f9c5c9 59
4c4b4cd2
PH
60/* Define whether or not the C operator '/' truncates towards zero for
61 differently signed operands (truncation direction is undefined in C).
62 Copied from valarith.c. */
63
64#ifndef TRUNCATION_TOWARDS_ZERO
65#define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2)
66#endif
67
4c4b4cd2 68static void extract_string (CORE_ADDR addr, char *buf);
14f9c5c9 69
50810684 70static void modify_general_field (struct type *, char *, LONGEST, int, int);
14f9c5c9 71
d2e4a39e 72static struct type *desc_base_type (struct type *);
14f9c5c9 73
d2e4a39e 74static struct type *desc_bounds_type (struct type *);
14f9c5c9 75
d2e4a39e 76static struct value *desc_bounds (struct value *);
14f9c5c9 77
d2e4a39e 78static int fat_pntr_bounds_bitpos (struct type *);
14f9c5c9 79
d2e4a39e 80static int fat_pntr_bounds_bitsize (struct type *);
14f9c5c9 81
556bdfd4 82static struct type *desc_data_target_type (struct type *);
14f9c5c9 83
d2e4a39e 84static struct value *desc_data (struct value *);
14f9c5c9 85
d2e4a39e 86static int fat_pntr_data_bitpos (struct type *);
14f9c5c9 87
d2e4a39e 88static int fat_pntr_data_bitsize (struct type *);
14f9c5c9 89
d2e4a39e 90static struct value *desc_one_bound (struct value *, int, int);
14f9c5c9 91
d2e4a39e 92static int desc_bound_bitpos (struct type *, int, int);
14f9c5c9 93
d2e4a39e 94static int desc_bound_bitsize (struct type *, int, int);
14f9c5c9 95
d2e4a39e 96static struct type *desc_index_type (struct type *, int);
14f9c5c9 97
d2e4a39e 98static int desc_arity (struct type *);
14f9c5c9 99
d2e4a39e 100static int ada_type_match (struct type *, struct type *, int);
14f9c5c9 101
d2e4a39e 102static int ada_args_match (struct symbol *, struct value **, int);
14f9c5c9 103
4a399546
UW
104static struct value *ensure_lval (struct value *,
105 struct gdbarch *, CORE_ADDR *);
14f9c5c9 106
d2e4a39e 107static struct value *make_array_descriptor (struct type *, struct value *,
4a399546 108 struct gdbarch *, CORE_ADDR *);
14f9c5c9 109
4c4b4cd2 110static void ada_add_block_symbols (struct obstack *,
76a01679 111 struct block *, const char *,
2570f2b7 112 domain_enum, struct objfile *, int);
14f9c5c9 113
4c4b4cd2 114static int is_nonfunction (struct ada_symbol_info *, int);
14f9c5c9 115
76a01679 116static void add_defn_to_vec (struct obstack *, struct symbol *,
2570f2b7 117 struct block *);
14f9c5c9 118
4c4b4cd2
PH
119static int num_defns_collected (struct obstack *);
120
121static struct ada_symbol_info *defns_collected (struct obstack *, int);
14f9c5c9 122
d2e4a39e 123static struct partial_symbol *ada_lookup_partial_symbol (struct partial_symtab
76a01679
JB
124 *, const char *, int,
125 domain_enum, int);
14f9c5c9 126
4c4b4cd2 127static struct value *resolve_subexp (struct expression **, int *, int,
76a01679 128 struct type *);
14f9c5c9 129
d2e4a39e 130static void replace_operator_with_call (struct expression **, int, int, int,
4c4b4cd2 131 struct symbol *, struct block *);
14f9c5c9 132
d2e4a39e 133static int possible_user_operator_p (enum exp_opcode, struct value **);
14f9c5c9 134
4c4b4cd2
PH
135static char *ada_op_name (enum exp_opcode);
136
137static const char *ada_decoded_op_name (enum exp_opcode);
14f9c5c9 138
d2e4a39e 139static int numeric_type_p (struct type *);
14f9c5c9 140
d2e4a39e 141static int integer_type_p (struct type *);
14f9c5c9 142
d2e4a39e 143static int scalar_type_p (struct type *);
14f9c5c9 144
d2e4a39e 145static int discrete_type_p (struct type *);
14f9c5c9 146
aeb5907d
JB
147static enum ada_renaming_category parse_old_style_renaming (struct type *,
148 const char **,
149 int *,
150 const char **);
151
152static struct symbol *find_old_style_renaming_symbol (const char *,
153 struct block *);
154
4c4b4cd2 155static struct type *ada_lookup_struct_elt_type (struct type *, char *,
76a01679 156 int, int, int *);
4c4b4cd2 157
d2e4a39e 158static struct value *evaluate_subexp_type (struct expression *, int *);
14f9c5c9 159
d2e4a39e 160static int is_dynamic_field (struct type *, int);
14f9c5c9 161
10a2c479 162static struct type *to_fixed_variant_branch_type (struct type *,
fc1a4b47 163 const gdb_byte *,
4c4b4cd2
PH
164 CORE_ADDR, struct value *);
165
166static struct type *to_fixed_array_type (struct type *, struct value *, int);
14f9c5c9 167
d2e4a39e 168static struct type *to_fixed_range_type (char *, struct value *,
1ce677a4 169 struct type *);
14f9c5c9 170
d2e4a39e 171static struct type *to_static_fixed_type (struct type *);
f192137b 172static struct type *static_unwrap_type (struct type *type);
14f9c5c9 173
d2e4a39e 174static struct value *unwrap_value (struct value *);
14f9c5c9 175
ad82864c 176static struct type *constrained_packed_array_type (struct type *, long *);
14f9c5c9 177
ad82864c 178static struct type *decode_constrained_packed_array_type (struct type *);
14f9c5c9 179
ad82864c
JB
180static long decode_packed_array_bitsize (struct type *);
181
182static struct value *decode_constrained_packed_array (struct value *);
183
184static int ada_is_packed_array_type (struct type *);
185
186static int ada_is_unconstrained_packed_array_type (struct type *);
14f9c5c9 187
d2e4a39e 188static struct value *value_subscript_packed (struct value *, int,
4c4b4cd2 189 struct value **);
14f9c5c9 190
50810684 191static void move_bits (gdb_byte *, int, const gdb_byte *, int, int, int);
52ce6436 192
4c4b4cd2
PH
193static struct value *coerce_unspec_val_to_type (struct value *,
194 struct type *);
14f9c5c9 195
d2e4a39e 196static struct value *get_var_value (char *, char *);
14f9c5c9 197
d2e4a39e 198static int lesseq_defined_than (struct symbol *, struct symbol *);
14f9c5c9 199
d2e4a39e 200static int equiv_types (struct type *, struct type *);
14f9c5c9 201
d2e4a39e 202static int is_name_suffix (const char *);
14f9c5c9 203
d2e4a39e 204static int wild_match (const char *, int, const char *);
14f9c5c9 205
d2e4a39e 206static struct value *ada_coerce_ref (struct value *);
14f9c5c9 207
4c4b4cd2
PH
208static LONGEST pos_atr (struct value *);
209
3cb382c9 210static struct value *value_pos_atr (struct type *, struct value *);
14f9c5c9 211
d2e4a39e 212static struct value *value_val_atr (struct type *, struct value *);
14f9c5c9 213
4c4b4cd2
PH
214static struct symbol *standard_lookup (const char *, const struct block *,
215 domain_enum);
14f9c5c9 216
4c4b4cd2
PH
217static struct value *ada_search_struct_field (char *, struct value *, int,
218 struct type *);
219
220static struct value *ada_value_primitive_field (struct value *, int, int,
221 struct type *);
222
76a01679 223static int find_struct_field (char *, struct type *, int,
52ce6436 224 struct type **, int *, int *, int *, int *);
4c4b4cd2
PH
225
226static struct value *ada_to_fixed_value_create (struct type *, CORE_ADDR,
227 struct value *);
228
229static struct value *ada_to_fixed_value (struct value *);
14f9c5c9 230
4c4b4cd2
PH
231static int ada_resolve_function (struct ada_symbol_info *, int,
232 struct value **, int, const char *,
233 struct type *);
234
235static struct value *ada_coerce_to_simple_array (struct value *);
236
237static int ada_is_direct_array_type (struct type *);
238
72d5681a
PH
239static void ada_language_arch_info (struct gdbarch *,
240 struct language_arch_info *);
714e53ab
PH
241
242static void check_size (const struct type *);
52ce6436
PH
243
244static struct value *ada_index_struct_field (int, struct value *, int,
245 struct type *);
246
247static struct value *assign_aggregate (struct value *, struct value *,
248 struct expression *, int *, enum noside);
249
250static void aggregate_assign_from_choices (struct value *, struct value *,
251 struct expression *,
252 int *, LONGEST *, int *,
253 int, LONGEST, LONGEST);
254
255static void aggregate_assign_positional (struct value *, struct value *,
256 struct expression *,
257 int *, LONGEST *, int *, int,
258 LONGEST, LONGEST);
259
260
261static void aggregate_assign_others (struct value *, struct value *,
262 struct expression *,
263 int *, LONGEST *, int, LONGEST, LONGEST);
264
265
266static void add_component_interval (LONGEST, LONGEST, LONGEST *, int *, int);
267
268
269static struct value *ada_evaluate_subexp (struct type *, struct expression *,
270 int *, enum noside);
271
272static void ada_forward_operator_length (struct expression *, int, int *,
273 int *);
4c4b4cd2
PH
274\f
275
76a01679 276
4c4b4cd2 277/* Maximum-sized dynamic type. */
14f9c5c9
AS
278static unsigned int varsize_limit;
279
4c4b4cd2
PH
280/* FIXME: brobecker/2003-09-17: No longer a const because it is
281 returned by a function that does not return a const char *. */
282static char *ada_completer_word_break_characters =
283#ifdef VMS
284 " \t\n!@#%^&*()+=|~`}{[]\";:?/,-";
285#else
14f9c5c9 286 " \t\n!@#$%^&*()+=|~`}{[]\";:?/,-";
4c4b4cd2 287#endif
14f9c5c9 288
4c4b4cd2 289/* The name of the symbol to use to get the name of the main subprogram. */
76a01679 290static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[]
4c4b4cd2 291 = "__gnat_ada_main_program_name";
14f9c5c9 292
4c4b4cd2
PH
293/* Limit on the number of warnings to raise per expression evaluation. */
294static int warning_limit = 2;
295
296/* Number of warning messages issued; reset to 0 by cleanups after
297 expression evaluation. */
298static int warnings_issued = 0;
299
300static const char *known_runtime_file_name_patterns[] = {
301 ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL
302};
303
304static const char *known_auxiliary_function_name_patterns[] = {
305 ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL
306};
307
308/* Space for allocating results of ada_lookup_symbol_list. */
309static struct obstack symbol_list_obstack;
310
311 /* Utilities */
312
41d27058
JB
313/* Given DECODED_NAME a string holding a symbol name in its
314 decoded form (ie using the Ada dotted notation), returns
315 its unqualified name. */
316
317static const char *
318ada_unqualified_name (const char *decoded_name)
319{
320 const char *result = strrchr (decoded_name, '.');
321
322 if (result != NULL)
323 result++; /* Skip the dot... */
324 else
325 result = decoded_name;
326
327 return result;
328}
329
330/* Return a string starting with '<', followed by STR, and '>'.
331 The result is good until the next call. */
332
333static char *
334add_angle_brackets (const char *str)
335{
336 static char *result = NULL;
337
338 xfree (result);
88c15c34 339 result = xstrprintf ("<%s>", str);
41d27058
JB
340 return result;
341}
96d887e8 342
4c4b4cd2
PH
343static char *
344ada_get_gdb_completer_word_break_characters (void)
345{
346 return ada_completer_word_break_characters;
347}
348
e79af960
JB
349/* Print an array element index using the Ada syntax. */
350
351static void
352ada_print_array_index (struct value *index_value, struct ui_file *stream,
79a45b7d 353 const struct value_print_options *options)
e79af960 354{
79a45b7d 355 LA_VALUE_PRINT (index_value, stream, options);
e79af960
JB
356 fprintf_filtered (stream, " => ");
357}
358
4c4b4cd2
PH
359/* Read the string located at ADDR from the inferior and store the
360 result into BUF. */
361
362static void
14f9c5c9
AS
363extract_string (CORE_ADDR addr, char *buf)
364{
d2e4a39e 365 int char_index = 0;
14f9c5c9 366
4c4b4cd2
PH
367 /* Loop, reading one byte at a time, until we reach the '\000'
368 end-of-string marker. */
d2e4a39e
AS
369 do
370 {
371 target_read_memory (addr + char_index * sizeof (char),
4c4b4cd2 372 buf + char_index * sizeof (char), sizeof (char));
d2e4a39e
AS
373 char_index++;
374 }
375 while (buf[char_index - 1] != '\000');
14f9c5c9
AS
376}
377
f27cf670 378/* Assuming VECT points to an array of *SIZE objects of size
14f9c5c9 379 ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects,
f27cf670 380 updating *SIZE as necessary and returning the (new) array. */
14f9c5c9 381
f27cf670
AS
382void *
383grow_vect (void *vect, size_t *size, size_t min_size, int element_size)
14f9c5c9 384{
d2e4a39e
AS
385 if (*size < min_size)
386 {
387 *size *= 2;
388 if (*size < min_size)
4c4b4cd2 389 *size = min_size;
f27cf670 390 vect = xrealloc (vect, *size * element_size);
d2e4a39e 391 }
f27cf670 392 return vect;
14f9c5c9
AS
393}
394
395/* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing
4c4b4cd2 396 suffix of FIELD_NAME beginning "___". */
14f9c5c9
AS
397
398static int
ebf56fd3 399field_name_match (const char *field_name, const char *target)
14f9c5c9
AS
400{
401 int len = strlen (target);
d2e4a39e 402 return
4c4b4cd2
PH
403 (strncmp (field_name, target, len) == 0
404 && (field_name[len] == '\0'
405 || (strncmp (field_name + len, "___", 3) == 0
76a01679
JB
406 && strcmp (field_name + strlen (field_name) - 6,
407 "___XVN") != 0)));
14f9c5c9
AS
408}
409
410
872c8b51
JB
411/* Assuming TYPE is a TYPE_CODE_STRUCT or a TYPE_CODE_TYPDEF to
412 a TYPE_CODE_STRUCT, find the field whose name matches FIELD_NAME,
413 and return its index. This function also handles fields whose name
414 have ___ suffixes because the compiler sometimes alters their name
415 by adding such a suffix to represent fields with certain constraints.
416 If the field could not be found, return a negative number if
417 MAYBE_MISSING is set. Otherwise raise an error. */
4c4b4cd2
PH
418
419int
420ada_get_field_index (const struct type *type, const char *field_name,
421 int maybe_missing)
422{
423 int fieldno;
872c8b51
JB
424 struct type *struct_type = check_typedef ((struct type *) type);
425
426 for (fieldno = 0; fieldno < TYPE_NFIELDS (struct_type); fieldno++)
427 if (field_name_match (TYPE_FIELD_NAME (struct_type, fieldno), field_name))
4c4b4cd2
PH
428 return fieldno;
429
430 if (!maybe_missing)
323e0a4a 431 error (_("Unable to find field %s in struct %s. Aborting"),
872c8b51 432 field_name, TYPE_NAME (struct_type));
4c4b4cd2
PH
433
434 return -1;
435}
436
437/* The length of the prefix of NAME prior to any "___" suffix. */
14f9c5c9
AS
438
439int
d2e4a39e 440ada_name_prefix_len (const char *name)
14f9c5c9
AS
441{
442 if (name == NULL)
443 return 0;
d2e4a39e 444 else
14f9c5c9 445 {
d2e4a39e 446 const char *p = strstr (name, "___");
14f9c5c9 447 if (p == NULL)
4c4b4cd2 448 return strlen (name);
14f9c5c9 449 else
4c4b4cd2 450 return p - name;
14f9c5c9
AS
451 }
452}
453
4c4b4cd2
PH
454/* Return non-zero if SUFFIX is a suffix of STR.
455 Return zero if STR is null. */
456
14f9c5c9 457static int
d2e4a39e 458is_suffix (const char *str, const char *suffix)
14f9c5c9
AS
459{
460 int len1, len2;
461 if (str == NULL)
462 return 0;
463 len1 = strlen (str);
464 len2 = strlen (suffix);
4c4b4cd2 465 return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0);
14f9c5c9
AS
466}
467
4c4b4cd2
PH
468/* The contents of value VAL, treated as a value of type TYPE. The
469 result is an lval in memory if VAL is. */
14f9c5c9 470
d2e4a39e 471static struct value *
4c4b4cd2 472coerce_unspec_val_to_type (struct value *val, struct type *type)
14f9c5c9 473{
61ee279c 474 type = ada_check_typedef (type);
df407dfe 475 if (value_type (val) == type)
4c4b4cd2 476 return val;
d2e4a39e 477 else
14f9c5c9 478 {
4c4b4cd2
PH
479 struct value *result;
480
481 /* Make sure that the object size is not unreasonable before
482 trying to allocate some memory for it. */
714e53ab 483 check_size (type);
4c4b4cd2
PH
484
485 result = allocate_value (type);
74bcbdf3 486 set_value_component_location (result, val);
9bbda503
AC
487 set_value_bitsize (result, value_bitsize (val));
488 set_value_bitpos (result, value_bitpos (val));
42ae5230 489 set_value_address (result, value_address (val));
d69fe07e 490 if (value_lazy (val)
df407dfe 491 || TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val)))
dfa52d88 492 set_value_lazy (result, 1);
d2e4a39e 493 else
0fd88904 494 memcpy (value_contents_raw (result), value_contents (val),
4c4b4cd2 495 TYPE_LENGTH (type));
14f9c5c9
AS
496 return result;
497 }
498}
499
fc1a4b47
AC
500static const gdb_byte *
501cond_offset_host (const gdb_byte *valaddr, long offset)
14f9c5c9
AS
502{
503 if (valaddr == NULL)
504 return NULL;
505 else
506 return valaddr + offset;
507}
508
509static CORE_ADDR
ebf56fd3 510cond_offset_target (CORE_ADDR address, long offset)
14f9c5c9
AS
511{
512 if (address == 0)
513 return 0;
d2e4a39e 514 else
14f9c5c9
AS
515 return address + offset;
516}
517
4c4b4cd2
PH
518/* Issue a warning (as for the definition of warning in utils.c, but
519 with exactly one argument rather than ...), unless the limit on the
520 number of warnings has passed during the evaluation of the current
521 expression. */
a2249542 522
77109804
AC
523/* FIXME: cagney/2004-10-10: This function is mimicking the behavior
524 provided by "complaint". */
525static void lim_warning (const char *format, ...) ATTR_FORMAT (printf, 1, 2);
526
14f9c5c9 527static void
a2249542 528lim_warning (const char *format, ...)
14f9c5c9 529{
a2249542
MK
530 va_list args;
531 va_start (args, format);
532
4c4b4cd2
PH
533 warnings_issued += 1;
534 if (warnings_issued <= warning_limit)
a2249542
MK
535 vwarning (format, args);
536
537 va_end (args);
4c4b4cd2
PH
538}
539
714e53ab
PH
540/* Issue an error if the size of an object of type T is unreasonable,
541 i.e. if it would be a bad idea to allocate a value of this type in
542 GDB. */
543
544static void
545check_size (const struct type *type)
546{
547 if (TYPE_LENGTH (type) > varsize_limit)
323e0a4a 548 error (_("object size is larger than varsize-limit"));
714e53ab
PH
549}
550
551
c3e5cd34
PH
552/* Note: would have used MAX_OF_TYPE and MIN_OF_TYPE macros from
553 gdbtypes.h, but some of the necessary definitions in that file
554 seem to have gone missing. */
555
556/* Maximum value of a SIZE-byte signed integer type. */
4c4b4cd2 557static LONGEST
c3e5cd34 558max_of_size (int size)
4c4b4cd2 559{
76a01679
JB
560 LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2);
561 return top_bit | (top_bit - 1);
4c4b4cd2
PH
562}
563
c3e5cd34 564/* Minimum value of a SIZE-byte signed integer type. */
4c4b4cd2 565static LONGEST
c3e5cd34 566min_of_size (int size)
4c4b4cd2 567{
c3e5cd34 568 return -max_of_size (size) - 1;
4c4b4cd2
PH
569}
570
c3e5cd34 571/* Maximum value of a SIZE-byte unsigned integer type. */
4c4b4cd2 572static ULONGEST
c3e5cd34 573umax_of_size (int size)
4c4b4cd2 574{
76a01679
JB
575 ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1);
576 return top_bit | (top_bit - 1);
4c4b4cd2
PH
577}
578
c3e5cd34
PH
579/* Maximum value of integral type T, as a signed quantity. */
580static LONGEST
581max_of_type (struct type *t)
4c4b4cd2 582{
c3e5cd34
PH
583 if (TYPE_UNSIGNED (t))
584 return (LONGEST) umax_of_size (TYPE_LENGTH (t));
585 else
586 return max_of_size (TYPE_LENGTH (t));
587}
588
589/* Minimum value of integral type T, as a signed quantity. */
590static LONGEST
591min_of_type (struct type *t)
592{
593 if (TYPE_UNSIGNED (t))
594 return 0;
595 else
596 return min_of_size (TYPE_LENGTH (t));
4c4b4cd2
PH
597}
598
599/* The largest value in the domain of TYPE, a discrete type, as an integer. */
43bbcdc2
PH
600LONGEST
601ada_discrete_type_high_bound (struct type *type)
4c4b4cd2 602{
76a01679 603 switch (TYPE_CODE (type))
4c4b4cd2
PH
604 {
605 case TYPE_CODE_RANGE:
690cc4eb 606 return TYPE_HIGH_BOUND (type);
4c4b4cd2 607 case TYPE_CODE_ENUM:
690cc4eb
PH
608 return TYPE_FIELD_BITPOS (type, TYPE_NFIELDS (type) - 1);
609 case TYPE_CODE_BOOL:
610 return 1;
611 case TYPE_CODE_CHAR:
76a01679 612 case TYPE_CODE_INT:
690cc4eb 613 return max_of_type (type);
4c4b4cd2 614 default:
43bbcdc2 615 error (_("Unexpected type in ada_discrete_type_high_bound."));
4c4b4cd2
PH
616 }
617}
618
619/* The largest value in the domain of TYPE, a discrete type, as an integer. */
43bbcdc2
PH
620LONGEST
621ada_discrete_type_low_bound (struct type *type)
4c4b4cd2 622{
76a01679 623 switch (TYPE_CODE (type))
4c4b4cd2
PH
624 {
625 case TYPE_CODE_RANGE:
690cc4eb 626 return TYPE_LOW_BOUND (type);
4c4b4cd2 627 case TYPE_CODE_ENUM:
690cc4eb
PH
628 return TYPE_FIELD_BITPOS (type, 0);
629 case TYPE_CODE_BOOL:
630 return 0;
631 case TYPE_CODE_CHAR:
76a01679 632 case TYPE_CODE_INT:
690cc4eb 633 return min_of_type (type);
4c4b4cd2 634 default:
43bbcdc2 635 error (_("Unexpected type in ada_discrete_type_low_bound."));
4c4b4cd2
PH
636 }
637}
638
639/* The identity on non-range types. For range types, the underlying
76a01679 640 non-range scalar type. */
4c4b4cd2
PH
641
642static struct type *
643base_type (struct type *type)
644{
645 while (type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE)
646 {
76a01679
JB
647 if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL)
648 return type;
4c4b4cd2
PH
649 type = TYPE_TARGET_TYPE (type);
650 }
651 return type;
14f9c5c9 652}
4c4b4cd2 653\f
76a01679 654
4c4b4cd2 655 /* Language Selection */
14f9c5c9
AS
656
657/* If the main program is in Ada, return language_ada, otherwise return LANG
658 (the main program is in Ada iif the adainit symbol is found).
659
4c4b4cd2 660 MAIN_PST is not used. */
d2e4a39e 661
14f9c5c9 662enum language
d2e4a39e 663ada_update_initial_language (enum language lang,
4c4b4cd2 664 struct partial_symtab *main_pst)
14f9c5c9 665{
d2e4a39e 666 if (lookup_minimal_symbol ("adainit", (const char *) NULL,
4c4b4cd2
PH
667 (struct objfile *) NULL) != NULL)
668 return language_ada;
14f9c5c9
AS
669
670 return lang;
671}
96d887e8
PH
672
673/* If the main procedure is written in Ada, then return its name.
674 The result is good until the next call. Return NULL if the main
675 procedure doesn't appear to be in Ada. */
676
677char *
678ada_main_name (void)
679{
680 struct minimal_symbol *msym;
f9bc20b9 681 static char *main_program_name = NULL;
6c038f32 682
96d887e8
PH
683 /* For Ada, the name of the main procedure is stored in a specific
684 string constant, generated by the binder. Look for that symbol,
685 extract its address, and then read that string. If we didn't find
686 that string, then most probably the main procedure is not written
687 in Ada. */
688 msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL);
689
690 if (msym != NULL)
691 {
f9bc20b9
JB
692 CORE_ADDR main_program_name_addr;
693 int err_code;
694
96d887e8
PH
695 main_program_name_addr = SYMBOL_VALUE_ADDRESS (msym);
696 if (main_program_name_addr == 0)
323e0a4a 697 error (_("Invalid address for Ada main program name."));
96d887e8 698
f9bc20b9
JB
699 xfree (main_program_name);
700 target_read_string (main_program_name_addr, &main_program_name,
701 1024, &err_code);
702
703 if (err_code != 0)
704 return NULL;
96d887e8
PH
705 return main_program_name;
706 }
707
708 /* The main procedure doesn't seem to be in Ada. */
709 return NULL;
710}
14f9c5c9 711\f
4c4b4cd2 712 /* Symbols */
d2e4a39e 713
4c4b4cd2
PH
714/* Table of Ada operators and their GNAT-encoded names. Last entry is pair
715 of NULLs. */
14f9c5c9 716
d2e4a39e
AS
717const struct ada_opname_map ada_opname_table[] = {
718 {"Oadd", "\"+\"", BINOP_ADD},
719 {"Osubtract", "\"-\"", BINOP_SUB},
720 {"Omultiply", "\"*\"", BINOP_MUL},
721 {"Odivide", "\"/\"", BINOP_DIV},
722 {"Omod", "\"mod\"", BINOP_MOD},
723 {"Orem", "\"rem\"", BINOP_REM},
724 {"Oexpon", "\"**\"", BINOP_EXP},
725 {"Olt", "\"<\"", BINOP_LESS},
726 {"Ole", "\"<=\"", BINOP_LEQ},
727 {"Ogt", "\">\"", BINOP_GTR},
728 {"Oge", "\">=\"", BINOP_GEQ},
729 {"Oeq", "\"=\"", BINOP_EQUAL},
730 {"One", "\"/=\"", BINOP_NOTEQUAL},
731 {"Oand", "\"and\"", BINOP_BITWISE_AND},
732 {"Oor", "\"or\"", BINOP_BITWISE_IOR},
733 {"Oxor", "\"xor\"", BINOP_BITWISE_XOR},
734 {"Oconcat", "\"&\"", BINOP_CONCAT},
735 {"Oabs", "\"abs\"", UNOP_ABS},
736 {"Onot", "\"not\"", UNOP_LOGICAL_NOT},
737 {"Oadd", "\"+\"", UNOP_PLUS},
738 {"Osubtract", "\"-\"", UNOP_NEG},
739 {NULL, NULL}
14f9c5c9
AS
740};
741
4c4b4cd2
PH
742/* The "encoded" form of DECODED, according to GNAT conventions.
743 The result is valid until the next call to ada_encode. */
744
14f9c5c9 745char *
4c4b4cd2 746ada_encode (const char *decoded)
14f9c5c9 747{
4c4b4cd2
PH
748 static char *encoding_buffer = NULL;
749 static size_t encoding_buffer_size = 0;
d2e4a39e 750 const char *p;
14f9c5c9 751 int k;
d2e4a39e 752
4c4b4cd2 753 if (decoded == NULL)
14f9c5c9
AS
754 return NULL;
755
4c4b4cd2
PH
756 GROW_VECT (encoding_buffer, encoding_buffer_size,
757 2 * strlen (decoded) + 10);
14f9c5c9
AS
758
759 k = 0;
4c4b4cd2 760 for (p = decoded; *p != '\0'; p += 1)
14f9c5c9 761 {
cdc7bb92 762 if (*p == '.')
4c4b4cd2
PH
763 {
764 encoding_buffer[k] = encoding_buffer[k + 1] = '_';
765 k += 2;
766 }
14f9c5c9 767 else if (*p == '"')
4c4b4cd2
PH
768 {
769 const struct ada_opname_map *mapping;
770
771 for (mapping = ada_opname_table;
1265e4aa
JB
772 mapping->encoded != NULL
773 && strncmp (mapping->decoded, p,
774 strlen (mapping->decoded)) != 0; mapping += 1)
4c4b4cd2
PH
775 ;
776 if (mapping->encoded == NULL)
323e0a4a 777 error (_("invalid Ada operator name: %s"), p);
4c4b4cd2
PH
778 strcpy (encoding_buffer + k, mapping->encoded);
779 k += strlen (mapping->encoded);
780 break;
781 }
d2e4a39e 782 else
4c4b4cd2
PH
783 {
784 encoding_buffer[k] = *p;
785 k += 1;
786 }
14f9c5c9
AS
787 }
788
4c4b4cd2
PH
789 encoding_buffer[k] = '\0';
790 return encoding_buffer;
14f9c5c9
AS
791}
792
793/* Return NAME folded to lower case, or, if surrounded by single
4c4b4cd2
PH
794 quotes, unfolded, but with the quotes stripped away. Result good
795 to next call. */
796
d2e4a39e
AS
797char *
798ada_fold_name (const char *name)
14f9c5c9 799{
d2e4a39e 800 static char *fold_buffer = NULL;
14f9c5c9
AS
801 static size_t fold_buffer_size = 0;
802
803 int len = strlen (name);
d2e4a39e 804 GROW_VECT (fold_buffer, fold_buffer_size, len + 1);
14f9c5c9
AS
805
806 if (name[0] == '\'')
807 {
d2e4a39e
AS
808 strncpy (fold_buffer, name + 1, len - 2);
809 fold_buffer[len - 2] = '\000';
14f9c5c9
AS
810 }
811 else
812 {
813 int i;
814 for (i = 0; i <= len; i += 1)
4c4b4cd2 815 fold_buffer[i] = tolower (name[i]);
14f9c5c9
AS
816 }
817
818 return fold_buffer;
819}
820
529cad9c
PH
821/* Return nonzero if C is either a digit or a lowercase alphabet character. */
822
823static int
824is_lower_alphanum (const char c)
825{
826 return (isdigit (c) || (isalpha (c) && islower (c)));
827}
828
29480c32
JB
829/* Remove either of these suffixes:
830 . .{DIGIT}+
831 . ${DIGIT}+
832 . ___{DIGIT}+
833 . __{DIGIT}+.
834 These are suffixes introduced by the compiler for entities such as
835 nested subprogram for instance, in order to avoid name clashes.
836 They do not serve any purpose for the debugger. */
837
838static void
839ada_remove_trailing_digits (const char *encoded, int *len)
840{
841 if (*len > 1 && isdigit (encoded[*len - 1]))
842 {
843 int i = *len - 2;
844 while (i > 0 && isdigit (encoded[i]))
845 i--;
846 if (i >= 0 && encoded[i] == '.')
847 *len = i;
848 else if (i >= 0 && encoded[i] == '$')
849 *len = i;
850 else if (i >= 2 && strncmp (encoded + i - 2, "___", 3) == 0)
851 *len = i - 2;
852 else if (i >= 1 && strncmp (encoded + i - 1, "__", 2) == 0)
853 *len = i - 1;
854 }
855}
856
857/* Remove the suffix introduced by the compiler for protected object
858 subprograms. */
859
860static void
861ada_remove_po_subprogram_suffix (const char *encoded, int *len)
862{
863 /* Remove trailing N. */
864
865 /* Protected entry subprograms are broken into two
866 separate subprograms: The first one is unprotected, and has
867 a 'N' suffix; the second is the protected version, and has
868 the 'P' suffix. The second calls the first one after handling
869 the protection. Since the P subprograms are internally generated,
870 we leave these names undecoded, giving the user a clue that this
871 entity is internal. */
872
873 if (*len > 1
874 && encoded[*len - 1] == 'N'
875 && (isdigit (encoded[*len - 2]) || islower (encoded[*len - 2])))
876 *len = *len - 1;
877}
878
69fadcdf
JB
879/* Remove trailing X[bn]* suffixes (indicating names in package bodies). */
880
881static void
882ada_remove_Xbn_suffix (const char *encoded, int *len)
883{
884 int i = *len - 1;
885
886 while (i > 0 && (encoded[i] == 'b' || encoded[i] == 'n'))
887 i--;
888
889 if (encoded[i] != 'X')
890 return;
891
892 if (i == 0)
893 return;
894
895 if (isalnum (encoded[i-1]))
896 *len = i;
897}
898
29480c32
JB
899/* If ENCODED follows the GNAT entity encoding conventions, then return
900 the decoded form of ENCODED. Otherwise, return "<%s>" where "%s" is
901 replaced by ENCODED.
14f9c5c9 902
4c4b4cd2 903 The resulting string is valid until the next call of ada_decode.
29480c32 904 If the string is unchanged by decoding, the original string pointer
4c4b4cd2
PH
905 is returned. */
906
907const char *
908ada_decode (const char *encoded)
14f9c5c9
AS
909{
910 int i, j;
911 int len0;
d2e4a39e 912 const char *p;
4c4b4cd2 913 char *decoded;
14f9c5c9 914 int at_start_name;
4c4b4cd2
PH
915 static char *decoding_buffer = NULL;
916 static size_t decoding_buffer_size = 0;
d2e4a39e 917
29480c32
JB
918 /* The name of the Ada main procedure starts with "_ada_".
919 This prefix is not part of the decoded name, so skip this part
920 if we see this prefix. */
4c4b4cd2
PH
921 if (strncmp (encoded, "_ada_", 5) == 0)
922 encoded += 5;
14f9c5c9 923
29480c32
JB
924 /* If the name starts with '_', then it is not a properly encoded
925 name, so do not attempt to decode it. Similarly, if the name
926 starts with '<', the name should not be decoded. */
4c4b4cd2 927 if (encoded[0] == '_' || encoded[0] == '<')
14f9c5c9
AS
928 goto Suppress;
929
4c4b4cd2 930 len0 = strlen (encoded);
4c4b4cd2 931
29480c32
JB
932 ada_remove_trailing_digits (encoded, &len0);
933 ada_remove_po_subprogram_suffix (encoded, &len0);
529cad9c 934
4c4b4cd2
PH
935 /* Remove the ___X.* suffix if present. Do not forget to verify that
936 the suffix is located before the current "end" of ENCODED. We want
937 to avoid re-matching parts of ENCODED that have previously been
938 marked as discarded (by decrementing LEN0). */
939 p = strstr (encoded, "___");
940 if (p != NULL && p - encoded < len0 - 3)
14f9c5c9
AS
941 {
942 if (p[3] == 'X')
4c4b4cd2 943 len0 = p - encoded;
14f9c5c9 944 else
4c4b4cd2 945 goto Suppress;
14f9c5c9 946 }
4c4b4cd2 947
29480c32
JB
948 /* Remove any trailing TKB suffix. It tells us that this symbol
949 is for the body of a task, but that information does not actually
950 appear in the decoded name. */
951
4c4b4cd2 952 if (len0 > 3 && strncmp (encoded + len0 - 3, "TKB", 3) == 0)
14f9c5c9 953 len0 -= 3;
76a01679 954
a10967fa
JB
955 /* Remove any trailing TB suffix. The TB suffix is slightly different
956 from the TKB suffix because it is used for non-anonymous task
957 bodies. */
958
959 if (len0 > 2 && strncmp (encoded + len0 - 2, "TB", 2) == 0)
960 len0 -= 2;
961
29480c32
JB
962 /* Remove trailing "B" suffixes. */
963 /* FIXME: brobecker/2006-04-19: Not sure what this are used for... */
964
4c4b4cd2 965 if (len0 > 1 && strncmp (encoded + len0 - 1, "B", 1) == 0)
14f9c5c9
AS
966 len0 -= 1;
967
4c4b4cd2 968 /* Make decoded big enough for possible expansion by operator name. */
29480c32 969
4c4b4cd2
PH
970 GROW_VECT (decoding_buffer, decoding_buffer_size, 2 * len0 + 1);
971 decoded = decoding_buffer;
14f9c5c9 972
29480c32
JB
973 /* Remove trailing __{digit}+ or trailing ${digit}+. */
974
4c4b4cd2 975 if (len0 > 1 && isdigit (encoded[len0 - 1]))
d2e4a39e 976 {
4c4b4cd2
PH
977 i = len0 - 2;
978 while ((i >= 0 && isdigit (encoded[i]))
979 || (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1])))
980 i -= 1;
981 if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_')
982 len0 = i - 1;
983 else if (encoded[i] == '$')
984 len0 = i;
d2e4a39e 985 }
14f9c5c9 986
29480c32
JB
987 /* The first few characters that are not alphabetic are not part
988 of any encoding we use, so we can copy them over verbatim. */
989
4c4b4cd2
PH
990 for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1)
991 decoded[j] = encoded[i];
14f9c5c9
AS
992
993 at_start_name = 1;
994 while (i < len0)
995 {
29480c32 996 /* Is this a symbol function? */
4c4b4cd2
PH
997 if (at_start_name && encoded[i] == 'O')
998 {
999 int k;
1000 for (k = 0; ada_opname_table[k].encoded != NULL; k += 1)
1001 {
1002 int op_len = strlen (ada_opname_table[k].encoded);
06d5cf63
JB
1003 if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1,
1004 op_len - 1) == 0)
1005 && !isalnum (encoded[i + op_len]))
4c4b4cd2
PH
1006 {
1007 strcpy (decoded + j, ada_opname_table[k].decoded);
1008 at_start_name = 0;
1009 i += op_len;
1010 j += strlen (ada_opname_table[k].decoded);
1011 break;
1012 }
1013 }
1014 if (ada_opname_table[k].encoded != NULL)
1015 continue;
1016 }
14f9c5c9
AS
1017 at_start_name = 0;
1018
529cad9c
PH
1019 /* Replace "TK__" with "__", which will eventually be translated
1020 into "." (just below). */
1021
4c4b4cd2
PH
1022 if (i < len0 - 4 && strncmp (encoded + i, "TK__", 4) == 0)
1023 i += 2;
529cad9c 1024
29480c32
JB
1025 /* Replace "__B_{DIGITS}+__" sequences by "__", which will eventually
1026 be translated into "." (just below). These are internal names
1027 generated for anonymous blocks inside which our symbol is nested. */
1028
1029 if (len0 - i > 5 && encoded [i] == '_' && encoded [i+1] == '_'
1030 && encoded [i+2] == 'B' && encoded [i+3] == '_'
1031 && isdigit (encoded [i+4]))
1032 {
1033 int k = i + 5;
1034
1035 while (k < len0 && isdigit (encoded[k]))
1036 k++; /* Skip any extra digit. */
1037
1038 /* Double-check that the "__B_{DIGITS}+" sequence we found
1039 is indeed followed by "__". */
1040 if (len0 - k > 2 && encoded [k] == '_' && encoded [k+1] == '_')
1041 i = k;
1042 }
1043
529cad9c
PH
1044 /* Remove _E{DIGITS}+[sb] */
1045
1046 /* Just as for protected object subprograms, there are 2 categories
1047 of subprograms created by the compiler for each entry. The first
1048 one implements the actual entry code, and has a suffix following
1049 the convention above; the second one implements the barrier and
1050 uses the same convention as above, except that the 'E' is replaced
1051 by a 'B'.
1052
1053 Just as above, we do not decode the name of barrier functions
1054 to give the user a clue that the code he is debugging has been
1055 internally generated. */
1056
1057 if (len0 - i > 3 && encoded [i] == '_' && encoded[i+1] == 'E'
1058 && isdigit (encoded[i+2]))
1059 {
1060 int k = i + 3;
1061
1062 while (k < len0 && isdigit (encoded[k]))
1063 k++;
1064
1065 if (k < len0
1066 && (encoded[k] == 'b' || encoded[k] == 's'))
1067 {
1068 k++;
1069 /* Just as an extra precaution, make sure that if this
1070 suffix is followed by anything else, it is a '_'.
1071 Otherwise, we matched this sequence by accident. */
1072 if (k == len0
1073 || (k < len0 && encoded[k] == '_'))
1074 i = k;
1075 }
1076 }
1077
1078 /* Remove trailing "N" in [a-z0-9]+N__. The N is added by
1079 the GNAT front-end in protected object subprograms. */
1080
1081 if (i < len0 + 3
1082 && encoded[i] == 'N' && encoded[i+1] == '_' && encoded[i+2] == '_')
1083 {
1084 /* Backtrack a bit up until we reach either the begining of
1085 the encoded name, or "__". Make sure that we only find
1086 digits or lowercase characters. */
1087 const char *ptr = encoded + i - 1;
1088
1089 while (ptr >= encoded && is_lower_alphanum (ptr[0]))
1090 ptr--;
1091 if (ptr < encoded
1092 || (ptr > encoded && ptr[0] == '_' && ptr[-1] == '_'))
1093 i++;
1094 }
1095
4c4b4cd2
PH
1096 if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1]))
1097 {
29480c32
JB
1098 /* This is a X[bn]* sequence not separated from the previous
1099 part of the name with a non-alpha-numeric character (in other
1100 words, immediately following an alpha-numeric character), then
1101 verify that it is placed at the end of the encoded name. If
1102 not, then the encoding is not valid and we should abort the
1103 decoding. Otherwise, just skip it, it is used in body-nested
1104 package names. */
4c4b4cd2
PH
1105 do
1106 i += 1;
1107 while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n'));
1108 if (i < len0)
1109 goto Suppress;
1110 }
cdc7bb92 1111 else if (i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_')
4c4b4cd2 1112 {
29480c32 1113 /* Replace '__' by '.'. */
4c4b4cd2
PH
1114 decoded[j] = '.';
1115 at_start_name = 1;
1116 i += 2;
1117 j += 1;
1118 }
14f9c5c9 1119 else
4c4b4cd2 1120 {
29480c32
JB
1121 /* It's a character part of the decoded name, so just copy it
1122 over. */
4c4b4cd2
PH
1123 decoded[j] = encoded[i];
1124 i += 1;
1125 j += 1;
1126 }
14f9c5c9 1127 }
4c4b4cd2 1128 decoded[j] = '\000';
14f9c5c9 1129
29480c32
JB
1130 /* Decoded names should never contain any uppercase character.
1131 Double-check this, and abort the decoding if we find one. */
1132
4c4b4cd2
PH
1133 for (i = 0; decoded[i] != '\0'; i += 1)
1134 if (isupper (decoded[i]) || decoded[i] == ' ')
14f9c5c9
AS
1135 goto Suppress;
1136
4c4b4cd2
PH
1137 if (strcmp (decoded, encoded) == 0)
1138 return encoded;
1139 else
1140 return decoded;
14f9c5c9
AS
1141
1142Suppress:
4c4b4cd2
PH
1143 GROW_VECT (decoding_buffer, decoding_buffer_size, strlen (encoded) + 3);
1144 decoded = decoding_buffer;
1145 if (encoded[0] == '<')
1146 strcpy (decoded, encoded);
14f9c5c9 1147 else
88c15c34 1148 xsnprintf (decoded, decoding_buffer_size, "<%s>", encoded);
4c4b4cd2
PH
1149 return decoded;
1150
1151}
1152
1153/* Table for keeping permanent unique copies of decoded names. Once
1154 allocated, names in this table are never released. While this is a
1155 storage leak, it should not be significant unless there are massive
1156 changes in the set of decoded names in successive versions of a
1157 symbol table loaded during a single session. */
1158static struct htab *decoded_names_store;
1159
1160/* Returns the decoded name of GSYMBOL, as for ada_decode, caching it
1161 in the language-specific part of GSYMBOL, if it has not been
1162 previously computed. Tries to save the decoded name in the same
1163 obstack as GSYMBOL, if possible, and otherwise on the heap (so that,
1164 in any case, the decoded symbol has a lifetime at least that of
1165 GSYMBOL).
1166 The GSYMBOL parameter is "mutable" in the C++ sense: logically
1167 const, but nevertheless modified to a semantically equivalent form
1168 when a decoded name is cached in it.
76a01679 1169*/
4c4b4cd2 1170
76a01679
JB
1171char *
1172ada_decode_symbol (const struct general_symbol_info *gsymbol)
4c4b4cd2 1173{
76a01679 1174 char **resultp =
4c4b4cd2
PH
1175 (char **) &gsymbol->language_specific.cplus_specific.demangled_name;
1176 if (*resultp == NULL)
1177 {
1178 const char *decoded = ada_decode (gsymbol->name);
714835d5 1179 if (gsymbol->obj_section != NULL)
76a01679 1180 {
714835d5
UW
1181 struct objfile *objf = gsymbol->obj_section->objfile;
1182 *resultp = obsavestring (decoded, strlen (decoded),
1183 &objf->objfile_obstack);
76a01679 1184 }
4c4b4cd2 1185 /* Sometimes, we can't find a corresponding objfile, in which
76a01679
JB
1186 case, we put the result on the heap. Since we only decode
1187 when needed, we hope this usually does not cause a
1188 significant memory leak (FIXME). */
4c4b4cd2 1189 if (*resultp == NULL)
76a01679
JB
1190 {
1191 char **slot = (char **) htab_find_slot (decoded_names_store,
1192 decoded, INSERT);
1193 if (*slot == NULL)
1194 *slot = xstrdup (decoded);
1195 *resultp = *slot;
1196 }
4c4b4cd2 1197 }
14f9c5c9 1198
4c4b4cd2
PH
1199 return *resultp;
1200}
76a01679 1201
2c0b251b 1202static char *
76a01679 1203ada_la_decode (const char *encoded, int options)
4c4b4cd2
PH
1204{
1205 return xstrdup (ada_decode (encoded));
14f9c5c9
AS
1206}
1207
1208/* Returns non-zero iff SYM_NAME matches NAME, ignoring any trailing
4c4b4cd2
PH
1209 suffixes that encode debugging information or leading _ada_ on
1210 SYM_NAME (see is_name_suffix commentary for the debugging
1211 information that is ignored). If WILD, then NAME need only match a
1212 suffix of SYM_NAME minus the same suffixes. Also returns 0 if
1213 either argument is NULL. */
14f9c5c9 1214
2c0b251b 1215static int
d2e4a39e 1216ada_match_name (const char *sym_name, const char *name, int wild)
14f9c5c9
AS
1217{
1218 if (sym_name == NULL || name == NULL)
1219 return 0;
1220 else if (wild)
1221 return wild_match (name, strlen (name), sym_name);
d2e4a39e
AS
1222 else
1223 {
1224 int len_name = strlen (name);
4c4b4cd2
PH
1225 return (strncmp (sym_name, name, len_name) == 0
1226 && is_name_suffix (sym_name + len_name))
1227 || (strncmp (sym_name, "_ada_", 5) == 0
1228 && strncmp (sym_name + 5, name, len_name) == 0
1229 && is_name_suffix (sym_name + len_name + 5));
d2e4a39e 1230 }
14f9c5c9 1231}
14f9c5c9 1232\f
d2e4a39e 1233
4c4b4cd2 1234 /* Arrays */
14f9c5c9 1235
4c4b4cd2 1236/* Names of MAX_ADA_DIMENS bounds in P_BOUNDS fields of array descriptors. */
14f9c5c9 1237
d2e4a39e
AS
1238static char *bound_name[] = {
1239 "LB0", "UB0", "LB1", "UB1", "LB2", "UB2", "LB3", "UB3",
14f9c5c9
AS
1240 "LB4", "UB4", "LB5", "UB5", "LB6", "UB6", "LB7", "UB7"
1241};
1242
1243/* Maximum number of array dimensions we are prepared to handle. */
1244
4c4b4cd2 1245#define MAX_ADA_DIMENS (sizeof(bound_name) / (2*sizeof(char *)))
14f9c5c9 1246
4c4b4cd2 1247/* Like modify_field, but allows bitpos > wordlength. */
14f9c5c9
AS
1248
1249static void
50810684
UW
1250modify_general_field (struct type *type, char *addr,
1251 LONGEST fieldval, int bitpos, int bitsize)
14f9c5c9 1252{
50810684 1253 modify_field (type, addr + bitpos / 8, fieldval, bitpos % 8, bitsize);
14f9c5c9
AS
1254}
1255
1256
4c4b4cd2
PH
1257/* The desc_* routines return primitive portions of array descriptors
1258 (fat pointers). */
14f9c5c9
AS
1259
1260/* The descriptor or array type, if any, indicated by TYPE; removes
4c4b4cd2
PH
1261 level of indirection, if needed. */
1262
d2e4a39e
AS
1263static struct type *
1264desc_base_type (struct type *type)
14f9c5c9
AS
1265{
1266 if (type == NULL)
1267 return NULL;
61ee279c 1268 type = ada_check_typedef (type);
1265e4aa
JB
1269 if (type != NULL
1270 && (TYPE_CODE (type) == TYPE_CODE_PTR
1271 || TYPE_CODE (type) == TYPE_CODE_REF))
61ee279c 1272 return ada_check_typedef (TYPE_TARGET_TYPE (type));
14f9c5c9
AS
1273 else
1274 return type;
1275}
1276
4c4b4cd2
PH
1277/* True iff TYPE indicates a "thin" array pointer type. */
1278
14f9c5c9 1279static int
d2e4a39e 1280is_thin_pntr (struct type *type)
14f9c5c9 1281{
d2e4a39e 1282 return
14f9c5c9
AS
1283 is_suffix (ada_type_name (desc_base_type (type)), "___XUT")
1284 || is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE");
1285}
1286
4c4b4cd2
PH
1287/* The descriptor type for thin pointer type TYPE. */
1288
d2e4a39e
AS
1289static struct type *
1290thin_descriptor_type (struct type *type)
14f9c5c9 1291{
d2e4a39e 1292 struct type *base_type = desc_base_type (type);
14f9c5c9
AS
1293 if (base_type == NULL)
1294 return NULL;
1295 if (is_suffix (ada_type_name (base_type), "___XVE"))
1296 return base_type;
d2e4a39e 1297 else
14f9c5c9 1298 {
d2e4a39e 1299 struct type *alt_type = ada_find_parallel_type (base_type, "___XVE");
14f9c5c9 1300 if (alt_type == NULL)
4c4b4cd2 1301 return base_type;
14f9c5c9 1302 else
4c4b4cd2 1303 return alt_type;
14f9c5c9
AS
1304 }
1305}
1306
4c4b4cd2
PH
1307/* A pointer to the array data for thin-pointer value VAL. */
1308
d2e4a39e
AS
1309static struct value *
1310thin_data_pntr (struct value *val)
14f9c5c9 1311{
df407dfe 1312 struct type *type = value_type (val);
556bdfd4
UW
1313 struct type *data_type = desc_data_target_type (thin_descriptor_type (type));
1314 data_type = lookup_pointer_type (data_type);
1315
14f9c5c9 1316 if (TYPE_CODE (type) == TYPE_CODE_PTR)
556bdfd4 1317 return value_cast (data_type, value_copy (val));
d2e4a39e 1318 else
42ae5230 1319 return value_from_longest (data_type, value_address (val));
14f9c5c9
AS
1320}
1321
4c4b4cd2
PH
1322/* True iff TYPE indicates a "thick" array pointer type. */
1323
14f9c5c9 1324static int
d2e4a39e 1325is_thick_pntr (struct type *type)
14f9c5c9
AS
1326{
1327 type = desc_base_type (type);
1328 return (type != NULL && TYPE_CODE (type) == TYPE_CODE_STRUCT
4c4b4cd2 1329 && lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL);
14f9c5c9
AS
1330}
1331
4c4b4cd2
PH
1332/* If TYPE is the type of an array descriptor (fat or thin pointer) or a
1333 pointer to one, the type of its bounds data; otherwise, NULL. */
76a01679 1334
d2e4a39e
AS
1335static struct type *
1336desc_bounds_type (struct type *type)
14f9c5c9 1337{
d2e4a39e 1338 struct type *r;
14f9c5c9
AS
1339
1340 type = desc_base_type (type);
1341
1342 if (type == NULL)
1343 return NULL;
1344 else if (is_thin_pntr (type))
1345 {
1346 type = thin_descriptor_type (type);
1347 if (type == NULL)
4c4b4cd2 1348 return NULL;
14f9c5c9
AS
1349 r = lookup_struct_elt_type (type, "BOUNDS", 1);
1350 if (r != NULL)
61ee279c 1351 return ada_check_typedef (r);
14f9c5c9
AS
1352 }
1353 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
1354 {
1355 r = lookup_struct_elt_type (type, "P_BOUNDS", 1);
1356 if (r != NULL)
61ee279c 1357 return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r)));
14f9c5c9
AS
1358 }
1359 return NULL;
1360}
1361
1362/* If ARR is an array descriptor (fat or thin pointer), or pointer to
4c4b4cd2
PH
1363 one, a pointer to its bounds data. Otherwise NULL. */
1364
d2e4a39e
AS
1365static struct value *
1366desc_bounds (struct value *arr)
14f9c5c9 1367{
df407dfe 1368 struct type *type = ada_check_typedef (value_type (arr));
d2e4a39e 1369 if (is_thin_pntr (type))
14f9c5c9 1370 {
d2e4a39e 1371 struct type *bounds_type =
4c4b4cd2 1372 desc_bounds_type (thin_descriptor_type (type));
14f9c5c9
AS
1373 LONGEST addr;
1374
4cdfadb1 1375 if (bounds_type == NULL)
323e0a4a 1376 error (_("Bad GNAT array descriptor"));
14f9c5c9
AS
1377
1378 /* NOTE: The following calculation is not really kosher, but
d2e4a39e 1379 since desc_type is an XVE-encoded type (and shouldn't be),
4c4b4cd2 1380 the correct calculation is a real pain. FIXME (and fix GCC). */
14f9c5c9 1381 if (TYPE_CODE (type) == TYPE_CODE_PTR)
4c4b4cd2 1382 addr = value_as_long (arr);
d2e4a39e 1383 else
42ae5230 1384 addr = value_address (arr);
14f9c5c9 1385
d2e4a39e 1386 return
4c4b4cd2
PH
1387 value_from_longest (lookup_pointer_type (bounds_type),
1388 addr - TYPE_LENGTH (bounds_type));
14f9c5c9
AS
1389 }
1390
1391 else if (is_thick_pntr (type))
d2e4a39e 1392 return value_struct_elt (&arr, NULL, "P_BOUNDS", NULL,
323e0a4a 1393 _("Bad GNAT array descriptor"));
14f9c5c9
AS
1394 else
1395 return NULL;
1396}
1397
4c4b4cd2
PH
1398/* If TYPE is the type of an array-descriptor (fat pointer), the bit
1399 position of the field containing the address of the bounds data. */
1400
14f9c5c9 1401static int
d2e4a39e 1402fat_pntr_bounds_bitpos (struct type *type)
14f9c5c9
AS
1403{
1404 return TYPE_FIELD_BITPOS (desc_base_type (type), 1);
1405}
1406
1407/* If TYPE is the type of an array-descriptor (fat pointer), the bit
4c4b4cd2
PH
1408 size of the field containing the address of the bounds data. */
1409
14f9c5c9 1410static int
d2e4a39e 1411fat_pntr_bounds_bitsize (struct type *type)
14f9c5c9
AS
1412{
1413 type = desc_base_type (type);
1414
d2e4a39e 1415 if (TYPE_FIELD_BITSIZE (type, 1) > 0)
14f9c5c9
AS
1416 return TYPE_FIELD_BITSIZE (type, 1);
1417 else
61ee279c 1418 return 8 * TYPE_LENGTH (ada_check_typedef (TYPE_FIELD_TYPE (type, 1)));
14f9c5c9
AS
1419}
1420
4c4b4cd2 1421/* If TYPE is the type of an array descriptor (fat or thin pointer) or a
556bdfd4
UW
1422 pointer to one, the type of its array data (a array-with-no-bounds type);
1423 otherwise, NULL. Use ada_type_of_array to get an array type with bounds
1424 data. */
4c4b4cd2 1425
d2e4a39e 1426static struct type *
556bdfd4 1427desc_data_target_type (struct type *type)
14f9c5c9
AS
1428{
1429 type = desc_base_type (type);
1430
4c4b4cd2 1431 /* NOTE: The following is bogus; see comment in desc_bounds. */
14f9c5c9 1432 if (is_thin_pntr (type))
556bdfd4 1433 return desc_base_type (TYPE_FIELD_TYPE (thin_descriptor_type (type), 1));
14f9c5c9 1434 else if (is_thick_pntr (type))
556bdfd4
UW
1435 {
1436 struct type *data_type = lookup_struct_elt_type (type, "P_ARRAY", 1);
1437
1438 if (data_type
1439 && TYPE_CODE (ada_check_typedef (data_type)) == TYPE_CODE_PTR)
1440 return TYPE_TARGET_TYPE (data_type);
1441 }
1442
1443 return NULL;
14f9c5c9
AS
1444}
1445
1446/* If ARR is an array descriptor (fat or thin pointer), a pointer to
1447 its array data. */
4c4b4cd2 1448
d2e4a39e
AS
1449static struct value *
1450desc_data (struct value *arr)
14f9c5c9 1451{
df407dfe 1452 struct type *type = value_type (arr);
14f9c5c9
AS
1453 if (is_thin_pntr (type))
1454 return thin_data_pntr (arr);
1455 else if (is_thick_pntr (type))
d2e4a39e 1456 return value_struct_elt (&arr, NULL, "P_ARRAY", NULL,
323e0a4a 1457 _("Bad GNAT array descriptor"));
14f9c5c9
AS
1458 else
1459 return NULL;
1460}
1461
1462
1463/* If TYPE is the type of an array-descriptor (fat pointer), the bit
4c4b4cd2
PH
1464 position of the field containing the address of the data. */
1465
14f9c5c9 1466static int
d2e4a39e 1467fat_pntr_data_bitpos (struct type *type)
14f9c5c9
AS
1468{
1469 return TYPE_FIELD_BITPOS (desc_base_type (type), 0);
1470}
1471
1472/* If TYPE is the type of an array-descriptor (fat pointer), the bit
4c4b4cd2
PH
1473 size of the field containing the address of the data. */
1474
14f9c5c9 1475static int
d2e4a39e 1476fat_pntr_data_bitsize (struct type *type)
14f9c5c9
AS
1477{
1478 type = desc_base_type (type);
1479
1480 if (TYPE_FIELD_BITSIZE (type, 0) > 0)
1481 return TYPE_FIELD_BITSIZE (type, 0);
d2e4a39e 1482 else
14f9c5c9
AS
1483 return TARGET_CHAR_BIT * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0));
1484}
1485
4c4b4cd2 1486/* If BOUNDS is an array-bounds structure (or pointer to one), return
14f9c5c9 1487 the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
4c4b4cd2
PH
1488 bound, if WHICH is 1. The first bound is I=1. */
1489
d2e4a39e
AS
1490static struct value *
1491desc_one_bound (struct value *bounds, int i, int which)
14f9c5c9 1492{
d2e4a39e 1493 return value_struct_elt (&bounds, NULL, bound_name[2 * i + which - 2], NULL,
323e0a4a 1494 _("Bad GNAT array descriptor bounds"));
14f9c5c9
AS
1495}
1496
1497/* If BOUNDS is an array-bounds structure type, return the bit position
1498 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
4c4b4cd2
PH
1499 bound, if WHICH is 1. The first bound is I=1. */
1500
14f9c5c9 1501static int
d2e4a39e 1502desc_bound_bitpos (struct type *type, int i, int which)
14f9c5c9 1503{
d2e4a39e 1504 return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2);
14f9c5c9
AS
1505}
1506
1507/* If BOUNDS is an array-bounds structure type, return the bit field size
1508 of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
4c4b4cd2
PH
1509 bound, if WHICH is 1. The first bound is I=1. */
1510
76a01679 1511static int
d2e4a39e 1512desc_bound_bitsize (struct type *type, int i, int which)
14f9c5c9
AS
1513{
1514 type = desc_base_type (type);
1515
d2e4a39e
AS
1516 if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0)
1517 return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2);
1518 else
1519 return 8 * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 2 * i + which - 2));
14f9c5c9
AS
1520}
1521
1522/* If TYPE is the type of an array-bounds structure, the type of its
4c4b4cd2
PH
1523 Ith bound (numbering from 1). Otherwise, NULL. */
1524
d2e4a39e
AS
1525static struct type *
1526desc_index_type (struct type *type, int i)
14f9c5c9
AS
1527{
1528 type = desc_base_type (type);
1529
1530 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
d2e4a39e
AS
1531 return lookup_struct_elt_type (type, bound_name[2 * i - 2], 1);
1532 else
14f9c5c9
AS
1533 return NULL;
1534}
1535
4c4b4cd2
PH
1536/* The number of index positions in the array-bounds type TYPE.
1537 Return 0 if TYPE is NULL. */
1538
14f9c5c9 1539static int
d2e4a39e 1540desc_arity (struct type *type)
14f9c5c9
AS
1541{
1542 type = desc_base_type (type);
1543
1544 if (type != NULL)
1545 return TYPE_NFIELDS (type) / 2;
1546 return 0;
1547}
1548
4c4b4cd2
PH
1549/* Non-zero iff TYPE is a simple array type (not a pointer to one) or
1550 an array descriptor type (representing an unconstrained array
1551 type). */
1552
76a01679
JB
1553static int
1554ada_is_direct_array_type (struct type *type)
4c4b4cd2
PH
1555{
1556 if (type == NULL)
1557 return 0;
61ee279c 1558 type = ada_check_typedef (type);
4c4b4cd2 1559 return (TYPE_CODE (type) == TYPE_CODE_ARRAY
76a01679 1560 || ada_is_array_descriptor_type (type));
4c4b4cd2
PH
1561}
1562
52ce6436
PH
1563/* Non-zero iff TYPE represents any kind of array in Ada, or a pointer
1564 * to one. */
1565
2c0b251b 1566static int
52ce6436
PH
1567ada_is_array_type (struct type *type)
1568{
1569 while (type != NULL
1570 && (TYPE_CODE (type) == TYPE_CODE_PTR
1571 || TYPE_CODE (type) == TYPE_CODE_REF))
1572 type = TYPE_TARGET_TYPE (type);
1573 return ada_is_direct_array_type (type);
1574}
1575
4c4b4cd2 1576/* Non-zero iff TYPE is a simple array type or pointer to one. */
14f9c5c9 1577
14f9c5c9 1578int
4c4b4cd2 1579ada_is_simple_array_type (struct type *type)
14f9c5c9
AS
1580{
1581 if (type == NULL)
1582 return 0;
61ee279c 1583 type = ada_check_typedef (type);
14f9c5c9 1584 return (TYPE_CODE (type) == TYPE_CODE_ARRAY
4c4b4cd2
PH
1585 || (TYPE_CODE (type) == TYPE_CODE_PTR
1586 && TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_ARRAY));
14f9c5c9
AS
1587}
1588
4c4b4cd2
PH
1589/* Non-zero iff TYPE belongs to a GNAT array descriptor. */
1590
14f9c5c9 1591int
4c4b4cd2 1592ada_is_array_descriptor_type (struct type *type)
14f9c5c9 1593{
556bdfd4 1594 struct type *data_type = desc_data_target_type (type);
14f9c5c9
AS
1595
1596 if (type == NULL)
1597 return 0;
61ee279c 1598 type = ada_check_typedef (type);
556bdfd4
UW
1599 return (data_type != NULL
1600 && TYPE_CODE (data_type) == TYPE_CODE_ARRAY
1601 && desc_arity (desc_bounds_type (type)) > 0);
14f9c5c9
AS
1602}
1603
1604/* Non-zero iff type is a partially mal-formed GNAT array
4c4b4cd2 1605 descriptor. FIXME: This is to compensate for some problems with
14f9c5c9 1606 debugging output from GNAT. Re-examine periodically to see if it
4c4b4cd2
PH
1607 is still needed. */
1608
14f9c5c9 1609int
ebf56fd3 1610ada_is_bogus_array_descriptor (struct type *type)
14f9c5c9 1611{
d2e4a39e 1612 return
14f9c5c9
AS
1613 type != NULL
1614 && TYPE_CODE (type) == TYPE_CODE_STRUCT
1615 && (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL
4c4b4cd2
PH
1616 || lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL)
1617 && !ada_is_array_descriptor_type (type);
14f9c5c9
AS
1618}
1619
1620
4c4b4cd2 1621/* If ARR has a record type in the form of a standard GNAT array descriptor,
14f9c5c9 1622 (fat pointer) returns the type of the array data described---specifically,
4c4b4cd2 1623 a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled
14f9c5c9 1624 in from the descriptor; otherwise, they are left unspecified. If
4c4b4cd2
PH
1625 the ARR denotes a null array descriptor and BOUNDS is non-zero,
1626 returns NULL. The result is simply the type of ARR if ARR is not
14f9c5c9 1627 a descriptor. */
d2e4a39e
AS
1628struct type *
1629ada_type_of_array (struct value *arr, int bounds)
14f9c5c9 1630{
ad82864c
JB
1631 if (ada_is_constrained_packed_array_type (value_type (arr)))
1632 return decode_constrained_packed_array_type (value_type (arr));
14f9c5c9 1633
df407dfe
AC
1634 if (!ada_is_array_descriptor_type (value_type (arr)))
1635 return value_type (arr);
d2e4a39e
AS
1636
1637 if (!bounds)
ad82864c
JB
1638 {
1639 struct type *array_type =
1640 ada_check_typedef (desc_data_target_type (value_type (arr)));
1641
1642 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1643 TYPE_FIELD_BITSIZE (array_type, 0) =
1644 decode_packed_array_bitsize (value_type (arr));
1645
1646 return array_type;
1647 }
14f9c5c9
AS
1648 else
1649 {
d2e4a39e 1650 struct type *elt_type;
14f9c5c9 1651 int arity;
d2e4a39e 1652 struct value *descriptor;
14f9c5c9 1653
df407dfe
AC
1654 elt_type = ada_array_element_type (value_type (arr), -1);
1655 arity = ada_array_arity (value_type (arr));
14f9c5c9 1656
d2e4a39e 1657 if (elt_type == NULL || arity == 0)
df407dfe 1658 return ada_check_typedef (value_type (arr));
14f9c5c9
AS
1659
1660 descriptor = desc_bounds (arr);
d2e4a39e 1661 if (value_as_long (descriptor) == 0)
4c4b4cd2 1662 return NULL;
d2e4a39e 1663 while (arity > 0)
4c4b4cd2 1664 {
e9bb382b
UW
1665 struct type *range_type = alloc_type_copy (value_type (arr));
1666 struct type *array_type = alloc_type_copy (value_type (arr));
4c4b4cd2
PH
1667 struct value *low = desc_one_bound (descriptor, arity, 0);
1668 struct value *high = desc_one_bound (descriptor, arity, 1);
1669 arity -= 1;
1670
df407dfe 1671 create_range_type (range_type, value_type (low),
529cad9c
PH
1672 longest_to_int (value_as_long (low)),
1673 longest_to_int (value_as_long (high)));
4c4b4cd2 1674 elt_type = create_array_type (array_type, elt_type, range_type);
ad82864c
JB
1675
1676 if (ada_is_unconstrained_packed_array_type (value_type (arr)))
1677 TYPE_FIELD_BITSIZE (elt_type, 0) =
1678 decode_packed_array_bitsize (value_type (arr));
4c4b4cd2 1679 }
14f9c5c9
AS
1680
1681 return lookup_pointer_type (elt_type);
1682 }
1683}
1684
1685/* If ARR does not represent an array, returns ARR unchanged.
4c4b4cd2
PH
1686 Otherwise, returns either a standard GDB array with bounds set
1687 appropriately or, if ARR is a non-null fat pointer, a pointer to a standard
1688 GDB array. Returns NULL if ARR is a null fat pointer. */
1689
d2e4a39e
AS
1690struct value *
1691ada_coerce_to_simple_array_ptr (struct value *arr)
14f9c5c9 1692{
df407dfe 1693 if (ada_is_array_descriptor_type (value_type (arr)))
14f9c5c9 1694 {
d2e4a39e 1695 struct type *arrType = ada_type_of_array (arr, 1);
14f9c5c9 1696 if (arrType == NULL)
4c4b4cd2 1697 return NULL;
14f9c5c9
AS
1698 return value_cast (arrType, value_copy (desc_data (arr)));
1699 }
ad82864c
JB
1700 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1701 return decode_constrained_packed_array (arr);
14f9c5c9
AS
1702 else
1703 return arr;
1704}
1705
1706/* If ARR does not represent an array, returns ARR unchanged.
1707 Otherwise, returns a standard GDB array describing ARR (which may
4c4b4cd2
PH
1708 be ARR itself if it already is in the proper form). */
1709
1710static struct value *
d2e4a39e 1711ada_coerce_to_simple_array (struct value *arr)
14f9c5c9 1712{
df407dfe 1713 if (ada_is_array_descriptor_type (value_type (arr)))
14f9c5c9 1714 {
d2e4a39e 1715 struct value *arrVal = ada_coerce_to_simple_array_ptr (arr);
14f9c5c9 1716 if (arrVal == NULL)
323e0a4a 1717 error (_("Bounds unavailable for null array pointer."));
529cad9c 1718 check_size (TYPE_TARGET_TYPE (value_type (arrVal)));
14f9c5c9
AS
1719 return value_ind (arrVal);
1720 }
ad82864c
JB
1721 else if (ada_is_constrained_packed_array_type (value_type (arr)))
1722 return decode_constrained_packed_array (arr);
d2e4a39e 1723 else
14f9c5c9
AS
1724 return arr;
1725}
1726
1727/* If TYPE represents a GNAT array type, return it translated to an
1728 ordinary GDB array type (possibly with BITSIZE fields indicating
4c4b4cd2
PH
1729 packing). For other types, is the identity. */
1730
d2e4a39e
AS
1731struct type *
1732ada_coerce_to_simple_array_type (struct type *type)
14f9c5c9 1733{
ad82864c
JB
1734 if (ada_is_constrained_packed_array_type (type))
1735 return decode_constrained_packed_array_type (type);
17280b9f
UW
1736
1737 if (ada_is_array_descriptor_type (type))
556bdfd4 1738 return ada_check_typedef (desc_data_target_type (type));
17280b9f
UW
1739
1740 return type;
14f9c5c9
AS
1741}
1742
4c4b4cd2
PH
1743/* Non-zero iff TYPE represents a standard GNAT packed-array type. */
1744
ad82864c
JB
1745static int
1746ada_is_packed_array_type (struct type *type)
14f9c5c9
AS
1747{
1748 if (type == NULL)
1749 return 0;
4c4b4cd2 1750 type = desc_base_type (type);
61ee279c 1751 type = ada_check_typedef (type);
d2e4a39e 1752 return
14f9c5c9
AS
1753 ada_type_name (type) != NULL
1754 && strstr (ada_type_name (type), "___XP") != NULL;
1755}
1756
ad82864c
JB
1757/* Non-zero iff TYPE represents a standard GNAT constrained
1758 packed-array type. */
1759
1760int
1761ada_is_constrained_packed_array_type (struct type *type)
1762{
1763 return ada_is_packed_array_type (type)
1764 && !ada_is_array_descriptor_type (type);
1765}
1766
1767/* Non-zero iff TYPE represents an array descriptor for a
1768 unconstrained packed-array type. */
1769
1770static int
1771ada_is_unconstrained_packed_array_type (struct type *type)
1772{
1773 return ada_is_packed_array_type (type)
1774 && ada_is_array_descriptor_type (type);
1775}
1776
1777/* Given that TYPE encodes a packed array type (constrained or unconstrained),
1778 return the size of its elements in bits. */
1779
1780static long
1781decode_packed_array_bitsize (struct type *type)
1782{
1783 char *raw_name = ada_type_name (ada_check_typedef (type));
1784 char *tail;
1785 long bits;
1786
1787 if (!raw_name)
1788 raw_name = ada_type_name (desc_base_type (type));
1789
1790 if (!raw_name)
1791 return 0;
1792
1793 tail = strstr (raw_name, "___XP");
1794
1795 if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1)
1796 {
1797 lim_warning
1798 (_("could not understand bit size information on packed array"));
1799 return 0;
1800 }
1801
1802 return bits;
1803}
1804
14f9c5c9
AS
1805/* Given that TYPE is a standard GDB array type with all bounds filled
1806 in, and that the element size of its ultimate scalar constituents
1807 (that is, either its elements, or, if it is an array of arrays, its
1808 elements' elements, etc.) is *ELT_BITS, return an identical type,
1809 but with the bit sizes of its elements (and those of any
1810 constituent arrays) recorded in the BITSIZE components of its
4c4b4cd2
PH
1811 TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size
1812 in bits. */
1813
d2e4a39e 1814static struct type *
ad82864c 1815constrained_packed_array_type (struct type *type, long *elt_bits)
14f9c5c9 1816{
d2e4a39e
AS
1817 struct type *new_elt_type;
1818 struct type *new_type;
14f9c5c9
AS
1819 LONGEST low_bound, high_bound;
1820
61ee279c 1821 type = ada_check_typedef (type);
14f9c5c9
AS
1822 if (TYPE_CODE (type) != TYPE_CODE_ARRAY)
1823 return type;
1824
e9bb382b 1825 new_type = alloc_type_copy (type);
ad82864c
JB
1826 new_elt_type =
1827 constrained_packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)),
1828 elt_bits);
262452ec 1829 create_array_type (new_type, new_elt_type, TYPE_INDEX_TYPE (type));
14f9c5c9
AS
1830 TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits;
1831 TYPE_NAME (new_type) = ada_type_name (type);
1832
262452ec 1833 if (get_discrete_bounds (TYPE_INDEX_TYPE (type),
4c4b4cd2 1834 &low_bound, &high_bound) < 0)
14f9c5c9
AS
1835 low_bound = high_bound = 0;
1836 if (high_bound < low_bound)
1837 *elt_bits = TYPE_LENGTH (new_type) = 0;
d2e4a39e 1838 else
14f9c5c9
AS
1839 {
1840 *elt_bits *= (high_bound - low_bound + 1);
d2e4a39e 1841 TYPE_LENGTH (new_type) =
4c4b4cd2 1842 (*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
14f9c5c9
AS
1843 }
1844
876cecd0 1845 TYPE_FIXED_INSTANCE (new_type) = 1;
14f9c5c9
AS
1846 return new_type;
1847}
1848
ad82864c
JB
1849/* The array type encoded by TYPE, where
1850 ada_is_constrained_packed_array_type (TYPE). */
4c4b4cd2 1851
d2e4a39e 1852static struct type *
ad82864c 1853decode_constrained_packed_array_type (struct type *type)
d2e4a39e 1854{
4c4b4cd2 1855 struct symbol *sym;
d2e4a39e 1856 struct block **blocks;
727e3d2e
JB
1857 char *raw_name = ada_type_name (ada_check_typedef (type));
1858 char *name;
1859 char *tail;
d2e4a39e 1860 struct type *shadow_type;
14f9c5c9
AS
1861 long bits;
1862 int i, n;
1863
727e3d2e
JB
1864 if (!raw_name)
1865 raw_name = ada_type_name (desc_base_type (type));
1866
1867 if (!raw_name)
1868 return NULL;
1869
1870 name = (char *) alloca (strlen (raw_name) + 1);
1871 tail = strstr (raw_name, "___XP");
4c4b4cd2
PH
1872 type = desc_base_type (type);
1873
14f9c5c9
AS
1874 memcpy (name, raw_name, tail - raw_name);
1875 name[tail - raw_name] = '\000';
1876
4c4b4cd2
PH
1877 sym = standard_lookup (name, get_selected_block (0), VAR_DOMAIN);
1878 if (sym == NULL || SYMBOL_TYPE (sym) == NULL)
14f9c5c9 1879 {
323e0a4a 1880 lim_warning (_("could not find bounds information on packed array"));
14f9c5c9
AS
1881 return NULL;
1882 }
4c4b4cd2 1883 shadow_type = SYMBOL_TYPE (sym);
cb249c71 1884 CHECK_TYPEDEF (shadow_type);
14f9c5c9
AS
1885
1886 if (TYPE_CODE (shadow_type) != TYPE_CODE_ARRAY)
1887 {
323e0a4a 1888 lim_warning (_("could not understand bounds information on packed array"));
14f9c5c9
AS
1889 return NULL;
1890 }
d2e4a39e 1891
ad82864c
JB
1892 bits = decode_packed_array_bitsize (type);
1893 return constrained_packed_array_type (shadow_type, &bits);
14f9c5c9
AS
1894}
1895
ad82864c
JB
1896/* Given that ARR is a struct value *indicating a GNAT constrained packed
1897 array, returns a simple array that denotes that array. Its type is a
14f9c5c9
AS
1898 standard GDB array type except that the BITSIZEs of the array
1899 target types are set to the number of bits in each element, and the
4c4b4cd2 1900 type length is set appropriately. */
14f9c5c9 1901
d2e4a39e 1902static struct value *
ad82864c 1903decode_constrained_packed_array (struct value *arr)
14f9c5c9 1904{
4c4b4cd2 1905 struct type *type;
14f9c5c9 1906
4c4b4cd2 1907 arr = ada_coerce_ref (arr);
284614f0
JB
1908
1909 /* If our value is a pointer, then dererence it. Make sure that
1910 this operation does not cause the target type to be fixed, as
1911 this would indirectly cause this array to be decoded. The rest
1912 of the routine assumes that the array hasn't been decoded yet,
1913 so we use the basic "value_ind" routine to perform the dereferencing,
1914 as opposed to using "ada_value_ind". */
df407dfe 1915 if (TYPE_CODE (value_type (arr)) == TYPE_CODE_PTR)
284614f0 1916 arr = value_ind (arr);
4c4b4cd2 1917
ad82864c 1918 type = decode_constrained_packed_array_type (value_type (arr));
14f9c5c9
AS
1919 if (type == NULL)
1920 {
323e0a4a 1921 error (_("can't unpack array"));
14f9c5c9
AS
1922 return NULL;
1923 }
61ee279c 1924
50810684 1925 if (gdbarch_bits_big_endian (get_type_arch (value_type (arr)))
32c9a795 1926 && ada_is_modular_type (value_type (arr)))
61ee279c
PH
1927 {
1928 /* This is a (right-justified) modular type representing a packed
1929 array with no wrapper. In order to interpret the value through
1930 the (left-justified) packed array type we just built, we must
1931 first left-justify it. */
1932 int bit_size, bit_pos;
1933 ULONGEST mod;
1934
df407dfe 1935 mod = ada_modulus (value_type (arr)) - 1;
61ee279c
PH
1936 bit_size = 0;
1937 while (mod > 0)
1938 {
1939 bit_size += 1;
1940 mod >>= 1;
1941 }
df407dfe 1942 bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size;
61ee279c
PH
1943 arr = ada_value_primitive_packed_val (arr, NULL,
1944 bit_pos / HOST_CHAR_BIT,
1945 bit_pos % HOST_CHAR_BIT,
1946 bit_size,
1947 type);
1948 }
1949
4c4b4cd2 1950 return coerce_unspec_val_to_type (arr, type);
14f9c5c9
AS
1951}
1952
1953
1954/* The value of the element of packed array ARR at the ARITY indices
4c4b4cd2 1955 given in IND. ARR must be a simple array. */
14f9c5c9 1956
d2e4a39e
AS
1957static struct value *
1958value_subscript_packed (struct value *arr, int arity, struct value **ind)
14f9c5c9
AS
1959{
1960 int i;
1961 int bits, elt_off, bit_off;
1962 long elt_total_bit_offset;
d2e4a39e
AS
1963 struct type *elt_type;
1964 struct value *v;
14f9c5c9
AS
1965
1966 bits = 0;
1967 elt_total_bit_offset = 0;
df407dfe 1968 elt_type = ada_check_typedef (value_type (arr));
d2e4a39e 1969 for (i = 0; i < arity; i += 1)
14f9c5c9 1970 {
d2e4a39e 1971 if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY
4c4b4cd2
PH
1972 || TYPE_FIELD_BITSIZE (elt_type, 0) == 0)
1973 error
323e0a4a 1974 (_("attempt to do packed indexing of something other than a packed array"));
14f9c5c9 1975 else
4c4b4cd2
PH
1976 {
1977 struct type *range_type = TYPE_INDEX_TYPE (elt_type);
1978 LONGEST lowerbound, upperbound;
1979 LONGEST idx;
1980
1981 if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
1982 {
323e0a4a 1983 lim_warning (_("don't know bounds of array"));
4c4b4cd2
PH
1984 lowerbound = upperbound = 0;
1985 }
1986
3cb382c9 1987 idx = pos_atr (ind[i]);
4c4b4cd2 1988 if (idx < lowerbound || idx > upperbound)
323e0a4a 1989 lim_warning (_("packed array index %ld out of bounds"), (long) idx);
4c4b4cd2
PH
1990 bits = TYPE_FIELD_BITSIZE (elt_type, 0);
1991 elt_total_bit_offset += (idx - lowerbound) * bits;
61ee279c 1992 elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type));
4c4b4cd2 1993 }
14f9c5c9
AS
1994 }
1995 elt_off = elt_total_bit_offset / HOST_CHAR_BIT;
1996 bit_off = elt_total_bit_offset % HOST_CHAR_BIT;
d2e4a39e
AS
1997
1998 v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off,
4c4b4cd2 1999 bits, elt_type);
14f9c5c9
AS
2000 return v;
2001}
2002
4c4b4cd2 2003/* Non-zero iff TYPE includes negative integer values. */
14f9c5c9
AS
2004
2005static int
d2e4a39e 2006has_negatives (struct type *type)
14f9c5c9 2007{
d2e4a39e
AS
2008 switch (TYPE_CODE (type))
2009 {
2010 default:
2011 return 0;
2012 case TYPE_CODE_INT:
2013 return !TYPE_UNSIGNED (type);
2014 case TYPE_CODE_RANGE:
2015 return TYPE_LOW_BOUND (type) < 0;
2016 }
14f9c5c9 2017}
d2e4a39e 2018
14f9c5c9
AS
2019
2020/* Create a new value of type TYPE from the contents of OBJ starting
2021 at byte OFFSET, and bit offset BIT_OFFSET within that byte,
2022 proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then
4c4b4cd2
PH
2023 assigning through the result will set the field fetched from.
2024 VALADDR is ignored unless OBJ is NULL, in which case,
2025 VALADDR+OFFSET must address the start of storage containing the
2026 packed value. The value returned in this case is never an lval.
2027 Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */
14f9c5c9 2028
d2e4a39e 2029struct value *
fc1a4b47 2030ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
a2bd3dcd 2031 long offset, int bit_offset, int bit_size,
4c4b4cd2 2032 struct type *type)
14f9c5c9 2033{
d2e4a39e 2034 struct value *v;
4c4b4cd2
PH
2035 int src, /* Index into the source area */
2036 targ, /* Index into the target area */
2037 srcBitsLeft, /* Number of source bits left to move */
2038 nsrc, ntarg, /* Number of source and target bytes */
2039 unusedLS, /* Number of bits in next significant
2040 byte of source that are unused */
2041 accumSize; /* Number of meaningful bits in accum */
2042 unsigned char *bytes; /* First byte containing data to unpack */
d2e4a39e 2043 unsigned char *unpacked;
4c4b4cd2 2044 unsigned long accum; /* Staging area for bits being transferred */
14f9c5c9
AS
2045 unsigned char sign;
2046 int len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
4c4b4cd2
PH
2047 /* Transmit bytes from least to most significant; delta is the direction
2048 the indices move. */
50810684 2049 int delta = gdbarch_bits_big_endian (get_type_arch (type)) ? -1 : 1;
14f9c5c9 2050
61ee279c 2051 type = ada_check_typedef (type);
14f9c5c9
AS
2052
2053 if (obj == NULL)
2054 {
2055 v = allocate_value (type);
d2e4a39e 2056 bytes = (unsigned char *) (valaddr + offset);
14f9c5c9 2057 }
9214ee5f 2058 else if (VALUE_LVAL (obj) == lval_memory && value_lazy (obj))
14f9c5c9
AS
2059 {
2060 v = value_at (type,
42ae5230 2061 value_address (obj) + offset);
d2e4a39e 2062 bytes = (unsigned char *) alloca (len);
42ae5230 2063 read_memory (value_address (v), bytes, len);
14f9c5c9 2064 }
d2e4a39e 2065 else
14f9c5c9
AS
2066 {
2067 v = allocate_value (type);
0fd88904 2068 bytes = (unsigned char *) value_contents (obj) + offset;
14f9c5c9 2069 }
d2e4a39e
AS
2070
2071 if (obj != NULL)
14f9c5c9 2072 {
42ae5230 2073 CORE_ADDR new_addr;
74bcbdf3 2074 set_value_component_location (v, obj);
42ae5230 2075 new_addr = value_address (obj) + offset;
9bbda503
AC
2076 set_value_bitpos (v, bit_offset + value_bitpos (obj));
2077 set_value_bitsize (v, bit_size);
df407dfe 2078 if (value_bitpos (v) >= HOST_CHAR_BIT)
4c4b4cd2 2079 {
42ae5230 2080 ++new_addr;
9bbda503 2081 set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT);
4c4b4cd2 2082 }
42ae5230 2083 set_value_address (v, new_addr);
14f9c5c9
AS
2084 }
2085 else
9bbda503 2086 set_value_bitsize (v, bit_size);
0fd88904 2087 unpacked = (unsigned char *) value_contents (v);
14f9c5c9
AS
2088
2089 srcBitsLeft = bit_size;
2090 nsrc = len;
2091 ntarg = TYPE_LENGTH (type);
2092 sign = 0;
2093 if (bit_size == 0)
2094 {
2095 memset (unpacked, 0, TYPE_LENGTH (type));
2096 return v;
2097 }
50810684 2098 else if (gdbarch_bits_big_endian (get_type_arch (type)))
14f9c5c9 2099 {
d2e4a39e 2100 src = len - 1;
1265e4aa
JB
2101 if (has_negatives (type)
2102 && ((bytes[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1))))
4c4b4cd2 2103 sign = ~0;
d2e4a39e
AS
2104
2105 unusedLS =
4c4b4cd2
PH
2106 (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT)
2107 % HOST_CHAR_BIT;
14f9c5c9
AS
2108
2109 switch (TYPE_CODE (type))
4c4b4cd2
PH
2110 {
2111 case TYPE_CODE_ARRAY:
2112 case TYPE_CODE_UNION:
2113 case TYPE_CODE_STRUCT:
2114 /* Non-scalar values must be aligned at a byte boundary... */
2115 accumSize =
2116 (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT;
2117 /* ... And are placed at the beginning (most-significant) bytes
2118 of the target. */
529cad9c 2119 targ = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT - 1;
0056e4d5 2120 ntarg = targ + 1;
4c4b4cd2
PH
2121 break;
2122 default:
2123 accumSize = 0;
2124 targ = TYPE_LENGTH (type) - 1;
2125 break;
2126 }
14f9c5c9 2127 }
d2e4a39e 2128 else
14f9c5c9
AS
2129 {
2130 int sign_bit_offset = (bit_size + bit_offset - 1) % 8;
2131
2132 src = targ = 0;
2133 unusedLS = bit_offset;
2134 accumSize = 0;
2135
d2e4a39e 2136 if (has_negatives (type) && (bytes[len - 1] & (1 << sign_bit_offset)))
4c4b4cd2 2137 sign = ~0;
14f9c5c9 2138 }
d2e4a39e 2139
14f9c5c9
AS
2140 accum = 0;
2141 while (nsrc > 0)
2142 {
2143 /* Mask for removing bits of the next source byte that are not
4c4b4cd2 2144 part of the value. */
d2e4a39e 2145 unsigned int unusedMSMask =
4c4b4cd2
PH
2146 (1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) -
2147 1;
2148 /* Sign-extend bits for this byte. */
14f9c5c9 2149 unsigned int signMask = sign & ~unusedMSMask;
d2e4a39e 2150 accum |=
4c4b4cd2 2151 (((bytes[src] >> unusedLS) & unusedMSMask) | signMask) << accumSize;
14f9c5c9 2152 accumSize += HOST_CHAR_BIT - unusedLS;
d2e4a39e 2153 if (accumSize >= HOST_CHAR_BIT)
4c4b4cd2
PH
2154 {
2155 unpacked[targ] = accum & ~(~0L << HOST_CHAR_BIT);
2156 accumSize -= HOST_CHAR_BIT;
2157 accum >>= HOST_CHAR_BIT;
2158 ntarg -= 1;
2159 targ += delta;
2160 }
14f9c5c9
AS
2161 srcBitsLeft -= HOST_CHAR_BIT - unusedLS;
2162 unusedLS = 0;
2163 nsrc -= 1;
2164 src += delta;
2165 }
2166 while (ntarg > 0)
2167 {
2168 accum |= sign << accumSize;
2169 unpacked[targ] = accum & ~(~0L << HOST_CHAR_BIT);
2170 accumSize -= HOST_CHAR_BIT;
2171 accum >>= HOST_CHAR_BIT;
2172 ntarg -= 1;
2173 targ += delta;
2174 }
2175
2176 return v;
2177}
d2e4a39e 2178
14f9c5c9
AS
2179/* Move N bits from SOURCE, starting at bit offset SRC_OFFSET to
2180 TARGET, starting at bit offset TARG_OFFSET. SOURCE and TARGET must
4c4b4cd2 2181 not overlap. */
14f9c5c9 2182static void
fc1a4b47 2183move_bits (gdb_byte *target, int targ_offset, const gdb_byte *source,
50810684 2184 int src_offset, int n, int bits_big_endian_p)
14f9c5c9
AS
2185{
2186 unsigned int accum, mask;
2187 int accum_bits, chunk_size;
2188
2189 target += targ_offset / HOST_CHAR_BIT;
2190 targ_offset %= HOST_CHAR_BIT;
2191 source += src_offset / HOST_CHAR_BIT;
2192 src_offset %= HOST_CHAR_BIT;
50810684 2193 if (bits_big_endian_p)
14f9c5c9
AS
2194 {
2195 accum = (unsigned char) *source;
2196 source += 1;
2197 accum_bits = HOST_CHAR_BIT - src_offset;
2198
d2e4a39e 2199 while (n > 0)
4c4b4cd2
PH
2200 {
2201 int unused_right;
2202 accum = (accum << HOST_CHAR_BIT) + (unsigned char) *source;
2203 accum_bits += HOST_CHAR_BIT;
2204 source += 1;
2205 chunk_size = HOST_CHAR_BIT - targ_offset;
2206 if (chunk_size > n)
2207 chunk_size = n;
2208 unused_right = HOST_CHAR_BIT - (chunk_size + targ_offset);
2209 mask = ((1 << chunk_size) - 1) << unused_right;
2210 *target =
2211 (*target & ~mask)
2212 | ((accum >> (accum_bits - chunk_size - unused_right)) & mask);
2213 n -= chunk_size;
2214 accum_bits -= chunk_size;
2215 target += 1;
2216 targ_offset = 0;
2217 }
14f9c5c9
AS
2218 }
2219 else
2220 {
2221 accum = (unsigned char) *source >> src_offset;
2222 source += 1;
2223 accum_bits = HOST_CHAR_BIT - src_offset;
2224
d2e4a39e 2225 while (n > 0)
4c4b4cd2
PH
2226 {
2227 accum = accum + ((unsigned char) *source << accum_bits);
2228 accum_bits += HOST_CHAR_BIT;
2229 source += 1;
2230 chunk_size = HOST_CHAR_BIT - targ_offset;
2231 if (chunk_size > n)
2232 chunk_size = n;
2233 mask = ((1 << chunk_size) - 1) << targ_offset;
2234 *target = (*target & ~mask) | ((accum << targ_offset) & mask);
2235 n -= chunk_size;
2236 accum_bits -= chunk_size;
2237 accum >>= chunk_size;
2238 target += 1;
2239 targ_offset = 0;
2240 }
14f9c5c9
AS
2241 }
2242}
2243
14f9c5c9
AS
2244/* Store the contents of FROMVAL into the location of TOVAL.
2245 Return a new value with the location of TOVAL and contents of
2246 FROMVAL. Handles assignment into packed fields that have
4c4b4cd2 2247 floating-point or non-scalar types. */
14f9c5c9 2248
d2e4a39e
AS
2249static struct value *
2250ada_value_assign (struct value *toval, struct value *fromval)
14f9c5c9 2251{
df407dfe
AC
2252 struct type *type = value_type (toval);
2253 int bits = value_bitsize (toval);
14f9c5c9 2254
52ce6436
PH
2255 toval = ada_coerce_ref (toval);
2256 fromval = ada_coerce_ref (fromval);
2257
2258 if (ada_is_direct_array_type (value_type (toval)))
2259 toval = ada_coerce_to_simple_array (toval);
2260 if (ada_is_direct_array_type (value_type (fromval)))
2261 fromval = ada_coerce_to_simple_array (fromval);
2262
88e3b34b 2263 if (!deprecated_value_modifiable (toval))
323e0a4a 2264 error (_("Left operand of assignment is not a modifiable lvalue."));
14f9c5c9 2265
d2e4a39e 2266 if (VALUE_LVAL (toval) == lval_memory
14f9c5c9 2267 && bits > 0
d2e4a39e 2268 && (TYPE_CODE (type) == TYPE_CODE_FLT
4c4b4cd2 2269 || TYPE_CODE (type) == TYPE_CODE_STRUCT))
14f9c5c9 2270 {
df407dfe
AC
2271 int len = (value_bitpos (toval)
2272 + bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
aced2898 2273 int from_size;
d2e4a39e
AS
2274 char *buffer = (char *) alloca (len);
2275 struct value *val;
42ae5230 2276 CORE_ADDR to_addr = value_address (toval);
14f9c5c9
AS
2277
2278 if (TYPE_CODE (type) == TYPE_CODE_FLT)
4c4b4cd2 2279 fromval = value_cast (type, fromval);
14f9c5c9 2280
52ce6436 2281 read_memory (to_addr, buffer, len);
aced2898
PH
2282 from_size = value_bitsize (fromval);
2283 if (from_size == 0)
2284 from_size = TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT;
50810684 2285 if (gdbarch_bits_big_endian (get_type_arch (type)))
df407dfe 2286 move_bits (buffer, value_bitpos (toval),
50810684 2287 value_contents (fromval), from_size - bits, bits, 1);
14f9c5c9 2288 else
50810684
UW
2289 move_bits (buffer, value_bitpos (toval),
2290 value_contents (fromval), 0, bits, 0);
52ce6436 2291 write_memory (to_addr, buffer, len);
8cebebb9
PP
2292 observer_notify_memory_changed (to_addr, len, buffer);
2293
14f9c5c9 2294 val = value_copy (toval);
0fd88904 2295 memcpy (value_contents_raw (val), value_contents (fromval),
4c4b4cd2 2296 TYPE_LENGTH (type));
04624583 2297 deprecated_set_value_type (val, type);
d2e4a39e 2298
14f9c5c9
AS
2299 return val;
2300 }
2301
2302 return value_assign (toval, fromval);
2303}
2304
2305
52ce6436
PH
2306/* Given that COMPONENT is a memory lvalue that is part of the lvalue
2307 * CONTAINER, assign the contents of VAL to COMPONENTS's place in
2308 * CONTAINER. Modifies the VALUE_CONTENTS of CONTAINER only, not
2309 * COMPONENT, and not the inferior's memory. The current contents
2310 * of COMPONENT are ignored. */
2311static void
2312value_assign_to_component (struct value *container, struct value *component,
2313 struct value *val)
2314{
2315 LONGEST offset_in_container =
42ae5230 2316 (LONGEST) (value_address (component) - value_address (container));
52ce6436
PH
2317 int bit_offset_in_container =
2318 value_bitpos (component) - value_bitpos (container);
2319 int bits;
2320
2321 val = value_cast (value_type (component), val);
2322
2323 if (value_bitsize (component) == 0)
2324 bits = TARGET_CHAR_BIT * TYPE_LENGTH (value_type (component));
2325 else
2326 bits = value_bitsize (component);
2327
50810684 2328 if (gdbarch_bits_big_endian (get_type_arch (value_type (container))))
52ce6436
PH
2329 move_bits (value_contents_writeable (container) + offset_in_container,
2330 value_bitpos (container) + bit_offset_in_container,
2331 value_contents (val),
2332 TYPE_LENGTH (value_type (component)) * TARGET_CHAR_BIT - bits,
50810684 2333 bits, 1);
52ce6436
PH
2334 else
2335 move_bits (value_contents_writeable (container) + offset_in_container,
2336 value_bitpos (container) + bit_offset_in_container,
50810684 2337 value_contents (val), 0, bits, 0);
52ce6436
PH
2338}
2339
4c4b4cd2
PH
2340/* The value of the element of array ARR at the ARITY indices given in IND.
2341 ARR may be either a simple array, GNAT array descriptor, or pointer
14f9c5c9
AS
2342 thereto. */
2343
d2e4a39e
AS
2344struct value *
2345ada_value_subscript (struct value *arr, int arity, struct value **ind)
14f9c5c9
AS
2346{
2347 int k;
d2e4a39e
AS
2348 struct value *elt;
2349 struct type *elt_type;
14f9c5c9
AS
2350
2351 elt = ada_coerce_to_simple_array (arr);
2352
df407dfe 2353 elt_type = ada_check_typedef (value_type (elt));
d2e4a39e 2354 if (TYPE_CODE (elt_type) == TYPE_CODE_ARRAY
14f9c5c9
AS
2355 && TYPE_FIELD_BITSIZE (elt_type, 0) > 0)
2356 return value_subscript_packed (elt, arity, ind);
2357
2358 for (k = 0; k < arity; k += 1)
2359 {
2360 if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY)
323e0a4a 2361 error (_("too many subscripts (%d expected)"), k);
2497b498 2362 elt = value_subscript (elt, pos_atr (ind[k]));
14f9c5c9
AS
2363 }
2364 return elt;
2365}
2366
2367/* Assuming ARR is a pointer to a standard GDB array of type TYPE, the
2368 value of the element of *ARR at the ARITY indices given in
4c4b4cd2 2369 IND. Does not read the entire array into memory. */
14f9c5c9 2370
2c0b251b 2371static struct value *
d2e4a39e 2372ada_value_ptr_subscript (struct value *arr, struct type *type, int arity,
4c4b4cd2 2373 struct value **ind)
14f9c5c9
AS
2374{
2375 int k;
2376
2377 for (k = 0; k < arity; k += 1)
2378 {
2379 LONGEST lwb, upb;
14f9c5c9
AS
2380
2381 if (TYPE_CODE (type) != TYPE_CODE_ARRAY)
323e0a4a 2382 error (_("too many subscripts (%d expected)"), k);
d2e4a39e 2383 arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
4c4b4cd2 2384 value_copy (arr));
14f9c5c9 2385 get_discrete_bounds (TYPE_INDEX_TYPE (type), &lwb, &upb);
2497b498 2386 arr = value_ptradd (arr, pos_atr (ind[k]) - lwb);
14f9c5c9
AS
2387 type = TYPE_TARGET_TYPE (type);
2388 }
2389
2390 return value_ind (arr);
2391}
2392
0b5d8877 2393/* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the
f5938064
JG
2394 actual type of ARRAY_PTR is ignored), returns the Ada slice of HIGH-LOW+1
2395 elements starting at index LOW. The lower bound of this array is LOW, as
2396 per Ada rules. */
0b5d8877 2397static struct value *
f5938064
JG
2398ada_value_slice_from_ptr (struct value *array_ptr, struct type *type,
2399 int low, int high)
0b5d8877 2400{
6c038f32 2401 CORE_ADDR base = value_as_address (array_ptr)
43bbcdc2 2402 + ((low - ada_discrete_type_low_bound (TYPE_INDEX_TYPE (type)))
0b5d8877 2403 * TYPE_LENGTH (TYPE_TARGET_TYPE (type)));
6c038f32
PH
2404 struct type *index_type =
2405 create_range_type (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (type)),
0b5d8877 2406 low, high);
6c038f32 2407 struct type *slice_type =
0b5d8877 2408 create_array_type (NULL, TYPE_TARGET_TYPE (type), index_type);
f5938064 2409 return value_at_lazy (slice_type, base);
0b5d8877
PH
2410}
2411
2412
2413static struct value *
2414ada_value_slice (struct value *array, int low, int high)
2415{
df407dfe 2416 struct type *type = value_type (array);
6c038f32 2417 struct type *index_type =
0b5d8877 2418 create_range_type (NULL, TYPE_INDEX_TYPE (type), low, high);
6c038f32 2419 struct type *slice_type =
0b5d8877 2420 create_array_type (NULL, TYPE_TARGET_TYPE (type), index_type);
6c038f32 2421 return value_cast (slice_type, value_slice (array, low, high - low + 1));
0b5d8877
PH
2422}
2423
14f9c5c9
AS
2424/* If type is a record type in the form of a standard GNAT array
2425 descriptor, returns the number of dimensions for type. If arr is a
2426 simple array, returns the number of "array of"s that prefix its
4c4b4cd2 2427 type designation. Otherwise, returns 0. */
14f9c5c9
AS
2428
2429int
d2e4a39e 2430ada_array_arity (struct type *type)
14f9c5c9
AS
2431{
2432 int arity;
2433
2434 if (type == NULL)
2435 return 0;
2436
2437 type = desc_base_type (type);
2438
2439 arity = 0;
d2e4a39e 2440 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
14f9c5c9 2441 return desc_arity (desc_bounds_type (type));
d2e4a39e
AS
2442 else
2443 while (TYPE_CODE (type) == TYPE_CODE_ARRAY)
14f9c5c9 2444 {
4c4b4cd2 2445 arity += 1;
61ee279c 2446 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
14f9c5c9 2447 }
d2e4a39e 2448
14f9c5c9
AS
2449 return arity;
2450}
2451
2452/* If TYPE is a record type in the form of a standard GNAT array
2453 descriptor or a simple array type, returns the element type for
2454 TYPE after indexing by NINDICES indices, or by all indices if
4c4b4cd2 2455 NINDICES is -1. Otherwise, returns NULL. */
14f9c5c9 2456
d2e4a39e
AS
2457struct type *
2458ada_array_element_type (struct type *type, int nindices)
14f9c5c9
AS
2459{
2460 type = desc_base_type (type);
2461
d2e4a39e 2462 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
14f9c5c9
AS
2463 {
2464 int k;
d2e4a39e 2465 struct type *p_array_type;
14f9c5c9 2466
556bdfd4 2467 p_array_type = desc_data_target_type (type);
14f9c5c9
AS
2468
2469 k = ada_array_arity (type);
2470 if (k == 0)
4c4b4cd2 2471 return NULL;
d2e4a39e 2472
4c4b4cd2 2473 /* Initially p_array_type = elt_type(*)[]...(k times)...[]. */
14f9c5c9 2474 if (nindices >= 0 && k > nindices)
4c4b4cd2 2475 k = nindices;
d2e4a39e 2476 while (k > 0 && p_array_type != NULL)
4c4b4cd2 2477 {
61ee279c 2478 p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type));
4c4b4cd2
PH
2479 k -= 1;
2480 }
14f9c5c9
AS
2481 return p_array_type;
2482 }
2483 else if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
2484 {
2485 while (nindices != 0 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
4c4b4cd2
PH
2486 {
2487 type = TYPE_TARGET_TYPE (type);
2488 nindices -= 1;
2489 }
14f9c5c9
AS
2490 return type;
2491 }
2492
2493 return NULL;
2494}
2495
4c4b4cd2 2496/* The type of nth index in arrays of given type (n numbering from 1).
dd19d49e
UW
2497 Does not examine memory. Throws an error if N is invalid or TYPE
2498 is not an array type. NAME is the name of the Ada attribute being
2499 evaluated ('range, 'first, 'last, or 'length); it is used in building
2500 the error message. */
14f9c5c9 2501
1eea4ebd
UW
2502static struct type *
2503ada_index_type (struct type *type, int n, const char *name)
14f9c5c9 2504{
4c4b4cd2
PH
2505 struct type *result_type;
2506
14f9c5c9
AS
2507 type = desc_base_type (type);
2508
1eea4ebd
UW
2509 if (n < 0 || n > ada_array_arity (type))
2510 error (_("invalid dimension number to '%s"), name);
14f9c5c9 2511
4c4b4cd2 2512 if (ada_is_simple_array_type (type))
14f9c5c9
AS
2513 {
2514 int i;
2515
2516 for (i = 1; i < n; i += 1)
4c4b4cd2 2517 type = TYPE_TARGET_TYPE (type);
262452ec 2518 result_type = TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (type));
4c4b4cd2
PH
2519 /* FIXME: The stabs type r(0,0);bound;bound in an array type
2520 has a target type of TYPE_CODE_UNDEF. We compensate here, but
76a01679 2521 perhaps stabsread.c would make more sense. */
1eea4ebd
UW
2522 if (result_type && TYPE_CODE (result_type) == TYPE_CODE_UNDEF)
2523 result_type = NULL;
14f9c5c9 2524 }
d2e4a39e 2525 else
1eea4ebd
UW
2526 {
2527 result_type = desc_index_type (desc_bounds_type (type), n);
2528 if (result_type == NULL)
2529 error (_("attempt to take bound of something that is not an array"));
2530 }
2531
2532 return result_type;
14f9c5c9
AS
2533}
2534
2535/* Given that arr is an array type, returns the lower bound of the
2536 Nth index (numbering from 1) if WHICH is 0, and the upper bound if
4c4b4cd2 2537 WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an
1eea4ebd
UW
2538 array-descriptor type. It works for other arrays with bounds supplied
2539 by run-time quantities other than discriminants. */
14f9c5c9 2540
abb68b3e 2541static LONGEST
1eea4ebd 2542ada_array_bound_from_type (struct type * arr_type, int n, int which)
14f9c5c9 2543{
1ce677a4 2544 struct type *type, *elt_type, *index_type_desc, *index_type;
1ce677a4 2545 int i;
262452ec
JK
2546
2547 gdb_assert (which == 0 || which == 1);
14f9c5c9 2548
ad82864c
JB
2549 if (ada_is_constrained_packed_array_type (arr_type))
2550 arr_type = decode_constrained_packed_array_type (arr_type);
14f9c5c9 2551
4c4b4cd2 2552 if (arr_type == NULL || !ada_is_simple_array_type (arr_type))
1eea4ebd 2553 return (LONGEST) - which;
14f9c5c9
AS
2554
2555 if (TYPE_CODE (arr_type) == TYPE_CODE_PTR)
2556 type = TYPE_TARGET_TYPE (arr_type);
2557 else
2558 type = arr_type;
2559
1ce677a4
UW
2560 elt_type = type;
2561 for (i = n; i > 1; i--)
2562 elt_type = TYPE_TARGET_TYPE (type);
2563
14f9c5c9 2564 index_type_desc = ada_find_parallel_type (type, "___XA");
262452ec
JK
2565 if (index_type_desc != NULL)
2566 index_type = to_fixed_range_type (TYPE_FIELD_NAME (index_type_desc, n - 1),
1ce677a4 2567 NULL, TYPE_INDEX_TYPE (elt_type));
262452ec 2568 else
1ce677a4 2569 index_type = TYPE_INDEX_TYPE (elt_type);
262452ec 2570
43bbcdc2
PH
2571 return
2572 (LONGEST) (which == 0
2573 ? ada_discrete_type_low_bound (index_type)
2574 : ada_discrete_type_high_bound (index_type));
14f9c5c9
AS
2575}
2576
2577/* Given that arr is an array value, returns the lower bound of the
abb68b3e
JB
2578 nth index (numbering from 1) if WHICH is 0, and the upper bound if
2579 WHICH is 1. This routine will also work for arrays with bounds
4c4b4cd2 2580 supplied by run-time quantities other than discriminants. */
14f9c5c9 2581
1eea4ebd 2582static LONGEST
4dc81987 2583ada_array_bound (struct value *arr, int n, int which)
14f9c5c9 2584{
df407dfe 2585 struct type *arr_type = value_type (arr);
14f9c5c9 2586
ad82864c
JB
2587 if (ada_is_constrained_packed_array_type (arr_type))
2588 return ada_array_bound (decode_constrained_packed_array (arr), n, which);
4c4b4cd2 2589 else if (ada_is_simple_array_type (arr_type))
1eea4ebd 2590 return ada_array_bound_from_type (arr_type, n, which);
14f9c5c9 2591 else
1eea4ebd 2592 return value_as_long (desc_one_bound (desc_bounds (arr), n, which));
14f9c5c9
AS
2593}
2594
2595/* Given that arr is an array value, returns the length of the
2596 nth index. This routine will also work for arrays with bounds
4c4b4cd2
PH
2597 supplied by run-time quantities other than discriminants.
2598 Does not work for arrays indexed by enumeration types with representation
2599 clauses at the moment. */
14f9c5c9 2600
1eea4ebd 2601static LONGEST
d2e4a39e 2602ada_array_length (struct value *arr, int n)
14f9c5c9 2603{
df407dfe 2604 struct type *arr_type = ada_check_typedef (value_type (arr));
14f9c5c9 2605
ad82864c
JB
2606 if (ada_is_constrained_packed_array_type (arr_type))
2607 return ada_array_length (decode_constrained_packed_array (arr), n);
14f9c5c9 2608
4c4b4cd2 2609 if (ada_is_simple_array_type (arr_type))
1eea4ebd
UW
2610 return (ada_array_bound_from_type (arr_type, n, 1)
2611 - ada_array_bound_from_type (arr_type, n, 0) + 1);
14f9c5c9 2612 else
1eea4ebd
UW
2613 return (value_as_long (desc_one_bound (desc_bounds (arr), n, 1))
2614 - value_as_long (desc_one_bound (desc_bounds (arr), n, 0)) + 1);
4c4b4cd2
PH
2615}
2616
2617/* An empty array whose type is that of ARR_TYPE (an array type),
2618 with bounds LOW to LOW-1. */
2619
2620static struct value *
2621empty_array (struct type *arr_type, int low)
2622{
6c038f32 2623 struct type *index_type =
0b5d8877
PH
2624 create_range_type (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (arr_type)),
2625 low, low - 1);
2626 struct type *elt_type = ada_array_element_type (arr_type, 1);
2627 return allocate_value (create_array_type (NULL, elt_type, index_type));
14f9c5c9 2628}
14f9c5c9 2629\f
d2e4a39e 2630
4c4b4cd2 2631 /* Name resolution */
14f9c5c9 2632
4c4b4cd2
PH
2633/* The "decoded" name for the user-definable Ada operator corresponding
2634 to OP. */
14f9c5c9 2635
d2e4a39e 2636static const char *
4c4b4cd2 2637ada_decoded_op_name (enum exp_opcode op)
14f9c5c9
AS
2638{
2639 int i;
2640
4c4b4cd2 2641 for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
14f9c5c9
AS
2642 {
2643 if (ada_opname_table[i].op == op)
4c4b4cd2 2644 return ada_opname_table[i].decoded;
14f9c5c9 2645 }
323e0a4a 2646 error (_("Could not find operator name for opcode"));
14f9c5c9
AS
2647}
2648
2649
4c4b4cd2
PH
2650/* Same as evaluate_type (*EXP), but resolves ambiguous symbol
2651 references (marked by OP_VAR_VALUE nodes in which the symbol has an
2652 undefined namespace) and converts operators that are
2653 user-defined into appropriate function calls. If CONTEXT_TYPE is
14f9c5c9
AS
2654 non-null, it provides a preferred result type [at the moment, only
2655 type void has any effect---causing procedures to be preferred over
2656 functions in calls]. A null CONTEXT_TYPE indicates that a non-void
4c4b4cd2 2657 return type is preferred. May change (expand) *EXP. */
14f9c5c9 2658
4c4b4cd2
PH
2659static void
2660resolve (struct expression **expp, int void_context_p)
14f9c5c9 2661{
30b15541
UW
2662 struct type *context_type = NULL;
2663 int pc = 0;
2664
2665 if (void_context_p)
2666 context_type = builtin_type ((*expp)->gdbarch)->builtin_void;
2667
2668 resolve_subexp (expp, &pc, 1, context_type);
14f9c5c9
AS
2669}
2670
4c4b4cd2
PH
2671/* Resolve the operator of the subexpression beginning at
2672 position *POS of *EXPP. "Resolving" consists of replacing
2673 the symbols that have undefined namespaces in OP_VAR_VALUE nodes
2674 with their resolutions, replacing built-in operators with
2675 function calls to user-defined operators, where appropriate, and,
2676 when DEPROCEDURE_P is non-zero, converting function-valued variables
2677 into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions
2678 are as in ada_resolve, above. */
14f9c5c9 2679
d2e4a39e 2680static struct value *
4c4b4cd2 2681resolve_subexp (struct expression **expp, int *pos, int deprocedure_p,
76a01679 2682 struct type *context_type)
14f9c5c9
AS
2683{
2684 int pc = *pos;
2685 int i;
4c4b4cd2 2686 struct expression *exp; /* Convenience: == *expp. */
14f9c5c9 2687 enum exp_opcode op = (*expp)->elts[pc].opcode;
4c4b4cd2
PH
2688 struct value **argvec; /* Vector of operand types (alloca'ed). */
2689 int nargs; /* Number of operands. */
52ce6436 2690 int oplen;
14f9c5c9
AS
2691
2692 argvec = NULL;
2693 nargs = 0;
2694 exp = *expp;
2695
52ce6436
PH
2696 /* Pass one: resolve operands, saving their types and updating *pos,
2697 if needed. */
14f9c5c9
AS
2698 switch (op)
2699 {
4c4b4cd2
PH
2700 case OP_FUNCALL:
2701 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
76a01679
JB
2702 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
2703 *pos += 7;
4c4b4cd2
PH
2704 else
2705 {
2706 *pos += 3;
2707 resolve_subexp (expp, pos, 0, NULL);
2708 }
2709 nargs = longest_to_int (exp->elts[pc + 1].longconst);
14f9c5c9
AS
2710 break;
2711
14f9c5c9 2712 case UNOP_ADDR:
4c4b4cd2
PH
2713 *pos += 1;
2714 resolve_subexp (expp, pos, 0, NULL);
2715 break;
2716
52ce6436
PH
2717 case UNOP_QUAL:
2718 *pos += 3;
17466c1a 2719 resolve_subexp (expp, pos, 1, check_typedef (exp->elts[pc + 1].type));
4c4b4cd2
PH
2720 break;
2721
52ce6436 2722 case OP_ATR_MODULUS:
4c4b4cd2
PH
2723 case OP_ATR_SIZE:
2724 case OP_ATR_TAG:
4c4b4cd2
PH
2725 case OP_ATR_FIRST:
2726 case OP_ATR_LAST:
2727 case OP_ATR_LENGTH:
2728 case OP_ATR_POS:
2729 case OP_ATR_VAL:
4c4b4cd2
PH
2730 case OP_ATR_MIN:
2731 case OP_ATR_MAX:
52ce6436
PH
2732 case TERNOP_IN_RANGE:
2733 case BINOP_IN_BOUNDS:
2734 case UNOP_IN_RANGE:
2735 case OP_AGGREGATE:
2736 case OP_OTHERS:
2737 case OP_CHOICES:
2738 case OP_POSITIONAL:
2739 case OP_DISCRETE_RANGE:
2740 case OP_NAME:
2741 ada_forward_operator_length (exp, pc, &oplen, &nargs);
2742 *pos += oplen;
14f9c5c9
AS
2743 break;
2744
2745 case BINOP_ASSIGN:
2746 {
4c4b4cd2
PH
2747 struct value *arg1;
2748
2749 *pos += 1;
2750 arg1 = resolve_subexp (expp, pos, 0, NULL);
2751 if (arg1 == NULL)
2752 resolve_subexp (expp, pos, 1, NULL);
2753 else
df407dfe 2754 resolve_subexp (expp, pos, 1, value_type (arg1));
4c4b4cd2 2755 break;
14f9c5c9
AS
2756 }
2757
4c4b4cd2 2758 case UNOP_CAST:
4c4b4cd2
PH
2759 *pos += 3;
2760 nargs = 1;
2761 break;
14f9c5c9 2762
4c4b4cd2
PH
2763 case BINOP_ADD:
2764 case BINOP_SUB:
2765 case BINOP_MUL:
2766 case BINOP_DIV:
2767 case BINOP_REM:
2768 case BINOP_MOD:
2769 case BINOP_EXP:
2770 case BINOP_CONCAT:
2771 case BINOP_LOGICAL_AND:
2772 case BINOP_LOGICAL_OR:
2773 case BINOP_BITWISE_AND:
2774 case BINOP_BITWISE_IOR:
2775 case BINOP_BITWISE_XOR:
14f9c5c9 2776
4c4b4cd2
PH
2777 case BINOP_EQUAL:
2778 case BINOP_NOTEQUAL:
2779 case BINOP_LESS:
2780 case BINOP_GTR:
2781 case BINOP_LEQ:
2782 case BINOP_GEQ:
14f9c5c9 2783
4c4b4cd2
PH
2784 case BINOP_REPEAT:
2785 case BINOP_SUBSCRIPT:
2786 case BINOP_COMMA:
40c8aaa9
JB
2787 *pos += 1;
2788 nargs = 2;
2789 break;
14f9c5c9 2790
4c4b4cd2
PH
2791 case UNOP_NEG:
2792 case UNOP_PLUS:
2793 case UNOP_LOGICAL_NOT:
2794 case UNOP_ABS:
2795 case UNOP_IND:
2796 *pos += 1;
2797 nargs = 1;
2798 break;
14f9c5c9 2799
4c4b4cd2
PH
2800 case OP_LONG:
2801 case OP_DOUBLE:
2802 case OP_VAR_VALUE:
2803 *pos += 4;
2804 break;
14f9c5c9 2805
4c4b4cd2
PH
2806 case OP_TYPE:
2807 case OP_BOOL:
2808 case OP_LAST:
4c4b4cd2
PH
2809 case OP_INTERNALVAR:
2810 *pos += 3;
2811 break;
14f9c5c9 2812
4c4b4cd2
PH
2813 case UNOP_MEMVAL:
2814 *pos += 3;
2815 nargs = 1;
2816 break;
2817
67f3407f
DJ
2818 case OP_REGISTER:
2819 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
2820 break;
2821
4c4b4cd2
PH
2822 case STRUCTOP_STRUCT:
2823 *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
2824 nargs = 1;
2825 break;
2826
4c4b4cd2 2827 case TERNOP_SLICE:
4c4b4cd2
PH
2828 *pos += 1;
2829 nargs = 3;
2830 break;
2831
52ce6436 2832 case OP_STRING:
14f9c5c9 2833 break;
4c4b4cd2
PH
2834
2835 default:
323e0a4a 2836 error (_("Unexpected operator during name resolution"));
14f9c5c9
AS
2837 }
2838
76a01679 2839 argvec = (struct value * *) alloca (sizeof (struct value *) * (nargs + 1));
4c4b4cd2
PH
2840 for (i = 0; i < nargs; i += 1)
2841 argvec[i] = resolve_subexp (expp, pos, 1, NULL);
2842 argvec[i] = NULL;
2843 exp = *expp;
2844
2845 /* Pass two: perform any resolution on principal operator. */
14f9c5c9
AS
2846 switch (op)
2847 {
2848 default:
2849 break;
2850
14f9c5c9 2851 case OP_VAR_VALUE:
4c4b4cd2 2852 if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
76a01679
JB
2853 {
2854 struct ada_symbol_info *candidates;
2855 int n_candidates;
2856
2857 n_candidates =
2858 ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME
2859 (exp->elts[pc + 2].symbol),
2860 exp->elts[pc + 1].block, VAR_DOMAIN,
2861 &candidates);
2862
2863 if (n_candidates > 1)
2864 {
2865 /* Types tend to get re-introduced locally, so if there
2866 are any local symbols that are not types, first filter
2867 out all types. */
2868 int j;
2869 for (j = 0; j < n_candidates; j += 1)
2870 switch (SYMBOL_CLASS (candidates[j].sym))
2871 {
2872 case LOC_REGISTER:
2873 case LOC_ARG:
2874 case LOC_REF_ARG:
76a01679
JB
2875 case LOC_REGPARM_ADDR:
2876 case LOC_LOCAL:
76a01679 2877 case LOC_COMPUTED:
76a01679
JB
2878 goto FoundNonType;
2879 default:
2880 break;
2881 }
2882 FoundNonType:
2883 if (j < n_candidates)
2884 {
2885 j = 0;
2886 while (j < n_candidates)
2887 {
2888 if (SYMBOL_CLASS (candidates[j].sym) == LOC_TYPEDEF)
2889 {
2890 candidates[j] = candidates[n_candidates - 1];
2891 n_candidates -= 1;
2892 }
2893 else
2894 j += 1;
2895 }
2896 }
2897 }
2898
2899 if (n_candidates == 0)
323e0a4a 2900 error (_("No definition found for %s"),
76a01679
JB
2901 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
2902 else if (n_candidates == 1)
2903 i = 0;
2904 else if (deprocedure_p
2905 && !is_nonfunction (candidates, n_candidates))
2906 {
06d5cf63
JB
2907 i = ada_resolve_function
2908 (candidates, n_candidates, NULL, 0,
2909 SYMBOL_LINKAGE_NAME (exp->elts[pc + 2].symbol),
2910 context_type);
76a01679 2911 if (i < 0)
323e0a4a 2912 error (_("Could not find a match for %s"),
76a01679
JB
2913 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
2914 }
2915 else
2916 {
323e0a4a 2917 printf_filtered (_("Multiple matches for %s\n"),
76a01679
JB
2918 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
2919 user_select_syms (candidates, n_candidates, 1);
2920 i = 0;
2921 }
2922
2923 exp->elts[pc + 1].block = candidates[i].block;
2924 exp->elts[pc + 2].symbol = candidates[i].sym;
1265e4aa
JB
2925 if (innermost_block == NULL
2926 || contained_in (candidates[i].block, innermost_block))
76a01679
JB
2927 innermost_block = candidates[i].block;
2928 }
2929
2930 if (deprocedure_p
2931 && (TYPE_CODE (SYMBOL_TYPE (exp->elts[pc + 2].symbol))
2932 == TYPE_CODE_FUNC))
2933 {
2934 replace_operator_with_call (expp, pc, 0, 0,
2935 exp->elts[pc + 2].symbol,
2936 exp->elts[pc + 1].block);
2937 exp = *expp;
2938 }
14f9c5c9
AS
2939 break;
2940
2941 case OP_FUNCALL:
2942 {
4c4b4cd2 2943 if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
76a01679 2944 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
4c4b4cd2
PH
2945 {
2946 struct ada_symbol_info *candidates;
2947 int n_candidates;
2948
2949 n_candidates =
76a01679
JB
2950 ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME
2951 (exp->elts[pc + 5].symbol),
2952 exp->elts[pc + 4].block, VAR_DOMAIN,
2953 &candidates);
4c4b4cd2
PH
2954 if (n_candidates == 1)
2955 i = 0;
2956 else
2957 {
06d5cf63
JB
2958 i = ada_resolve_function
2959 (candidates, n_candidates,
2960 argvec, nargs,
2961 SYMBOL_LINKAGE_NAME (exp->elts[pc + 5].symbol),
2962 context_type);
4c4b4cd2 2963 if (i < 0)
323e0a4a 2964 error (_("Could not find a match for %s"),
4c4b4cd2
PH
2965 SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol));
2966 }
2967
2968 exp->elts[pc + 4].block = candidates[i].block;
2969 exp->elts[pc + 5].symbol = candidates[i].sym;
1265e4aa
JB
2970 if (innermost_block == NULL
2971 || contained_in (candidates[i].block, innermost_block))
4c4b4cd2
PH
2972 innermost_block = candidates[i].block;
2973 }
14f9c5c9
AS
2974 }
2975 break;
2976 case BINOP_ADD:
2977 case BINOP_SUB:
2978 case BINOP_MUL:
2979 case BINOP_DIV:
2980 case BINOP_REM:
2981 case BINOP_MOD:
2982 case BINOP_CONCAT:
2983 case BINOP_BITWISE_AND:
2984 case BINOP_BITWISE_IOR:
2985 case BINOP_BITWISE_XOR:
2986 case BINOP_EQUAL:
2987 case BINOP_NOTEQUAL:
2988 case BINOP_LESS:
2989 case BINOP_GTR:
2990 case BINOP_LEQ:
2991 case BINOP_GEQ:
2992 case BINOP_EXP:
2993 case UNOP_NEG:
2994 case UNOP_PLUS:
2995 case UNOP_LOGICAL_NOT:
2996 case UNOP_ABS:
2997 if (possible_user_operator_p (op, argvec))
4c4b4cd2
PH
2998 {
2999 struct ada_symbol_info *candidates;
3000 int n_candidates;
3001
3002 n_candidates =
3003 ada_lookup_symbol_list (ada_encode (ada_decoded_op_name (op)),
3004 (struct block *) NULL, VAR_DOMAIN,
3005 &candidates);
3006 i = ada_resolve_function (candidates, n_candidates, argvec, nargs,
76a01679 3007 ada_decoded_op_name (op), NULL);
4c4b4cd2
PH
3008 if (i < 0)
3009 break;
3010
76a01679
JB
3011 replace_operator_with_call (expp, pc, nargs, 1,
3012 candidates[i].sym, candidates[i].block);
4c4b4cd2
PH
3013 exp = *expp;
3014 }
14f9c5c9 3015 break;
4c4b4cd2
PH
3016
3017 case OP_TYPE:
b3dbf008 3018 case OP_REGISTER:
4c4b4cd2 3019 return NULL;
14f9c5c9
AS
3020 }
3021
3022 *pos = pc;
3023 return evaluate_subexp_type (exp, pos);
3024}
3025
3026/* Return non-zero if formal type FTYPE matches actual type ATYPE. If
4c4b4cd2 3027 MAY_DEREF is non-zero, the formal may be a pointer and the actual
5b3d5b7d 3028 a non-pointer. */
14f9c5c9 3029/* The term "match" here is rather loose. The match is heuristic and
5b3d5b7d 3030 liberal. */
14f9c5c9
AS
3031
3032static int
4dc81987 3033ada_type_match (struct type *ftype, struct type *atype, int may_deref)
14f9c5c9 3034{
61ee279c
PH
3035 ftype = ada_check_typedef (ftype);
3036 atype = ada_check_typedef (atype);
14f9c5c9
AS
3037
3038 if (TYPE_CODE (ftype) == TYPE_CODE_REF)
3039 ftype = TYPE_TARGET_TYPE (ftype);
3040 if (TYPE_CODE (atype) == TYPE_CODE_REF)
3041 atype = TYPE_TARGET_TYPE (atype);
3042
d2e4a39e 3043 switch (TYPE_CODE (ftype))
14f9c5c9
AS
3044 {
3045 default:
5b3d5b7d 3046 return TYPE_CODE (ftype) == TYPE_CODE (atype);
14f9c5c9
AS
3047 case TYPE_CODE_PTR:
3048 if (TYPE_CODE (atype) == TYPE_CODE_PTR)
4c4b4cd2
PH
3049 return ada_type_match (TYPE_TARGET_TYPE (ftype),
3050 TYPE_TARGET_TYPE (atype), 0);
d2e4a39e 3051 else
1265e4aa
JB
3052 return (may_deref
3053 && ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0));
14f9c5c9
AS
3054 case TYPE_CODE_INT:
3055 case TYPE_CODE_ENUM:
3056 case TYPE_CODE_RANGE:
3057 switch (TYPE_CODE (atype))
4c4b4cd2
PH
3058 {
3059 case TYPE_CODE_INT:
3060 case TYPE_CODE_ENUM:
3061 case TYPE_CODE_RANGE:
3062 return 1;
3063 default:
3064 return 0;
3065 }
14f9c5c9
AS
3066
3067 case TYPE_CODE_ARRAY:
d2e4a39e 3068 return (TYPE_CODE (atype) == TYPE_CODE_ARRAY
4c4b4cd2 3069 || ada_is_array_descriptor_type (atype));
14f9c5c9
AS
3070
3071 case TYPE_CODE_STRUCT:
4c4b4cd2
PH
3072 if (ada_is_array_descriptor_type (ftype))
3073 return (TYPE_CODE (atype) == TYPE_CODE_ARRAY
3074 || ada_is_array_descriptor_type (atype));
14f9c5c9 3075 else
4c4b4cd2
PH
3076 return (TYPE_CODE (atype) == TYPE_CODE_STRUCT
3077 && !ada_is_array_descriptor_type (atype));
14f9c5c9
AS
3078
3079 case TYPE_CODE_UNION:
3080 case TYPE_CODE_FLT:
3081 return (TYPE_CODE (atype) == TYPE_CODE (ftype));
3082 }
3083}
3084
3085/* Return non-zero if the formals of FUNC "sufficiently match" the
3086 vector of actual argument types ACTUALS of size N_ACTUALS. FUNC
3087 may also be an enumeral, in which case it is treated as a 0-
4c4b4cd2 3088 argument function. */
14f9c5c9
AS
3089
3090static int
d2e4a39e 3091ada_args_match (struct symbol *func, struct value **actuals, int n_actuals)
14f9c5c9
AS
3092{
3093 int i;
d2e4a39e 3094 struct type *func_type = SYMBOL_TYPE (func);
14f9c5c9 3095
1265e4aa
JB
3096 if (SYMBOL_CLASS (func) == LOC_CONST
3097 && TYPE_CODE (func_type) == TYPE_CODE_ENUM)
14f9c5c9
AS
3098 return (n_actuals == 0);
3099 else if (func_type == NULL || TYPE_CODE (func_type) != TYPE_CODE_FUNC)
3100 return 0;
3101
3102 if (TYPE_NFIELDS (func_type) != n_actuals)
3103 return 0;
3104
3105 for (i = 0; i < n_actuals; i += 1)
3106 {
4c4b4cd2 3107 if (actuals[i] == NULL)
76a01679
JB
3108 return 0;
3109 else
3110 {
61ee279c 3111 struct type *ftype = ada_check_typedef (TYPE_FIELD_TYPE (func_type, i));
df407dfe 3112 struct type *atype = ada_check_typedef (value_type (actuals[i]));
4c4b4cd2 3113
76a01679
JB
3114 if (!ada_type_match (ftype, atype, 1))
3115 return 0;
3116 }
14f9c5c9
AS
3117 }
3118 return 1;
3119}
3120
3121/* False iff function type FUNC_TYPE definitely does not produce a value
3122 compatible with type CONTEXT_TYPE. Conservatively returns 1 if
3123 FUNC_TYPE is not a valid function type with a non-null return type
3124 or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */
3125
3126static int
d2e4a39e 3127return_match (struct type *func_type, struct type *context_type)
14f9c5c9 3128{
d2e4a39e 3129 struct type *return_type;
14f9c5c9
AS
3130
3131 if (func_type == NULL)
3132 return 1;
3133
4c4b4cd2
PH
3134 if (TYPE_CODE (func_type) == TYPE_CODE_FUNC)
3135 return_type = base_type (TYPE_TARGET_TYPE (func_type));
3136 else
3137 return_type = base_type (func_type);
14f9c5c9
AS
3138 if (return_type == NULL)
3139 return 1;
3140
4c4b4cd2 3141 context_type = base_type (context_type);
14f9c5c9
AS
3142
3143 if (TYPE_CODE (return_type) == TYPE_CODE_ENUM)
3144 return context_type == NULL || return_type == context_type;
3145 else if (context_type == NULL)
3146 return TYPE_CODE (return_type) != TYPE_CODE_VOID;
3147 else
3148 return TYPE_CODE (return_type) == TYPE_CODE (context_type);
3149}
3150
3151
4c4b4cd2 3152/* Returns the index in SYMS[0..NSYMS-1] that contains the symbol for the
14f9c5c9 3153 function (if any) that matches the types of the NARGS arguments in
4c4b4cd2
PH
3154 ARGS. If CONTEXT_TYPE is non-null and there is at least one match
3155 that returns that type, then eliminate matches that don't. If
3156 CONTEXT_TYPE is void and there is at least one match that does not
3157 return void, eliminate all matches that do.
3158
14f9c5c9
AS
3159 Asks the user if there is more than one match remaining. Returns -1
3160 if there is no such symbol or none is selected. NAME is used
4c4b4cd2
PH
3161 solely for messages. May re-arrange and modify SYMS in
3162 the process; the index returned is for the modified vector. */
14f9c5c9 3163
4c4b4cd2
PH
3164static int
3165ada_resolve_function (struct ada_symbol_info syms[],
3166 int nsyms, struct value **args, int nargs,
3167 const char *name, struct type *context_type)
14f9c5c9 3168{
30b15541 3169 int fallback;
14f9c5c9 3170 int k;
4c4b4cd2 3171 int m; /* Number of hits */
14f9c5c9 3172
d2e4a39e 3173 m = 0;
30b15541
UW
3174 /* In the first pass of the loop, we only accept functions matching
3175 context_type. If none are found, we add a second pass of the loop
3176 where every function is accepted. */
3177 for (fallback = 0; m == 0 && fallback < 2; fallback++)
14f9c5c9
AS
3178 {
3179 for (k = 0; k < nsyms; k += 1)
4c4b4cd2 3180 {
61ee279c 3181 struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].sym));
4c4b4cd2
PH
3182
3183 if (ada_args_match (syms[k].sym, args, nargs)
30b15541 3184 && (fallback || return_match (type, context_type)))
4c4b4cd2
PH
3185 {
3186 syms[m] = syms[k];
3187 m += 1;
3188 }
3189 }
14f9c5c9
AS
3190 }
3191
3192 if (m == 0)
3193 return -1;
3194 else if (m > 1)
3195 {
323e0a4a 3196 printf_filtered (_("Multiple matches for %s\n"), name);
4c4b4cd2 3197 user_select_syms (syms, m, 1);
14f9c5c9
AS
3198 return 0;
3199 }
3200 return 0;
3201}
3202
4c4b4cd2
PH
3203/* Returns true (non-zero) iff decoded name N0 should appear before N1
3204 in a listing of choices during disambiguation (see sort_choices, below).
3205 The idea is that overloadings of a subprogram name from the
3206 same package should sort in their source order. We settle for ordering
3207 such symbols by their trailing number (__N or $N). */
3208
14f9c5c9 3209static int
4c4b4cd2 3210encoded_ordered_before (char *N0, char *N1)
14f9c5c9
AS
3211{
3212 if (N1 == NULL)
3213 return 0;
3214 else if (N0 == NULL)
3215 return 1;
3216 else
3217 {
3218 int k0, k1;
d2e4a39e 3219 for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1)
4c4b4cd2 3220 ;
d2e4a39e 3221 for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1)
4c4b4cd2 3222 ;
d2e4a39e 3223 if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000'
4c4b4cd2
PH
3224 && (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000')
3225 {
3226 int n0, n1;
3227 n0 = k0;
3228 while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_')
3229 n0 -= 1;
3230 n1 = k1;
3231 while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_')
3232 n1 -= 1;
3233 if (n0 == n1 && strncmp (N0, N1, n0) == 0)
3234 return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1));
3235 }
14f9c5c9
AS
3236 return (strcmp (N0, N1) < 0);
3237 }
3238}
d2e4a39e 3239
4c4b4cd2
PH
3240/* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the
3241 encoded names. */
3242
d2e4a39e 3243static void
4c4b4cd2 3244sort_choices (struct ada_symbol_info syms[], int nsyms)
14f9c5c9 3245{
4c4b4cd2 3246 int i;
d2e4a39e 3247 for (i = 1; i < nsyms; i += 1)
14f9c5c9 3248 {
4c4b4cd2 3249 struct ada_symbol_info sym = syms[i];
14f9c5c9
AS
3250 int j;
3251
d2e4a39e 3252 for (j = i - 1; j >= 0; j -= 1)
4c4b4cd2
PH
3253 {
3254 if (encoded_ordered_before (SYMBOL_LINKAGE_NAME (syms[j].sym),
3255 SYMBOL_LINKAGE_NAME (sym.sym)))
3256 break;
3257 syms[j + 1] = syms[j];
3258 }
d2e4a39e 3259 syms[j + 1] = sym;
14f9c5c9
AS
3260 }
3261}
3262
4c4b4cd2
PH
3263/* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0
3264 by asking the user (if necessary), returning the number selected,
3265 and setting the first elements of SYMS items. Error if no symbols
3266 selected. */
14f9c5c9
AS
3267
3268/* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought
4c4b4cd2 3269 to be re-integrated one of these days. */
14f9c5c9
AS
3270
3271int
4c4b4cd2 3272user_select_syms (struct ada_symbol_info *syms, int nsyms, int max_results)
14f9c5c9
AS
3273{
3274 int i;
d2e4a39e 3275 int *chosen = (int *) alloca (sizeof (int) * nsyms);
14f9c5c9
AS
3276 int n_chosen;
3277 int first_choice = (max_results == 1) ? 1 : 2;
717d2f5a 3278 const char *select_mode = multiple_symbols_select_mode ();
14f9c5c9
AS
3279
3280 if (max_results < 1)
323e0a4a 3281 error (_("Request to select 0 symbols!"));
14f9c5c9
AS
3282 if (nsyms <= 1)
3283 return nsyms;
3284
717d2f5a
JB
3285 if (select_mode == multiple_symbols_cancel)
3286 error (_("\
3287canceled because the command is ambiguous\n\
3288See set/show multiple-symbol."));
3289
3290 /* If select_mode is "all", then return all possible symbols.
3291 Only do that if more than one symbol can be selected, of course.
3292 Otherwise, display the menu as usual. */
3293 if (select_mode == multiple_symbols_all && max_results > 1)
3294 return nsyms;
3295
323e0a4a 3296 printf_unfiltered (_("[0] cancel\n"));
14f9c5c9 3297 if (max_results > 1)
323e0a4a 3298 printf_unfiltered (_("[1] all\n"));
14f9c5c9 3299
4c4b4cd2 3300 sort_choices (syms, nsyms);
14f9c5c9
AS
3301
3302 for (i = 0; i < nsyms; i += 1)
3303 {
4c4b4cd2
PH
3304 if (syms[i].sym == NULL)
3305 continue;
3306
3307 if (SYMBOL_CLASS (syms[i].sym) == LOC_BLOCK)
3308 {
76a01679
JB
3309 struct symtab_and_line sal =
3310 find_function_start_sal (syms[i].sym, 1);
323e0a4a
AC
3311 if (sal.symtab == NULL)
3312 printf_unfiltered (_("[%d] %s at <no source file available>:%d\n"),
3313 i + first_choice,
3314 SYMBOL_PRINT_NAME (syms[i].sym),
3315 sal.line);
3316 else
3317 printf_unfiltered (_("[%d] %s at %s:%d\n"), i + first_choice,
3318 SYMBOL_PRINT_NAME (syms[i].sym),
3319 sal.symtab->filename, sal.line);
4c4b4cd2
PH
3320 continue;
3321 }
d2e4a39e 3322 else
4c4b4cd2
PH
3323 {
3324 int is_enumeral =
3325 (SYMBOL_CLASS (syms[i].sym) == LOC_CONST
3326 && SYMBOL_TYPE (syms[i].sym) != NULL
3327 && TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) == TYPE_CODE_ENUM);
6f38eac8 3328 struct symtab *symtab = syms[i].sym->symtab;
4c4b4cd2
PH
3329
3330 if (SYMBOL_LINE (syms[i].sym) != 0 && symtab != NULL)
323e0a4a 3331 printf_unfiltered (_("[%d] %s at %s:%d\n"),
4c4b4cd2
PH
3332 i + first_choice,
3333 SYMBOL_PRINT_NAME (syms[i].sym),
3334 symtab->filename, SYMBOL_LINE (syms[i].sym));
76a01679
JB
3335 else if (is_enumeral
3336 && TYPE_NAME (SYMBOL_TYPE (syms[i].sym)) != NULL)
4c4b4cd2 3337 {
a3f17187 3338 printf_unfiltered (("[%d] "), i + first_choice);
76a01679
JB
3339 ada_print_type (SYMBOL_TYPE (syms[i].sym), NULL,
3340 gdb_stdout, -1, 0);
323e0a4a 3341 printf_unfiltered (_("'(%s) (enumeral)\n"),
4c4b4cd2
PH
3342 SYMBOL_PRINT_NAME (syms[i].sym));
3343 }
3344 else if (symtab != NULL)
3345 printf_unfiltered (is_enumeral
323e0a4a
AC
3346 ? _("[%d] %s in %s (enumeral)\n")
3347 : _("[%d] %s at %s:?\n"),
4c4b4cd2
PH
3348 i + first_choice,
3349 SYMBOL_PRINT_NAME (syms[i].sym),
3350 symtab->filename);
3351 else
3352 printf_unfiltered (is_enumeral
323e0a4a
AC
3353 ? _("[%d] %s (enumeral)\n")
3354 : _("[%d] %s at ?\n"),
4c4b4cd2
PH
3355 i + first_choice,
3356 SYMBOL_PRINT_NAME (syms[i].sym));
3357 }
14f9c5c9 3358 }
d2e4a39e 3359
14f9c5c9 3360 n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1,
4c4b4cd2 3361 "overload-choice");
14f9c5c9
AS
3362
3363 for (i = 0; i < n_chosen; i += 1)
4c4b4cd2 3364 syms[i] = syms[chosen[i]];
14f9c5c9
AS
3365
3366 return n_chosen;
3367}
3368
3369/* Read and validate a set of numeric choices from the user in the
4c4b4cd2 3370 range 0 .. N_CHOICES-1. Place the results in increasing
14f9c5c9
AS
3371 order in CHOICES[0 .. N-1], and return N.
3372
3373 The user types choices as a sequence of numbers on one line
3374 separated by blanks, encoding them as follows:
3375
4c4b4cd2 3376 + A choice of 0 means to cancel the selection, throwing an error.
14f9c5c9
AS
3377 + If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1.
3378 + The user chooses k by typing k+IS_ALL_CHOICE+1.
3379
4c4b4cd2 3380 The user is not allowed to choose more than MAX_RESULTS values.
14f9c5c9
AS
3381
3382 ANNOTATION_SUFFIX, if present, is used to annotate the input
4c4b4cd2 3383 prompts (for use with the -f switch). */
14f9c5c9
AS
3384
3385int
d2e4a39e 3386get_selections (int *choices, int n_choices, int max_results,
4c4b4cd2 3387 int is_all_choice, char *annotation_suffix)
14f9c5c9 3388{
d2e4a39e 3389 char *args;
0bcd0149 3390 char *prompt;
14f9c5c9
AS
3391 int n_chosen;
3392 int first_choice = is_all_choice ? 2 : 1;
d2e4a39e 3393
14f9c5c9
AS
3394 prompt = getenv ("PS2");
3395 if (prompt == NULL)
0bcd0149 3396 prompt = "> ";
14f9c5c9 3397
0bcd0149 3398 args = command_line_input (prompt, 0, annotation_suffix);
d2e4a39e 3399
14f9c5c9 3400 if (args == NULL)
323e0a4a 3401 error_no_arg (_("one or more choice numbers"));
14f9c5c9
AS
3402
3403 n_chosen = 0;
76a01679 3404
4c4b4cd2
PH
3405 /* Set choices[0 .. n_chosen-1] to the users' choices in ascending
3406 order, as given in args. Choices are validated. */
14f9c5c9
AS
3407 while (1)
3408 {
d2e4a39e 3409 char *args2;
14f9c5c9
AS
3410 int choice, j;
3411
3412 while (isspace (*args))
4c4b4cd2 3413 args += 1;
14f9c5c9 3414 if (*args == '\0' && n_chosen == 0)
323e0a4a 3415 error_no_arg (_("one or more choice numbers"));
14f9c5c9 3416 else if (*args == '\0')
4c4b4cd2 3417 break;
14f9c5c9
AS
3418
3419 choice = strtol (args, &args2, 10);
d2e4a39e 3420 if (args == args2 || choice < 0
4c4b4cd2 3421 || choice > n_choices + first_choice - 1)
323e0a4a 3422 error (_("Argument must be choice number"));
14f9c5c9
AS
3423 args = args2;
3424
d2e4a39e 3425 if (choice == 0)
323e0a4a 3426 error (_("cancelled"));
14f9c5c9
AS
3427
3428 if (choice < first_choice)
4c4b4cd2
PH
3429 {
3430 n_chosen = n_choices;
3431 for (j = 0; j < n_choices; j += 1)
3432 choices[j] = j;
3433 break;
3434 }
14f9c5c9
AS
3435 choice -= first_choice;
3436
d2e4a39e 3437 for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1)
4c4b4cd2
PH
3438 {
3439 }
14f9c5c9
AS
3440
3441 if (j < 0 || choice != choices[j])
4c4b4cd2
PH
3442 {
3443 int k;
3444 for (k = n_chosen - 1; k > j; k -= 1)
3445 choices[k + 1] = choices[k];
3446 choices[j + 1] = choice;
3447 n_chosen += 1;
3448 }
14f9c5c9
AS
3449 }
3450
3451 if (n_chosen > max_results)
323e0a4a 3452 error (_("Select no more than %d of the above"), max_results);
d2e4a39e 3453
14f9c5c9
AS
3454 return n_chosen;
3455}
3456
4c4b4cd2
PH
3457/* Replace the operator of length OPLEN at position PC in *EXPP with a call
3458 on the function identified by SYM and BLOCK, and taking NARGS
3459 arguments. Update *EXPP as needed to hold more space. */
14f9c5c9
AS
3460
3461static void
d2e4a39e 3462replace_operator_with_call (struct expression **expp, int pc, int nargs,
4c4b4cd2
PH
3463 int oplen, struct symbol *sym,
3464 struct block *block)
14f9c5c9
AS
3465{
3466 /* A new expression, with 6 more elements (3 for funcall, 4 for function
4c4b4cd2 3467 symbol, -oplen for operator being replaced). */
d2e4a39e 3468 struct expression *newexp = (struct expression *)
14f9c5c9 3469 xmalloc (sizeof (struct expression)
4c4b4cd2 3470 + EXP_ELEM_TO_BYTES ((*expp)->nelts + 7 - oplen));
d2e4a39e 3471 struct expression *exp = *expp;
14f9c5c9
AS
3472
3473 newexp->nelts = exp->nelts + 7 - oplen;
3474 newexp->language_defn = exp->language_defn;
3475 memcpy (newexp->elts, exp->elts, EXP_ELEM_TO_BYTES (pc));
d2e4a39e 3476 memcpy (newexp->elts + pc + 7, exp->elts + pc + oplen,
4c4b4cd2 3477 EXP_ELEM_TO_BYTES (exp->nelts - pc - oplen));
14f9c5c9
AS
3478
3479 newexp->elts[pc].opcode = newexp->elts[pc + 2].opcode = OP_FUNCALL;
3480 newexp->elts[pc + 1].longconst = (LONGEST) nargs;
3481
3482 newexp->elts[pc + 3].opcode = newexp->elts[pc + 6].opcode = OP_VAR_VALUE;
3483 newexp->elts[pc + 4].block = block;
3484 newexp->elts[pc + 5].symbol = sym;
3485
3486 *expp = newexp;
aacb1f0a 3487 xfree (exp);
d2e4a39e 3488}
14f9c5c9
AS
3489
3490/* Type-class predicates */
3491
4c4b4cd2
PH
3492/* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type),
3493 or FLOAT). */
14f9c5c9
AS
3494
3495static int
d2e4a39e 3496numeric_type_p (struct type *type)
14f9c5c9
AS
3497{
3498 if (type == NULL)
3499 return 0;
d2e4a39e
AS
3500 else
3501 {
3502 switch (TYPE_CODE (type))
4c4b4cd2
PH
3503 {
3504 case TYPE_CODE_INT:
3505 case TYPE_CODE_FLT:
3506 return 1;
3507 case TYPE_CODE_RANGE:
3508 return (type == TYPE_TARGET_TYPE (type)
3509 || numeric_type_p (TYPE_TARGET_TYPE (type)));
3510 default:
3511 return 0;
3512 }
d2e4a39e 3513 }
14f9c5c9
AS
3514}
3515
4c4b4cd2 3516/* True iff TYPE is integral (an INT or RANGE of INTs). */
14f9c5c9
AS
3517
3518static int
d2e4a39e 3519integer_type_p (struct type *type)
14f9c5c9
AS
3520{
3521 if (type == NULL)
3522 return 0;
d2e4a39e
AS
3523 else
3524 {
3525 switch (TYPE_CODE (type))
4c4b4cd2
PH
3526 {
3527 case TYPE_CODE_INT:
3528 return 1;
3529 case TYPE_CODE_RANGE:
3530 return (type == TYPE_TARGET_TYPE (type)
3531 || integer_type_p (TYPE_TARGET_TYPE (type)));
3532 default:
3533 return 0;
3534 }
d2e4a39e 3535 }
14f9c5c9
AS
3536}
3537
4c4b4cd2 3538/* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */
14f9c5c9
AS
3539
3540static int
d2e4a39e 3541scalar_type_p (struct type *type)
14f9c5c9
AS
3542{
3543 if (type == NULL)
3544 return 0;
d2e4a39e
AS
3545 else
3546 {
3547 switch (TYPE_CODE (type))
4c4b4cd2
PH
3548 {
3549 case TYPE_CODE_INT:
3550 case TYPE_CODE_RANGE:
3551 case TYPE_CODE_ENUM:
3552 case TYPE_CODE_FLT:
3553 return 1;
3554 default:
3555 return 0;
3556 }
d2e4a39e 3557 }
14f9c5c9
AS
3558}
3559
4c4b4cd2 3560/* True iff TYPE is discrete (INT, RANGE, ENUM). */
14f9c5c9
AS
3561
3562static int
d2e4a39e 3563discrete_type_p (struct type *type)
14f9c5c9
AS
3564{
3565 if (type == NULL)
3566 return 0;
d2e4a39e
AS
3567 else
3568 {
3569 switch (TYPE_CODE (type))
4c4b4cd2
PH
3570 {
3571 case TYPE_CODE_INT:
3572 case TYPE_CODE_RANGE:
3573 case TYPE_CODE_ENUM:
872f0337 3574 case TYPE_CODE_BOOL:
4c4b4cd2
PH
3575 return 1;
3576 default:
3577 return 0;
3578 }
d2e4a39e 3579 }
14f9c5c9
AS
3580}
3581
4c4b4cd2
PH
3582/* Returns non-zero if OP with operands in the vector ARGS could be
3583 a user-defined function. Errs on the side of pre-defined operators
3584 (i.e., result 0). */
14f9c5c9
AS
3585
3586static int
d2e4a39e 3587possible_user_operator_p (enum exp_opcode op, struct value *args[])
14f9c5c9 3588{
76a01679 3589 struct type *type0 =
df407dfe 3590 (args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0]));
d2e4a39e 3591 struct type *type1 =
df407dfe 3592 (args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1]));
d2e4a39e 3593
4c4b4cd2
PH
3594 if (type0 == NULL)
3595 return 0;
3596
14f9c5c9
AS
3597 switch (op)
3598 {
3599 default:
3600 return 0;
3601
3602 case BINOP_ADD:
3603 case BINOP_SUB:
3604 case BINOP_MUL:
3605 case BINOP_DIV:
d2e4a39e 3606 return (!(numeric_type_p (type0) && numeric_type_p (type1)));
14f9c5c9
AS
3607
3608 case BINOP_REM:
3609 case BINOP_MOD:
3610 case BINOP_BITWISE_AND:
3611 case BINOP_BITWISE_IOR:
3612 case BINOP_BITWISE_XOR:
d2e4a39e 3613 return (!(integer_type_p (type0) && integer_type_p (type1)));
14f9c5c9
AS
3614
3615 case BINOP_EQUAL:
3616 case BINOP_NOTEQUAL:
3617 case BINOP_LESS:
3618 case BINOP_GTR:
3619 case BINOP_LEQ:
3620 case BINOP_GEQ:
d2e4a39e 3621 return (!(scalar_type_p (type0) && scalar_type_p (type1)));
14f9c5c9
AS
3622
3623 case BINOP_CONCAT:
ee90b9ab 3624 return !ada_is_array_type (type0) || !ada_is_array_type (type1);
14f9c5c9
AS
3625
3626 case BINOP_EXP:
d2e4a39e 3627 return (!(numeric_type_p (type0) && integer_type_p (type1)));
14f9c5c9
AS
3628
3629 case UNOP_NEG:
3630 case UNOP_PLUS:
3631 case UNOP_LOGICAL_NOT:
d2e4a39e
AS
3632 case UNOP_ABS:
3633 return (!numeric_type_p (type0));
14f9c5c9
AS
3634
3635 }
3636}
3637\f
4c4b4cd2 3638 /* Renaming */
14f9c5c9 3639
aeb5907d
JB
3640/* NOTES:
3641
3642 1. In the following, we assume that a renaming type's name may
3643 have an ___XD suffix. It would be nice if this went away at some
3644 point.
3645 2. We handle both the (old) purely type-based representation of
3646 renamings and the (new) variable-based encoding. At some point,
3647 it is devoutly to be hoped that the former goes away
3648 (FIXME: hilfinger-2007-07-09).
3649 3. Subprogram renamings are not implemented, although the XRS
3650 suffix is recognized (FIXME: hilfinger-2007-07-09). */
3651
3652/* If SYM encodes a renaming,
3653
3654 <renaming> renames <renamed entity>,
3655
3656 sets *LEN to the length of the renamed entity's name,
3657 *RENAMED_ENTITY to that name (not null-terminated), and *RENAMING_EXPR to
3658 the string describing the subcomponent selected from the renamed
3659 entity. Returns ADA_NOT_RENAMING if SYM does not encode a renaming
3660 (in which case, the values of *RENAMED_ENTITY, *LEN, and *RENAMING_EXPR
3661 are undefined). Otherwise, returns a value indicating the category
3662 of entity renamed: an object (ADA_OBJECT_RENAMING), exception
3663 (ADA_EXCEPTION_RENAMING), package (ADA_PACKAGE_RENAMING), or
3664 subprogram (ADA_SUBPROGRAM_RENAMING). Does no allocation; the
3665 strings returned in *RENAMED_ENTITY and *RENAMING_EXPR should not be
3666 deallocated. The values of RENAMED_ENTITY, LEN, or RENAMING_EXPR
3667 may be NULL, in which case they are not assigned.
3668
3669 [Currently, however, GCC does not generate subprogram renamings.] */
3670
3671enum ada_renaming_category
3672ada_parse_renaming (struct symbol *sym,
3673 const char **renamed_entity, int *len,
3674 const char **renaming_expr)
3675{
3676 enum ada_renaming_category kind;
3677 const char *info;
3678 const char *suffix;
3679
3680 if (sym == NULL)
3681 return ADA_NOT_RENAMING;
3682 switch (SYMBOL_CLASS (sym))
14f9c5c9 3683 {
aeb5907d
JB
3684 default:
3685 return ADA_NOT_RENAMING;
3686 case LOC_TYPEDEF:
3687 return parse_old_style_renaming (SYMBOL_TYPE (sym),
3688 renamed_entity, len, renaming_expr);
3689 case LOC_LOCAL:
3690 case LOC_STATIC:
3691 case LOC_COMPUTED:
3692 case LOC_OPTIMIZED_OUT:
3693 info = strstr (SYMBOL_LINKAGE_NAME (sym), "___XR");
3694 if (info == NULL)
3695 return ADA_NOT_RENAMING;
3696 switch (info[5])
3697 {
3698 case '_':
3699 kind = ADA_OBJECT_RENAMING;
3700 info += 6;
3701 break;
3702 case 'E':
3703 kind = ADA_EXCEPTION_RENAMING;
3704 info += 7;
3705 break;
3706 case 'P':
3707 kind = ADA_PACKAGE_RENAMING;
3708 info += 7;
3709 break;
3710 case 'S':
3711 kind = ADA_SUBPROGRAM_RENAMING;
3712 info += 7;
3713 break;
3714 default:
3715 return ADA_NOT_RENAMING;
3716 }
14f9c5c9 3717 }
4c4b4cd2 3718
aeb5907d
JB
3719 if (renamed_entity != NULL)
3720 *renamed_entity = info;
3721 suffix = strstr (info, "___XE");
3722 if (suffix == NULL || suffix == info)
3723 return ADA_NOT_RENAMING;
3724 if (len != NULL)
3725 *len = strlen (info) - strlen (suffix);
3726 suffix += 5;
3727 if (renaming_expr != NULL)
3728 *renaming_expr = suffix;
3729 return kind;
3730}
3731
3732/* Assuming TYPE encodes a renaming according to the old encoding in
3733 exp_dbug.ads, returns details of that renaming in *RENAMED_ENTITY,
3734 *LEN, and *RENAMING_EXPR, as for ada_parse_renaming, above. Returns
3735 ADA_NOT_RENAMING otherwise. */
3736static enum ada_renaming_category
3737parse_old_style_renaming (struct type *type,
3738 const char **renamed_entity, int *len,
3739 const char **renaming_expr)
3740{
3741 enum ada_renaming_category kind;
3742 const char *name;
3743 const char *info;
3744 const char *suffix;
14f9c5c9 3745
aeb5907d
JB
3746 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM
3747 || TYPE_NFIELDS (type) != 1)
3748 return ADA_NOT_RENAMING;
14f9c5c9 3749
aeb5907d
JB
3750 name = type_name_no_tag (type);
3751 if (name == NULL)
3752 return ADA_NOT_RENAMING;
3753
3754 name = strstr (name, "___XR");
3755 if (name == NULL)
3756 return ADA_NOT_RENAMING;
3757 switch (name[5])
3758 {
3759 case '\0':
3760 case '_':
3761 kind = ADA_OBJECT_RENAMING;
3762 break;
3763 case 'E':
3764 kind = ADA_EXCEPTION_RENAMING;
3765 break;
3766 case 'P':
3767 kind = ADA_PACKAGE_RENAMING;
3768 break;
3769 case 'S':
3770 kind = ADA_SUBPROGRAM_RENAMING;
3771 break;
3772 default:
3773 return ADA_NOT_RENAMING;
3774 }
14f9c5c9 3775
aeb5907d
JB
3776 info = TYPE_FIELD_NAME (type, 0);
3777 if (info == NULL)
3778 return ADA_NOT_RENAMING;
3779 if (renamed_entity != NULL)
3780 *renamed_entity = info;
3781 suffix = strstr (info, "___XE");
3782 if (renaming_expr != NULL)
3783 *renaming_expr = suffix + 5;
3784 if (suffix == NULL || suffix == info)
3785 return ADA_NOT_RENAMING;
3786 if (len != NULL)
3787 *len = suffix - info;
3788 return kind;
3789}
52ce6436 3790
14f9c5c9 3791\f
d2e4a39e 3792
4c4b4cd2 3793 /* Evaluation: Function Calls */
14f9c5c9 3794
4c4b4cd2
PH
3795/* Return an lvalue containing the value VAL. This is the identity on
3796 lvalues, and otherwise has the side-effect of pushing a copy of VAL
3797 on the stack, using and updating *SP as the stack pointer, and
42ae5230 3798 returning an lvalue whose value_address points to the copy. */
14f9c5c9 3799
d2e4a39e 3800static struct value *
4a399546 3801ensure_lval (struct value *val, struct gdbarch *gdbarch, CORE_ADDR *sp)
14f9c5c9 3802{
c3e5cd34
PH
3803 if (! VALUE_LVAL (val))
3804 {
df407dfe 3805 int len = TYPE_LENGTH (ada_check_typedef (value_type (val)));
c3e5cd34
PH
3806
3807 /* The following is taken from the structure-return code in
3808 call_function_by_hand. FIXME: Therefore, some refactoring seems
3809 indicated. */
4a399546 3810 if (gdbarch_inner_than (gdbarch, 1, 2))
c3e5cd34 3811 {
42ae5230 3812 /* Stack grows downward. Align SP and value_address (val) after
c3e5cd34
PH
3813 reserving sufficient space. */
3814 *sp -= len;
4a399546
UW
3815 if (gdbarch_frame_align_p (gdbarch))
3816 *sp = gdbarch_frame_align (gdbarch, *sp);
42ae5230 3817 set_value_address (val, *sp);
c3e5cd34
PH
3818 }
3819 else
3820 {
3821 /* Stack grows upward. Align the frame, allocate space, and
3822 then again, re-align the frame. */
4a399546
UW
3823 if (gdbarch_frame_align_p (gdbarch))
3824 *sp = gdbarch_frame_align (gdbarch, *sp);
42ae5230 3825 set_value_address (val, *sp);
c3e5cd34 3826 *sp += len;
4a399546
UW
3827 if (gdbarch_frame_align_p (gdbarch))
3828 *sp = gdbarch_frame_align (gdbarch, *sp);
c3e5cd34 3829 }
a84a8a0d 3830 VALUE_LVAL (val) = lval_memory;
14f9c5c9 3831
42ae5230 3832 write_memory (value_address (val), value_contents_raw (val), len);
c3e5cd34 3833 }
14f9c5c9
AS
3834
3835 return val;
3836}
3837
3838/* Return the value ACTUAL, converted to be an appropriate value for a
3839 formal of type FORMAL_TYPE. Use *SP as a stack pointer for
3840 allocating any necessary descriptors (fat pointers), or copies of
4c4b4cd2 3841 values not residing in memory, updating it as needed. */
14f9c5c9 3842
a93c0eb6
JB
3843struct value *
3844ada_convert_actual (struct value *actual, struct type *formal_type0,
4a399546 3845 struct gdbarch *gdbarch, CORE_ADDR *sp)
14f9c5c9 3846{
df407dfe 3847 struct type *actual_type = ada_check_typedef (value_type (actual));
61ee279c 3848 struct type *formal_type = ada_check_typedef (formal_type0);
d2e4a39e
AS
3849 struct type *formal_target =
3850 TYPE_CODE (formal_type) == TYPE_CODE_PTR
61ee279c 3851 ? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type;
d2e4a39e
AS
3852 struct type *actual_target =
3853 TYPE_CODE (actual_type) == TYPE_CODE_PTR
61ee279c 3854 ? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type;
14f9c5c9 3855
4c4b4cd2 3856 if (ada_is_array_descriptor_type (formal_target)
14f9c5c9 3857 && TYPE_CODE (actual_target) == TYPE_CODE_ARRAY)
4a399546 3858 return make_array_descriptor (formal_type, actual, gdbarch, sp);
a84a8a0d
JB
3859 else if (TYPE_CODE (formal_type) == TYPE_CODE_PTR
3860 || TYPE_CODE (formal_type) == TYPE_CODE_REF)
14f9c5c9 3861 {
a84a8a0d 3862 struct value *result;
14f9c5c9 3863 if (TYPE_CODE (formal_target) == TYPE_CODE_ARRAY
4c4b4cd2 3864 && ada_is_array_descriptor_type (actual_target))
a84a8a0d 3865 result = desc_data (actual);
14f9c5c9 3866 else if (TYPE_CODE (actual_type) != TYPE_CODE_PTR)
4c4b4cd2
PH
3867 {
3868 if (VALUE_LVAL (actual) != lval_memory)
3869 {
3870 struct value *val;
df407dfe 3871 actual_type = ada_check_typedef (value_type (actual));
4c4b4cd2 3872 val = allocate_value (actual_type);
990a07ab 3873 memcpy ((char *) value_contents_raw (val),
0fd88904 3874 (char *) value_contents (actual),
4c4b4cd2 3875 TYPE_LENGTH (actual_type));
4a399546 3876 actual = ensure_lval (val, gdbarch, sp);
4c4b4cd2 3877 }
a84a8a0d 3878 result = value_addr (actual);
4c4b4cd2 3879 }
a84a8a0d
JB
3880 else
3881 return actual;
3882 return value_cast_pointers (formal_type, result);
14f9c5c9
AS
3883 }
3884 else if (TYPE_CODE (actual_type) == TYPE_CODE_PTR)
3885 return ada_value_ind (actual);
3886
3887 return actual;
3888}
3889
3890
4c4b4cd2
PH
3891/* Push a descriptor of type TYPE for array value ARR on the stack at
3892 *SP, updating *SP to reflect the new descriptor. Return either
14f9c5c9 3893 an lvalue representing the new descriptor, or (if TYPE is a pointer-
4c4b4cd2
PH
3894 to-descriptor type rather than a descriptor type), a struct value *
3895 representing a pointer to this descriptor. */
14f9c5c9 3896
d2e4a39e 3897static struct value *
4a399546
UW
3898make_array_descriptor (struct type *type, struct value *arr,
3899 struct gdbarch *gdbarch, CORE_ADDR *sp)
14f9c5c9 3900{
d2e4a39e
AS
3901 struct type *bounds_type = desc_bounds_type (type);
3902 struct type *desc_type = desc_base_type (type);
3903 struct value *descriptor = allocate_value (desc_type);
3904 struct value *bounds = allocate_value (bounds_type);
14f9c5c9 3905 int i;
d2e4a39e 3906
df407dfe 3907 for (i = ada_array_arity (ada_check_typedef (value_type (arr))); i > 0; i -= 1)
14f9c5c9 3908 {
50810684
UW
3909 modify_general_field (value_type (bounds),
3910 value_contents_writeable (bounds),
1eea4ebd 3911 ada_array_bound (arr, i, 0),
4c4b4cd2
PH
3912 desc_bound_bitpos (bounds_type, i, 0),
3913 desc_bound_bitsize (bounds_type, i, 0));
50810684
UW
3914 modify_general_field (value_type (bounds),
3915 value_contents_writeable (bounds),
1eea4ebd 3916 ada_array_bound (arr, i, 1),
4c4b4cd2
PH
3917 desc_bound_bitpos (bounds_type, i, 1),
3918 desc_bound_bitsize (bounds_type, i, 1));
14f9c5c9 3919 }
d2e4a39e 3920
4a399546 3921 bounds = ensure_lval (bounds, gdbarch, sp);
d2e4a39e 3922
50810684
UW
3923 modify_general_field (value_type (descriptor),
3924 value_contents_writeable (descriptor),
4a399546 3925 value_address (ensure_lval (arr, gdbarch, sp)),
76a01679
JB
3926 fat_pntr_data_bitpos (desc_type),
3927 fat_pntr_data_bitsize (desc_type));
4c4b4cd2 3928
50810684
UW
3929 modify_general_field (value_type (descriptor),
3930 value_contents_writeable (descriptor),
42ae5230 3931 value_address (bounds),
4c4b4cd2
PH
3932 fat_pntr_bounds_bitpos (desc_type),
3933 fat_pntr_bounds_bitsize (desc_type));
14f9c5c9 3934
4a399546 3935 descriptor = ensure_lval (descriptor, gdbarch, sp);
14f9c5c9
AS
3936
3937 if (TYPE_CODE (type) == TYPE_CODE_PTR)
3938 return value_addr (descriptor);
3939 else
3940 return descriptor;
3941}
14f9c5c9 3942\f
963a6417
PH
3943/* Dummy definitions for an experimental caching module that is not
3944 * used in the public sources. */
96d887e8 3945
96d887e8
PH
3946static int
3947lookup_cached_symbol (const char *name, domain_enum namespace,
2570f2b7 3948 struct symbol **sym, struct block **block)
96d887e8
PH
3949{
3950 return 0;
3951}
3952
3953static void
3954cache_symbol (const char *name, domain_enum namespace, struct symbol *sym,
2570f2b7 3955 struct block *block)
96d887e8
PH
3956{
3957}
4c4b4cd2
PH
3958\f
3959 /* Symbol Lookup */
3960
3961/* Return the result of a standard (literal, C-like) lookup of NAME in
3962 given DOMAIN, visible from lexical block BLOCK. */
3963
3964static struct symbol *
3965standard_lookup (const char *name, const struct block *block,
3966 domain_enum domain)
3967{
3968 struct symbol *sym;
4c4b4cd2 3969
2570f2b7 3970 if (lookup_cached_symbol (name, domain, &sym, NULL))
4c4b4cd2 3971 return sym;
2570f2b7
UW
3972 sym = lookup_symbol_in_language (name, block, domain, language_c, 0);
3973 cache_symbol (name, domain, sym, block_found);
4c4b4cd2
PH
3974 return sym;
3975}
3976
3977
3978/* Non-zero iff there is at least one non-function/non-enumeral symbol
3979 in the symbol fields of SYMS[0..N-1]. We treat enumerals as functions,
3980 since they contend in overloading in the same way. */
3981static int
3982is_nonfunction (struct ada_symbol_info syms[], int n)
3983{
3984 int i;
3985
3986 for (i = 0; i < n; i += 1)
3987 if (TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) != TYPE_CODE_FUNC
3988 && (TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) != TYPE_CODE_ENUM
3989 || SYMBOL_CLASS (syms[i].sym) != LOC_CONST))
14f9c5c9
AS
3990 return 1;
3991
3992 return 0;
3993}
3994
3995/* If true (non-zero), then TYPE0 and TYPE1 represent equivalent
4c4b4cd2 3996 struct types. Otherwise, they may not. */
14f9c5c9
AS
3997
3998static int
d2e4a39e 3999equiv_types (struct type *type0, struct type *type1)
14f9c5c9 4000{
d2e4a39e 4001 if (type0 == type1)
14f9c5c9 4002 return 1;
d2e4a39e 4003 if (type0 == NULL || type1 == NULL
14f9c5c9
AS
4004 || TYPE_CODE (type0) != TYPE_CODE (type1))
4005 return 0;
d2e4a39e 4006 if ((TYPE_CODE (type0) == TYPE_CODE_STRUCT
14f9c5c9
AS
4007 || TYPE_CODE (type0) == TYPE_CODE_ENUM)
4008 && ada_type_name (type0) != NULL && ada_type_name (type1) != NULL
4c4b4cd2 4009 && strcmp (ada_type_name (type0), ada_type_name (type1)) == 0)
14f9c5c9 4010 return 1;
d2e4a39e 4011
14f9c5c9
AS
4012 return 0;
4013}
4014
4015/* True iff SYM0 represents the same entity as SYM1, or one that is
4c4b4cd2 4016 no more defined than that of SYM1. */
14f9c5c9
AS
4017
4018static int
d2e4a39e 4019lesseq_defined_than (struct symbol *sym0, struct symbol *sym1)
14f9c5c9
AS
4020{
4021 if (sym0 == sym1)
4022 return 1;
176620f1 4023 if (SYMBOL_DOMAIN (sym0) != SYMBOL_DOMAIN (sym1)
14f9c5c9
AS
4024 || SYMBOL_CLASS (sym0) != SYMBOL_CLASS (sym1))
4025 return 0;
4026
d2e4a39e 4027 switch (SYMBOL_CLASS (sym0))
14f9c5c9
AS
4028 {
4029 case LOC_UNDEF:
4030 return 1;
4031 case LOC_TYPEDEF:
4032 {
4c4b4cd2
PH
4033 struct type *type0 = SYMBOL_TYPE (sym0);
4034 struct type *type1 = SYMBOL_TYPE (sym1);
4035 char *name0 = SYMBOL_LINKAGE_NAME (sym0);
4036 char *name1 = SYMBOL_LINKAGE_NAME (sym1);
4037 int len0 = strlen (name0);
4038 return
4039 TYPE_CODE (type0) == TYPE_CODE (type1)
4040 && (equiv_types (type0, type1)
4041 || (len0 < strlen (name1) && strncmp (name0, name1, len0) == 0
4042 && strncmp (name1 + len0, "___XV", 5) == 0));
14f9c5c9
AS
4043 }
4044 case LOC_CONST:
4045 return SYMBOL_VALUE (sym0) == SYMBOL_VALUE (sym1)
4c4b4cd2 4046 && equiv_types (SYMBOL_TYPE (sym0), SYMBOL_TYPE (sym1));
d2e4a39e
AS
4047 default:
4048 return 0;
14f9c5c9
AS
4049 }
4050}
4051
4c4b4cd2
PH
4052/* Append (SYM,BLOCK,SYMTAB) to the end of the array of struct ada_symbol_info
4053 records in OBSTACKP. Do nothing if SYM is a duplicate. */
14f9c5c9
AS
4054
4055static void
76a01679
JB
4056add_defn_to_vec (struct obstack *obstackp,
4057 struct symbol *sym,
2570f2b7 4058 struct block *block)
14f9c5c9
AS
4059{
4060 int i;
4061 size_t tmp;
4c4b4cd2 4062 struct ada_symbol_info *prevDefns = defns_collected (obstackp, 0);
14f9c5c9 4063
529cad9c
PH
4064 /* Do not try to complete stub types, as the debugger is probably
4065 already scanning all symbols matching a certain name at the
4066 time when this function is called. Trying to replace the stub
4067 type by its associated full type will cause us to restart a scan
4068 which may lead to an infinite recursion. Instead, the client
4069 collecting the matching symbols will end up collecting several
4070 matches, with at least one of them complete. It can then filter
4071 out the stub ones if needed. */
4072
4c4b4cd2
PH
4073 for (i = num_defns_collected (obstackp) - 1; i >= 0; i -= 1)
4074 {
4075 if (lesseq_defined_than (sym, prevDefns[i].sym))
4076 return;
4077 else if (lesseq_defined_than (prevDefns[i].sym, sym))
4078 {
4079 prevDefns[i].sym = sym;
4080 prevDefns[i].block = block;
4c4b4cd2 4081 return;
76a01679 4082 }
4c4b4cd2
PH
4083 }
4084
4085 {
4086 struct ada_symbol_info info;
4087
4088 info.sym = sym;
4089 info.block = block;
4c4b4cd2
PH
4090 obstack_grow (obstackp, &info, sizeof (struct ada_symbol_info));
4091 }
4092}
4093
4094/* Number of ada_symbol_info structures currently collected in
4095 current vector in *OBSTACKP. */
4096
76a01679
JB
4097static int
4098num_defns_collected (struct obstack *obstackp)
4c4b4cd2
PH
4099{
4100 return obstack_object_size (obstackp) / sizeof (struct ada_symbol_info);
4101}
4102
4103/* Vector of ada_symbol_info structures currently collected in current
4104 vector in *OBSTACKP. If FINISH, close off the vector and return
4105 its final address. */
4106
76a01679 4107static struct ada_symbol_info *
4c4b4cd2
PH
4108defns_collected (struct obstack *obstackp, int finish)
4109{
4110 if (finish)
4111 return obstack_finish (obstackp);
4112 else
4113 return (struct ada_symbol_info *) obstack_base (obstackp);
4114}
4115
96d887e8
PH
4116/* Look, in partial_symtab PST, for symbol NAME in given namespace.
4117 Check the global symbols if GLOBAL, the static symbols if not.
4118 Do wild-card match if WILD. */
4c4b4cd2 4119
96d887e8
PH
4120static struct partial_symbol *
4121ada_lookup_partial_symbol (struct partial_symtab *pst, const char *name,
4122 int global, domain_enum namespace, int wild)
4c4b4cd2 4123{
96d887e8
PH
4124 struct partial_symbol **start;
4125 int name_len = strlen (name);
4126 int length = (global ? pst->n_global_syms : pst->n_static_syms);
4127 int i;
4c4b4cd2 4128
96d887e8 4129 if (length == 0)
4c4b4cd2 4130 {
96d887e8 4131 return (NULL);
4c4b4cd2
PH
4132 }
4133
96d887e8
PH
4134 start = (global ?
4135 pst->objfile->global_psymbols.list + pst->globals_offset :
4136 pst->objfile->static_psymbols.list + pst->statics_offset);
4c4b4cd2 4137
96d887e8 4138 if (wild)
4c4b4cd2 4139 {
96d887e8
PH
4140 for (i = 0; i < length; i += 1)
4141 {
4142 struct partial_symbol *psym = start[i];
4c4b4cd2 4143
5eeb2539
AR
4144 if (symbol_matches_domain (SYMBOL_LANGUAGE (psym),
4145 SYMBOL_DOMAIN (psym), namespace)
1265e4aa 4146 && wild_match (name, name_len, SYMBOL_LINKAGE_NAME (psym)))
96d887e8
PH
4147 return psym;
4148 }
4149 return NULL;
4c4b4cd2 4150 }
96d887e8
PH
4151 else
4152 {
4153 if (global)
4154 {
4155 int U;
4156 i = 0;
4157 U = length - 1;
4158 while (U - i > 4)
4159 {
4160 int M = (U + i) >> 1;
4161 struct partial_symbol *psym = start[M];
4162 if (SYMBOL_LINKAGE_NAME (psym)[0] < name[0])
4163 i = M + 1;
4164 else if (SYMBOL_LINKAGE_NAME (psym)[0] > name[0])
4165 U = M - 1;
4166 else if (strcmp (SYMBOL_LINKAGE_NAME (psym), name) < 0)
4167 i = M + 1;
4168 else
4169 U = M;
4170 }
4171 }
4172 else
4173 i = 0;
4c4b4cd2 4174
96d887e8
PH
4175 while (i < length)
4176 {
4177 struct partial_symbol *psym = start[i];
4c4b4cd2 4178
5eeb2539
AR
4179 if (symbol_matches_domain (SYMBOL_LANGUAGE (psym),
4180 SYMBOL_DOMAIN (psym), namespace))
96d887e8
PH
4181 {
4182 int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym), name_len);
4c4b4cd2 4183
96d887e8
PH
4184 if (cmp < 0)
4185 {
4186 if (global)
4187 break;
4188 }
4189 else if (cmp == 0
4190 && is_name_suffix (SYMBOL_LINKAGE_NAME (psym)
76a01679 4191 + name_len))
96d887e8
PH
4192 return psym;
4193 }
4194 i += 1;
4195 }
4c4b4cd2 4196
96d887e8
PH
4197 if (global)
4198 {
4199 int U;
4200 i = 0;
4201 U = length - 1;
4202 while (U - i > 4)
4203 {
4204 int M = (U + i) >> 1;
4205 struct partial_symbol *psym = start[M];
4206 if (SYMBOL_LINKAGE_NAME (psym)[0] < '_')
4207 i = M + 1;
4208 else if (SYMBOL_LINKAGE_NAME (psym)[0] > '_')
4209 U = M - 1;
4210 else if (strcmp (SYMBOL_LINKAGE_NAME (psym), "_ada_") < 0)
4211 i = M + 1;
4212 else
4213 U = M;
4214 }
4215 }
4216 else
4217 i = 0;
4c4b4cd2 4218
96d887e8
PH
4219 while (i < length)
4220 {
4221 struct partial_symbol *psym = start[i];
4c4b4cd2 4222
5eeb2539
AR
4223 if (symbol_matches_domain (SYMBOL_LANGUAGE (psym),
4224 SYMBOL_DOMAIN (psym), namespace))
96d887e8
PH
4225 {
4226 int cmp;
4c4b4cd2 4227
96d887e8
PH
4228 cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (psym)[0];
4229 if (cmp == 0)
4230 {
4231 cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (psym), 5);
4232 if (cmp == 0)
4233 cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym) + 5,
76a01679 4234 name_len);
96d887e8 4235 }
4c4b4cd2 4236
96d887e8
PH
4237 if (cmp < 0)
4238 {
4239 if (global)
4240 break;
4241 }
4242 else if (cmp == 0
4243 && is_name_suffix (SYMBOL_LINKAGE_NAME (psym)
76a01679 4244 + name_len + 5))
96d887e8
PH
4245 return psym;
4246 }
4247 i += 1;
4248 }
4249 }
4250 return NULL;
4c4b4cd2
PH
4251}
4252
96d887e8
PH
4253/* Return a minimal symbol matching NAME according to Ada decoding
4254 rules. Returns NULL if there is no such minimal symbol. Names
4255 prefixed with "standard__" are handled specially: "standard__" is
4256 first stripped off, and only static and global symbols are searched. */
4c4b4cd2 4257
96d887e8
PH
4258struct minimal_symbol *
4259ada_lookup_simple_minsym (const char *name)
4c4b4cd2 4260{
4c4b4cd2 4261 struct objfile *objfile;
96d887e8
PH
4262 struct minimal_symbol *msymbol;
4263 int wild_match;
4c4b4cd2 4264
96d887e8 4265 if (strncmp (name, "standard__", sizeof ("standard__") - 1) == 0)
4c4b4cd2 4266 {
96d887e8 4267 name += sizeof ("standard__") - 1;
4c4b4cd2 4268 wild_match = 0;
4c4b4cd2
PH
4269 }
4270 else
96d887e8 4271 wild_match = (strstr (name, "__") == NULL);
4c4b4cd2 4272
96d887e8
PH
4273 ALL_MSYMBOLS (objfile, msymbol)
4274 {
4275 if (ada_match_name (SYMBOL_LINKAGE_NAME (msymbol), name, wild_match)
4276 && MSYMBOL_TYPE (msymbol) != mst_solib_trampoline)
4277 return msymbol;
4278 }
4c4b4cd2 4279
96d887e8
PH
4280 return NULL;
4281}
4c4b4cd2 4282
96d887e8
PH
4283/* For all subprograms that statically enclose the subprogram of the
4284 selected frame, add symbols matching identifier NAME in DOMAIN
4285 and their blocks to the list of data in OBSTACKP, as for
4286 ada_add_block_symbols (q.v.). If WILD, treat as NAME with a
4287 wildcard prefix. */
4c4b4cd2 4288
96d887e8
PH
4289static void
4290add_symbols_from_enclosing_procs (struct obstack *obstackp,
76a01679 4291 const char *name, domain_enum namespace,
96d887e8
PH
4292 int wild_match)
4293{
96d887e8 4294}
14f9c5c9 4295
96d887e8
PH
4296/* True if TYPE is definitely an artificial type supplied to a symbol
4297 for which no debugging information was given in the symbol file. */
14f9c5c9 4298
96d887e8
PH
4299static int
4300is_nondebugging_type (struct type *type)
4301{
4302 char *name = ada_type_name (type);
4303 return (name != NULL && strcmp (name, "<variable, no debug info>") == 0);
4304}
4c4b4cd2 4305
96d887e8
PH
4306/* Remove any non-debugging symbols in SYMS[0 .. NSYMS-1] that definitely
4307 duplicate other symbols in the list (The only case I know of where
4308 this happens is when object files containing stabs-in-ecoff are
4309 linked with files containing ordinary ecoff debugging symbols (or no
4310 debugging symbols)). Modifies SYMS to squeeze out deleted entries.
4311 Returns the number of items in the modified list. */
4c4b4cd2 4312
96d887e8
PH
4313static int
4314remove_extra_symbols (struct ada_symbol_info *syms, int nsyms)
4315{
4316 int i, j;
4c4b4cd2 4317
96d887e8
PH
4318 i = 0;
4319 while (i < nsyms)
4320 {
339c13b6
JB
4321 int remove = 0;
4322
4323 /* If two symbols have the same name and one of them is a stub type,
4324 the get rid of the stub. */
4325
4326 if (TYPE_STUB (SYMBOL_TYPE (syms[i].sym))
4327 && SYMBOL_LINKAGE_NAME (syms[i].sym) != NULL)
4328 {
4329 for (j = 0; j < nsyms; j++)
4330 {
4331 if (j != i
4332 && !TYPE_STUB (SYMBOL_TYPE (syms[j].sym))
4333 && SYMBOL_LINKAGE_NAME (syms[j].sym) != NULL
4334 && strcmp (SYMBOL_LINKAGE_NAME (syms[i].sym),
4335 SYMBOL_LINKAGE_NAME (syms[j].sym)) == 0)
4336 remove = 1;
4337 }
4338 }
4339
4340 /* Two symbols with the same name, same class and same address
4341 should be identical. */
4342
4343 else if (SYMBOL_LINKAGE_NAME (syms[i].sym) != NULL
96d887e8
PH
4344 && SYMBOL_CLASS (syms[i].sym) == LOC_STATIC
4345 && is_nondebugging_type (SYMBOL_TYPE (syms[i].sym)))
4346 {
4347 for (j = 0; j < nsyms; j += 1)
4348 {
4349 if (i != j
4350 && SYMBOL_LINKAGE_NAME (syms[j].sym) != NULL
4351 && strcmp (SYMBOL_LINKAGE_NAME (syms[i].sym),
76a01679 4352 SYMBOL_LINKAGE_NAME (syms[j].sym)) == 0
96d887e8
PH
4353 && SYMBOL_CLASS (syms[i].sym) == SYMBOL_CLASS (syms[j].sym)
4354 && SYMBOL_VALUE_ADDRESS (syms[i].sym)
4355 == SYMBOL_VALUE_ADDRESS (syms[j].sym))
339c13b6 4356 remove = 1;
4c4b4cd2 4357 }
4c4b4cd2 4358 }
339c13b6
JB
4359
4360 if (remove)
4361 {
4362 for (j = i + 1; j < nsyms; j += 1)
4363 syms[j - 1] = syms[j];
4364 nsyms -= 1;
4365 }
4366
96d887e8 4367 i += 1;
14f9c5c9 4368 }
96d887e8 4369 return nsyms;
14f9c5c9
AS
4370}
4371
96d887e8
PH
4372/* Given a type that corresponds to a renaming entity, use the type name
4373 to extract the scope (package name or function name, fully qualified,
4374 and following the GNAT encoding convention) where this renaming has been
4375 defined. The string returned needs to be deallocated after use. */
4c4b4cd2 4376
96d887e8
PH
4377static char *
4378xget_renaming_scope (struct type *renaming_type)
14f9c5c9 4379{
96d887e8
PH
4380 /* The renaming types adhere to the following convention:
4381 <scope>__<rename>___<XR extension>.
4382 So, to extract the scope, we search for the "___XR" extension,
4383 and then backtrack until we find the first "__". */
76a01679 4384
96d887e8
PH
4385 const char *name = type_name_no_tag (renaming_type);
4386 char *suffix = strstr (name, "___XR");
4387 char *last;
4388 int scope_len;
4389 char *scope;
14f9c5c9 4390
96d887e8
PH
4391 /* Now, backtrack a bit until we find the first "__". Start looking
4392 at suffix - 3, as the <rename> part is at least one character long. */
14f9c5c9 4393
96d887e8
PH
4394 for (last = suffix - 3; last > name; last--)
4395 if (last[0] == '_' && last[1] == '_')
4396 break;
76a01679 4397
96d887e8 4398 /* Make a copy of scope and return it. */
14f9c5c9 4399
96d887e8
PH
4400 scope_len = last - name;
4401 scope = (char *) xmalloc ((scope_len + 1) * sizeof (char));
14f9c5c9 4402
96d887e8
PH
4403 strncpy (scope, name, scope_len);
4404 scope[scope_len] = '\0';
4c4b4cd2 4405
96d887e8 4406 return scope;
4c4b4cd2
PH
4407}
4408
96d887e8 4409/* Return nonzero if NAME corresponds to a package name. */
4c4b4cd2 4410
96d887e8
PH
4411static int
4412is_package_name (const char *name)
4c4b4cd2 4413{
96d887e8
PH
4414 /* Here, We take advantage of the fact that no symbols are generated
4415 for packages, while symbols are generated for each function.
4416 So the condition for NAME represent a package becomes equivalent
4417 to NAME not existing in our list of symbols. There is only one
4418 small complication with library-level functions (see below). */
4c4b4cd2 4419
96d887e8 4420 char *fun_name;
76a01679 4421
96d887e8
PH
4422 /* If it is a function that has not been defined at library level,
4423 then we should be able to look it up in the symbols. */
4424 if (standard_lookup (name, NULL, VAR_DOMAIN) != NULL)
4425 return 0;
14f9c5c9 4426
96d887e8
PH
4427 /* Library-level function names start with "_ada_". See if function
4428 "_ada_" followed by NAME can be found. */
14f9c5c9 4429
96d887e8 4430 /* Do a quick check that NAME does not contain "__", since library-level
e1d5a0d2 4431 functions names cannot contain "__" in them. */
96d887e8
PH
4432 if (strstr (name, "__") != NULL)
4433 return 0;
4c4b4cd2 4434
b435e160 4435 fun_name = xstrprintf ("_ada_%s", name);
14f9c5c9 4436
96d887e8
PH
4437 return (standard_lookup (fun_name, NULL, VAR_DOMAIN) == NULL);
4438}
14f9c5c9 4439
96d887e8 4440/* Return nonzero if SYM corresponds to a renaming entity that is
aeb5907d 4441 not visible from FUNCTION_NAME. */
14f9c5c9 4442
96d887e8 4443static int
aeb5907d 4444old_renaming_is_invisible (const struct symbol *sym, char *function_name)
96d887e8 4445{
aeb5907d
JB
4446 char *scope;
4447
4448 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
4449 return 0;
4450
4451 scope = xget_renaming_scope (SYMBOL_TYPE (sym));
d2e4a39e 4452
96d887e8 4453 make_cleanup (xfree, scope);
14f9c5c9 4454
96d887e8
PH
4455 /* If the rename has been defined in a package, then it is visible. */
4456 if (is_package_name (scope))
aeb5907d 4457 return 0;
14f9c5c9 4458
96d887e8
PH
4459 /* Check that the rename is in the current function scope by checking
4460 that its name starts with SCOPE. */
76a01679 4461
96d887e8
PH
4462 /* If the function name starts with "_ada_", it means that it is
4463 a library-level function. Strip this prefix before doing the
4464 comparison, as the encoding for the renaming does not contain
4465 this prefix. */
4466 if (strncmp (function_name, "_ada_", 5) == 0)
4467 function_name += 5;
f26caa11 4468
aeb5907d 4469 return (strncmp (function_name, scope, strlen (scope)) != 0);
f26caa11
PH
4470}
4471
aeb5907d
JB
4472/* Remove entries from SYMS that corresponds to a renaming entity that
4473 is not visible from the function associated with CURRENT_BLOCK or
4474 that is superfluous due to the presence of more specific renaming
4475 information. Places surviving symbols in the initial entries of
4476 SYMS and returns the number of surviving symbols.
96d887e8
PH
4477
4478 Rationale:
aeb5907d
JB
4479 First, in cases where an object renaming is implemented as a
4480 reference variable, GNAT may produce both the actual reference
4481 variable and the renaming encoding. In this case, we discard the
4482 latter.
4483
4484 Second, GNAT emits a type following a specified encoding for each renaming
96d887e8
PH
4485 entity. Unfortunately, STABS currently does not support the definition
4486 of types that are local to a given lexical block, so all renamings types
4487 are emitted at library level. As a consequence, if an application
4488 contains two renaming entities using the same name, and a user tries to
4489 print the value of one of these entities, the result of the ada symbol
4490 lookup will also contain the wrong renaming type.
f26caa11 4491
96d887e8
PH
4492 This function partially covers for this limitation by attempting to
4493 remove from the SYMS list renaming symbols that should be visible
4494 from CURRENT_BLOCK. However, there does not seem be a 100% reliable
4495 method with the current information available. The implementation
4496 below has a couple of limitations (FIXME: brobecker-2003-05-12):
4497
4498 - When the user tries to print a rename in a function while there
4499 is another rename entity defined in a package: Normally, the
4500 rename in the function has precedence over the rename in the
4501 package, so the latter should be removed from the list. This is
4502 currently not the case.
4503
4504 - This function will incorrectly remove valid renames if
4505 the CURRENT_BLOCK corresponds to a function which symbol name
4506 has been changed by an "Export" pragma. As a consequence,
4507 the user will be unable to print such rename entities. */
4c4b4cd2 4508
14f9c5c9 4509static int
aeb5907d
JB
4510remove_irrelevant_renamings (struct ada_symbol_info *syms,
4511 int nsyms, const struct block *current_block)
4c4b4cd2
PH
4512{
4513 struct symbol *current_function;
4514 char *current_function_name;
4515 int i;
aeb5907d
JB
4516 int is_new_style_renaming;
4517
4518 /* If there is both a renaming foo___XR... encoded as a variable and
4519 a simple variable foo in the same block, discard the latter.
4520 First, zero out such symbols, then compress. */
4521 is_new_style_renaming = 0;
4522 for (i = 0; i < nsyms; i += 1)
4523 {
4524 struct symbol *sym = syms[i].sym;
4525 struct block *block = syms[i].block;
4526 const char *name;
4527 const char *suffix;
4528
4529 if (sym == NULL || SYMBOL_CLASS (sym) == LOC_TYPEDEF)
4530 continue;
4531 name = SYMBOL_LINKAGE_NAME (sym);
4532 suffix = strstr (name, "___XR");
4533
4534 if (suffix != NULL)
4535 {
4536 int name_len = suffix - name;
4537 int j;
4538 is_new_style_renaming = 1;
4539 for (j = 0; j < nsyms; j += 1)
4540 if (i != j && syms[j].sym != NULL
4541 && strncmp (name, SYMBOL_LINKAGE_NAME (syms[j].sym),
4542 name_len) == 0
4543 && block == syms[j].block)
4544 syms[j].sym = NULL;
4545 }
4546 }
4547 if (is_new_style_renaming)
4548 {
4549 int j, k;
4550
4551 for (j = k = 0; j < nsyms; j += 1)
4552 if (syms[j].sym != NULL)
4553 {
4554 syms[k] = syms[j];
4555 k += 1;
4556 }
4557 return k;
4558 }
4c4b4cd2
PH
4559
4560 /* Extract the function name associated to CURRENT_BLOCK.
4561 Abort if unable to do so. */
76a01679 4562
4c4b4cd2
PH
4563 if (current_block == NULL)
4564 return nsyms;
76a01679 4565
7f0df278 4566 current_function = block_linkage_function (current_block);
4c4b4cd2
PH
4567 if (current_function == NULL)
4568 return nsyms;
4569
4570 current_function_name = SYMBOL_LINKAGE_NAME (current_function);
4571 if (current_function_name == NULL)
4572 return nsyms;
4573
4574 /* Check each of the symbols, and remove it from the list if it is
4575 a type corresponding to a renaming that is out of the scope of
4576 the current block. */
4577
4578 i = 0;
4579 while (i < nsyms)
4580 {
aeb5907d
JB
4581 if (ada_parse_renaming (syms[i].sym, NULL, NULL, NULL)
4582 == ADA_OBJECT_RENAMING
4583 && old_renaming_is_invisible (syms[i].sym, current_function_name))
4c4b4cd2
PH
4584 {
4585 int j;
aeb5907d 4586 for (j = i + 1; j < nsyms; j += 1)
76a01679 4587 syms[j - 1] = syms[j];
4c4b4cd2
PH
4588 nsyms -= 1;
4589 }
4590 else
4591 i += 1;
4592 }
4593
4594 return nsyms;
4595}
4596
339c13b6
JB
4597/* Add to OBSTACKP all symbols from BLOCK (and its super-blocks)
4598 whose name and domain match NAME and DOMAIN respectively.
4599 If no match was found, then extend the search to "enclosing"
4600 routines (in other words, if we're inside a nested function,
4601 search the symbols defined inside the enclosing functions).
4602
4603 Note: This function assumes that OBSTACKP has 0 (zero) element in it. */
4604
4605static void
4606ada_add_local_symbols (struct obstack *obstackp, const char *name,
4607 struct block *block, domain_enum domain,
4608 int wild_match)
4609{
4610 int block_depth = 0;
4611
4612 while (block != NULL)
4613 {
4614 block_depth += 1;
4615 ada_add_block_symbols (obstackp, block, name, domain, NULL, wild_match);
4616
4617 /* If we found a non-function match, assume that's the one. */
4618 if (is_nonfunction (defns_collected (obstackp, 0),
4619 num_defns_collected (obstackp)))
4620 return;
4621
4622 block = BLOCK_SUPERBLOCK (block);
4623 }
4624
4625 /* If no luck so far, try to find NAME as a local symbol in some lexically
4626 enclosing subprogram. */
4627 if (num_defns_collected (obstackp) == 0 && block_depth > 2)
4628 add_symbols_from_enclosing_procs (obstackp, name, domain, wild_match);
4629}
4630
4631/* Add to OBSTACKP all non-local symbols whose name and domain match
4632 NAME and DOMAIN respectively. The search is performed on GLOBAL_BLOCK
4633 symbols if GLOBAL is non-zero, or on STATIC_BLOCK symbols otherwise. */
4634
4635static void
4636ada_add_non_local_symbols (struct obstack *obstackp, const char *name,
4637 domain_enum domain, int global,
4638 int wild_match)
4639{
4640 struct objfile *objfile;
4641 struct partial_symtab *ps;
4642
4643 ALL_PSYMTABS (objfile, ps)
4644 {
4645 QUIT;
4646 if (ps->readin
4647 || ada_lookup_partial_symbol (ps, name, global, domain, wild_match))
4648 {
4649 struct symtab *s = PSYMTAB_TO_SYMTAB (ps);
4650 const int block_kind = global ? GLOBAL_BLOCK : STATIC_BLOCK;
4651
4652 if (s == NULL || !s->primary)
4653 continue;
4654 ada_add_block_symbols (obstackp,
4655 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), block_kind),
4656 name, domain, objfile, wild_match);
4657 }
4658 }
4659}
4660
4c4b4cd2
PH
4661/* Find symbols in DOMAIN matching NAME0, in BLOCK0 and enclosing
4662 scope and in global scopes, returning the number of matches. Sets
6c9353d3 4663 *RESULTS to point to a vector of (SYM,BLOCK) tuples,
4c4b4cd2
PH
4664 indicating the symbols found and the blocks and symbol tables (if
4665 any) in which they were found. This vector are transient---good only to
4666 the next call of ada_lookup_symbol_list. Any non-function/non-enumeral
4667 symbol match within the nest of blocks whose innermost member is BLOCK0,
4668 is the one match returned (no other matches in that or
4669 enclosing blocks is returned). If there are any matches in or
4670 surrounding BLOCK0, then these alone are returned. Otherwise, the
4671 search extends to global and file-scope (static) symbol tables.
4672 Names prefixed with "standard__" are handled specially: "standard__"
4673 is first stripped off, and only static and global symbols are searched. */
14f9c5c9
AS
4674
4675int
4c4b4cd2 4676ada_lookup_symbol_list (const char *name0, const struct block *block0,
76a01679
JB
4677 domain_enum namespace,
4678 struct ada_symbol_info **results)
14f9c5c9
AS
4679{
4680 struct symbol *sym;
14f9c5c9 4681 struct block *block;
4c4b4cd2 4682 const char *name;
4c4b4cd2 4683 int wild_match;
14f9c5c9 4684 int cacheIfUnique;
4c4b4cd2 4685 int ndefns;
14f9c5c9 4686
4c4b4cd2
PH
4687 obstack_free (&symbol_list_obstack, NULL);
4688 obstack_init (&symbol_list_obstack);
14f9c5c9 4689
14f9c5c9
AS
4690 cacheIfUnique = 0;
4691
4692 /* Search specified block and its superiors. */
4693
4c4b4cd2
PH
4694 wild_match = (strstr (name0, "__") == NULL);
4695 name = name0;
76a01679
JB
4696 block = (struct block *) block0; /* FIXME: No cast ought to be
4697 needed, but adding const will
4698 have a cascade effect. */
339c13b6
JB
4699
4700 /* Special case: If the user specifies a symbol name inside package
4701 Standard, do a non-wild matching of the symbol name without
4702 the "standard__" prefix. This was primarily introduced in order
4703 to allow the user to specifically access the standard exceptions
4704 using, for instance, Standard.Constraint_Error when Constraint_Error
4705 is ambiguous (due to the user defining its own Constraint_Error
4706 entity inside its program). */
4c4b4cd2
PH
4707 if (strncmp (name0, "standard__", sizeof ("standard__") - 1) == 0)
4708 {
4709 wild_match = 0;
4710 block = NULL;
4711 name = name0 + sizeof ("standard__") - 1;
4712 }
4713
339c13b6 4714 /* Check the non-global symbols. If we have ANY match, then we're done. */
14f9c5c9 4715
339c13b6
JB
4716 ada_add_local_symbols (&symbol_list_obstack, name, block, namespace,
4717 wild_match);
4c4b4cd2 4718 if (num_defns_collected (&symbol_list_obstack) > 0)
14f9c5c9 4719 goto done;
d2e4a39e 4720
339c13b6
JB
4721 /* No non-global symbols found. Check our cache to see if we have
4722 already performed this search before. If we have, then return
4723 the same result. */
4724
14f9c5c9 4725 cacheIfUnique = 1;
2570f2b7 4726 if (lookup_cached_symbol (name0, namespace, &sym, &block))
4c4b4cd2
PH
4727 {
4728 if (sym != NULL)
2570f2b7 4729 add_defn_to_vec (&symbol_list_obstack, sym, block);
4c4b4cd2
PH
4730 goto done;
4731 }
14f9c5c9 4732
339c13b6
JB
4733 /* Search symbols from all global blocks. */
4734
4735 ada_add_non_local_symbols (&symbol_list_obstack, name, namespace, 1,
4736 wild_match);
d2e4a39e 4737
4c4b4cd2 4738 /* Now add symbols from all per-file blocks if we've gotten no hits
339c13b6 4739 (not strictly correct, but perhaps better than an error). */
d2e4a39e 4740
4c4b4cd2 4741 if (num_defns_collected (&symbol_list_obstack) == 0)
339c13b6
JB
4742 ada_add_non_local_symbols (&symbol_list_obstack, name, namespace, 0,
4743 wild_match);
14f9c5c9 4744
4c4b4cd2
PH
4745done:
4746 ndefns = num_defns_collected (&symbol_list_obstack);
4747 *results = defns_collected (&symbol_list_obstack, 1);
4748
4749 ndefns = remove_extra_symbols (*results, ndefns);
4750
d2e4a39e 4751 if (ndefns == 0)
2570f2b7 4752 cache_symbol (name0, namespace, NULL, NULL);
14f9c5c9 4753
4c4b4cd2 4754 if (ndefns == 1 && cacheIfUnique)
2570f2b7 4755 cache_symbol (name0, namespace, (*results)[0].sym, (*results)[0].block);
14f9c5c9 4756
aeb5907d 4757 ndefns = remove_irrelevant_renamings (*results, ndefns, block0);
14f9c5c9 4758
14f9c5c9
AS
4759 return ndefns;
4760}
4761
d2e4a39e 4762struct symbol *
aeb5907d 4763ada_lookup_encoded_symbol (const char *name, const struct block *block0,
21b556f4 4764 domain_enum namespace, struct block **block_found)
14f9c5c9 4765{
4c4b4cd2 4766 struct ada_symbol_info *candidates;
14f9c5c9
AS
4767 int n_candidates;
4768
aeb5907d 4769 n_candidates = ada_lookup_symbol_list (name, block0, namespace, &candidates);
14f9c5c9
AS
4770
4771 if (n_candidates == 0)
4772 return NULL;
4c4b4cd2 4773
aeb5907d
JB
4774 if (block_found != NULL)
4775 *block_found = candidates[0].block;
4c4b4cd2 4776
21b556f4 4777 return fixup_symbol_section (candidates[0].sym, NULL);
aeb5907d
JB
4778}
4779
4780/* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing
4781 scope and in global scopes, or NULL if none. NAME is folded and
4782 encoded first. Otherwise, the result is as for ada_lookup_symbol_list,
4783 choosing the first symbol if there are multiple choices.
4784 *IS_A_FIELD_OF_THIS is set to 0 and *SYMTAB is set to the symbol
4785 table in which the symbol was found (in both cases, these
4786 assignments occur only if the pointers are non-null). */
4787struct symbol *
4788ada_lookup_symbol (const char *name, const struct block *block0,
21b556f4 4789 domain_enum namespace, int *is_a_field_of_this)
aeb5907d
JB
4790{
4791 if (is_a_field_of_this != NULL)
4792 *is_a_field_of_this = 0;
4793
4794 return
4795 ada_lookup_encoded_symbol (ada_encode (ada_fold_name (name)),
21b556f4 4796 block0, namespace, NULL);
4c4b4cd2 4797}
14f9c5c9 4798
4c4b4cd2
PH
4799static struct symbol *
4800ada_lookup_symbol_nonlocal (const char *name,
76a01679
JB
4801 const char *linkage_name,
4802 const struct block *block,
21b556f4 4803 const domain_enum domain)
4c4b4cd2
PH
4804{
4805 if (linkage_name == NULL)
4806 linkage_name = name;
76a01679 4807 return ada_lookup_symbol (linkage_name, block_static_block (block), domain,
21b556f4 4808 NULL);
14f9c5c9
AS
4809}
4810
4811
4c4b4cd2
PH
4812/* True iff STR is a possible encoded suffix of a normal Ada name
4813 that is to be ignored for matching purposes. Suffixes of parallel
4814 names (e.g., XVE) are not included here. Currently, the possible suffixes
5823c3ef 4815 are given by any of the regular expressions:
4c4b4cd2 4816
babe1480
JB
4817 [.$][0-9]+ [nested subprogram suffix, on platforms such as GNU/Linux]
4818 ___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX]
4819 _E[0-9]+[bs]$ [protected object entry suffixes]
61ee279c 4820 (X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$
babe1480
JB
4821
4822 Also, any leading "__[0-9]+" sequence is skipped before the suffix
4823 match is performed. This sequence is used to differentiate homonyms,
4824 is an optional part of a valid name suffix. */
4c4b4cd2 4825
14f9c5c9 4826static int
d2e4a39e 4827is_name_suffix (const char *str)
14f9c5c9
AS
4828{
4829 int k;
4c4b4cd2
PH
4830 const char *matching;
4831 const int len = strlen (str);
4832
babe1480
JB
4833 /* Skip optional leading __[0-9]+. */
4834
4c4b4cd2
PH
4835 if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2]))
4836 {
babe1480
JB
4837 str += 3;
4838 while (isdigit (str[0]))
4839 str += 1;
4c4b4cd2 4840 }
babe1480
JB
4841
4842 /* [.$][0-9]+ */
4c4b4cd2 4843
babe1480 4844 if (str[0] == '.' || str[0] == '$')
4c4b4cd2 4845 {
babe1480 4846 matching = str + 1;
4c4b4cd2
PH
4847 while (isdigit (matching[0]))
4848 matching += 1;
4849 if (matching[0] == '\0')
4850 return 1;
4851 }
4852
4853 /* ___[0-9]+ */
babe1480 4854
4c4b4cd2
PH
4855 if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_')
4856 {
4857 matching = str + 3;
4858 while (isdigit (matching[0]))
4859 matching += 1;
4860 if (matching[0] == '\0')
4861 return 1;
4862 }
4863
529cad9c
PH
4864#if 0
4865 /* FIXME: brobecker/2005-09-23: Protected Object subprograms end
4866 with a N at the end. Unfortunately, the compiler uses the same
4867 convention for other internal types it creates. So treating
4868 all entity names that end with an "N" as a name suffix causes
4869 some regressions. For instance, consider the case of an enumerated
4870 type. To support the 'Image attribute, it creates an array whose
4871 name ends with N.
4872 Having a single character like this as a suffix carrying some
4873 information is a bit risky. Perhaps we should change the encoding
4874 to be something like "_N" instead. In the meantime, do not do
4875 the following check. */
4876 /* Protected Object Subprograms */
4877 if (len == 1 && str [0] == 'N')
4878 return 1;
4879#endif
4880
4881 /* _E[0-9]+[bs]$ */
4882 if (len > 3 && str[0] == '_' && str [1] == 'E' && isdigit (str[2]))
4883 {
4884 matching = str + 3;
4885 while (isdigit (matching[0]))
4886 matching += 1;
4887 if ((matching[0] == 'b' || matching[0] == 's')
4888 && matching [1] == '\0')
4889 return 1;
4890 }
4891
4c4b4cd2
PH
4892 /* ??? We should not modify STR directly, as we are doing below. This
4893 is fine in this case, but may become problematic later if we find
4894 that this alternative did not work, and want to try matching
4895 another one from the begining of STR. Since we modified it, we
4896 won't be able to find the begining of the string anymore! */
14f9c5c9
AS
4897 if (str[0] == 'X')
4898 {
4899 str += 1;
d2e4a39e 4900 while (str[0] != '_' && str[0] != '\0')
4c4b4cd2
PH
4901 {
4902 if (str[0] != 'n' && str[0] != 'b')
4903 return 0;
4904 str += 1;
4905 }
14f9c5c9 4906 }
babe1480 4907
14f9c5c9
AS
4908 if (str[0] == '\000')
4909 return 1;
babe1480 4910
d2e4a39e 4911 if (str[0] == '_')
14f9c5c9
AS
4912 {
4913 if (str[1] != '_' || str[2] == '\000')
4c4b4cd2 4914 return 0;
d2e4a39e 4915 if (str[2] == '_')
4c4b4cd2 4916 {
61ee279c
PH
4917 if (strcmp (str + 3, "JM") == 0)
4918 return 1;
4919 /* FIXME: brobecker/2004-09-30: GNAT will soon stop using
4920 the LJM suffix in favor of the JM one. But we will
4921 still accept LJM as a valid suffix for a reasonable
4922 amount of time, just to allow ourselves to debug programs
4923 compiled using an older version of GNAT. */
4c4b4cd2
PH
4924 if (strcmp (str + 3, "LJM") == 0)
4925 return 1;
4926 if (str[3] != 'X')
4927 return 0;
1265e4aa
JB
4928 if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B'
4929 || str[4] == 'U' || str[4] == 'P')
4c4b4cd2
PH
4930 return 1;
4931 if (str[4] == 'R' && str[5] != 'T')
4932 return 1;
4933 return 0;
4934 }
4935 if (!isdigit (str[2]))
4936 return 0;
4937 for (k = 3; str[k] != '\0'; k += 1)
4938 if (!isdigit (str[k]) && str[k] != '_')
4939 return 0;
14f9c5c9
AS
4940 return 1;
4941 }
4c4b4cd2 4942 if (str[0] == '$' && isdigit (str[1]))
14f9c5c9 4943 {
4c4b4cd2
PH
4944 for (k = 2; str[k] != '\0'; k += 1)
4945 if (!isdigit (str[k]) && str[k] != '_')
4946 return 0;
14f9c5c9
AS
4947 return 1;
4948 }
4949 return 0;
4950}
d2e4a39e 4951
aeb5907d
JB
4952/* Return non-zero if the string starting at NAME and ending before
4953 NAME_END contains no capital letters. */
529cad9c
PH
4954
4955static int
4956is_valid_name_for_wild_match (const char *name0)
4957{
4958 const char *decoded_name = ada_decode (name0);
4959 int i;
4960
5823c3ef
JB
4961 /* If the decoded name starts with an angle bracket, it means that
4962 NAME0 does not follow the GNAT encoding format. It should then
4963 not be allowed as a possible wild match. */
4964 if (decoded_name[0] == '<')
4965 return 0;
4966
529cad9c
PH
4967 for (i=0; decoded_name[i] != '\0'; i++)
4968 if (isalpha (decoded_name[i]) && !islower (decoded_name[i]))
4969 return 0;
4970
4971 return 1;
4972}
4973
4c4b4cd2
PH
4974/* True if NAME represents a name of the form A1.A2....An, n>=1 and
4975 PATN[0..PATN_LEN-1] = Ak.Ak+1.....An for some k >= 1. Ignores
4976 informational suffixes of NAME (i.e., for which is_name_suffix is
4977 true). */
4978
14f9c5c9 4979static int
4c4b4cd2 4980wild_match (const char *patn0, int patn_len, const char *name0)
14f9c5c9 4981{
5823c3ef
JB
4982 char* match;
4983 const char* start;
4984 start = name0;
4985 while (1)
14f9c5c9 4986 {
5823c3ef
JB
4987 match = strstr (start, patn0);
4988 if (match == NULL)
4989 return 0;
4990 if ((match == name0
4991 || match[-1] == '.'
4992 || (match > name0 + 1 && match[-1] == '_' && match[-2] == '_')
4993 || (match == name0 + 5 && strncmp ("_ada_", name0, 5) == 0))
4994 && is_name_suffix (match + patn_len))
4995 return (match == name0 || is_valid_name_for_wild_match (name0));
4996 start = match + 1;
96d887e8 4997 }
96d887e8
PH
4998}
4999
96d887e8
PH
5000/* Add symbols from BLOCK matching identifier NAME in DOMAIN to
5001 vector *defn_symbols, updating the list of symbols in OBSTACKP
5002 (if necessary). If WILD, treat as NAME with a wildcard prefix.
5003 OBJFILE is the section containing BLOCK.
5004 SYMTAB is recorded with each symbol added. */
5005
5006static void
5007ada_add_block_symbols (struct obstack *obstackp,
76a01679 5008 struct block *block, const char *name,
96d887e8 5009 domain_enum domain, struct objfile *objfile,
2570f2b7 5010 int wild)
96d887e8
PH
5011{
5012 struct dict_iterator iter;
5013 int name_len = strlen (name);
5014 /* A matching argument symbol, if any. */
5015 struct symbol *arg_sym;
5016 /* Set true when we find a matching non-argument symbol. */
5017 int found_sym;
5018 struct symbol *sym;
5019
5020 arg_sym = NULL;
5021 found_sym = 0;
5022 if (wild)
5023 {
5024 struct symbol *sym;
5025 ALL_BLOCK_SYMBOLS (block, iter, sym)
76a01679 5026 {
5eeb2539
AR
5027 if (symbol_matches_domain (SYMBOL_LANGUAGE (sym),
5028 SYMBOL_DOMAIN (sym), domain)
1265e4aa 5029 && wild_match (name, name_len, SYMBOL_LINKAGE_NAME (sym)))
76a01679 5030 {
2a2d4dc3
AS
5031 if (SYMBOL_CLASS (sym) == LOC_UNRESOLVED)
5032 continue;
5033 else if (SYMBOL_IS_ARGUMENT (sym))
5034 arg_sym = sym;
5035 else
5036 {
76a01679
JB
5037 found_sym = 1;
5038 add_defn_to_vec (obstackp,
5039 fixup_symbol_section (sym, objfile),
2570f2b7 5040 block);
76a01679
JB
5041 }
5042 }
5043 }
96d887e8
PH
5044 }
5045 else
5046 {
5047 ALL_BLOCK_SYMBOLS (block, iter, sym)
76a01679 5048 {
5eeb2539
AR
5049 if (symbol_matches_domain (SYMBOL_LANGUAGE (sym),
5050 SYMBOL_DOMAIN (sym), domain))
76a01679
JB
5051 {
5052 int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym), name_len);
5053 if (cmp == 0
5054 && is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len))
5055 {
2a2d4dc3
AS
5056 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
5057 {
5058 if (SYMBOL_IS_ARGUMENT (sym))
5059 arg_sym = sym;
5060 else
5061 {
5062 found_sym = 1;
5063 add_defn_to_vec (obstackp,
5064 fixup_symbol_section (sym, objfile),
5065 block);
5066 }
5067 }
76a01679
JB
5068 }
5069 }
5070 }
96d887e8
PH
5071 }
5072
5073 if (!found_sym && arg_sym != NULL)
5074 {
76a01679
JB
5075 add_defn_to_vec (obstackp,
5076 fixup_symbol_section (arg_sym, objfile),
2570f2b7 5077 block);
96d887e8
PH
5078 }
5079
5080 if (!wild)
5081 {
5082 arg_sym = NULL;
5083 found_sym = 0;
5084
5085 ALL_BLOCK_SYMBOLS (block, iter, sym)
76a01679 5086 {
5eeb2539
AR
5087 if (symbol_matches_domain (SYMBOL_LANGUAGE (sym),
5088 SYMBOL_DOMAIN (sym), domain))
76a01679
JB
5089 {
5090 int cmp;
5091
5092 cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (sym)[0];
5093 if (cmp == 0)
5094 {
5095 cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (sym), 5);
5096 if (cmp == 0)
5097 cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym) + 5,
5098 name_len);
5099 }
5100
5101 if (cmp == 0
5102 && is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len + 5))
5103 {
2a2d4dc3
AS
5104 if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED)
5105 {
5106 if (SYMBOL_IS_ARGUMENT (sym))
5107 arg_sym = sym;
5108 else
5109 {
5110 found_sym = 1;
5111 add_defn_to_vec (obstackp,
5112 fixup_symbol_section (sym, objfile),
5113 block);
5114 }
5115 }
76a01679
JB
5116 }
5117 }
76a01679 5118 }
96d887e8
PH
5119
5120 /* NOTE: This really shouldn't be needed for _ada_ symbols.
5121 They aren't parameters, right? */
5122 if (!found_sym && arg_sym != NULL)
5123 {
5124 add_defn_to_vec (obstackp,
76a01679 5125 fixup_symbol_section (arg_sym, objfile),
2570f2b7 5126 block);
96d887e8
PH
5127 }
5128 }
5129}
5130\f
41d27058
JB
5131
5132 /* Symbol Completion */
5133
5134/* If SYM_NAME is a completion candidate for TEXT, return this symbol
5135 name in a form that's appropriate for the completion. The result
5136 does not need to be deallocated, but is only good until the next call.
5137
5138 TEXT_LEN is equal to the length of TEXT.
5139 Perform a wild match if WILD_MATCH is set.
5140 ENCODED should be set if TEXT represents the start of a symbol name
5141 in its encoded form. */
5142
5143static const char *
5144symbol_completion_match (const char *sym_name,
5145 const char *text, int text_len,
5146 int wild_match, int encoded)
5147{
5148 char *result;
5149 const int verbatim_match = (text[0] == '<');
5150 int match = 0;
5151
5152 if (verbatim_match)
5153 {
5154 /* Strip the leading angle bracket. */
5155 text = text + 1;
5156 text_len--;
5157 }
5158
5159 /* First, test against the fully qualified name of the symbol. */
5160
5161 if (strncmp (sym_name, text, text_len) == 0)
5162 match = 1;
5163
5164 if (match && !encoded)
5165 {
5166 /* One needed check before declaring a positive match is to verify
5167 that iff we are doing a verbatim match, the decoded version
5168 of the symbol name starts with '<'. Otherwise, this symbol name
5169 is not a suitable completion. */
5170 const char *sym_name_copy = sym_name;
5171 int has_angle_bracket;
5172
5173 sym_name = ada_decode (sym_name);
5174 has_angle_bracket = (sym_name[0] == '<');
5175 match = (has_angle_bracket == verbatim_match);
5176 sym_name = sym_name_copy;
5177 }
5178
5179 if (match && !verbatim_match)
5180 {
5181 /* When doing non-verbatim match, another check that needs to
5182 be done is to verify that the potentially matching symbol name
5183 does not include capital letters, because the ada-mode would
5184 not be able to understand these symbol names without the
5185 angle bracket notation. */
5186 const char *tmp;
5187
5188 for (tmp = sym_name; *tmp != '\0' && !isupper (*tmp); tmp++);
5189 if (*tmp != '\0')
5190 match = 0;
5191 }
5192
5193 /* Second: Try wild matching... */
5194
5195 if (!match && wild_match)
5196 {
5197 /* Since we are doing wild matching, this means that TEXT
5198 may represent an unqualified symbol name. We therefore must
5199 also compare TEXT against the unqualified name of the symbol. */
5200 sym_name = ada_unqualified_name (ada_decode (sym_name));
5201
5202 if (strncmp (sym_name, text, text_len) == 0)
5203 match = 1;
5204 }
5205
5206 /* Finally: If we found a mach, prepare the result to return. */
5207
5208 if (!match)
5209 return NULL;
5210
5211 if (verbatim_match)
5212 sym_name = add_angle_brackets (sym_name);
5213
5214 if (!encoded)
5215 sym_name = ada_decode (sym_name);
5216
5217 return sym_name;
5218}
5219
2ba95b9b
JB
5220typedef char *char_ptr;
5221DEF_VEC_P (char_ptr);
5222
41d27058
JB
5223/* A companion function to ada_make_symbol_completion_list().
5224 Check if SYM_NAME represents a symbol which name would be suitable
5225 to complete TEXT (TEXT_LEN is the length of TEXT), in which case
5226 it is appended at the end of the given string vector SV.
5227
5228 ORIG_TEXT is the string original string from the user command
5229 that needs to be completed. WORD is the entire command on which
5230 completion should be performed. These two parameters are used to
5231 determine which part of the symbol name should be added to the
5232 completion vector.
5233 if WILD_MATCH is set, then wild matching is performed.
5234 ENCODED should be set if TEXT represents a symbol name in its
5235 encoded formed (in which case the completion should also be
5236 encoded). */
5237
5238static void
d6565258 5239symbol_completion_add (VEC(char_ptr) **sv,
41d27058
JB
5240 const char *sym_name,
5241 const char *text, int text_len,
5242 const char *orig_text, const char *word,
5243 int wild_match, int encoded)
5244{
5245 const char *match = symbol_completion_match (sym_name, text, text_len,
5246 wild_match, encoded);
5247 char *completion;
5248
5249 if (match == NULL)
5250 return;
5251
5252 /* We found a match, so add the appropriate completion to the given
5253 string vector. */
5254
5255 if (word == orig_text)
5256 {
5257 completion = xmalloc (strlen (match) + 5);
5258 strcpy (completion, match);
5259 }
5260 else if (word > orig_text)
5261 {
5262 /* Return some portion of sym_name. */
5263 completion = xmalloc (strlen (match) + 5);
5264 strcpy (completion, match + (word - orig_text));
5265 }
5266 else
5267 {
5268 /* Return some of ORIG_TEXT plus sym_name. */
5269 completion = xmalloc (strlen (match) + (orig_text - word) + 5);
5270 strncpy (completion, word, orig_text - word);
5271 completion[orig_text - word] = '\0';
5272 strcat (completion, match);
5273 }
5274
d6565258 5275 VEC_safe_push (char_ptr, *sv, completion);
41d27058
JB
5276}
5277
5278/* Return a list of possible symbol names completing TEXT0. The list
5279 is NULL terminated. WORD is the entire command on which completion
5280 is made. */
5281
5282static char **
5283ada_make_symbol_completion_list (char *text0, char *word)
5284{
5285 char *text;
5286 int text_len;
5287 int wild_match;
5288 int encoded;
2ba95b9b 5289 VEC(char_ptr) *completions = VEC_alloc (char_ptr, 128);
41d27058
JB
5290 struct symbol *sym;
5291 struct symtab *s;
5292 struct partial_symtab *ps;
5293 struct minimal_symbol *msymbol;
5294 struct objfile *objfile;
5295 struct block *b, *surrounding_static_block = 0;
5296 int i;
5297 struct dict_iterator iter;
5298
5299 if (text0[0] == '<')
5300 {
5301 text = xstrdup (text0);
5302 make_cleanup (xfree, text);
5303 text_len = strlen (text);
5304 wild_match = 0;
5305 encoded = 1;
5306 }
5307 else
5308 {
5309 text = xstrdup (ada_encode (text0));
5310 make_cleanup (xfree, text);
5311 text_len = strlen (text);
5312 for (i = 0; i < text_len; i++)
5313 text[i] = tolower (text[i]);
5314
5315 encoded = (strstr (text0, "__") != NULL);
5316 /* If the name contains a ".", then the user is entering a fully
5317 qualified entity name, and the match must not be done in wild
5318 mode. Similarly, if the user wants to complete what looks like
5319 an encoded name, the match must not be done in wild mode. */
5320 wild_match = (strchr (text0, '.') == NULL && !encoded);
5321 }
5322
5323 /* First, look at the partial symtab symbols. */
5324 ALL_PSYMTABS (objfile, ps)
5325 {
5326 struct partial_symbol **psym;
5327
5328 /* If the psymtab's been read in we'll get it when we search
5329 through the blockvector. */
5330 if (ps->readin)
5331 continue;
5332
5333 for (psym = objfile->global_psymbols.list + ps->globals_offset;
5334 psym < (objfile->global_psymbols.list + ps->globals_offset
5335 + ps->n_global_syms); psym++)
5336 {
5337 QUIT;
d6565258 5338 symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (*psym),
41d27058
JB
5339 text, text_len, text0, word,
5340 wild_match, encoded);
5341 }
5342
5343 for (psym = objfile->static_psymbols.list + ps->statics_offset;
5344 psym < (objfile->static_psymbols.list + ps->statics_offset
5345 + ps->n_static_syms); psym++)
5346 {
5347 QUIT;
d6565258 5348 symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (*psym),
41d27058
JB
5349 text, text_len, text0, word,
5350 wild_match, encoded);
5351 }
5352 }
5353
5354 /* At this point scan through the misc symbol vectors and add each
5355 symbol you find to the list. Eventually we want to ignore
5356 anything that isn't a text symbol (everything else will be
5357 handled by the psymtab code above). */
5358
5359 ALL_MSYMBOLS (objfile, msymbol)
5360 {
5361 QUIT;
d6565258 5362 symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (msymbol),
41d27058
JB
5363 text, text_len, text0, word, wild_match, encoded);
5364 }
5365
5366 /* Search upwards from currently selected frame (so that we can
5367 complete on local vars. */
5368
5369 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
5370 {
5371 if (!BLOCK_SUPERBLOCK (b))
5372 surrounding_static_block = b; /* For elmin of dups */
5373
5374 ALL_BLOCK_SYMBOLS (b, iter, sym)
5375 {
d6565258 5376 symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym),
41d27058
JB
5377 text, text_len, text0, word,
5378 wild_match, encoded);
5379 }
5380 }
5381
5382 /* Go through the symtabs and check the externs and statics for
5383 symbols which match. */
5384
5385 ALL_SYMTABS (objfile, s)
5386 {
5387 QUIT;
5388 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
5389 ALL_BLOCK_SYMBOLS (b, iter, sym)
5390 {
d6565258 5391 symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym),
41d27058
JB
5392 text, text_len, text0, word,
5393 wild_match, encoded);
5394 }
5395 }
5396
5397 ALL_SYMTABS (objfile, s)
5398 {
5399 QUIT;
5400 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
5401 /* Don't do this block twice. */
5402 if (b == surrounding_static_block)
5403 continue;
5404 ALL_BLOCK_SYMBOLS (b, iter, sym)
5405 {
d6565258 5406 symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym),
41d27058
JB
5407 text, text_len, text0, word,
5408 wild_match, encoded);
5409 }
5410 }
5411
5412 /* Append the closing NULL entry. */
2ba95b9b 5413 VEC_safe_push (char_ptr, completions, NULL);
41d27058 5414
2ba95b9b
JB
5415 /* Make a copy of the COMPLETIONS VEC before we free it, and then
5416 return the copy. It's unfortunate that we have to make a copy
5417 of an array that we're about to destroy, but there is nothing much
5418 we can do about it. Fortunately, it's typically not a very large
5419 array. */
5420 {
5421 const size_t completions_size =
5422 VEC_length (char_ptr, completions) * sizeof (char *);
5423 char **result = malloc (completions_size);
5424
5425 memcpy (result, VEC_address (char_ptr, completions), completions_size);
5426
5427 VEC_free (char_ptr, completions);
5428 return result;
5429 }
41d27058
JB
5430}
5431
963a6417 5432 /* Field Access */
96d887e8 5433
73fb9985
JB
5434/* Return non-zero if TYPE is a pointer to the GNAT dispatch table used
5435 for tagged types. */
5436
5437static int
5438ada_is_dispatch_table_ptr_type (struct type *type)
5439{
5440 char *name;
5441
5442 if (TYPE_CODE (type) != TYPE_CODE_PTR)
5443 return 0;
5444
5445 name = TYPE_NAME (TYPE_TARGET_TYPE (type));
5446 if (name == NULL)
5447 return 0;
5448
5449 return (strcmp (name, "ada__tags__dispatch_table") == 0);
5450}
5451
963a6417
PH
5452/* True if field number FIELD_NUM in struct or union type TYPE is supposed
5453 to be invisible to users. */
96d887e8 5454
963a6417
PH
5455int
5456ada_is_ignored_field (struct type *type, int field_num)
96d887e8 5457{
963a6417
PH
5458 if (field_num < 0 || field_num > TYPE_NFIELDS (type))
5459 return 1;
73fb9985
JB
5460
5461 /* Check the name of that field. */
5462 {
5463 const char *name = TYPE_FIELD_NAME (type, field_num);
5464
5465 /* Anonymous field names should not be printed.
5466 brobecker/2007-02-20: I don't think this can actually happen
5467 but we don't want to print the value of annonymous fields anyway. */
5468 if (name == NULL)
5469 return 1;
5470
5471 /* A field named "_parent" is internally generated by GNAT for
5472 tagged types, and should not be printed either. */
5473 if (name[0] == '_' && strncmp (name, "_parent", 7) != 0)
5474 return 1;
5475 }
5476
5477 /* If this is the dispatch table of a tagged type, then ignore. */
5478 if (ada_is_tagged_type (type, 1)
5479 && ada_is_dispatch_table_ptr_type (TYPE_FIELD_TYPE (type, field_num)))
5480 return 1;
5481
5482 /* Not a special field, so it should not be ignored. */
5483 return 0;
963a6417 5484}
96d887e8 5485
963a6417
PH
5486/* True iff TYPE has a tag field. If REFOK, then TYPE may also be a
5487 pointer or reference type whose ultimate target has a tag field. */
96d887e8 5488
963a6417
PH
5489int
5490ada_is_tagged_type (struct type *type, int refok)
5491{
5492 return (ada_lookup_struct_elt_type (type, "_tag", refok, 1, NULL) != NULL);
5493}
96d887e8 5494
963a6417 5495/* True iff TYPE represents the type of X'Tag */
96d887e8 5496
963a6417
PH
5497int
5498ada_is_tag_type (struct type *type)
5499{
5500 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_PTR)
5501 return 0;
5502 else
96d887e8 5503 {
963a6417
PH
5504 const char *name = ada_type_name (TYPE_TARGET_TYPE (type));
5505 return (name != NULL
5506 && strcmp (name, "ada__tags__dispatch_table") == 0);
96d887e8 5507 }
96d887e8
PH
5508}
5509
963a6417 5510/* The type of the tag on VAL. */
76a01679 5511
963a6417
PH
5512struct type *
5513ada_tag_type (struct value *val)
96d887e8 5514{
df407dfe 5515 return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0, NULL);
963a6417 5516}
96d887e8 5517
963a6417 5518/* The value of the tag on VAL. */
96d887e8 5519
963a6417
PH
5520struct value *
5521ada_value_tag (struct value *val)
5522{
03ee6b2e 5523 return ada_value_struct_elt (val, "_tag", 0);
96d887e8
PH
5524}
5525
963a6417
PH
5526/* The value of the tag on the object of type TYPE whose contents are
5527 saved at VALADDR, if it is non-null, or is at memory address
5528 ADDRESS. */
96d887e8 5529
963a6417 5530static struct value *
10a2c479 5531value_tag_from_contents_and_address (struct type *type,
fc1a4b47 5532 const gdb_byte *valaddr,
963a6417 5533 CORE_ADDR address)
96d887e8 5534{
963a6417
PH
5535 int tag_byte_offset, dummy1, dummy2;
5536 struct type *tag_type;
5537 if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset,
52ce6436 5538 NULL, NULL, NULL))
96d887e8 5539 {
fc1a4b47 5540 const gdb_byte *valaddr1 = ((valaddr == NULL)
10a2c479
AC
5541 ? NULL
5542 : valaddr + tag_byte_offset);
963a6417 5543 CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset;
96d887e8 5544
963a6417 5545 return value_from_contents_and_address (tag_type, valaddr1, address1);
96d887e8 5546 }
963a6417
PH
5547 return NULL;
5548}
96d887e8 5549
963a6417
PH
5550static struct type *
5551type_from_tag (struct value *tag)
5552{
5553 const char *type_name = ada_tag_name (tag);
5554 if (type_name != NULL)
5555 return ada_find_any_type (ada_encode (type_name));
5556 return NULL;
5557}
96d887e8 5558
963a6417
PH
5559struct tag_args
5560{
5561 struct value *tag;
5562 char *name;
5563};
4c4b4cd2 5564
529cad9c
PH
5565
5566static int ada_tag_name_1 (void *);
5567static int ada_tag_name_2 (struct tag_args *);
5568
4c4b4cd2
PH
5569/* Wrapper function used by ada_tag_name. Given a struct tag_args*
5570 value ARGS, sets ARGS->name to the tag name of ARGS->tag.
5571 The value stored in ARGS->name is valid until the next call to
5572 ada_tag_name_1. */
5573
5574static int
5575ada_tag_name_1 (void *args0)
5576{
5577 struct tag_args *args = (struct tag_args *) args0;
5578 static char name[1024];
76a01679 5579 char *p;
4c4b4cd2
PH
5580 struct value *val;
5581 args->name = NULL;
03ee6b2e 5582 val = ada_value_struct_elt (args->tag, "tsd", 1);
529cad9c
PH
5583 if (val == NULL)
5584 return ada_tag_name_2 (args);
03ee6b2e 5585 val = ada_value_struct_elt (val, "expanded_name", 1);
529cad9c
PH
5586 if (val == NULL)
5587 return 0;
5588 read_memory_string (value_as_address (val), name, sizeof (name) - 1);
5589 for (p = name; *p != '\0'; p += 1)
5590 if (isalpha (*p))
5591 *p = tolower (*p);
5592 args->name = name;
5593 return 0;
5594}
5595
5596/* Utility function for ada_tag_name_1 that tries the second
5597 representation for the dispatch table (in which there is no
5598 explicit 'tsd' field in the referent of the tag pointer, and instead
5599 the tsd pointer is stored just before the dispatch table. */
5600
5601static int
5602ada_tag_name_2 (struct tag_args *args)
5603{
5604 struct type *info_type;
5605 static char name[1024];
5606 char *p;
5607 struct value *val, *valp;
5608
5609 args->name = NULL;
5610 info_type = ada_find_any_type ("ada__tags__type_specific_data");
5611 if (info_type == NULL)
5612 return 0;
5613 info_type = lookup_pointer_type (lookup_pointer_type (info_type));
5614 valp = value_cast (info_type, args->tag);
5615 if (valp == NULL)
5616 return 0;
2497b498 5617 val = value_ind (value_ptradd (valp, -1));
4c4b4cd2
PH
5618 if (val == NULL)
5619 return 0;
03ee6b2e 5620 val = ada_value_struct_elt (val, "expanded_name", 1);
4c4b4cd2
PH
5621 if (val == NULL)
5622 return 0;
5623 read_memory_string (value_as_address (val), name, sizeof (name) - 1);
5624 for (p = name; *p != '\0'; p += 1)
5625 if (isalpha (*p))
5626 *p = tolower (*p);
5627 args->name = name;
5628 return 0;
5629}
5630
5631/* The type name of the dynamic type denoted by the 'tag value TAG, as
5632 * a C string. */
5633
5634const char *
5635ada_tag_name (struct value *tag)
5636{
5637 struct tag_args args;
df407dfe 5638 if (!ada_is_tag_type (value_type (tag)))
4c4b4cd2 5639 return NULL;
76a01679 5640 args.tag = tag;
4c4b4cd2
PH
5641 args.name = NULL;
5642 catch_errors (ada_tag_name_1, &args, NULL, RETURN_MASK_ALL);
5643 return args.name;
5644}
5645
5646/* The parent type of TYPE, or NULL if none. */
14f9c5c9 5647
d2e4a39e 5648struct type *
ebf56fd3 5649ada_parent_type (struct type *type)
14f9c5c9
AS
5650{
5651 int i;
5652
61ee279c 5653 type = ada_check_typedef (type);
14f9c5c9
AS
5654
5655 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT)
5656 return NULL;
5657
5658 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
5659 if (ada_is_parent_field (type, i))
0c1f74cf
JB
5660 {
5661 struct type *parent_type = TYPE_FIELD_TYPE (type, i);
5662
5663 /* If the _parent field is a pointer, then dereference it. */
5664 if (TYPE_CODE (parent_type) == TYPE_CODE_PTR)
5665 parent_type = TYPE_TARGET_TYPE (parent_type);
5666 /* If there is a parallel XVS type, get the actual base type. */
5667 parent_type = ada_get_base_type (parent_type);
5668
5669 return ada_check_typedef (parent_type);
5670 }
14f9c5c9
AS
5671
5672 return NULL;
5673}
5674
4c4b4cd2
PH
5675/* True iff field number FIELD_NUM of structure type TYPE contains the
5676 parent-type (inherited) fields of a derived type. Assumes TYPE is
5677 a structure type with at least FIELD_NUM+1 fields. */
14f9c5c9
AS
5678
5679int
ebf56fd3 5680ada_is_parent_field (struct type *type, int field_num)
14f9c5c9 5681{
61ee279c 5682 const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num);
4c4b4cd2
PH
5683 return (name != NULL
5684 && (strncmp (name, "PARENT", 6) == 0
5685 || strncmp (name, "_parent", 7) == 0));
14f9c5c9
AS
5686}
5687
4c4b4cd2 5688/* True iff field number FIELD_NUM of structure type TYPE is a
14f9c5c9 5689 transparent wrapper field (which should be silently traversed when doing
4c4b4cd2 5690 field selection and flattened when printing). Assumes TYPE is a
14f9c5c9 5691 structure type with at least FIELD_NUM+1 fields. Such fields are always
4c4b4cd2 5692 structures. */
14f9c5c9
AS
5693
5694int
ebf56fd3 5695ada_is_wrapper_field (struct type *type, int field_num)
14f9c5c9 5696{
d2e4a39e
AS
5697 const char *name = TYPE_FIELD_NAME (type, field_num);
5698 return (name != NULL
4c4b4cd2
PH
5699 && (strncmp (name, "PARENT", 6) == 0
5700 || strcmp (name, "REP") == 0
5701 || strncmp (name, "_parent", 7) == 0
5702 || name[0] == 'S' || name[0] == 'R' || name[0] == 'O'));
14f9c5c9
AS
5703}
5704
4c4b4cd2
PH
5705/* True iff field number FIELD_NUM of structure or union type TYPE
5706 is a variant wrapper. Assumes TYPE is a structure type with at least
5707 FIELD_NUM+1 fields. */
14f9c5c9
AS
5708
5709int
ebf56fd3 5710ada_is_variant_part (struct type *type, int field_num)
14f9c5c9 5711{
d2e4a39e 5712 struct type *field_type = TYPE_FIELD_TYPE (type, field_num);
14f9c5c9 5713 return (TYPE_CODE (field_type) == TYPE_CODE_UNION
4c4b4cd2 5714 || (is_dynamic_field (type, field_num)
c3e5cd34
PH
5715 && (TYPE_CODE (TYPE_TARGET_TYPE (field_type))
5716 == TYPE_CODE_UNION)));
14f9c5c9
AS
5717}
5718
5719/* Assuming that VAR_TYPE is a variant wrapper (type of the variant part)
4c4b4cd2 5720 whose discriminants are contained in the record type OUTER_TYPE,
7c964f07
UW
5721 returns the type of the controlling discriminant for the variant.
5722 May return NULL if the type could not be found. */
14f9c5c9 5723
d2e4a39e 5724struct type *
ebf56fd3 5725ada_variant_discrim_type (struct type *var_type, struct type *outer_type)
14f9c5c9 5726{
d2e4a39e 5727 char *name = ada_variant_discrim_name (var_type);
7c964f07 5728 return ada_lookup_struct_elt_type (outer_type, name, 1, 1, NULL);
14f9c5c9
AS
5729}
5730
4c4b4cd2 5731/* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a
14f9c5c9 5732 valid field number within it, returns 1 iff field FIELD_NUM of TYPE
4c4b4cd2 5733 represents a 'when others' clause; otherwise 0. */
14f9c5c9
AS
5734
5735int
ebf56fd3 5736ada_is_others_clause (struct type *type, int field_num)
14f9c5c9 5737{
d2e4a39e 5738 const char *name = TYPE_FIELD_NAME (type, field_num);
14f9c5c9
AS
5739 return (name != NULL && name[0] == 'O');
5740}
5741
5742/* Assuming that TYPE0 is the type of the variant part of a record,
4c4b4cd2
PH
5743 returns the name of the discriminant controlling the variant.
5744 The value is valid until the next call to ada_variant_discrim_name. */
14f9c5c9 5745
d2e4a39e 5746char *
ebf56fd3 5747ada_variant_discrim_name (struct type *type0)
14f9c5c9 5748{
d2e4a39e 5749 static char *result = NULL;
14f9c5c9 5750 static size_t result_len = 0;
d2e4a39e
AS
5751 struct type *type;
5752 const char *name;
5753 const char *discrim_end;
5754 const char *discrim_start;
14f9c5c9
AS
5755
5756 if (TYPE_CODE (type0) == TYPE_CODE_PTR)
5757 type = TYPE_TARGET_TYPE (type0);
5758 else
5759 type = type0;
5760
5761 name = ada_type_name (type);
5762
5763 if (name == NULL || name[0] == '\000')
5764 return "";
5765
5766 for (discrim_end = name + strlen (name) - 6; discrim_end != name;
5767 discrim_end -= 1)
5768 {
4c4b4cd2
PH
5769 if (strncmp (discrim_end, "___XVN", 6) == 0)
5770 break;
14f9c5c9
AS
5771 }
5772 if (discrim_end == name)
5773 return "";
5774
d2e4a39e 5775 for (discrim_start = discrim_end; discrim_start != name + 3;
14f9c5c9
AS
5776 discrim_start -= 1)
5777 {
d2e4a39e 5778 if (discrim_start == name + 1)
4c4b4cd2 5779 return "";
76a01679 5780 if ((discrim_start > name + 3
4c4b4cd2
PH
5781 && strncmp (discrim_start - 3, "___", 3) == 0)
5782 || discrim_start[-1] == '.')
5783 break;
14f9c5c9
AS
5784 }
5785
5786 GROW_VECT (result, result_len, discrim_end - discrim_start + 1);
5787 strncpy (result, discrim_start, discrim_end - discrim_start);
d2e4a39e 5788 result[discrim_end - discrim_start] = '\0';
14f9c5c9
AS
5789 return result;
5790}
5791
4c4b4cd2
PH
5792/* Scan STR for a subtype-encoded number, beginning at position K.
5793 Put the position of the character just past the number scanned in
5794 *NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL.
5795 Return 1 if there was a valid number at the given position, and 0
5796 otherwise. A "subtype-encoded" number consists of the absolute value
5797 in decimal, followed by the letter 'm' to indicate a negative number.
5798 Assumes 0m does not occur. */
14f9c5c9
AS
5799
5800int
d2e4a39e 5801ada_scan_number (const char str[], int k, LONGEST * R, int *new_k)
14f9c5c9
AS
5802{
5803 ULONGEST RU;
5804
d2e4a39e 5805 if (!isdigit (str[k]))
14f9c5c9
AS
5806 return 0;
5807
4c4b4cd2 5808 /* Do it the hard way so as not to make any assumption about
14f9c5c9 5809 the relationship of unsigned long (%lu scan format code) and
4c4b4cd2 5810 LONGEST. */
14f9c5c9
AS
5811 RU = 0;
5812 while (isdigit (str[k]))
5813 {
d2e4a39e 5814 RU = RU * 10 + (str[k] - '0');
14f9c5c9
AS
5815 k += 1;
5816 }
5817
d2e4a39e 5818 if (str[k] == 'm')
14f9c5c9
AS
5819 {
5820 if (R != NULL)
4c4b4cd2 5821 *R = (-(LONGEST) (RU - 1)) - 1;
14f9c5c9
AS
5822 k += 1;
5823 }
5824 else if (R != NULL)
5825 *R = (LONGEST) RU;
5826
4c4b4cd2 5827 /* NOTE on the above: Technically, C does not say what the results of
14f9c5c9
AS
5828 - (LONGEST) RU or (LONGEST) -RU are for RU == largest positive
5829 number representable as a LONGEST (although either would probably work
5830 in most implementations). When RU>0, the locution in the then branch
4c4b4cd2 5831 above is always equivalent to the negative of RU. */
14f9c5c9
AS
5832
5833 if (new_k != NULL)
5834 *new_k = k;
5835 return 1;
5836}
5837
4c4b4cd2
PH
5838/* Assuming that TYPE is a variant part wrapper type (a VARIANTS field),
5839 and FIELD_NUM is a valid field number within it, returns 1 iff VAL is
5840 in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */
14f9c5c9 5841
d2e4a39e 5842int
ebf56fd3 5843ada_in_variant (LONGEST val, struct type *type, int field_num)
14f9c5c9 5844{
d2e4a39e 5845 const char *name = TYPE_FIELD_NAME (type, field_num);
14f9c5c9
AS
5846 int p;
5847
5848 p = 0;
5849 while (1)
5850 {
d2e4a39e 5851 switch (name[p])
4c4b4cd2
PH
5852 {
5853 case '\0':
5854 return 0;
5855 case 'S':
5856 {
5857 LONGEST W;
5858 if (!ada_scan_number (name, p + 1, &W, &p))
5859 return 0;
5860 if (val == W)
5861 return 1;
5862 break;
5863 }
5864 case 'R':
5865 {
5866 LONGEST L, U;
5867 if (!ada_scan_number (name, p + 1, &L, &p)
5868 || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p))
5869 return 0;
5870 if (val >= L && val <= U)
5871 return 1;
5872 break;
5873 }
5874 case 'O':
5875 return 1;
5876 default:
5877 return 0;
5878 }
5879 }
5880}
5881
5882/* FIXME: Lots of redundancy below. Try to consolidate. */
5883
5884/* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type
5885 ARG_TYPE, extract and return the value of one of its (non-static)
5886 fields. FIELDNO says which field. Differs from value_primitive_field
5887 only in that it can handle packed values of arbitrary type. */
14f9c5c9 5888
4c4b4cd2 5889static struct value *
d2e4a39e 5890ada_value_primitive_field (struct value *arg1, int offset, int fieldno,
4c4b4cd2 5891 struct type *arg_type)
14f9c5c9 5892{
14f9c5c9
AS
5893 struct type *type;
5894
61ee279c 5895 arg_type = ada_check_typedef (arg_type);
14f9c5c9
AS
5896 type = TYPE_FIELD_TYPE (arg_type, fieldno);
5897
4c4b4cd2 5898 /* Handle packed fields. */
14f9c5c9
AS
5899
5900 if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0)
5901 {
5902 int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno);
5903 int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno);
d2e4a39e 5904
0fd88904 5905 return ada_value_primitive_packed_val (arg1, value_contents (arg1),
4c4b4cd2
PH
5906 offset + bit_pos / 8,
5907 bit_pos % 8, bit_size, type);
14f9c5c9
AS
5908 }
5909 else
5910 return value_primitive_field (arg1, offset, fieldno, arg_type);
5911}
5912
52ce6436
PH
5913/* Find field with name NAME in object of type TYPE. If found,
5914 set the following for each argument that is non-null:
5915 - *FIELD_TYPE_P to the field's type;
5916 - *BYTE_OFFSET_P to OFFSET + the byte offset of the field within
5917 an object of that type;
5918 - *BIT_OFFSET_P to the bit offset modulo byte size of the field;
5919 - *BIT_SIZE_P to its size in bits if the field is packed, and
5920 0 otherwise;
5921 If INDEX_P is non-null, increment *INDEX_P by the number of source-visible
5922 fields up to but not including the desired field, or by the total
5923 number of fields if not found. A NULL value of NAME never
5924 matches; the function just counts visible fields in this case.
5925
5926 Returns 1 if found, 0 otherwise. */
5927
4c4b4cd2 5928static int
76a01679
JB
5929find_struct_field (char *name, struct type *type, int offset,
5930 struct type **field_type_p,
52ce6436
PH
5931 int *byte_offset_p, int *bit_offset_p, int *bit_size_p,
5932 int *index_p)
4c4b4cd2
PH
5933{
5934 int i;
5935
61ee279c 5936 type = ada_check_typedef (type);
76a01679 5937
52ce6436
PH
5938 if (field_type_p != NULL)
5939 *field_type_p = NULL;
5940 if (byte_offset_p != NULL)
d5d6fca5 5941 *byte_offset_p = 0;
52ce6436
PH
5942 if (bit_offset_p != NULL)
5943 *bit_offset_p = 0;
5944 if (bit_size_p != NULL)
5945 *bit_size_p = 0;
5946
5947 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
4c4b4cd2
PH
5948 {
5949 int bit_pos = TYPE_FIELD_BITPOS (type, i);
5950 int fld_offset = offset + bit_pos / 8;
5951 char *t_field_name = TYPE_FIELD_NAME (type, i);
76a01679 5952
4c4b4cd2
PH
5953 if (t_field_name == NULL)
5954 continue;
5955
52ce6436 5956 else if (name != NULL && field_name_match (t_field_name, name))
76a01679
JB
5957 {
5958 int bit_size = TYPE_FIELD_BITSIZE (type, i);
52ce6436
PH
5959 if (field_type_p != NULL)
5960 *field_type_p = TYPE_FIELD_TYPE (type, i);
5961 if (byte_offset_p != NULL)
5962 *byte_offset_p = fld_offset;
5963 if (bit_offset_p != NULL)
5964 *bit_offset_p = bit_pos % 8;
5965 if (bit_size_p != NULL)
5966 *bit_size_p = bit_size;
76a01679
JB
5967 return 1;
5968 }
4c4b4cd2
PH
5969 else if (ada_is_wrapper_field (type, i))
5970 {
52ce6436
PH
5971 if (find_struct_field (name, TYPE_FIELD_TYPE (type, i), fld_offset,
5972 field_type_p, byte_offset_p, bit_offset_p,
5973 bit_size_p, index_p))
76a01679
JB
5974 return 1;
5975 }
4c4b4cd2
PH
5976 else if (ada_is_variant_part (type, i))
5977 {
52ce6436
PH
5978 /* PNH: Wait. Do we ever execute this section, or is ARG always of
5979 fixed type?? */
4c4b4cd2 5980 int j;
52ce6436
PH
5981 struct type *field_type
5982 = ada_check_typedef (TYPE_FIELD_TYPE (type, i));
4c4b4cd2 5983
52ce6436 5984 for (j = 0; j < TYPE_NFIELDS (field_type); j += 1)
4c4b4cd2 5985 {
76a01679
JB
5986 if (find_struct_field (name, TYPE_FIELD_TYPE (field_type, j),
5987 fld_offset
5988 + TYPE_FIELD_BITPOS (field_type, j) / 8,
5989 field_type_p, byte_offset_p,
52ce6436 5990 bit_offset_p, bit_size_p, index_p))
76a01679 5991 return 1;
4c4b4cd2
PH
5992 }
5993 }
52ce6436
PH
5994 else if (index_p != NULL)
5995 *index_p += 1;
4c4b4cd2
PH
5996 }
5997 return 0;
5998}
5999
52ce6436 6000/* Number of user-visible fields in record type TYPE. */
4c4b4cd2 6001
52ce6436
PH
6002static int
6003num_visible_fields (struct type *type)
6004{
6005 int n;
6006 n = 0;
6007 find_struct_field (NULL, type, 0, NULL, NULL, NULL, NULL, &n);
6008 return n;
6009}
14f9c5c9 6010
4c4b4cd2 6011/* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes,
14f9c5c9
AS
6012 and search in it assuming it has (class) type TYPE.
6013 If found, return value, else return NULL.
6014
4c4b4cd2 6015 Searches recursively through wrapper fields (e.g., '_parent'). */
14f9c5c9 6016
4c4b4cd2 6017static struct value *
d2e4a39e 6018ada_search_struct_field (char *name, struct value *arg, int offset,
4c4b4cd2 6019 struct type *type)
14f9c5c9
AS
6020{
6021 int i;
61ee279c 6022 type = ada_check_typedef (type);
14f9c5c9 6023
52ce6436 6024 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
14f9c5c9
AS
6025 {
6026 char *t_field_name = TYPE_FIELD_NAME (type, i);
6027
6028 if (t_field_name == NULL)
4c4b4cd2 6029 continue;
14f9c5c9
AS
6030
6031 else if (field_name_match (t_field_name, name))
4c4b4cd2 6032 return ada_value_primitive_field (arg, offset, i, type);
14f9c5c9
AS
6033
6034 else if (ada_is_wrapper_field (type, i))
4c4b4cd2 6035 {
06d5cf63
JB
6036 struct value *v = /* Do not let indent join lines here. */
6037 ada_search_struct_field (name, arg,
6038 offset + TYPE_FIELD_BITPOS (type, i) / 8,
6039 TYPE_FIELD_TYPE (type, i));
4c4b4cd2
PH
6040 if (v != NULL)
6041 return v;
6042 }
14f9c5c9
AS
6043
6044 else if (ada_is_variant_part (type, i))
4c4b4cd2 6045 {
52ce6436 6046 /* PNH: Do we ever get here? See find_struct_field. */
4c4b4cd2 6047 int j;
61ee279c 6048 struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i));
4c4b4cd2
PH
6049 int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8;
6050
52ce6436 6051 for (j = 0; j < TYPE_NFIELDS (field_type); j += 1)
4c4b4cd2 6052 {
06d5cf63
JB
6053 struct value *v = ada_search_struct_field /* Force line break. */
6054 (name, arg,
6055 var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8,
6056 TYPE_FIELD_TYPE (field_type, j));
4c4b4cd2
PH
6057 if (v != NULL)
6058 return v;
6059 }
6060 }
14f9c5c9
AS
6061 }
6062 return NULL;
6063}
d2e4a39e 6064
52ce6436
PH
6065static struct value *ada_index_struct_field_1 (int *, struct value *,
6066 int, struct type *);
6067
6068
6069/* Return field #INDEX in ARG, where the index is that returned by
6070 * find_struct_field through its INDEX_P argument. Adjust the address
6071 * of ARG by OFFSET bytes, and search in it assuming it has (class) type TYPE.
6072 * If found, return value, else return NULL. */
6073
6074static struct value *
6075ada_index_struct_field (int index, struct value *arg, int offset,
6076 struct type *type)
6077{
6078 return ada_index_struct_field_1 (&index, arg, offset, type);
6079}
6080
6081
6082/* Auxiliary function for ada_index_struct_field. Like
6083 * ada_index_struct_field, but takes index from *INDEX_P and modifies
6084 * *INDEX_P. */
6085
6086static struct value *
6087ada_index_struct_field_1 (int *index_p, struct value *arg, int offset,
6088 struct type *type)
6089{
6090 int i;
6091 type = ada_check_typedef (type);
6092
6093 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
6094 {
6095 if (TYPE_FIELD_NAME (type, i) == NULL)
6096 continue;
6097 else if (ada_is_wrapper_field (type, i))
6098 {
6099 struct value *v = /* Do not let indent join lines here. */
6100 ada_index_struct_field_1 (index_p, arg,
6101 offset + TYPE_FIELD_BITPOS (type, i) / 8,
6102 TYPE_FIELD_TYPE (type, i));
6103 if (v != NULL)
6104 return v;
6105 }
6106
6107 else if (ada_is_variant_part (type, i))
6108 {
6109 /* PNH: Do we ever get here? See ada_search_struct_field,
6110 find_struct_field. */
6111 error (_("Cannot assign this kind of variant record"));
6112 }
6113 else if (*index_p == 0)
6114 return ada_value_primitive_field (arg, offset, i, type);
6115 else
6116 *index_p -= 1;
6117 }
6118 return NULL;
6119}
6120
4c4b4cd2
PH
6121/* Given ARG, a value of type (pointer or reference to a)*
6122 structure/union, extract the component named NAME from the ultimate
6123 target structure/union and return it as a value with its
f5938064 6124 appropriate type.
14f9c5c9 6125
4c4b4cd2
PH
6126 The routine searches for NAME among all members of the structure itself
6127 and (recursively) among all members of any wrapper members
14f9c5c9
AS
6128 (e.g., '_parent').
6129
03ee6b2e
PH
6130 If NO_ERR, then simply return NULL in case of error, rather than
6131 calling error. */
14f9c5c9 6132
d2e4a39e 6133struct value *
03ee6b2e 6134ada_value_struct_elt (struct value *arg, char *name, int no_err)
14f9c5c9 6135{
4c4b4cd2 6136 struct type *t, *t1;
d2e4a39e 6137 struct value *v;
14f9c5c9 6138
4c4b4cd2 6139 v = NULL;
df407dfe 6140 t1 = t = ada_check_typedef (value_type (arg));
4c4b4cd2
PH
6141 if (TYPE_CODE (t) == TYPE_CODE_REF)
6142 {
6143 t1 = TYPE_TARGET_TYPE (t);
6144 if (t1 == NULL)
03ee6b2e 6145 goto BadValue;
61ee279c 6146 t1 = ada_check_typedef (t1);
4c4b4cd2 6147 if (TYPE_CODE (t1) == TYPE_CODE_PTR)
76a01679 6148 {
994b9211 6149 arg = coerce_ref (arg);
76a01679
JB
6150 t = t1;
6151 }
4c4b4cd2 6152 }
14f9c5c9 6153
4c4b4cd2
PH
6154 while (TYPE_CODE (t) == TYPE_CODE_PTR)
6155 {
6156 t1 = TYPE_TARGET_TYPE (t);
6157 if (t1 == NULL)
03ee6b2e 6158 goto BadValue;
61ee279c 6159 t1 = ada_check_typedef (t1);
4c4b4cd2 6160 if (TYPE_CODE (t1) == TYPE_CODE_PTR)
76a01679
JB
6161 {
6162 arg = value_ind (arg);
6163 t = t1;
6164 }
4c4b4cd2 6165 else
76a01679 6166 break;
4c4b4cd2 6167 }
14f9c5c9 6168
4c4b4cd2 6169 if (TYPE_CODE (t1) != TYPE_CODE_STRUCT && TYPE_CODE (t1) != TYPE_CODE_UNION)
03ee6b2e 6170 goto BadValue;
14f9c5c9 6171
4c4b4cd2
PH
6172 if (t1 == t)
6173 v = ada_search_struct_field (name, arg, 0, t);
6174 else
6175 {
6176 int bit_offset, bit_size, byte_offset;
6177 struct type *field_type;
6178 CORE_ADDR address;
6179
76a01679
JB
6180 if (TYPE_CODE (t) == TYPE_CODE_PTR)
6181 address = value_as_address (arg);
4c4b4cd2 6182 else
0fd88904 6183 address = unpack_pointer (t, value_contents (arg));
14f9c5c9 6184
1ed6ede0 6185 t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL, address, NULL, 1);
76a01679
JB
6186 if (find_struct_field (name, t1, 0,
6187 &field_type, &byte_offset, &bit_offset,
52ce6436 6188 &bit_size, NULL))
76a01679
JB
6189 {
6190 if (bit_size != 0)
6191 {
714e53ab
PH
6192 if (TYPE_CODE (t) == TYPE_CODE_REF)
6193 arg = ada_coerce_ref (arg);
6194 else
6195 arg = ada_value_ind (arg);
76a01679
JB
6196 v = ada_value_primitive_packed_val (arg, NULL, byte_offset,
6197 bit_offset, bit_size,
6198 field_type);
6199 }
6200 else
f5938064 6201 v = value_at_lazy (field_type, address + byte_offset);
76a01679
JB
6202 }
6203 }
6204
03ee6b2e
PH
6205 if (v != NULL || no_err)
6206 return v;
6207 else
323e0a4a 6208 error (_("There is no member named %s."), name);
14f9c5c9 6209
03ee6b2e
PH
6210 BadValue:
6211 if (no_err)
6212 return NULL;
6213 else
6214 error (_("Attempt to extract a component of a value that is not a record."));
14f9c5c9
AS
6215}
6216
6217/* Given a type TYPE, look up the type of the component of type named NAME.
4c4b4cd2
PH
6218 If DISPP is non-null, add its byte displacement from the beginning of a
6219 structure (pointed to by a value) of type TYPE to *DISPP (does not
14f9c5c9
AS
6220 work for packed fields).
6221
6222 Matches any field whose name has NAME as a prefix, possibly
4c4b4cd2 6223 followed by "___".
14f9c5c9 6224
4c4b4cd2
PH
6225 TYPE can be either a struct or union. If REFOK, TYPE may also
6226 be a (pointer or reference)+ to a struct or union, and the
6227 ultimate target type will be searched.
14f9c5c9
AS
6228
6229 Looks recursively into variant clauses and parent types.
6230
4c4b4cd2
PH
6231 If NOERR is nonzero, return NULL if NAME is not suitably defined or
6232 TYPE is not a type of the right kind. */
14f9c5c9 6233
4c4b4cd2 6234static struct type *
76a01679
JB
6235ada_lookup_struct_elt_type (struct type *type, char *name, int refok,
6236 int noerr, int *dispp)
14f9c5c9
AS
6237{
6238 int i;
6239
6240 if (name == NULL)
6241 goto BadName;
6242
76a01679 6243 if (refok && type != NULL)
4c4b4cd2
PH
6244 while (1)
6245 {
61ee279c 6246 type = ada_check_typedef (type);
76a01679
JB
6247 if (TYPE_CODE (type) != TYPE_CODE_PTR
6248 && TYPE_CODE (type) != TYPE_CODE_REF)
6249 break;
6250 type = TYPE_TARGET_TYPE (type);
4c4b4cd2 6251 }
14f9c5c9 6252
76a01679 6253 if (type == NULL
1265e4aa
JB
6254 || (TYPE_CODE (type) != TYPE_CODE_STRUCT
6255 && TYPE_CODE (type) != TYPE_CODE_UNION))
14f9c5c9 6256 {
4c4b4cd2 6257 if (noerr)
76a01679 6258 return NULL;
4c4b4cd2 6259 else
76a01679
JB
6260 {
6261 target_terminal_ours ();
6262 gdb_flush (gdb_stdout);
323e0a4a
AC
6263 if (type == NULL)
6264 error (_("Type (null) is not a structure or union type"));
6265 else
6266 {
6267 /* XXX: type_sprint */
6268 fprintf_unfiltered (gdb_stderr, _("Type "));
6269 type_print (type, "", gdb_stderr, -1);
6270 error (_(" is not a structure or union type"));
6271 }
76a01679 6272 }
14f9c5c9
AS
6273 }
6274
6275 type = to_static_fixed_type (type);
6276
6277 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
6278 {
6279 char *t_field_name = TYPE_FIELD_NAME (type, i);
6280 struct type *t;
6281 int disp;
d2e4a39e 6282
14f9c5c9 6283 if (t_field_name == NULL)
4c4b4cd2 6284 continue;
14f9c5c9
AS
6285
6286 else if (field_name_match (t_field_name, name))
4c4b4cd2
PH
6287 {
6288 if (dispp != NULL)
6289 *dispp += TYPE_FIELD_BITPOS (type, i) / 8;
61ee279c 6290 return ada_check_typedef (TYPE_FIELD_TYPE (type, i));
4c4b4cd2 6291 }
14f9c5c9
AS
6292
6293 else if (ada_is_wrapper_field (type, i))
4c4b4cd2
PH
6294 {
6295 disp = 0;
6296 t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (type, i), name,
6297 0, 1, &disp);
6298 if (t != NULL)
6299 {
6300 if (dispp != NULL)
6301 *dispp += disp + TYPE_FIELD_BITPOS (type, i) / 8;
6302 return t;
6303 }
6304 }
14f9c5c9
AS
6305
6306 else if (ada_is_variant_part (type, i))
4c4b4cd2
PH
6307 {
6308 int j;
61ee279c 6309 struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i));
4c4b4cd2
PH
6310
6311 for (j = TYPE_NFIELDS (field_type) - 1; j >= 0; j -= 1)
6312 {
b1f33ddd
JB
6313 /* FIXME pnh 2008/01/26: We check for a field that is
6314 NOT wrapped in a struct, since the compiler sometimes
6315 generates these for unchecked variant types. Revisit
6316 if the compiler changes this practice. */
6317 char *v_field_name = TYPE_FIELD_NAME (field_type, j);
4c4b4cd2 6318 disp = 0;
b1f33ddd
JB
6319 if (v_field_name != NULL
6320 && field_name_match (v_field_name, name))
6321 t = ada_check_typedef (TYPE_FIELD_TYPE (field_type, j));
6322 else
6323 t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (field_type, j),
6324 name, 0, 1, &disp);
6325
4c4b4cd2
PH
6326 if (t != NULL)
6327 {
6328 if (dispp != NULL)
6329 *dispp += disp + TYPE_FIELD_BITPOS (type, i) / 8;
6330 return t;
6331 }
6332 }
6333 }
14f9c5c9
AS
6334
6335 }
6336
6337BadName:
d2e4a39e 6338 if (!noerr)
14f9c5c9
AS
6339 {
6340 target_terminal_ours ();
6341 gdb_flush (gdb_stdout);
323e0a4a
AC
6342 if (name == NULL)
6343 {
6344 /* XXX: type_sprint */
6345 fprintf_unfiltered (gdb_stderr, _("Type "));
6346 type_print (type, "", gdb_stderr, -1);
6347 error (_(" has no component named <null>"));
6348 }
6349 else
6350 {
6351 /* XXX: type_sprint */
6352 fprintf_unfiltered (gdb_stderr, _("Type "));
6353 type_print (type, "", gdb_stderr, -1);
6354 error (_(" has no component named %s"), name);
6355 }
14f9c5c9
AS
6356 }
6357
6358 return NULL;
6359}
6360
b1f33ddd
JB
6361/* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
6362 within a value of type OUTER_TYPE, return true iff VAR_TYPE
6363 represents an unchecked union (that is, the variant part of a
6364 record that is named in an Unchecked_Union pragma). */
6365
6366static int
6367is_unchecked_variant (struct type *var_type, struct type *outer_type)
6368{
6369 char *discrim_name = ada_variant_discrim_name (var_type);
6370 return (ada_lookup_struct_elt_type (outer_type, discrim_name, 0, 1, NULL)
6371 == NULL);
6372}
6373
6374
14f9c5c9
AS
6375/* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
6376 within a value of type OUTER_TYPE that is stored in GDB at
4c4b4cd2
PH
6377 OUTER_VALADDR, determine which variant clause (field number in VAR_TYPE,
6378 numbering from 0) is applicable. Returns -1 if none are. */
14f9c5c9 6379
d2e4a39e 6380int
ebf56fd3 6381ada_which_variant_applies (struct type *var_type, struct type *outer_type,
fc1a4b47 6382 const gdb_byte *outer_valaddr)
14f9c5c9
AS
6383{
6384 int others_clause;
6385 int i;
d2e4a39e 6386 char *discrim_name = ada_variant_discrim_name (var_type);
0c281816
JB
6387 struct value *outer;
6388 struct value *discrim;
14f9c5c9
AS
6389 LONGEST discrim_val;
6390
0c281816
JB
6391 outer = value_from_contents_and_address (outer_type, outer_valaddr, 0);
6392 discrim = ada_value_struct_elt (outer, discrim_name, 1);
6393 if (discrim == NULL)
14f9c5c9 6394 return -1;
0c281816 6395 discrim_val = value_as_long (discrim);
14f9c5c9
AS
6396
6397 others_clause = -1;
6398 for (i = 0; i < TYPE_NFIELDS (var_type); i += 1)
6399 {
6400 if (ada_is_others_clause (var_type, i))
4c4b4cd2 6401 others_clause = i;
14f9c5c9 6402 else if (ada_in_variant (discrim_val, var_type, i))
4c4b4cd2 6403 return i;
14f9c5c9
AS
6404 }
6405
6406 return others_clause;
6407}
d2e4a39e 6408\f
14f9c5c9
AS
6409
6410
4c4b4cd2 6411 /* Dynamic-Sized Records */
14f9c5c9
AS
6412
6413/* Strategy: The type ostensibly attached to a value with dynamic size
6414 (i.e., a size that is not statically recorded in the debugging
6415 data) does not accurately reflect the size or layout of the value.
6416 Our strategy is to convert these values to values with accurate,
4c4b4cd2 6417 conventional types that are constructed on the fly. */
14f9c5c9
AS
6418
6419/* There is a subtle and tricky problem here. In general, we cannot
6420 determine the size of dynamic records without its data. However,
6421 the 'struct value' data structure, which GDB uses to represent
6422 quantities in the inferior process (the target), requires the size
6423 of the type at the time of its allocation in order to reserve space
6424 for GDB's internal copy of the data. That's why the
6425 'to_fixed_xxx_type' routines take (target) addresses as parameters,
4c4b4cd2 6426 rather than struct value*s.
14f9c5c9
AS
6427
6428 However, GDB's internal history variables ($1, $2, etc.) are
6429 struct value*s containing internal copies of the data that are not, in
6430 general, the same as the data at their corresponding addresses in
6431 the target. Fortunately, the types we give to these values are all
6432 conventional, fixed-size types (as per the strategy described
6433 above), so that we don't usually have to perform the
6434 'to_fixed_xxx_type' conversions to look at their values.
6435 Unfortunately, there is one exception: if one of the internal
6436 history variables is an array whose elements are unconstrained
6437 records, then we will need to create distinct fixed types for each
6438 element selected. */
6439
6440/* The upshot of all of this is that many routines take a (type, host
6441 address, target address) triple as arguments to represent a value.
6442 The host address, if non-null, is supposed to contain an internal
6443 copy of the relevant data; otherwise, the program is to consult the
4c4b4cd2 6444 target at the target address. */
14f9c5c9
AS
6445
6446/* Assuming that VAL0 represents a pointer value, the result of
6447 dereferencing it. Differs from value_ind in its treatment of
4c4b4cd2 6448 dynamic-sized types. */
14f9c5c9 6449
d2e4a39e
AS
6450struct value *
6451ada_value_ind (struct value *val0)
14f9c5c9 6452{
d2e4a39e 6453 struct value *val = unwrap_value (value_ind (val0));
4c4b4cd2 6454 return ada_to_fixed_value (val);
14f9c5c9
AS
6455}
6456
6457/* The value resulting from dereferencing any "reference to"
4c4b4cd2
PH
6458 qualifiers on VAL0. */
6459
d2e4a39e
AS
6460static struct value *
6461ada_coerce_ref (struct value *val0)
6462{
df407dfe 6463 if (TYPE_CODE (value_type (val0)) == TYPE_CODE_REF)
d2e4a39e
AS
6464 {
6465 struct value *val = val0;
994b9211 6466 val = coerce_ref (val);
d2e4a39e 6467 val = unwrap_value (val);
4c4b4cd2 6468 return ada_to_fixed_value (val);
d2e4a39e
AS
6469 }
6470 else
14f9c5c9
AS
6471 return val0;
6472}
6473
6474/* Return OFF rounded upward if necessary to a multiple of
4c4b4cd2 6475 ALIGNMENT (a power of 2). */
14f9c5c9
AS
6476
6477static unsigned int
ebf56fd3 6478align_value (unsigned int off, unsigned int alignment)
14f9c5c9
AS
6479{
6480 return (off + alignment - 1) & ~(alignment - 1);
6481}
6482
4c4b4cd2 6483/* Return the bit alignment required for field #F of template type TYPE. */
14f9c5c9
AS
6484
6485static unsigned int
ebf56fd3 6486field_alignment (struct type *type, int f)
14f9c5c9 6487{
d2e4a39e 6488 const char *name = TYPE_FIELD_NAME (type, f);
64a1bf19 6489 int len;
14f9c5c9
AS
6490 int align_offset;
6491
64a1bf19
JB
6492 /* The field name should never be null, unless the debugging information
6493 is somehow malformed. In this case, we assume the field does not
6494 require any alignment. */
6495 if (name == NULL)
6496 return 1;
6497
6498 len = strlen (name);
6499
4c4b4cd2
PH
6500 if (!isdigit (name[len - 1]))
6501 return 1;
14f9c5c9 6502
d2e4a39e 6503 if (isdigit (name[len - 2]))
14f9c5c9
AS
6504 align_offset = len - 2;
6505 else
6506 align_offset = len - 1;
6507
4c4b4cd2 6508 if (align_offset < 7 || strncmp ("___XV", name + align_offset - 6, 5) != 0)
14f9c5c9
AS
6509 return TARGET_CHAR_BIT;
6510
4c4b4cd2
PH
6511 return atoi (name + align_offset) * TARGET_CHAR_BIT;
6512}
6513
6514/* Find a symbol named NAME. Ignores ambiguity. */
6515
6516struct symbol *
6517ada_find_any_symbol (const char *name)
6518{
6519 struct symbol *sym;
6520
6521 sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN);
6522 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
6523 return sym;
6524
6525 sym = standard_lookup (name, NULL, STRUCT_DOMAIN);
6526 return sym;
14f9c5c9
AS
6527}
6528
dddfab26
UW
6529/* Find a type named NAME. Ignores ambiguity. This routine will look
6530 solely for types defined by debug info, it will not search the GDB
6531 primitive types. */
4c4b4cd2 6532
d2e4a39e 6533struct type *
ebf56fd3 6534ada_find_any_type (const char *name)
14f9c5c9 6535{
4c4b4cd2 6536 struct symbol *sym = ada_find_any_symbol (name);
14f9c5c9 6537
14f9c5c9 6538 if (sym != NULL)
dddfab26 6539 return SYMBOL_TYPE (sym);
14f9c5c9 6540
dddfab26 6541 return NULL;
14f9c5c9
AS
6542}
6543
aeb5907d
JB
6544/* Given NAME and an associated BLOCK, search all symbols for
6545 NAME suffixed with "___XR", which is the ``renaming'' symbol
4c4b4cd2
PH
6546 associated to NAME. Return this symbol if found, return
6547 NULL otherwise. */
6548
6549struct symbol *
6550ada_find_renaming_symbol (const char *name, struct block *block)
aeb5907d
JB
6551{
6552 struct symbol *sym;
6553
6554 sym = find_old_style_renaming_symbol (name, block);
6555
6556 if (sym != NULL)
6557 return sym;
6558
6559 /* Not right yet. FIXME pnh 7/20/2007. */
6560 sym = ada_find_any_symbol (name);
6561 if (sym != NULL && strstr (SYMBOL_LINKAGE_NAME (sym), "___XR") != NULL)
6562 return sym;
6563 else
6564 return NULL;
6565}
6566
6567static struct symbol *
6568find_old_style_renaming_symbol (const char *name, struct block *block)
4c4b4cd2 6569{
7f0df278 6570 const struct symbol *function_sym = block_linkage_function (block);
4c4b4cd2
PH
6571 char *rename;
6572
6573 if (function_sym != NULL)
6574 {
6575 /* If the symbol is defined inside a function, NAME is not fully
6576 qualified. This means we need to prepend the function name
6577 as well as adding the ``___XR'' suffix to build the name of
6578 the associated renaming symbol. */
6579 char *function_name = SYMBOL_LINKAGE_NAME (function_sym);
529cad9c
PH
6580 /* Function names sometimes contain suffixes used
6581 for instance to qualify nested subprograms. When building
6582 the XR type name, we need to make sure that this suffix is
6583 not included. So do not include any suffix in the function
6584 name length below. */
69fadcdf 6585 int function_name_len = ada_name_prefix_len (function_name);
76a01679
JB
6586 const int rename_len = function_name_len + 2 /* "__" */
6587 + strlen (name) + 6 /* "___XR\0" */ ;
4c4b4cd2 6588
529cad9c 6589 /* Strip the suffix if necessary. */
69fadcdf
JB
6590 ada_remove_trailing_digits (function_name, &function_name_len);
6591 ada_remove_po_subprogram_suffix (function_name, &function_name_len);
6592 ada_remove_Xbn_suffix (function_name, &function_name_len);
529cad9c 6593
4c4b4cd2
PH
6594 /* Library-level functions are a special case, as GNAT adds
6595 a ``_ada_'' prefix to the function name to avoid namespace
aeb5907d 6596 pollution. However, the renaming symbols themselves do not
4c4b4cd2
PH
6597 have this prefix, so we need to skip this prefix if present. */
6598 if (function_name_len > 5 /* "_ada_" */
6599 && strstr (function_name, "_ada_") == function_name)
69fadcdf
JB
6600 {
6601 function_name += 5;
6602 function_name_len -= 5;
6603 }
4c4b4cd2
PH
6604
6605 rename = (char *) alloca (rename_len * sizeof (char));
69fadcdf
JB
6606 strncpy (rename, function_name, function_name_len);
6607 xsnprintf (rename + function_name_len, rename_len - function_name_len,
6608 "__%s___XR", name);
4c4b4cd2
PH
6609 }
6610 else
6611 {
6612 const int rename_len = strlen (name) + 6;
6613 rename = (char *) alloca (rename_len * sizeof (char));
88c15c34 6614 xsnprintf (rename, rename_len * sizeof (char), "%s___XR", name);
4c4b4cd2
PH
6615 }
6616
6617 return ada_find_any_symbol (rename);
6618}
6619
14f9c5c9 6620/* Because of GNAT encoding conventions, several GDB symbols may match a
4c4b4cd2 6621 given type name. If the type denoted by TYPE0 is to be preferred to
14f9c5c9 6622 that of TYPE1 for purposes of type printing, return non-zero;
4c4b4cd2
PH
6623 otherwise return 0. */
6624
14f9c5c9 6625int
d2e4a39e 6626ada_prefer_type (struct type *type0, struct type *type1)
14f9c5c9
AS
6627{
6628 if (type1 == NULL)
6629 return 1;
6630 else if (type0 == NULL)
6631 return 0;
6632 else if (TYPE_CODE (type1) == TYPE_CODE_VOID)
6633 return 1;
6634 else if (TYPE_CODE (type0) == TYPE_CODE_VOID)
6635 return 0;
4c4b4cd2
PH
6636 else if (TYPE_NAME (type1) == NULL && TYPE_NAME (type0) != NULL)
6637 return 1;
ad82864c 6638 else if (ada_is_constrained_packed_array_type (type0))
14f9c5c9 6639 return 1;
4c4b4cd2
PH
6640 else if (ada_is_array_descriptor_type (type0)
6641 && !ada_is_array_descriptor_type (type1))
14f9c5c9 6642 return 1;
aeb5907d
JB
6643 else
6644 {
6645 const char *type0_name = type_name_no_tag (type0);
6646 const char *type1_name = type_name_no_tag (type1);
6647
6648 if (type0_name != NULL && strstr (type0_name, "___XR") != NULL
6649 && (type1_name == NULL || strstr (type1_name, "___XR") == NULL))
6650 return 1;
6651 }
14f9c5c9
AS
6652 return 0;
6653}
6654
6655/* The name of TYPE, which is either its TYPE_NAME, or, if that is
4c4b4cd2
PH
6656 null, its TYPE_TAG_NAME. Null if TYPE is null. */
6657
d2e4a39e
AS
6658char *
6659ada_type_name (struct type *type)
14f9c5c9 6660{
d2e4a39e 6661 if (type == NULL)
14f9c5c9
AS
6662 return NULL;
6663 else if (TYPE_NAME (type) != NULL)
6664 return TYPE_NAME (type);
6665 else
6666 return TYPE_TAG_NAME (type);
6667}
6668
6669/* Find a parallel type to TYPE whose name is formed by appending
4c4b4cd2 6670 SUFFIX to the name of TYPE. */
14f9c5c9 6671
d2e4a39e 6672struct type *
ebf56fd3 6673ada_find_parallel_type (struct type *type, const char *suffix)
14f9c5c9 6674{
d2e4a39e 6675 static char *name;
14f9c5c9 6676 static size_t name_len = 0;
14f9c5c9 6677 int len;
d2e4a39e
AS
6678 char *typename = ada_type_name (type);
6679
14f9c5c9
AS
6680 if (typename == NULL)
6681 return NULL;
6682
6683 len = strlen (typename);
6684
d2e4a39e 6685 GROW_VECT (name, name_len, len + strlen (suffix) + 1);
14f9c5c9
AS
6686
6687 strcpy (name, typename);
6688 strcpy (name + len, suffix);
6689
6690 return ada_find_any_type (name);
6691}
6692
6693
6694/* If TYPE is a variable-size record type, return the corresponding template
4c4b4cd2 6695 type describing its fields. Otherwise, return NULL. */
14f9c5c9 6696
d2e4a39e
AS
6697static struct type *
6698dynamic_template_type (struct type *type)
14f9c5c9 6699{
61ee279c 6700 type = ada_check_typedef (type);
14f9c5c9
AS
6701
6702 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT
d2e4a39e 6703 || ada_type_name (type) == NULL)
14f9c5c9 6704 return NULL;
d2e4a39e 6705 else
14f9c5c9
AS
6706 {
6707 int len = strlen (ada_type_name (type));
4c4b4cd2
PH
6708 if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0)
6709 return type;
14f9c5c9 6710 else
4c4b4cd2 6711 return ada_find_parallel_type (type, "___XVE");
14f9c5c9
AS
6712 }
6713}
6714
6715/* Assuming that TEMPL_TYPE is a union or struct type, returns
4c4b4cd2 6716 non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */
14f9c5c9 6717
d2e4a39e
AS
6718static int
6719is_dynamic_field (struct type *templ_type, int field_num)
14f9c5c9
AS
6720{
6721 const char *name = TYPE_FIELD_NAME (templ_type, field_num);
d2e4a39e 6722 return name != NULL
14f9c5c9
AS
6723 && TYPE_CODE (TYPE_FIELD_TYPE (templ_type, field_num)) == TYPE_CODE_PTR
6724 && strstr (name, "___XVL") != NULL;
6725}
6726
4c4b4cd2
PH
6727/* The index of the variant field of TYPE, or -1 if TYPE does not
6728 represent a variant record type. */
14f9c5c9 6729
d2e4a39e 6730static int
4c4b4cd2 6731variant_field_index (struct type *type)
14f9c5c9
AS
6732{
6733 int f;
6734
4c4b4cd2
PH
6735 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT)
6736 return -1;
6737
6738 for (f = 0; f < TYPE_NFIELDS (type); f += 1)
6739 {
6740 if (ada_is_variant_part (type, f))
6741 return f;
6742 }
6743 return -1;
14f9c5c9
AS
6744}
6745
4c4b4cd2
PH
6746/* A record type with no fields. */
6747
d2e4a39e 6748static struct type *
e9bb382b 6749empty_record (struct type *template)
14f9c5c9 6750{
e9bb382b 6751 struct type *type = alloc_type_copy (template);
14f9c5c9
AS
6752 TYPE_CODE (type) = TYPE_CODE_STRUCT;
6753 TYPE_NFIELDS (type) = 0;
6754 TYPE_FIELDS (type) = NULL;
b1f33ddd 6755 INIT_CPLUS_SPECIFIC (type);
14f9c5c9
AS
6756 TYPE_NAME (type) = "<empty>";
6757 TYPE_TAG_NAME (type) = NULL;
14f9c5c9
AS
6758 TYPE_LENGTH (type) = 0;
6759 return type;
6760}
6761
6762/* An ordinary record type (with fixed-length fields) that describes
4c4b4cd2
PH
6763 the value of type TYPE at VALADDR or ADDRESS (see comments at
6764 the beginning of this section) VAL according to GNAT conventions.
6765 DVAL0 should describe the (portion of a) record that contains any
df407dfe 6766 necessary discriminants. It should be NULL if value_type (VAL) is
14f9c5c9
AS
6767 an outer-level type (i.e., as opposed to a branch of a variant.) A
6768 variant field (unless unchecked) is replaced by a particular branch
4c4b4cd2 6769 of the variant.
14f9c5c9 6770
4c4b4cd2
PH
6771 If not KEEP_DYNAMIC_FIELDS, then all fields whose position or
6772 length are not statically known are discarded. As a consequence,
6773 VALADDR, ADDRESS and DVAL0 are ignored.
6774
6775 NOTE: Limitations: For now, we assume that dynamic fields and
6776 variants occupy whole numbers of bytes. However, they need not be
6777 byte-aligned. */
6778
6779struct type *
10a2c479 6780ada_template_to_fixed_record_type_1 (struct type *type,
fc1a4b47 6781 const gdb_byte *valaddr,
4c4b4cd2
PH
6782 CORE_ADDR address, struct value *dval0,
6783 int keep_dynamic_fields)
14f9c5c9 6784{
d2e4a39e
AS
6785 struct value *mark = value_mark ();
6786 struct value *dval;
6787 struct type *rtype;
14f9c5c9 6788 int nfields, bit_len;
4c4b4cd2 6789 int variant_field;
14f9c5c9 6790 long off;
4c4b4cd2 6791 int fld_bit_len, bit_incr;
14f9c5c9
AS
6792 int f;
6793
4c4b4cd2
PH
6794 /* Compute the number of fields in this record type that are going
6795 to be processed: unless keep_dynamic_fields, this includes only
6796 fields whose position and length are static will be processed. */
6797 if (keep_dynamic_fields)
6798 nfields = TYPE_NFIELDS (type);
6799 else
6800 {
6801 nfields = 0;
76a01679 6802 while (nfields < TYPE_NFIELDS (type)
4c4b4cd2
PH
6803 && !ada_is_variant_part (type, nfields)
6804 && !is_dynamic_field (type, nfields))
6805 nfields++;
6806 }
6807
e9bb382b 6808 rtype = alloc_type_copy (type);
14f9c5c9
AS
6809 TYPE_CODE (rtype) = TYPE_CODE_STRUCT;
6810 INIT_CPLUS_SPECIFIC (rtype);
6811 TYPE_NFIELDS (rtype) = nfields;
d2e4a39e 6812 TYPE_FIELDS (rtype) = (struct field *)
14f9c5c9
AS
6813 TYPE_ALLOC (rtype, nfields * sizeof (struct field));
6814 memset (TYPE_FIELDS (rtype), 0, sizeof (struct field) * nfields);
6815 TYPE_NAME (rtype) = ada_type_name (type);
6816 TYPE_TAG_NAME (rtype) = NULL;
876cecd0 6817 TYPE_FIXED_INSTANCE (rtype) = 1;
14f9c5c9 6818
d2e4a39e
AS
6819 off = 0;
6820 bit_len = 0;
4c4b4cd2
PH
6821 variant_field = -1;
6822
14f9c5c9
AS
6823 for (f = 0; f < nfields; f += 1)
6824 {
6c038f32
PH
6825 off = align_value (off, field_alignment (type, f))
6826 + TYPE_FIELD_BITPOS (type, f);
14f9c5c9 6827 TYPE_FIELD_BITPOS (rtype, f) = off;
d2e4a39e 6828 TYPE_FIELD_BITSIZE (rtype, f) = 0;
14f9c5c9 6829
d2e4a39e 6830 if (ada_is_variant_part (type, f))
4c4b4cd2
PH
6831 {
6832 variant_field = f;
6833 fld_bit_len = bit_incr = 0;
6834 }
14f9c5c9 6835 else if (is_dynamic_field (type, f))
4c4b4cd2 6836 {
284614f0
JB
6837 const gdb_byte *field_valaddr = valaddr;
6838 CORE_ADDR field_address = address;
6839 struct type *field_type =
6840 TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, f));
6841
4c4b4cd2 6842 if (dval0 == NULL)
b5304971
JG
6843 {
6844 /* rtype's length is computed based on the run-time
6845 value of discriminants. If the discriminants are not
6846 initialized, the type size may be completely bogus and
6847 GDB may fail to allocate a value for it. So check the
6848 size first before creating the value. */
6849 check_size (rtype);
6850 dval = value_from_contents_and_address (rtype, valaddr, address);
6851 }
4c4b4cd2
PH
6852 else
6853 dval = dval0;
6854
284614f0
JB
6855 /* If the type referenced by this field is an aligner type, we need
6856 to unwrap that aligner type, because its size might not be set.
6857 Keeping the aligner type would cause us to compute the wrong
6858 size for this field, impacting the offset of the all the fields
6859 that follow this one. */
6860 if (ada_is_aligner_type (field_type))
6861 {
6862 long field_offset = TYPE_FIELD_BITPOS (field_type, f);
6863
6864 field_valaddr = cond_offset_host (field_valaddr, field_offset);
6865 field_address = cond_offset_target (field_address, field_offset);
6866 field_type = ada_aligned_type (field_type);
6867 }
6868
6869 field_valaddr = cond_offset_host (field_valaddr,
6870 off / TARGET_CHAR_BIT);
6871 field_address = cond_offset_target (field_address,
6872 off / TARGET_CHAR_BIT);
6873
6874 /* Get the fixed type of the field. Note that, in this case,
6875 we do not want to get the real type out of the tag: if
6876 the current field is the parent part of a tagged record,
6877 we will get the tag of the object. Clearly wrong: the real
6878 type of the parent is not the real type of the child. We
6879 would end up in an infinite loop. */
6880 field_type = ada_get_base_type (field_type);
6881 field_type = ada_to_fixed_type (field_type, field_valaddr,
6882 field_address, dval, 0);
6883
6884 TYPE_FIELD_TYPE (rtype, f) = field_type;
4c4b4cd2
PH
6885 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
6886 bit_incr = fld_bit_len =
6887 TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, f)) * TARGET_CHAR_BIT;
6888 }
14f9c5c9 6889 else
4c4b4cd2
PH
6890 {
6891 TYPE_FIELD_TYPE (rtype, f) = TYPE_FIELD_TYPE (type, f);
6892 TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
6893 if (TYPE_FIELD_BITSIZE (type, f) > 0)
6894 bit_incr = fld_bit_len =
6895 TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f);
6896 else
6897 bit_incr = fld_bit_len =
6898 TYPE_LENGTH (TYPE_FIELD_TYPE (type, f)) * TARGET_CHAR_BIT;
6899 }
14f9c5c9 6900 if (off + fld_bit_len > bit_len)
4c4b4cd2 6901 bit_len = off + fld_bit_len;
14f9c5c9 6902 off += bit_incr;
4c4b4cd2
PH
6903 TYPE_LENGTH (rtype) =
6904 align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
14f9c5c9 6905 }
4c4b4cd2
PH
6906
6907 /* We handle the variant part, if any, at the end because of certain
b1f33ddd 6908 odd cases in which it is re-ordered so as NOT to be the last field of
4c4b4cd2
PH
6909 the record. This can happen in the presence of representation
6910 clauses. */
6911 if (variant_field >= 0)
6912 {
6913 struct type *branch_type;
6914
6915 off = TYPE_FIELD_BITPOS (rtype, variant_field);
6916
6917 if (dval0 == NULL)
6918 dval = value_from_contents_and_address (rtype, valaddr, address);
6919 else
6920 dval = dval0;
6921
6922 branch_type =
6923 to_fixed_variant_branch_type
6924 (TYPE_FIELD_TYPE (type, variant_field),
6925 cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
6926 cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
6927 if (branch_type == NULL)
6928 {
6929 for (f = variant_field + 1; f < TYPE_NFIELDS (rtype); f += 1)
6930 TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f];
6931 TYPE_NFIELDS (rtype) -= 1;
6932 }
6933 else
6934 {
6935 TYPE_FIELD_TYPE (rtype, variant_field) = branch_type;
6936 TYPE_FIELD_NAME (rtype, variant_field) = "S";
6937 fld_bit_len =
6938 TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, variant_field)) *
6939 TARGET_CHAR_BIT;
6940 if (off + fld_bit_len > bit_len)
6941 bit_len = off + fld_bit_len;
6942 TYPE_LENGTH (rtype) =
6943 align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
6944 }
6945 }
6946
714e53ab
PH
6947 /* According to exp_dbug.ads, the size of TYPE for variable-size records
6948 should contain the alignment of that record, which should be a strictly
6949 positive value. If null or negative, then something is wrong, most
6950 probably in the debug info. In that case, we don't round up the size
6951 of the resulting type. If this record is not part of another structure,
6952 the current RTYPE length might be good enough for our purposes. */
6953 if (TYPE_LENGTH (type) <= 0)
6954 {
323e0a4a
AC
6955 if (TYPE_NAME (rtype))
6956 warning (_("Invalid type size for `%s' detected: %d."),
6957 TYPE_NAME (rtype), TYPE_LENGTH (type));
6958 else
6959 warning (_("Invalid type size for <unnamed> detected: %d."),
6960 TYPE_LENGTH (type));
714e53ab
PH
6961 }
6962 else
6963 {
6964 TYPE_LENGTH (rtype) = align_value (TYPE_LENGTH (rtype),
6965 TYPE_LENGTH (type));
6966 }
14f9c5c9
AS
6967
6968 value_free_to_mark (mark);
d2e4a39e 6969 if (TYPE_LENGTH (rtype) > varsize_limit)
323e0a4a 6970 error (_("record type with dynamic size is larger than varsize-limit"));
14f9c5c9
AS
6971 return rtype;
6972}
6973
4c4b4cd2
PH
6974/* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS
6975 of 1. */
14f9c5c9 6976
d2e4a39e 6977static struct type *
fc1a4b47 6978template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr,
4c4b4cd2
PH
6979 CORE_ADDR address, struct value *dval0)
6980{
6981 return ada_template_to_fixed_record_type_1 (type, valaddr,
6982 address, dval0, 1);
6983}
6984
6985/* An ordinary record type in which ___XVL-convention fields and
6986 ___XVU- and ___XVN-convention field types in TYPE0 are replaced with
6987 static approximations, containing all possible fields. Uses
6988 no runtime values. Useless for use in values, but that's OK,
6989 since the results are used only for type determinations. Works on both
6990 structs and unions. Representation note: to save space, we memorize
6991 the result of this function in the TYPE_TARGET_TYPE of the
6992 template type. */
6993
6994static struct type *
6995template_to_static_fixed_type (struct type *type0)
14f9c5c9
AS
6996{
6997 struct type *type;
6998 int nfields;
6999 int f;
7000
4c4b4cd2
PH
7001 if (TYPE_TARGET_TYPE (type0) != NULL)
7002 return TYPE_TARGET_TYPE (type0);
7003
7004 nfields = TYPE_NFIELDS (type0);
7005 type = type0;
14f9c5c9
AS
7006
7007 for (f = 0; f < nfields; f += 1)
7008 {
61ee279c 7009 struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type0, f));
4c4b4cd2 7010 struct type *new_type;
14f9c5c9 7011
4c4b4cd2
PH
7012 if (is_dynamic_field (type0, f))
7013 new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type));
14f9c5c9 7014 else
f192137b 7015 new_type = static_unwrap_type (field_type);
4c4b4cd2
PH
7016 if (type == type0 && new_type != field_type)
7017 {
e9bb382b 7018 TYPE_TARGET_TYPE (type0) = type = alloc_type_copy (type0);
4c4b4cd2
PH
7019 TYPE_CODE (type) = TYPE_CODE (type0);
7020 INIT_CPLUS_SPECIFIC (type);
7021 TYPE_NFIELDS (type) = nfields;
7022 TYPE_FIELDS (type) = (struct field *)
7023 TYPE_ALLOC (type, nfields * sizeof (struct field));
7024 memcpy (TYPE_FIELDS (type), TYPE_FIELDS (type0),
7025 sizeof (struct field) * nfields);
7026 TYPE_NAME (type) = ada_type_name (type0);
7027 TYPE_TAG_NAME (type) = NULL;
876cecd0 7028 TYPE_FIXED_INSTANCE (type) = 1;
4c4b4cd2
PH
7029 TYPE_LENGTH (type) = 0;
7030 }
7031 TYPE_FIELD_TYPE (type, f) = new_type;
7032 TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f);
14f9c5c9 7033 }
14f9c5c9
AS
7034 return type;
7035}
7036
4c4b4cd2 7037/* Given an object of type TYPE whose contents are at VALADDR and
5823c3ef
JB
7038 whose address in memory is ADDRESS, returns a revision of TYPE,
7039 which should be a non-dynamic-sized record, in which the variant
7040 part, if any, is replaced with the appropriate branch. Looks
4c4b4cd2
PH
7041 for discriminant values in DVAL0, which can be NULL if the record
7042 contains the necessary discriminant values. */
7043
d2e4a39e 7044static struct type *
fc1a4b47 7045to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr,
4c4b4cd2 7046 CORE_ADDR address, struct value *dval0)
14f9c5c9 7047{
d2e4a39e 7048 struct value *mark = value_mark ();
4c4b4cd2 7049 struct value *dval;
d2e4a39e 7050 struct type *rtype;
14f9c5c9
AS
7051 struct type *branch_type;
7052 int nfields = TYPE_NFIELDS (type);
4c4b4cd2 7053 int variant_field = variant_field_index (type);
14f9c5c9 7054
4c4b4cd2 7055 if (variant_field == -1)
14f9c5c9
AS
7056 return type;
7057
4c4b4cd2
PH
7058 if (dval0 == NULL)
7059 dval = value_from_contents_and_address (type, valaddr, address);
7060 else
7061 dval = dval0;
7062
e9bb382b 7063 rtype = alloc_type_copy (type);
14f9c5c9 7064 TYPE_CODE (rtype) = TYPE_CODE_STRUCT;
4c4b4cd2
PH
7065 INIT_CPLUS_SPECIFIC (rtype);
7066 TYPE_NFIELDS (rtype) = nfields;
d2e4a39e
AS
7067 TYPE_FIELDS (rtype) =
7068 (struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field));
7069 memcpy (TYPE_FIELDS (rtype), TYPE_FIELDS (type),
4c4b4cd2 7070 sizeof (struct field) * nfields);
14f9c5c9
AS
7071 TYPE_NAME (rtype) = ada_type_name (type);
7072 TYPE_TAG_NAME (rtype) = NULL;
876cecd0 7073 TYPE_FIXED_INSTANCE (rtype) = 1;
14f9c5c9
AS
7074 TYPE_LENGTH (rtype) = TYPE_LENGTH (type);
7075
4c4b4cd2
PH
7076 branch_type = to_fixed_variant_branch_type
7077 (TYPE_FIELD_TYPE (type, variant_field),
d2e4a39e 7078 cond_offset_host (valaddr,
4c4b4cd2
PH
7079 TYPE_FIELD_BITPOS (type, variant_field)
7080 / TARGET_CHAR_BIT),
d2e4a39e 7081 cond_offset_target (address,
4c4b4cd2
PH
7082 TYPE_FIELD_BITPOS (type, variant_field)
7083 / TARGET_CHAR_BIT), dval);
d2e4a39e 7084 if (branch_type == NULL)
14f9c5c9 7085 {
4c4b4cd2
PH
7086 int f;
7087 for (f = variant_field + 1; f < nfields; f += 1)
7088 TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f];
14f9c5c9 7089 TYPE_NFIELDS (rtype) -= 1;
14f9c5c9
AS
7090 }
7091 else
7092 {
4c4b4cd2
PH
7093 TYPE_FIELD_TYPE (rtype, variant_field) = branch_type;
7094 TYPE_FIELD_NAME (rtype, variant_field) = "S";
7095 TYPE_FIELD_BITSIZE (rtype, variant_field) = 0;
14f9c5c9 7096 TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type);
14f9c5c9 7097 }
4c4b4cd2 7098 TYPE_LENGTH (rtype) -= TYPE_LENGTH (TYPE_FIELD_TYPE (type, variant_field));
d2e4a39e 7099
4c4b4cd2 7100 value_free_to_mark (mark);
14f9c5c9
AS
7101 return rtype;
7102}
7103
7104/* An ordinary record type (with fixed-length fields) that describes
7105 the value at (TYPE0, VALADDR, ADDRESS) [see explanation at
7106 beginning of this section]. Any necessary discriminants' values
4c4b4cd2
PH
7107 should be in DVAL, a record value; it may be NULL if the object
7108 at ADDR itself contains any necessary discriminant values.
7109 Additionally, VALADDR and ADDRESS may also be NULL if no discriminant
7110 values from the record are needed. Except in the case that DVAL,
7111 VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless
7112 unchecked) is replaced by a particular branch of the variant.
7113
7114 NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0
7115 is questionable and may be removed. It can arise during the
7116 processing of an unconstrained-array-of-record type where all the
7117 variant branches have exactly the same size. This is because in
7118 such cases, the compiler does not bother to use the XVS convention
7119 when encoding the record. I am currently dubious of this
7120 shortcut and suspect the compiler should be altered. FIXME. */
14f9c5c9 7121
d2e4a39e 7122static struct type *
fc1a4b47 7123to_fixed_record_type (struct type *type0, const gdb_byte *valaddr,
4c4b4cd2 7124 CORE_ADDR address, struct value *dval)
14f9c5c9 7125{
d2e4a39e 7126 struct type *templ_type;
14f9c5c9 7127
876cecd0 7128 if (TYPE_FIXED_INSTANCE (type0))
4c4b4cd2
PH
7129 return type0;
7130
d2e4a39e 7131 templ_type = dynamic_template_type (type0);
14f9c5c9
AS
7132
7133 if (templ_type != NULL)
7134 return template_to_fixed_record_type (templ_type, valaddr, address, dval);
4c4b4cd2
PH
7135 else if (variant_field_index (type0) >= 0)
7136 {
7137 if (dval == NULL && valaddr == NULL && address == 0)
7138 return type0;
7139 return to_record_with_fixed_variant_part (type0, valaddr, address,
7140 dval);
7141 }
14f9c5c9
AS
7142 else
7143 {
876cecd0 7144 TYPE_FIXED_INSTANCE (type0) = 1;
14f9c5c9
AS
7145 return type0;
7146 }
7147
7148}
7149
7150/* An ordinary record type (with fixed-length fields) that describes
7151 the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a
7152 union type. Any necessary discriminants' values should be in DVAL,
7153 a record value. That is, this routine selects the appropriate
7154 branch of the union at ADDR according to the discriminant value
b1f33ddd
JB
7155 indicated in the union's type name. Returns VAR_TYPE0 itself if
7156 it represents a variant subject to a pragma Unchecked_Union. */
14f9c5c9 7157
d2e4a39e 7158static struct type *
fc1a4b47 7159to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr,
4c4b4cd2 7160 CORE_ADDR address, struct value *dval)
14f9c5c9
AS
7161{
7162 int which;
d2e4a39e
AS
7163 struct type *templ_type;
7164 struct type *var_type;
14f9c5c9
AS
7165
7166 if (TYPE_CODE (var_type0) == TYPE_CODE_PTR)
7167 var_type = TYPE_TARGET_TYPE (var_type0);
d2e4a39e 7168 else
14f9c5c9
AS
7169 var_type = var_type0;
7170
7171 templ_type = ada_find_parallel_type (var_type, "___XVU");
7172
7173 if (templ_type != NULL)
7174 var_type = templ_type;
7175
b1f33ddd
JB
7176 if (is_unchecked_variant (var_type, value_type (dval)))
7177 return var_type0;
d2e4a39e
AS
7178 which =
7179 ada_which_variant_applies (var_type,
0fd88904 7180 value_type (dval), value_contents (dval));
14f9c5c9
AS
7181
7182 if (which < 0)
e9bb382b 7183 return empty_record (var_type);
14f9c5c9 7184 else if (is_dynamic_field (var_type, which))
4c4b4cd2 7185 return to_fixed_record_type
d2e4a39e
AS
7186 (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (var_type, which)),
7187 valaddr, address, dval);
4c4b4cd2 7188 else if (variant_field_index (TYPE_FIELD_TYPE (var_type, which)) >= 0)
d2e4a39e
AS
7189 return
7190 to_fixed_record_type
7191 (TYPE_FIELD_TYPE (var_type, which), valaddr, address, dval);
14f9c5c9
AS
7192 else
7193 return TYPE_FIELD_TYPE (var_type, which);
7194}
7195
7196/* Assuming that TYPE0 is an array type describing the type of a value
7197 at ADDR, and that DVAL describes a record containing any
7198 discriminants used in TYPE0, returns a type for the value that
7199 contains no dynamic components (that is, no components whose sizes
7200 are determined by run-time quantities). Unless IGNORE_TOO_BIG is
7201 true, gives an error message if the resulting type's size is over
4c4b4cd2 7202 varsize_limit. */
14f9c5c9 7203
d2e4a39e
AS
7204static struct type *
7205to_fixed_array_type (struct type *type0, struct value *dval,
4c4b4cd2 7206 int ignore_too_big)
14f9c5c9 7207{
d2e4a39e
AS
7208 struct type *index_type_desc;
7209 struct type *result;
ad82864c 7210 int constrained_packed_array_p;
14f9c5c9 7211
284614f0 7212 if (TYPE_FIXED_INSTANCE (type0))
4c4b4cd2 7213 return type0;
14f9c5c9 7214
ad82864c
JB
7215 constrained_packed_array_p = ada_is_constrained_packed_array_type (type0);
7216 if (constrained_packed_array_p)
7217 type0 = decode_constrained_packed_array_type (type0);
284614f0 7218
14f9c5c9
AS
7219 index_type_desc = ada_find_parallel_type (type0, "___XA");
7220 if (index_type_desc == NULL)
7221 {
61ee279c 7222 struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0));
14f9c5c9 7223 /* NOTE: elt_type---the fixed version of elt_type0---should never
4c4b4cd2
PH
7224 depend on the contents of the array in properly constructed
7225 debugging data. */
529cad9c
PH
7226 /* Create a fixed version of the array element type.
7227 We're not providing the address of an element here,
e1d5a0d2 7228 and thus the actual object value cannot be inspected to do
529cad9c
PH
7229 the conversion. This should not be a problem, since arrays of
7230 unconstrained objects are not allowed. In particular, all
7231 the elements of an array of a tagged type should all be of
7232 the same type specified in the debugging info. No need to
7233 consult the object tag. */
1ed6ede0 7234 struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval, 1);
14f9c5c9 7235
284614f0
JB
7236 /* Make sure we always create a new array type when dealing with
7237 packed array types, since we're going to fix-up the array
7238 type length and element bitsize a little further down. */
ad82864c 7239 if (elt_type0 == elt_type && !constrained_packed_array_p)
4c4b4cd2 7240 result = type0;
14f9c5c9 7241 else
e9bb382b 7242 result = create_array_type (alloc_type_copy (type0),
4c4b4cd2 7243 elt_type, TYPE_INDEX_TYPE (type0));
14f9c5c9
AS
7244 }
7245 else
7246 {
7247 int i;
7248 struct type *elt_type0;
7249
7250 elt_type0 = type0;
7251 for (i = TYPE_NFIELDS (index_type_desc); i > 0; i -= 1)
4c4b4cd2 7252 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
14f9c5c9
AS
7253
7254 /* NOTE: result---the fixed version of elt_type0---should never
4c4b4cd2
PH
7255 depend on the contents of the array in properly constructed
7256 debugging data. */
529cad9c
PH
7257 /* Create a fixed version of the array element type.
7258 We're not providing the address of an element here,
e1d5a0d2 7259 and thus the actual object value cannot be inspected to do
529cad9c
PH
7260 the conversion. This should not be a problem, since arrays of
7261 unconstrained objects are not allowed. In particular, all
7262 the elements of an array of a tagged type should all be of
7263 the same type specified in the debugging info. No need to
7264 consult the object tag. */
1ed6ede0
JB
7265 result =
7266 ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval, 1);
1ce677a4
UW
7267
7268 elt_type0 = type0;
14f9c5c9 7269 for (i = TYPE_NFIELDS (index_type_desc) - 1; i >= 0; i -= 1)
4c4b4cd2
PH
7270 {
7271 struct type *range_type =
7272 to_fixed_range_type (TYPE_FIELD_NAME (index_type_desc, i),
1ce677a4 7273 dval, TYPE_INDEX_TYPE (elt_type0));
e9bb382b 7274 result = create_array_type (alloc_type_copy (elt_type0),
4c4b4cd2 7275 result, range_type);
1ce677a4 7276 elt_type0 = TYPE_TARGET_TYPE (elt_type0);
4c4b4cd2 7277 }
d2e4a39e 7278 if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit)
323e0a4a 7279 error (_("array type with dynamic size is larger than varsize-limit"));
14f9c5c9
AS
7280 }
7281
ad82864c 7282 if (constrained_packed_array_p)
284614f0
JB
7283 {
7284 /* So far, the resulting type has been created as if the original
7285 type was a regular (non-packed) array type. As a result, the
7286 bitsize of the array elements needs to be set again, and the array
7287 length needs to be recomputed based on that bitsize. */
7288 int len = TYPE_LENGTH (result) / TYPE_LENGTH (TYPE_TARGET_TYPE (result));
7289 int elt_bitsize = TYPE_FIELD_BITSIZE (type0, 0);
7290
7291 TYPE_FIELD_BITSIZE (result, 0) = TYPE_FIELD_BITSIZE (type0, 0);
7292 TYPE_LENGTH (result) = len * elt_bitsize / HOST_CHAR_BIT;
7293 if (TYPE_LENGTH (result) * HOST_CHAR_BIT < len * elt_bitsize)
7294 TYPE_LENGTH (result)++;
7295 }
7296
876cecd0 7297 TYPE_FIXED_INSTANCE (result) = 1;
14f9c5c9 7298 return result;
d2e4a39e 7299}
14f9c5c9
AS
7300
7301
7302/* A standard type (containing no dynamically sized components)
7303 corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS)
7304 DVAL describes a record containing any discriminants used in TYPE0,
4c4b4cd2 7305 and may be NULL if there are none, or if the object of type TYPE at
529cad9c
PH
7306 ADDRESS or in VALADDR contains these discriminants.
7307
1ed6ede0
JB
7308 If CHECK_TAG is not null, in the case of tagged types, this function
7309 attempts to locate the object's tag and use it to compute the actual
7310 type. However, when ADDRESS is null, we cannot use it to determine the
7311 location of the tag, and therefore compute the tagged type's actual type.
7312 So we return the tagged type without consulting the tag. */
529cad9c 7313
f192137b
JB
7314static struct type *
7315ada_to_fixed_type_1 (struct type *type, const gdb_byte *valaddr,
1ed6ede0 7316 CORE_ADDR address, struct value *dval, int check_tag)
14f9c5c9 7317{
61ee279c 7318 type = ada_check_typedef (type);
d2e4a39e
AS
7319 switch (TYPE_CODE (type))
7320 {
7321 default:
14f9c5c9 7322 return type;
d2e4a39e 7323 case TYPE_CODE_STRUCT:
4c4b4cd2 7324 {
76a01679 7325 struct type *static_type = to_static_fixed_type (type);
1ed6ede0
JB
7326 struct type *fixed_record_type =
7327 to_fixed_record_type (type, valaddr, address, NULL);
529cad9c
PH
7328 /* If STATIC_TYPE is a tagged type and we know the object's address,
7329 then we can determine its tag, and compute the object's actual
1ed6ede0
JB
7330 type from there. Note that we have to use the fixed record
7331 type (the parent part of the record may have dynamic fields
7332 and the way the location of _tag is expressed may depend on
7333 them). */
529cad9c 7334
1ed6ede0 7335 if (check_tag && address != 0 && ada_is_tagged_type (static_type, 0))
76a01679
JB
7336 {
7337 struct type *real_type =
1ed6ede0
JB
7338 type_from_tag (value_tag_from_contents_and_address
7339 (fixed_record_type,
7340 valaddr,
7341 address));
76a01679 7342 if (real_type != NULL)
1ed6ede0 7343 return to_fixed_record_type (real_type, valaddr, address, NULL);
76a01679 7344 }
4af88198
JB
7345
7346 /* Check to see if there is a parallel ___XVZ variable.
7347 If there is, then it provides the actual size of our type. */
7348 else if (ada_type_name (fixed_record_type) != NULL)
7349 {
7350 char *name = ada_type_name (fixed_record_type);
7351 char *xvz_name = alloca (strlen (name) + 7 /* "___XVZ\0" */);
7352 int xvz_found = 0;
7353 LONGEST size;
7354
88c15c34 7355 xsnprintf (xvz_name, strlen (name) + 7, "%s___XVZ", name);
4af88198
JB
7356 size = get_int_var_value (xvz_name, &xvz_found);
7357 if (xvz_found && TYPE_LENGTH (fixed_record_type) != size)
7358 {
7359 fixed_record_type = copy_type (fixed_record_type);
7360 TYPE_LENGTH (fixed_record_type) = size;
7361
7362 /* The FIXED_RECORD_TYPE may have be a stub. We have
7363 observed this when the debugging info is STABS, and
7364 apparently it is something that is hard to fix.
7365
7366 In practice, we don't need the actual type definition
7367 at all, because the presence of the XVZ variable allows us
7368 to assume that there must be a XVS type as well, which we
7369 should be able to use later, when we need the actual type
7370 definition.
7371
7372 In the meantime, pretend that the "fixed" type we are
7373 returning is NOT a stub, because this can cause trouble
7374 when using this type to create new types targeting it.
7375 Indeed, the associated creation routines often check
7376 whether the target type is a stub and will try to replace
7377 it, thus using a type with the wrong size. This, in turn,
7378 might cause the new type to have the wrong size too.
7379 Consider the case of an array, for instance, where the size
7380 of the array is computed from the number of elements in
7381 our array multiplied by the size of its element. */
7382 TYPE_STUB (fixed_record_type) = 0;
7383 }
7384 }
1ed6ede0 7385 return fixed_record_type;
4c4b4cd2 7386 }
d2e4a39e 7387 case TYPE_CODE_ARRAY:
4c4b4cd2 7388 return to_fixed_array_type (type, dval, 1);
d2e4a39e
AS
7389 case TYPE_CODE_UNION:
7390 if (dval == NULL)
4c4b4cd2 7391 return type;
d2e4a39e 7392 else
4c4b4cd2 7393 return to_fixed_variant_branch_type (type, valaddr, address, dval);
d2e4a39e 7394 }
14f9c5c9
AS
7395}
7396
f192137b
JB
7397/* The same as ada_to_fixed_type_1, except that it preserves the type
7398 if it is a TYPE_CODE_TYPEDEF of a type that is already fixed.
7399 ada_to_fixed_type_1 would return the type referenced by TYPE. */
7400
7401struct type *
7402ada_to_fixed_type (struct type *type, const gdb_byte *valaddr,
7403 CORE_ADDR address, struct value *dval, int check_tag)
7404
7405{
7406 struct type *fixed_type =
7407 ada_to_fixed_type_1 (type, valaddr, address, dval, check_tag);
7408
7409 if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF
7410 && TYPE_TARGET_TYPE (type) == fixed_type)
7411 return type;
7412
7413 return fixed_type;
7414}
7415
14f9c5c9 7416/* A standard (static-sized) type corresponding as well as possible to
4c4b4cd2 7417 TYPE0, but based on no runtime data. */
14f9c5c9 7418
d2e4a39e
AS
7419static struct type *
7420to_static_fixed_type (struct type *type0)
14f9c5c9 7421{
d2e4a39e 7422 struct type *type;
14f9c5c9
AS
7423
7424 if (type0 == NULL)
7425 return NULL;
7426
876cecd0 7427 if (TYPE_FIXED_INSTANCE (type0))
4c4b4cd2
PH
7428 return type0;
7429
61ee279c 7430 type0 = ada_check_typedef (type0);
d2e4a39e 7431
14f9c5c9
AS
7432 switch (TYPE_CODE (type0))
7433 {
7434 default:
7435 return type0;
7436 case TYPE_CODE_STRUCT:
7437 type = dynamic_template_type (type0);
d2e4a39e 7438 if (type != NULL)
4c4b4cd2
PH
7439 return template_to_static_fixed_type (type);
7440 else
7441 return template_to_static_fixed_type (type0);
14f9c5c9
AS
7442 case TYPE_CODE_UNION:
7443 type = ada_find_parallel_type (type0, "___XVU");
7444 if (type != NULL)
4c4b4cd2
PH
7445 return template_to_static_fixed_type (type);
7446 else
7447 return template_to_static_fixed_type (type0);
14f9c5c9
AS
7448 }
7449}
7450
4c4b4cd2
PH
7451/* A static approximation of TYPE with all type wrappers removed. */
7452
d2e4a39e
AS
7453static struct type *
7454static_unwrap_type (struct type *type)
14f9c5c9
AS
7455{
7456 if (ada_is_aligner_type (type))
7457 {
61ee279c 7458 struct type *type1 = TYPE_FIELD_TYPE (ada_check_typedef (type), 0);
14f9c5c9 7459 if (ada_type_name (type1) == NULL)
4c4b4cd2 7460 TYPE_NAME (type1) = ada_type_name (type);
14f9c5c9
AS
7461
7462 return static_unwrap_type (type1);
7463 }
d2e4a39e 7464 else
14f9c5c9 7465 {
d2e4a39e
AS
7466 struct type *raw_real_type = ada_get_base_type (type);
7467 if (raw_real_type == type)
4c4b4cd2 7468 return type;
14f9c5c9 7469 else
4c4b4cd2 7470 return to_static_fixed_type (raw_real_type);
14f9c5c9
AS
7471 }
7472}
7473
7474/* In some cases, incomplete and private types require
4c4b4cd2 7475 cross-references that are not resolved as records (for example,
14f9c5c9
AS
7476 type Foo;
7477 type FooP is access Foo;
7478 V: FooP;
7479 type Foo is array ...;
4c4b4cd2 7480 ). In these cases, since there is no mechanism for producing
14f9c5c9
AS
7481 cross-references to such types, we instead substitute for FooP a
7482 stub enumeration type that is nowhere resolved, and whose tag is
4c4b4cd2 7483 the name of the actual type. Call these types "non-record stubs". */
14f9c5c9
AS
7484
7485/* A type equivalent to TYPE that is not a non-record stub, if one
4c4b4cd2
PH
7486 exists, otherwise TYPE. */
7487
d2e4a39e 7488struct type *
61ee279c 7489ada_check_typedef (struct type *type)
14f9c5c9 7490{
727e3d2e
JB
7491 if (type == NULL)
7492 return NULL;
7493
14f9c5c9
AS
7494 CHECK_TYPEDEF (type);
7495 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM
529cad9c 7496 || !TYPE_STUB (type)
14f9c5c9
AS
7497 || TYPE_TAG_NAME (type) == NULL)
7498 return type;
d2e4a39e 7499 else
14f9c5c9 7500 {
d2e4a39e
AS
7501 char *name = TYPE_TAG_NAME (type);
7502 struct type *type1 = ada_find_any_type (name);
14f9c5c9
AS
7503 return (type1 == NULL) ? type : type1;
7504 }
7505}
7506
7507/* A value representing the data at VALADDR/ADDRESS as described by
7508 type TYPE0, but with a standard (static-sized) type that correctly
7509 describes it. If VAL0 is not NULL and TYPE0 already is a standard
7510 type, then return VAL0 [this feature is simply to avoid redundant
4c4b4cd2 7511 creation of struct values]. */
14f9c5c9 7512
4c4b4cd2
PH
7513static struct value *
7514ada_to_fixed_value_create (struct type *type0, CORE_ADDR address,
7515 struct value *val0)
14f9c5c9 7516{
1ed6ede0 7517 struct type *type = ada_to_fixed_type (type0, 0, address, NULL, 1);
14f9c5c9
AS
7518 if (type == type0 && val0 != NULL)
7519 return val0;
d2e4a39e 7520 else
4c4b4cd2
PH
7521 return value_from_contents_and_address (type, 0, address);
7522}
7523
7524/* A value representing VAL, but with a standard (static-sized) type
7525 that correctly describes it. Does not necessarily create a new
7526 value. */
7527
7528static struct value *
7529ada_to_fixed_value (struct value *val)
7530{
df407dfe 7531 return ada_to_fixed_value_create (value_type (val),
42ae5230 7532 value_address (val),
4c4b4cd2 7533 val);
14f9c5c9
AS
7534}
7535
4c4b4cd2 7536/* A value representing VAL, but with a standard (static-sized) type
14f9c5c9
AS
7537 chosen to approximate the real type of VAL as well as possible, but
7538 without consulting any runtime values. For Ada dynamic-sized
4c4b4cd2 7539 types, therefore, the type of the result is likely to be inaccurate. */
14f9c5c9 7540
2c0b251b 7541static struct value *
d2e4a39e 7542ada_to_static_fixed_value (struct value *val)
14f9c5c9 7543{
d2e4a39e 7544 struct type *type =
df407dfe
AC
7545 to_static_fixed_type (static_unwrap_type (value_type (val)));
7546 if (type == value_type (val))
14f9c5c9
AS
7547 return val;
7548 else
4c4b4cd2 7549 return coerce_unspec_val_to_type (val, type);
14f9c5c9 7550}
d2e4a39e 7551\f
14f9c5c9 7552
14f9c5c9
AS
7553/* Attributes */
7554
4c4b4cd2
PH
7555/* Table mapping attribute numbers to names.
7556 NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */
14f9c5c9 7557
d2e4a39e 7558static const char *attribute_names[] = {
14f9c5c9
AS
7559 "<?>",
7560
d2e4a39e 7561 "first",
14f9c5c9
AS
7562 "last",
7563 "length",
7564 "image",
14f9c5c9
AS
7565 "max",
7566 "min",
4c4b4cd2
PH
7567 "modulus",
7568 "pos",
7569 "size",
7570 "tag",
14f9c5c9 7571 "val",
14f9c5c9
AS
7572 0
7573};
7574
d2e4a39e 7575const char *
4c4b4cd2 7576ada_attribute_name (enum exp_opcode n)
14f9c5c9 7577{
4c4b4cd2
PH
7578 if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL)
7579 return attribute_names[n - OP_ATR_FIRST + 1];
14f9c5c9
AS
7580 else
7581 return attribute_names[0];
7582}
7583
4c4b4cd2 7584/* Evaluate the 'POS attribute applied to ARG. */
14f9c5c9 7585
4c4b4cd2
PH
7586static LONGEST
7587pos_atr (struct value *arg)
14f9c5c9 7588{
24209737
PH
7589 struct value *val = coerce_ref (arg);
7590 struct type *type = value_type (val);
14f9c5c9 7591
d2e4a39e 7592 if (!discrete_type_p (type))
323e0a4a 7593 error (_("'POS only defined on discrete types"));
14f9c5c9
AS
7594
7595 if (TYPE_CODE (type) == TYPE_CODE_ENUM)
7596 {
7597 int i;
24209737 7598 LONGEST v = value_as_long (val);
14f9c5c9 7599
d2e4a39e 7600 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
4c4b4cd2
PH
7601 {
7602 if (v == TYPE_FIELD_BITPOS (type, i))
7603 return i;
7604 }
323e0a4a 7605 error (_("enumeration value is invalid: can't find 'POS"));
14f9c5c9
AS
7606 }
7607 else
24209737 7608 return value_as_long (val);
4c4b4cd2
PH
7609}
7610
7611static struct value *
3cb382c9 7612value_pos_atr (struct type *type, struct value *arg)
4c4b4cd2 7613{
3cb382c9 7614 return value_from_longest (type, pos_atr (arg));
14f9c5c9
AS
7615}
7616
4c4b4cd2 7617/* Evaluate the TYPE'VAL attribute applied to ARG. */
14f9c5c9 7618
d2e4a39e
AS
7619static struct value *
7620value_val_atr (struct type *type, struct value *arg)
14f9c5c9 7621{
d2e4a39e 7622 if (!discrete_type_p (type))
323e0a4a 7623 error (_("'VAL only defined on discrete types"));
df407dfe 7624 if (!integer_type_p (value_type (arg)))
323e0a4a 7625 error (_("'VAL requires integral argument"));
14f9c5c9
AS
7626
7627 if (TYPE_CODE (type) == TYPE_CODE_ENUM)
7628 {
7629 long pos = value_as_long (arg);
7630 if (pos < 0 || pos >= TYPE_NFIELDS (type))
323e0a4a 7631 error (_("argument to 'VAL out of range"));
d2e4a39e 7632 return value_from_longest (type, TYPE_FIELD_BITPOS (type, pos));
14f9c5c9
AS
7633 }
7634 else
7635 return value_from_longest (type, value_as_long (arg));
7636}
14f9c5c9 7637\f
d2e4a39e 7638
4c4b4cd2 7639 /* Evaluation */
14f9c5c9 7640
4c4b4cd2
PH
7641/* True if TYPE appears to be an Ada character type.
7642 [At the moment, this is true only for Character and Wide_Character;
7643 It is a heuristic test that could stand improvement]. */
14f9c5c9 7644
d2e4a39e
AS
7645int
7646ada_is_character_type (struct type *type)
14f9c5c9 7647{
7b9f71f2
JB
7648 const char *name;
7649
7650 /* If the type code says it's a character, then assume it really is,
7651 and don't check any further. */
7652 if (TYPE_CODE (type) == TYPE_CODE_CHAR)
7653 return 1;
7654
7655 /* Otherwise, assume it's a character type iff it is a discrete type
7656 with a known character type name. */
7657 name = ada_type_name (type);
7658 return (name != NULL
7659 && (TYPE_CODE (type) == TYPE_CODE_INT
7660 || TYPE_CODE (type) == TYPE_CODE_RANGE)
7661 && (strcmp (name, "character") == 0
7662 || strcmp (name, "wide_character") == 0
5a517ebd 7663 || strcmp (name, "wide_wide_character") == 0
7b9f71f2 7664 || strcmp (name, "unsigned char") == 0));
14f9c5c9
AS
7665}
7666
4c4b4cd2 7667/* True if TYPE appears to be an Ada string type. */
14f9c5c9
AS
7668
7669int
ebf56fd3 7670ada_is_string_type (struct type *type)
14f9c5c9 7671{
61ee279c 7672 type = ada_check_typedef (type);
d2e4a39e 7673 if (type != NULL
14f9c5c9 7674 && TYPE_CODE (type) != TYPE_CODE_PTR
76a01679
JB
7675 && (ada_is_simple_array_type (type)
7676 || ada_is_array_descriptor_type (type))
14f9c5c9
AS
7677 && ada_array_arity (type) == 1)
7678 {
7679 struct type *elttype = ada_array_element_type (type, 1);
7680
7681 return ada_is_character_type (elttype);
7682 }
d2e4a39e 7683 else
14f9c5c9
AS
7684 return 0;
7685}
7686
7687
7688/* True if TYPE is a struct type introduced by the compiler to force the
7689 alignment of a value. Such types have a single field with a
4c4b4cd2 7690 distinctive name. */
14f9c5c9
AS
7691
7692int
ebf56fd3 7693ada_is_aligner_type (struct type *type)
14f9c5c9 7694{
61ee279c 7695 type = ada_check_typedef (type);
714e53ab
PH
7696
7697 /* If we can find a parallel XVS type, then the XVS type should
7698 be used instead of this type. And hence, this is not an aligner
7699 type. */
7700 if (ada_find_parallel_type (type, "___XVS") != NULL)
7701 return 0;
7702
14f9c5c9 7703 return (TYPE_CODE (type) == TYPE_CODE_STRUCT
4c4b4cd2
PH
7704 && TYPE_NFIELDS (type) == 1
7705 && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0);
14f9c5c9
AS
7706}
7707
7708/* If there is an ___XVS-convention type parallel to SUBTYPE, return
4c4b4cd2 7709 the parallel type. */
14f9c5c9 7710
d2e4a39e
AS
7711struct type *
7712ada_get_base_type (struct type *raw_type)
14f9c5c9 7713{
d2e4a39e
AS
7714 struct type *real_type_namer;
7715 struct type *raw_real_type;
14f9c5c9
AS
7716
7717 if (raw_type == NULL || TYPE_CODE (raw_type) != TYPE_CODE_STRUCT)
7718 return raw_type;
7719
284614f0
JB
7720 if (ada_is_aligner_type (raw_type))
7721 /* The encoding specifies that we should always use the aligner type.
7722 So, even if this aligner type has an associated XVS type, we should
7723 simply ignore it.
7724
7725 According to the compiler gurus, an XVS type parallel to an aligner
7726 type may exist because of a stabs limitation. In stabs, aligner
7727 types are empty because the field has a variable-sized type, and
7728 thus cannot actually be used as an aligner type. As a result,
7729 we need the associated parallel XVS type to decode the type.
7730 Since the policy in the compiler is to not change the internal
7731 representation based on the debugging info format, we sometimes
7732 end up having a redundant XVS type parallel to the aligner type. */
7733 return raw_type;
7734
14f9c5c9 7735 real_type_namer = ada_find_parallel_type (raw_type, "___XVS");
d2e4a39e 7736 if (real_type_namer == NULL
14f9c5c9
AS
7737 || TYPE_CODE (real_type_namer) != TYPE_CODE_STRUCT
7738 || TYPE_NFIELDS (real_type_namer) != 1)
7739 return raw_type;
7740
7741 raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0));
d2e4a39e 7742 if (raw_real_type == NULL)
14f9c5c9
AS
7743 return raw_type;
7744 else
7745 return raw_real_type;
d2e4a39e 7746}
14f9c5c9 7747
4c4b4cd2 7748/* The type of value designated by TYPE, with all aligners removed. */
14f9c5c9 7749
d2e4a39e
AS
7750struct type *
7751ada_aligned_type (struct type *type)
14f9c5c9
AS
7752{
7753 if (ada_is_aligner_type (type))
7754 return ada_aligned_type (TYPE_FIELD_TYPE (type, 0));
7755 else
7756 return ada_get_base_type (type);
7757}
7758
7759
7760/* The address of the aligned value in an object at address VALADDR
4c4b4cd2 7761 having type TYPE. Assumes ada_is_aligner_type (TYPE). */
14f9c5c9 7762
fc1a4b47
AC
7763const gdb_byte *
7764ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr)
14f9c5c9 7765{
d2e4a39e 7766 if (ada_is_aligner_type (type))
14f9c5c9 7767 return ada_aligned_value_addr (TYPE_FIELD_TYPE (type, 0),
4c4b4cd2
PH
7768 valaddr +
7769 TYPE_FIELD_BITPOS (type,
7770 0) / TARGET_CHAR_BIT);
14f9c5c9
AS
7771 else
7772 return valaddr;
7773}
7774
4c4b4cd2
PH
7775
7776
14f9c5c9 7777/* The printed representation of an enumeration literal with encoded
4c4b4cd2 7778 name NAME. The value is good to the next call of ada_enum_name. */
d2e4a39e
AS
7779const char *
7780ada_enum_name (const char *name)
14f9c5c9 7781{
4c4b4cd2
PH
7782 static char *result;
7783 static size_t result_len = 0;
d2e4a39e 7784 char *tmp;
14f9c5c9 7785
4c4b4cd2
PH
7786 /* First, unqualify the enumeration name:
7787 1. Search for the last '.' character. If we find one, then skip
76a01679
JB
7788 all the preceeding characters, the unqualified name starts
7789 right after that dot.
4c4b4cd2 7790 2. Otherwise, we may be debugging on a target where the compiler
76a01679
JB
7791 translates dots into "__". Search forward for double underscores,
7792 but stop searching when we hit an overloading suffix, which is
7793 of the form "__" followed by digits. */
4c4b4cd2 7794
c3e5cd34
PH
7795 tmp = strrchr (name, '.');
7796 if (tmp != NULL)
4c4b4cd2
PH
7797 name = tmp + 1;
7798 else
14f9c5c9 7799 {
4c4b4cd2
PH
7800 while ((tmp = strstr (name, "__")) != NULL)
7801 {
7802 if (isdigit (tmp[2]))
7803 break;
7804 else
7805 name = tmp + 2;
7806 }
14f9c5c9
AS
7807 }
7808
7809 if (name[0] == 'Q')
7810 {
14f9c5c9
AS
7811 int v;
7812 if (name[1] == 'U' || name[1] == 'W')
4c4b4cd2
PH
7813 {
7814 if (sscanf (name + 2, "%x", &v) != 1)
7815 return name;
7816 }
14f9c5c9 7817 else
4c4b4cd2 7818 return name;
14f9c5c9 7819
4c4b4cd2 7820 GROW_VECT (result, result_len, 16);
14f9c5c9 7821 if (isascii (v) && isprint (v))
88c15c34 7822 xsnprintf (result, result_len, "'%c'", v);
14f9c5c9 7823 else if (name[1] == 'U')
88c15c34 7824 xsnprintf (result, result_len, "[\"%02x\"]", v);
14f9c5c9 7825 else
88c15c34 7826 xsnprintf (result, result_len, "[\"%04x\"]", v);
14f9c5c9
AS
7827
7828 return result;
7829 }
d2e4a39e 7830 else
4c4b4cd2 7831 {
c3e5cd34
PH
7832 tmp = strstr (name, "__");
7833 if (tmp == NULL)
7834 tmp = strstr (name, "$");
7835 if (tmp != NULL)
4c4b4cd2
PH
7836 {
7837 GROW_VECT (result, result_len, tmp - name + 1);
7838 strncpy (result, name, tmp - name);
7839 result[tmp - name] = '\0';
7840 return result;
7841 }
7842
7843 return name;
7844 }
14f9c5c9
AS
7845}
7846
14f9c5c9
AS
7847/* Evaluate the subexpression of EXP starting at *POS as for
7848 evaluate_type, updating *POS to point just past the evaluated
4c4b4cd2 7849 expression. */
14f9c5c9 7850
d2e4a39e
AS
7851static struct value *
7852evaluate_subexp_type (struct expression *exp, int *pos)
14f9c5c9 7853{
4b27a620 7854 return evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
14f9c5c9
AS
7855}
7856
7857/* If VAL is wrapped in an aligner or subtype wrapper, return the
4c4b4cd2 7858 value it wraps. */
14f9c5c9 7859
d2e4a39e
AS
7860static struct value *
7861unwrap_value (struct value *val)
14f9c5c9 7862{
df407dfe 7863 struct type *type = ada_check_typedef (value_type (val));
14f9c5c9
AS
7864 if (ada_is_aligner_type (type))
7865 {
de4d072f 7866 struct value *v = ada_value_struct_elt (val, "F", 0);
df407dfe 7867 struct type *val_type = ada_check_typedef (value_type (v));
14f9c5c9 7868 if (ada_type_name (val_type) == NULL)
4c4b4cd2 7869 TYPE_NAME (val_type) = ada_type_name (type);
14f9c5c9
AS
7870
7871 return unwrap_value (v);
7872 }
d2e4a39e 7873 else
14f9c5c9 7874 {
d2e4a39e 7875 struct type *raw_real_type =
61ee279c 7876 ada_check_typedef (ada_get_base_type (type));
d2e4a39e 7877
14f9c5c9 7878 if (type == raw_real_type)
4c4b4cd2 7879 return val;
14f9c5c9 7880
d2e4a39e 7881 return
4c4b4cd2
PH
7882 coerce_unspec_val_to_type
7883 (val, ada_to_fixed_type (raw_real_type, 0,
42ae5230 7884 value_address (val),
1ed6ede0 7885 NULL, 1));
14f9c5c9
AS
7886 }
7887}
d2e4a39e
AS
7888
7889static struct value *
7890cast_to_fixed (struct type *type, struct value *arg)
14f9c5c9
AS
7891{
7892 LONGEST val;
7893
df407dfe 7894 if (type == value_type (arg))
14f9c5c9 7895 return arg;
df407dfe 7896 else if (ada_is_fixed_point_type (value_type (arg)))
d2e4a39e 7897 val = ada_float_to_fixed (type,
df407dfe 7898 ada_fixed_to_float (value_type (arg),
4c4b4cd2 7899 value_as_long (arg)));
d2e4a39e 7900 else
14f9c5c9 7901 {
a53b7a21 7902 DOUBLEST argd = value_as_double (arg);
14f9c5c9
AS
7903 val = ada_float_to_fixed (type, argd);
7904 }
7905
7906 return value_from_longest (type, val);
7907}
7908
d2e4a39e 7909static struct value *
a53b7a21 7910cast_from_fixed (struct type *type, struct value *arg)
14f9c5c9 7911{
df407dfe 7912 DOUBLEST val = ada_fixed_to_float (value_type (arg),
4c4b4cd2 7913 value_as_long (arg));
a53b7a21 7914 return value_from_double (type, val);
14f9c5c9
AS
7915}
7916
4c4b4cd2
PH
7917/* Coerce VAL as necessary for assignment to an lval of type TYPE, and
7918 return the converted value. */
7919
d2e4a39e
AS
7920static struct value *
7921coerce_for_assign (struct type *type, struct value *val)
14f9c5c9 7922{
df407dfe 7923 struct type *type2 = value_type (val);
14f9c5c9
AS
7924 if (type == type2)
7925 return val;
7926
61ee279c
PH
7927 type2 = ada_check_typedef (type2);
7928 type = ada_check_typedef (type);
14f9c5c9 7929
d2e4a39e
AS
7930 if (TYPE_CODE (type2) == TYPE_CODE_PTR
7931 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
14f9c5c9
AS
7932 {
7933 val = ada_value_ind (val);
df407dfe 7934 type2 = value_type (val);
14f9c5c9
AS
7935 }
7936
d2e4a39e 7937 if (TYPE_CODE (type2) == TYPE_CODE_ARRAY
14f9c5c9
AS
7938 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
7939 {
7940 if (TYPE_LENGTH (type2) != TYPE_LENGTH (type)
4c4b4cd2
PH
7941 || TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
7942 != TYPE_LENGTH (TYPE_TARGET_TYPE (type2)))
323e0a4a 7943 error (_("Incompatible types in assignment"));
04624583 7944 deprecated_set_value_type (val, type);
14f9c5c9 7945 }
d2e4a39e 7946 return val;
14f9c5c9
AS
7947}
7948
4c4b4cd2
PH
7949static struct value *
7950ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
7951{
7952 struct value *val;
7953 struct type *type1, *type2;
7954 LONGEST v, v1, v2;
7955
994b9211
AC
7956 arg1 = coerce_ref (arg1);
7957 arg2 = coerce_ref (arg2);
df407dfe
AC
7958 type1 = base_type (ada_check_typedef (value_type (arg1)));
7959 type2 = base_type (ada_check_typedef (value_type (arg2)));
4c4b4cd2 7960
76a01679
JB
7961 if (TYPE_CODE (type1) != TYPE_CODE_INT
7962 || TYPE_CODE (type2) != TYPE_CODE_INT)
4c4b4cd2
PH
7963 return value_binop (arg1, arg2, op);
7964
76a01679 7965 switch (op)
4c4b4cd2
PH
7966 {
7967 case BINOP_MOD:
7968 case BINOP_DIV:
7969 case BINOP_REM:
7970 break;
7971 default:
7972 return value_binop (arg1, arg2, op);
7973 }
7974
7975 v2 = value_as_long (arg2);
7976 if (v2 == 0)
323e0a4a 7977 error (_("second operand of %s must not be zero."), op_string (op));
4c4b4cd2
PH
7978
7979 if (TYPE_UNSIGNED (type1) || op == BINOP_MOD)
7980 return value_binop (arg1, arg2, op);
7981
7982 v1 = value_as_long (arg1);
7983 switch (op)
7984 {
7985 case BINOP_DIV:
7986 v = v1 / v2;
76a01679
JB
7987 if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0)
7988 v += v > 0 ? -1 : 1;
4c4b4cd2
PH
7989 break;
7990 case BINOP_REM:
7991 v = v1 % v2;
76a01679
JB
7992 if (v * v1 < 0)
7993 v -= v2;
4c4b4cd2
PH
7994 break;
7995 default:
7996 /* Should not reach this point. */
7997 v = 0;
7998 }
7999
8000 val = allocate_value (type1);
990a07ab 8001 store_unsigned_integer (value_contents_raw (val),
e17a4113
UW
8002 TYPE_LENGTH (value_type (val)),
8003 gdbarch_byte_order (get_type_arch (type1)), v);
4c4b4cd2
PH
8004 return val;
8005}
8006
8007static int
8008ada_value_equal (struct value *arg1, struct value *arg2)
8009{
df407dfe
AC
8010 if (ada_is_direct_array_type (value_type (arg1))
8011 || ada_is_direct_array_type (value_type (arg2)))
4c4b4cd2 8012 {
f58b38bf
JB
8013 /* Automatically dereference any array reference before
8014 we attempt to perform the comparison. */
8015 arg1 = ada_coerce_ref (arg1);
8016 arg2 = ada_coerce_ref (arg2);
8017
4c4b4cd2
PH
8018 arg1 = ada_coerce_to_simple_array (arg1);
8019 arg2 = ada_coerce_to_simple_array (arg2);
df407dfe
AC
8020 if (TYPE_CODE (value_type (arg1)) != TYPE_CODE_ARRAY
8021 || TYPE_CODE (value_type (arg2)) != TYPE_CODE_ARRAY)
323e0a4a 8022 error (_("Attempt to compare array with non-array"));
4c4b4cd2 8023 /* FIXME: The following works only for types whose
76a01679
JB
8024 representations use all bits (no padding or undefined bits)
8025 and do not have user-defined equality. */
8026 return
df407dfe 8027 TYPE_LENGTH (value_type (arg1)) == TYPE_LENGTH (value_type (arg2))
0fd88904 8028 && memcmp (value_contents (arg1), value_contents (arg2),
df407dfe 8029 TYPE_LENGTH (value_type (arg1))) == 0;
4c4b4cd2
PH
8030 }
8031 return value_equal (arg1, arg2);
8032}
8033
52ce6436
PH
8034/* Total number of component associations in the aggregate starting at
8035 index PC in EXP. Assumes that index PC is the start of an
8036 OP_AGGREGATE. */
8037
8038static int
8039num_component_specs (struct expression *exp, int pc)
8040{
8041 int n, m, i;
8042 m = exp->elts[pc + 1].longconst;
8043 pc += 3;
8044 n = 0;
8045 for (i = 0; i < m; i += 1)
8046 {
8047 switch (exp->elts[pc].opcode)
8048 {
8049 default:
8050 n += 1;
8051 break;
8052 case OP_CHOICES:
8053 n += exp->elts[pc + 1].longconst;
8054 break;
8055 }
8056 ada_evaluate_subexp (NULL, exp, &pc, EVAL_SKIP);
8057 }
8058 return n;
8059}
8060
8061/* Assign the result of evaluating EXP starting at *POS to the INDEXth
8062 component of LHS (a simple array or a record), updating *POS past
8063 the expression, assuming that LHS is contained in CONTAINER. Does
8064 not modify the inferior's memory, nor does it modify LHS (unless
8065 LHS == CONTAINER). */
8066
8067static void
8068assign_component (struct value *container, struct value *lhs, LONGEST index,
8069 struct expression *exp, int *pos)
8070{
8071 struct value *mark = value_mark ();
8072 struct value *elt;
8073 if (TYPE_CODE (value_type (lhs)) == TYPE_CODE_ARRAY)
8074 {
22601c15
UW
8075 struct type *index_type = builtin_type (exp->gdbarch)->builtin_int;
8076 struct value *index_val = value_from_longest (index_type, index);
52ce6436
PH
8077 elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val));
8078 }
8079 else
8080 {
8081 elt = ada_index_struct_field (index, lhs, 0, value_type (lhs));
8082 elt = ada_to_fixed_value (unwrap_value (elt));
8083 }
8084
8085 if (exp->elts[*pos].opcode == OP_AGGREGATE)
8086 assign_aggregate (container, elt, exp, pos, EVAL_NORMAL);
8087 else
8088 value_assign_to_component (container, elt,
8089 ada_evaluate_subexp (NULL, exp, pos,
8090 EVAL_NORMAL));
8091
8092 value_free_to_mark (mark);
8093}
8094
8095/* Assuming that LHS represents an lvalue having a record or array
8096 type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment
8097 of that aggregate's value to LHS, advancing *POS past the
8098 aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an
8099 lvalue containing LHS (possibly LHS itself). Does not modify
8100 the inferior's memory, nor does it modify the contents of
8101 LHS (unless == CONTAINER). Returns the modified CONTAINER. */
8102
8103static struct value *
8104assign_aggregate (struct value *container,
8105 struct value *lhs, struct expression *exp,
8106 int *pos, enum noside noside)
8107{
8108 struct type *lhs_type;
8109 int n = exp->elts[*pos+1].longconst;
8110 LONGEST low_index, high_index;
8111 int num_specs;
8112 LONGEST *indices;
8113 int max_indices, num_indices;
8114 int is_array_aggregate;
8115 int i;
8116 struct value *mark = value_mark ();
8117
8118 *pos += 3;
8119 if (noside != EVAL_NORMAL)
8120 {
8121 int i;
8122 for (i = 0; i < n; i += 1)
8123 ada_evaluate_subexp (NULL, exp, pos, noside);
8124 return container;
8125 }
8126
8127 container = ada_coerce_ref (container);
8128 if (ada_is_direct_array_type (value_type (container)))
8129 container = ada_coerce_to_simple_array (container);
8130 lhs = ada_coerce_ref (lhs);
8131 if (!deprecated_value_modifiable (lhs))
8132 error (_("Left operand of assignment is not a modifiable lvalue."));
8133
8134 lhs_type = value_type (lhs);
8135 if (ada_is_direct_array_type (lhs_type))
8136 {
8137 lhs = ada_coerce_to_simple_array (lhs);
8138 lhs_type = value_type (lhs);
8139 low_index = TYPE_ARRAY_LOWER_BOUND_VALUE (lhs_type);
8140 high_index = TYPE_ARRAY_UPPER_BOUND_VALUE (lhs_type);
8141 is_array_aggregate = 1;
8142 }
8143 else if (TYPE_CODE (lhs_type) == TYPE_CODE_STRUCT)
8144 {
8145 low_index = 0;
8146 high_index = num_visible_fields (lhs_type) - 1;
8147 is_array_aggregate = 0;
8148 }
8149 else
8150 error (_("Left-hand side must be array or record."));
8151
8152 num_specs = num_component_specs (exp, *pos - 3);
8153 max_indices = 4 * num_specs + 4;
8154 indices = alloca (max_indices * sizeof (indices[0]));
8155 indices[0] = indices[1] = low_index - 1;
8156 indices[2] = indices[3] = high_index + 1;
8157 num_indices = 4;
8158
8159 for (i = 0; i < n; i += 1)
8160 {
8161 switch (exp->elts[*pos].opcode)
8162 {
8163 case OP_CHOICES:
8164 aggregate_assign_from_choices (container, lhs, exp, pos, indices,
8165 &num_indices, max_indices,
8166 low_index, high_index);
8167 break;
8168 case OP_POSITIONAL:
8169 aggregate_assign_positional (container, lhs, exp, pos, indices,
8170 &num_indices, max_indices,
8171 low_index, high_index);
8172 break;
8173 case OP_OTHERS:
8174 if (i != n-1)
8175 error (_("Misplaced 'others' clause"));
8176 aggregate_assign_others (container, lhs, exp, pos, indices,
8177 num_indices, low_index, high_index);
8178 break;
8179 default:
8180 error (_("Internal error: bad aggregate clause"));
8181 }
8182 }
8183
8184 return container;
8185}
8186
8187/* Assign into the component of LHS indexed by the OP_POSITIONAL
8188 construct at *POS, updating *POS past the construct, given that
8189 the positions are relative to lower bound LOW, where HIGH is the
8190 upper bound. Record the position in INDICES[0 .. MAX_INDICES-1]
8191 updating *NUM_INDICES as needed. CONTAINER is as for
8192 assign_aggregate. */
8193static void
8194aggregate_assign_positional (struct value *container,
8195 struct value *lhs, struct expression *exp,
8196 int *pos, LONGEST *indices, int *num_indices,
8197 int max_indices, LONGEST low, LONGEST high)
8198{
8199 LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low;
8200
8201 if (ind - 1 == high)
e1d5a0d2 8202 warning (_("Extra components in aggregate ignored."));
52ce6436
PH
8203 if (ind <= high)
8204 {
8205 add_component_interval (ind, ind, indices, num_indices, max_indices);
8206 *pos += 3;
8207 assign_component (container, lhs, ind, exp, pos);
8208 }
8209 else
8210 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
8211}
8212
8213/* Assign into the components of LHS indexed by the OP_CHOICES
8214 construct at *POS, updating *POS past the construct, given that
8215 the allowable indices are LOW..HIGH. Record the indices assigned
8216 to in INDICES[0 .. MAX_INDICES-1], updating *NUM_INDICES as
8217 needed. CONTAINER is as for assign_aggregate. */
8218static void
8219aggregate_assign_from_choices (struct value *container,
8220 struct value *lhs, struct expression *exp,
8221 int *pos, LONGEST *indices, int *num_indices,
8222 int max_indices, LONGEST low, LONGEST high)
8223{
8224 int j;
8225 int n_choices = longest_to_int (exp->elts[*pos+1].longconst);
8226 int choice_pos, expr_pc;
8227 int is_array = ada_is_direct_array_type (value_type (lhs));
8228
8229 choice_pos = *pos += 3;
8230
8231 for (j = 0; j < n_choices; j += 1)
8232 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
8233 expr_pc = *pos;
8234 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
8235
8236 for (j = 0; j < n_choices; j += 1)
8237 {
8238 LONGEST lower, upper;
8239 enum exp_opcode op = exp->elts[choice_pos].opcode;
8240 if (op == OP_DISCRETE_RANGE)
8241 {
8242 choice_pos += 1;
8243 lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
8244 EVAL_NORMAL));
8245 upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
8246 EVAL_NORMAL));
8247 }
8248 else if (is_array)
8249 {
8250 lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos,
8251 EVAL_NORMAL));
8252 upper = lower;
8253 }
8254 else
8255 {
8256 int ind;
8257 char *name;
8258 switch (op)
8259 {
8260 case OP_NAME:
8261 name = &exp->elts[choice_pos + 2].string;
8262 break;
8263 case OP_VAR_VALUE:
8264 name = SYMBOL_NATURAL_NAME (exp->elts[choice_pos + 2].symbol);
8265 break;
8266 default:
8267 error (_("Invalid record component association."));
8268 }
8269 ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP);
8270 ind = 0;
8271 if (! find_struct_field (name, value_type (lhs), 0,
8272 NULL, NULL, NULL, NULL, &ind))
8273 error (_("Unknown component name: %s."), name);
8274 lower = upper = ind;
8275 }
8276
8277 if (lower <= upper && (lower < low || upper > high))
8278 error (_("Index in component association out of bounds."));
8279
8280 add_component_interval (lower, upper, indices, num_indices,
8281 max_indices);
8282 while (lower <= upper)
8283 {
8284 int pos1;
8285 pos1 = expr_pc;
8286 assign_component (container, lhs, lower, exp, &pos1);
8287 lower += 1;
8288 }
8289 }
8290}
8291
8292/* Assign the value of the expression in the OP_OTHERS construct in
8293 EXP at *POS into the components of LHS indexed from LOW .. HIGH that
8294 have not been previously assigned. The index intervals already assigned
8295 are in INDICES[0 .. NUM_INDICES-1]. Updates *POS to after the
8296 OP_OTHERS clause. CONTAINER is as for assign_aggregate*/
8297static void
8298aggregate_assign_others (struct value *container,
8299 struct value *lhs, struct expression *exp,
8300 int *pos, LONGEST *indices, int num_indices,
8301 LONGEST low, LONGEST high)
8302{
8303 int i;
8304 int expr_pc = *pos+1;
8305
8306 for (i = 0; i < num_indices - 2; i += 2)
8307 {
8308 LONGEST ind;
8309 for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1)
8310 {
8311 int pos;
8312 pos = expr_pc;
8313 assign_component (container, lhs, ind, exp, &pos);
8314 }
8315 }
8316 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
8317}
8318
8319/* Add the interval [LOW .. HIGH] to the sorted set of intervals
8320 [ INDICES[0] .. INDICES[1] ],..., [ INDICES[*SIZE-2] .. INDICES[*SIZE-1] ],
8321 modifying *SIZE as needed. It is an error if *SIZE exceeds
8322 MAX_SIZE. The resulting intervals do not overlap. */
8323static void
8324add_component_interval (LONGEST low, LONGEST high,
8325 LONGEST* indices, int *size, int max_size)
8326{
8327 int i, j;
8328 for (i = 0; i < *size; i += 2) {
8329 if (high >= indices[i] && low <= indices[i + 1])
8330 {
8331 int kh;
8332 for (kh = i + 2; kh < *size; kh += 2)
8333 if (high < indices[kh])
8334 break;
8335 if (low < indices[i])
8336 indices[i] = low;
8337 indices[i + 1] = indices[kh - 1];
8338 if (high > indices[i + 1])
8339 indices[i + 1] = high;
8340 memcpy (indices + i + 2, indices + kh, *size - kh);
8341 *size -= kh - i - 2;
8342 return;
8343 }
8344 else if (high < indices[i])
8345 break;
8346 }
8347
8348 if (*size == max_size)
8349 error (_("Internal error: miscounted aggregate components."));
8350 *size += 2;
8351 for (j = *size-1; j >= i+2; j -= 1)
8352 indices[j] = indices[j - 2];
8353 indices[i] = low;
8354 indices[i + 1] = high;
8355}
8356
6e48bd2c
JB
8357/* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2
8358 is different. */
8359
8360static struct value *
8361ada_value_cast (struct type *type, struct value *arg2, enum noside noside)
8362{
8363 if (type == ada_check_typedef (value_type (arg2)))
8364 return arg2;
8365
8366 if (ada_is_fixed_point_type (type))
8367 return (cast_to_fixed (type, arg2));
8368
8369 if (ada_is_fixed_point_type (value_type (arg2)))
a53b7a21 8370 return cast_from_fixed (type, arg2);
6e48bd2c
JB
8371
8372 return value_cast (type, arg2);
8373}
8374
284614f0
JB
8375/* Evaluating Ada expressions, and printing their result.
8376 ------------------------------------------------------
8377
21649b50
JB
8378 1. Introduction:
8379 ----------------
8380
284614f0
JB
8381 We usually evaluate an Ada expression in order to print its value.
8382 We also evaluate an expression in order to print its type, which
8383 happens during the EVAL_AVOID_SIDE_EFFECTS phase of the evaluation,
8384 but we'll focus mostly on the EVAL_NORMAL phase. In practice, the
8385 EVAL_AVOID_SIDE_EFFECTS phase allows us to simplify certain aspects of
8386 the evaluation compared to the EVAL_NORMAL, but is otherwise very
8387 similar.
8388
8389 Evaluating expressions is a little more complicated for Ada entities
8390 than it is for entities in languages such as C. The main reason for
8391 this is that Ada provides types whose definition might be dynamic.
8392 One example of such types is variant records. Or another example
8393 would be an array whose bounds can only be known at run time.
8394
8395 The following description is a general guide as to what should be
8396 done (and what should NOT be done) in order to evaluate an expression
8397 involving such types, and when. This does not cover how the semantic
8398 information is encoded by GNAT as this is covered separatly. For the
8399 document used as the reference for the GNAT encoding, see exp_dbug.ads
8400 in the GNAT sources.
8401
8402 Ideally, we should embed each part of this description next to its
8403 associated code. Unfortunately, the amount of code is so vast right
8404 now that it's hard to see whether the code handling a particular
8405 situation might be duplicated or not. One day, when the code is
8406 cleaned up, this guide might become redundant with the comments
8407 inserted in the code, and we might want to remove it.
8408
21649b50
JB
8409 2. ``Fixing'' an Entity, the Simple Case:
8410 -----------------------------------------
8411
284614f0
JB
8412 When evaluating Ada expressions, the tricky issue is that they may
8413 reference entities whose type contents and size are not statically
8414 known. Consider for instance a variant record:
8415
8416 type Rec (Empty : Boolean := True) is record
8417 case Empty is
8418 when True => null;
8419 when False => Value : Integer;
8420 end case;
8421 end record;
8422 Yes : Rec := (Empty => False, Value => 1);
8423 No : Rec := (empty => True);
8424
8425 The size and contents of that record depends on the value of the
8426 descriminant (Rec.Empty). At this point, neither the debugging
8427 information nor the associated type structure in GDB are able to
8428 express such dynamic types. So what the debugger does is to create
8429 "fixed" versions of the type that applies to the specific object.
8430 We also informally refer to this opperation as "fixing" an object,
8431 which means creating its associated fixed type.
8432
8433 Example: when printing the value of variable "Yes" above, its fixed
8434 type would look like this:
8435
8436 type Rec is record
8437 Empty : Boolean;
8438 Value : Integer;
8439 end record;
8440
8441 On the other hand, if we printed the value of "No", its fixed type
8442 would become:
8443
8444 type Rec is record
8445 Empty : Boolean;
8446 end record;
8447
8448 Things become a little more complicated when trying to fix an entity
8449 with a dynamic type that directly contains another dynamic type,
8450 such as an array of variant records, for instance. There are
8451 two possible cases: Arrays, and records.
8452
21649b50
JB
8453 3. ``Fixing'' Arrays:
8454 ---------------------
8455
8456 The type structure in GDB describes an array in terms of its bounds,
8457 and the type of its elements. By design, all elements in the array
8458 have the same type and we cannot represent an array of variant elements
8459 using the current type structure in GDB. When fixing an array,
8460 we cannot fix the array element, as we would potentially need one
8461 fixed type per element of the array. As a result, the best we can do
8462 when fixing an array is to produce an array whose bounds and size
8463 are correct (allowing us to read it from memory), but without having
8464 touched its element type. Fixing each element will be done later,
8465 when (if) necessary.
8466
8467 Arrays are a little simpler to handle than records, because the same
8468 amount of memory is allocated for each element of the array, even if
1b536f04 8469 the amount of space actually used by each element differs from element
21649b50 8470 to element. Consider for instance the following array of type Rec:
284614f0
JB
8471
8472 type Rec_Array is array (1 .. 2) of Rec;
8473
1b536f04
JB
8474 The actual amount of memory occupied by each element might be different
8475 from element to element, depending on the value of their discriminant.
21649b50 8476 But the amount of space reserved for each element in the array remains
1b536f04 8477 fixed regardless. So we simply need to compute that size using
21649b50
JB
8478 the debugging information available, from which we can then determine
8479 the array size (we multiply the number of elements of the array by
8480 the size of each element).
8481
8482 The simplest case is when we have an array of a constrained element
8483 type. For instance, consider the following type declarations:
8484
8485 type Bounded_String (Max_Size : Integer) is
8486 Length : Integer;
8487 Buffer : String (1 .. Max_Size);
8488 end record;
8489 type Bounded_String_Array is array (1 ..2) of Bounded_String (80);
8490
8491 In this case, the compiler describes the array as an array of
8492 variable-size elements (identified by its XVS suffix) for which
8493 the size can be read in the parallel XVZ variable.
8494
8495 In the case of an array of an unconstrained element type, the compiler
8496 wraps the array element inside a private PAD type. This type should not
8497 be shown to the user, and must be "unwrap"'ed before printing. Note
284614f0
JB
8498 that we also use the adjective "aligner" in our code to designate
8499 these wrapper types.
8500
1b536f04 8501 In some cases, the size allocated for each element is statically
21649b50
JB
8502 known. In that case, the PAD type already has the correct size,
8503 and the array element should remain unfixed.
8504
8505 But there are cases when this size is not statically known.
8506 For instance, assuming that "Five" is an integer variable:
284614f0
JB
8507
8508 type Dynamic is array (1 .. Five) of Integer;
8509 type Wrapper (Has_Length : Boolean := False) is record
8510 Data : Dynamic;
8511 case Has_Length is
8512 when True => Length : Integer;
8513 when False => null;
8514 end case;
8515 end record;
8516 type Wrapper_Array is array (1 .. 2) of Wrapper;
8517
8518 Hello : Wrapper_Array := (others => (Has_Length => True,
8519 Data => (others => 17),
8520 Length => 1));
8521
8522
8523 The debugging info would describe variable Hello as being an
8524 array of a PAD type. The size of that PAD type is not statically
8525 known, but can be determined using a parallel XVZ variable.
8526 In that case, a copy of the PAD type with the correct size should
8527 be used for the fixed array.
8528
21649b50
JB
8529 3. ``Fixing'' record type objects:
8530 ----------------------------------
8531
8532 Things are slightly different from arrays in the case of dynamic
284614f0
JB
8533 record types. In this case, in order to compute the associated
8534 fixed type, we need to determine the size and offset of each of
8535 its components. This, in turn, requires us to compute the fixed
8536 type of each of these components.
8537
8538 Consider for instance the example:
8539
8540 type Bounded_String (Max_Size : Natural) is record
8541 Str : String (1 .. Max_Size);
8542 Length : Natural;
8543 end record;
8544 My_String : Bounded_String (Max_Size => 10);
8545
8546 In that case, the position of field "Length" depends on the size
8547 of field Str, which itself depends on the value of the Max_Size
21649b50 8548 discriminant. In order to fix the type of variable My_String,
284614f0
JB
8549 we need to fix the type of field Str. Therefore, fixing a variant
8550 record requires us to fix each of its components.
8551
8552 However, if a component does not have a dynamic size, the component
8553 should not be fixed. In particular, fields that use a PAD type
8554 should not fixed. Here is an example where this might happen
8555 (assuming type Rec above):
8556
8557 type Container (Big : Boolean) is record
8558 First : Rec;
8559 After : Integer;
8560 case Big is
8561 when True => Another : Integer;
8562 when False => null;
8563 end case;
8564 end record;
8565 My_Container : Container := (Big => False,
8566 First => (Empty => True),
8567 After => 42);
8568
8569 In that example, the compiler creates a PAD type for component First,
8570 whose size is constant, and then positions the component After just
8571 right after it. The offset of component After is therefore constant
8572 in this case.
8573
8574 The debugger computes the position of each field based on an algorithm
8575 that uses, among other things, the actual position and size of the field
21649b50
JB
8576 preceding it. Let's now imagine that the user is trying to print
8577 the value of My_Container. If the type fixing was recursive, we would
284614f0
JB
8578 end up computing the offset of field After based on the size of the
8579 fixed version of field First. And since in our example First has
8580 only one actual field, the size of the fixed type is actually smaller
8581 than the amount of space allocated to that field, and thus we would
8582 compute the wrong offset of field After.
8583
21649b50
JB
8584 To make things more complicated, we need to watch out for dynamic
8585 components of variant records (identified by the ___XVL suffix in
8586 the component name). Even if the target type is a PAD type, the size
8587 of that type might not be statically known. So the PAD type needs
8588 to be unwrapped and the resulting type needs to be fixed. Otherwise,
8589 we might end up with the wrong size for our component. This can be
8590 observed with the following type declarations:
284614f0
JB
8591
8592 type Octal is new Integer range 0 .. 7;
8593 type Octal_Array is array (Positive range <>) of Octal;
8594 pragma Pack (Octal_Array);
8595
8596 type Octal_Buffer (Size : Positive) is record
8597 Buffer : Octal_Array (1 .. Size);
8598 Length : Integer;
8599 end record;
8600
8601 In that case, Buffer is a PAD type whose size is unset and needs
8602 to be computed by fixing the unwrapped type.
8603
21649b50
JB
8604 4. When to ``Fix'' un-``Fixed'' sub-elements of an entity:
8605 ----------------------------------------------------------
8606
8607 Lastly, when should the sub-elements of an entity that remained unfixed
284614f0
JB
8608 thus far, be actually fixed?
8609
8610 The answer is: Only when referencing that element. For instance
8611 when selecting one component of a record, this specific component
8612 should be fixed at that point in time. Or when printing the value
8613 of a record, each component should be fixed before its value gets
8614 printed. Similarly for arrays, the element of the array should be
8615 fixed when printing each element of the array, or when extracting
8616 one element out of that array. On the other hand, fixing should
8617 not be performed on the elements when taking a slice of an array!
8618
8619 Note that one of the side-effects of miscomputing the offset and
8620 size of each field is that we end up also miscomputing the size
8621 of the containing type. This can have adverse results when computing
8622 the value of an entity. GDB fetches the value of an entity based
8623 on the size of its type, and thus a wrong size causes GDB to fetch
8624 the wrong amount of memory. In the case where the computed size is
8625 too small, GDB fetches too little data to print the value of our
8626 entiry. Results in this case as unpredicatble, as we usually read
8627 past the buffer containing the data =:-o. */
8628
8629/* Implement the evaluate_exp routine in the exp_descriptor structure
8630 for the Ada language. */
8631
52ce6436 8632static struct value *
ebf56fd3 8633ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
4c4b4cd2 8634 int *pos, enum noside noside)
14f9c5c9
AS
8635{
8636 enum exp_opcode op;
14f9c5c9
AS
8637 int tem, tem2, tem3;
8638 int pc;
8639 struct value *arg1 = NULL, *arg2 = NULL, *arg3;
8640 struct type *type;
52ce6436 8641 int nargs, oplen;
d2e4a39e 8642 struct value **argvec;
14f9c5c9 8643
d2e4a39e
AS
8644 pc = *pos;
8645 *pos += 1;
14f9c5c9
AS
8646 op = exp->elts[pc].opcode;
8647
d2e4a39e 8648 switch (op)
14f9c5c9
AS
8649 {
8650 default:
8651 *pos -= 1;
6e48bd2c
JB
8652 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
8653 arg1 = unwrap_value (arg1);
8654
8655 /* If evaluating an OP_DOUBLE and an EXPECT_TYPE was provided,
8656 then we need to perform the conversion manually, because
8657 evaluate_subexp_standard doesn't do it. This conversion is
8658 necessary in Ada because the different kinds of float/fixed
8659 types in Ada have different representations.
8660
8661 Similarly, we need to perform the conversion from OP_LONG
8662 ourselves. */
8663 if ((op == OP_DOUBLE || op == OP_LONG) && expect_type != NULL)
8664 arg1 = ada_value_cast (expect_type, arg1, noside);
8665
8666 return arg1;
4c4b4cd2
PH
8667
8668 case OP_STRING:
8669 {
76a01679
JB
8670 struct value *result;
8671 *pos -= 1;
8672 result = evaluate_subexp_standard (expect_type, exp, pos, noside);
8673 /* The result type will have code OP_STRING, bashed there from
8674 OP_ARRAY. Bash it back. */
df407dfe
AC
8675 if (TYPE_CODE (value_type (result)) == TYPE_CODE_STRING)
8676 TYPE_CODE (value_type (result)) = TYPE_CODE_ARRAY;
76a01679 8677 return result;
4c4b4cd2 8678 }
14f9c5c9
AS
8679
8680 case UNOP_CAST:
8681 (*pos) += 2;
8682 type = exp->elts[pc + 1].type;
8683 arg1 = evaluate_subexp (type, exp, pos, noside);
8684 if (noside == EVAL_SKIP)
4c4b4cd2 8685 goto nosideret;
6e48bd2c 8686 arg1 = ada_value_cast (type, arg1, noside);
14f9c5c9
AS
8687 return arg1;
8688
4c4b4cd2
PH
8689 case UNOP_QUAL:
8690 (*pos) += 2;
8691 type = exp->elts[pc + 1].type;
8692 return ada_evaluate_subexp (type, exp, pos, noside);
8693
14f9c5c9
AS
8694 case BINOP_ASSIGN:
8695 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
52ce6436
PH
8696 if (exp->elts[*pos].opcode == OP_AGGREGATE)
8697 {
8698 arg1 = assign_aggregate (arg1, arg1, exp, pos, noside);
8699 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
8700 return arg1;
8701 return ada_value_assign (arg1, arg1);
8702 }
003f3813
JB
8703 /* Force the evaluation of the rhs ARG2 to the type of the lhs ARG1,
8704 except if the lhs of our assignment is a convenience variable.
8705 In the case of assigning to a convenience variable, the lhs
8706 should be exactly the result of the evaluation of the rhs. */
8707 type = value_type (arg1);
8708 if (VALUE_LVAL (arg1) == lval_internalvar)
8709 type = NULL;
8710 arg2 = evaluate_subexp (type, exp, pos, noside);
14f9c5c9 8711 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
4c4b4cd2 8712 return arg1;
df407dfe
AC
8713 if (ada_is_fixed_point_type (value_type (arg1)))
8714 arg2 = cast_to_fixed (value_type (arg1), arg2);
8715 else if (ada_is_fixed_point_type (value_type (arg2)))
76a01679 8716 error
323e0a4a 8717 (_("Fixed-point values must be assigned to fixed-point variables"));
d2e4a39e 8718 else
df407dfe 8719 arg2 = coerce_for_assign (value_type (arg1), arg2);
4c4b4cd2 8720 return ada_value_assign (arg1, arg2);
14f9c5c9
AS
8721
8722 case BINOP_ADD:
8723 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
8724 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
8725 if (noside == EVAL_SKIP)
4c4b4cd2 8726 goto nosideret;
2ac8a782
JB
8727 if (TYPE_CODE (value_type (arg1)) == TYPE_CODE_PTR)
8728 return (value_from_longest
8729 (value_type (arg1),
8730 value_as_long (arg1) + value_as_long (arg2)));
df407dfe
AC
8731 if ((ada_is_fixed_point_type (value_type (arg1))
8732 || ada_is_fixed_point_type (value_type (arg2)))
8733 && value_type (arg1) != value_type (arg2))
323e0a4a 8734 error (_("Operands of fixed-point addition must have the same type"));
b7789565
JB
8735 /* Do the addition, and cast the result to the type of the first
8736 argument. We cannot cast the result to a reference type, so if
8737 ARG1 is a reference type, find its underlying type. */
8738 type = value_type (arg1);
8739 while (TYPE_CODE (type) == TYPE_CODE_REF)
8740 type = TYPE_TARGET_TYPE (type);
f44316fa 8741 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
89eef114 8742 return value_cast (type, value_binop (arg1, arg2, BINOP_ADD));
14f9c5c9
AS
8743
8744 case BINOP_SUB:
8745 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
8746 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
8747 if (noside == EVAL_SKIP)
4c4b4cd2 8748 goto nosideret;
2ac8a782
JB
8749 if (TYPE_CODE (value_type (arg1)) == TYPE_CODE_PTR)
8750 return (value_from_longest
8751 (value_type (arg1),
8752 value_as_long (arg1) - value_as_long (arg2)));
df407dfe
AC
8753 if ((ada_is_fixed_point_type (value_type (arg1))
8754 || ada_is_fixed_point_type (value_type (arg2)))
8755 && value_type (arg1) != value_type (arg2))
323e0a4a 8756 error (_("Operands of fixed-point subtraction must have the same type"));
b7789565
JB
8757 /* Do the substraction, and cast the result to the type of the first
8758 argument. We cannot cast the result to a reference type, so if
8759 ARG1 is a reference type, find its underlying type. */
8760 type = value_type (arg1);
8761 while (TYPE_CODE (type) == TYPE_CODE_REF)
8762 type = TYPE_TARGET_TYPE (type);
f44316fa 8763 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
89eef114 8764 return value_cast (type, value_binop (arg1, arg2, BINOP_SUB));
14f9c5c9
AS
8765
8766 case BINOP_MUL:
8767 case BINOP_DIV:
e1578042
JB
8768 case BINOP_REM:
8769 case BINOP_MOD:
14f9c5c9
AS
8770 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8771 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8772 if (noside == EVAL_SKIP)
4c4b4cd2 8773 goto nosideret;
e1578042 8774 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
9c2be529
JB
8775 {
8776 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8777 return value_zero (value_type (arg1), not_lval);
8778 }
14f9c5c9 8779 else
4c4b4cd2 8780 {
a53b7a21 8781 type = builtin_type (exp->gdbarch)->builtin_double;
df407dfe 8782 if (ada_is_fixed_point_type (value_type (arg1)))
a53b7a21 8783 arg1 = cast_from_fixed (type, arg1);
df407dfe 8784 if (ada_is_fixed_point_type (value_type (arg2)))
a53b7a21 8785 arg2 = cast_from_fixed (type, arg2);
f44316fa 8786 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
4c4b4cd2
PH
8787 return ada_value_binop (arg1, arg2, op);
8788 }
8789
4c4b4cd2
PH
8790 case BINOP_EQUAL:
8791 case BINOP_NOTEQUAL:
14f9c5c9 8792 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 8793 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
14f9c5c9 8794 if (noside == EVAL_SKIP)
76a01679 8795 goto nosideret;
4c4b4cd2 8796 if (noside == EVAL_AVOID_SIDE_EFFECTS)
76a01679 8797 tem = 0;
4c4b4cd2 8798 else
f44316fa
UW
8799 {
8800 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8801 tem = ada_value_equal (arg1, arg2);
8802 }
4c4b4cd2 8803 if (op == BINOP_NOTEQUAL)
76a01679 8804 tem = !tem;
fbb06eb1
UW
8805 type = language_bool_type (exp->language_defn, exp->gdbarch);
8806 return value_from_longest (type, (LONGEST) tem);
4c4b4cd2
PH
8807
8808 case UNOP_NEG:
8809 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8810 if (noside == EVAL_SKIP)
8811 goto nosideret;
df407dfe
AC
8812 else if (ada_is_fixed_point_type (value_type (arg1)))
8813 return value_cast (value_type (arg1), value_neg (arg1));
14f9c5c9 8814 else
f44316fa
UW
8815 {
8816 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
8817 return value_neg (arg1);
8818 }
4c4b4cd2 8819
2330c6c6
JB
8820 case BINOP_LOGICAL_AND:
8821 case BINOP_LOGICAL_OR:
8822 case UNOP_LOGICAL_NOT:
000d5124
JB
8823 {
8824 struct value *val;
8825
8826 *pos -= 1;
8827 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
fbb06eb1
UW
8828 type = language_bool_type (exp->language_defn, exp->gdbarch);
8829 return value_cast (type, val);
000d5124 8830 }
2330c6c6
JB
8831
8832 case BINOP_BITWISE_AND:
8833 case BINOP_BITWISE_IOR:
8834 case BINOP_BITWISE_XOR:
000d5124
JB
8835 {
8836 struct value *val;
8837
8838 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
8839 *pos = pc;
8840 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
8841
8842 return value_cast (value_type (arg1), val);
8843 }
2330c6c6 8844
14f9c5c9
AS
8845 case OP_VAR_VALUE:
8846 *pos -= 1;
6799def4 8847
14f9c5c9 8848 if (noside == EVAL_SKIP)
4c4b4cd2
PH
8849 {
8850 *pos += 4;
8851 goto nosideret;
8852 }
8853 else if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
76a01679
JB
8854 /* Only encountered when an unresolved symbol occurs in a
8855 context other than a function call, in which case, it is
52ce6436 8856 invalid. */
323e0a4a 8857 error (_("Unexpected unresolved symbol, %s, during evaluation"),
4c4b4cd2 8858 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
14f9c5c9 8859 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
4c4b4cd2 8860 {
0c1f74cf
JB
8861 type = static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
8862 if (ada_is_tagged_type (type, 0))
8863 {
8864 /* Tagged types are a little special in the fact that the real
8865 type is dynamic and can only be determined by inspecting the
8866 object's tag. This means that we need to get the object's
8867 value first (EVAL_NORMAL) and then extract the actual object
8868 type from its tag.
8869
8870 Note that we cannot skip the final step where we extract
8871 the object type from its tag, because the EVAL_NORMAL phase
8872 results in dynamic components being resolved into fixed ones.
8873 This can cause problems when trying to print the type
8874 description of tagged types whose parent has a dynamic size:
8875 We use the type name of the "_parent" component in order
8876 to print the name of the ancestor type in the type description.
8877 If that component had a dynamic size, the resolution into
8878 a fixed type would result in the loss of that type name,
8879 thus preventing us from printing the name of the ancestor
8880 type in the type description. */
b79819ba
JB
8881 struct type *actual_type;
8882
0c1f74cf 8883 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_NORMAL);
b79819ba
JB
8884 actual_type = type_from_tag (ada_value_tag (arg1));
8885 if (actual_type == NULL)
8886 /* If, for some reason, we were unable to determine
8887 the actual type from the tag, then use the static
8888 approximation that we just computed as a fallback.
8889 This can happen if the debugging information is
8890 incomplete, for instance. */
8891 actual_type = type;
8892
8893 return value_zero (actual_type, not_lval);
0c1f74cf
JB
8894 }
8895
4c4b4cd2
PH
8896 *pos += 4;
8897 return value_zero
8898 (to_static_fixed_type
8899 (static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol))),
8900 not_lval);
8901 }
d2e4a39e 8902 else
4c4b4cd2 8903 {
284614f0
JB
8904 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
8905 arg1 = unwrap_value (arg1);
4c4b4cd2
PH
8906 return ada_to_fixed_value (arg1);
8907 }
8908
8909 case OP_FUNCALL:
8910 (*pos) += 2;
8911
8912 /* Allocate arg vector, including space for the function to be
8913 called in argvec[0] and a terminating NULL. */
8914 nargs = longest_to_int (exp->elts[pc + 1].longconst);
8915 argvec =
8916 (struct value **) alloca (sizeof (struct value *) * (nargs + 2));
8917
8918 if (exp->elts[*pos].opcode == OP_VAR_VALUE
76a01679 8919 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
323e0a4a 8920 error (_("Unexpected unresolved symbol, %s, during evaluation"),
4c4b4cd2
PH
8921 SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol));
8922 else
8923 {
8924 for (tem = 0; tem <= nargs; tem += 1)
8925 argvec[tem] = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8926 argvec[tem] = 0;
8927
8928 if (noside == EVAL_SKIP)
8929 goto nosideret;
8930 }
8931
ad82864c
JB
8932 if (ada_is_constrained_packed_array_type
8933 (desc_base_type (value_type (argvec[0]))))
4c4b4cd2 8934 argvec[0] = ada_coerce_to_simple_array (argvec[0]);
284614f0
JB
8935 else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_ARRAY
8936 && TYPE_FIELD_BITSIZE (value_type (argvec[0]), 0) != 0)
8937 /* This is a packed array that has already been fixed, and
8938 therefore already coerced to a simple array. Nothing further
8939 to do. */
8940 ;
df407dfe
AC
8941 else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_REF
8942 || (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_ARRAY
76a01679 8943 && VALUE_LVAL (argvec[0]) == lval_memory))
4c4b4cd2
PH
8944 argvec[0] = value_addr (argvec[0]);
8945
df407dfe 8946 type = ada_check_typedef (value_type (argvec[0]));
4c4b4cd2
PH
8947 if (TYPE_CODE (type) == TYPE_CODE_PTR)
8948 {
61ee279c 8949 switch (TYPE_CODE (ada_check_typedef (TYPE_TARGET_TYPE (type))))
4c4b4cd2
PH
8950 {
8951 case TYPE_CODE_FUNC:
61ee279c 8952 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
4c4b4cd2
PH
8953 break;
8954 case TYPE_CODE_ARRAY:
8955 break;
8956 case TYPE_CODE_STRUCT:
8957 if (noside != EVAL_AVOID_SIDE_EFFECTS)
8958 argvec[0] = ada_value_ind (argvec[0]);
61ee279c 8959 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
4c4b4cd2
PH
8960 break;
8961 default:
323e0a4a 8962 error (_("cannot subscript or call something of type `%s'"),
df407dfe 8963 ada_type_name (value_type (argvec[0])));
4c4b4cd2
PH
8964 break;
8965 }
8966 }
8967
8968 switch (TYPE_CODE (type))
8969 {
8970 case TYPE_CODE_FUNC:
8971 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8972 return allocate_value (TYPE_TARGET_TYPE (type));
8973 return call_function_by_hand (argvec[0], nargs, argvec + 1);
8974 case TYPE_CODE_STRUCT:
8975 {
8976 int arity;
8977
4c4b4cd2
PH
8978 arity = ada_array_arity (type);
8979 type = ada_array_element_type (type, nargs);
8980 if (type == NULL)
323e0a4a 8981 error (_("cannot subscript or call a record"));
4c4b4cd2 8982 if (arity != nargs)
323e0a4a 8983 error (_("wrong number of subscripts; expecting %d"), arity);
4c4b4cd2 8984 if (noside == EVAL_AVOID_SIDE_EFFECTS)
0a07e705 8985 return value_zero (ada_aligned_type (type), lval_memory);
4c4b4cd2
PH
8986 return
8987 unwrap_value (ada_value_subscript
8988 (argvec[0], nargs, argvec + 1));
8989 }
8990 case TYPE_CODE_ARRAY:
8991 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8992 {
8993 type = ada_array_element_type (type, nargs);
8994 if (type == NULL)
323e0a4a 8995 error (_("element type of array unknown"));
4c4b4cd2 8996 else
0a07e705 8997 return value_zero (ada_aligned_type (type), lval_memory);
4c4b4cd2
PH
8998 }
8999 return
9000 unwrap_value (ada_value_subscript
9001 (ada_coerce_to_simple_array (argvec[0]),
9002 nargs, argvec + 1));
9003 case TYPE_CODE_PTR: /* Pointer to array */
9004 type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1);
9005 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9006 {
9007 type = ada_array_element_type (type, nargs);
9008 if (type == NULL)
323e0a4a 9009 error (_("element type of array unknown"));
4c4b4cd2 9010 else
0a07e705 9011 return value_zero (ada_aligned_type (type), lval_memory);
4c4b4cd2
PH
9012 }
9013 return
9014 unwrap_value (ada_value_ptr_subscript (argvec[0], type,
9015 nargs, argvec + 1));
9016
9017 default:
e1d5a0d2
PH
9018 error (_("Attempt to index or call something other than an "
9019 "array or function"));
4c4b4cd2
PH
9020 }
9021
9022 case TERNOP_SLICE:
9023 {
9024 struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9025 struct value *low_bound_val =
9026 evaluate_subexp (NULL_TYPE, exp, pos, noside);
714e53ab
PH
9027 struct value *high_bound_val =
9028 evaluate_subexp (NULL_TYPE, exp, pos, noside);
9029 LONGEST low_bound;
9030 LONGEST high_bound;
994b9211
AC
9031 low_bound_val = coerce_ref (low_bound_val);
9032 high_bound_val = coerce_ref (high_bound_val);
714e53ab
PH
9033 low_bound = pos_atr (low_bound_val);
9034 high_bound = pos_atr (high_bound_val);
963a6417 9035
4c4b4cd2
PH
9036 if (noside == EVAL_SKIP)
9037 goto nosideret;
9038
4c4b4cd2
PH
9039 /* If this is a reference to an aligner type, then remove all
9040 the aligners. */
df407dfe
AC
9041 if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF
9042 && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array))))
9043 TYPE_TARGET_TYPE (value_type (array)) =
9044 ada_aligned_type (TYPE_TARGET_TYPE (value_type (array)));
4c4b4cd2 9045
ad82864c 9046 if (ada_is_constrained_packed_array_type (value_type (array)))
323e0a4a 9047 error (_("cannot slice a packed array"));
4c4b4cd2
PH
9048
9049 /* If this is a reference to an array or an array lvalue,
9050 convert to a pointer. */
df407dfe
AC
9051 if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF
9052 || (TYPE_CODE (value_type (array)) == TYPE_CODE_ARRAY
4c4b4cd2
PH
9053 && VALUE_LVAL (array) == lval_memory))
9054 array = value_addr (array);
9055
1265e4aa 9056 if (noside == EVAL_AVOID_SIDE_EFFECTS
61ee279c 9057 && ada_is_array_descriptor_type (ada_check_typedef
df407dfe 9058 (value_type (array))))
0b5d8877 9059 return empty_array (ada_type_of_array (array, 0), low_bound);
4c4b4cd2
PH
9060
9061 array = ada_coerce_to_simple_array_ptr (array);
9062
714e53ab
PH
9063 /* If we have more than one level of pointer indirection,
9064 dereference the value until we get only one level. */
df407dfe
AC
9065 while (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR
9066 && (TYPE_CODE (TYPE_TARGET_TYPE (value_type (array)))
714e53ab
PH
9067 == TYPE_CODE_PTR))
9068 array = value_ind (array);
9069
9070 /* Make sure we really do have an array type before going further,
9071 to avoid a SEGV when trying to get the index type or the target
9072 type later down the road if the debug info generated by
9073 the compiler is incorrect or incomplete. */
df407dfe 9074 if (!ada_is_simple_array_type (value_type (array)))
323e0a4a 9075 error (_("cannot take slice of non-array"));
714e53ab 9076
df407dfe 9077 if (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR)
4c4b4cd2 9078 {
0b5d8877 9079 if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS)
df407dfe 9080 return empty_array (TYPE_TARGET_TYPE (value_type (array)),
4c4b4cd2
PH
9081 low_bound);
9082 else
9083 {
9084 struct type *arr_type0 =
df407dfe 9085 to_fixed_array_type (TYPE_TARGET_TYPE (value_type (array)),
4c4b4cd2 9086 NULL, 1);
f5938064
JG
9087 return ada_value_slice_from_ptr (array, arr_type0,
9088 longest_to_int (low_bound),
9089 longest_to_int (high_bound));
4c4b4cd2
PH
9090 }
9091 }
9092 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
9093 return array;
9094 else if (high_bound < low_bound)
df407dfe 9095 return empty_array (value_type (array), low_bound);
4c4b4cd2 9096 else
529cad9c
PH
9097 return ada_value_slice (array, longest_to_int (low_bound),
9098 longest_to_int (high_bound));
4c4b4cd2 9099 }
14f9c5c9 9100
4c4b4cd2
PH
9101 case UNOP_IN_RANGE:
9102 (*pos) += 2;
9103 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8008e265 9104 type = check_typedef (exp->elts[pc + 1].type);
14f9c5c9 9105
14f9c5c9 9106 if (noside == EVAL_SKIP)
4c4b4cd2 9107 goto nosideret;
14f9c5c9 9108
4c4b4cd2
PH
9109 switch (TYPE_CODE (type))
9110 {
9111 default:
e1d5a0d2
PH
9112 lim_warning (_("Membership test incompletely implemented; "
9113 "always returns true"));
fbb06eb1
UW
9114 type = language_bool_type (exp->language_defn, exp->gdbarch);
9115 return value_from_longest (type, (LONGEST) 1);
4c4b4cd2
PH
9116
9117 case TYPE_CODE_RANGE:
030b4912
UW
9118 arg2 = value_from_longest (type, TYPE_LOW_BOUND (type));
9119 arg3 = value_from_longest (type, TYPE_HIGH_BOUND (type));
f44316fa
UW
9120 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
9121 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
fbb06eb1
UW
9122 type = language_bool_type (exp->language_defn, exp->gdbarch);
9123 return
9124 value_from_longest (type,
4c4b4cd2
PH
9125 (value_less (arg1, arg3)
9126 || value_equal (arg1, arg3))
9127 && (value_less (arg2, arg1)
9128 || value_equal (arg2, arg1)));
9129 }
9130
9131 case BINOP_IN_BOUNDS:
14f9c5c9 9132 (*pos) += 2;
4c4b4cd2
PH
9133 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9134 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
14f9c5c9 9135
4c4b4cd2
PH
9136 if (noside == EVAL_SKIP)
9137 goto nosideret;
14f9c5c9 9138
4c4b4cd2 9139 if (noside == EVAL_AVOID_SIDE_EFFECTS)
fbb06eb1
UW
9140 {
9141 type = language_bool_type (exp->language_defn, exp->gdbarch);
9142 return value_zero (type, not_lval);
9143 }
14f9c5c9 9144
4c4b4cd2 9145 tem = longest_to_int (exp->elts[pc + 1].longconst);
14f9c5c9 9146
1eea4ebd
UW
9147 type = ada_index_type (value_type (arg2), tem, "range");
9148 if (!type)
9149 type = value_type (arg1);
14f9c5c9 9150
1eea4ebd
UW
9151 arg3 = value_from_longest (type, ada_array_bound (arg2, tem, 1));
9152 arg2 = value_from_longest (type, ada_array_bound (arg2, tem, 0));
d2e4a39e 9153
f44316fa
UW
9154 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
9155 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
fbb06eb1 9156 type = language_bool_type (exp->language_defn, exp->gdbarch);
4c4b4cd2 9157 return
fbb06eb1 9158 value_from_longest (type,
4c4b4cd2
PH
9159 (value_less (arg1, arg3)
9160 || value_equal (arg1, arg3))
9161 && (value_less (arg2, arg1)
9162 || value_equal (arg2, arg1)));
9163
9164 case TERNOP_IN_RANGE:
9165 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9166 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9167 arg3 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9168
9169 if (noside == EVAL_SKIP)
9170 goto nosideret;
9171
f44316fa
UW
9172 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
9173 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
fbb06eb1 9174 type = language_bool_type (exp->language_defn, exp->gdbarch);
4c4b4cd2 9175 return
fbb06eb1 9176 value_from_longest (type,
4c4b4cd2
PH
9177 (value_less (arg1, arg3)
9178 || value_equal (arg1, arg3))
9179 && (value_less (arg2, arg1)
9180 || value_equal (arg2, arg1)));
9181
9182 case OP_ATR_FIRST:
9183 case OP_ATR_LAST:
9184 case OP_ATR_LENGTH:
9185 {
76a01679
JB
9186 struct type *type_arg;
9187 if (exp->elts[*pos].opcode == OP_TYPE)
9188 {
9189 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
9190 arg1 = NULL;
5bc23cb3 9191 type_arg = check_typedef (exp->elts[pc + 2].type);
76a01679
JB
9192 }
9193 else
9194 {
9195 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9196 type_arg = NULL;
9197 }
9198
9199 if (exp->elts[*pos].opcode != OP_LONG)
323e0a4a 9200 error (_("Invalid operand to '%s"), ada_attribute_name (op));
76a01679
JB
9201 tem = longest_to_int (exp->elts[*pos + 2].longconst);
9202 *pos += 4;
9203
9204 if (noside == EVAL_SKIP)
9205 goto nosideret;
9206
9207 if (type_arg == NULL)
9208 {
9209 arg1 = ada_coerce_ref (arg1);
9210
ad82864c 9211 if (ada_is_constrained_packed_array_type (value_type (arg1)))
76a01679
JB
9212 arg1 = ada_coerce_to_simple_array (arg1);
9213
1eea4ebd
UW
9214 type = ada_index_type (value_type (arg1), tem,
9215 ada_attribute_name (op));
9216 if (type == NULL)
9217 type = builtin_type (exp->gdbarch)->builtin_int;
76a01679
JB
9218
9219 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1eea4ebd 9220 return allocate_value (type);
76a01679
JB
9221
9222 switch (op)
9223 {
9224 default: /* Should never happen. */
323e0a4a 9225 error (_("unexpected attribute encountered"));
76a01679 9226 case OP_ATR_FIRST:
1eea4ebd
UW
9227 return value_from_longest
9228 (type, ada_array_bound (arg1, tem, 0));
76a01679 9229 case OP_ATR_LAST:
1eea4ebd
UW
9230 return value_from_longest
9231 (type, ada_array_bound (arg1, tem, 1));
76a01679 9232 case OP_ATR_LENGTH:
1eea4ebd
UW
9233 return value_from_longest
9234 (type, ada_array_length (arg1, tem));
76a01679
JB
9235 }
9236 }
9237 else if (discrete_type_p (type_arg))
9238 {
9239 struct type *range_type;
9240 char *name = ada_type_name (type_arg);
9241 range_type = NULL;
9242 if (name != NULL && TYPE_CODE (type_arg) != TYPE_CODE_ENUM)
1ce677a4 9243 range_type = to_fixed_range_type (name, NULL, type_arg);
76a01679
JB
9244 if (range_type == NULL)
9245 range_type = type_arg;
9246 switch (op)
9247 {
9248 default:
323e0a4a 9249 error (_("unexpected attribute encountered"));
76a01679 9250 case OP_ATR_FIRST:
690cc4eb 9251 return value_from_longest
43bbcdc2 9252 (range_type, ada_discrete_type_low_bound (range_type));
76a01679 9253 case OP_ATR_LAST:
690cc4eb 9254 return value_from_longest
43bbcdc2 9255 (range_type, ada_discrete_type_high_bound (range_type));
76a01679 9256 case OP_ATR_LENGTH:
323e0a4a 9257 error (_("the 'length attribute applies only to array types"));
76a01679
JB
9258 }
9259 }
9260 else if (TYPE_CODE (type_arg) == TYPE_CODE_FLT)
323e0a4a 9261 error (_("unimplemented type attribute"));
76a01679
JB
9262 else
9263 {
9264 LONGEST low, high;
9265
ad82864c
JB
9266 if (ada_is_constrained_packed_array_type (type_arg))
9267 type_arg = decode_constrained_packed_array_type (type_arg);
76a01679 9268
1eea4ebd 9269 type = ada_index_type (type_arg, tem, ada_attribute_name (op));
76a01679 9270 if (type == NULL)
1eea4ebd
UW
9271 type = builtin_type (exp->gdbarch)->builtin_int;
9272
76a01679
JB
9273 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9274 return allocate_value (type);
9275
9276 switch (op)
9277 {
9278 default:
323e0a4a 9279 error (_("unexpected attribute encountered"));
76a01679 9280 case OP_ATR_FIRST:
1eea4ebd 9281 low = ada_array_bound_from_type (type_arg, tem, 0);
76a01679
JB
9282 return value_from_longest (type, low);
9283 case OP_ATR_LAST:
1eea4ebd 9284 high = ada_array_bound_from_type (type_arg, tem, 1);
76a01679
JB
9285 return value_from_longest (type, high);
9286 case OP_ATR_LENGTH:
1eea4ebd
UW
9287 low = ada_array_bound_from_type (type_arg, tem, 0);
9288 high = ada_array_bound_from_type (type_arg, tem, 1);
76a01679
JB
9289 return value_from_longest (type, high - low + 1);
9290 }
9291 }
14f9c5c9
AS
9292 }
9293
4c4b4cd2
PH
9294 case OP_ATR_TAG:
9295 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9296 if (noside == EVAL_SKIP)
76a01679 9297 goto nosideret;
4c4b4cd2
PH
9298
9299 if (noside == EVAL_AVOID_SIDE_EFFECTS)
76a01679 9300 return value_zero (ada_tag_type (arg1), not_lval);
4c4b4cd2
PH
9301
9302 return ada_value_tag (arg1);
9303
9304 case OP_ATR_MIN:
9305 case OP_ATR_MAX:
9306 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
14f9c5c9
AS
9307 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9308 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9309 if (noside == EVAL_SKIP)
76a01679 9310 goto nosideret;
d2e4a39e 9311 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
df407dfe 9312 return value_zero (value_type (arg1), not_lval);
14f9c5c9 9313 else
f44316fa
UW
9314 {
9315 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
9316 return value_binop (arg1, arg2,
9317 op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
9318 }
14f9c5c9 9319
4c4b4cd2
PH
9320 case OP_ATR_MODULUS:
9321 {
31dedfee 9322 struct type *type_arg = check_typedef (exp->elts[pc + 2].type);
76a01679 9323 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
4c4b4cd2 9324
76a01679
JB
9325 if (noside == EVAL_SKIP)
9326 goto nosideret;
4c4b4cd2 9327
76a01679 9328 if (!ada_is_modular_type (type_arg))
323e0a4a 9329 error (_("'modulus must be applied to modular type"));
4c4b4cd2 9330
76a01679
JB
9331 return value_from_longest (TYPE_TARGET_TYPE (type_arg),
9332 ada_modulus (type_arg));
4c4b4cd2
PH
9333 }
9334
9335
9336 case OP_ATR_POS:
9337 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
14f9c5c9
AS
9338 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9339 if (noside == EVAL_SKIP)
76a01679 9340 goto nosideret;
3cb382c9
UW
9341 type = builtin_type (exp->gdbarch)->builtin_int;
9342 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9343 return value_zero (type, not_lval);
14f9c5c9 9344 else
3cb382c9 9345 return value_pos_atr (type, arg1);
14f9c5c9 9346
4c4b4cd2
PH
9347 case OP_ATR_SIZE:
9348 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8c1c099f
JB
9349 type = value_type (arg1);
9350
9351 /* If the argument is a reference, then dereference its type, since
9352 the user is really asking for the size of the actual object,
9353 not the size of the pointer. */
9354 if (TYPE_CODE (type) == TYPE_CODE_REF)
9355 type = TYPE_TARGET_TYPE (type);
9356
4c4b4cd2 9357 if (noside == EVAL_SKIP)
76a01679 9358 goto nosideret;
4c4b4cd2 9359 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
22601c15 9360 return value_zero (builtin_type (exp->gdbarch)->builtin_int, not_lval);
4c4b4cd2 9361 else
22601c15 9362 return value_from_longest (builtin_type (exp->gdbarch)->builtin_int,
8c1c099f 9363 TARGET_CHAR_BIT * TYPE_LENGTH (type));
4c4b4cd2
PH
9364
9365 case OP_ATR_VAL:
9366 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
14f9c5c9 9367 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
4c4b4cd2 9368 type = exp->elts[pc + 2].type;
14f9c5c9 9369 if (noside == EVAL_SKIP)
76a01679 9370 goto nosideret;
4c4b4cd2 9371 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
76a01679 9372 return value_zero (type, not_lval);
4c4b4cd2 9373 else
76a01679 9374 return value_val_atr (type, arg1);
4c4b4cd2
PH
9375
9376 case BINOP_EXP:
9377 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9378 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9379 if (noside == EVAL_SKIP)
9380 goto nosideret;
9381 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
df407dfe 9382 return value_zero (value_type (arg1), not_lval);
4c4b4cd2 9383 else
f44316fa
UW
9384 {
9385 /* For integer exponentiation operations,
9386 only promote the first argument. */
9387 if (is_integral_type (value_type (arg2)))
9388 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
9389 else
9390 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
9391
9392 return value_binop (arg1, arg2, op);
9393 }
4c4b4cd2
PH
9394
9395 case UNOP_PLUS:
9396 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9397 if (noside == EVAL_SKIP)
9398 goto nosideret;
9399 else
9400 return arg1;
9401
9402 case UNOP_ABS:
9403 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9404 if (noside == EVAL_SKIP)
9405 goto nosideret;
f44316fa 9406 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
df407dfe 9407 if (value_less (arg1, value_zero (value_type (arg1), not_lval)))
4c4b4cd2 9408 return value_neg (arg1);
14f9c5c9 9409 else
4c4b4cd2 9410 return arg1;
14f9c5c9
AS
9411
9412 case UNOP_IND:
6b0d7253 9413 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
14f9c5c9 9414 if (noside == EVAL_SKIP)
4c4b4cd2 9415 goto nosideret;
df407dfe 9416 type = ada_check_typedef (value_type (arg1));
14f9c5c9 9417 if (noside == EVAL_AVOID_SIDE_EFFECTS)
4c4b4cd2
PH
9418 {
9419 if (ada_is_array_descriptor_type (type))
9420 /* GDB allows dereferencing GNAT array descriptors. */
9421 {
9422 struct type *arrType = ada_type_of_array (arg1, 0);
9423 if (arrType == NULL)
323e0a4a 9424 error (_("Attempt to dereference null array pointer."));
00a4c844 9425 return value_at_lazy (arrType, 0);
4c4b4cd2
PH
9426 }
9427 else if (TYPE_CODE (type) == TYPE_CODE_PTR
9428 || TYPE_CODE (type) == TYPE_CODE_REF
9429 /* In C you can dereference an array to get the 1st elt. */
9430 || TYPE_CODE (type) == TYPE_CODE_ARRAY)
714e53ab
PH
9431 {
9432 type = to_static_fixed_type
9433 (ada_aligned_type
9434 (ada_check_typedef (TYPE_TARGET_TYPE (type))));
9435 check_size (type);
9436 return value_zero (type, lval_memory);
9437 }
4c4b4cd2 9438 else if (TYPE_CODE (type) == TYPE_CODE_INT)
6b0d7253
JB
9439 {
9440 /* GDB allows dereferencing an int. */
9441 if (expect_type == NULL)
9442 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
9443 lval_memory);
9444 else
9445 {
9446 expect_type =
9447 to_static_fixed_type (ada_aligned_type (expect_type));
9448 return value_zero (expect_type, lval_memory);
9449 }
9450 }
4c4b4cd2 9451 else
323e0a4a 9452 error (_("Attempt to take contents of a non-pointer value."));
4c4b4cd2 9453 }
76a01679 9454 arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */
df407dfe 9455 type = ada_check_typedef (value_type (arg1));
d2e4a39e 9456
96967637
JB
9457 if (TYPE_CODE (type) == TYPE_CODE_INT)
9458 /* GDB allows dereferencing an int. If we were given
9459 the expect_type, then use that as the target type.
9460 Otherwise, assume that the target type is an int. */
9461 {
9462 if (expect_type != NULL)
9463 return ada_value_ind (value_cast (lookup_pointer_type (expect_type),
9464 arg1));
9465 else
9466 return value_at_lazy (builtin_type (exp->gdbarch)->builtin_int,
9467 (CORE_ADDR) value_as_address (arg1));
9468 }
6b0d7253 9469
4c4b4cd2
PH
9470 if (ada_is_array_descriptor_type (type))
9471 /* GDB allows dereferencing GNAT array descriptors. */
9472 return ada_coerce_to_simple_array (arg1);
14f9c5c9 9473 else
4c4b4cd2 9474 return ada_value_ind (arg1);
14f9c5c9
AS
9475
9476 case STRUCTOP_STRUCT:
9477 tem = longest_to_int (exp->elts[pc + 1].longconst);
9478 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
9479 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9480 if (noside == EVAL_SKIP)
4c4b4cd2 9481 goto nosideret;
14f9c5c9 9482 if (noside == EVAL_AVOID_SIDE_EFFECTS)
76a01679 9483 {
df407dfe 9484 struct type *type1 = value_type (arg1);
76a01679
JB
9485 if (ada_is_tagged_type (type1, 1))
9486 {
9487 type = ada_lookup_struct_elt_type (type1,
9488 &exp->elts[pc + 2].string,
9489 1, 1, NULL);
9490 if (type == NULL)
9491 /* In this case, we assume that the field COULD exist
9492 in some extension of the type. Return an object of
9493 "type" void, which will match any formal
9494 (see ada_type_match). */
30b15541
UW
9495 return value_zero (builtin_type (exp->gdbarch)->builtin_void,
9496 lval_memory);
76a01679
JB
9497 }
9498 else
9499 type =
9500 ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1,
9501 0, NULL);
9502
9503 return value_zero (ada_aligned_type (type), lval_memory);
9504 }
14f9c5c9 9505 else
284614f0
JB
9506 arg1 = ada_value_struct_elt (arg1, &exp->elts[pc + 2].string, 0);
9507 arg1 = unwrap_value (arg1);
9508 return ada_to_fixed_value (arg1);
9509
14f9c5c9 9510 case OP_TYPE:
4c4b4cd2
PH
9511 /* The value is not supposed to be used. This is here to make it
9512 easier to accommodate expressions that contain types. */
14f9c5c9
AS
9513 (*pos) += 2;
9514 if (noside == EVAL_SKIP)
4c4b4cd2 9515 goto nosideret;
14f9c5c9 9516 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
a6cfbe68 9517 return allocate_value (exp->elts[pc + 1].type);
14f9c5c9 9518 else
323e0a4a 9519 error (_("Attempt to use a type name as an expression"));
52ce6436
PH
9520
9521 case OP_AGGREGATE:
9522 case OP_CHOICES:
9523 case OP_OTHERS:
9524 case OP_DISCRETE_RANGE:
9525 case OP_POSITIONAL:
9526 case OP_NAME:
9527 if (noside == EVAL_NORMAL)
9528 switch (op)
9529 {
9530 case OP_NAME:
9531 error (_("Undefined name, ambiguous name, or renaming used in "
e1d5a0d2 9532 "component association: %s."), &exp->elts[pc+2].string);
52ce6436
PH
9533 case OP_AGGREGATE:
9534 error (_("Aggregates only allowed on the right of an assignment"));
9535 default:
e1d5a0d2 9536 internal_error (__FILE__, __LINE__, _("aggregate apparently mangled"));
52ce6436
PH
9537 }
9538
9539 ada_forward_operator_length (exp, pc, &oplen, &nargs);
9540 *pos += oplen - 1;
9541 for (tem = 0; tem < nargs; tem += 1)
9542 ada_evaluate_subexp (NULL, exp, pos, noside);
9543 goto nosideret;
14f9c5c9
AS
9544 }
9545
9546nosideret:
22601c15 9547 return value_from_longest (builtin_type (exp->gdbarch)->builtin_int, 1);
14f9c5c9 9548}
14f9c5c9 9549\f
d2e4a39e 9550
4c4b4cd2 9551 /* Fixed point */
14f9c5c9
AS
9552
9553/* If TYPE encodes an Ada fixed-point type, return the suffix of the
9554 type name that encodes the 'small and 'delta information.
4c4b4cd2 9555 Otherwise, return NULL. */
14f9c5c9 9556
d2e4a39e 9557static const char *
ebf56fd3 9558fixed_type_info (struct type *type)
14f9c5c9 9559{
d2e4a39e 9560 const char *name = ada_type_name (type);
14f9c5c9
AS
9561 enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : TYPE_CODE (type);
9562
d2e4a39e
AS
9563 if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL)
9564 {
14f9c5c9
AS
9565 const char *tail = strstr (name, "___XF_");
9566 if (tail == NULL)
4c4b4cd2 9567 return NULL;
d2e4a39e 9568 else
4c4b4cd2 9569 return tail + 5;
14f9c5c9
AS
9570 }
9571 else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type)
9572 return fixed_type_info (TYPE_TARGET_TYPE (type));
9573 else
9574 return NULL;
9575}
9576
4c4b4cd2 9577/* Returns non-zero iff TYPE represents an Ada fixed-point type. */
14f9c5c9
AS
9578
9579int
ebf56fd3 9580ada_is_fixed_point_type (struct type *type)
14f9c5c9
AS
9581{
9582 return fixed_type_info (type) != NULL;
9583}
9584
4c4b4cd2
PH
9585/* Return non-zero iff TYPE represents a System.Address type. */
9586
9587int
9588ada_is_system_address_type (struct type *type)
9589{
9590 return (TYPE_NAME (type)
9591 && strcmp (TYPE_NAME (type), "system__address") == 0);
9592}
9593
14f9c5c9
AS
9594/* Assuming that TYPE is the representation of an Ada fixed-point
9595 type, return its delta, or -1 if the type is malformed and the
4c4b4cd2 9596 delta cannot be determined. */
14f9c5c9
AS
9597
9598DOUBLEST
ebf56fd3 9599ada_delta (struct type *type)
14f9c5c9
AS
9600{
9601 const char *encoding = fixed_type_info (type);
facc390f 9602 DOUBLEST num, den;
14f9c5c9 9603
facc390f
JB
9604 /* Strictly speaking, num and den are encoded as integer. However,
9605 they may not fit into a long, and they will have to be converted
9606 to DOUBLEST anyway. So scan them as DOUBLEST. */
9607 if (sscanf (encoding, "_%" DOUBLEST_SCAN_FORMAT "_%" DOUBLEST_SCAN_FORMAT,
9608 &num, &den) < 2)
14f9c5c9 9609 return -1.0;
d2e4a39e 9610 else
facc390f 9611 return num / den;
14f9c5c9
AS
9612}
9613
9614/* Assuming that ada_is_fixed_point_type (TYPE), return the scaling
4c4b4cd2 9615 factor ('SMALL value) associated with the type. */
14f9c5c9
AS
9616
9617static DOUBLEST
ebf56fd3 9618scaling_factor (struct type *type)
14f9c5c9
AS
9619{
9620 const char *encoding = fixed_type_info (type);
facc390f 9621 DOUBLEST num0, den0, num1, den1;
14f9c5c9 9622 int n;
d2e4a39e 9623
facc390f
JB
9624 /* Strictly speaking, num's and den's are encoded as integer. However,
9625 they may not fit into a long, and they will have to be converted
9626 to DOUBLEST anyway. So scan them as DOUBLEST. */
9627 n = sscanf (encoding,
9628 "_%" DOUBLEST_SCAN_FORMAT "_%" DOUBLEST_SCAN_FORMAT
9629 "_%" DOUBLEST_SCAN_FORMAT "_%" DOUBLEST_SCAN_FORMAT,
9630 &num0, &den0, &num1, &den1);
14f9c5c9
AS
9631
9632 if (n < 2)
9633 return 1.0;
9634 else if (n == 4)
facc390f 9635 return num1 / den1;
d2e4a39e 9636 else
facc390f 9637 return num0 / den0;
14f9c5c9
AS
9638}
9639
9640
9641/* Assuming that X is the representation of a value of fixed-point
4c4b4cd2 9642 type TYPE, return its floating-point equivalent. */
14f9c5c9
AS
9643
9644DOUBLEST
ebf56fd3 9645ada_fixed_to_float (struct type *type, LONGEST x)
14f9c5c9 9646{
d2e4a39e 9647 return (DOUBLEST) x *scaling_factor (type);
14f9c5c9
AS
9648}
9649
4c4b4cd2
PH
9650/* The representation of a fixed-point value of type TYPE
9651 corresponding to the value X. */
14f9c5c9
AS
9652
9653LONGEST
ebf56fd3 9654ada_float_to_fixed (struct type *type, DOUBLEST x)
14f9c5c9
AS
9655{
9656 return (LONGEST) (x / scaling_factor (type) + 0.5);
9657}
9658
14f9c5c9 9659\f
d2e4a39e 9660
4c4b4cd2 9661 /* Range types */
14f9c5c9
AS
9662
9663/* Scan STR beginning at position K for a discriminant name, and
9664 return the value of that discriminant field of DVAL in *PX. If
9665 PNEW_K is not null, put the position of the character beyond the
9666 name scanned in *PNEW_K. Return 1 if successful; return 0 and do
4c4b4cd2 9667 not alter *PX and *PNEW_K if unsuccessful. */
14f9c5c9
AS
9668
9669static int
07d8f827 9670scan_discrim_bound (char *str, int k, struct value *dval, LONGEST * px,
76a01679 9671 int *pnew_k)
14f9c5c9
AS
9672{
9673 static char *bound_buffer = NULL;
9674 static size_t bound_buffer_len = 0;
9675 char *bound;
9676 char *pend;
d2e4a39e 9677 struct value *bound_val;
14f9c5c9
AS
9678
9679 if (dval == NULL || str == NULL || str[k] == '\0')
9680 return 0;
9681
d2e4a39e 9682 pend = strstr (str + k, "__");
14f9c5c9
AS
9683 if (pend == NULL)
9684 {
d2e4a39e 9685 bound = str + k;
14f9c5c9
AS
9686 k += strlen (bound);
9687 }
d2e4a39e 9688 else
14f9c5c9 9689 {
d2e4a39e 9690 GROW_VECT (bound_buffer, bound_buffer_len, pend - (str + k) + 1);
14f9c5c9 9691 bound = bound_buffer;
d2e4a39e
AS
9692 strncpy (bound_buffer, str + k, pend - (str + k));
9693 bound[pend - (str + k)] = '\0';
9694 k = pend - str;
14f9c5c9 9695 }
d2e4a39e 9696
df407dfe 9697 bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval));
14f9c5c9
AS
9698 if (bound_val == NULL)
9699 return 0;
9700
9701 *px = value_as_long (bound_val);
9702 if (pnew_k != NULL)
9703 *pnew_k = k;
9704 return 1;
9705}
9706
9707/* Value of variable named NAME in the current environment. If
9708 no such variable found, then if ERR_MSG is null, returns 0, and
4c4b4cd2
PH
9709 otherwise causes an error with message ERR_MSG. */
9710
d2e4a39e
AS
9711static struct value *
9712get_var_value (char *name, char *err_msg)
14f9c5c9 9713{
4c4b4cd2 9714 struct ada_symbol_info *syms;
14f9c5c9
AS
9715 int nsyms;
9716
4c4b4cd2
PH
9717 nsyms = ada_lookup_symbol_list (name, get_selected_block (0), VAR_DOMAIN,
9718 &syms);
14f9c5c9
AS
9719
9720 if (nsyms != 1)
9721 {
9722 if (err_msg == NULL)
4c4b4cd2 9723 return 0;
14f9c5c9 9724 else
8a3fe4f8 9725 error (("%s"), err_msg);
14f9c5c9
AS
9726 }
9727
4c4b4cd2 9728 return value_of_variable (syms[0].sym, syms[0].block);
14f9c5c9 9729}
d2e4a39e 9730
14f9c5c9 9731/* Value of integer variable named NAME in the current environment. If
4c4b4cd2
PH
9732 no such variable found, returns 0, and sets *FLAG to 0. If
9733 successful, sets *FLAG to 1. */
9734
14f9c5c9 9735LONGEST
4c4b4cd2 9736get_int_var_value (char *name, int *flag)
14f9c5c9 9737{
4c4b4cd2 9738 struct value *var_val = get_var_value (name, 0);
d2e4a39e 9739
14f9c5c9
AS
9740 if (var_val == 0)
9741 {
9742 if (flag != NULL)
4c4b4cd2 9743 *flag = 0;
14f9c5c9
AS
9744 return 0;
9745 }
9746 else
9747 {
9748 if (flag != NULL)
4c4b4cd2 9749 *flag = 1;
14f9c5c9
AS
9750 return value_as_long (var_val);
9751 }
9752}
d2e4a39e 9753
14f9c5c9
AS
9754
9755/* Return a range type whose base type is that of the range type named
9756 NAME in the current environment, and whose bounds are calculated
4c4b4cd2 9757 from NAME according to the GNAT range encoding conventions.
1ce677a4
UW
9758 Extract discriminant values, if needed, from DVAL. ORIG_TYPE is the
9759 corresponding range type from debug information; fall back to using it
9760 if symbol lookup fails. If a new type must be created, allocate it
9761 like ORIG_TYPE was. The bounds information, in general, is encoded
9762 in NAME, the base type given in the named range type. */
14f9c5c9 9763
d2e4a39e 9764static struct type *
1ce677a4 9765to_fixed_range_type (char *name, struct value *dval, struct type *orig_type)
14f9c5c9
AS
9766{
9767 struct type *raw_type = ada_find_any_type (name);
9768 struct type *base_type;
d2e4a39e 9769 char *subtype_info;
14f9c5c9 9770
1ce677a4 9771 /* Fall back to the original type if symbol lookup failed. */
dddfab26 9772 if (raw_type == NULL)
1ce677a4 9773 raw_type = orig_type;
dddfab26 9774
1ce677a4 9775 if (TYPE_CODE (raw_type) == TYPE_CODE_RANGE)
14f9c5c9
AS
9776 base_type = TYPE_TARGET_TYPE (raw_type);
9777 else
9778 base_type = raw_type;
9779
9780 subtype_info = strstr (name, "___XD");
9781 if (subtype_info == NULL)
690cc4eb 9782 {
43bbcdc2
PH
9783 LONGEST L = ada_discrete_type_low_bound (raw_type);
9784 LONGEST U = ada_discrete_type_high_bound (raw_type);
690cc4eb
PH
9785 if (L < INT_MIN || U > INT_MAX)
9786 return raw_type;
9787 else
e9bb382b 9788 return create_range_type (alloc_type_copy (orig_type), raw_type,
43bbcdc2
PH
9789 ada_discrete_type_low_bound (raw_type),
9790 ada_discrete_type_high_bound (raw_type));
690cc4eb 9791 }
14f9c5c9
AS
9792 else
9793 {
9794 static char *name_buf = NULL;
9795 static size_t name_len = 0;
9796 int prefix_len = subtype_info - name;
9797 LONGEST L, U;
9798 struct type *type;
9799 char *bounds_str;
9800 int n;
9801
9802 GROW_VECT (name_buf, name_len, prefix_len + 5);
9803 strncpy (name_buf, name, prefix_len);
9804 name_buf[prefix_len] = '\0';
9805
9806 subtype_info += 5;
9807 bounds_str = strchr (subtype_info, '_');
9808 n = 1;
9809
d2e4a39e 9810 if (*subtype_info == 'L')
4c4b4cd2
PH
9811 {
9812 if (!ada_scan_number (bounds_str, n, &L, &n)
9813 && !scan_discrim_bound (bounds_str, n, dval, &L, &n))
9814 return raw_type;
9815 if (bounds_str[n] == '_')
9816 n += 2;
9817 else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */
9818 n += 1;
9819 subtype_info += 1;
9820 }
d2e4a39e 9821 else
4c4b4cd2
PH
9822 {
9823 int ok;
9824 strcpy (name_buf + prefix_len, "___L");
9825 L = get_int_var_value (name_buf, &ok);
9826 if (!ok)
9827 {
323e0a4a 9828 lim_warning (_("Unknown lower bound, using 1."));
4c4b4cd2
PH
9829 L = 1;
9830 }
9831 }
14f9c5c9 9832
d2e4a39e 9833 if (*subtype_info == 'U')
4c4b4cd2
PH
9834 {
9835 if (!ada_scan_number (bounds_str, n, &U, &n)
9836 && !scan_discrim_bound (bounds_str, n, dval, &U, &n))
9837 return raw_type;
9838 }
d2e4a39e 9839 else
4c4b4cd2
PH
9840 {
9841 int ok;
9842 strcpy (name_buf + prefix_len, "___U");
9843 U = get_int_var_value (name_buf, &ok);
9844 if (!ok)
9845 {
323e0a4a 9846 lim_warning (_("Unknown upper bound, using %ld."), (long) L);
4c4b4cd2
PH
9847 U = L;
9848 }
9849 }
14f9c5c9 9850
e9bb382b 9851 type = create_range_type (alloc_type_copy (orig_type), base_type, L, U);
d2e4a39e 9852 TYPE_NAME (type) = name;
14f9c5c9
AS
9853 return type;
9854 }
9855}
9856
4c4b4cd2
PH
9857/* True iff NAME is the name of a range type. */
9858
14f9c5c9 9859int
d2e4a39e 9860ada_is_range_type_name (const char *name)
14f9c5c9
AS
9861{
9862 return (name != NULL && strstr (name, "___XD"));
d2e4a39e 9863}
14f9c5c9 9864\f
d2e4a39e 9865
4c4b4cd2
PH
9866 /* Modular types */
9867
9868/* True iff TYPE is an Ada modular type. */
14f9c5c9 9869
14f9c5c9 9870int
d2e4a39e 9871ada_is_modular_type (struct type *type)
14f9c5c9 9872{
4c4b4cd2 9873 struct type *subranged_type = base_type (type);
14f9c5c9
AS
9874
9875 return (subranged_type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE
690cc4eb 9876 && TYPE_CODE (subranged_type) == TYPE_CODE_INT
4c4b4cd2 9877 && TYPE_UNSIGNED (subranged_type));
14f9c5c9
AS
9878}
9879
0056e4d5
JB
9880/* Try to determine the lower and upper bounds of the given modular type
9881 using the type name only. Return non-zero and set L and U as the lower
9882 and upper bounds (respectively) if successful. */
9883
9884int
9885ada_modulus_from_name (struct type *type, ULONGEST *modulus)
9886{
9887 char *name = ada_type_name (type);
9888 char *suffix;
9889 int k;
9890 LONGEST U;
9891
9892 if (name == NULL)
9893 return 0;
9894
9895 /* Discrete type bounds are encoded using an __XD suffix. In our case,
9896 we are looking for static bounds, which means an __XDLU suffix.
9897 Moreover, we know that the lower bound of modular types is always
9898 zero, so the actual suffix should start with "__XDLU_0__", and
9899 then be followed by the upper bound value. */
9900 suffix = strstr (name, "__XDLU_0__");
9901 if (suffix == NULL)
9902 return 0;
9903 k = 10;
9904 if (!ada_scan_number (suffix, k, &U, NULL))
9905 return 0;
9906
9907 *modulus = (ULONGEST) U + 1;
9908 return 1;
9909}
9910
4c4b4cd2
PH
9911/* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */
9912
61ee279c 9913ULONGEST
0056e4d5 9914ada_modulus (struct type *type)
14f9c5c9 9915{
43bbcdc2 9916 return (ULONGEST) TYPE_HIGH_BOUND (type) + 1;
14f9c5c9 9917}
d2e4a39e 9918\f
f7f9143b
JB
9919
9920/* Ada exception catchpoint support:
9921 ---------------------------------
9922
9923 We support 3 kinds of exception catchpoints:
9924 . catchpoints on Ada exceptions
9925 . catchpoints on unhandled Ada exceptions
9926 . catchpoints on failed assertions
9927
9928 Exceptions raised during failed assertions, or unhandled exceptions
9929 could perfectly be caught with the general catchpoint on Ada exceptions.
9930 However, we can easily differentiate these two special cases, and having
9931 the option to distinguish these two cases from the rest can be useful
9932 to zero-in on certain situations.
9933
9934 Exception catchpoints are a specialized form of breakpoint,
9935 since they rely on inserting breakpoints inside known routines
9936 of the GNAT runtime. The implementation therefore uses a standard
9937 breakpoint structure of the BP_BREAKPOINT type, but with its own set
9938 of breakpoint_ops.
9939
0259addd
JB
9940 Support in the runtime for exception catchpoints have been changed
9941 a few times already, and these changes affect the implementation
9942 of these catchpoints. In order to be able to support several
9943 variants of the runtime, we use a sniffer that will determine
9944 the runtime variant used by the program being debugged.
9945
f7f9143b
JB
9946 At this time, we do not support the use of conditions on Ada exception
9947 catchpoints. The COND and COND_STRING fields are therefore set
9948 to NULL (most of the time, see below).
9949
9950 Conditions where EXP_STRING, COND, and COND_STRING are used:
9951
9952 When a user specifies the name of a specific exception in the case
9953 of catchpoints on Ada exceptions, we store the name of that exception
9954 in the EXP_STRING. We then translate this request into an actual
9955 condition stored in COND_STRING, and then parse it into an expression
9956 stored in COND. */
9957
9958/* The different types of catchpoints that we introduced for catching
9959 Ada exceptions. */
9960
9961enum exception_catchpoint_kind
9962{
9963 ex_catch_exception,
9964 ex_catch_exception_unhandled,
9965 ex_catch_assert
9966};
9967
3d0b0fa3
JB
9968/* Ada's standard exceptions. */
9969
9970static char *standard_exc[] = {
9971 "constraint_error",
9972 "program_error",
9973 "storage_error",
9974 "tasking_error"
9975};
9976
0259addd
JB
9977typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void);
9978
9979/* A structure that describes how to support exception catchpoints
9980 for a given executable. */
9981
9982struct exception_support_info
9983{
9984 /* The name of the symbol to break on in order to insert
9985 a catchpoint on exceptions. */
9986 const char *catch_exception_sym;
9987
9988 /* The name of the symbol to break on in order to insert
9989 a catchpoint on unhandled exceptions. */
9990 const char *catch_exception_unhandled_sym;
9991
9992 /* The name of the symbol to break on in order to insert
9993 a catchpoint on failed assertions. */
9994 const char *catch_assert_sym;
9995
9996 /* Assuming that the inferior just triggered an unhandled exception
9997 catchpoint, this function is responsible for returning the address
9998 in inferior memory where the name of that exception is stored.
9999 Return zero if the address could not be computed. */
10000 ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr;
10001};
10002
10003static CORE_ADDR ada_unhandled_exception_name_addr (void);
10004static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void);
10005
10006/* The following exception support info structure describes how to
10007 implement exception catchpoints with the latest version of the
10008 Ada runtime (as of 2007-03-06). */
10009
10010static const struct exception_support_info default_exception_support_info =
10011{
10012 "__gnat_debug_raise_exception", /* catch_exception_sym */
10013 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
10014 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
10015 ada_unhandled_exception_name_addr
10016};
10017
10018/* The following exception support info structure describes how to
10019 implement exception catchpoints with a slightly older version
10020 of the Ada runtime. */
10021
10022static const struct exception_support_info exception_support_info_fallback =
10023{
10024 "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */
10025 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
10026 "system__assertions__raise_assert_failure", /* catch_assert_sym */
10027 ada_unhandled_exception_name_addr_from_raise
10028};
10029
10030/* For each executable, we sniff which exception info structure to use
10031 and cache it in the following global variable. */
10032
10033static const struct exception_support_info *exception_info = NULL;
10034
10035/* Inspect the Ada runtime and determine which exception info structure
10036 should be used to provide support for exception catchpoints.
10037
10038 This function will always set exception_info, or raise an error. */
10039
10040static void
10041ada_exception_support_info_sniffer (void)
10042{
10043 struct symbol *sym;
10044
10045 /* If the exception info is already known, then no need to recompute it. */
10046 if (exception_info != NULL)
10047 return;
10048
10049 /* Check the latest (default) exception support info. */
10050 sym = standard_lookup (default_exception_support_info.catch_exception_sym,
10051 NULL, VAR_DOMAIN);
10052 if (sym != NULL)
10053 {
10054 exception_info = &default_exception_support_info;
10055 return;
10056 }
10057
10058 /* Try our fallback exception suport info. */
10059 sym = standard_lookup (exception_support_info_fallback.catch_exception_sym,
10060 NULL, VAR_DOMAIN);
10061 if (sym != NULL)
10062 {
10063 exception_info = &exception_support_info_fallback;
10064 return;
10065 }
10066
10067 /* Sometimes, it is normal for us to not be able to find the routine
10068 we are looking for. This happens when the program is linked with
10069 the shared version of the GNAT runtime, and the program has not been
10070 started yet. Inform the user of these two possible causes if
10071 applicable. */
10072
10073 if (ada_update_initial_language (language_unknown, NULL) != language_ada)
10074 error (_("Unable to insert catchpoint. Is this an Ada main program?"));
10075
10076 /* If the symbol does not exist, then check that the program is
10077 already started, to make sure that shared libraries have been
10078 loaded. If it is not started, this may mean that the symbol is
10079 in a shared library. */
10080
10081 if (ptid_get_pid (inferior_ptid) == 0)
10082 error (_("Unable to insert catchpoint. Try to start the program first."));
10083
10084 /* At this point, we know that we are debugging an Ada program and
10085 that the inferior has been started, but we still are not able to
10086 find the run-time symbols. That can mean that we are in
10087 configurable run time mode, or that a-except as been optimized
10088 out by the linker... In any case, at this point it is not worth
10089 supporting this feature. */
10090
10091 error (_("Cannot insert catchpoints in this configuration."));
10092}
10093
10094/* An observer of "executable_changed" events.
10095 Its role is to clear certain cached values that need to be recomputed
10096 each time a new executable is loaded by GDB. */
10097
10098static void
781b42b0 10099ada_executable_changed_observer (void)
0259addd
JB
10100{
10101 /* If the executable changed, then it is possible that the Ada runtime
10102 is different. So we need to invalidate the exception support info
10103 cache. */
10104 exception_info = NULL;
10105}
10106
f7f9143b
JB
10107/* Return the name of the function at PC, NULL if could not find it.
10108 This function only checks the debugging information, not the symbol
10109 table. */
10110
10111static char *
10112function_name_from_pc (CORE_ADDR pc)
10113{
10114 char *func_name;
10115
10116 if (!find_pc_partial_function (pc, &func_name, NULL, NULL))
10117 return NULL;
10118
10119 return func_name;
10120}
10121
10122/* True iff FRAME is very likely to be that of a function that is
10123 part of the runtime system. This is all very heuristic, but is
10124 intended to be used as advice as to what frames are uninteresting
10125 to most users. */
10126
10127static int
10128is_known_support_routine (struct frame_info *frame)
10129{
4ed6b5be 10130 struct symtab_and_line sal;
f7f9143b
JB
10131 char *func_name;
10132 int i;
f7f9143b 10133
4ed6b5be
JB
10134 /* If this code does not have any debugging information (no symtab),
10135 This cannot be any user code. */
f7f9143b 10136
4ed6b5be 10137 find_frame_sal (frame, &sal);
f7f9143b
JB
10138 if (sal.symtab == NULL)
10139 return 1;
10140
4ed6b5be
JB
10141 /* If there is a symtab, but the associated source file cannot be
10142 located, then assume this is not user code: Selecting a frame
10143 for which we cannot display the code would not be very helpful
10144 for the user. This should also take care of case such as VxWorks
10145 where the kernel has some debugging info provided for a few units. */
f7f9143b 10146
9bbc9174 10147 if (symtab_to_fullname (sal.symtab) == NULL)
f7f9143b
JB
10148 return 1;
10149
4ed6b5be
JB
10150 /* Check the unit filename againt the Ada runtime file naming.
10151 We also check the name of the objfile against the name of some
10152 known system libraries that sometimes come with debugging info
10153 too. */
10154
f7f9143b
JB
10155 for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1)
10156 {
10157 re_comp (known_runtime_file_name_patterns[i]);
10158 if (re_exec (sal.symtab->filename))
10159 return 1;
4ed6b5be
JB
10160 if (sal.symtab->objfile != NULL
10161 && re_exec (sal.symtab->objfile->name))
10162 return 1;
f7f9143b
JB
10163 }
10164
4ed6b5be 10165 /* Check whether the function is a GNAT-generated entity. */
f7f9143b 10166
4ed6b5be 10167 func_name = function_name_from_pc (get_frame_address_in_block (frame));
f7f9143b
JB
10168 if (func_name == NULL)
10169 return 1;
10170
10171 for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1)
10172 {
10173 re_comp (known_auxiliary_function_name_patterns[i]);
10174 if (re_exec (func_name))
10175 return 1;
10176 }
10177
10178 return 0;
10179}
10180
10181/* Find the first frame that contains debugging information and that is not
10182 part of the Ada run-time, starting from FI and moving upward. */
10183
0ef643c8 10184void
f7f9143b
JB
10185ada_find_printable_frame (struct frame_info *fi)
10186{
10187 for (; fi != NULL; fi = get_prev_frame (fi))
10188 {
10189 if (!is_known_support_routine (fi))
10190 {
10191 select_frame (fi);
10192 break;
10193 }
10194 }
10195
10196}
10197
10198/* Assuming that the inferior just triggered an unhandled exception
10199 catchpoint, return the address in inferior memory where the name
10200 of the exception is stored.
10201
10202 Return zero if the address could not be computed. */
10203
10204static CORE_ADDR
10205ada_unhandled_exception_name_addr (void)
0259addd
JB
10206{
10207 return parse_and_eval_address ("e.full_name");
10208}
10209
10210/* Same as ada_unhandled_exception_name_addr, except that this function
10211 should be used when the inferior uses an older version of the runtime,
10212 where the exception name needs to be extracted from a specific frame
10213 several frames up in the callstack. */
10214
10215static CORE_ADDR
10216ada_unhandled_exception_name_addr_from_raise (void)
f7f9143b
JB
10217{
10218 int frame_level;
10219 struct frame_info *fi;
10220
10221 /* To determine the name of this exception, we need to select
10222 the frame corresponding to RAISE_SYM_NAME. This frame is
10223 at least 3 levels up, so we simply skip the first 3 frames
10224 without checking the name of their associated function. */
10225 fi = get_current_frame ();
10226 for (frame_level = 0; frame_level < 3; frame_level += 1)
10227 if (fi != NULL)
10228 fi = get_prev_frame (fi);
10229
10230 while (fi != NULL)
10231 {
10232 const char *func_name =
10233 function_name_from_pc (get_frame_address_in_block (fi));
10234 if (func_name != NULL
0259addd 10235 && strcmp (func_name, exception_info->catch_exception_sym) == 0)
f7f9143b
JB
10236 break; /* We found the frame we were looking for... */
10237 fi = get_prev_frame (fi);
10238 }
10239
10240 if (fi == NULL)
10241 return 0;
10242
10243 select_frame (fi);
10244 return parse_and_eval_address ("id.full_name");
10245}
10246
10247/* Assuming the inferior just triggered an Ada exception catchpoint
10248 (of any type), return the address in inferior memory where the name
10249 of the exception is stored, if applicable.
10250
10251 Return zero if the address could not be computed, or if not relevant. */
10252
10253static CORE_ADDR
10254ada_exception_name_addr_1 (enum exception_catchpoint_kind ex,
10255 struct breakpoint *b)
10256{
10257 switch (ex)
10258 {
10259 case ex_catch_exception:
10260 return (parse_and_eval_address ("e.full_name"));
10261 break;
10262
10263 case ex_catch_exception_unhandled:
0259addd 10264 return exception_info->unhandled_exception_name_addr ();
f7f9143b
JB
10265 break;
10266
10267 case ex_catch_assert:
10268 return 0; /* Exception name is not relevant in this case. */
10269 break;
10270
10271 default:
10272 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
10273 break;
10274 }
10275
10276 return 0; /* Should never be reached. */
10277}
10278
10279/* Same as ada_exception_name_addr_1, except that it intercepts and contains
10280 any error that ada_exception_name_addr_1 might cause to be thrown.
10281 When an error is intercepted, a warning with the error message is printed,
10282 and zero is returned. */
10283
10284static CORE_ADDR
10285ada_exception_name_addr (enum exception_catchpoint_kind ex,
10286 struct breakpoint *b)
10287{
10288 struct gdb_exception e;
10289 CORE_ADDR result = 0;
10290
10291 TRY_CATCH (e, RETURN_MASK_ERROR)
10292 {
10293 result = ada_exception_name_addr_1 (ex, b);
10294 }
10295
10296 if (e.reason < 0)
10297 {
10298 warning (_("failed to get exception name: %s"), e.message);
10299 return 0;
10300 }
10301
10302 return result;
10303}
10304
10305/* Implement the PRINT_IT method in the breakpoint_ops structure
10306 for all exception catchpoint kinds. */
10307
10308static enum print_stop_action
10309print_it_exception (enum exception_catchpoint_kind ex, struct breakpoint *b)
10310{
10311 const CORE_ADDR addr = ada_exception_name_addr (ex, b);
10312 char exception_name[256];
10313
10314 if (addr != 0)
10315 {
10316 read_memory (addr, exception_name, sizeof (exception_name) - 1);
10317 exception_name [sizeof (exception_name) - 1] = '\0';
10318 }
10319
10320 ada_find_printable_frame (get_current_frame ());
10321
10322 annotate_catchpoint (b->number);
10323 switch (ex)
10324 {
10325 case ex_catch_exception:
10326 if (addr != 0)
10327 printf_filtered (_("\nCatchpoint %d, %s at "),
10328 b->number, exception_name);
10329 else
10330 printf_filtered (_("\nCatchpoint %d, exception at "), b->number);
10331 break;
10332 case ex_catch_exception_unhandled:
10333 if (addr != 0)
10334 printf_filtered (_("\nCatchpoint %d, unhandled %s at "),
10335 b->number, exception_name);
10336 else
10337 printf_filtered (_("\nCatchpoint %d, unhandled exception at "),
10338 b->number);
10339 break;
10340 case ex_catch_assert:
10341 printf_filtered (_("\nCatchpoint %d, failed assertion at "),
10342 b->number);
10343 break;
10344 }
10345
10346 return PRINT_SRC_AND_LOC;
10347}
10348
10349/* Implement the PRINT_ONE method in the breakpoint_ops structure
10350 for all exception catchpoint kinds. */
10351
10352static void
10353print_one_exception (enum exception_catchpoint_kind ex,
a6d9a66e 10354 struct breakpoint *b, struct bp_location **last_loc)
f7f9143b 10355{
79a45b7d
TT
10356 struct value_print_options opts;
10357
10358 get_user_print_options (&opts);
10359 if (opts.addressprint)
f7f9143b
JB
10360 {
10361 annotate_field (4);
5af949e3 10362 ui_out_field_core_addr (uiout, "addr", b->loc->gdbarch, b->loc->address);
f7f9143b
JB
10363 }
10364
10365 annotate_field (5);
a6d9a66e 10366 *last_loc = b->loc;
f7f9143b
JB
10367 switch (ex)
10368 {
10369 case ex_catch_exception:
10370 if (b->exp_string != NULL)
10371 {
10372 char *msg = xstrprintf (_("`%s' Ada exception"), b->exp_string);
10373
10374 ui_out_field_string (uiout, "what", msg);
10375 xfree (msg);
10376 }
10377 else
10378 ui_out_field_string (uiout, "what", "all Ada exceptions");
10379
10380 break;
10381
10382 case ex_catch_exception_unhandled:
10383 ui_out_field_string (uiout, "what", "unhandled Ada exceptions");
10384 break;
10385
10386 case ex_catch_assert:
10387 ui_out_field_string (uiout, "what", "failed Ada assertions");
10388 break;
10389
10390 default:
10391 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
10392 break;
10393 }
10394}
10395
10396/* Implement the PRINT_MENTION method in the breakpoint_ops structure
10397 for all exception catchpoint kinds. */
10398
10399static void
10400print_mention_exception (enum exception_catchpoint_kind ex,
10401 struct breakpoint *b)
10402{
10403 switch (ex)
10404 {
10405 case ex_catch_exception:
10406 if (b->exp_string != NULL)
10407 printf_filtered (_("Catchpoint %d: `%s' Ada exception"),
10408 b->number, b->exp_string);
10409 else
10410 printf_filtered (_("Catchpoint %d: all Ada exceptions"), b->number);
10411
10412 break;
10413
10414 case ex_catch_exception_unhandled:
10415 printf_filtered (_("Catchpoint %d: unhandled Ada exceptions"),
10416 b->number);
10417 break;
10418
10419 case ex_catch_assert:
10420 printf_filtered (_("Catchpoint %d: failed Ada assertions"), b->number);
10421 break;
10422
10423 default:
10424 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
10425 break;
10426 }
10427}
10428
10429/* Virtual table for "catch exception" breakpoints. */
10430
10431static enum print_stop_action
10432print_it_catch_exception (struct breakpoint *b)
10433{
10434 return print_it_exception (ex_catch_exception, b);
10435}
10436
10437static void
a6d9a66e 10438print_one_catch_exception (struct breakpoint *b, struct bp_location **last_loc)
f7f9143b 10439{
a6d9a66e 10440 print_one_exception (ex_catch_exception, b, last_loc);
f7f9143b
JB
10441}
10442
10443static void
10444print_mention_catch_exception (struct breakpoint *b)
10445{
10446 print_mention_exception (ex_catch_exception, b);
10447}
10448
10449static struct breakpoint_ops catch_exception_breakpoint_ops =
10450{
ce78b96d
JB
10451 NULL, /* insert */
10452 NULL, /* remove */
10453 NULL, /* breakpoint_hit */
f7f9143b
JB
10454 print_it_catch_exception,
10455 print_one_catch_exception,
10456 print_mention_catch_exception
10457};
10458
10459/* Virtual table for "catch exception unhandled" breakpoints. */
10460
10461static enum print_stop_action
10462print_it_catch_exception_unhandled (struct breakpoint *b)
10463{
10464 return print_it_exception (ex_catch_exception_unhandled, b);
10465}
10466
10467static void
a6d9a66e
UW
10468print_one_catch_exception_unhandled (struct breakpoint *b,
10469 struct bp_location **last_loc)
f7f9143b 10470{
a6d9a66e 10471 print_one_exception (ex_catch_exception_unhandled, b, last_loc);
f7f9143b
JB
10472}
10473
10474static void
10475print_mention_catch_exception_unhandled (struct breakpoint *b)
10476{
10477 print_mention_exception (ex_catch_exception_unhandled, b);
10478}
10479
10480static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops = {
ce78b96d
JB
10481 NULL, /* insert */
10482 NULL, /* remove */
10483 NULL, /* breakpoint_hit */
f7f9143b
JB
10484 print_it_catch_exception_unhandled,
10485 print_one_catch_exception_unhandled,
10486 print_mention_catch_exception_unhandled
10487};
10488
10489/* Virtual table for "catch assert" breakpoints. */
10490
10491static enum print_stop_action
10492print_it_catch_assert (struct breakpoint *b)
10493{
10494 return print_it_exception (ex_catch_assert, b);
10495}
10496
10497static void
a6d9a66e 10498print_one_catch_assert (struct breakpoint *b, struct bp_location **last_loc)
f7f9143b 10499{
a6d9a66e 10500 print_one_exception (ex_catch_assert, b, last_loc);
f7f9143b
JB
10501}
10502
10503static void
10504print_mention_catch_assert (struct breakpoint *b)
10505{
10506 print_mention_exception (ex_catch_assert, b);
10507}
10508
10509static struct breakpoint_ops catch_assert_breakpoint_ops = {
ce78b96d
JB
10510 NULL, /* insert */
10511 NULL, /* remove */
10512 NULL, /* breakpoint_hit */
f7f9143b
JB
10513 print_it_catch_assert,
10514 print_one_catch_assert,
10515 print_mention_catch_assert
10516};
10517
10518/* Return non-zero if B is an Ada exception catchpoint. */
10519
10520int
10521ada_exception_catchpoint_p (struct breakpoint *b)
10522{
10523 return (b->ops == &catch_exception_breakpoint_ops
10524 || b->ops == &catch_exception_unhandled_breakpoint_ops
10525 || b->ops == &catch_assert_breakpoint_ops);
10526}
10527
f7f9143b
JB
10528/* Return a newly allocated copy of the first space-separated token
10529 in ARGSP, and then adjust ARGSP to point immediately after that
10530 token.
10531
10532 Return NULL if ARGPS does not contain any more tokens. */
10533
10534static char *
10535ada_get_next_arg (char **argsp)
10536{
10537 char *args = *argsp;
10538 char *end;
10539 char *result;
10540
10541 /* Skip any leading white space. */
10542
10543 while (isspace (*args))
10544 args++;
10545
10546 if (args[0] == '\0')
10547 return NULL; /* No more arguments. */
10548
10549 /* Find the end of the current argument. */
10550
10551 end = args;
10552 while (*end != '\0' && !isspace (*end))
10553 end++;
10554
10555 /* Adjust ARGSP to point to the start of the next argument. */
10556
10557 *argsp = end;
10558
10559 /* Make a copy of the current argument and return it. */
10560
10561 result = xmalloc (end - args + 1);
10562 strncpy (result, args, end - args);
10563 result[end - args] = '\0';
10564
10565 return result;
10566}
10567
10568/* Split the arguments specified in a "catch exception" command.
10569 Set EX to the appropriate catchpoint type.
10570 Set EXP_STRING to the name of the specific exception if
10571 specified by the user. */
10572
10573static void
10574catch_ada_exception_command_split (char *args,
10575 enum exception_catchpoint_kind *ex,
10576 char **exp_string)
10577{
10578 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
10579 char *exception_name;
10580
10581 exception_name = ada_get_next_arg (&args);
10582 make_cleanup (xfree, exception_name);
10583
10584 /* Check that we do not have any more arguments. Anything else
10585 is unexpected. */
10586
10587 while (isspace (*args))
10588 args++;
10589
10590 if (args[0] != '\0')
10591 error (_("Junk at end of expression"));
10592
10593 discard_cleanups (old_chain);
10594
10595 if (exception_name == NULL)
10596 {
10597 /* Catch all exceptions. */
10598 *ex = ex_catch_exception;
10599 *exp_string = NULL;
10600 }
10601 else if (strcmp (exception_name, "unhandled") == 0)
10602 {
10603 /* Catch unhandled exceptions. */
10604 *ex = ex_catch_exception_unhandled;
10605 *exp_string = NULL;
10606 }
10607 else
10608 {
10609 /* Catch a specific exception. */
10610 *ex = ex_catch_exception;
10611 *exp_string = exception_name;
10612 }
10613}
10614
10615/* Return the name of the symbol on which we should break in order to
10616 implement a catchpoint of the EX kind. */
10617
10618static const char *
10619ada_exception_sym_name (enum exception_catchpoint_kind ex)
10620{
0259addd
JB
10621 gdb_assert (exception_info != NULL);
10622
f7f9143b
JB
10623 switch (ex)
10624 {
10625 case ex_catch_exception:
0259addd 10626 return (exception_info->catch_exception_sym);
f7f9143b
JB
10627 break;
10628 case ex_catch_exception_unhandled:
0259addd 10629 return (exception_info->catch_exception_unhandled_sym);
f7f9143b
JB
10630 break;
10631 case ex_catch_assert:
0259addd 10632 return (exception_info->catch_assert_sym);
f7f9143b
JB
10633 break;
10634 default:
10635 internal_error (__FILE__, __LINE__,
10636 _("unexpected catchpoint kind (%d)"), ex);
10637 }
10638}
10639
10640/* Return the breakpoint ops "virtual table" used for catchpoints
10641 of the EX kind. */
10642
10643static struct breakpoint_ops *
4b9eee8c 10644ada_exception_breakpoint_ops (enum exception_catchpoint_kind ex)
f7f9143b
JB
10645{
10646 switch (ex)
10647 {
10648 case ex_catch_exception:
10649 return (&catch_exception_breakpoint_ops);
10650 break;
10651 case ex_catch_exception_unhandled:
10652 return (&catch_exception_unhandled_breakpoint_ops);
10653 break;
10654 case ex_catch_assert:
10655 return (&catch_assert_breakpoint_ops);
10656 break;
10657 default:
10658 internal_error (__FILE__, __LINE__,
10659 _("unexpected catchpoint kind (%d)"), ex);
10660 }
10661}
10662
10663/* Return the condition that will be used to match the current exception
10664 being raised with the exception that the user wants to catch. This
10665 assumes that this condition is used when the inferior just triggered
10666 an exception catchpoint.
10667
10668 The string returned is a newly allocated string that needs to be
10669 deallocated later. */
10670
10671static char *
10672ada_exception_catchpoint_cond_string (const char *exp_string)
10673{
3d0b0fa3
JB
10674 int i;
10675
10676 /* The standard exceptions are a special case. They are defined in
10677 runtime units that have been compiled without debugging info; if
10678 EXP_STRING is the not-fully-qualified name of a standard
10679 exception (e.g. "constraint_error") then, during the evaluation
10680 of the condition expression, the symbol lookup on this name would
10681 *not* return this standard exception. The catchpoint condition
10682 may then be set only on user-defined exceptions which have the
10683 same not-fully-qualified name (e.g. my_package.constraint_error).
10684
10685 To avoid this unexcepted behavior, these standard exceptions are
10686 systematically prefixed by "standard". This means that "catch
10687 exception constraint_error" is rewritten into "catch exception
10688 standard.constraint_error".
10689
10690 If an exception named contraint_error is defined in another package of
10691 the inferior program, then the only way to specify this exception as a
10692 breakpoint condition is to use its fully-qualified named:
10693 e.g. my_package.constraint_error. */
10694
10695 for (i = 0; i < sizeof (standard_exc) / sizeof (char *); i++)
10696 {
10697 if (strcmp (standard_exc [i], exp_string) == 0)
10698 {
10699 return xstrprintf ("long_integer (e) = long_integer (&standard.%s)",
10700 exp_string);
10701 }
10702 }
f7f9143b
JB
10703 return xstrprintf ("long_integer (e) = long_integer (&%s)", exp_string);
10704}
10705
10706/* Return the expression corresponding to COND_STRING evaluated at SAL. */
10707
10708static struct expression *
10709ada_parse_catchpoint_condition (char *cond_string,
10710 struct symtab_and_line sal)
10711{
10712 return (parse_exp_1 (&cond_string, block_for_pc (sal.pc), 0));
10713}
10714
10715/* Return the symtab_and_line that should be used to insert an exception
10716 catchpoint of the TYPE kind.
10717
10718 EX_STRING should contain the name of a specific exception
10719 that the catchpoint should catch, or NULL otherwise.
10720
10721 The idea behind all the remaining parameters is that their names match
10722 the name of certain fields in the breakpoint structure that are used to
10723 handle exception catchpoints. This function returns the value to which
10724 these fields should be set, depending on the type of catchpoint we need
10725 to create.
10726
10727 If COND and COND_STRING are both non-NULL, any value they might
10728 hold will be free'ed, and then replaced by newly allocated ones.
10729 These parameters are left untouched otherwise. */
10730
10731static struct symtab_and_line
10732ada_exception_sal (enum exception_catchpoint_kind ex, char *exp_string,
10733 char **addr_string, char **cond_string,
10734 struct expression **cond, struct breakpoint_ops **ops)
10735{
10736 const char *sym_name;
10737 struct symbol *sym;
10738 struct symtab_and_line sal;
10739
0259addd
JB
10740 /* First, find out which exception support info to use. */
10741 ada_exception_support_info_sniffer ();
10742
10743 /* Then lookup the function on which we will break in order to catch
f7f9143b
JB
10744 the Ada exceptions requested by the user. */
10745
10746 sym_name = ada_exception_sym_name (ex);
10747 sym = standard_lookup (sym_name, NULL, VAR_DOMAIN);
10748
10749 /* The symbol we're looking up is provided by a unit in the GNAT runtime
10750 that should be compiled with debugging information. As a result, we
10751 expect to find that symbol in the symtabs. If we don't find it, then
10752 the target most likely does not support Ada exceptions, or we cannot
10753 insert exception breakpoints yet, because the GNAT runtime hasn't been
10754 loaded yet. */
10755
10756 /* brobecker/2006-12-26: It is conceivable that the runtime was compiled
10757 in such a way that no debugging information is produced for the symbol
10758 we are looking for. In this case, we could search the minimal symbols
10759 as a fall-back mechanism. This would still be operating in degraded
10760 mode, however, as we would still be missing the debugging information
10761 that is needed in order to extract the name of the exception being
10762 raised (this name is printed in the catchpoint message, and is also
10763 used when trying to catch a specific exception). We do not handle
10764 this case for now. */
10765
10766 if (sym == NULL)
0259addd 10767 error (_("Unable to break on '%s' in this configuration."), sym_name);
f7f9143b
JB
10768
10769 /* Make sure that the symbol we found corresponds to a function. */
10770 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
10771 error (_("Symbol \"%s\" is not a function (class = %d)"),
10772 sym_name, SYMBOL_CLASS (sym));
10773
10774 sal = find_function_start_sal (sym, 1);
10775
10776 /* Set ADDR_STRING. */
10777
10778 *addr_string = xstrdup (sym_name);
10779
10780 /* Set the COND and COND_STRING (if not NULL). */
10781
10782 if (cond_string != NULL && cond != NULL)
10783 {
10784 if (*cond_string != NULL)
10785 {
10786 xfree (*cond_string);
10787 *cond_string = NULL;
10788 }
10789 if (*cond != NULL)
10790 {
10791 xfree (*cond);
10792 *cond = NULL;
10793 }
10794 if (exp_string != NULL)
10795 {
10796 *cond_string = ada_exception_catchpoint_cond_string (exp_string);
10797 *cond = ada_parse_catchpoint_condition (*cond_string, sal);
10798 }
10799 }
10800
10801 /* Set OPS. */
4b9eee8c 10802 *ops = ada_exception_breakpoint_ops (ex);
f7f9143b
JB
10803
10804 return sal;
10805}
10806
10807/* Parse the arguments (ARGS) of the "catch exception" command.
10808
10809 Set TYPE to the appropriate exception catchpoint type.
10810 If the user asked the catchpoint to catch only a specific
10811 exception, then save the exception name in ADDR_STRING.
10812
10813 See ada_exception_sal for a description of all the remaining
10814 function arguments of this function. */
10815
10816struct symtab_and_line
10817ada_decode_exception_location (char *args, char **addr_string,
10818 char **exp_string, char **cond_string,
10819 struct expression **cond,
10820 struct breakpoint_ops **ops)
10821{
10822 enum exception_catchpoint_kind ex;
10823
10824 catch_ada_exception_command_split (args, &ex, exp_string);
10825 return ada_exception_sal (ex, *exp_string, addr_string, cond_string,
10826 cond, ops);
10827}
10828
10829struct symtab_and_line
10830ada_decode_assert_location (char *args, char **addr_string,
10831 struct breakpoint_ops **ops)
10832{
10833 /* Check that no argument where provided at the end of the command. */
10834
10835 if (args != NULL)
10836 {
10837 while (isspace (*args))
10838 args++;
10839 if (*args != '\0')
10840 error (_("Junk at end of arguments."));
10841 }
10842
10843 return ada_exception_sal (ex_catch_assert, NULL, addr_string, NULL, NULL,
10844 ops);
10845}
10846
4c4b4cd2
PH
10847 /* Operators */
10848/* Information about operators given special treatment in functions
10849 below. */
10850/* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */
10851
10852#define ADA_OPERATORS \
10853 OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \
10854 OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \
10855 OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \
10856 OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \
10857 OP_DEFN (OP_ATR_LAST, 1, 2, 0) \
10858 OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \
10859 OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \
10860 OP_DEFN (OP_ATR_MAX, 1, 3, 0) \
10861 OP_DEFN (OP_ATR_MIN, 1, 3, 0) \
10862 OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \
10863 OP_DEFN (OP_ATR_POS, 1, 2, 0) \
10864 OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \
10865 OP_DEFN (OP_ATR_TAG, 1, 1, 0) \
10866 OP_DEFN (OP_ATR_VAL, 1, 2, 0) \
10867 OP_DEFN (UNOP_QUAL, 3, 1, 0) \
52ce6436
PH
10868 OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \
10869 OP_DEFN (OP_OTHERS, 1, 1, 0) \
10870 OP_DEFN (OP_POSITIONAL, 3, 1, 0) \
10871 OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0)
4c4b4cd2
PH
10872
10873static void
10874ada_operator_length (struct expression *exp, int pc, int *oplenp, int *argsp)
10875{
10876 switch (exp->elts[pc - 1].opcode)
10877 {
76a01679 10878 default:
4c4b4cd2
PH
10879 operator_length_standard (exp, pc, oplenp, argsp);
10880 break;
10881
10882#define OP_DEFN(op, len, args, binop) \
10883 case op: *oplenp = len; *argsp = args; break;
10884 ADA_OPERATORS;
10885#undef OP_DEFN
52ce6436
PH
10886
10887 case OP_AGGREGATE:
10888 *oplenp = 3;
10889 *argsp = longest_to_int (exp->elts[pc - 2].longconst);
10890 break;
10891
10892 case OP_CHOICES:
10893 *oplenp = 3;
10894 *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1;
10895 break;
4c4b4cd2
PH
10896 }
10897}
10898
10899static char *
10900ada_op_name (enum exp_opcode opcode)
10901{
10902 switch (opcode)
10903 {
76a01679 10904 default:
4c4b4cd2 10905 return op_name_standard (opcode);
52ce6436 10906
4c4b4cd2
PH
10907#define OP_DEFN(op, len, args, binop) case op: return #op;
10908 ADA_OPERATORS;
10909#undef OP_DEFN
52ce6436
PH
10910
10911 case OP_AGGREGATE:
10912 return "OP_AGGREGATE";
10913 case OP_CHOICES:
10914 return "OP_CHOICES";
10915 case OP_NAME:
10916 return "OP_NAME";
4c4b4cd2
PH
10917 }
10918}
10919
10920/* As for operator_length, but assumes PC is pointing at the first
10921 element of the operator, and gives meaningful results only for the
52ce6436 10922 Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */
4c4b4cd2
PH
10923
10924static void
76a01679
JB
10925ada_forward_operator_length (struct expression *exp, int pc,
10926 int *oplenp, int *argsp)
4c4b4cd2 10927{
76a01679 10928 switch (exp->elts[pc].opcode)
4c4b4cd2
PH
10929 {
10930 default:
10931 *oplenp = *argsp = 0;
10932 break;
52ce6436 10933
4c4b4cd2
PH
10934#define OP_DEFN(op, len, args, binop) \
10935 case op: *oplenp = len; *argsp = args; break;
10936 ADA_OPERATORS;
10937#undef OP_DEFN
52ce6436
PH
10938
10939 case OP_AGGREGATE:
10940 *oplenp = 3;
10941 *argsp = longest_to_int (exp->elts[pc + 1].longconst);
10942 break;
10943
10944 case OP_CHOICES:
10945 *oplenp = 3;
10946 *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1;
10947 break;
10948
10949 case OP_STRING:
10950 case OP_NAME:
10951 {
10952 int len = longest_to_int (exp->elts[pc + 1].longconst);
10953 *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1);
10954 *argsp = 0;
10955 break;
10956 }
4c4b4cd2
PH
10957 }
10958}
10959
10960static int
10961ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
10962{
10963 enum exp_opcode op = exp->elts[elt].opcode;
10964 int oplen, nargs;
10965 int pc = elt;
10966 int i;
76a01679 10967
4c4b4cd2
PH
10968 ada_forward_operator_length (exp, elt, &oplen, &nargs);
10969
76a01679 10970 switch (op)
4c4b4cd2 10971 {
76a01679 10972 /* Ada attributes ('Foo). */
4c4b4cd2
PH
10973 case OP_ATR_FIRST:
10974 case OP_ATR_LAST:
10975 case OP_ATR_LENGTH:
10976 case OP_ATR_IMAGE:
10977 case OP_ATR_MAX:
10978 case OP_ATR_MIN:
10979 case OP_ATR_MODULUS:
10980 case OP_ATR_POS:
10981 case OP_ATR_SIZE:
10982 case OP_ATR_TAG:
10983 case OP_ATR_VAL:
10984 break;
10985
10986 case UNOP_IN_RANGE:
10987 case UNOP_QUAL:
323e0a4a
AC
10988 /* XXX: gdb_sprint_host_address, type_sprint */
10989 fprintf_filtered (stream, _("Type @"));
4c4b4cd2
PH
10990 gdb_print_host_address (exp->elts[pc + 1].type, stream);
10991 fprintf_filtered (stream, " (");
10992 type_print (exp->elts[pc + 1].type, NULL, stream, 0);
10993 fprintf_filtered (stream, ")");
10994 break;
10995 case BINOP_IN_BOUNDS:
52ce6436
PH
10996 fprintf_filtered (stream, " (%d)",
10997 longest_to_int (exp->elts[pc + 2].longconst));
4c4b4cd2
PH
10998 break;
10999 case TERNOP_IN_RANGE:
11000 break;
11001
52ce6436
PH
11002 case OP_AGGREGATE:
11003 case OP_OTHERS:
11004 case OP_DISCRETE_RANGE:
11005 case OP_POSITIONAL:
11006 case OP_CHOICES:
11007 break;
11008
11009 case OP_NAME:
11010 case OP_STRING:
11011 {
11012 char *name = &exp->elts[elt + 2].string;
11013 int len = longest_to_int (exp->elts[elt + 1].longconst);
11014 fprintf_filtered (stream, "Text: `%.*s'", len, name);
11015 break;
11016 }
11017
4c4b4cd2
PH
11018 default:
11019 return dump_subexp_body_standard (exp, stream, elt);
11020 }
11021
11022 elt += oplen;
11023 for (i = 0; i < nargs; i += 1)
11024 elt = dump_subexp (exp, stream, elt);
11025
11026 return elt;
11027}
11028
11029/* The Ada extension of print_subexp (q.v.). */
11030
76a01679
JB
11031static void
11032ada_print_subexp (struct expression *exp, int *pos,
11033 struct ui_file *stream, enum precedence prec)
4c4b4cd2 11034{
52ce6436 11035 int oplen, nargs, i;
4c4b4cd2
PH
11036 int pc = *pos;
11037 enum exp_opcode op = exp->elts[pc].opcode;
11038
11039 ada_forward_operator_length (exp, pc, &oplen, &nargs);
11040
52ce6436 11041 *pos += oplen;
4c4b4cd2
PH
11042 switch (op)
11043 {
11044 default:
52ce6436 11045 *pos -= oplen;
4c4b4cd2
PH
11046 print_subexp_standard (exp, pos, stream, prec);
11047 return;
11048
11049 case OP_VAR_VALUE:
4c4b4cd2
PH
11050 fputs_filtered (SYMBOL_NATURAL_NAME (exp->elts[pc + 2].symbol), stream);
11051 return;
11052
11053 case BINOP_IN_BOUNDS:
323e0a4a 11054 /* XXX: sprint_subexp */
4c4b4cd2 11055 print_subexp (exp, pos, stream, PREC_SUFFIX);
0b48a291 11056 fputs_filtered (" in ", stream);
4c4b4cd2 11057 print_subexp (exp, pos, stream, PREC_SUFFIX);
0b48a291 11058 fputs_filtered ("'range", stream);
4c4b4cd2 11059 if (exp->elts[pc + 1].longconst > 1)
76a01679
JB
11060 fprintf_filtered (stream, "(%ld)",
11061 (long) exp->elts[pc + 1].longconst);
4c4b4cd2
PH
11062 return;
11063
11064 case TERNOP_IN_RANGE:
4c4b4cd2 11065 if (prec >= PREC_EQUAL)
76a01679 11066 fputs_filtered ("(", stream);
323e0a4a 11067 /* XXX: sprint_subexp */
4c4b4cd2 11068 print_subexp (exp, pos, stream, PREC_SUFFIX);
0b48a291 11069 fputs_filtered (" in ", stream);
4c4b4cd2
PH
11070 print_subexp (exp, pos, stream, PREC_EQUAL);
11071 fputs_filtered (" .. ", stream);
11072 print_subexp (exp, pos, stream, PREC_EQUAL);
11073 if (prec >= PREC_EQUAL)
76a01679
JB
11074 fputs_filtered (")", stream);
11075 return;
4c4b4cd2
PH
11076
11077 case OP_ATR_FIRST:
11078 case OP_ATR_LAST:
11079 case OP_ATR_LENGTH:
11080 case OP_ATR_IMAGE:
11081 case OP_ATR_MAX:
11082 case OP_ATR_MIN:
11083 case OP_ATR_MODULUS:
11084 case OP_ATR_POS:
11085 case OP_ATR_SIZE:
11086 case OP_ATR_TAG:
11087 case OP_ATR_VAL:
4c4b4cd2 11088 if (exp->elts[*pos].opcode == OP_TYPE)
76a01679
JB
11089 {
11090 if (TYPE_CODE (exp->elts[*pos + 1].type) != TYPE_CODE_VOID)
11091 LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0);
11092 *pos += 3;
11093 }
4c4b4cd2 11094 else
76a01679 11095 print_subexp (exp, pos, stream, PREC_SUFFIX);
4c4b4cd2
PH
11096 fprintf_filtered (stream, "'%s", ada_attribute_name (op));
11097 if (nargs > 1)
76a01679
JB
11098 {
11099 int tem;
11100 for (tem = 1; tem < nargs; tem += 1)
11101 {
11102 fputs_filtered ((tem == 1) ? " (" : ", ", stream);
11103 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
11104 }
11105 fputs_filtered (")", stream);
11106 }
4c4b4cd2 11107 return;
14f9c5c9 11108
4c4b4cd2 11109 case UNOP_QUAL:
4c4b4cd2
PH
11110 type_print (exp->elts[pc + 1].type, "", stream, 0);
11111 fputs_filtered ("'(", stream);
11112 print_subexp (exp, pos, stream, PREC_PREFIX);
11113 fputs_filtered (")", stream);
11114 return;
14f9c5c9 11115
4c4b4cd2 11116 case UNOP_IN_RANGE:
323e0a4a 11117 /* XXX: sprint_subexp */
4c4b4cd2 11118 print_subexp (exp, pos, stream, PREC_SUFFIX);
0b48a291 11119 fputs_filtered (" in ", stream);
4c4b4cd2
PH
11120 LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0);
11121 return;
52ce6436
PH
11122
11123 case OP_DISCRETE_RANGE:
11124 print_subexp (exp, pos, stream, PREC_SUFFIX);
11125 fputs_filtered ("..", stream);
11126 print_subexp (exp, pos, stream, PREC_SUFFIX);
11127 return;
11128
11129 case OP_OTHERS:
11130 fputs_filtered ("others => ", stream);
11131 print_subexp (exp, pos, stream, PREC_SUFFIX);
11132 return;
11133
11134 case OP_CHOICES:
11135 for (i = 0; i < nargs-1; i += 1)
11136 {
11137 if (i > 0)
11138 fputs_filtered ("|", stream);
11139 print_subexp (exp, pos, stream, PREC_SUFFIX);
11140 }
11141 fputs_filtered (" => ", stream);
11142 print_subexp (exp, pos, stream, PREC_SUFFIX);
11143 return;
11144
11145 case OP_POSITIONAL:
11146 print_subexp (exp, pos, stream, PREC_SUFFIX);
11147 return;
11148
11149 case OP_AGGREGATE:
11150 fputs_filtered ("(", stream);
11151 for (i = 0; i < nargs; i += 1)
11152 {
11153 if (i > 0)
11154 fputs_filtered (", ", stream);
11155 print_subexp (exp, pos, stream, PREC_SUFFIX);
11156 }
11157 fputs_filtered (")", stream);
11158 return;
4c4b4cd2
PH
11159 }
11160}
14f9c5c9
AS
11161
11162/* Table mapping opcodes into strings for printing operators
11163 and precedences of the operators. */
11164
d2e4a39e
AS
11165static const struct op_print ada_op_print_tab[] = {
11166 {":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
11167 {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
11168 {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
11169 {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
11170 {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
11171 {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
11172 {"=", BINOP_EQUAL, PREC_EQUAL, 0},
11173 {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
11174 {"<=", BINOP_LEQ, PREC_ORDER, 0},
11175 {">=", BINOP_GEQ, PREC_ORDER, 0},
11176 {">", BINOP_GTR, PREC_ORDER, 0},
11177 {"<", BINOP_LESS, PREC_ORDER, 0},
11178 {">>", BINOP_RSH, PREC_SHIFT, 0},
11179 {"<<", BINOP_LSH, PREC_SHIFT, 0},
11180 {"+", BINOP_ADD, PREC_ADD, 0},
11181 {"-", BINOP_SUB, PREC_ADD, 0},
11182 {"&", BINOP_CONCAT, PREC_ADD, 0},
11183 {"*", BINOP_MUL, PREC_MUL, 0},
11184 {"/", BINOP_DIV, PREC_MUL, 0},
11185 {"rem", BINOP_REM, PREC_MUL, 0},
11186 {"mod", BINOP_MOD, PREC_MUL, 0},
11187 {"**", BINOP_EXP, PREC_REPEAT, 0},
11188 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
11189 {"-", UNOP_NEG, PREC_PREFIX, 0},
11190 {"+", UNOP_PLUS, PREC_PREFIX, 0},
11191 {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
11192 {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0},
11193 {"abs ", UNOP_ABS, PREC_PREFIX, 0},
4c4b4cd2
PH
11194 {".all", UNOP_IND, PREC_SUFFIX, 1},
11195 {"'access", UNOP_ADDR, PREC_SUFFIX, 1},
11196 {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1},
d2e4a39e 11197 {NULL, 0, 0, 0}
14f9c5c9
AS
11198};
11199\f
72d5681a
PH
11200enum ada_primitive_types {
11201 ada_primitive_type_int,
11202 ada_primitive_type_long,
11203 ada_primitive_type_short,
11204 ada_primitive_type_char,
11205 ada_primitive_type_float,
11206 ada_primitive_type_double,
11207 ada_primitive_type_void,
11208 ada_primitive_type_long_long,
11209 ada_primitive_type_long_double,
11210 ada_primitive_type_natural,
11211 ada_primitive_type_positive,
11212 ada_primitive_type_system_address,
11213 nr_ada_primitive_types
11214};
6c038f32
PH
11215
11216static void
d4a9a881 11217ada_language_arch_info (struct gdbarch *gdbarch,
72d5681a
PH
11218 struct language_arch_info *lai)
11219{
d4a9a881 11220 const struct builtin_type *builtin = builtin_type (gdbarch);
72d5681a 11221 lai->primitive_type_vector
d4a9a881 11222 = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_ada_primitive_types + 1,
72d5681a 11223 struct type *);
e9bb382b
UW
11224
11225 lai->primitive_type_vector [ada_primitive_type_int]
11226 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
11227 0, "integer");
11228 lai->primitive_type_vector [ada_primitive_type_long]
11229 = arch_integer_type (gdbarch, gdbarch_long_bit (gdbarch),
11230 0, "long_integer");
11231 lai->primitive_type_vector [ada_primitive_type_short]
11232 = arch_integer_type (gdbarch, gdbarch_short_bit (gdbarch),
11233 0, "short_integer");
11234 lai->string_char_type
11235 = lai->primitive_type_vector [ada_primitive_type_char]
11236 = arch_integer_type (gdbarch, TARGET_CHAR_BIT, 0, "character");
11237 lai->primitive_type_vector [ada_primitive_type_float]
11238 = arch_float_type (gdbarch, gdbarch_float_bit (gdbarch),
11239 "float", NULL);
11240 lai->primitive_type_vector [ada_primitive_type_double]
11241 = arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
11242 "long_float", NULL);
11243 lai->primitive_type_vector [ada_primitive_type_long_long]
11244 = arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
11245 0, "long_long_integer");
11246 lai->primitive_type_vector [ada_primitive_type_long_double]
11247 = arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
11248 "long_long_float", NULL);
11249 lai->primitive_type_vector [ada_primitive_type_natural]
11250 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
11251 0, "natural");
11252 lai->primitive_type_vector [ada_primitive_type_positive]
11253 = arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
11254 0, "positive");
11255 lai->primitive_type_vector [ada_primitive_type_void]
11256 = builtin->builtin_void;
11257
11258 lai->primitive_type_vector [ada_primitive_type_system_address]
11259 = lookup_pointer_type (arch_type (gdbarch, TYPE_CODE_VOID, 1, "void"));
72d5681a
PH
11260 TYPE_NAME (lai->primitive_type_vector [ada_primitive_type_system_address])
11261 = "system__address";
fbb06eb1 11262
47e729a8 11263 lai->bool_type_symbol = NULL;
fbb06eb1 11264 lai->bool_type_default = builtin->builtin_bool;
6c038f32 11265}
6c038f32
PH
11266\f
11267 /* Language vector */
11268
11269/* Not really used, but needed in the ada_language_defn. */
11270
11271static void
6c7a06a3 11272emit_char (int c, struct type *type, struct ui_file *stream, int quoter)
6c038f32 11273{
6c7a06a3 11274 ada_emit_char (c, type, stream, quoter, 1);
6c038f32
PH
11275}
11276
11277static int
11278parse (void)
11279{
11280 warnings_issued = 0;
11281 return ada_parse ();
11282}
11283
11284static const struct exp_descriptor ada_exp_descriptor = {
11285 ada_print_subexp,
11286 ada_operator_length,
11287 ada_op_name,
11288 ada_dump_subexp_body,
11289 ada_evaluate_subexp
11290};
11291
11292const struct language_defn ada_language_defn = {
11293 "ada", /* Language name */
11294 language_ada,
6c038f32
PH
11295 range_check_off,
11296 type_check_off,
11297 case_sensitive_on, /* Yes, Ada is case-insensitive, but
11298 that's not quite what this means. */
6c038f32 11299 array_row_major,
9a044a89 11300 macro_expansion_no,
6c038f32
PH
11301 &ada_exp_descriptor,
11302 parse,
11303 ada_error,
11304 resolve,
11305 ada_printchar, /* Print a character constant */
11306 ada_printstr, /* Function to print string constant */
11307 emit_char, /* Function to print single char (not used) */
6c038f32 11308 ada_print_type, /* Print a type using appropriate syntax */
5c6ce71d 11309 default_print_typedef, /* Print a typedef using appropriate syntax */
6c038f32
PH
11310 ada_val_print, /* Print a value using appropriate syntax */
11311 ada_value_print, /* Print a top-level value */
11312 NULL, /* Language specific skip_trampoline */
2b2d9e11 11313 NULL, /* name_of_this */
6c038f32
PH
11314 ada_lookup_symbol_nonlocal, /* Looking up non-local symbols. */
11315 basic_lookup_transparent_type, /* lookup_transparent_type */
11316 ada_la_decode, /* Language specific symbol demangler */
11317 NULL, /* Language specific class_name_from_physname */
11318 ada_op_print_tab, /* expression operators for printing */
11319 0, /* c-style arrays */
11320 1, /* String lower bound */
6c038f32 11321 ada_get_gdb_completer_word_break_characters,
41d27058 11322 ada_make_symbol_completion_list,
72d5681a 11323 ada_language_arch_info,
e79af960 11324 ada_print_array_index,
41f1b697 11325 default_pass_by_reference,
ae6a3a4c 11326 c_get_string,
6c038f32
PH
11327 LANG_MAGIC
11328};
11329
2c0b251b
PA
11330/* Provide a prototype to silence -Wmissing-prototypes. */
11331extern initialize_file_ftype _initialize_ada_language;
11332
d2e4a39e 11333void
6c038f32 11334_initialize_ada_language (void)
14f9c5c9 11335{
6c038f32
PH
11336 add_language (&ada_language_defn);
11337
11338 varsize_limit = 65536;
6c038f32
PH
11339
11340 obstack_init (&symbol_list_obstack);
11341
11342 decoded_names_store = htab_create_alloc
11343 (256, htab_hash_string, (int (*)(const void *, const void *)) streq,
11344 NULL, xcalloc, xfree);
6b69afc4
JB
11345
11346 observer_attach_executable_changed (ada_executable_changed_observer);
14f9c5c9 11347}