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