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