* cli/cli-script.c (do_fclose_cleanup): Remove.
[deliverable/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
7361 /* Check to see if there is a parallel ___XVZ variable.
7362 If there is, then it provides the actual size of our type. */
7363 else if (ada_type_name (fixed_record_type) != NULL)
7364 {
7365 char *name = ada_type_name (fixed_record_type);
7366 char *xvz_name = alloca (strlen (name) + 7 /* "___XVZ\0" */);
7367 int xvz_found = 0;
7368 LONGEST size;
7369
7370 sprintf (xvz_name, "%s___XVZ", name);
7371 size = get_int_var_value (xvz_name, &xvz_found);
7372 if (xvz_found && TYPE_LENGTH (fixed_record_type) != size)
7373 {
7374 fixed_record_type = copy_type (fixed_record_type);
7375 TYPE_LENGTH (fixed_record_type) = size;
7376
7377 /* The FIXED_RECORD_TYPE may have be a stub. We have
7378 observed this when the debugging info is STABS, and
7379 apparently it is something that is hard to fix.
7380
7381 In practice, we don't need the actual type definition
7382 at all, because the presence of the XVZ variable allows us
7383 to assume that there must be a XVS type as well, which we
7384 should be able to use later, when we need the actual type
7385 definition.
7386
7387 In the meantime, pretend that the "fixed" type we are
7388 returning is NOT a stub, because this can cause trouble
7389 when using this type to create new types targeting it.
7390 Indeed, the associated creation routines often check
7391 whether the target type is a stub and will try to replace
7392 it, thus using a type with the wrong size. This, in turn,
7393 might cause the new type to have the wrong size too.
7394 Consider the case of an array, for instance, where the size
7395 of the array is computed from the number of elements in
7396 our array multiplied by the size of its element. */
7397 TYPE_STUB (fixed_record_type) = 0;
7398 }
7399 }
7400 return fixed_record_type;
7401 }
7402 case TYPE_CODE_ARRAY:
7403 return to_fixed_array_type (type, dval, 1);
7404 case TYPE_CODE_UNION:
7405 if (dval == NULL)
7406 return type;
7407 else
7408 return to_fixed_variant_branch_type (type, valaddr, address, dval);
7409 }
7410 }
7411
7412 /* The same as ada_to_fixed_type_1, except that it preserves the type
7413 if it is a TYPE_CODE_TYPEDEF of a type that is already fixed.
7414 ada_to_fixed_type_1 would return the type referenced by TYPE. */
7415
7416 struct type *
7417 ada_to_fixed_type (struct type *type, const gdb_byte *valaddr,
7418 CORE_ADDR address, struct value *dval, int check_tag)
7419
7420 {
7421 struct type *fixed_type =
7422 ada_to_fixed_type_1 (type, valaddr, address, dval, check_tag);
7423
7424 if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF
7425 && TYPE_TARGET_TYPE (type) == fixed_type)
7426 return type;
7427
7428 return fixed_type;
7429 }
7430
7431 /* A standard (static-sized) type corresponding as well as possible to
7432 TYPE0, but based on no runtime data. */
7433
7434 static struct type *
7435 to_static_fixed_type (struct type *type0)
7436 {
7437 struct type *type;
7438
7439 if (type0 == NULL)
7440 return NULL;
7441
7442 if (TYPE_FIXED_INSTANCE (type0))
7443 return type0;
7444
7445 type0 = ada_check_typedef (type0);
7446
7447 switch (TYPE_CODE (type0))
7448 {
7449 default:
7450 return type0;
7451 case TYPE_CODE_STRUCT:
7452 type = dynamic_template_type (type0);
7453 if (type != NULL)
7454 return template_to_static_fixed_type (type);
7455 else
7456 return template_to_static_fixed_type (type0);
7457 case TYPE_CODE_UNION:
7458 type = ada_find_parallel_type (type0, "___XVU");
7459 if (type != NULL)
7460 return template_to_static_fixed_type (type);
7461 else
7462 return template_to_static_fixed_type (type0);
7463 }
7464 }
7465
7466 /* A static approximation of TYPE with all type wrappers removed. */
7467
7468 static struct type *
7469 static_unwrap_type (struct type *type)
7470 {
7471 if (ada_is_aligner_type (type))
7472 {
7473 struct type *type1 = TYPE_FIELD_TYPE (ada_check_typedef (type), 0);
7474 if (ada_type_name (type1) == NULL)
7475 TYPE_NAME (type1) = ada_type_name (type);
7476
7477 return static_unwrap_type (type1);
7478 }
7479 else
7480 {
7481 struct type *raw_real_type = ada_get_base_type (type);
7482 if (raw_real_type == type)
7483 return type;
7484 else
7485 return to_static_fixed_type (raw_real_type);
7486 }
7487 }
7488
7489 /* In some cases, incomplete and private types require
7490 cross-references that are not resolved as records (for example,
7491 type Foo;
7492 type FooP is access Foo;
7493 V: FooP;
7494 type Foo is array ...;
7495 ). In these cases, since there is no mechanism for producing
7496 cross-references to such types, we instead substitute for FooP a
7497 stub enumeration type that is nowhere resolved, and whose tag is
7498 the name of the actual type. Call these types "non-record stubs". */
7499
7500 /* A type equivalent to TYPE that is not a non-record stub, if one
7501 exists, otherwise TYPE. */
7502
7503 struct type *
7504 ada_check_typedef (struct type *type)
7505 {
7506 if (type == NULL)
7507 return NULL;
7508
7509 CHECK_TYPEDEF (type);
7510 if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM
7511 || !TYPE_STUB (type)
7512 || TYPE_TAG_NAME (type) == NULL)
7513 return type;
7514 else
7515 {
7516 char *name = TYPE_TAG_NAME (type);
7517 struct type *type1 = ada_find_any_type (name);
7518 return (type1 == NULL) ? type : type1;
7519 }
7520 }
7521
7522 /* A value representing the data at VALADDR/ADDRESS as described by
7523 type TYPE0, but with a standard (static-sized) type that correctly
7524 describes it. If VAL0 is not NULL and TYPE0 already is a standard
7525 type, then return VAL0 [this feature is simply to avoid redundant
7526 creation of struct values]. */
7527
7528 static struct value *
7529 ada_to_fixed_value_create (struct type *type0, CORE_ADDR address,
7530 struct value *val0)
7531 {
7532 struct type *type = ada_to_fixed_type (type0, 0, address, NULL, 1);
7533 if (type == type0 && val0 != NULL)
7534 return val0;
7535 else
7536 return value_from_contents_and_address (type, 0, address);
7537 }
7538
7539 /* A value representing VAL, but with a standard (static-sized) type
7540 that correctly describes it. Does not necessarily create a new
7541 value. */
7542
7543 static struct value *
7544 ada_to_fixed_value (struct value *val)
7545 {
7546 return ada_to_fixed_value_create (value_type (val),
7547 VALUE_ADDRESS (val) + value_offset (val),
7548 val);
7549 }
7550
7551 /* A value representing VAL, but with a standard (static-sized) type
7552 chosen to approximate the real type of VAL as well as possible, but
7553 without consulting any runtime values. For Ada dynamic-sized
7554 types, therefore, the type of the result is likely to be inaccurate. */
7555
7556 struct value *
7557 ada_to_static_fixed_value (struct value *val)
7558 {
7559 struct type *type =
7560 to_static_fixed_type (static_unwrap_type (value_type (val)));
7561 if (type == value_type (val))
7562 return val;
7563 else
7564 return coerce_unspec_val_to_type (val, type);
7565 }
7566 \f
7567
7568 /* Attributes */
7569
7570 /* Table mapping attribute numbers to names.
7571 NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */
7572
7573 static const char *attribute_names[] = {
7574 "<?>",
7575
7576 "first",
7577 "last",
7578 "length",
7579 "image",
7580 "max",
7581 "min",
7582 "modulus",
7583 "pos",
7584 "size",
7585 "tag",
7586 "val",
7587 0
7588 };
7589
7590 const char *
7591 ada_attribute_name (enum exp_opcode n)
7592 {
7593 if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL)
7594 return attribute_names[n - OP_ATR_FIRST + 1];
7595 else
7596 return attribute_names[0];
7597 }
7598
7599 /* Evaluate the 'POS attribute applied to ARG. */
7600
7601 static LONGEST
7602 pos_atr (struct value *arg)
7603 {
7604 struct value *val = coerce_ref (arg);
7605 struct type *type = value_type (val);
7606
7607 if (!discrete_type_p (type))
7608 error (_("'POS only defined on discrete types"));
7609
7610 if (TYPE_CODE (type) == TYPE_CODE_ENUM)
7611 {
7612 int i;
7613 LONGEST v = value_as_long (val);
7614
7615 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
7616 {
7617 if (v == TYPE_FIELD_BITPOS (type, i))
7618 return i;
7619 }
7620 error (_("enumeration value is invalid: can't find 'POS"));
7621 }
7622 else
7623 return value_as_long (val);
7624 }
7625
7626 static struct value *
7627 value_pos_atr (struct type *type, struct value *arg)
7628 {
7629 return value_from_longest (type, pos_atr (arg));
7630 }
7631
7632 /* Evaluate the TYPE'VAL attribute applied to ARG. */
7633
7634 static struct value *
7635 value_val_atr (struct type *type, struct value *arg)
7636 {
7637 if (!discrete_type_p (type))
7638 error (_("'VAL only defined on discrete types"));
7639 if (!integer_type_p (value_type (arg)))
7640 error (_("'VAL requires integral argument"));
7641
7642 if (TYPE_CODE (type) == TYPE_CODE_ENUM)
7643 {
7644 long pos = value_as_long (arg);
7645 if (pos < 0 || pos >= TYPE_NFIELDS (type))
7646 error (_("argument to 'VAL out of range"));
7647 return value_from_longest (type, TYPE_FIELD_BITPOS (type, pos));
7648 }
7649 else
7650 return value_from_longest (type, value_as_long (arg));
7651 }
7652 \f
7653
7654 /* Evaluation */
7655
7656 /* True if TYPE appears to be an Ada character type.
7657 [At the moment, this is true only for Character and Wide_Character;
7658 It is a heuristic test that could stand improvement]. */
7659
7660 int
7661 ada_is_character_type (struct type *type)
7662 {
7663 const char *name;
7664
7665 /* If the type code says it's a character, then assume it really is,
7666 and don't check any further. */
7667 if (TYPE_CODE (type) == TYPE_CODE_CHAR)
7668 return 1;
7669
7670 /* Otherwise, assume it's a character type iff it is a discrete type
7671 with a known character type name. */
7672 name = ada_type_name (type);
7673 return (name != NULL
7674 && (TYPE_CODE (type) == TYPE_CODE_INT
7675 || TYPE_CODE (type) == TYPE_CODE_RANGE)
7676 && (strcmp (name, "character") == 0
7677 || strcmp (name, "wide_character") == 0
7678 || strcmp (name, "wide_wide_character") == 0
7679 || strcmp (name, "unsigned char") == 0));
7680 }
7681
7682 /* True if TYPE appears to be an Ada string type. */
7683
7684 int
7685 ada_is_string_type (struct type *type)
7686 {
7687 type = ada_check_typedef (type);
7688 if (type != NULL
7689 && TYPE_CODE (type) != TYPE_CODE_PTR
7690 && (ada_is_simple_array_type (type)
7691 || ada_is_array_descriptor_type (type))
7692 && ada_array_arity (type) == 1)
7693 {
7694 struct type *elttype = ada_array_element_type (type, 1);
7695
7696 return ada_is_character_type (elttype);
7697 }
7698 else
7699 return 0;
7700 }
7701
7702
7703 /* True if TYPE is a struct type introduced by the compiler to force the
7704 alignment of a value. Such types have a single field with a
7705 distinctive name. */
7706
7707 int
7708 ada_is_aligner_type (struct type *type)
7709 {
7710 type = ada_check_typedef (type);
7711
7712 /* If we can find a parallel XVS type, then the XVS type should
7713 be used instead of this type. And hence, this is not an aligner
7714 type. */
7715 if (ada_find_parallel_type (type, "___XVS") != NULL)
7716 return 0;
7717
7718 return (TYPE_CODE (type) == TYPE_CODE_STRUCT
7719 && TYPE_NFIELDS (type) == 1
7720 && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0);
7721 }
7722
7723 /* If there is an ___XVS-convention type parallel to SUBTYPE, return
7724 the parallel type. */
7725
7726 struct type *
7727 ada_get_base_type (struct type *raw_type)
7728 {
7729 struct type *real_type_namer;
7730 struct type *raw_real_type;
7731
7732 if (raw_type == NULL || TYPE_CODE (raw_type) != TYPE_CODE_STRUCT)
7733 return raw_type;
7734
7735 real_type_namer = ada_find_parallel_type (raw_type, "___XVS");
7736 if (real_type_namer == NULL
7737 || TYPE_CODE (real_type_namer) != TYPE_CODE_STRUCT
7738 || TYPE_NFIELDS (real_type_namer) != 1)
7739 return raw_type;
7740
7741 raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0));
7742 if (raw_real_type == NULL)
7743 return raw_type;
7744 else
7745 return raw_real_type;
7746 }
7747
7748 /* The type of value designated by TYPE, with all aligners removed. */
7749
7750 struct type *
7751 ada_aligned_type (struct type *type)
7752 {
7753 if (ada_is_aligner_type (type))
7754 return ada_aligned_type (TYPE_FIELD_TYPE (type, 0));
7755 else
7756 return ada_get_base_type (type);
7757 }
7758
7759
7760 /* The address of the aligned value in an object at address VALADDR
7761 having type TYPE. Assumes ada_is_aligner_type (TYPE). */
7762
7763 const gdb_byte *
7764 ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr)
7765 {
7766 if (ada_is_aligner_type (type))
7767 return ada_aligned_value_addr (TYPE_FIELD_TYPE (type, 0),
7768 valaddr +
7769 TYPE_FIELD_BITPOS (type,
7770 0) / TARGET_CHAR_BIT);
7771 else
7772 return valaddr;
7773 }
7774
7775
7776
7777 /* The printed representation of an enumeration literal with encoded
7778 name NAME. The value is good to the next call of ada_enum_name. */
7779 const char *
7780 ada_enum_name (const char *name)
7781 {
7782 static char *result;
7783 static size_t result_len = 0;
7784 char *tmp;
7785
7786 /* First, unqualify the enumeration name:
7787 1. Search for the last '.' character. If we find one, then skip
7788 all the preceeding characters, the unqualified name starts
7789 right after that dot.
7790 2. Otherwise, we may be debugging on a target where the compiler
7791 translates dots into "__". Search forward for double underscores,
7792 but stop searching when we hit an overloading suffix, which is
7793 of the form "__" followed by digits. */
7794
7795 tmp = strrchr (name, '.');
7796 if (tmp != NULL)
7797 name = tmp + 1;
7798 else
7799 {
7800 while ((tmp = strstr (name, "__")) != NULL)
7801 {
7802 if (isdigit (tmp[2]))
7803 break;
7804 else
7805 name = tmp + 2;
7806 }
7807 }
7808
7809 if (name[0] == 'Q')
7810 {
7811 int v;
7812 if (name[1] == 'U' || name[1] == 'W')
7813 {
7814 if (sscanf (name + 2, "%x", &v) != 1)
7815 return name;
7816 }
7817 else
7818 return name;
7819
7820 GROW_VECT (result, result_len, 16);
7821 if (isascii (v) && isprint (v))
7822 sprintf (result, "'%c'", v);
7823 else if (name[1] == 'U')
7824 sprintf (result, "[\"%02x\"]", v);
7825 else
7826 sprintf (result, "[\"%04x\"]", v);
7827
7828 return result;
7829 }
7830 else
7831 {
7832 tmp = strstr (name, "__");
7833 if (tmp == NULL)
7834 tmp = strstr (name, "$");
7835 if (tmp != NULL)
7836 {
7837 GROW_VECT (result, result_len, tmp - name + 1);
7838 strncpy (result, name, tmp - name);
7839 result[tmp - name] = '\0';
7840 return result;
7841 }
7842
7843 return name;
7844 }
7845 }
7846
7847 static struct value *
7848 evaluate_subexp (struct type *expect_type, struct expression *exp, int *pos,
7849 enum noside noside)
7850 {
7851 return (*exp->language_defn->la_exp_desc->evaluate_exp)
7852 (expect_type, exp, pos, noside);
7853 }
7854
7855 /* Evaluate the subexpression of EXP starting at *POS as for
7856 evaluate_type, updating *POS to point just past the evaluated
7857 expression. */
7858
7859 static struct value *
7860 evaluate_subexp_type (struct expression *exp, int *pos)
7861 {
7862 return (*exp->language_defn->la_exp_desc->evaluate_exp)
7863 (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
7864 }
7865
7866 /* If VAL is wrapped in an aligner or subtype wrapper, return the
7867 value it wraps. */
7868
7869 static struct value *
7870 unwrap_value (struct value *val)
7871 {
7872 struct type *type = ada_check_typedef (value_type (val));
7873 if (ada_is_aligner_type (type))
7874 {
7875 struct value *v = ada_value_struct_elt (val, "F", 0);
7876 struct type *val_type = ada_check_typedef (value_type (v));
7877 if (ada_type_name (val_type) == NULL)
7878 TYPE_NAME (val_type) = ada_type_name (type);
7879
7880 return unwrap_value (v);
7881 }
7882 else
7883 {
7884 struct type *raw_real_type =
7885 ada_check_typedef (ada_get_base_type (type));
7886
7887 if (type == raw_real_type)
7888 return val;
7889
7890 return
7891 coerce_unspec_val_to_type
7892 (val, ada_to_fixed_type (raw_real_type, 0,
7893 VALUE_ADDRESS (val) + value_offset (val),
7894 NULL, 1));
7895 }
7896 }
7897
7898 static struct value *
7899 cast_to_fixed (struct type *type, struct value *arg)
7900 {
7901 LONGEST val;
7902
7903 if (type == value_type (arg))
7904 return arg;
7905 else if (ada_is_fixed_point_type (value_type (arg)))
7906 val = ada_float_to_fixed (type,
7907 ada_fixed_to_float (value_type (arg),
7908 value_as_long (arg)));
7909 else
7910 {
7911 DOUBLEST argd = value_as_double (arg);
7912 val = ada_float_to_fixed (type, argd);
7913 }
7914
7915 return value_from_longest (type, val);
7916 }
7917
7918 static struct value *
7919 cast_from_fixed (struct type *type, struct value *arg)
7920 {
7921 DOUBLEST val = ada_fixed_to_float (value_type (arg),
7922 value_as_long (arg));
7923 return value_from_double (type, val);
7924 }
7925
7926 /* Coerce VAL as necessary for assignment to an lval of type TYPE, and
7927 return the converted value. */
7928
7929 static struct value *
7930 coerce_for_assign (struct type *type, struct value *val)
7931 {
7932 struct type *type2 = value_type (val);
7933 if (type == type2)
7934 return val;
7935
7936 type2 = ada_check_typedef (type2);
7937 type = ada_check_typedef (type);
7938
7939 if (TYPE_CODE (type2) == TYPE_CODE_PTR
7940 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
7941 {
7942 val = ada_value_ind (val);
7943 type2 = value_type (val);
7944 }
7945
7946 if (TYPE_CODE (type2) == TYPE_CODE_ARRAY
7947 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
7948 {
7949 if (TYPE_LENGTH (type2) != TYPE_LENGTH (type)
7950 || TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
7951 != TYPE_LENGTH (TYPE_TARGET_TYPE (type2)))
7952 error (_("Incompatible types in assignment"));
7953 deprecated_set_value_type (val, type);
7954 }
7955 return val;
7956 }
7957
7958 static struct value *
7959 ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
7960 {
7961 struct value *val;
7962 struct type *type1, *type2;
7963 LONGEST v, v1, v2;
7964
7965 arg1 = coerce_ref (arg1);
7966 arg2 = coerce_ref (arg2);
7967 type1 = base_type (ada_check_typedef (value_type (arg1)));
7968 type2 = base_type (ada_check_typedef (value_type (arg2)));
7969
7970 if (TYPE_CODE (type1) != TYPE_CODE_INT
7971 || TYPE_CODE (type2) != TYPE_CODE_INT)
7972 return value_binop (arg1, arg2, op);
7973
7974 switch (op)
7975 {
7976 case BINOP_MOD:
7977 case BINOP_DIV:
7978 case BINOP_REM:
7979 break;
7980 default:
7981 return value_binop (arg1, arg2, op);
7982 }
7983
7984 v2 = value_as_long (arg2);
7985 if (v2 == 0)
7986 error (_("second operand of %s must not be zero."), op_string (op));
7987
7988 if (TYPE_UNSIGNED (type1) || op == BINOP_MOD)
7989 return value_binop (arg1, arg2, op);
7990
7991 v1 = value_as_long (arg1);
7992 switch (op)
7993 {
7994 case BINOP_DIV:
7995 v = v1 / v2;
7996 if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0)
7997 v += v > 0 ? -1 : 1;
7998 break;
7999 case BINOP_REM:
8000 v = v1 % v2;
8001 if (v * v1 < 0)
8002 v -= v2;
8003 break;
8004 default:
8005 /* Should not reach this point. */
8006 v = 0;
8007 }
8008
8009 val = allocate_value (type1);
8010 store_unsigned_integer (value_contents_raw (val),
8011 TYPE_LENGTH (value_type (val)), v);
8012 return val;
8013 }
8014
8015 static int
8016 ada_value_equal (struct value *arg1, struct value *arg2)
8017 {
8018 if (ada_is_direct_array_type (value_type (arg1))
8019 || ada_is_direct_array_type (value_type (arg2)))
8020 {
8021 /* Automatically dereference any array reference before
8022 we attempt to perform the comparison. */
8023 arg1 = ada_coerce_ref (arg1);
8024 arg2 = ada_coerce_ref (arg2);
8025
8026 arg1 = ada_coerce_to_simple_array (arg1);
8027 arg2 = ada_coerce_to_simple_array (arg2);
8028 if (TYPE_CODE (value_type (arg1)) != TYPE_CODE_ARRAY
8029 || TYPE_CODE (value_type (arg2)) != TYPE_CODE_ARRAY)
8030 error (_("Attempt to compare array with non-array"));
8031 /* FIXME: The following works only for types whose
8032 representations use all bits (no padding or undefined bits)
8033 and do not have user-defined equality. */
8034 return
8035 TYPE_LENGTH (value_type (arg1)) == TYPE_LENGTH (value_type (arg2))
8036 && memcmp (value_contents (arg1), value_contents (arg2),
8037 TYPE_LENGTH (value_type (arg1))) == 0;
8038 }
8039 return value_equal (arg1, arg2);
8040 }
8041
8042 /* Total number of component associations in the aggregate starting at
8043 index PC in EXP. Assumes that index PC is the start of an
8044 OP_AGGREGATE. */
8045
8046 static int
8047 num_component_specs (struct expression *exp, int pc)
8048 {
8049 int n, m, i;
8050 m = exp->elts[pc + 1].longconst;
8051 pc += 3;
8052 n = 0;
8053 for (i = 0; i < m; i += 1)
8054 {
8055 switch (exp->elts[pc].opcode)
8056 {
8057 default:
8058 n += 1;
8059 break;
8060 case OP_CHOICES:
8061 n += exp->elts[pc + 1].longconst;
8062 break;
8063 }
8064 ada_evaluate_subexp (NULL, exp, &pc, EVAL_SKIP);
8065 }
8066 return n;
8067 }
8068
8069 /* Assign the result of evaluating EXP starting at *POS to the INDEXth
8070 component of LHS (a simple array or a record), updating *POS past
8071 the expression, assuming that LHS is contained in CONTAINER. Does
8072 not modify the inferior's memory, nor does it modify LHS (unless
8073 LHS == CONTAINER). */
8074
8075 static void
8076 assign_component (struct value *container, struct value *lhs, LONGEST index,
8077 struct expression *exp, int *pos)
8078 {
8079 struct value *mark = value_mark ();
8080 struct value *elt;
8081 if (TYPE_CODE (value_type (lhs)) == TYPE_CODE_ARRAY)
8082 {
8083 struct value *index_val = value_from_longest (builtin_type_int32, index);
8084 elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val));
8085 }
8086 else
8087 {
8088 elt = ada_index_struct_field (index, lhs, 0, value_type (lhs));
8089 elt = ada_to_fixed_value (unwrap_value (elt));
8090 }
8091
8092 if (exp->elts[*pos].opcode == OP_AGGREGATE)
8093 assign_aggregate (container, elt, exp, pos, EVAL_NORMAL);
8094 else
8095 value_assign_to_component (container, elt,
8096 ada_evaluate_subexp (NULL, exp, pos,
8097 EVAL_NORMAL));
8098
8099 value_free_to_mark (mark);
8100 }
8101
8102 /* Assuming that LHS represents an lvalue having a record or array
8103 type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment
8104 of that aggregate's value to LHS, advancing *POS past the
8105 aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an
8106 lvalue containing LHS (possibly LHS itself). Does not modify
8107 the inferior's memory, nor does it modify the contents of
8108 LHS (unless == CONTAINER). Returns the modified CONTAINER. */
8109
8110 static struct value *
8111 assign_aggregate (struct value *container,
8112 struct value *lhs, struct expression *exp,
8113 int *pos, enum noside noside)
8114 {
8115 struct type *lhs_type;
8116 int n = exp->elts[*pos+1].longconst;
8117 LONGEST low_index, high_index;
8118 int num_specs;
8119 LONGEST *indices;
8120 int max_indices, num_indices;
8121 int is_array_aggregate;
8122 int i;
8123 struct value *mark = value_mark ();
8124
8125 *pos += 3;
8126 if (noside != EVAL_NORMAL)
8127 {
8128 int i;
8129 for (i = 0; i < n; i += 1)
8130 ada_evaluate_subexp (NULL, exp, pos, noside);
8131 return container;
8132 }
8133
8134 container = ada_coerce_ref (container);
8135 if (ada_is_direct_array_type (value_type (container)))
8136 container = ada_coerce_to_simple_array (container);
8137 lhs = ada_coerce_ref (lhs);
8138 if (!deprecated_value_modifiable (lhs))
8139 error (_("Left operand of assignment is not a modifiable lvalue."));
8140
8141 lhs_type = value_type (lhs);
8142 if (ada_is_direct_array_type (lhs_type))
8143 {
8144 lhs = ada_coerce_to_simple_array (lhs);
8145 lhs_type = value_type (lhs);
8146 low_index = TYPE_ARRAY_LOWER_BOUND_VALUE (lhs_type);
8147 high_index = TYPE_ARRAY_UPPER_BOUND_VALUE (lhs_type);
8148 is_array_aggregate = 1;
8149 }
8150 else if (TYPE_CODE (lhs_type) == TYPE_CODE_STRUCT)
8151 {
8152 low_index = 0;
8153 high_index = num_visible_fields (lhs_type) - 1;
8154 is_array_aggregate = 0;
8155 }
8156 else
8157 error (_("Left-hand side must be array or record."));
8158
8159 num_specs = num_component_specs (exp, *pos - 3);
8160 max_indices = 4 * num_specs + 4;
8161 indices = alloca (max_indices * sizeof (indices[0]));
8162 indices[0] = indices[1] = low_index - 1;
8163 indices[2] = indices[3] = high_index + 1;
8164 num_indices = 4;
8165
8166 for (i = 0; i < n; i += 1)
8167 {
8168 switch (exp->elts[*pos].opcode)
8169 {
8170 case OP_CHOICES:
8171 aggregate_assign_from_choices (container, lhs, exp, pos, indices,
8172 &num_indices, max_indices,
8173 low_index, high_index);
8174 break;
8175 case OP_POSITIONAL:
8176 aggregate_assign_positional (container, lhs, exp, pos, indices,
8177 &num_indices, max_indices,
8178 low_index, high_index);
8179 break;
8180 case OP_OTHERS:
8181 if (i != n-1)
8182 error (_("Misplaced 'others' clause"));
8183 aggregate_assign_others (container, lhs, exp, pos, indices,
8184 num_indices, low_index, high_index);
8185 break;
8186 default:
8187 error (_("Internal error: bad aggregate clause"));
8188 }
8189 }
8190
8191 return container;
8192 }
8193
8194 /* Assign into the component of LHS indexed by the OP_POSITIONAL
8195 construct at *POS, updating *POS past the construct, given that
8196 the positions are relative to lower bound LOW, where HIGH is the
8197 upper bound. Record the position in INDICES[0 .. MAX_INDICES-1]
8198 updating *NUM_INDICES as needed. CONTAINER is as for
8199 assign_aggregate. */
8200 static void
8201 aggregate_assign_positional (struct value *container,
8202 struct value *lhs, struct expression *exp,
8203 int *pos, LONGEST *indices, int *num_indices,
8204 int max_indices, LONGEST low, LONGEST high)
8205 {
8206 LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low;
8207
8208 if (ind - 1 == high)
8209 warning (_("Extra components in aggregate ignored."));
8210 if (ind <= high)
8211 {
8212 add_component_interval (ind, ind, indices, num_indices, max_indices);
8213 *pos += 3;
8214 assign_component (container, lhs, ind, exp, pos);
8215 }
8216 else
8217 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
8218 }
8219
8220 /* Assign into the components of LHS indexed by the OP_CHOICES
8221 construct at *POS, updating *POS past the construct, given that
8222 the allowable indices are LOW..HIGH. Record the indices assigned
8223 to in INDICES[0 .. MAX_INDICES-1], updating *NUM_INDICES as
8224 needed. CONTAINER is as for assign_aggregate. */
8225 static void
8226 aggregate_assign_from_choices (struct value *container,
8227 struct value *lhs, struct expression *exp,
8228 int *pos, LONGEST *indices, int *num_indices,
8229 int max_indices, LONGEST low, LONGEST high)
8230 {
8231 int j;
8232 int n_choices = longest_to_int (exp->elts[*pos+1].longconst);
8233 int choice_pos, expr_pc;
8234 int is_array = ada_is_direct_array_type (value_type (lhs));
8235
8236 choice_pos = *pos += 3;
8237
8238 for (j = 0; j < n_choices; j += 1)
8239 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
8240 expr_pc = *pos;
8241 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
8242
8243 for (j = 0; j < n_choices; j += 1)
8244 {
8245 LONGEST lower, upper;
8246 enum exp_opcode op = exp->elts[choice_pos].opcode;
8247 if (op == OP_DISCRETE_RANGE)
8248 {
8249 choice_pos += 1;
8250 lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
8251 EVAL_NORMAL));
8252 upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos,
8253 EVAL_NORMAL));
8254 }
8255 else if (is_array)
8256 {
8257 lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos,
8258 EVAL_NORMAL));
8259 upper = lower;
8260 }
8261 else
8262 {
8263 int ind;
8264 char *name;
8265 switch (op)
8266 {
8267 case OP_NAME:
8268 name = &exp->elts[choice_pos + 2].string;
8269 break;
8270 case OP_VAR_VALUE:
8271 name = SYMBOL_NATURAL_NAME (exp->elts[choice_pos + 2].symbol);
8272 break;
8273 default:
8274 error (_("Invalid record component association."));
8275 }
8276 ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP);
8277 ind = 0;
8278 if (! find_struct_field (name, value_type (lhs), 0,
8279 NULL, NULL, NULL, NULL, &ind))
8280 error (_("Unknown component name: %s."), name);
8281 lower = upper = ind;
8282 }
8283
8284 if (lower <= upper && (lower < low || upper > high))
8285 error (_("Index in component association out of bounds."));
8286
8287 add_component_interval (lower, upper, indices, num_indices,
8288 max_indices);
8289 while (lower <= upper)
8290 {
8291 int pos1;
8292 pos1 = expr_pc;
8293 assign_component (container, lhs, lower, exp, &pos1);
8294 lower += 1;
8295 }
8296 }
8297 }
8298
8299 /* Assign the value of the expression in the OP_OTHERS construct in
8300 EXP at *POS into the components of LHS indexed from LOW .. HIGH that
8301 have not been previously assigned. The index intervals already assigned
8302 are in INDICES[0 .. NUM_INDICES-1]. Updates *POS to after the
8303 OP_OTHERS clause. CONTAINER is as for assign_aggregate*/
8304 static void
8305 aggregate_assign_others (struct value *container,
8306 struct value *lhs, struct expression *exp,
8307 int *pos, LONGEST *indices, int num_indices,
8308 LONGEST low, LONGEST high)
8309 {
8310 int i;
8311 int expr_pc = *pos+1;
8312
8313 for (i = 0; i < num_indices - 2; i += 2)
8314 {
8315 LONGEST ind;
8316 for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1)
8317 {
8318 int pos;
8319 pos = expr_pc;
8320 assign_component (container, lhs, ind, exp, &pos);
8321 }
8322 }
8323 ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP);
8324 }
8325
8326 /* Add the interval [LOW .. HIGH] to the sorted set of intervals
8327 [ INDICES[0] .. INDICES[1] ],..., [ INDICES[*SIZE-2] .. INDICES[*SIZE-1] ],
8328 modifying *SIZE as needed. It is an error if *SIZE exceeds
8329 MAX_SIZE. The resulting intervals do not overlap. */
8330 static void
8331 add_component_interval (LONGEST low, LONGEST high,
8332 LONGEST* indices, int *size, int max_size)
8333 {
8334 int i, j;
8335 for (i = 0; i < *size; i += 2) {
8336 if (high >= indices[i] && low <= indices[i + 1])
8337 {
8338 int kh;
8339 for (kh = i + 2; kh < *size; kh += 2)
8340 if (high < indices[kh])
8341 break;
8342 if (low < indices[i])
8343 indices[i] = low;
8344 indices[i + 1] = indices[kh - 1];
8345 if (high > indices[i + 1])
8346 indices[i + 1] = high;
8347 memcpy (indices + i + 2, indices + kh, *size - kh);
8348 *size -= kh - i - 2;
8349 return;
8350 }
8351 else if (high < indices[i])
8352 break;
8353 }
8354
8355 if (*size == max_size)
8356 error (_("Internal error: miscounted aggregate components."));
8357 *size += 2;
8358 for (j = *size-1; j >= i+2; j -= 1)
8359 indices[j] = indices[j - 2];
8360 indices[i] = low;
8361 indices[i + 1] = high;
8362 }
8363
8364 /* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2
8365 is different. */
8366
8367 static struct value *
8368 ada_value_cast (struct type *type, struct value *arg2, enum noside noside)
8369 {
8370 if (type == ada_check_typedef (value_type (arg2)))
8371 return arg2;
8372
8373 if (ada_is_fixed_point_type (type))
8374 return (cast_to_fixed (type, arg2));
8375
8376 if (ada_is_fixed_point_type (value_type (arg2)))
8377 return cast_from_fixed (type, arg2);
8378
8379 return value_cast (type, arg2);
8380 }
8381
8382 static struct value *
8383 ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
8384 int *pos, enum noside noside)
8385 {
8386 enum exp_opcode op;
8387 int tem, tem2, tem3;
8388 int pc;
8389 struct value *arg1 = NULL, *arg2 = NULL, *arg3;
8390 struct type *type;
8391 int nargs, oplen;
8392 struct value **argvec;
8393
8394 pc = *pos;
8395 *pos += 1;
8396 op = exp->elts[pc].opcode;
8397
8398 switch (op)
8399 {
8400 default:
8401 *pos -= 1;
8402 arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
8403 arg1 = unwrap_value (arg1);
8404
8405 /* If evaluating an OP_DOUBLE and an EXPECT_TYPE was provided,
8406 then we need to perform the conversion manually, because
8407 evaluate_subexp_standard doesn't do it. This conversion is
8408 necessary in Ada because the different kinds of float/fixed
8409 types in Ada have different representations.
8410
8411 Similarly, we need to perform the conversion from OP_LONG
8412 ourselves. */
8413 if ((op == OP_DOUBLE || op == OP_LONG) && expect_type != NULL)
8414 arg1 = ada_value_cast (expect_type, arg1, noside);
8415
8416 return arg1;
8417
8418 case OP_STRING:
8419 {
8420 struct value *result;
8421 *pos -= 1;
8422 result = evaluate_subexp_standard (expect_type, exp, pos, noside);
8423 /* The result type will have code OP_STRING, bashed there from
8424 OP_ARRAY. Bash it back. */
8425 if (TYPE_CODE (value_type (result)) == TYPE_CODE_STRING)
8426 TYPE_CODE (value_type (result)) = TYPE_CODE_ARRAY;
8427 return result;
8428 }
8429
8430 case UNOP_CAST:
8431 (*pos) += 2;
8432 type = exp->elts[pc + 1].type;
8433 arg1 = evaluate_subexp (type, exp, pos, noside);
8434 if (noside == EVAL_SKIP)
8435 goto nosideret;
8436 arg1 = ada_value_cast (type, arg1, noside);
8437 return arg1;
8438
8439 case UNOP_QUAL:
8440 (*pos) += 2;
8441 type = exp->elts[pc + 1].type;
8442 return ada_evaluate_subexp (type, exp, pos, noside);
8443
8444 case BINOP_ASSIGN:
8445 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8446 if (exp->elts[*pos].opcode == OP_AGGREGATE)
8447 {
8448 arg1 = assign_aggregate (arg1, arg1, exp, pos, noside);
8449 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
8450 return arg1;
8451 return ada_value_assign (arg1, arg1);
8452 }
8453 /* Force the evaluation of the rhs ARG2 to the type of the lhs ARG1,
8454 except if the lhs of our assignment is a convenience variable.
8455 In the case of assigning to a convenience variable, the lhs
8456 should be exactly the result of the evaluation of the rhs. */
8457 type = value_type (arg1);
8458 if (VALUE_LVAL (arg1) == lval_internalvar)
8459 type = NULL;
8460 arg2 = evaluate_subexp (type, exp, pos, noside);
8461 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
8462 return arg1;
8463 if (ada_is_fixed_point_type (value_type (arg1)))
8464 arg2 = cast_to_fixed (value_type (arg1), arg2);
8465 else if (ada_is_fixed_point_type (value_type (arg2)))
8466 error
8467 (_("Fixed-point values must be assigned to fixed-point variables"));
8468 else
8469 arg2 = coerce_for_assign (value_type (arg1), arg2);
8470 return ada_value_assign (arg1, arg2);
8471
8472 case BINOP_ADD:
8473 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
8474 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
8475 if (noside == EVAL_SKIP)
8476 goto nosideret;
8477 if (TYPE_CODE (value_type (arg1)) == TYPE_CODE_PTR)
8478 return (value_from_longest
8479 (value_type (arg1),
8480 value_as_long (arg1) + value_as_long (arg2)));
8481 if ((ada_is_fixed_point_type (value_type (arg1))
8482 || ada_is_fixed_point_type (value_type (arg2)))
8483 && value_type (arg1) != value_type (arg2))
8484 error (_("Operands of fixed-point addition must have the same type"));
8485 /* Do the addition, and cast the result to the type of the first
8486 argument. We cannot cast the result to a reference type, so if
8487 ARG1 is a reference type, find its underlying type. */
8488 type = value_type (arg1);
8489 while (TYPE_CODE (type) == TYPE_CODE_REF)
8490 type = TYPE_TARGET_TYPE (type);
8491 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8492 return value_cast (type, value_binop (arg1, arg2, BINOP_ADD));
8493
8494 case BINOP_SUB:
8495 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
8496 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
8497 if (noside == EVAL_SKIP)
8498 goto nosideret;
8499 if (TYPE_CODE (value_type (arg1)) == TYPE_CODE_PTR)
8500 return (value_from_longest
8501 (value_type (arg1),
8502 value_as_long (arg1) - value_as_long (arg2)));
8503 if ((ada_is_fixed_point_type (value_type (arg1))
8504 || ada_is_fixed_point_type (value_type (arg2)))
8505 && value_type (arg1) != value_type (arg2))
8506 error (_("Operands of fixed-point subtraction must have the same type"));
8507 /* Do the substraction, and cast the result to the type of the first
8508 argument. We cannot cast the result to a reference type, so if
8509 ARG1 is a reference type, find its underlying type. */
8510 type = value_type (arg1);
8511 while (TYPE_CODE (type) == TYPE_CODE_REF)
8512 type = TYPE_TARGET_TYPE (type);
8513 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8514 return value_cast (type, value_binop (arg1, arg2, BINOP_SUB));
8515
8516 case BINOP_MUL:
8517 case BINOP_DIV:
8518 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8519 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8520 if (noside == EVAL_SKIP)
8521 goto nosideret;
8522 else if (noside == EVAL_AVOID_SIDE_EFFECTS
8523 && (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD))
8524 return value_zero (value_type (arg1), not_lval);
8525 else
8526 {
8527 type = builtin_type (exp->gdbarch)->builtin_double;
8528 if (ada_is_fixed_point_type (value_type (arg1)))
8529 arg1 = cast_from_fixed (type, arg1);
8530 if (ada_is_fixed_point_type (value_type (arg2)))
8531 arg2 = cast_from_fixed (type, arg2);
8532 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8533 return ada_value_binop (arg1, arg2, op);
8534 }
8535
8536 case BINOP_REM:
8537 case BINOP_MOD:
8538 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8539 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8540 if (noside == EVAL_SKIP)
8541 goto nosideret;
8542 else if (noside == EVAL_AVOID_SIDE_EFFECTS
8543 && (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD))
8544 return value_zero (value_type (arg1), not_lval);
8545 else
8546 {
8547 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8548 return ada_value_binop (arg1, arg2, op);
8549 }
8550
8551 case BINOP_EQUAL:
8552 case BINOP_NOTEQUAL:
8553 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8554 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
8555 if (noside == EVAL_SKIP)
8556 goto nosideret;
8557 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8558 tem = 0;
8559 else
8560 {
8561 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8562 tem = ada_value_equal (arg1, arg2);
8563 }
8564 if (op == BINOP_NOTEQUAL)
8565 tem = !tem;
8566 type = language_bool_type (exp->language_defn, exp->gdbarch);
8567 return value_from_longest (type, (LONGEST) tem);
8568
8569 case UNOP_NEG:
8570 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8571 if (noside == EVAL_SKIP)
8572 goto nosideret;
8573 else if (ada_is_fixed_point_type (value_type (arg1)))
8574 return value_cast (value_type (arg1), value_neg (arg1));
8575 else
8576 {
8577 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
8578 return value_neg (arg1);
8579 }
8580
8581 case BINOP_LOGICAL_AND:
8582 case BINOP_LOGICAL_OR:
8583 case UNOP_LOGICAL_NOT:
8584 {
8585 struct value *val;
8586
8587 *pos -= 1;
8588 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
8589 type = language_bool_type (exp->language_defn, exp->gdbarch);
8590 return value_cast (type, val);
8591 }
8592
8593 case BINOP_BITWISE_AND:
8594 case BINOP_BITWISE_IOR:
8595 case BINOP_BITWISE_XOR:
8596 {
8597 struct value *val;
8598
8599 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
8600 *pos = pc;
8601 val = evaluate_subexp_standard (expect_type, exp, pos, noside);
8602
8603 return value_cast (value_type (arg1), val);
8604 }
8605
8606 case OP_VAR_VALUE:
8607 *pos -= 1;
8608
8609 if (noside == EVAL_SKIP)
8610 {
8611 *pos += 4;
8612 goto nosideret;
8613 }
8614 else if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
8615 /* Only encountered when an unresolved symbol occurs in a
8616 context other than a function call, in which case, it is
8617 invalid. */
8618 error (_("Unexpected unresolved symbol, %s, during evaluation"),
8619 SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
8620 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
8621 {
8622 type = static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
8623 if (ada_is_tagged_type (type, 0))
8624 {
8625 /* Tagged types are a little special in the fact that the real
8626 type is dynamic and can only be determined by inspecting the
8627 object's tag. This means that we need to get the object's
8628 value first (EVAL_NORMAL) and then extract the actual object
8629 type from its tag.
8630
8631 Note that we cannot skip the final step where we extract
8632 the object type from its tag, because the EVAL_NORMAL phase
8633 results in dynamic components being resolved into fixed ones.
8634 This can cause problems when trying to print the type
8635 description of tagged types whose parent has a dynamic size:
8636 We use the type name of the "_parent" component in order
8637 to print the name of the ancestor type in the type description.
8638 If that component had a dynamic size, the resolution into
8639 a fixed type would result in the loss of that type name,
8640 thus preventing us from printing the name of the ancestor
8641 type in the type description. */
8642 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_NORMAL);
8643 return value_zero (type_from_tag (ada_value_tag (arg1)), not_lval);
8644 }
8645
8646 *pos += 4;
8647 return value_zero
8648 (to_static_fixed_type
8649 (static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol))),
8650 not_lval);
8651 }
8652 else
8653 {
8654 arg1 =
8655 unwrap_value (evaluate_subexp_standard
8656 (expect_type, exp, pos, noside));
8657 return ada_to_fixed_value (arg1);
8658 }
8659
8660 case OP_FUNCALL:
8661 (*pos) += 2;
8662
8663 /* Allocate arg vector, including space for the function to be
8664 called in argvec[0] and a terminating NULL. */
8665 nargs = longest_to_int (exp->elts[pc + 1].longconst);
8666 argvec =
8667 (struct value **) alloca (sizeof (struct value *) * (nargs + 2));
8668
8669 if (exp->elts[*pos].opcode == OP_VAR_VALUE
8670 && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
8671 error (_("Unexpected unresolved symbol, %s, during evaluation"),
8672 SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol));
8673 else
8674 {
8675 for (tem = 0; tem <= nargs; tem += 1)
8676 argvec[tem] = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8677 argvec[tem] = 0;
8678
8679 if (noside == EVAL_SKIP)
8680 goto nosideret;
8681 }
8682
8683 if (ada_is_packed_array_type (desc_base_type (value_type (argvec[0]))))
8684 argvec[0] = ada_coerce_to_simple_array (argvec[0]);
8685 else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_REF
8686 || (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_ARRAY
8687 && VALUE_LVAL (argvec[0]) == lval_memory))
8688 argvec[0] = value_addr (argvec[0]);
8689
8690 type = ada_check_typedef (value_type (argvec[0]));
8691 if (TYPE_CODE (type) == TYPE_CODE_PTR)
8692 {
8693 switch (TYPE_CODE (ada_check_typedef (TYPE_TARGET_TYPE (type))))
8694 {
8695 case TYPE_CODE_FUNC:
8696 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
8697 break;
8698 case TYPE_CODE_ARRAY:
8699 break;
8700 case TYPE_CODE_STRUCT:
8701 if (noside != EVAL_AVOID_SIDE_EFFECTS)
8702 argvec[0] = ada_value_ind (argvec[0]);
8703 type = ada_check_typedef (TYPE_TARGET_TYPE (type));
8704 break;
8705 default:
8706 error (_("cannot subscript or call something of type `%s'"),
8707 ada_type_name (value_type (argvec[0])));
8708 break;
8709 }
8710 }
8711
8712 switch (TYPE_CODE (type))
8713 {
8714 case TYPE_CODE_FUNC:
8715 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8716 return allocate_value (TYPE_TARGET_TYPE (type));
8717 return call_function_by_hand (argvec[0], nargs, argvec + 1);
8718 case TYPE_CODE_STRUCT:
8719 {
8720 int arity;
8721
8722 arity = ada_array_arity (type);
8723 type = ada_array_element_type (type, nargs);
8724 if (type == NULL)
8725 error (_("cannot subscript or call a record"));
8726 if (arity != nargs)
8727 error (_("wrong number of subscripts; expecting %d"), arity);
8728 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8729 return value_zero (ada_aligned_type (type), lval_memory);
8730 return
8731 unwrap_value (ada_value_subscript
8732 (argvec[0], nargs, argvec + 1));
8733 }
8734 case TYPE_CODE_ARRAY:
8735 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8736 {
8737 type = ada_array_element_type (type, nargs);
8738 if (type == NULL)
8739 error (_("element type of array unknown"));
8740 else
8741 return value_zero (ada_aligned_type (type), lval_memory);
8742 }
8743 return
8744 unwrap_value (ada_value_subscript
8745 (ada_coerce_to_simple_array (argvec[0]),
8746 nargs, argvec + 1));
8747 case TYPE_CODE_PTR: /* Pointer to array */
8748 type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1);
8749 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8750 {
8751 type = ada_array_element_type (type, nargs);
8752 if (type == NULL)
8753 error (_("element type of array unknown"));
8754 else
8755 return value_zero (ada_aligned_type (type), lval_memory);
8756 }
8757 return
8758 unwrap_value (ada_value_ptr_subscript (argvec[0], type,
8759 nargs, argvec + 1));
8760
8761 default:
8762 error (_("Attempt to index or call something other than an "
8763 "array or function"));
8764 }
8765
8766 case TERNOP_SLICE:
8767 {
8768 struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8769 struct value *low_bound_val =
8770 evaluate_subexp (NULL_TYPE, exp, pos, noside);
8771 struct value *high_bound_val =
8772 evaluate_subexp (NULL_TYPE, exp, pos, noside);
8773 LONGEST low_bound;
8774 LONGEST high_bound;
8775 low_bound_val = coerce_ref (low_bound_val);
8776 high_bound_val = coerce_ref (high_bound_val);
8777 low_bound = pos_atr (low_bound_val);
8778 high_bound = pos_atr (high_bound_val);
8779
8780 if (noside == EVAL_SKIP)
8781 goto nosideret;
8782
8783 /* If this is a reference to an aligner type, then remove all
8784 the aligners. */
8785 if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF
8786 && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array))))
8787 TYPE_TARGET_TYPE (value_type (array)) =
8788 ada_aligned_type (TYPE_TARGET_TYPE (value_type (array)));
8789
8790 if (ada_is_packed_array_type (value_type (array)))
8791 error (_("cannot slice a packed array"));
8792
8793 /* If this is a reference to an array or an array lvalue,
8794 convert to a pointer. */
8795 if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF
8796 || (TYPE_CODE (value_type (array)) == TYPE_CODE_ARRAY
8797 && VALUE_LVAL (array) == lval_memory))
8798 array = value_addr (array);
8799
8800 if (noside == EVAL_AVOID_SIDE_EFFECTS
8801 && ada_is_array_descriptor_type (ada_check_typedef
8802 (value_type (array))))
8803 return empty_array (ada_type_of_array (array, 0), low_bound);
8804
8805 array = ada_coerce_to_simple_array_ptr (array);
8806
8807 /* If we have more than one level of pointer indirection,
8808 dereference the value until we get only one level. */
8809 while (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR
8810 && (TYPE_CODE (TYPE_TARGET_TYPE (value_type (array)))
8811 == TYPE_CODE_PTR))
8812 array = value_ind (array);
8813
8814 /* Make sure we really do have an array type before going further,
8815 to avoid a SEGV when trying to get the index type or the target
8816 type later down the road if the debug info generated by
8817 the compiler is incorrect or incomplete. */
8818 if (!ada_is_simple_array_type (value_type (array)))
8819 error (_("cannot take slice of non-array"));
8820
8821 if (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR)
8822 {
8823 if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS)
8824 return empty_array (TYPE_TARGET_TYPE (value_type (array)),
8825 low_bound);
8826 else
8827 {
8828 struct type *arr_type0 =
8829 to_fixed_array_type (TYPE_TARGET_TYPE (value_type (array)),
8830 NULL, 1);
8831 return ada_value_slice_ptr (array, arr_type0,
8832 longest_to_int (low_bound),
8833 longest_to_int (high_bound));
8834 }
8835 }
8836 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
8837 return array;
8838 else if (high_bound < low_bound)
8839 return empty_array (value_type (array), low_bound);
8840 else
8841 return ada_value_slice (array, longest_to_int (low_bound),
8842 longest_to_int (high_bound));
8843 }
8844
8845 case UNOP_IN_RANGE:
8846 (*pos) += 2;
8847 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8848 type = exp->elts[pc + 1].type;
8849
8850 if (noside == EVAL_SKIP)
8851 goto nosideret;
8852
8853 switch (TYPE_CODE (type))
8854 {
8855 default:
8856 lim_warning (_("Membership test incompletely implemented; "
8857 "always returns true"));
8858 type = language_bool_type (exp->language_defn, exp->gdbarch);
8859 return value_from_longest (type, (LONGEST) 1);
8860
8861 case TYPE_CODE_RANGE:
8862 arg2 = value_from_longest (type, TYPE_LOW_BOUND (type));
8863 arg3 = value_from_longest (type, TYPE_HIGH_BOUND (type));
8864 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8865 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
8866 type = language_bool_type (exp->language_defn, exp->gdbarch);
8867 return
8868 value_from_longest (type,
8869 (value_less (arg1, arg3)
8870 || value_equal (arg1, arg3))
8871 && (value_less (arg2, arg1)
8872 || value_equal (arg2, arg1)));
8873 }
8874
8875 case BINOP_IN_BOUNDS:
8876 (*pos) += 2;
8877 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8878 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8879
8880 if (noside == EVAL_SKIP)
8881 goto nosideret;
8882
8883 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8884 {
8885 type = language_bool_type (exp->language_defn, exp->gdbarch);
8886 return value_zero (type, not_lval);
8887 }
8888
8889 tem = longest_to_int (exp->elts[pc + 1].longconst);
8890
8891 if (tem < 1 || tem > ada_array_arity (value_type (arg2)))
8892 error (_("invalid dimension number to 'range"));
8893
8894 arg3 = ada_array_bound (arg2, tem, 1);
8895 arg2 = ada_array_bound (arg2, tem, 0);
8896
8897 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8898 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
8899 type = language_bool_type (exp->language_defn, exp->gdbarch);
8900 return
8901 value_from_longest (type,
8902 (value_less (arg1, arg3)
8903 || value_equal (arg1, arg3))
8904 && (value_less (arg2, arg1)
8905 || value_equal (arg2, arg1)));
8906
8907 case TERNOP_IN_RANGE:
8908 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8909 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8910 arg3 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8911
8912 if (noside == EVAL_SKIP)
8913 goto nosideret;
8914
8915 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
8916 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3);
8917 type = language_bool_type (exp->language_defn, exp->gdbarch);
8918 return
8919 value_from_longest (type,
8920 (value_less (arg1, arg3)
8921 || value_equal (arg1, arg3))
8922 && (value_less (arg2, arg1)
8923 || value_equal (arg2, arg1)));
8924
8925 case OP_ATR_FIRST:
8926 case OP_ATR_LAST:
8927 case OP_ATR_LENGTH:
8928 {
8929 struct type *type_arg;
8930 if (exp->elts[*pos].opcode == OP_TYPE)
8931 {
8932 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
8933 arg1 = NULL;
8934 type_arg = exp->elts[pc + 2].type;
8935 }
8936 else
8937 {
8938 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
8939 type_arg = NULL;
8940 }
8941
8942 if (exp->elts[*pos].opcode != OP_LONG)
8943 error (_("Invalid operand to '%s"), ada_attribute_name (op));
8944 tem = longest_to_int (exp->elts[*pos + 2].longconst);
8945 *pos += 4;
8946
8947 if (noside == EVAL_SKIP)
8948 goto nosideret;
8949
8950 if (type_arg == NULL)
8951 {
8952 arg1 = ada_coerce_ref (arg1);
8953
8954 if (ada_is_packed_array_type (value_type (arg1)))
8955 arg1 = ada_coerce_to_simple_array (arg1);
8956
8957 if (tem < 1 || tem > ada_array_arity (value_type (arg1)))
8958 error (_("invalid dimension number to '%s"),
8959 ada_attribute_name (op));
8960
8961 if (noside == EVAL_AVOID_SIDE_EFFECTS)
8962 {
8963 type = ada_index_type (value_type (arg1), tem);
8964 if (type == NULL)
8965 error
8966 (_("attempt to take bound of something that is not an array"));
8967 return allocate_value (type);
8968 }
8969
8970 switch (op)
8971 {
8972 default: /* Should never happen. */
8973 error (_("unexpected attribute encountered"));
8974 case OP_ATR_FIRST:
8975 return ada_array_bound (arg1, tem, 0);
8976 case OP_ATR_LAST:
8977 return ada_array_bound (arg1, tem, 1);
8978 case OP_ATR_LENGTH:
8979 return ada_array_length (arg1, tem);
8980 }
8981 }
8982 else if (discrete_type_p (type_arg))
8983 {
8984 struct type *range_type;
8985 char *name = ada_type_name (type_arg);
8986 range_type = NULL;
8987 if (name != NULL && TYPE_CODE (type_arg) != TYPE_CODE_ENUM)
8988 range_type =
8989 to_fixed_range_type (name, NULL, TYPE_OBJFILE (type_arg));
8990 if (range_type == NULL)
8991 range_type = type_arg;
8992 switch (op)
8993 {
8994 default:
8995 error (_("unexpected attribute encountered"));
8996 case OP_ATR_FIRST:
8997 return value_from_longest
8998 (range_type, discrete_type_low_bound (range_type));
8999 case OP_ATR_LAST:
9000 return value_from_longest
9001 (range_type, discrete_type_high_bound (range_type));
9002 case OP_ATR_LENGTH:
9003 error (_("the 'length attribute applies only to array types"));
9004 }
9005 }
9006 else if (TYPE_CODE (type_arg) == TYPE_CODE_FLT)
9007 error (_("unimplemented type attribute"));
9008 else
9009 {
9010 LONGEST low, high;
9011
9012 if (ada_is_packed_array_type (type_arg))
9013 type_arg = decode_packed_array_type (type_arg);
9014
9015 if (tem < 1 || tem > ada_array_arity (type_arg))
9016 error (_("invalid dimension number to '%s"),
9017 ada_attribute_name (op));
9018
9019 type = ada_index_type (type_arg, tem);
9020 if (type == NULL)
9021 error
9022 (_("attempt to take bound of something that is not an array"));
9023 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9024 return allocate_value (type);
9025
9026 switch (op)
9027 {
9028 default:
9029 error (_("unexpected attribute encountered"));
9030 case OP_ATR_FIRST:
9031 low = ada_array_bound_from_type (type_arg, tem, 0, &type);
9032 return value_from_longest (type, low);
9033 case OP_ATR_LAST:
9034 high = ada_array_bound_from_type (type_arg, tem, 1, &type);
9035 return value_from_longest (type, high);
9036 case OP_ATR_LENGTH:
9037 low = ada_array_bound_from_type (type_arg, tem, 0, &type);
9038 high = ada_array_bound_from_type (type_arg, tem, 1, NULL);
9039 return value_from_longest (type, high - low + 1);
9040 }
9041 }
9042 }
9043
9044 case OP_ATR_TAG:
9045 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9046 if (noside == EVAL_SKIP)
9047 goto nosideret;
9048
9049 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9050 return value_zero (ada_tag_type (arg1), not_lval);
9051
9052 return ada_value_tag (arg1);
9053
9054 case OP_ATR_MIN:
9055 case OP_ATR_MAX:
9056 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
9057 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9058 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9059 if (noside == EVAL_SKIP)
9060 goto nosideret;
9061 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
9062 return value_zero (value_type (arg1), not_lval);
9063 else
9064 {
9065 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
9066 return value_binop (arg1, arg2,
9067 op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
9068 }
9069
9070 case OP_ATR_MODULUS:
9071 {
9072 struct type *type_arg = exp->elts[pc + 2].type;
9073 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
9074
9075 if (noside == EVAL_SKIP)
9076 goto nosideret;
9077
9078 if (!ada_is_modular_type (type_arg))
9079 error (_("'modulus must be applied to modular type"));
9080
9081 return value_from_longest (TYPE_TARGET_TYPE (type_arg),
9082 ada_modulus (type_arg));
9083 }
9084
9085
9086 case OP_ATR_POS:
9087 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
9088 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9089 if (noside == EVAL_SKIP)
9090 goto nosideret;
9091 type = builtin_type (exp->gdbarch)->builtin_int;
9092 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9093 return value_zero (type, not_lval);
9094 else
9095 return value_pos_atr (type, arg1);
9096
9097 case OP_ATR_SIZE:
9098 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9099 type = value_type (arg1);
9100
9101 /* If the argument is a reference, then dereference its type, since
9102 the user is really asking for the size of the actual object,
9103 not the size of the pointer. */
9104 if (TYPE_CODE (type) == TYPE_CODE_REF)
9105 type = TYPE_TARGET_TYPE (type);
9106
9107 if (noside == EVAL_SKIP)
9108 goto nosideret;
9109 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
9110 return value_zero (builtin_type_int32, not_lval);
9111 else
9112 return value_from_longest (builtin_type_int32,
9113 TARGET_CHAR_BIT * TYPE_LENGTH (type));
9114
9115 case OP_ATR_VAL:
9116 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
9117 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9118 type = exp->elts[pc + 2].type;
9119 if (noside == EVAL_SKIP)
9120 goto nosideret;
9121 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
9122 return value_zero (type, not_lval);
9123 else
9124 return value_val_atr (type, arg1);
9125
9126 case BINOP_EXP:
9127 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9128 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9129 if (noside == EVAL_SKIP)
9130 goto nosideret;
9131 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
9132 return value_zero (value_type (arg1), not_lval);
9133 else
9134 {
9135 /* For integer exponentiation operations,
9136 only promote the first argument. */
9137 if (is_integral_type (value_type (arg2)))
9138 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
9139 else
9140 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
9141
9142 return value_binop (arg1, arg2, op);
9143 }
9144
9145 case UNOP_PLUS:
9146 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9147 if (noside == EVAL_SKIP)
9148 goto nosideret;
9149 else
9150 return arg1;
9151
9152 case UNOP_ABS:
9153 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9154 if (noside == EVAL_SKIP)
9155 goto nosideret;
9156 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
9157 if (value_less (arg1, value_zero (value_type (arg1), not_lval)))
9158 return value_neg (arg1);
9159 else
9160 return arg1;
9161
9162 case UNOP_IND:
9163 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9164 if (noside == EVAL_SKIP)
9165 goto nosideret;
9166 type = ada_check_typedef (value_type (arg1));
9167 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9168 {
9169 if (ada_is_array_descriptor_type (type))
9170 /* GDB allows dereferencing GNAT array descriptors. */
9171 {
9172 struct type *arrType = ada_type_of_array (arg1, 0);
9173 if (arrType == NULL)
9174 error (_("Attempt to dereference null array pointer."));
9175 return value_at_lazy (arrType, 0);
9176 }
9177 else if (TYPE_CODE (type) == TYPE_CODE_PTR
9178 || TYPE_CODE (type) == TYPE_CODE_REF
9179 /* In C you can dereference an array to get the 1st elt. */
9180 || TYPE_CODE (type) == TYPE_CODE_ARRAY)
9181 {
9182 type = to_static_fixed_type
9183 (ada_aligned_type
9184 (ada_check_typedef (TYPE_TARGET_TYPE (type))));
9185 check_size (type);
9186 return value_zero (type, lval_memory);
9187 }
9188 else if (TYPE_CODE (type) == TYPE_CODE_INT)
9189 {
9190 /* GDB allows dereferencing an int. */
9191 if (expect_type == NULL)
9192 return value_zero (builtin_type (exp->gdbarch)->builtin_int,
9193 lval_memory);
9194 else
9195 {
9196 expect_type =
9197 to_static_fixed_type (ada_aligned_type (expect_type));
9198 return value_zero (expect_type, lval_memory);
9199 }
9200 }
9201 else
9202 error (_("Attempt to take contents of a non-pointer value."));
9203 }
9204 arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */
9205 type = ada_check_typedef (value_type (arg1));
9206
9207 if (TYPE_CODE (type) == TYPE_CODE_INT && expect_type != NULL)
9208 /* GDB allows dereferencing an int. We give it the expected
9209 type (which will be set in the case of a coercion or
9210 qualification). */
9211 return ada_value_ind (value_cast (lookup_pointer_type (expect_type),
9212 arg1));
9213
9214 if (ada_is_array_descriptor_type (type))
9215 /* GDB allows dereferencing GNAT array descriptors. */
9216 return ada_coerce_to_simple_array (arg1);
9217 else
9218 return ada_value_ind (arg1);
9219
9220 case STRUCTOP_STRUCT:
9221 tem = longest_to_int (exp->elts[pc + 1].longconst);
9222 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
9223 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
9224 if (noside == EVAL_SKIP)
9225 goto nosideret;
9226 if (noside == EVAL_AVOID_SIDE_EFFECTS)
9227 {
9228 struct type *type1 = value_type (arg1);
9229 if (ada_is_tagged_type (type1, 1))
9230 {
9231 type = ada_lookup_struct_elt_type (type1,
9232 &exp->elts[pc + 2].string,
9233 1, 1, NULL);
9234 if (type == NULL)
9235 /* In this case, we assume that the field COULD exist
9236 in some extension of the type. Return an object of
9237 "type" void, which will match any formal
9238 (see ada_type_match). */
9239 return value_zero (builtin_type_void, lval_memory);
9240 }
9241 else
9242 type =
9243 ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1,
9244 0, NULL);
9245
9246 return value_zero (ada_aligned_type (type), lval_memory);
9247 }
9248 else
9249 return
9250 ada_to_fixed_value (unwrap_value
9251 (ada_value_struct_elt
9252 (arg1, &exp->elts[pc + 2].string, 0)));
9253 case OP_TYPE:
9254 /* The value is not supposed to be used. This is here to make it
9255 easier to accommodate expressions that contain types. */
9256 (*pos) += 2;
9257 if (noside == EVAL_SKIP)
9258 goto nosideret;
9259 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
9260 return allocate_value (exp->elts[pc + 1].type);
9261 else
9262 error (_("Attempt to use a type name as an expression"));
9263
9264 case OP_AGGREGATE:
9265 case OP_CHOICES:
9266 case OP_OTHERS:
9267 case OP_DISCRETE_RANGE:
9268 case OP_POSITIONAL:
9269 case OP_NAME:
9270 if (noside == EVAL_NORMAL)
9271 switch (op)
9272 {
9273 case OP_NAME:
9274 error (_("Undefined name, ambiguous name, or renaming used in "
9275 "component association: %s."), &exp->elts[pc+2].string);
9276 case OP_AGGREGATE:
9277 error (_("Aggregates only allowed on the right of an assignment"));
9278 default:
9279 internal_error (__FILE__, __LINE__, _("aggregate apparently mangled"));
9280 }
9281
9282 ada_forward_operator_length (exp, pc, &oplen, &nargs);
9283 *pos += oplen - 1;
9284 for (tem = 0; tem < nargs; tem += 1)
9285 ada_evaluate_subexp (NULL, exp, pos, noside);
9286 goto nosideret;
9287 }
9288
9289 nosideret:
9290 return value_from_longest (builtin_type_int8, (LONGEST) 1);
9291 }
9292 \f
9293
9294 /* Fixed point */
9295
9296 /* If TYPE encodes an Ada fixed-point type, return the suffix of the
9297 type name that encodes the 'small and 'delta information.
9298 Otherwise, return NULL. */
9299
9300 static const char *
9301 fixed_type_info (struct type *type)
9302 {
9303 const char *name = ada_type_name (type);
9304 enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : TYPE_CODE (type);
9305
9306 if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL)
9307 {
9308 const char *tail = strstr (name, "___XF_");
9309 if (tail == NULL)
9310 return NULL;
9311 else
9312 return tail + 5;
9313 }
9314 else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type)
9315 return fixed_type_info (TYPE_TARGET_TYPE (type));
9316 else
9317 return NULL;
9318 }
9319
9320 /* Returns non-zero iff TYPE represents an Ada fixed-point type. */
9321
9322 int
9323 ada_is_fixed_point_type (struct type *type)
9324 {
9325 return fixed_type_info (type) != NULL;
9326 }
9327
9328 /* Return non-zero iff TYPE represents a System.Address type. */
9329
9330 int
9331 ada_is_system_address_type (struct type *type)
9332 {
9333 return (TYPE_NAME (type)
9334 && strcmp (TYPE_NAME (type), "system__address") == 0);
9335 }
9336
9337 /* Assuming that TYPE is the representation of an Ada fixed-point
9338 type, return its delta, or -1 if the type is malformed and the
9339 delta cannot be determined. */
9340
9341 DOUBLEST
9342 ada_delta (struct type *type)
9343 {
9344 const char *encoding = fixed_type_info (type);
9345 long num, den;
9346
9347 if (sscanf (encoding, "_%ld_%ld", &num, &den) < 2)
9348 return -1.0;
9349 else
9350 return (DOUBLEST) num / (DOUBLEST) den;
9351 }
9352
9353 /* Assuming that ada_is_fixed_point_type (TYPE), return the scaling
9354 factor ('SMALL value) associated with the type. */
9355
9356 static DOUBLEST
9357 scaling_factor (struct type *type)
9358 {
9359 const char *encoding = fixed_type_info (type);
9360 unsigned long num0, den0, num1, den1;
9361 int n;
9362
9363 n = sscanf (encoding, "_%lu_%lu_%lu_%lu", &num0, &den0, &num1, &den1);
9364
9365 if (n < 2)
9366 return 1.0;
9367 else if (n == 4)
9368 return (DOUBLEST) num1 / (DOUBLEST) den1;
9369 else
9370 return (DOUBLEST) num0 / (DOUBLEST) den0;
9371 }
9372
9373
9374 /* Assuming that X is the representation of a value of fixed-point
9375 type TYPE, return its floating-point equivalent. */
9376
9377 DOUBLEST
9378 ada_fixed_to_float (struct type *type, LONGEST x)
9379 {
9380 return (DOUBLEST) x *scaling_factor (type);
9381 }
9382
9383 /* The representation of a fixed-point value of type TYPE
9384 corresponding to the value X. */
9385
9386 LONGEST
9387 ada_float_to_fixed (struct type *type, DOUBLEST x)
9388 {
9389 return (LONGEST) (x / scaling_factor (type) + 0.5);
9390 }
9391
9392
9393 /* VAX floating formats */
9394
9395 /* Non-zero iff TYPE represents one of the special VAX floating-point
9396 types. */
9397
9398 int
9399 ada_is_vax_floating_type (struct type *type)
9400 {
9401 int name_len =
9402 (ada_type_name (type) == NULL) ? 0 : strlen (ada_type_name (type));
9403 return
9404 name_len > 6
9405 && (TYPE_CODE (type) == TYPE_CODE_INT
9406 || TYPE_CODE (type) == TYPE_CODE_RANGE)
9407 && strncmp (ada_type_name (type) + name_len - 6, "___XF", 5) == 0;
9408 }
9409
9410 /* The type of special VAX floating-point type this is, assuming
9411 ada_is_vax_floating_point. */
9412
9413 int
9414 ada_vax_float_type_suffix (struct type *type)
9415 {
9416 return ada_type_name (type)[strlen (ada_type_name (type)) - 1];
9417 }
9418
9419 /* A value representing the special debugging function that outputs
9420 VAX floating-point values of the type represented by TYPE. Assumes
9421 ada_is_vax_floating_type (TYPE). */
9422
9423 struct value *
9424 ada_vax_float_print_function (struct type *type)
9425 {
9426 switch (ada_vax_float_type_suffix (type))
9427 {
9428 case 'F':
9429 return get_var_value ("DEBUG_STRING_F", 0);
9430 case 'D':
9431 return get_var_value ("DEBUG_STRING_D", 0);
9432 case 'G':
9433 return get_var_value ("DEBUG_STRING_G", 0);
9434 default:
9435 error (_("invalid VAX floating-point type"));
9436 }
9437 }
9438 \f
9439
9440 /* Range types */
9441
9442 /* Scan STR beginning at position K for a discriminant name, and
9443 return the value of that discriminant field of DVAL in *PX. If
9444 PNEW_K is not null, put the position of the character beyond the
9445 name scanned in *PNEW_K. Return 1 if successful; return 0 and do
9446 not alter *PX and *PNEW_K if unsuccessful. */
9447
9448 static int
9449 scan_discrim_bound (char *str, int k, struct value *dval, LONGEST * px,
9450 int *pnew_k)
9451 {
9452 static char *bound_buffer = NULL;
9453 static size_t bound_buffer_len = 0;
9454 char *bound;
9455 char *pend;
9456 struct value *bound_val;
9457
9458 if (dval == NULL || str == NULL || str[k] == '\0')
9459 return 0;
9460
9461 pend = strstr (str + k, "__");
9462 if (pend == NULL)
9463 {
9464 bound = str + k;
9465 k += strlen (bound);
9466 }
9467 else
9468 {
9469 GROW_VECT (bound_buffer, bound_buffer_len, pend - (str + k) + 1);
9470 bound = bound_buffer;
9471 strncpy (bound_buffer, str + k, pend - (str + k));
9472 bound[pend - (str + k)] = '\0';
9473 k = pend - str;
9474 }
9475
9476 bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval));
9477 if (bound_val == NULL)
9478 return 0;
9479
9480 *px = value_as_long (bound_val);
9481 if (pnew_k != NULL)
9482 *pnew_k = k;
9483 return 1;
9484 }
9485
9486 /* Value of variable named NAME in the current environment. If
9487 no such variable found, then if ERR_MSG is null, returns 0, and
9488 otherwise causes an error with message ERR_MSG. */
9489
9490 static struct value *
9491 get_var_value (char *name, char *err_msg)
9492 {
9493 struct ada_symbol_info *syms;
9494 int nsyms;
9495
9496 nsyms = ada_lookup_symbol_list (name, get_selected_block (0), VAR_DOMAIN,
9497 &syms);
9498
9499 if (nsyms != 1)
9500 {
9501 if (err_msg == NULL)
9502 return 0;
9503 else
9504 error (("%s"), err_msg);
9505 }
9506
9507 return value_of_variable (syms[0].sym, syms[0].block);
9508 }
9509
9510 /* Value of integer variable named NAME in the current environment. If
9511 no such variable found, returns 0, and sets *FLAG to 0. If
9512 successful, sets *FLAG to 1. */
9513
9514 LONGEST
9515 get_int_var_value (char *name, int *flag)
9516 {
9517 struct value *var_val = get_var_value (name, 0);
9518
9519 if (var_val == 0)
9520 {
9521 if (flag != NULL)
9522 *flag = 0;
9523 return 0;
9524 }
9525 else
9526 {
9527 if (flag != NULL)
9528 *flag = 1;
9529 return value_as_long (var_val);
9530 }
9531 }
9532
9533
9534 /* Return a range type whose base type is that of the range type named
9535 NAME in the current environment, and whose bounds are calculated
9536 from NAME according to the GNAT range encoding conventions.
9537 Extract discriminant values, if needed, from DVAL. If a new type
9538 must be created, allocate in OBJFILE's space. The bounds
9539 information, in general, is encoded in NAME, the base type given in
9540 the named range type. */
9541
9542 static struct type *
9543 to_fixed_range_type (char *name, struct value *dval, struct objfile *objfile)
9544 {
9545 struct type *raw_type = ada_find_any_type (name);
9546 struct type *base_type;
9547 char *subtype_info;
9548
9549 if (raw_type == NULL)
9550 base_type = builtin_type_int32;
9551 else if (TYPE_CODE (raw_type) == TYPE_CODE_RANGE)
9552 base_type = TYPE_TARGET_TYPE (raw_type);
9553 else
9554 base_type = raw_type;
9555
9556 subtype_info = strstr (name, "___XD");
9557 if (subtype_info == NULL)
9558 {
9559 LONGEST L = discrete_type_low_bound (raw_type);
9560 LONGEST U = discrete_type_high_bound (raw_type);
9561 if (L < INT_MIN || U > INT_MAX)
9562 return raw_type;
9563 else
9564 return create_range_type (alloc_type (objfile), raw_type,
9565 discrete_type_low_bound (raw_type),
9566 discrete_type_high_bound (raw_type));
9567 }
9568 else
9569 {
9570 static char *name_buf = NULL;
9571 static size_t name_len = 0;
9572 int prefix_len = subtype_info - name;
9573 LONGEST L, U;
9574 struct type *type;
9575 char *bounds_str;
9576 int n;
9577
9578 GROW_VECT (name_buf, name_len, prefix_len + 5);
9579 strncpy (name_buf, name, prefix_len);
9580 name_buf[prefix_len] = '\0';
9581
9582 subtype_info += 5;
9583 bounds_str = strchr (subtype_info, '_');
9584 n = 1;
9585
9586 if (*subtype_info == 'L')
9587 {
9588 if (!ada_scan_number (bounds_str, n, &L, &n)
9589 && !scan_discrim_bound (bounds_str, n, dval, &L, &n))
9590 return raw_type;
9591 if (bounds_str[n] == '_')
9592 n += 2;
9593 else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */
9594 n += 1;
9595 subtype_info += 1;
9596 }
9597 else
9598 {
9599 int ok;
9600 strcpy (name_buf + prefix_len, "___L");
9601 L = get_int_var_value (name_buf, &ok);
9602 if (!ok)
9603 {
9604 lim_warning (_("Unknown lower bound, using 1."));
9605 L = 1;
9606 }
9607 }
9608
9609 if (*subtype_info == 'U')
9610 {
9611 if (!ada_scan_number (bounds_str, n, &U, &n)
9612 && !scan_discrim_bound (bounds_str, n, dval, &U, &n))
9613 return raw_type;
9614 }
9615 else
9616 {
9617 int ok;
9618 strcpy (name_buf + prefix_len, "___U");
9619 U = get_int_var_value (name_buf, &ok);
9620 if (!ok)
9621 {
9622 lim_warning (_("Unknown upper bound, using %ld."), (long) L);
9623 U = L;
9624 }
9625 }
9626
9627 if (objfile == NULL)
9628 objfile = TYPE_OBJFILE (base_type);
9629 type = create_range_type (alloc_type (objfile), base_type, L, U);
9630 TYPE_NAME (type) = name;
9631 return type;
9632 }
9633 }
9634
9635 /* True iff NAME is the name of a range type. */
9636
9637 int
9638 ada_is_range_type_name (const char *name)
9639 {
9640 return (name != NULL && strstr (name, "___XD"));
9641 }
9642 \f
9643
9644 /* Modular types */
9645
9646 /* True iff TYPE is an Ada modular type. */
9647
9648 int
9649 ada_is_modular_type (struct type *type)
9650 {
9651 struct type *subranged_type = base_type (type);
9652
9653 return (subranged_type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE
9654 && TYPE_CODE (subranged_type) == TYPE_CODE_INT
9655 && TYPE_UNSIGNED (subranged_type));
9656 }
9657
9658 /* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */
9659
9660 ULONGEST
9661 ada_modulus (struct type * type)
9662 {
9663 return (ULONGEST) (unsigned int) TYPE_HIGH_BOUND (type) + 1;
9664 }
9665 \f
9666
9667 /* Ada exception catchpoint support:
9668 ---------------------------------
9669
9670 We support 3 kinds of exception catchpoints:
9671 . catchpoints on Ada exceptions
9672 . catchpoints on unhandled Ada exceptions
9673 . catchpoints on failed assertions
9674
9675 Exceptions raised during failed assertions, or unhandled exceptions
9676 could perfectly be caught with the general catchpoint on Ada exceptions.
9677 However, we can easily differentiate these two special cases, and having
9678 the option to distinguish these two cases from the rest can be useful
9679 to zero-in on certain situations.
9680
9681 Exception catchpoints are a specialized form of breakpoint,
9682 since they rely on inserting breakpoints inside known routines
9683 of the GNAT runtime. The implementation therefore uses a standard
9684 breakpoint structure of the BP_BREAKPOINT type, but with its own set
9685 of breakpoint_ops.
9686
9687 Support in the runtime for exception catchpoints have been changed
9688 a few times already, and these changes affect the implementation
9689 of these catchpoints. In order to be able to support several
9690 variants of the runtime, we use a sniffer that will determine
9691 the runtime variant used by the program being debugged.
9692
9693 At this time, we do not support the use of conditions on Ada exception
9694 catchpoints. The COND and COND_STRING fields are therefore set
9695 to NULL (most of the time, see below).
9696
9697 Conditions where EXP_STRING, COND, and COND_STRING are used:
9698
9699 When a user specifies the name of a specific exception in the case
9700 of catchpoints on Ada exceptions, we store the name of that exception
9701 in the EXP_STRING. We then translate this request into an actual
9702 condition stored in COND_STRING, and then parse it into an expression
9703 stored in COND. */
9704
9705 /* The different types of catchpoints that we introduced for catching
9706 Ada exceptions. */
9707
9708 enum exception_catchpoint_kind
9709 {
9710 ex_catch_exception,
9711 ex_catch_exception_unhandled,
9712 ex_catch_assert
9713 };
9714
9715 /* Ada's standard exceptions. */
9716
9717 static char *standard_exc[] = {
9718 "constraint_error",
9719 "program_error",
9720 "storage_error",
9721 "tasking_error"
9722 };
9723
9724 typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void);
9725
9726 /* A structure that describes how to support exception catchpoints
9727 for a given executable. */
9728
9729 struct exception_support_info
9730 {
9731 /* The name of the symbol to break on in order to insert
9732 a catchpoint on exceptions. */
9733 const char *catch_exception_sym;
9734
9735 /* The name of the symbol to break on in order to insert
9736 a catchpoint on unhandled exceptions. */
9737 const char *catch_exception_unhandled_sym;
9738
9739 /* The name of the symbol to break on in order to insert
9740 a catchpoint on failed assertions. */
9741 const char *catch_assert_sym;
9742
9743 /* Assuming that the inferior just triggered an unhandled exception
9744 catchpoint, this function is responsible for returning the address
9745 in inferior memory where the name of that exception is stored.
9746 Return zero if the address could not be computed. */
9747 ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr;
9748 };
9749
9750 static CORE_ADDR ada_unhandled_exception_name_addr (void);
9751 static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void);
9752
9753 /* The following exception support info structure describes how to
9754 implement exception catchpoints with the latest version of the
9755 Ada runtime (as of 2007-03-06). */
9756
9757 static const struct exception_support_info default_exception_support_info =
9758 {
9759 "__gnat_debug_raise_exception", /* catch_exception_sym */
9760 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
9761 "__gnat_debug_raise_assert_failure", /* catch_assert_sym */
9762 ada_unhandled_exception_name_addr
9763 };
9764
9765 /* The following exception support info structure describes how to
9766 implement exception catchpoints with a slightly older version
9767 of the Ada runtime. */
9768
9769 static const struct exception_support_info exception_support_info_fallback =
9770 {
9771 "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */
9772 "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */
9773 "system__assertions__raise_assert_failure", /* catch_assert_sym */
9774 ada_unhandled_exception_name_addr_from_raise
9775 };
9776
9777 /* For each executable, we sniff which exception info structure to use
9778 and cache it in the following global variable. */
9779
9780 static const struct exception_support_info *exception_info = NULL;
9781
9782 /* Inspect the Ada runtime and determine which exception info structure
9783 should be used to provide support for exception catchpoints.
9784
9785 This function will always set exception_info, or raise an error. */
9786
9787 static void
9788 ada_exception_support_info_sniffer (void)
9789 {
9790 struct symbol *sym;
9791
9792 /* If the exception info is already known, then no need to recompute it. */
9793 if (exception_info != NULL)
9794 return;
9795
9796 /* Check the latest (default) exception support info. */
9797 sym = standard_lookup (default_exception_support_info.catch_exception_sym,
9798 NULL, VAR_DOMAIN);
9799 if (sym != NULL)
9800 {
9801 exception_info = &default_exception_support_info;
9802 return;
9803 }
9804
9805 /* Try our fallback exception suport info. */
9806 sym = standard_lookup (exception_support_info_fallback.catch_exception_sym,
9807 NULL, VAR_DOMAIN);
9808 if (sym != NULL)
9809 {
9810 exception_info = &exception_support_info_fallback;
9811 return;
9812 }
9813
9814 /* Sometimes, it is normal for us to not be able to find the routine
9815 we are looking for. This happens when the program is linked with
9816 the shared version of the GNAT runtime, and the program has not been
9817 started yet. Inform the user of these two possible causes if
9818 applicable. */
9819
9820 if (ada_update_initial_language (language_unknown, NULL) != language_ada)
9821 error (_("Unable to insert catchpoint. Is this an Ada main program?"));
9822
9823 /* If the symbol does not exist, then check that the program is
9824 already started, to make sure that shared libraries have been
9825 loaded. If it is not started, this may mean that the symbol is
9826 in a shared library. */
9827
9828 if (ptid_get_pid (inferior_ptid) == 0)
9829 error (_("Unable to insert catchpoint. Try to start the program first."));
9830
9831 /* At this point, we know that we are debugging an Ada program and
9832 that the inferior has been started, but we still are not able to
9833 find the run-time symbols. That can mean that we are in
9834 configurable run time mode, or that a-except as been optimized
9835 out by the linker... In any case, at this point it is not worth
9836 supporting this feature. */
9837
9838 error (_("Cannot insert catchpoints in this configuration."));
9839 }
9840
9841 /* An observer of "executable_changed" events.
9842 Its role is to clear certain cached values that need to be recomputed
9843 each time a new executable is loaded by GDB. */
9844
9845 static void
9846 ada_executable_changed_observer (void)
9847 {
9848 /* If the executable changed, then it is possible that the Ada runtime
9849 is different. So we need to invalidate the exception support info
9850 cache. */
9851 exception_info = NULL;
9852 }
9853
9854 /* Return the name of the function at PC, NULL if could not find it.
9855 This function only checks the debugging information, not the symbol
9856 table. */
9857
9858 static char *
9859 function_name_from_pc (CORE_ADDR pc)
9860 {
9861 char *func_name;
9862
9863 if (!find_pc_partial_function (pc, &func_name, NULL, NULL))
9864 return NULL;
9865
9866 return func_name;
9867 }
9868
9869 /* True iff FRAME is very likely to be that of a function that is
9870 part of the runtime system. This is all very heuristic, but is
9871 intended to be used as advice as to what frames are uninteresting
9872 to most users. */
9873
9874 static int
9875 is_known_support_routine (struct frame_info *frame)
9876 {
9877 struct symtab_and_line sal;
9878 char *func_name;
9879 int i;
9880
9881 /* If this code does not have any debugging information (no symtab),
9882 This cannot be any user code. */
9883
9884 find_frame_sal (frame, &sal);
9885 if (sal.symtab == NULL)
9886 return 1;
9887
9888 /* If there is a symtab, but the associated source file cannot be
9889 located, then assume this is not user code: Selecting a frame
9890 for which we cannot display the code would not be very helpful
9891 for the user. This should also take care of case such as VxWorks
9892 where the kernel has some debugging info provided for a few units. */
9893
9894 if (symtab_to_fullname (sal.symtab) == NULL)
9895 return 1;
9896
9897 /* Check the unit filename againt the Ada runtime file naming.
9898 We also check the name of the objfile against the name of some
9899 known system libraries that sometimes come with debugging info
9900 too. */
9901
9902 for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1)
9903 {
9904 re_comp (known_runtime_file_name_patterns[i]);
9905 if (re_exec (sal.symtab->filename))
9906 return 1;
9907 if (sal.symtab->objfile != NULL
9908 && re_exec (sal.symtab->objfile->name))
9909 return 1;
9910 }
9911
9912 /* Check whether the function is a GNAT-generated entity. */
9913
9914 func_name = function_name_from_pc (get_frame_address_in_block (frame));
9915 if (func_name == NULL)
9916 return 1;
9917
9918 for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1)
9919 {
9920 re_comp (known_auxiliary_function_name_patterns[i]);
9921 if (re_exec (func_name))
9922 return 1;
9923 }
9924
9925 return 0;
9926 }
9927
9928 /* Find the first frame that contains debugging information and that is not
9929 part of the Ada run-time, starting from FI and moving upward. */
9930
9931 void
9932 ada_find_printable_frame (struct frame_info *fi)
9933 {
9934 for (; fi != NULL; fi = get_prev_frame (fi))
9935 {
9936 if (!is_known_support_routine (fi))
9937 {
9938 select_frame (fi);
9939 break;
9940 }
9941 }
9942
9943 }
9944
9945 /* Assuming that the inferior just triggered an unhandled exception
9946 catchpoint, return the address in inferior memory where the name
9947 of the exception is stored.
9948
9949 Return zero if the address could not be computed. */
9950
9951 static CORE_ADDR
9952 ada_unhandled_exception_name_addr (void)
9953 {
9954 return parse_and_eval_address ("e.full_name");
9955 }
9956
9957 /* Same as ada_unhandled_exception_name_addr, except that this function
9958 should be used when the inferior uses an older version of the runtime,
9959 where the exception name needs to be extracted from a specific frame
9960 several frames up in the callstack. */
9961
9962 static CORE_ADDR
9963 ada_unhandled_exception_name_addr_from_raise (void)
9964 {
9965 int frame_level;
9966 struct frame_info *fi;
9967
9968 /* To determine the name of this exception, we need to select
9969 the frame corresponding to RAISE_SYM_NAME. This frame is
9970 at least 3 levels up, so we simply skip the first 3 frames
9971 without checking the name of their associated function. */
9972 fi = get_current_frame ();
9973 for (frame_level = 0; frame_level < 3; frame_level += 1)
9974 if (fi != NULL)
9975 fi = get_prev_frame (fi);
9976
9977 while (fi != NULL)
9978 {
9979 const char *func_name =
9980 function_name_from_pc (get_frame_address_in_block (fi));
9981 if (func_name != NULL
9982 && strcmp (func_name, exception_info->catch_exception_sym) == 0)
9983 break; /* We found the frame we were looking for... */
9984 fi = get_prev_frame (fi);
9985 }
9986
9987 if (fi == NULL)
9988 return 0;
9989
9990 select_frame (fi);
9991 return parse_and_eval_address ("id.full_name");
9992 }
9993
9994 /* Assuming the inferior just triggered an Ada exception catchpoint
9995 (of any type), return the address in inferior memory where the name
9996 of the exception is stored, if applicable.
9997
9998 Return zero if the address could not be computed, or if not relevant. */
9999
10000 static CORE_ADDR
10001 ada_exception_name_addr_1 (enum exception_catchpoint_kind ex,
10002 struct breakpoint *b)
10003 {
10004 switch (ex)
10005 {
10006 case ex_catch_exception:
10007 return (parse_and_eval_address ("e.full_name"));
10008 break;
10009
10010 case ex_catch_exception_unhandled:
10011 return exception_info->unhandled_exception_name_addr ();
10012 break;
10013
10014 case ex_catch_assert:
10015 return 0; /* Exception name is not relevant in this case. */
10016 break;
10017
10018 default:
10019 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
10020 break;
10021 }
10022
10023 return 0; /* Should never be reached. */
10024 }
10025
10026 /* Same as ada_exception_name_addr_1, except that it intercepts and contains
10027 any error that ada_exception_name_addr_1 might cause to be thrown.
10028 When an error is intercepted, a warning with the error message is printed,
10029 and zero is returned. */
10030
10031 static CORE_ADDR
10032 ada_exception_name_addr (enum exception_catchpoint_kind ex,
10033 struct breakpoint *b)
10034 {
10035 struct gdb_exception e;
10036 CORE_ADDR result = 0;
10037
10038 TRY_CATCH (e, RETURN_MASK_ERROR)
10039 {
10040 result = ada_exception_name_addr_1 (ex, b);
10041 }
10042
10043 if (e.reason < 0)
10044 {
10045 warning (_("failed to get exception name: %s"), e.message);
10046 return 0;
10047 }
10048
10049 return result;
10050 }
10051
10052 /* Implement the PRINT_IT method in the breakpoint_ops structure
10053 for all exception catchpoint kinds. */
10054
10055 static enum print_stop_action
10056 print_it_exception (enum exception_catchpoint_kind ex, struct breakpoint *b)
10057 {
10058 const CORE_ADDR addr = ada_exception_name_addr (ex, b);
10059 char exception_name[256];
10060
10061 if (addr != 0)
10062 {
10063 read_memory (addr, exception_name, sizeof (exception_name) - 1);
10064 exception_name [sizeof (exception_name) - 1] = '\0';
10065 }
10066
10067 ada_find_printable_frame (get_current_frame ());
10068
10069 annotate_catchpoint (b->number);
10070 switch (ex)
10071 {
10072 case ex_catch_exception:
10073 if (addr != 0)
10074 printf_filtered (_("\nCatchpoint %d, %s at "),
10075 b->number, exception_name);
10076 else
10077 printf_filtered (_("\nCatchpoint %d, exception at "), b->number);
10078 break;
10079 case ex_catch_exception_unhandled:
10080 if (addr != 0)
10081 printf_filtered (_("\nCatchpoint %d, unhandled %s at "),
10082 b->number, exception_name);
10083 else
10084 printf_filtered (_("\nCatchpoint %d, unhandled exception at "),
10085 b->number);
10086 break;
10087 case ex_catch_assert:
10088 printf_filtered (_("\nCatchpoint %d, failed assertion at "),
10089 b->number);
10090 break;
10091 }
10092
10093 return PRINT_SRC_AND_LOC;
10094 }
10095
10096 /* Implement the PRINT_ONE method in the breakpoint_ops structure
10097 for all exception catchpoint kinds. */
10098
10099 static void
10100 print_one_exception (enum exception_catchpoint_kind ex,
10101 struct breakpoint *b, CORE_ADDR *last_addr)
10102 {
10103 if (addressprint)
10104 {
10105 annotate_field (4);
10106 ui_out_field_core_addr (uiout, "addr", b->loc->address);
10107 }
10108
10109 annotate_field (5);
10110 *last_addr = b->loc->address;
10111 switch (ex)
10112 {
10113 case ex_catch_exception:
10114 if (b->exp_string != NULL)
10115 {
10116 char *msg = xstrprintf (_("`%s' Ada exception"), b->exp_string);
10117
10118 ui_out_field_string (uiout, "what", msg);
10119 xfree (msg);
10120 }
10121 else
10122 ui_out_field_string (uiout, "what", "all Ada exceptions");
10123
10124 break;
10125
10126 case ex_catch_exception_unhandled:
10127 ui_out_field_string (uiout, "what", "unhandled Ada exceptions");
10128 break;
10129
10130 case ex_catch_assert:
10131 ui_out_field_string (uiout, "what", "failed Ada assertions");
10132 break;
10133
10134 default:
10135 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
10136 break;
10137 }
10138 }
10139
10140 /* Implement the PRINT_MENTION method in the breakpoint_ops structure
10141 for all exception catchpoint kinds. */
10142
10143 static void
10144 print_mention_exception (enum exception_catchpoint_kind ex,
10145 struct breakpoint *b)
10146 {
10147 switch (ex)
10148 {
10149 case ex_catch_exception:
10150 if (b->exp_string != NULL)
10151 printf_filtered (_("Catchpoint %d: `%s' Ada exception"),
10152 b->number, b->exp_string);
10153 else
10154 printf_filtered (_("Catchpoint %d: all Ada exceptions"), b->number);
10155
10156 break;
10157
10158 case ex_catch_exception_unhandled:
10159 printf_filtered (_("Catchpoint %d: unhandled Ada exceptions"),
10160 b->number);
10161 break;
10162
10163 case ex_catch_assert:
10164 printf_filtered (_("Catchpoint %d: failed Ada assertions"), b->number);
10165 break;
10166
10167 default:
10168 internal_error (__FILE__, __LINE__, _("unexpected catchpoint type"));
10169 break;
10170 }
10171 }
10172
10173 /* Virtual table for "catch exception" breakpoints. */
10174
10175 static enum print_stop_action
10176 print_it_catch_exception (struct breakpoint *b)
10177 {
10178 return print_it_exception (ex_catch_exception, b);
10179 }
10180
10181 static void
10182 print_one_catch_exception (struct breakpoint *b, CORE_ADDR *last_addr)
10183 {
10184 print_one_exception (ex_catch_exception, b, last_addr);
10185 }
10186
10187 static void
10188 print_mention_catch_exception (struct breakpoint *b)
10189 {
10190 print_mention_exception (ex_catch_exception, b);
10191 }
10192
10193 static struct breakpoint_ops catch_exception_breakpoint_ops =
10194 {
10195 NULL, /* insert */
10196 NULL, /* remove */
10197 NULL, /* breakpoint_hit */
10198 print_it_catch_exception,
10199 print_one_catch_exception,
10200 print_mention_catch_exception
10201 };
10202
10203 /* Virtual table for "catch exception unhandled" breakpoints. */
10204
10205 static enum print_stop_action
10206 print_it_catch_exception_unhandled (struct breakpoint *b)
10207 {
10208 return print_it_exception (ex_catch_exception_unhandled, b);
10209 }
10210
10211 static void
10212 print_one_catch_exception_unhandled (struct breakpoint *b, CORE_ADDR *last_addr)
10213 {
10214 print_one_exception (ex_catch_exception_unhandled, b, last_addr);
10215 }
10216
10217 static void
10218 print_mention_catch_exception_unhandled (struct breakpoint *b)
10219 {
10220 print_mention_exception (ex_catch_exception_unhandled, b);
10221 }
10222
10223 static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops = {
10224 NULL, /* insert */
10225 NULL, /* remove */
10226 NULL, /* breakpoint_hit */
10227 print_it_catch_exception_unhandled,
10228 print_one_catch_exception_unhandled,
10229 print_mention_catch_exception_unhandled
10230 };
10231
10232 /* Virtual table for "catch assert" breakpoints. */
10233
10234 static enum print_stop_action
10235 print_it_catch_assert (struct breakpoint *b)
10236 {
10237 return print_it_exception (ex_catch_assert, b);
10238 }
10239
10240 static void
10241 print_one_catch_assert (struct breakpoint *b, CORE_ADDR *last_addr)
10242 {
10243 print_one_exception (ex_catch_assert, b, last_addr);
10244 }
10245
10246 static void
10247 print_mention_catch_assert (struct breakpoint *b)
10248 {
10249 print_mention_exception (ex_catch_assert, b);
10250 }
10251
10252 static struct breakpoint_ops catch_assert_breakpoint_ops = {
10253 NULL, /* insert */
10254 NULL, /* remove */
10255 NULL, /* breakpoint_hit */
10256 print_it_catch_assert,
10257 print_one_catch_assert,
10258 print_mention_catch_assert
10259 };
10260
10261 /* Return non-zero if B is an Ada exception catchpoint. */
10262
10263 int
10264 ada_exception_catchpoint_p (struct breakpoint *b)
10265 {
10266 return (b->ops == &catch_exception_breakpoint_ops
10267 || b->ops == &catch_exception_unhandled_breakpoint_ops
10268 || b->ops == &catch_assert_breakpoint_ops);
10269 }
10270
10271 /* Return a newly allocated copy of the first space-separated token
10272 in ARGSP, and then adjust ARGSP to point immediately after that
10273 token.
10274
10275 Return NULL if ARGPS does not contain any more tokens. */
10276
10277 static char *
10278 ada_get_next_arg (char **argsp)
10279 {
10280 char *args = *argsp;
10281 char *end;
10282 char *result;
10283
10284 /* Skip any leading white space. */
10285
10286 while (isspace (*args))
10287 args++;
10288
10289 if (args[0] == '\0')
10290 return NULL; /* No more arguments. */
10291
10292 /* Find the end of the current argument. */
10293
10294 end = args;
10295 while (*end != '\0' && !isspace (*end))
10296 end++;
10297
10298 /* Adjust ARGSP to point to the start of the next argument. */
10299
10300 *argsp = end;
10301
10302 /* Make a copy of the current argument and return it. */
10303
10304 result = xmalloc (end - args + 1);
10305 strncpy (result, args, end - args);
10306 result[end - args] = '\0';
10307
10308 return result;
10309 }
10310
10311 /* Split the arguments specified in a "catch exception" command.
10312 Set EX to the appropriate catchpoint type.
10313 Set EXP_STRING to the name of the specific exception if
10314 specified by the user. */
10315
10316 static void
10317 catch_ada_exception_command_split (char *args,
10318 enum exception_catchpoint_kind *ex,
10319 char **exp_string)
10320 {
10321 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
10322 char *exception_name;
10323
10324 exception_name = ada_get_next_arg (&args);
10325 make_cleanup (xfree, exception_name);
10326
10327 /* Check that we do not have any more arguments. Anything else
10328 is unexpected. */
10329
10330 while (isspace (*args))
10331 args++;
10332
10333 if (args[0] != '\0')
10334 error (_("Junk at end of expression"));
10335
10336 discard_cleanups (old_chain);
10337
10338 if (exception_name == NULL)
10339 {
10340 /* Catch all exceptions. */
10341 *ex = ex_catch_exception;
10342 *exp_string = NULL;
10343 }
10344 else if (strcmp (exception_name, "unhandled") == 0)
10345 {
10346 /* Catch unhandled exceptions. */
10347 *ex = ex_catch_exception_unhandled;
10348 *exp_string = NULL;
10349 }
10350 else
10351 {
10352 /* Catch a specific exception. */
10353 *ex = ex_catch_exception;
10354 *exp_string = exception_name;
10355 }
10356 }
10357
10358 /* Return the name of the symbol on which we should break in order to
10359 implement a catchpoint of the EX kind. */
10360
10361 static const char *
10362 ada_exception_sym_name (enum exception_catchpoint_kind ex)
10363 {
10364 gdb_assert (exception_info != NULL);
10365
10366 switch (ex)
10367 {
10368 case ex_catch_exception:
10369 return (exception_info->catch_exception_sym);
10370 break;
10371 case ex_catch_exception_unhandled:
10372 return (exception_info->catch_exception_unhandled_sym);
10373 break;
10374 case ex_catch_assert:
10375 return (exception_info->catch_assert_sym);
10376 break;
10377 default:
10378 internal_error (__FILE__, __LINE__,
10379 _("unexpected catchpoint kind (%d)"), ex);
10380 }
10381 }
10382
10383 /* Return the breakpoint ops "virtual table" used for catchpoints
10384 of the EX kind. */
10385
10386 static struct breakpoint_ops *
10387 ada_exception_breakpoint_ops (enum exception_catchpoint_kind ex)
10388 {
10389 switch (ex)
10390 {
10391 case ex_catch_exception:
10392 return (&catch_exception_breakpoint_ops);
10393 break;
10394 case ex_catch_exception_unhandled:
10395 return (&catch_exception_unhandled_breakpoint_ops);
10396 break;
10397 case ex_catch_assert:
10398 return (&catch_assert_breakpoint_ops);
10399 break;
10400 default:
10401 internal_error (__FILE__, __LINE__,
10402 _("unexpected catchpoint kind (%d)"), ex);
10403 }
10404 }
10405
10406 /* Return the condition that will be used to match the current exception
10407 being raised with the exception that the user wants to catch. This
10408 assumes that this condition is used when the inferior just triggered
10409 an exception catchpoint.
10410
10411 The string returned is a newly allocated string that needs to be
10412 deallocated later. */
10413
10414 static char *
10415 ada_exception_catchpoint_cond_string (const char *exp_string)
10416 {
10417 int i;
10418
10419 /* The standard exceptions are a special case. They are defined in
10420 runtime units that have been compiled without debugging info; if
10421 EXP_STRING is the not-fully-qualified name of a standard
10422 exception (e.g. "constraint_error") then, during the evaluation
10423 of the condition expression, the symbol lookup on this name would
10424 *not* return this standard exception. The catchpoint condition
10425 may then be set only on user-defined exceptions which have the
10426 same not-fully-qualified name (e.g. my_package.constraint_error).
10427
10428 To avoid this unexcepted behavior, these standard exceptions are
10429 systematically prefixed by "standard". This means that "catch
10430 exception constraint_error" is rewritten into "catch exception
10431 standard.constraint_error".
10432
10433 If an exception named contraint_error is defined in another package of
10434 the inferior program, then the only way to specify this exception as a
10435 breakpoint condition is to use its fully-qualified named:
10436 e.g. my_package.constraint_error. */
10437
10438 for (i = 0; i < sizeof (standard_exc) / sizeof (char *); i++)
10439 {
10440 if (strcmp (standard_exc [i], exp_string) == 0)
10441 {
10442 return xstrprintf ("long_integer (e) = long_integer (&standard.%s)",
10443 exp_string);
10444 }
10445 }
10446 return xstrprintf ("long_integer (e) = long_integer (&%s)", exp_string);
10447 }
10448
10449 /* Return the expression corresponding to COND_STRING evaluated at SAL. */
10450
10451 static struct expression *
10452 ada_parse_catchpoint_condition (char *cond_string,
10453 struct symtab_and_line sal)
10454 {
10455 return (parse_exp_1 (&cond_string, block_for_pc (sal.pc), 0));
10456 }
10457
10458 /* Return the symtab_and_line that should be used to insert an exception
10459 catchpoint of the TYPE kind.
10460
10461 EX_STRING should contain the name of a specific exception
10462 that the catchpoint should catch, or NULL otherwise.
10463
10464 The idea behind all the remaining parameters is that their names match
10465 the name of certain fields in the breakpoint structure that are used to
10466 handle exception catchpoints. This function returns the value to which
10467 these fields should be set, depending on the type of catchpoint we need
10468 to create.
10469
10470 If COND and COND_STRING are both non-NULL, any value they might
10471 hold will be free'ed, and then replaced by newly allocated ones.
10472 These parameters are left untouched otherwise. */
10473
10474 static struct symtab_and_line
10475 ada_exception_sal (enum exception_catchpoint_kind ex, char *exp_string,
10476 char **addr_string, char **cond_string,
10477 struct expression **cond, struct breakpoint_ops **ops)
10478 {
10479 const char *sym_name;
10480 struct symbol *sym;
10481 struct symtab_and_line sal;
10482
10483 /* First, find out which exception support info to use. */
10484 ada_exception_support_info_sniffer ();
10485
10486 /* Then lookup the function on which we will break in order to catch
10487 the Ada exceptions requested by the user. */
10488
10489 sym_name = ada_exception_sym_name (ex);
10490 sym = standard_lookup (sym_name, NULL, VAR_DOMAIN);
10491
10492 /* The symbol we're looking up is provided by a unit in the GNAT runtime
10493 that should be compiled with debugging information. As a result, we
10494 expect to find that symbol in the symtabs. If we don't find it, then
10495 the target most likely does not support Ada exceptions, or we cannot
10496 insert exception breakpoints yet, because the GNAT runtime hasn't been
10497 loaded yet. */
10498
10499 /* brobecker/2006-12-26: It is conceivable that the runtime was compiled
10500 in such a way that no debugging information is produced for the symbol
10501 we are looking for. In this case, we could search the minimal symbols
10502 as a fall-back mechanism. This would still be operating in degraded
10503 mode, however, as we would still be missing the debugging information
10504 that is needed in order to extract the name of the exception being
10505 raised (this name is printed in the catchpoint message, and is also
10506 used when trying to catch a specific exception). We do not handle
10507 this case for now. */
10508
10509 if (sym == NULL)
10510 error (_("Unable to break on '%s' in this configuration."), sym_name);
10511
10512 /* Make sure that the symbol we found corresponds to a function. */
10513 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
10514 error (_("Symbol \"%s\" is not a function (class = %d)"),
10515 sym_name, SYMBOL_CLASS (sym));
10516
10517 sal = find_function_start_sal (sym, 1);
10518
10519 /* Set ADDR_STRING. */
10520
10521 *addr_string = xstrdup (sym_name);
10522
10523 /* Set the COND and COND_STRING (if not NULL). */
10524
10525 if (cond_string != NULL && cond != NULL)
10526 {
10527 if (*cond_string != NULL)
10528 {
10529 xfree (*cond_string);
10530 *cond_string = NULL;
10531 }
10532 if (*cond != NULL)
10533 {
10534 xfree (*cond);
10535 *cond = NULL;
10536 }
10537 if (exp_string != NULL)
10538 {
10539 *cond_string = ada_exception_catchpoint_cond_string (exp_string);
10540 *cond = ada_parse_catchpoint_condition (*cond_string, sal);
10541 }
10542 }
10543
10544 /* Set OPS. */
10545 *ops = ada_exception_breakpoint_ops (ex);
10546
10547 return sal;
10548 }
10549
10550 /* Parse the arguments (ARGS) of the "catch exception" command.
10551
10552 Set TYPE to the appropriate exception catchpoint type.
10553 If the user asked the catchpoint to catch only a specific
10554 exception, then save the exception name in ADDR_STRING.
10555
10556 See ada_exception_sal for a description of all the remaining
10557 function arguments of this function. */
10558
10559 struct symtab_and_line
10560 ada_decode_exception_location (char *args, char **addr_string,
10561 char **exp_string, char **cond_string,
10562 struct expression **cond,
10563 struct breakpoint_ops **ops)
10564 {
10565 enum exception_catchpoint_kind ex;
10566
10567 catch_ada_exception_command_split (args, &ex, exp_string);
10568 return ada_exception_sal (ex, *exp_string, addr_string, cond_string,
10569 cond, ops);
10570 }
10571
10572 struct symtab_and_line
10573 ada_decode_assert_location (char *args, char **addr_string,
10574 struct breakpoint_ops **ops)
10575 {
10576 /* Check that no argument where provided at the end of the command. */
10577
10578 if (args != NULL)
10579 {
10580 while (isspace (*args))
10581 args++;
10582 if (*args != '\0')
10583 error (_("Junk at end of arguments."));
10584 }
10585
10586 return ada_exception_sal (ex_catch_assert, NULL, addr_string, NULL, NULL,
10587 ops);
10588 }
10589
10590 /* Operators */
10591 /* Information about operators given special treatment in functions
10592 below. */
10593 /* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */
10594
10595 #define ADA_OPERATORS \
10596 OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \
10597 OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \
10598 OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \
10599 OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \
10600 OP_DEFN (OP_ATR_LAST, 1, 2, 0) \
10601 OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \
10602 OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \
10603 OP_DEFN (OP_ATR_MAX, 1, 3, 0) \
10604 OP_DEFN (OP_ATR_MIN, 1, 3, 0) \
10605 OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \
10606 OP_DEFN (OP_ATR_POS, 1, 2, 0) \
10607 OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \
10608 OP_DEFN (OP_ATR_TAG, 1, 1, 0) \
10609 OP_DEFN (OP_ATR_VAL, 1, 2, 0) \
10610 OP_DEFN (UNOP_QUAL, 3, 1, 0) \
10611 OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \
10612 OP_DEFN (OP_OTHERS, 1, 1, 0) \
10613 OP_DEFN (OP_POSITIONAL, 3, 1, 0) \
10614 OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0)
10615
10616 static void
10617 ada_operator_length (struct expression *exp, int pc, int *oplenp, int *argsp)
10618 {
10619 switch (exp->elts[pc - 1].opcode)
10620 {
10621 default:
10622 operator_length_standard (exp, pc, oplenp, argsp);
10623 break;
10624
10625 #define OP_DEFN(op, len, args, binop) \
10626 case op: *oplenp = len; *argsp = args; break;
10627 ADA_OPERATORS;
10628 #undef OP_DEFN
10629
10630 case OP_AGGREGATE:
10631 *oplenp = 3;
10632 *argsp = longest_to_int (exp->elts[pc - 2].longconst);
10633 break;
10634
10635 case OP_CHOICES:
10636 *oplenp = 3;
10637 *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1;
10638 break;
10639 }
10640 }
10641
10642 static char *
10643 ada_op_name (enum exp_opcode opcode)
10644 {
10645 switch (opcode)
10646 {
10647 default:
10648 return op_name_standard (opcode);
10649
10650 #define OP_DEFN(op, len, args, binop) case op: return #op;
10651 ADA_OPERATORS;
10652 #undef OP_DEFN
10653
10654 case OP_AGGREGATE:
10655 return "OP_AGGREGATE";
10656 case OP_CHOICES:
10657 return "OP_CHOICES";
10658 case OP_NAME:
10659 return "OP_NAME";
10660 }
10661 }
10662
10663 /* As for operator_length, but assumes PC is pointing at the first
10664 element of the operator, and gives meaningful results only for the
10665 Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */
10666
10667 static void
10668 ada_forward_operator_length (struct expression *exp, int pc,
10669 int *oplenp, int *argsp)
10670 {
10671 switch (exp->elts[pc].opcode)
10672 {
10673 default:
10674 *oplenp = *argsp = 0;
10675 break;
10676
10677 #define OP_DEFN(op, len, args, binop) \
10678 case op: *oplenp = len; *argsp = args; break;
10679 ADA_OPERATORS;
10680 #undef OP_DEFN
10681
10682 case OP_AGGREGATE:
10683 *oplenp = 3;
10684 *argsp = longest_to_int (exp->elts[pc + 1].longconst);
10685 break;
10686
10687 case OP_CHOICES:
10688 *oplenp = 3;
10689 *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1;
10690 break;
10691
10692 case OP_STRING:
10693 case OP_NAME:
10694 {
10695 int len = longest_to_int (exp->elts[pc + 1].longconst);
10696 *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1);
10697 *argsp = 0;
10698 break;
10699 }
10700 }
10701 }
10702
10703 static int
10704 ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
10705 {
10706 enum exp_opcode op = exp->elts[elt].opcode;
10707 int oplen, nargs;
10708 int pc = elt;
10709 int i;
10710
10711 ada_forward_operator_length (exp, elt, &oplen, &nargs);
10712
10713 switch (op)
10714 {
10715 /* Ada attributes ('Foo). */
10716 case OP_ATR_FIRST:
10717 case OP_ATR_LAST:
10718 case OP_ATR_LENGTH:
10719 case OP_ATR_IMAGE:
10720 case OP_ATR_MAX:
10721 case OP_ATR_MIN:
10722 case OP_ATR_MODULUS:
10723 case OP_ATR_POS:
10724 case OP_ATR_SIZE:
10725 case OP_ATR_TAG:
10726 case OP_ATR_VAL:
10727 break;
10728
10729 case UNOP_IN_RANGE:
10730 case UNOP_QUAL:
10731 /* XXX: gdb_sprint_host_address, type_sprint */
10732 fprintf_filtered (stream, _("Type @"));
10733 gdb_print_host_address (exp->elts[pc + 1].type, stream);
10734 fprintf_filtered (stream, " (");
10735 type_print (exp->elts[pc + 1].type, NULL, stream, 0);
10736 fprintf_filtered (stream, ")");
10737 break;
10738 case BINOP_IN_BOUNDS:
10739 fprintf_filtered (stream, " (%d)",
10740 longest_to_int (exp->elts[pc + 2].longconst));
10741 break;
10742 case TERNOP_IN_RANGE:
10743 break;
10744
10745 case OP_AGGREGATE:
10746 case OP_OTHERS:
10747 case OP_DISCRETE_RANGE:
10748 case OP_POSITIONAL:
10749 case OP_CHOICES:
10750 break;
10751
10752 case OP_NAME:
10753 case OP_STRING:
10754 {
10755 char *name = &exp->elts[elt + 2].string;
10756 int len = longest_to_int (exp->elts[elt + 1].longconst);
10757 fprintf_filtered (stream, "Text: `%.*s'", len, name);
10758 break;
10759 }
10760
10761 default:
10762 return dump_subexp_body_standard (exp, stream, elt);
10763 }
10764
10765 elt += oplen;
10766 for (i = 0; i < nargs; i += 1)
10767 elt = dump_subexp (exp, stream, elt);
10768
10769 return elt;
10770 }
10771
10772 /* The Ada extension of print_subexp (q.v.). */
10773
10774 static void
10775 ada_print_subexp (struct expression *exp, int *pos,
10776 struct ui_file *stream, enum precedence prec)
10777 {
10778 int oplen, nargs, i;
10779 int pc = *pos;
10780 enum exp_opcode op = exp->elts[pc].opcode;
10781
10782 ada_forward_operator_length (exp, pc, &oplen, &nargs);
10783
10784 *pos += oplen;
10785 switch (op)
10786 {
10787 default:
10788 *pos -= oplen;
10789 print_subexp_standard (exp, pos, stream, prec);
10790 return;
10791
10792 case OP_VAR_VALUE:
10793 fputs_filtered (SYMBOL_NATURAL_NAME (exp->elts[pc + 2].symbol), stream);
10794 return;
10795
10796 case BINOP_IN_BOUNDS:
10797 /* XXX: sprint_subexp */
10798 print_subexp (exp, pos, stream, PREC_SUFFIX);
10799 fputs_filtered (" in ", stream);
10800 print_subexp (exp, pos, stream, PREC_SUFFIX);
10801 fputs_filtered ("'range", stream);
10802 if (exp->elts[pc + 1].longconst > 1)
10803 fprintf_filtered (stream, "(%ld)",
10804 (long) exp->elts[pc + 1].longconst);
10805 return;
10806
10807 case TERNOP_IN_RANGE:
10808 if (prec >= PREC_EQUAL)
10809 fputs_filtered ("(", stream);
10810 /* XXX: sprint_subexp */
10811 print_subexp (exp, pos, stream, PREC_SUFFIX);
10812 fputs_filtered (" in ", stream);
10813 print_subexp (exp, pos, stream, PREC_EQUAL);
10814 fputs_filtered (" .. ", stream);
10815 print_subexp (exp, pos, stream, PREC_EQUAL);
10816 if (prec >= PREC_EQUAL)
10817 fputs_filtered (")", stream);
10818 return;
10819
10820 case OP_ATR_FIRST:
10821 case OP_ATR_LAST:
10822 case OP_ATR_LENGTH:
10823 case OP_ATR_IMAGE:
10824 case OP_ATR_MAX:
10825 case OP_ATR_MIN:
10826 case OP_ATR_MODULUS:
10827 case OP_ATR_POS:
10828 case OP_ATR_SIZE:
10829 case OP_ATR_TAG:
10830 case OP_ATR_VAL:
10831 if (exp->elts[*pos].opcode == OP_TYPE)
10832 {
10833 if (TYPE_CODE (exp->elts[*pos + 1].type) != TYPE_CODE_VOID)
10834 LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0);
10835 *pos += 3;
10836 }
10837 else
10838 print_subexp (exp, pos, stream, PREC_SUFFIX);
10839 fprintf_filtered (stream, "'%s", ada_attribute_name (op));
10840 if (nargs > 1)
10841 {
10842 int tem;
10843 for (tem = 1; tem < nargs; tem += 1)
10844 {
10845 fputs_filtered ((tem == 1) ? " (" : ", ", stream);
10846 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
10847 }
10848 fputs_filtered (")", stream);
10849 }
10850 return;
10851
10852 case UNOP_QUAL:
10853 type_print (exp->elts[pc + 1].type, "", stream, 0);
10854 fputs_filtered ("'(", stream);
10855 print_subexp (exp, pos, stream, PREC_PREFIX);
10856 fputs_filtered (")", stream);
10857 return;
10858
10859 case UNOP_IN_RANGE:
10860 /* XXX: sprint_subexp */
10861 print_subexp (exp, pos, stream, PREC_SUFFIX);
10862 fputs_filtered (" in ", stream);
10863 LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0);
10864 return;
10865
10866 case OP_DISCRETE_RANGE:
10867 print_subexp (exp, pos, stream, PREC_SUFFIX);
10868 fputs_filtered ("..", stream);
10869 print_subexp (exp, pos, stream, PREC_SUFFIX);
10870 return;
10871
10872 case OP_OTHERS:
10873 fputs_filtered ("others => ", stream);
10874 print_subexp (exp, pos, stream, PREC_SUFFIX);
10875 return;
10876
10877 case OP_CHOICES:
10878 for (i = 0; i < nargs-1; i += 1)
10879 {
10880 if (i > 0)
10881 fputs_filtered ("|", stream);
10882 print_subexp (exp, pos, stream, PREC_SUFFIX);
10883 }
10884 fputs_filtered (" => ", stream);
10885 print_subexp (exp, pos, stream, PREC_SUFFIX);
10886 return;
10887
10888 case OP_POSITIONAL:
10889 print_subexp (exp, pos, stream, PREC_SUFFIX);
10890 return;
10891
10892 case OP_AGGREGATE:
10893 fputs_filtered ("(", stream);
10894 for (i = 0; i < nargs; i += 1)
10895 {
10896 if (i > 0)
10897 fputs_filtered (", ", stream);
10898 print_subexp (exp, pos, stream, PREC_SUFFIX);
10899 }
10900 fputs_filtered (")", stream);
10901 return;
10902 }
10903 }
10904
10905 /* Table mapping opcodes into strings for printing operators
10906 and precedences of the operators. */
10907
10908 static const struct op_print ada_op_print_tab[] = {
10909 {":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
10910 {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
10911 {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
10912 {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
10913 {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
10914 {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
10915 {"=", BINOP_EQUAL, PREC_EQUAL, 0},
10916 {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
10917 {"<=", BINOP_LEQ, PREC_ORDER, 0},
10918 {">=", BINOP_GEQ, PREC_ORDER, 0},
10919 {">", BINOP_GTR, PREC_ORDER, 0},
10920 {"<", BINOP_LESS, PREC_ORDER, 0},
10921 {">>", BINOP_RSH, PREC_SHIFT, 0},
10922 {"<<", BINOP_LSH, PREC_SHIFT, 0},
10923 {"+", BINOP_ADD, PREC_ADD, 0},
10924 {"-", BINOP_SUB, PREC_ADD, 0},
10925 {"&", BINOP_CONCAT, PREC_ADD, 0},
10926 {"*", BINOP_MUL, PREC_MUL, 0},
10927 {"/", BINOP_DIV, PREC_MUL, 0},
10928 {"rem", BINOP_REM, PREC_MUL, 0},
10929 {"mod", BINOP_MOD, PREC_MUL, 0},
10930 {"**", BINOP_EXP, PREC_REPEAT, 0},
10931 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
10932 {"-", UNOP_NEG, PREC_PREFIX, 0},
10933 {"+", UNOP_PLUS, PREC_PREFIX, 0},
10934 {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
10935 {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0},
10936 {"abs ", UNOP_ABS, PREC_PREFIX, 0},
10937 {".all", UNOP_IND, PREC_SUFFIX, 1},
10938 {"'access", UNOP_ADDR, PREC_SUFFIX, 1},
10939 {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1},
10940 {NULL, 0, 0, 0}
10941 };
10942 \f
10943 enum ada_primitive_types {
10944 ada_primitive_type_int,
10945 ada_primitive_type_long,
10946 ada_primitive_type_short,
10947 ada_primitive_type_char,
10948 ada_primitive_type_float,
10949 ada_primitive_type_double,
10950 ada_primitive_type_void,
10951 ada_primitive_type_long_long,
10952 ada_primitive_type_long_double,
10953 ada_primitive_type_natural,
10954 ada_primitive_type_positive,
10955 ada_primitive_type_system_address,
10956 nr_ada_primitive_types
10957 };
10958
10959 static void
10960 ada_language_arch_info (struct gdbarch *gdbarch,
10961 struct language_arch_info *lai)
10962 {
10963 const struct builtin_type *builtin = builtin_type (gdbarch);
10964 lai->primitive_type_vector
10965 = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_ada_primitive_types + 1,
10966 struct type *);
10967 lai->primitive_type_vector [ada_primitive_type_int] =
10968 init_type (TYPE_CODE_INT,
10969 gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT,
10970 0, "integer", (struct objfile *) NULL);
10971 lai->primitive_type_vector [ada_primitive_type_long] =
10972 init_type (TYPE_CODE_INT,
10973 gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT,
10974 0, "long_integer", (struct objfile *) NULL);
10975 lai->primitive_type_vector [ada_primitive_type_short] =
10976 init_type (TYPE_CODE_INT,
10977 gdbarch_short_bit (gdbarch) / TARGET_CHAR_BIT,
10978 0, "short_integer", (struct objfile *) NULL);
10979 lai->string_char_type =
10980 lai->primitive_type_vector [ada_primitive_type_char] =
10981 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
10982 0, "character", (struct objfile *) NULL);
10983 lai->primitive_type_vector [ada_primitive_type_float] =
10984 init_type (TYPE_CODE_FLT,
10985 gdbarch_float_bit (gdbarch)/ TARGET_CHAR_BIT,
10986 0, "float", (struct objfile *) NULL);
10987 lai->primitive_type_vector [ada_primitive_type_double] =
10988 init_type (TYPE_CODE_FLT,
10989 gdbarch_double_bit (gdbarch) / TARGET_CHAR_BIT,
10990 0, "long_float", (struct objfile *) NULL);
10991 lai->primitive_type_vector [ada_primitive_type_long_long] =
10992 init_type (TYPE_CODE_INT,
10993 gdbarch_long_long_bit (gdbarch) / TARGET_CHAR_BIT,
10994 0, "long_long_integer", (struct objfile *) NULL);
10995 lai->primitive_type_vector [ada_primitive_type_long_double] =
10996 init_type (TYPE_CODE_FLT,
10997 gdbarch_double_bit (gdbarch) / TARGET_CHAR_BIT,
10998 0, "long_long_float", (struct objfile *) NULL);
10999 lai->primitive_type_vector [ada_primitive_type_natural] =
11000 init_type (TYPE_CODE_INT,
11001 gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT,
11002 0, "natural", (struct objfile *) NULL);
11003 lai->primitive_type_vector [ada_primitive_type_positive] =
11004 init_type (TYPE_CODE_INT,
11005 gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT,
11006 0, "positive", (struct objfile *) NULL);
11007 lai->primitive_type_vector [ada_primitive_type_void] = builtin->builtin_void;
11008
11009 lai->primitive_type_vector [ada_primitive_type_system_address] =
11010 lookup_pointer_type (init_type (TYPE_CODE_VOID, 1, 0, "void",
11011 (struct objfile *) NULL));
11012 TYPE_NAME (lai->primitive_type_vector [ada_primitive_type_system_address])
11013 = "system__address";
11014
11015 lai->bool_type_symbol = "boolean";
11016 lai->bool_type_default = builtin->builtin_bool;
11017 }
11018 \f
11019 /* Language vector */
11020
11021 /* Not really used, but needed in the ada_language_defn. */
11022
11023 static void
11024 emit_char (int c, struct ui_file *stream, int quoter)
11025 {
11026 ada_emit_char (c, stream, quoter, 1);
11027 }
11028
11029 static int
11030 parse (void)
11031 {
11032 warnings_issued = 0;
11033 return ada_parse ();
11034 }
11035
11036 static const struct exp_descriptor ada_exp_descriptor = {
11037 ada_print_subexp,
11038 ada_operator_length,
11039 ada_op_name,
11040 ada_dump_subexp_body,
11041 ada_evaluate_subexp
11042 };
11043
11044 const struct language_defn ada_language_defn = {
11045 "ada", /* Language name */
11046 language_ada,
11047 range_check_off,
11048 type_check_off,
11049 case_sensitive_on, /* Yes, Ada is case-insensitive, but
11050 that's not quite what this means. */
11051 array_row_major,
11052 macro_expansion_no,
11053 &ada_exp_descriptor,
11054 parse,
11055 ada_error,
11056 resolve,
11057 ada_printchar, /* Print a character constant */
11058 ada_printstr, /* Function to print string constant */
11059 emit_char, /* Function to print single char (not used) */
11060 ada_print_type, /* Print a type using appropriate syntax */
11061 default_print_typedef, /* Print a typedef using appropriate syntax */
11062 ada_val_print, /* Print a value using appropriate syntax */
11063 ada_value_print, /* Print a top-level value */
11064 NULL, /* Language specific skip_trampoline */
11065 NULL, /* name_of_this */
11066 ada_lookup_symbol_nonlocal, /* Looking up non-local symbols. */
11067 basic_lookup_transparent_type, /* lookup_transparent_type */
11068 ada_la_decode, /* Language specific symbol demangler */
11069 NULL, /* Language specific class_name_from_physname */
11070 ada_op_print_tab, /* expression operators for printing */
11071 0, /* c-style arrays */
11072 1, /* String lower bound */
11073 ada_get_gdb_completer_word_break_characters,
11074 ada_make_symbol_completion_list,
11075 ada_language_arch_info,
11076 ada_print_array_index,
11077 default_pass_by_reference,
11078 LANG_MAGIC
11079 };
11080
11081 void
11082 _initialize_ada_language (void)
11083 {
11084 add_language (&ada_language_defn);
11085
11086 varsize_limit = 65536;
11087
11088 obstack_init (&symbol_list_obstack);
11089
11090 decoded_names_store = htab_create_alloc
11091 (256, htab_hash_string, (int (*)(const void *, const void *)) streq,
11092 NULL, xcalloc, xfree);
11093
11094 observer_attach_executable_changed (ada_executable_changed_observer);
11095 }
This page took 0.299882 seconds and 5 git commands to generate.