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