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