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