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