]>
Commit | Line | Data |
---|---|---|
197e01b6 | 1 | /* Ada language support routines for GDB, the GNU debugger. Copyright (C) |
10a2c479 | 2 | |
f7f9143b JB |
3 | 1992, 1993, 1994, 1997, 1998, 1999, 2000, 2003, 2004, 2005, 2007 |
4 | Free Software Foundation, Inc. | |
14f9c5c9 | 5 | |
a9762ec7 | 6 | This file is part of GDB. |
14f9c5c9 | 7 | |
a9762ec7 JB |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 3 of the License, or | |
11 | (at your option) any later version. | |
14f9c5c9 | 12 | |
a9762ec7 JB |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
14f9c5c9 | 17 | |
a9762ec7 JB |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
14f9c5c9 | 20 | |
96d887e8 | 21 | |
4c4b4cd2 | 22 | #include "defs.h" |
14f9c5c9 | 23 | #include <stdio.h> |
0c30c098 | 24 | #include "gdb_string.h" |
14f9c5c9 AS |
25 | #include <ctype.h> |
26 | #include <stdarg.h> | |
27 | #include "demangle.h" | |
4c4b4cd2 PH |
28 | #include "gdb_regex.h" |
29 | #include "frame.h" | |
14f9c5c9 AS |
30 | #include "symtab.h" |
31 | #include "gdbtypes.h" | |
32 | #include "gdbcmd.h" | |
33 | #include "expression.h" | |
34 | #include "parser-defs.h" | |
35 | #include "language.h" | |
36 | #include "c-lang.h" | |
37 | #include "inferior.h" | |
38 | #include "symfile.h" | |
39 | #include "objfiles.h" | |
40 | #include "breakpoint.h" | |
41 | #include "gdbcore.h" | |
4c4b4cd2 PH |
42 | #include "hashtab.h" |
43 | #include "gdb_obstack.h" | |
14f9c5c9 | 44 | #include "ada-lang.h" |
4c4b4cd2 PH |
45 | #include "completer.h" |
46 | #include "gdb_stat.h" | |
47 | #ifdef UI_OUT | |
14f9c5c9 | 48 | #include "ui-out.h" |
4c4b4cd2 | 49 | #endif |
fe898f56 | 50 | #include "block.h" |
04714b91 | 51 | #include "infcall.h" |
de4f826b | 52 | #include "dictionary.h" |
60250e8b | 53 | #include "exceptions.h" |
f7f9143b JB |
54 | #include "annotate.h" |
55 | #include "valprint.h" | |
9bbc9174 | 56 | #include "source.h" |
0259addd | 57 | #include "observer.h" |
14f9c5c9 | 58 | |
4c4b4cd2 PH |
59 | #ifndef ADA_RETAIN_DOTS |
60 | #define ADA_RETAIN_DOTS 0 | |
61 | #endif | |
62 | ||
63 | /* Define whether or not the C operator '/' truncates towards zero for | |
64 | differently signed operands (truncation direction is undefined in C). | |
65 | Copied from valarith.c. */ | |
66 | ||
67 | #ifndef TRUNCATION_TOWARDS_ZERO | |
68 | #define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2) | |
69 | #endif | |
70 | ||
4c4b4cd2 | 71 | |
4c4b4cd2 | 72 | static void extract_string (CORE_ADDR addr, char *buf); |
14f9c5c9 | 73 | |
14f9c5c9 AS |
74 | static void modify_general_field (char *, LONGEST, int, int); |
75 | ||
d2e4a39e | 76 | static struct type *desc_base_type (struct type *); |
14f9c5c9 | 77 | |
d2e4a39e | 78 | static struct type *desc_bounds_type (struct type *); |
14f9c5c9 | 79 | |
d2e4a39e | 80 | static struct value *desc_bounds (struct value *); |
14f9c5c9 | 81 | |
d2e4a39e | 82 | static int fat_pntr_bounds_bitpos (struct type *); |
14f9c5c9 | 83 | |
d2e4a39e | 84 | static int fat_pntr_bounds_bitsize (struct type *); |
14f9c5c9 | 85 | |
d2e4a39e | 86 | static struct type *desc_data_type (struct type *); |
14f9c5c9 | 87 | |
d2e4a39e | 88 | static struct value *desc_data (struct value *); |
14f9c5c9 | 89 | |
d2e4a39e | 90 | static int fat_pntr_data_bitpos (struct type *); |
14f9c5c9 | 91 | |
d2e4a39e | 92 | static int fat_pntr_data_bitsize (struct type *); |
14f9c5c9 | 93 | |
d2e4a39e | 94 | static struct value *desc_one_bound (struct value *, int, int); |
14f9c5c9 | 95 | |
d2e4a39e | 96 | static int desc_bound_bitpos (struct type *, int, int); |
14f9c5c9 | 97 | |
d2e4a39e | 98 | static int desc_bound_bitsize (struct type *, int, int); |
14f9c5c9 | 99 | |
d2e4a39e | 100 | static struct type *desc_index_type (struct type *, int); |
14f9c5c9 | 101 | |
d2e4a39e | 102 | static int desc_arity (struct type *); |
14f9c5c9 | 103 | |
d2e4a39e | 104 | static int ada_type_match (struct type *, struct type *, int); |
14f9c5c9 | 105 | |
d2e4a39e | 106 | static int ada_args_match (struct symbol *, struct value **, int); |
14f9c5c9 | 107 | |
4c4b4cd2 | 108 | static struct value *ensure_lval (struct value *, CORE_ADDR *); |
14f9c5c9 | 109 | |
d2e4a39e | 110 | static struct value *convert_actual (struct value *, struct type *, |
4c4b4cd2 | 111 | CORE_ADDR *); |
14f9c5c9 | 112 | |
d2e4a39e | 113 | static struct value *make_array_descriptor (struct type *, struct value *, |
4c4b4cd2 | 114 | CORE_ADDR *); |
14f9c5c9 | 115 | |
4c4b4cd2 | 116 | static void ada_add_block_symbols (struct obstack *, |
76a01679 | 117 | struct block *, const char *, |
4c4b4cd2 | 118 | domain_enum, struct objfile *, |
76a01679 | 119 | struct symtab *, int); |
14f9c5c9 | 120 | |
4c4b4cd2 | 121 | static int is_nonfunction (struct ada_symbol_info *, int); |
14f9c5c9 | 122 | |
76a01679 JB |
123 | static void add_defn_to_vec (struct obstack *, struct symbol *, |
124 | struct block *, struct symtab *); | |
14f9c5c9 | 125 | |
4c4b4cd2 PH |
126 | static int num_defns_collected (struct obstack *); |
127 | ||
128 | static struct ada_symbol_info *defns_collected (struct obstack *, int); | |
14f9c5c9 | 129 | |
d2e4a39e | 130 | static struct partial_symbol *ada_lookup_partial_symbol (struct partial_symtab |
76a01679 JB |
131 | *, const char *, int, |
132 | domain_enum, int); | |
14f9c5c9 | 133 | |
d2e4a39e | 134 | static struct symtab *symtab_for_sym (struct symbol *); |
14f9c5c9 | 135 | |
4c4b4cd2 | 136 | static struct value *resolve_subexp (struct expression **, int *, int, |
76a01679 | 137 | struct type *); |
14f9c5c9 | 138 | |
d2e4a39e | 139 | static void replace_operator_with_call (struct expression **, int, int, int, |
4c4b4cd2 | 140 | struct symbol *, struct block *); |
14f9c5c9 | 141 | |
d2e4a39e | 142 | static int possible_user_operator_p (enum exp_opcode, struct value **); |
14f9c5c9 | 143 | |
4c4b4cd2 PH |
144 | static char *ada_op_name (enum exp_opcode); |
145 | ||
146 | static const char *ada_decoded_op_name (enum exp_opcode); | |
14f9c5c9 | 147 | |
d2e4a39e | 148 | static int numeric_type_p (struct type *); |
14f9c5c9 | 149 | |
d2e4a39e | 150 | static int integer_type_p (struct type *); |
14f9c5c9 | 151 | |
d2e4a39e | 152 | static int scalar_type_p (struct type *); |
14f9c5c9 | 153 | |
d2e4a39e | 154 | static int discrete_type_p (struct type *); |
14f9c5c9 | 155 | |
aeb5907d JB |
156 | static enum ada_renaming_category parse_old_style_renaming (struct type *, |
157 | const char **, | |
158 | int *, | |
159 | const char **); | |
160 | ||
161 | static struct symbol *find_old_style_renaming_symbol (const char *, | |
162 | struct block *); | |
163 | ||
4c4b4cd2 | 164 | static struct type *ada_lookup_struct_elt_type (struct type *, char *, |
76a01679 | 165 | int, int, int *); |
4c4b4cd2 | 166 | |
d2e4a39e | 167 | static struct value *evaluate_subexp (struct type *, struct expression *, |
4c4b4cd2 | 168 | int *, enum noside); |
14f9c5c9 | 169 | |
d2e4a39e | 170 | static struct value *evaluate_subexp_type (struct expression *, int *); |
14f9c5c9 | 171 | |
d2e4a39e | 172 | static int is_dynamic_field (struct type *, int); |
14f9c5c9 | 173 | |
10a2c479 | 174 | static struct type *to_fixed_variant_branch_type (struct type *, |
fc1a4b47 | 175 | const gdb_byte *, |
4c4b4cd2 PH |
176 | CORE_ADDR, struct value *); |
177 | ||
178 | static struct type *to_fixed_array_type (struct type *, struct value *, int); | |
14f9c5c9 | 179 | |
d2e4a39e | 180 | static struct type *to_fixed_range_type (char *, struct value *, |
4c4b4cd2 | 181 | struct objfile *); |
14f9c5c9 | 182 | |
d2e4a39e | 183 | static struct type *to_static_fixed_type (struct type *); |
14f9c5c9 | 184 | |
d2e4a39e | 185 | static struct value *unwrap_value (struct value *); |
14f9c5c9 | 186 | |
d2e4a39e | 187 | static struct type *packed_array_type (struct type *, long *); |
14f9c5c9 | 188 | |
d2e4a39e | 189 | static struct type *decode_packed_array_type (struct type *); |
14f9c5c9 | 190 | |
d2e4a39e | 191 | static struct value *decode_packed_array (struct value *); |
14f9c5c9 | 192 | |
d2e4a39e | 193 | static struct value *value_subscript_packed (struct value *, int, |
4c4b4cd2 | 194 | struct value **); |
14f9c5c9 | 195 | |
52ce6436 PH |
196 | static void move_bits (gdb_byte *, int, const gdb_byte *, int, int); |
197 | ||
4c4b4cd2 PH |
198 | static struct value *coerce_unspec_val_to_type (struct value *, |
199 | struct type *); | |
14f9c5c9 | 200 | |
d2e4a39e | 201 | static struct value *get_var_value (char *, char *); |
14f9c5c9 | 202 | |
d2e4a39e | 203 | static int lesseq_defined_than (struct symbol *, struct symbol *); |
14f9c5c9 | 204 | |
d2e4a39e | 205 | static int equiv_types (struct type *, struct type *); |
14f9c5c9 | 206 | |
d2e4a39e | 207 | static int is_name_suffix (const char *); |
14f9c5c9 | 208 | |
d2e4a39e | 209 | static int wild_match (const char *, int, const char *); |
14f9c5c9 | 210 | |
d2e4a39e | 211 | static struct value *ada_coerce_ref (struct value *); |
14f9c5c9 | 212 | |
4c4b4cd2 PH |
213 | static LONGEST pos_atr (struct value *); |
214 | ||
d2e4a39e | 215 | static struct value *value_pos_atr (struct value *); |
14f9c5c9 | 216 | |
d2e4a39e | 217 | static struct value *value_val_atr (struct type *, struct value *); |
14f9c5c9 | 218 | |
4c4b4cd2 PH |
219 | static struct symbol *standard_lookup (const char *, const struct block *, |
220 | domain_enum); | |
14f9c5c9 | 221 | |
4c4b4cd2 PH |
222 | static struct value *ada_search_struct_field (char *, struct value *, int, |
223 | struct type *); | |
224 | ||
225 | static struct value *ada_value_primitive_field (struct value *, int, int, | |
226 | struct type *); | |
227 | ||
76a01679 | 228 | static int find_struct_field (char *, struct type *, int, |
52ce6436 | 229 | struct type **, int *, int *, int *, int *); |
4c4b4cd2 PH |
230 | |
231 | static struct value *ada_to_fixed_value_create (struct type *, CORE_ADDR, | |
232 | struct value *); | |
233 | ||
234 | static struct value *ada_to_fixed_value (struct value *); | |
14f9c5c9 | 235 | |
4c4b4cd2 PH |
236 | static int ada_resolve_function (struct ada_symbol_info *, int, |
237 | struct value **, int, const char *, | |
238 | struct type *); | |
239 | ||
240 | static struct value *ada_coerce_to_simple_array (struct value *); | |
241 | ||
242 | static int ada_is_direct_array_type (struct type *); | |
243 | ||
72d5681a PH |
244 | static void ada_language_arch_info (struct gdbarch *, |
245 | struct language_arch_info *); | |
714e53ab PH |
246 | |
247 | static void check_size (const struct type *); | |
52ce6436 PH |
248 | |
249 | static struct value *ada_index_struct_field (int, struct value *, int, | |
250 | struct type *); | |
251 | ||
252 | static struct value *assign_aggregate (struct value *, struct value *, | |
253 | struct expression *, int *, enum noside); | |
254 | ||
255 | static void aggregate_assign_from_choices (struct value *, struct value *, | |
256 | struct expression *, | |
257 | int *, LONGEST *, int *, | |
258 | int, LONGEST, LONGEST); | |
259 | ||
260 | static void aggregate_assign_positional (struct value *, struct value *, | |
261 | struct expression *, | |
262 | int *, LONGEST *, int *, int, | |
263 | LONGEST, LONGEST); | |
264 | ||
265 | ||
266 | static void aggregate_assign_others (struct value *, struct value *, | |
267 | struct expression *, | |
268 | int *, LONGEST *, int, LONGEST, LONGEST); | |
269 | ||
270 | ||
271 | static void add_component_interval (LONGEST, LONGEST, LONGEST *, int *, int); | |
272 | ||
273 | ||
274 | static struct value *ada_evaluate_subexp (struct type *, struct expression *, | |
275 | int *, enum noside); | |
276 | ||
277 | static void ada_forward_operator_length (struct expression *, int, int *, | |
278 | int *); | |
4c4b4cd2 PH |
279 | \f |
280 | ||
76a01679 | 281 | |
4c4b4cd2 | 282 | /* Maximum-sized dynamic type. */ |
14f9c5c9 AS |
283 | static unsigned int varsize_limit; |
284 | ||
4c4b4cd2 PH |
285 | /* FIXME: brobecker/2003-09-17: No longer a const because it is |
286 | returned by a function that does not return a const char *. */ | |
287 | static char *ada_completer_word_break_characters = | |
288 | #ifdef VMS | |
289 | " \t\n!@#%^&*()+=|~`}{[]\";:?/,-"; | |
290 | #else | |
14f9c5c9 | 291 | " \t\n!@#$%^&*()+=|~`}{[]\";:?/,-"; |
4c4b4cd2 | 292 | #endif |
14f9c5c9 | 293 | |
4c4b4cd2 | 294 | /* The name of the symbol to use to get the name of the main subprogram. */ |
76a01679 | 295 | static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[] |
4c4b4cd2 | 296 | = "__gnat_ada_main_program_name"; |
14f9c5c9 | 297 | |
4c4b4cd2 PH |
298 | /* Limit on the number of warnings to raise per expression evaluation. */ |
299 | static int warning_limit = 2; | |
300 | ||
301 | /* Number of warning messages issued; reset to 0 by cleanups after | |
302 | expression evaluation. */ | |
303 | static int warnings_issued = 0; | |
304 | ||
305 | static const char *known_runtime_file_name_patterns[] = { | |
306 | ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL | |
307 | }; | |
308 | ||
309 | static const char *known_auxiliary_function_name_patterns[] = { | |
310 | ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL | |
311 | }; | |
312 | ||
313 | /* Space for allocating results of ada_lookup_symbol_list. */ | |
314 | static struct obstack symbol_list_obstack; | |
315 | ||
316 | /* Utilities */ | |
317 | ||
96d887e8 | 318 | |
4c4b4cd2 PH |
319 | static char * |
320 | ada_get_gdb_completer_word_break_characters (void) | |
321 | { | |
322 | return ada_completer_word_break_characters; | |
323 | } | |
324 | ||
e79af960 JB |
325 | /* Print an array element index using the Ada syntax. */ |
326 | ||
327 | static void | |
328 | ada_print_array_index (struct value *index_value, struct ui_file *stream, | |
329 | int format, enum val_prettyprint pretty) | |
330 | { | |
331 | LA_VALUE_PRINT (index_value, stream, format, pretty); | |
332 | fprintf_filtered (stream, " => "); | |
333 | } | |
334 | ||
4c4b4cd2 PH |
335 | /* Read the string located at ADDR from the inferior and store the |
336 | result into BUF. */ | |
337 | ||
338 | static void | |
14f9c5c9 AS |
339 | extract_string (CORE_ADDR addr, char *buf) |
340 | { | |
d2e4a39e | 341 | int char_index = 0; |
14f9c5c9 | 342 | |
4c4b4cd2 PH |
343 | /* Loop, reading one byte at a time, until we reach the '\000' |
344 | end-of-string marker. */ | |
d2e4a39e AS |
345 | do |
346 | { | |
347 | target_read_memory (addr + char_index * sizeof (char), | |
4c4b4cd2 | 348 | buf + char_index * sizeof (char), sizeof (char)); |
d2e4a39e AS |
349 | char_index++; |
350 | } | |
351 | while (buf[char_index - 1] != '\000'); | |
14f9c5c9 AS |
352 | } |
353 | ||
f27cf670 | 354 | /* Assuming VECT points to an array of *SIZE objects of size |
14f9c5c9 | 355 | ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects, |
f27cf670 | 356 | updating *SIZE as necessary and returning the (new) array. */ |
14f9c5c9 | 357 | |
f27cf670 AS |
358 | void * |
359 | grow_vect (void *vect, size_t *size, size_t min_size, int element_size) | |
14f9c5c9 | 360 | { |
d2e4a39e AS |
361 | if (*size < min_size) |
362 | { | |
363 | *size *= 2; | |
364 | if (*size < min_size) | |
4c4b4cd2 | 365 | *size = min_size; |
f27cf670 | 366 | vect = xrealloc (vect, *size * element_size); |
d2e4a39e | 367 | } |
f27cf670 | 368 | return vect; |
14f9c5c9 AS |
369 | } |
370 | ||
371 | /* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing | |
4c4b4cd2 | 372 | suffix of FIELD_NAME beginning "___". */ |
14f9c5c9 AS |
373 | |
374 | static int | |
ebf56fd3 | 375 | field_name_match (const char *field_name, const char *target) |
14f9c5c9 AS |
376 | { |
377 | int len = strlen (target); | |
d2e4a39e | 378 | return |
4c4b4cd2 PH |
379 | (strncmp (field_name, target, len) == 0 |
380 | && (field_name[len] == '\0' | |
381 | || (strncmp (field_name + len, "___", 3) == 0 | |
76a01679 JB |
382 | && strcmp (field_name + strlen (field_name) - 6, |
383 | "___XVN") != 0))); | |
14f9c5c9 AS |
384 | } |
385 | ||
386 | ||
4c4b4cd2 PH |
387 | /* Assuming TYPE is a TYPE_CODE_STRUCT, find the field whose name matches |
388 | FIELD_NAME, and return its index. This function also handles fields | |
389 | whose name have ___ suffixes because the compiler sometimes alters | |
390 | their name by adding such a suffix to represent fields with certain | |
391 | constraints. If the field could not be found, return a negative | |
392 | number if MAYBE_MISSING is set. Otherwise raise an error. */ | |
393 | ||
394 | int | |
395 | ada_get_field_index (const struct type *type, const char *field_name, | |
396 | int maybe_missing) | |
397 | { | |
398 | int fieldno; | |
399 | for (fieldno = 0; fieldno < TYPE_NFIELDS (type); fieldno++) | |
400 | if (field_name_match (TYPE_FIELD_NAME (type, fieldno), field_name)) | |
401 | return fieldno; | |
402 | ||
403 | if (!maybe_missing) | |
323e0a4a | 404 | error (_("Unable to find field %s in struct %s. Aborting"), |
4c4b4cd2 PH |
405 | field_name, TYPE_NAME (type)); |
406 | ||
407 | return -1; | |
408 | } | |
409 | ||
410 | /* The length of the prefix of NAME prior to any "___" suffix. */ | |
14f9c5c9 AS |
411 | |
412 | int | |
d2e4a39e | 413 | ada_name_prefix_len (const char *name) |
14f9c5c9 AS |
414 | { |
415 | if (name == NULL) | |
416 | return 0; | |
d2e4a39e | 417 | else |
14f9c5c9 | 418 | { |
d2e4a39e | 419 | const char *p = strstr (name, "___"); |
14f9c5c9 | 420 | if (p == NULL) |
4c4b4cd2 | 421 | return strlen (name); |
14f9c5c9 | 422 | else |
4c4b4cd2 | 423 | return p - name; |
14f9c5c9 AS |
424 | } |
425 | } | |
426 | ||
4c4b4cd2 PH |
427 | /* Return non-zero if SUFFIX is a suffix of STR. |
428 | Return zero if STR is null. */ | |
429 | ||
14f9c5c9 | 430 | static int |
d2e4a39e | 431 | is_suffix (const char *str, const char *suffix) |
14f9c5c9 AS |
432 | { |
433 | int len1, len2; | |
434 | if (str == NULL) | |
435 | return 0; | |
436 | len1 = strlen (str); | |
437 | len2 = strlen (suffix); | |
4c4b4cd2 | 438 | return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0); |
14f9c5c9 AS |
439 | } |
440 | ||
441 | /* Create a value of type TYPE whose contents come from VALADDR, if it | |
4c4b4cd2 PH |
442 | is non-null, and whose memory address (in the inferior) is |
443 | ADDRESS. */ | |
444 | ||
d2e4a39e | 445 | struct value * |
10a2c479 | 446 | value_from_contents_and_address (struct type *type, |
fc1a4b47 | 447 | const gdb_byte *valaddr, |
4c4b4cd2 | 448 | CORE_ADDR address) |
14f9c5c9 | 449 | { |
d2e4a39e AS |
450 | struct value *v = allocate_value (type); |
451 | if (valaddr == NULL) | |
dfa52d88 | 452 | set_value_lazy (v, 1); |
14f9c5c9 | 453 | else |
990a07ab | 454 | memcpy (value_contents_raw (v), valaddr, TYPE_LENGTH (type)); |
14f9c5c9 AS |
455 | VALUE_ADDRESS (v) = address; |
456 | if (address != 0) | |
457 | VALUE_LVAL (v) = lval_memory; | |
458 | return v; | |
459 | } | |
460 | ||
4c4b4cd2 PH |
461 | /* The contents of value VAL, treated as a value of type TYPE. The |
462 | result is an lval in memory if VAL is. */ | |
14f9c5c9 | 463 | |
d2e4a39e | 464 | static struct value * |
4c4b4cd2 | 465 | coerce_unspec_val_to_type (struct value *val, struct type *type) |
14f9c5c9 | 466 | { |
61ee279c | 467 | type = ada_check_typedef (type); |
df407dfe | 468 | if (value_type (val) == type) |
4c4b4cd2 | 469 | return val; |
d2e4a39e | 470 | else |
14f9c5c9 | 471 | { |
4c4b4cd2 PH |
472 | struct value *result; |
473 | ||
474 | /* Make sure that the object size is not unreasonable before | |
475 | trying to allocate some memory for it. */ | |
714e53ab | 476 | check_size (type); |
4c4b4cd2 PH |
477 | |
478 | result = allocate_value (type); | |
479 | VALUE_LVAL (result) = VALUE_LVAL (val); | |
9bbda503 AC |
480 | set_value_bitsize (result, value_bitsize (val)); |
481 | set_value_bitpos (result, value_bitpos (val)); | |
df407dfe | 482 | VALUE_ADDRESS (result) = VALUE_ADDRESS (val) + value_offset (val); |
d69fe07e | 483 | if (value_lazy (val) |
df407dfe | 484 | || TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val))) |
dfa52d88 | 485 | set_value_lazy (result, 1); |
d2e4a39e | 486 | else |
0fd88904 | 487 | memcpy (value_contents_raw (result), value_contents (val), |
4c4b4cd2 | 488 | TYPE_LENGTH (type)); |
14f9c5c9 AS |
489 | return result; |
490 | } | |
491 | } | |
492 | ||
fc1a4b47 AC |
493 | static const gdb_byte * |
494 | cond_offset_host (const gdb_byte *valaddr, long offset) | |
14f9c5c9 AS |
495 | { |
496 | if (valaddr == NULL) | |
497 | return NULL; | |
498 | else | |
499 | return valaddr + offset; | |
500 | } | |
501 | ||
502 | static CORE_ADDR | |
ebf56fd3 | 503 | cond_offset_target (CORE_ADDR address, long offset) |
14f9c5c9 AS |
504 | { |
505 | if (address == 0) | |
506 | return 0; | |
d2e4a39e | 507 | else |
14f9c5c9 AS |
508 | return address + offset; |
509 | } | |
510 | ||
4c4b4cd2 PH |
511 | /* Issue a warning (as for the definition of warning in utils.c, but |
512 | with exactly one argument rather than ...), unless the limit on the | |
513 | number of warnings has passed during the evaluation of the current | |
514 | expression. */ | |
a2249542 | 515 | |
77109804 AC |
516 | /* FIXME: cagney/2004-10-10: This function is mimicking the behavior |
517 | provided by "complaint". */ | |
518 | static void lim_warning (const char *format, ...) ATTR_FORMAT (printf, 1, 2); | |
519 | ||
14f9c5c9 | 520 | static void |
a2249542 | 521 | lim_warning (const char *format, ...) |
14f9c5c9 | 522 | { |
a2249542 MK |
523 | va_list args; |
524 | va_start (args, format); | |
525 | ||
4c4b4cd2 PH |
526 | warnings_issued += 1; |
527 | if (warnings_issued <= warning_limit) | |
a2249542 MK |
528 | vwarning (format, args); |
529 | ||
530 | va_end (args); | |
4c4b4cd2 PH |
531 | } |
532 | ||
714e53ab PH |
533 | /* Issue an error if the size of an object of type T is unreasonable, |
534 | i.e. if it would be a bad idea to allocate a value of this type in | |
535 | GDB. */ | |
536 | ||
537 | static void | |
538 | check_size (const struct type *type) | |
539 | { | |
540 | if (TYPE_LENGTH (type) > varsize_limit) | |
323e0a4a | 541 | error (_("object size is larger than varsize-limit")); |
714e53ab PH |
542 | } |
543 | ||
544 | ||
c3e5cd34 PH |
545 | /* Note: would have used MAX_OF_TYPE and MIN_OF_TYPE macros from |
546 | gdbtypes.h, but some of the necessary definitions in that file | |
547 | seem to have gone missing. */ | |
548 | ||
549 | /* Maximum value of a SIZE-byte signed integer type. */ | |
4c4b4cd2 | 550 | static LONGEST |
c3e5cd34 | 551 | max_of_size (int size) |
4c4b4cd2 | 552 | { |
76a01679 JB |
553 | LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2); |
554 | return top_bit | (top_bit - 1); | |
4c4b4cd2 PH |
555 | } |
556 | ||
c3e5cd34 | 557 | /* Minimum value of a SIZE-byte signed integer type. */ |
4c4b4cd2 | 558 | static LONGEST |
c3e5cd34 | 559 | min_of_size (int size) |
4c4b4cd2 | 560 | { |
c3e5cd34 | 561 | return -max_of_size (size) - 1; |
4c4b4cd2 PH |
562 | } |
563 | ||
c3e5cd34 | 564 | /* Maximum value of a SIZE-byte unsigned integer type. */ |
4c4b4cd2 | 565 | static ULONGEST |
c3e5cd34 | 566 | umax_of_size (int size) |
4c4b4cd2 | 567 | { |
76a01679 JB |
568 | ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1); |
569 | return top_bit | (top_bit - 1); | |
4c4b4cd2 PH |
570 | } |
571 | ||
c3e5cd34 PH |
572 | /* Maximum value of integral type T, as a signed quantity. */ |
573 | static LONGEST | |
574 | max_of_type (struct type *t) | |
4c4b4cd2 | 575 | { |
c3e5cd34 PH |
576 | if (TYPE_UNSIGNED (t)) |
577 | return (LONGEST) umax_of_size (TYPE_LENGTH (t)); | |
578 | else | |
579 | return max_of_size (TYPE_LENGTH (t)); | |
580 | } | |
581 | ||
582 | /* Minimum value of integral type T, as a signed quantity. */ | |
583 | static LONGEST | |
584 | min_of_type (struct type *t) | |
585 | { | |
586 | if (TYPE_UNSIGNED (t)) | |
587 | return 0; | |
588 | else | |
589 | return min_of_size (TYPE_LENGTH (t)); | |
4c4b4cd2 PH |
590 | } |
591 | ||
592 | /* The largest value in the domain of TYPE, a discrete type, as an integer. */ | |
593 | static struct value * | |
594 | discrete_type_high_bound (struct type *type) | |
595 | { | |
76a01679 | 596 | switch (TYPE_CODE (type)) |
4c4b4cd2 PH |
597 | { |
598 | case TYPE_CODE_RANGE: | |
599 | return value_from_longest (TYPE_TARGET_TYPE (type), | |
76a01679 | 600 | TYPE_HIGH_BOUND (type)); |
4c4b4cd2 | 601 | case TYPE_CODE_ENUM: |
76a01679 JB |
602 | return |
603 | value_from_longest (type, | |
604 | TYPE_FIELD_BITPOS (type, | |
605 | TYPE_NFIELDS (type) - 1)); | |
606 | case TYPE_CODE_INT: | |
c3e5cd34 | 607 | return value_from_longest (type, max_of_type (type)); |
4c4b4cd2 | 608 | default: |
323e0a4a | 609 | error (_("Unexpected type in discrete_type_high_bound.")); |
4c4b4cd2 PH |
610 | } |
611 | } | |
612 | ||
613 | /* The largest value in the domain of TYPE, a discrete type, as an integer. */ | |
614 | static struct value * | |
615 | discrete_type_low_bound (struct type *type) | |
616 | { | |
76a01679 | 617 | switch (TYPE_CODE (type)) |
4c4b4cd2 PH |
618 | { |
619 | case TYPE_CODE_RANGE: | |
620 | return value_from_longest (TYPE_TARGET_TYPE (type), | |
76a01679 | 621 | TYPE_LOW_BOUND (type)); |
4c4b4cd2 | 622 | case TYPE_CODE_ENUM: |
76a01679 JB |
623 | return value_from_longest (type, TYPE_FIELD_BITPOS (type, 0)); |
624 | case TYPE_CODE_INT: | |
c3e5cd34 | 625 | return value_from_longest (type, min_of_type (type)); |
4c4b4cd2 | 626 | default: |
323e0a4a | 627 | error (_("Unexpected type in discrete_type_low_bound.")); |
4c4b4cd2 PH |
628 | } |
629 | } | |
630 | ||
631 | /* The identity on non-range types. For range types, the underlying | |
76a01679 | 632 | non-range scalar type. */ |
4c4b4cd2 PH |
633 | |
634 | static struct type * | |
635 | base_type (struct type *type) | |
636 | { | |
637 | while (type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE) | |
638 | { | |
76a01679 JB |
639 | if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL) |
640 | return type; | |
4c4b4cd2 PH |
641 | type = TYPE_TARGET_TYPE (type); |
642 | } | |
643 | return type; | |
14f9c5c9 | 644 | } |
4c4b4cd2 | 645 | \f |
76a01679 | 646 | |
4c4b4cd2 | 647 | /* Language Selection */ |
14f9c5c9 AS |
648 | |
649 | /* If the main program is in Ada, return language_ada, otherwise return LANG | |
650 | (the main program is in Ada iif the adainit symbol is found). | |
651 | ||
4c4b4cd2 | 652 | MAIN_PST is not used. */ |
d2e4a39e | 653 | |
14f9c5c9 | 654 | enum language |
d2e4a39e | 655 | ada_update_initial_language (enum language lang, |
4c4b4cd2 | 656 | struct partial_symtab *main_pst) |
14f9c5c9 | 657 | { |
d2e4a39e | 658 | if (lookup_minimal_symbol ("adainit", (const char *) NULL, |
4c4b4cd2 PH |
659 | (struct objfile *) NULL) != NULL) |
660 | return language_ada; | |
14f9c5c9 AS |
661 | |
662 | return lang; | |
663 | } | |
96d887e8 PH |
664 | |
665 | /* If the main procedure is written in Ada, then return its name. | |
666 | The result is good until the next call. Return NULL if the main | |
667 | procedure doesn't appear to be in Ada. */ | |
668 | ||
669 | char * | |
670 | ada_main_name (void) | |
671 | { | |
672 | struct minimal_symbol *msym; | |
673 | CORE_ADDR main_program_name_addr; | |
674 | static char main_program_name[1024]; | |
6c038f32 | 675 | |
96d887e8 PH |
676 | /* For Ada, the name of the main procedure is stored in a specific |
677 | string constant, generated by the binder. Look for that symbol, | |
678 | extract its address, and then read that string. If we didn't find | |
679 | that string, then most probably the main procedure is not written | |
680 | in Ada. */ | |
681 | msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL); | |
682 | ||
683 | if (msym != NULL) | |
684 | { | |
685 | main_program_name_addr = SYMBOL_VALUE_ADDRESS (msym); | |
686 | if (main_program_name_addr == 0) | |
323e0a4a | 687 | error (_("Invalid address for Ada main program name.")); |
96d887e8 PH |
688 | |
689 | extract_string (main_program_name_addr, main_program_name); | |
690 | return main_program_name; | |
691 | } | |
692 | ||
693 | /* The main procedure doesn't seem to be in Ada. */ | |
694 | return NULL; | |
695 | } | |
14f9c5c9 | 696 | \f |
4c4b4cd2 | 697 | /* Symbols */ |
d2e4a39e | 698 | |
4c4b4cd2 PH |
699 | /* Table of Ada operators and their GNAT-encoded names. Last entry is pair |
700 | of NULLs. */ | |
14f9c5c9 | 701 | |
d2e4a39e AS |
702 | const struct ada_opname_map ada_opname_table[] = { |
703 | {"Oadd", "\"+\"", BINOP_ADD}, | |
704 | {"Osubtract", "\"-\"", BINOP_SUB}, | |
705 | {"Omultiply", "\"*\"", BINOP_MUL}, | |
706 | {"Odivide", "\"/\"", BINOP_DIV}, | |
707 | {"Omod", "\"mod\"", BINOP_MOD}, | |
708 | {"Orem", "\"rem\"", BINOP_REM}, | |
709 | {"Oexpon", "\"**\"", BINOP_EXP}, | |
710 | {"Olt", "\"<\"", BINOP_LESS}, | |
711 | {"Ole", "\"<=\"", BINOP_LEQ}, | |
712 | {"Ogt", "\">\"", BINOP_GTR}, | |
713 | {"Oge", "\">=\"", BINOP_GEQ}, | |
714 | {"Oeq", "\"=\"", BINOP_EQUAL}, | |
715 | {"One", "\"/=\"", BINOP_NOTEQUAL}, | |
716 | {"Oand", "\"and\"", BINOP_BITWISE_AND}, | |
717 | {"Oor", "\"or\"", BINOP_BITWISE_IOR}, | |
718 | {"Oxor", "\"xor\"", BINOP_BITWISE_XOR}, | |
719 | {"Oconcat", "\"&\"", BINOP_CONCAT}, | |
720 | {"Oabs", "\"abs\"", UNOP_ABS}, | |
721 | {"Onot", "\"not\"", UNOP_LOGICAL_NOT}, | |
722 | {"Oadd", "\"+\"", UNOP_PLUS}, | |
723 | {"Osubtract", "\"-\"", UNOP_NEG}, | |
724 | {NULL, NULL} | |
14f9c5c9 AS |
725 | }; |
726 | ||
4c4b4cd2 PH |
727 | /* Return non-zero if STR should be suppressed in info listings. */ |
728 | ||
14f9c5c9 | 729 | static int |
d2e4a39e | 730 | is_suppressed_name (const char *str) |
14f9c5c9 | 731 | { |
4c4b4cd2 | 732 | if (strncmp (str, "_ada_", 5) == 0) |
14f9c5c9 AS |
733 | str += 5; |
734 | if (str[0] == '_' || str[0] == '\000') | |
735 | return 1; | |
736 | else | |
737 | { | |
d2e4a39e AS |
738 | const char *p; |
739 | const char *suffix = strstr (str, "___"); | |
14f9c5c9 | 740 | if (suffix != NULL && suffix[3] != 'X') |
4c4b4cd2 | 741 | return 1; |
14f9c5c9 | 742 | if (suffix == NULL) |
4c4b4cd2 | 743 | suffix = str + strlen (str); |
d2e4a39e | 744 | for (p = suffix - 1; p != str; p -= 1) |
4c4b4cd2 PH |
745 | if (isupper (*p)) |
746 | { | |
747 | int i; | |
748 | if (p[0] == 'X' && p[-1] != '_') | |
749 | goto OK; | |
750 | if (*p != 'O') | |
751 | return 1; | |
752 | for (i = 0; ada_opname_table[i].encoded != NULL; i += 1) | |
753 | if (strncmp (ada_opname_table[i].encoded, p, | |
754 | strlen (ada_opname_table[i].encoded)) == 0) | |
755 | goto OK; | |
756 | return 1; | |
757 | OK:; | |
758 | } | |
14f9c5c9 AS |
759 | return 0; |
760 | } | |
761 | } | |
762 | ||
4c4b4cd2 PH |
763 | /* The "encoded" form of DECODED, according to GNAT conventions. |
764 | The result is valid until the next call to ada_encode. */ | |
765 | ||
14f9c5c9 | 766 | char * |
4c4b4cd2 | 767 | ada_encode (const char *decoded) |
14f9c5c9 | 768 | { |
4c4b4cd2 PH |
769 | static char *encoding_buffer = NULL; |
770 | static size_t encoding_buffer_size = 0; | |
d2e4a39e | 771 | const char *p; |
14f9c5c9 | 772 | int k; |
d2e4a39e | 773 | |
4c4b4cd2 | 774 | if (decoded == NULL) |
14f9c5c9 AS |
775 | return NULL; |
776 | ||
4c4b4cd2 PH |
777 | GROW_VECT (encoding_buffer, encoding_buffer_size, |
778 | 2 * strlen (decoded) + 10); | |
14f9c5c9 AS |
779 | |
780 | k = 0; | |
4c4b4cd2 | 781 | for (p = decoded; *p != '\0'; p += 1) |
14f9c5c9 | 782 | { |
4c4b4cd2 PH |
783 | if (!ADA_RETAIN_DOTS && *p == '.') |
784 | { | |
785 | encoding_buffer[k] = encoding_buffer[k + 1] = '_'; | |
786 | k += 2; | |
787 | } | |
14f9c5c9 | 788 | else if (*p == '"') |
4c4b4cd2 PH |
789 | { |
790 | const struct ada_opname_map *mapping; | |
791 | ||
792 | for (mapping = ada_opname_table; | |
1265e4aa JB |
793 | mapping->encoded != NULL |
794 | && strncmp (mapping->decoded, p, | |
795 | strlen (mapping->decoded)) != 0; mapping += 1) | |
4c4b4cd2 PH |
796 | ; |
797 | if (mapping->encoded == NULL) | |
323e0a4a | 798 | error (_("invalid Ada operator name: %s"), p); |
4c4b4cd2 PH |
799 | strcpy (encoding_buffer + k, mapping->encoded); |
800 | k += strlen (mapping->encoded); | |
801 | break; | |
802 | } | |
d2e4a39e | 803 | else |
4c4b4cd2 PH |
804 | { |
805 | encoding_buffer[k] = *p; | |
806 | k += 1; | |
807 | } | |
14f9c5c9 AS |
808 | } |
809 | ||
4c4b4cd2 PH |
810 | encoding_buffer[k] = '\0'; |
811 | return encoding_buffer; | |
14f9c5c9 AS |
812 | } |
813 | ||
814 | /* Return NAME folded to lower case, or, if surrounded by single | |
4c4b4cd2 PH |
815 | quotes, unfolded, but with the quotes stripped away. Result good |
816 | to next call. */ | |
817 | ||
d2e4a39e AS |
818 | char * |
819 | ada_fold_name (const char *name) | |
14f9c5c9 | 820 | { |
d2e4a39e | 821 | static char *fold_buffer = NULL; |
14f9c5c9 AS |
822 | static size_t fold_buffer_size = 0; |
823 | ||
824 | int len = strlen (name); | |
d2e4a39e | 825 | GROW_VECT (fold_buffer, fold_buffer_size, len + 1); |
14f9c5c9 AS |
826 | |
827 | if (name[0] == '\'') | |
828 | { | |
d2e4a39e AS |
829 | strncpy (fold_buffer, name + 1, len - 2); |
830 | fold_buffer[len - 2] = '\000'; | |
14f9c5c9 AS |
831 | } |
832 | else | |
833 | { | |
834 | int i; | |
835 | for (i = 0; i <= len; i += 1) | |
4c4b4cd2 | 836 | fold_buffer[i] = tolower (name[i]); |
14f9c5c9 AS |
837 | } |
838 | ||
839 | return fold_buffer; | |
840 | } | |
841 | ||
529cad9c PH |
842 | /* Return nonzero if C is either a digit or a lowercase alphabet character. */ |
843 | ||
844 | static int | |
845 | is_lower_alphanum (const char c) | |
846 | { | |
847 | return (isdigit (c) || (isalpha (c) && islower (c))); | |
848 | } | |
849 | ||
850 | /* Decode: | |
851 | . Discard trailing .{DIGIT}+, ${DIGIT}+ or ___{DIGIT}+ | |
4c4b4cd2 PH |
852 | These are suffixes introduced by GNAT5 to nested subprogram |
853 | names, and do not serve any purpose for the debugger. | |
529cad9c PH |
854 | . Discard final __{DIGIT}+ or $({DIGIT}+(__{DIGIT}+)*) |
855 | . Discard final N if it follows a lowercase alphanumeric character | |
856 | (protected object subprogram suffix) | |
857 | . Convert other instances of embedded "__" to `.'. | |
858 | . Discard leading _ada_. | |
859 | . Convert operator names to the appropriate quoted symbols. | |
860 | . Remove everything after first ___ if it is followed by | |
14f9c5c9 | 861 | 'X'. |
529cad9c PH |
862 | . Replace TK__ with __, and a trailing B or TKB with nothing. |
863 | . Replace _[EB]{DIGIT}+[sb] with nothing (protected object entries) | |
864 | . Put symbols that should be suppressed in <...> brackets. | |
865 | . Remove trailing X[bn]* suffix (indicating names in package bodies). | |
14f9c5c9 | 866 | |
4c4b4cd2 PH |
867 | The resulting string is valid until the next call of ada_decode. |
868 | If the string is unchanged by demangling, the original string pointer | |
869 | is returned. */ | |
870 | ||
871 | const char * | |
872 | ada_decode (const char *encoded) | |
14f9c5c9 AS |
873 | { |
874 | int i, j; | |
875 | int len0; | |
d2e4a39e | 876 | const char *p; |
4c4b4cd2 | 877 | char *decoded; |
14f9c5c9 | 878 | int at_start_name; |
4c4b4cd2 PH |
879 | static char *decoding_buffer = NULL; |
880 | static size_t decoding_buffer_size = 0; | |
d2e4a39e | 881 | |
4c4b4cd2 PH |
882 | if (strncmp (encoded, "_ada_", 5) == 0) |
883 | encoded += 5; | |
14f9c5c9 | 884 | |
4c4b4cd2 | 885 | if (encoded[0] == '_' || encoded[0] == '<') |
14f9c5c9 AS |
886 | goto Suppress; |
887 | ||
529cad9c | 888 | /* Remove trailing .{DIGIT}+ or ___{DIGIT}+ or __{DIGIT}+. */ |
4c4b4cd2 PH |
889 | len0 = strlen (encoded); |
890 | if (len0 > 1 && isdigit (encoded[len0 - 1])) | |
891 | { | |
892 | i = len0 - 2; | |
893 | while (i > 0 && isdigit (encoded[i])) | |
894 | i--; | |
895 | if (i >= 0 && encoded[i] == '.') | |
896 | len0 = i; | |
529cad9c PH |
897 | else if (i >= 0 && encoded[i] == '$') |
898 | len0 = i; | |
4c4b4cd2 PH |
899 | else if (i >= 2 && strncmp (encoded + i - 2, "___", 3) == 0) |
900 | len0 = i - 2; | |
529cad9c PH |
901 | else if (i >= 1 && strncmp (encoded + i - 1, "__", 2) == 0) |
902 | len0 = i - 1; | |
4c4b4cd2 PH |
903 | } |
904 | ||
529cad9c PH |
905 | /* Remove trailing N. */ |
906 | ||
907 | /* Protected entry subprograms are broken into two | |
908 | separate subprograms: The first one is unprotected, and has | |
909 | a 'N' suffix; the second is the protected version, and has | |
910 | the 'P' suffix. The second calls the first one after handling | |
911 | the protection. Since the P subprograms are internally generated, | |
912 | we leave these names undecoded, giving the user a clue that this | |
913 | entity is internal. */ | |
914 | ||
915 | if (len0 > 1 | |
916 | && encoded[len0 - 1] == 'N' | |
917 | && (isdigit (encoded[len0 - 2]) || islower (encoded[len0 - 2]))) | |
918 | len0--; | |
919 | ||
4c4b4cd2 PH |
920 | /* Remove the ___X.* suffix if present. Do not forget to verify that |
921 | the suffix is located before the current "end" of ENCODED. We want | |
922 | to avoid re-matching parts of ENCODED that have previously been | |
923 | marked as discarded (by decrementing LEN0). */ | |
924 | p = strstr (encoded, "___"); | |
925 | if (p != NULL && p - encoded < len0 - 3) | |
14f9c5c9 AS |
926 | { |
927 | if (p[3] == 'X') | |
4c4b4cd2 | 928 | len0 = p - encoded; |
14f9c5c9 | 929 | else |
4c4b4cd2 | 930 | goto Suppress; |
14f9c5c9 | 931 | } |
4c4b4cd2 PH |
932 | |
933 | if (len0 > 3 && strncmp (encoded + len0 - 3, "TKB", 3) == 0) | |
14f9c5c9 | 934 | len0 -= 3; |
76a01679 | 935 | |
4c4b4cd2 | 936 | if (len0 > 1 && strncmp (encoded + len0 - 1, "B", 1) == 0) |
14f9c5c9 AS |
937 | len0 -= 1; |
938 | ||
4c4b4cd2 PH |
939 | /* Make decoded big enough for possible expansion by operator name. */ |
940 | GROW_VECT (decoding_buffer, decoding_buffer_size, 2 * len0 + 1); | |
941 | decoded = decoding_buffer; | |
14f9c5c9 | 942 | |
4c4b4cd2 | 943 | if (len0 > 1 && isdigit (encoded[len0 - 1])) |
d2e4a39e | 944 | { |
4c4b4cd2 PH |
945 | i = len0 - 2; |
946 | while ((i >= 0 && isdigit (encoded[i])) | |
947 | || (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1]))) | |
948 | i -= 1; | |
949 | if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_') | |
950 | len0 = i - 1; | |
951 | else if (encoded[i] == '$') | |
952 | len0 = i; | |
d2e4a39e | 953 | } |
14f9c5c9 | 954 | |
4c4b4cd2 PH |
955 | for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1) |
956 | decoded[j] = encoded[i]; | |
14f9c5c9 AS |
957 | |
958 | at_start_name = 1; | |
959 | while (i < len0) | |
960 | { | |
4c4b4cd2 PH |
961 | if (at_start_name && encoded[i] == 'O') |
962 | { | |
963 | int k; | |
964 | for (k = 0; ada_opname_table[k].encoded != NULL; k += 1) | |
965 | { | |
966 | int op_len = strlen (ada_opname_table[k].encoded); | |
06d5cf63 JB |
967 | if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1, |
968 | op_len - 1) == 0) | |
969 | && !isalnum (encoded[i + op_len])) | |
4c4b4cd2 PH |
970 | { |
971 | strcpy (decoded + j, ada_opname_table[k].decoded); | |
972 | at_start_name = 0; | |
973 | i += op_len; | |
974 | j += strlen (ada_opname_table[k].decoded); | |
975 | break; | |
976 | } | |
977 | } | |
978 | if (ada_opname_table[k].encoded != NULL) | |
979 | continue; | |
980 | } | |
14f9c5c9 AS |
981 | at_start_name = 0; |
982 | ||
529cad9c PH |
983 | /* Replace "TK__" with "__", which will eventually be translated |
984 | into "." (just below). */ | |
985 | ||
4c4b4cd2 PH |
986 | if (i < len0 - 4 && strncmp (encoded + i, "TK__", 4) == 0) |
987 | i += 2; | |
529cad9c PH |
988 | |
989 | /* Remove _E{DIGITS}+[sb] */ | |
990 | ||
991 | /* Just as for protected object subprograms, there are 2 categories | |
992 | of subprograms created by the compiler for each entry. The first | |
993 | one implements the actual entry code, and has a suffix following | |
994 | the convention above; the second one implements the barrier and | |
995 | uses the same convention as above, except that the 'E' is replaced | |
996 | by a 'B'. | |
997 | ||
998 | Just as above, we do not decode the name of barrier functions | |
999 | to give the user a clue that the code he is debugging has been | |
1000 | internally generated. */ | |
1001 | ||
1002 | if (len0 - i > 3 && encoded [i] == '_' && encoded[i+1] == 'E' | |
1003 | && isdigit (encoded[i+2])) | |
1004 | { | |
1005 | int k = i + 3; | |
1006 | ||
1007 | while (k < len0 && isdigit (encoded[k])) | |
1008 | k++; | |
1009 | ||
1010 | if (k < len0 | |
1011 | && (encoded[k] == 'b' || encoded[k] == 's')) | |
1012 | { | |
1013 | k++; | |
1014 | /* Just as an extra precaution, make sure that if this | |
1015 | suffix is followed by anything else, it is a '_'. | |
1016 | Otherwise, we matched this sequence by accident. */ | |
1017 | if (k == len0 | |
1018 | || (k < len0 && encoded[k] == '_')) | |
1019 | i = k; | |
1020 | } | |
1021 | } | |
1022 | ||
1023 | /* Remove trailing "N" in [a-z0-9]+N__. The N is added by | |
1024 | the GNAT front-end in protected object subprograms. */ | |
1025 | ||
1026 | if (i < len0 + 3 | |
1027 | && encoded[i] == 'N' && encoded[i+1] == '_' && encoded[i+2] == '_') | |
1028 | { | |
1029 | /* Backtrack a bit up until we reach either the begining of | |
1030 | the encoded name, or "__". Make sure that we only find | |
1031 | digits or lowercase characters. */ | |
1032 | const char *ptr = encoded + i - 1; | |
1033 | ||
1034 | while (ptr >= encoded && is_lower_alphanum (ptr[0])) | |
1035 | ptr--; | |
1036 | if (ptr < encoded | |
1037 | || (ptr > encoded && ptr[0] == '_' && ptr[-1] == '_')) | |
1038 | i++; | |
1039 | } | |
1040 | ||
4c4b4cd2 PH |
1041 | if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1])) |
1042 | { | |
1043 | do | |
1044 | i += 1; | |
1045 | while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n')); | |
1046 | if (i < len0) | |
1047 | goto Suppress; | |
1048 | } | |
1049 | else if (!ADA_RETAIN_DOTS | |
1050 | && i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_') | |
1051 | { | |
1052 | decoded[j] = '.'; | |
1053 | at_start_name = 1; | |
1054 | i += 2; | |
1055 | j += 1; | |
1056 | } | |
14f9c5c9 | 1057 | else |
4c4b4cd2 PH |
1058 | { |
1059 | decoded[j] = encoded[i]; | |
1060 | i += 1; | |
1061 | j += 1; | |
1062 | } | |
14f9c5c9 | 1063 | } |
4c4b4cd2 | 1064 | decoded[j] = '\000'; |
14f9c5c9 | 1065 | |
4c4b4cd2 PH |
1066 | for (i = 0; decoded[i] != '\0'; i += 1) |
1067 | if (isupper (decoded[i]) || decoded[i] == ' ') | |
14f9c5c9 AS |
1068 | goto Suppress; |
1069 | ||
4c4b4cd2 PH |
1070 | if (strcmp (decoded, encoded) == 0) |
1071 | return encoded; | |
1072 | else | |
1073 | return decoded; | |
14f9c5c9 AS |
1074 | |
1075 | Suppress: | |
4c4b4cd2 PH |
1076 | GROW_VECT (decoding_buffer, decoding_buffer_size, strlen (encoded) + 3); |
1077 | decoded = decoding_buffer; | |
1078 | if (encoded[0] == '<') | |
1079 | strcpy (decoded, encoded); | |
14f9c5c9 | 1080 | else |
4c4b4cd2 PH |
1081 | sprintf (decoded, "<%s>", encoded); |
1082 | return decoded; | |
1083 | ||
1084 | } | |
1085 | ||
1086 | /* Table for keeping permanent unique copies of decoded names. Once | |
1087 | allocated, names in this table are never released. While this is a | |
1088 | storage leak, it should not be significant unless there are massive | |
1089 | changes in the set of decoded names in successive versions of a | |
1090 | symbol table loaded during a single session. */ | |
1091 | static struct htab *decoded_names_store; | |
1092 | ||
1093 | /* Returns the decoded name of GSYMBOL, as for ada_decode, caching it | |
1094 | in the language-specific part of GSYMBOL, if it has not been | |
1095 | previously computed. Tries to save the decoded name in the same | |
1096 | obstack as GSYMBOL, if possible, and otherwise on the heap (so that, | |
1097 | in any case, the decoded symbol has a lifetime at least that of | |
1098 | GSYMBOL). | |
1099 | The GSYMBOL parameter is "mutable" in the C++ sense: logically | |
1100 | const, but nevertheless modified to a semantically equivalent form | |
1101 | when a decoded name is cached in it. | |
76a01679 | 1102 | */ |
4c4b4cd2 | 1103 | |
76a01679 JB |
1104 | char * |
1105 | ada_decode_symbol (const struct general_symbol_info *gsymbol) | |
4c4b4cd2 | 1106 | { |
76a01679 | 1107 | char **resultp = |
4c4b4cd2 PH |
1108 | (char **) &gsymbol->language_specific.cplus_specific.demangled_name; |
1109 | if (*resultp == NULL) | |
1110 | { | |
1111 | const char *decoded = ada_decode (gsymbol->name); | |
1112 | if (gsymbol->bfd_section != NULL) | |
76a01679 JB |
1113 | { |
1114 | bfd *obfd = gsymbol->bfd_section->owner; | |
1115 | if (obfd != NULL) | |
1116 | { | |
1117 | struct objfile *objf; | |
1118 | ALL_OBJFILES (objf) | |
1119 | { | |
1120 | if (obfd == objf->obfd) | |
1121 | { | |
1122 | *resultp = obsavestring (decoded, strlen (decoded), | |
1123 | &objf->objfile_obstack); | |
1124 | break; | |
1125 | } | |
1126 | } | |
1127 | } | |
1128 | } | |
4c4b4cd2 | 1129 | /* Sometimes, we can't find a corresponding objfile, in which |
76a01679 JB |
1130 | case, we put the result on the heap. Since we only decode |
1131 | when needed, we hope this usually does not cause a | |
1132 | significant memory leak (FIXME). */ | |
4c4b4cd2 | 1133 | if (*resultp == NULL) |
76a01679 JB |
1134 | { |
1135 | char **slot = (char **) htab_find_slot (decoded_names_store, | |
1136 | decoded, INSERT); | |
1137 | if (*slot == NULL) | |
1138 | *slot = xstrdup (decoded); | |
1139 | *resultp = *slot; | |
1140 | } | |
4c4b4cd2 | 1141 | } |
14f9c5c9 | 1142 | |
4c4b4cd2 PH |
1143 | return *resultp; |
1144 | } | |
76a01679 JB |
1145 | |
1146 | char * | |
1147 | ada_la_decode (const char *encoded, int options) | |
4c4b4cd2 PH |
1148 | { |
1149 | return xstrdup (ada_decode (encoded)); | |
14f9c5c9 AS |
1150 | } |
1151 | ||
1152 | /* Returns non-zero iff SYM_NAME matches NAME, ignoring any trailing | |
4c4b4cd2 PH |
1153 | suffixes that encode debugging information or leading _ada_ on |
1154 | SYM_NAME (see is_name_suffix commentary for the debugging | |
1155 | information that is ignored). If WILD, then NAME need only match a | |
1156 | suffix of SYM_NAME minus the same suffixes. Also returns 0 if | |
1157 | either argument is NULL. */ | |
14f9c5c9 AS |
1158 | |
1159 | int | |
d2e4a39e | 1160 | ada_match_name (const char *sym_name, const char *name, int wild) |
14f9c5c9 AS |
1161 | { |
1162 | if (sym_name == NULL || name == NULL) | |
1163 | return 0; | |
1164 | else if (wild) | |
1165 | return wild_match (name, strlen (name), sym_name); | |
d2e4a39e AS |
1166 | else |
1167 | { | |
1168 | int len_name = strlen (name); | |
4c4b4cd2 PH |
1169 | return (strncmp (sym_name, name, len_name) == 0 |
1170 | && is_name_suffix (sym_name + len_name)) | |
1171 | || (strncmp (sym_name, "_ada_", 5) == 0 | |
1172 | && strncmp (sym_name + 5, name, len_name) == 0 | |
1173 | && is_name_suffix (sym_name + len_name + 5)); | |
d2e4a39e | 1174 | } |
14f9c5c9 AS |
1175 | } |
1176 | ||
4c4b4cd2 PH |
1177 | /* True (non-zero) iff, in Ada mode, the symbol SYM should be |
1178 | suppressed in info listings. */ | |
14f9c5c9 AS |
1179 | |
1180 | int | |
ebf56fd3 | 1181 | ada_suppress_symbol_printing (struct symbol *sym) |
14f9c5c9 | 1182 | { |
176620f1 | 1183 | if (SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN) |
14f9c5c9 | 1184 | return 1; |
d2e4a39e | 1185 | else |
4c4b4cd2 | 1186 | return is_suppressed_name (SYMBOL_LINKAGE_NAME (sym)); |
14f9c5c9 | 1187 | } |
14f9c5c9 | 1188 | \f |
d2e4a39e | 1189 | |
4c4b4cd2 | 1190 | /* Arrays */ |
14f9c5c9 | 1191 | |
4c4b4cd2 | 1192 | /* Names of MAX_ADA_DIMENS bounds in P_BOUNDS fields of array descriptors. */ |
14f9c5c9 | 1193 | |
d2e4a39e AS |
1194 | static char *bound_name[] = { |
1195 | "LB0", "UB0", "LB1", "UB1", "LB2", "UB2", "LB3", "UB3", | |
14f9c5c9 AS |
1196 | "LB4", "UB4", "LB5", "UB5", "LB6", "UB6", "LB7", "UB7" |
1197 | }; | |
1198 | ||
1199 | /* Maximum number of array dimensions we are prepared to handle. */ | |
1200 | ||
4c4b4cd2 | 1201 | #define MAX_ADA_DIMENS (sizeof(bound_name) / (2*sizeof(char *))) |
14f9c5c9 | 1202 | |
4c4b4cd2 | 1203 | /* Like modify_field, but allows bitpos > wordlength. */ |
14f9c5c9 AS |
1204 | |
1205 | static void | |
ebf56fd3 | 1206 | modify_general_field (char *addr, LONGEST fieldval, int bitpos, int bitsize) |
14f9c5c9 | 1207 | { |
4c4b4cd2 | 1208 | modify_field (addr + bitpos / 8, fieldval, bitpos % 8, bitsize); |
14f9c5c9 AS |
1209 | } |
1210 | ||
1211 | ||
4c4b4cd2 PH |
1212 | /* The desc_* routines return primitive portions of array descriptors |
1213 | (fat pointers). */ | |
14f9c5c9 AS |
1214 | |
1215 | /* The descriptor or array type, if any, indicated by TYPE; removes | |
4c4b4cd2 PH |
1216 | level of indirection, if needed. */ |
1217 | ||
d2e4a39e AS |
1218 | static struct type * |
1219 | desc_base_type (struct type *type) | |
14f9c5c9 AS |
1220 | { |
1221 | if (type == NULL) | |
1222 | return NULL; | |
61ee279c | 1223 | type = ada_check_typedef (type); |
1265e4aa JB |
1224 | if (type != NULL |
1225 | && (TYPE_CODE (type) == TYPE_CODE_PTR | |
1226 | || TYPE_CODE (type) == TYPE_CODE_REF)) | |
61ee279c | 1227 | return ada_check_typedef (TYPE_TARGET_TYPE (type)); |
14f9c5c9 AS |
1228 | else |
1229 | return type; | |
1230 | } | |
1231 | ||
4c4b4cd2 PH |
1232 | /* True iff TYPE indicates a "thin" array pointer type. */ |
1233 | ||
14f9c5c9 | 1234 | static int |
d2e4a39e | 1235 | is_thin_pntr (struct type *type) |
14f9c5c9 | 1236 | { |
d2e4a39e | 1237 | return |
14f9c5c9 AS |
1238 | is_suffix (ada_type_name (desc_base_type (type)), "___XUT") |
1239 | || is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE"); | |
1240 | } | |
1241 | ||
4c4b4cd2 PH |
1242 | /* The descriptor type for thin pointer type TYPE. */ |
1243 | ||
d2e4a39e AS |
1244 | static struct type * |
1245 | thin_descriptor_type (struct type *type) | |
14f9c5c9 | 1246 | { |
d2e4a39e | 1247 | struct type *base_type = desc_base_type (type); |
14f9c5c9 AS |
1248 | if (base_type == NULL) |
1249 | return NULL; | |
1250 | if (is_suffix (ada_type_name (base_type), "___XVE")) | |
1251 | return base_type; | |
d2e4a39e | 1252 | else |
14f9c5c9 | 1253 | { |
d2e4a39e | 1254 | struct type *alt_type = ada_find_parallel_type (base_type, "___XVE"); |
14f9c5c9 | 1255 | if (alt_type == NULL) |
4c4b4cd2 | 1256 | return base_type; |
14f9c5c9 | 1257 | else |
4c4b4cd2 | 1258 | return alt_type; |
14f9c5c9 AS |
1259 | } |
1260 | } | |
1261 | ||
4c4b4cd2 PH |
1262 | /* A pointer to the array data for thin-pointer value VAL. */ |
1263 | ||
d2e4a39e AS |
1264 | static struct value * |
1265 | thin_data_pntr (struct value *val) | |
14f9c5c9 | 1266 | { |
df407dfe | 1267 | struct type *type = value_type (val); |
14f9c5c9 | 1268 | if (TYPE_CODE (type) == TYPE_CODE_PTR) |
d2e4a39e | 1269 | return value_cast (desc_data_type (thin_descriptor_type (type)), |
4c4b4cd2 | 1270 | value_copy (val)); |
d2e4a39e | 1271 | else |
14f9c5c9 | 1272 | return value_from_longest (desc_data_type (thin_descriptor_type (type)), |
df407dfe | 1273 | VALUE_ADDRESS (val) + value_offset (val)); |
14f9c5c9 AS |
1274 | } |
1275 | ||
4c4b4cd2 PH |
1276 | /* True iff TYPE indicates a "thick" array pointer type. */ |
1277 | ||
14f9c5c9 | 1278 | static int |
d2e4a39e | 1279 | is_thick_pntr (struct type *type) |
14f9c5c9 AS |
1280 | { |
1281 | type = desc_base_type (type); | |
1282 | return (type != NULL && TYPE_CODE (type) == TYPE_CODE_STRUCT | |
4c4b4cd2 | 1283 | && lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL); |
14f9c5c9 AS |
1284 | } |
1285 | ||
4c4b4cd2 PH |
1286 | /* If TYPE is the type of an array descriptor (fat or thin pointer) or a |
1287 | pointer to one, the type of its bounds data; otherwise, NULL. */ | |
76a01679 | 1288 | |
d2e4a39e AS |
1289 | static struct type * |
1290 | desc_bounds_type (struct type *type) | |
14f9c5c9 | 1291 | { |
d2e4a39e | 1292 | struct type *r; |
14f9c5c9 AS |
1293 | |
1294 | type = desc_base_type (type); | |
1295 | ||
1296 | if (type == NULL) | |
1297 | return NULL; | |
1298 | else if (is_thin_pntr (type)) | |
1299 | { | |
1300 | type = thin_descriptor_type (type); | |
1301 | if (type == NULL) | |
4c4b4cd2 | 1302 | return NULL; |
14f9c5c9 AS |
1303 | r = lookup_struct_elt_type (type, "BOUNDS", 1); |
1304 | if (r != NULL) | |
61ee279c | 1305 | return ada_check_typedef (r); |
14f9c5c9 AS |
1306 | } |
1307 | else if (TYPE_CODE (type) == TYPE_CODE_STRUCT) | |
1308 | { | |
1309 | r = lookup_struct_elt_type (type, "P_BOUNDS", 1); | |
1310 | if (r != NULL) | |
61ee279c | 1311 | return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r))); |
14f9c5c9 AS |
1312 | } |
1313 | return NULL; | |
1314 | } | |
1315 | ||
1316 | /* If ARR is an array descriptor (fat or thin pointer), or pointer to | |
4c4b4cd2 PH |
1317 | one, a pointer to its bounds data. Otherwise NULL. */ |
1318 | ||
d2e4a39e AS |
1319 | static struct value * |
1320 | desc_bounds (struct value *arr) | |
14f9c5c9 | 1321 | { |
df407dfe | 1322 | struct type *type = ada_check_typedef (value_type (arr)); |
d2e4a39e | 1323 | if (is_thin_pntr (type)) |
14f9c5c9 | 1324 | { |
d2e4a39e | 1325 | struct type *bounds_type = |
4c4b4cd2 | 1326 | desc_bounds_type (thin_descriptor_type (type)); |
14f9c5c9 AS |
1327 | LONGEST addr; |
1328 | ||
4cdfadb1 | 1329 | if (bounds_type == NULL) |
323e0a4a | 1330 | error (_("Bad GNAT array descriptor")); |
14f9c5c9 AS |
1331 | |
1332 | /* NOTE: The following calculation is not really kosher, but | |
d2e4a39e | 1333 | since desc_type is an XVE-encoded type (and shouldn't be), |
4c4b4cd2 | 1334 | the correct calculation is a real pain. FIXME (and fix GCC). */ |
14f9c5c9 | 1335 | if (TYPE_CODE (type) == TYPE_CODE_PTR) |
4c4b4cd2 | 1336 | addr = value_as_long (arr); |
d2e4a39e | 1337 | else |
df407dfe | 1338 | addr = VALUE_ADDRESS (arr) + value_offset (arr); |
14f9c5c9 | 1339 | |
d2e4a39e | 1340 | return |
4c4b4cd2 PH |
1341 | value_from_longest (lookup_pointer_type (bounds_type), |
1342 | addr - TYPE_LENGTH (bounds_type)); | |
14f9c5c9 AS |
1343 | } |
1344 | ||
1345 | else if (is_thick_pntr (type)) | |
d2e4a39e | 1346 | return value_struct_elt (&arr, NULL, "P_BOUNDS", NULL, |
323e0a4a | 1347 | _("Bad GNAT array descriptor")); |
14f9c5c9 AS |
1348 | else |
1349 | return NULL; | |
1350 | } | |
1351 | ||
4c4b4cd2 PH |
1352 | /* If TYPE is the type of an array-descriptor (fat pointer), the bit |
1353 | position of the field containing the address of the bounds data. */ | |
1354 | ||
14f9c5c9 | 1355 | static int |
d2e4a39e | 1356 | fat_pntr_bounds_bitpos (struct type *type) |
14f9c5c9 AS |
1357 | { |
1358 | return TYPE_FIELD_BITPOS (desc_base_type (type), 1); | |
1359 | } | |
1360 | ||
1361 | /* If TYPE is the type of an array-descriptor (fat pointer), the bit | |
4c4b4cd2 PH |
1362 | size of the field containing the address of the bounds data. */ |
1363 | ||
14f9c5c9 | 1364 | static int |
d2e4a39e | 1365 | fat_pntr_bounds_bitsize (struct type *type) |
14f9c5c9 AS |
1366 | { |
1367 | type = desc_base_type (type); | |
1368 | ||
d2e4a39e | 1369 | if (TYPE_FIELD_BITSIZE (type, 1) > 0) |
14f9c5c9 AS |
1370 | return TYPE_FIELD_BITSIZE (type, 1); |
1371 | else | |
61ee279c | 1372 | return 8 * TYPE_LENGTH (ada_check_typedef (TYPE_FIELD_TYPE (type, 1))); |
14f9c5c9 AS |
1373 | } |
1374 | ||
4c4b4cd2 | 1375 | /* If TYPE is the type of an array descriptor (fat or thin pointer) or a |
14f9c5c9 | 1376 | pointer to one, the type of its array data (a |
4c4b4cd2 PH |
1377 | pointer-to-array-with-no-bounds type); otherwise, NULL. Use |
1378 | ada_type_of_array to get an array type with bounds data. */ | |
1379 | ||
d2e4a39e AS |
1380 | static struct type * |
1381 | desc_data_type (struct type *type) | |
14f9c5c9 AS |
1382 | { |
1383 | type = desc_base_type (type); | |
1384 | ||
4c4b4cd2 | 1385 | /* NOTE: The following is bogus; see comment in desc_bounds. */ |
14f9c5c9 | 1386 | if (is_thin_pntr (type)) |
d2e4a39e AS |
1387 | return lookup_pointer_type |
1388 | (desc_base_type (TYPE_FIELD_TYPE (thin_descriptor_type (type), 1))); | |
14f9c5c9 AS |
1389 | else if (is_thick_pntr (type)) |
1390 | return lookup_struct_elt_type (type, "P_ARRAY", 1); | |
1391 | else | |
1392 | return NULL; | |
1393 | } | |
1394 | ||
1395 | /* If ARR is an array descriptor (fat or thin pointer), a pointer to | |
1396 | its array data. */ | |
4c4b4cd2 | 1397 | |
d2e4a39e AS |
1398 | static struct value * |
1399 | desc_data (struct value *arr) | |
14f9c5c9 | 1400 | { |
df407dfe | 1401 | struct type *type = value_type (arr); |
14f9c5c9 AS |
1402 | if (is_thin_pntr (type)) |
1403 | return thin_data_pntr (arr); | |
1404 | else if (is_thick_pntr (type)) | |
d2e4a39e | 1405 | return value_struct_elt (&arr, NULL, "P_ARRAY", NULL, |
323e0a4a | 1406 | _("Bad GNAT array descriptor")); |
14f9c5c9 AS |
1407 | else |
1408 | return NULL; | |
1409 | } | |
1410 | ||
1411 | ||
1412 | /* If TYPE is the type of an array-descriptor (fat pointer), the bit | |
4c4b4cd2 PH |
1413 | position of the field containing the address of the data. */ |
1414 | ||
14f9c5c9 | 1415 | static int |
d2e4a39e | 1416 | fat_pntr_data_bitpos (struct type *type) |
14f9c5c9 AS |
1417 | { |
1418 | return TYPE_FIELD_BITPOS (desc_base_type (type), 0); | |
1419 | } | |
1420 | ||
1421 | /* If TYPE is the type of an array-descriptor (fat pointer), the bit | |
4c4b4cd2 PH |
1422 | size of the field containing the address of the data. */ |
1423 | ||
14f9c5c9 | 1424 | static int |
d2e4a39e | 1425 | fat_pntr_data_bitsize (struct type *type) |
14f9c5c9 AS |
1426 | { |
1427 | type = desc_base_type (type); | |
1428 | ||
1429 | if (TYPE_FIELD_BITSIZE (type, 0) > 0) | |
1430 | return TYPE_FIELD_BITSIZE (type, 0); | |
d2e4a39e | 1431 | else |
14f9c5c9 AS |
1432 | return TARGET_CHAR_BIT * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0)); |
1433 | } | |
1434 | ||
4c4b4cd2 | 1435 | /* If BOUNDS is an array-bounds structure (or pointer to one), return |
14f9c5c9 | 1436 | the Ith lower bound stored in it, if WHICH is 0, and the Ith upper |
4c4b4cd2 PH |
1437 | bound, if WHICH is 1. The first bound is I=1. */ |
1438 | ||
d2e4a39e AS |
1439 | static struct value * |
1440 | desc_one_bound (struct value *bounds, int i, int which) | |
14f9c5c9 | 1441 | { |
d2e4a39e | 1442 | return value_struct_elt (&bounds, NULL, bound_name[2 * i + which - 2], NULL, |
323e0a4a | 1443 | _("Bad GNAT array descriptor bounds")); |
14f9c5c9 AS |
1444 | } |
1445 | ||
1446 | /* If BOUNDS is an array-bounds structure type, return the bit position | |
1447 | of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper | |
4c4b4cd2 PH |
1448 | bound, if WHICH is 1. The first bound is I=1. */ |
1449 | ||
14f9c5c9 | 1450 | static int |
d2e4a39e | 1451 | desc_bound_bitpos (struct type *type, int i, int which) |
14f9c5c9 | 1452 | { |
d2e4a39e | 1453 | return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2); |
14f9c5c9 AS |
1454 | } |
1455 | ||
1456 | /* If BOUNDS is an array-bounds structure type, return the bit field size | |
1457 | of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper | |
4c4b4cd2 PH |
1458 | bound, if WHICH is 1. The first bound is I=1. */ |
1459 | ||
76a01679 | 1460 | static int |
d2e4a39e | 1461 | desc_bound_bitsize (struct type *type, int i, int which) |
14f9c5c9 AS |
1462 | { |
1463 | type = desc_base_type (type); | |
1464 | ||
d2e4a39e AS |
1465 | if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0) |
1466 | return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2); | |
1467 | else | |
1468 | return 8 * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 2 * i + which - 2)); | |
14f9c5c9 AS |
1469 | } |
1470 | ||
1471 | /* If TYPE is the type of an array-bounds structure, the type of its | |
4c4b4cd2 PH |
1472 | Ith bound (numbering from 1). Otherwise, NULL. */ |
1473 | ||
d2e4a39e AS |
1474 | static struct type * |
1475 | desc_index_type (struct type *type, int i) | |
14f9c5c9 AS |
1476 | { |
1477 | type = desc_base_type (type); | |
1478 | ||
1479 | if (TYPE_CODE (type) == TYPE_CODE_STRUCT) | |
d2e4a39e AS |
1480 | return lookup_struct_elt_type (type, bound_name[2 * i - 2], 1); |
1481 | else | |
14f9c5c9 AS |
1482 | return NULL; |
1483 | } | |
1484 | ||
4c4b4cd2 PH |
1485 | /* The number of index positions in the array-bounds type TYPE. |
1486 | Return 0 if TYPE is NULL. */ | |
1487 | ||
14f9c5c9 | 1488 | static int |
d2e4a39e | 1489 | desc_arity (struct type *type) |
14f9c5c9 AS |
1490 | { |
1491 | type = desc_base_type (type); | |
1492 | ||
1493 | if (type != NULL) | |
1494 | return TYPE_NFIELDS (type) / 2; | |
1495 | return 0; | |
1496 | } | |
1497 | ||
4c4b4cd2 PH |
1498 | /* Non-zero iff TYPE is a simple array type (not a pointer to one) or |
1499 | an array descriptor type (representing an unconstrained array | |
1500 | type). */ | |
1501 | ||
76a01679 JB |
1502 | static int |
1503 | ada_is_direct_array_type (struct type *type) | |
4c4b4cd2 PH |
1504 | { |
1505 | if (type == NULL) | |
1506 | return 0; | |
61ee279c | 1507 | type = ada_check_typedef (type); |
4c4b4cd2 | 1508 | return (TYPE_CODE (type) == TYPE_CODE_ARRAY |
76a01679 | 1509 | || ada_is_array_descriptor_type (type)); |
4c4b4cd2 PH |
1510 | } |
1511 | ||
52ce6436 PH |
1512 | /* Non-zero iff TYPE represents any kind of array in Ada, or a pointer |
1513 | * to one. */ | |
1514 | ||
1515 | int | |
1516 | ada_is_array_type (struct type *type) | |
1517 | { | |
1518 | while (type != NULL | |
1519 | && (TYPE_CODE (type) == TYPE_CODE_PTR | |
1520 | || TYPE_CODE (type) == TYPE_CODE_REF)) | |
1521 | type = TYPE_TARGET_TYPE (type); | |
1522 | return ada_is_direct_array_type (type); | |
1523 | } | |
1524 | ||
4c4b4cd2 | 1525 | /* Non-zero iff TYPE is a simple array type or pointer to one. */ |
14f9c5c9 | 1526 | |
14f9c5c9 | 1527 | int |
4c4b4cd2 | 1528 | ada_is_simple_array_type (struct type *type) |
14f9c5c9 AS |
1529 | { |
1530 | if (type == NULL) | |
1531 | return 0; | |
61ee279c | 1532 | type = ada_check_typedef (type); |
14f9c5c9 | 1533 | return (TYPE_CODE (type) == TYPE_CODE_ARRAY |
4c4b4cd2 PH |
1534 | || (TYPE_CODE (type) == TYPE_CODE_PTR |
1535 | && TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_ARRAY)); | |
14f9c5c9 AS |
1536 | } |
1537 | ||
4c4b4cd2 PH |
1538 | /* Non-zero iff TYPE belongs to a GNAT array descriptor. */ |
1539 | ||
14f9c5c9 | 1540 | int |
4c4b4cd2 | 1541 | ada_is_array_descriptor_type (struct type *type) |
14f9c5c9 | 1542 | { |
d2e4a39e | 1543 | struct type *data_type = desc_data_type (type); |
14f9c5c9 AS |
1544 | |
1545 | if (type == NULL) | |
1546 | return 0; | |
61ee279c | 1547 | type = ada_check_typedef (type); |
d2e4a39e | 1548 | return |
14f9c5c9 AS |
1549 | data_type != NULL |
1550 | && ((TYPE_CODE (data_type) == TYPE_CODE_PTR | |
4c4b4cd2 PH |
1551 | && TYPE_TARGET_TYPE (data_type) != NULL |
1552 | && TYPE_CODE (TYPE_TARGET_TYPE (data_type)) == TYPE_CODE_ARRAY) | |
1265e4aa | 1553 | || TYPE_CODE (data_type) == TYPE_CODE_ARRAY) |
14f9c5c9 AS |
1554 | && desc_arity (desc_bounds_type (type)) > 0; |
1555 | } | |
1556 | ||
1557 | /* Non-zero iff type is a partially mal-formed GNAT array | |
4c4b4cd2 | 1558 | descriptor. FIXME: This is to compensate for some problems with |
14f9c5c9 | 1559 | debugging output from GNAT. Re-examine periodically to see if it |
4c4b4cd2 PH |
1560 | is still needed. */ |
1561 | ||
14f9c5c9 | 1562 | int |
ebf56fd3 | 1563 | ada_is_bogus_array_descriptor (struct type *type) |
14f9c5c9 | 1564 | { |
d2e4a39e | 1565 | return |
14f9c5c9 AS |
1566 | type != NULL |
1567 | && TYPE_CODE (type) == TYPE_CODE_STRUCT | |
1568 | && (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL | |
4c4b4cd2 PH |
1569 | || lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL) |
1570 | && !ada_is_array_descriptor_type (type); | |
14f9c5c9 AS |
1571 | } |
1572 | ||
1573 | ||
4c4b4cd2 | 1574 | /* If ARR has a record type in the form of a standard GNAT array descriptor, |
14f9c5c9 | 1575 | (fat pointer) returns the type of the array data described---specifically, |
4c4b4cd2 | 1576 | a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled |
14f9c5c9 | 1577 | in from the descriptor; otherwise, they are left unspecified. If |
4c4b4cd2 PH |
1578 | the ARR denotes a null array descriptor and BOUNDS is non-zero, |
1579 | returns NULL. The result is simply the type of ARR if ARR is not | |
14f9c5c9 | 1580 | a descriptor. */ |
d2e4a39e AS |
1581 | struct type * |
1582 | ada_type_of_array (struct value *arr, int bounds) | |
14f9c5c9 | 1583 | { |
df407dfe AC |
1584 | if (ada_is_packed_array_type (value_type (arr))) |
1585 | return decode_packed_array_type (value_type (arr)); | |
14f9c5c9 | 1586 | |
df407dfe AC |
1587 | if (!ada_is_array_descriptor_type (value_type (arr))) |
1588 | return value_type (arr); | |
d2e4a39e AS |
1589 | |
1590 | if (!bounds) | |
1591 | return | |
df407dfe | 1592 | ada_check_typedef (TYPE_TARGET_TYPE (desc_data_type (value_type (arr)))); |
14f9c5c9 AS |
1593 | else |
1594 | { | |
d2e4a39e | 1595 | struct type *elt_type; |
14f9c5c9 | 1596 | int arity; |
d2e4a39e | 1597 | struct value *descriptor; |
df407dfe | 1598 | struct objfile *objf = TYPE_OBJFILE (value_type (arr)); |
14f9c5c9 | 1599 | |
df407dfe AC |
1600 | elt_type = ada_array_element_type (value_type (arr), -1); |
1601 | arity = ada_array_arity (value_type (arr)); | |
14f9c5c9 | 1602 | |
d2e4a39e | 1603 | if (elt_type == NULL || arity == 0) |
df407dfe | 1604 | return ada_check_typedef (value_type (arr)); |
14f9c5c9 AS |
1605 | |
1606 | descriptor = desc_bounds (arr); | |
d2e4a39e | 1607 | if (value_as_long (descriptor) == 0) |
4c4b4cd2 | 1608 | return NULL; |
d2e4a39e | 1609 | while (arity > 0) |
4c4b4cd2 PH |
1610 | { |
1611 | struct type *range_type = alloc_type (objf); | |
1612 | struct type *array_type = alloc_type (objf); | |
1613 | struct value *low = desc_one_bound (descriptor, arity, 0); | |
1614 | struct value *high = desc_one_bound (descriptor, arity, 1); | |
1615 | arity -= 1; | |
1616 | ||
df407dfe | 1617 | create_range_type (range_type, value_type (low), |
529cad9c PH |
1618 | longest_to_int (value_as_long (low)), |
1619 | longest_to_int (value_as_long (high))); | |
4c4b4cd2 PH |
1620 | elt_type = create_array_type (array_type, elt_type, range_type); |
1621 | } | |
14f9c5c9 AS |
1622 | |
1623 | return lookup_pointer_type (elt_type); | |
1624 | } | |
1625 | } | |
1626 | ||
1627 | /* If ARR does not represent an array, returns ARR unchanged. | |
4c4b4cd2 PH |
1628 | Otherwise, returns either a standard GDB array with bounds set |
1629 | appropriately or, if ARR is a non-null fat pointer, a pointer to a standard | |
1630 | GDB array. Returns NULL if ARR is a null fat pointer. */ | |
1631 | ||
d2e4a39e AS |
1632 | struct value * |
1633 | ada_coerce_to_simple_array_ptr (struct value *arr) | |
14f9c5c9 | 1634 | { |
df407dfe | 1635 | if (ada_is_array_descriptor_type (value_type (arr))) |
14f9c5c9 | 1636 | { |
d2e4a39e | 1637 | struct type *arrType = ada_type_of_array (arr, 1); |
14f9c5c9 | 1638 | if (arrType == NULL) |
4c4b4cd2 | 1639 | return NULL; |
14f9c5c9 AS |
1640 | return value_cast (arrType, value_copy (desc_data (arr))); |
1641 | } | |
df407dfe | 1642 | else if (ada_is_packed_array_type (value_type (arr))) |
14f9c5c9 AS |
1643 | return decode_packed_array (arr); |
1644 | else | |
1645 | return arr; | |
1646 | } | |
1647 | ||
1648 | /* If ARR does not represent an array, returns ARR unchanged. | |
1649 | Otherwise, returns a standard GDB array describing ARR (which may | |
4c4b4cd2 PH |
1650 | be ARR itself if it already is in the proper form). */ |
1651 | ||
1652 | static struct value * | |
d2e4a39e | 1653 | ada_coerce_to_simple_array (struct value *arr) |
14f9c5c9 | 1654 | { |
df407dfe | 1655 | if (ada_is_array_descriptor_type (value_type (arr))) |
14f9c5c9 | 1656 | { |
d2e4a39e | 1657 | struct value *arrVal = ada_coerce_to_simple_array_ptr (arr); |
14f9c5c9 | 1658 | if (arrVal == NULL) |
323e0a4a | 1659 | error (_("Bounds unavailable for null array pointer.")); |
529cad9c | 1660 | check_size (TYPE_TARGET_TYPE (value_type (arrVal))); |
14f9c5c9 AS |
1661 | return value_ind (arrVal); |
1662 | } | |
df407dfe | 1663 | else if (ada_is_packed_array_type (value_type (arr))) |
14f9c5c9 | 1664 | return decode_packed_array (arr); |
d2e4a39e | 1665 | else |
14f9c5c9 AS |
1666 | return arr; |
1667 | } | |
1668 | ||
1669 | /* If TYPE represents a GNAT array type, return it translated to an | |
1670 | ordinary GDB array type (possibly with BITSIZE fields indicating | |
4c4b4cd2 PH |
1671 | packing). For other types, is the identity. */ |
1672 | ||
d2e4a39e AS |
1673 | struct type * |
1674 | ada_coerce_to_simple_array_type (struct type *type) | |
14f9c5c9 | 1675 | { |
d2e4a39e AS |
1676 | struct value *mark = value_mark (); |
1677 | struct value *dummy = value_from_longest (builtin_type_long, 0); | |
1678 | struct type *result; | |
04624583 | 1679 | deprecated_set_value_type (dummy, type); |
14f9c5c9 | 1680 | result = ada_type_of_array (dummy, 0); |
4c4b4cd2 | 1681 | value_free_to_mark (mark); |
14f9c5c9 AS |
1682 | return result; |
1683 | } | |
1684 | ||
4c4b4cd2 PH |
1685 | /* Non-zero iff TYPE represents a standard GNAT packed-array type. */ |
1686 | ||
14f9c5c9 | 1687 | int |
d2e4a39e | 1688 | ada_is_packed_array_type (struct type *type) |
14f9c5c9 AS |
1689 | { |
1690 | if (type == NULL) | |
1691 | return 0; | |
4c4b4cd2 | 1692 | type = desc_base_type (type); |
61ee279c | 1693 | type = ada_check_typedef (type); |
d2e4a39e | 1694 | return |
14f9c5c9 AS |
1695 | ada_type_name (type) != NULL |
1696 | && strstr (ada_type_name (type), "___XP") != NULL; | |
1697 | } | |
1698 | ||
1699 | /* Given that TYPE is a standard GDB array type with all bounds filled | |
1700 | in, and that the element size of its ultimate scalar constituents | |
1701 | (that is, either its elements, or, if it is an array of arrays, its | |
1702 | elements' elements, etc.) is *ELT_BITS, return an identical type, | |
1703 | but with the bit sizes of its elements (and those of any | |
1704 | constituent arrays) recorded in the BITSIZE components of its | |
4c4b4cd2 PH |
1705 | TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size |
1706 | in bits. */ | |
1707 | ||
d2e4a39e AS |
1708 | static struct type * |
1709 | packed_array_type (struct type *type, long *elt_bits) | |
14f9c5c9 | 1710 | { |
d2e4a39e AS |
1711 | struct type *new_elt_type; |
1712 | struct type *new_type; | |
14f9c5c9 AS |
1713 | LONGEST low_bound, high_bound; |
1714 | ||
61ee279c | 1715 | type = ada_check_typedef (type); |
14f9c5c9 AS |
1716 | if (TYPE_CODE (type) != TYPE_CODE_ARRAY) |
1717 | return type; | |
1718 | ||
1719 | new_type = alloc_type (TYPE_OBJFILE (type)); | |
61ee279c | 1720 | new_elt_type = packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)), |
4c4b4cd2 | 1721 | elt_bits); |
14f9c5c9 AS |
1722 | create_array_type (new_type, new_elt_type, TYPE_FIELD_TYPE (type, 0)); |
1723 | TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits; | |
1724 | TYPE_NAME (new_type) = ada_type_name (type); | |
1725 | ||
d2e4a39e | 1726 | if (get_discrete_bounds (TYPE_FIELD_TYPE (type, 0), |
4c4b4cd2 | 1727 | &low_bound, &high_bound) < 0) |
14f9c5c9 AS |
1728 | low_bound = high_bound = 0; |
1729 | if (high_bound < low_bound) | |
1730 | *elt_bits = TYPE_LENGTH (new_type) = 0; | |
d2e4a39e | 1731 | else |
14f9c5c9 AS |
1732 | { |
1733 | *elt_bits *= (high_bound - low_bound + 1); | |
d2e4a39e | 1734 | TYPE_LENGTH (new_type) = |
4c4b4cd2 | 1735 | (*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT; |
14f9c5c9 AS |
1736 | } |
1737 | ||
4c4b4cd2 | 1738 | TYPE_FLAGS (new_type) |= TYPE_FLAG_FIXED_INSTANCE; |
14f9c5c9 AS |
1739 | return new_type; |
1740 | } | |
1741 | ||
4c4b4cd2 PH |
1742 | /* The array type encoded by TYPE, where ada_is_packed_array_type (TYPE). */ |
1743 | ||
d2e4a39e AS |
1744 | static struct type * |
1745 | decode_packed_array_type (struct type *type) | |
1746 | { | |
4c4b4cd2 | 1747 | struct symbol *sym; |
d2e4a39e | 1748 | struct block **blocks; |
61ee279c | 1749 | const char *raw_name = ada_type_name (ada_check_typedef (type)); |
d2e4a39e AS |
1750 | char *name = (char *) alloca (strlen (raw_name) + 1); |
1751 | char *tail = strstr (raw_name, "___XP"); | |
1752 | struct type *shadow_type; | |
14f9c5c9 AS |
1753 | long bits; |
1754 | int i, n; | |
1755 | ||
4c4b4cd2 PH |
1756 | type = desc_base_type (type); |
1757 | ||
14f9c5c9 AS |
1758 | memcpy (name, raw_name, tail - raw_name); |
1759 | name[tail - raw_name] = '\000'; | |
1760 | ||
4c4b4cd2 PH |
1761 | sym = standard_lookup (name, get_selected_block (0), VAR_DOMAIN); |
1762 | if (sym == NULL || SYMBOL_TYPE (sym) == NULL) | |
14f9c5c9 | 1763 | { |
323e0a4a | 1764 | lim_warning (_("could not find bounds information on packed array")); |
14f9c5c9 AS |
1765 | return NULL; |
1766 | } | |
4c4b4cd2 | 1767 | shadow_type = SYMBOL_TYPE (sym); |
14f9c5c9 AS |
1768 | |
1769 | if (TYPE_CODE (shadow_type) != TYPE_CODE_ARRAY) | |
1770 | { | |
323e0a4a | 1771 | lim_warning (_("could not understand bounds information on packed array")); |
14f9c5c9 AS |
1772 | return NULL; |
1773 | } | |
d2e4a39e | 1774 | |
14f9c5c9 AS |
1775 | if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1) |
1776 | { | |
4c4b4cd2 | 1777 | lim_warning |
323e0a4a | 1778 | (_("could not understand bit size information on packed array")); |
14f9c5c9 AS |
1779 | return NULL; |
1780 | } | |
d2e4a39e | 1781 | |
14f9c5c9 AS |
1782 | return packed_array_type (shadow_type, &bits); |
1783 | } | |
1784 | ||
4c4b4cd2 | 1785 | /* Given that ARR is a struct value *indicating a GNAT packed array, |
14f9c5c9 AS |
1786 | returns a simple array that denotes that array. Its type is a |
1787 | standard GDB array type except that the BITSIZEs of the array | |
1788 | target types are set to the number of bits in each element, and the | |
4c4b4cd2 | 1789 | type length is set appropriately. */ |
14f9c5c9 | 1790 | |
d2e4a39e AS |
1791 | static struct value * |
1792 | decode_packed_array (struct value *arr) | |
14f9c5c9 | 1793 | { |
4c4b4cd2 | 1794 | struct type *type; |
14f9c5c9 | 1795 | |
4c4b4cd2 | 1796 | arr = ada_coerce_ref (arr); |
df407dfe | 1797 | if (TYPE_CODE (value_type (arr)) == TYPE_CODE_PTR) |
4c4b4cd2 PH |
1798 | arr = ada_value_ind (arr); |
1799 | ||
df407dfe | 1800 | type = decode_packed_array_type (value_type (arr)); |
14f9c5c9 AS |
1801 | if (type == NULL) |
1802 | { | |
323e0a4a | 1803 | error (_("can't unpack array")); |
14f9c5c9 AS |
1804 | return NULL; |
1805 | } | |
61ee279c | 1806 | |
df407dfe | 1807 | if (BITS_BIG_ENDIAN && ada_is_modular_type (value_type (arr))) |
61ee279c PH |
1808 | { |
1809 | /* This is a (right-justified) modular type representing a packed | |
1810 | array with no wrapper. In order to interpret the value through | |
1811 | the (left-justified) packed array type we just built, we must | |
1812 | first left-justify it. */ | |
1813 | int bit_size, bit_pos; | |
1814 | ULONGEST mod; | |
1815 | ||
df407dfe | 1816 | mod = ada_modulus (value_type (arr)) - 1; |
61ee279c PH |
1817 | bit_size = 0; |
1818 | while (mod > 0) | |
1819 | { | |
1820 | bit_size += 1; | |
1821 | mod >>= 1; | |
1822 | } | |
df407dfe | 1823 | bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size; |
61ee279c PH |
1824 | arr = ada_value_primitive_packed_val (arr, NULL, |
1825 | bit_pos / HOST_CHAR_BIT, | |
1826 | bit_pos % HOST_CHAR_BIT, | |
1827 | bit_size, | |
1828 | type); | |
1829 | } | |
1830 | ||
4c4b4cd2 | 1831 | return coerce_unspec_val_to_type (arr, type); |
14f9c5c9 AS |
1832 | } |
1833 | ||
1834 | ||
1835 | /* The value of the element of packed array ARR at the ARITY indices | |
4c4b4cd2 | 1836 | given in IND. ARR must be a simple array. */ |
14f9c5c9 | 1837 | |
d2e4a39e AS |
1838 | static struct value * |
1839 | value_subscript_packed (struct value *arr, int arity, struct value **ind) | |
14f9c5c9 AS |
1840 | { |
1841 | int i; | |
1842 | int bits, elt_off, bit_off; | |
1843 | long elt_total_bit_offset; | |
d2e4a39e AS |
1844 | struct type *elt_type; |
1845 | struct value *v; | |
14f9c5c9 AS |
1846 | |
1847 | bits = 0; | |
1848 | elt_total_bit_offset = 0; | |
df407dfe | 1849 | elt_type = ada_check_typedef (value_type (arr)); |
d2e4a39e | 1850 | for (i = 0; i < arity; i += 1) |
14f9c5c9 | 1851 | { |
d2e4a39e | 1852 | if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY |
4c4b4cd2 PH |
1853 | || TYPE_FIELD_BITSIZE (elt_type, 0) == 0) |
1854 | error | |
323e0a4a | 1855 | (_("attempt to do packed indexing of something other than a packed array")); |
14f9c5c9 | 1856 | else |
4c4b4cd2 PH |
1857 | { |
1858 | struct type *range_type = TYPE_INDEX_TYPE (elt_type); | |
1859 | LONGEST lowerbound, upperbound; | |
1860 | LONGEST idx; | |
1861 | ||
1862 | if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0) | |
1863 | { | |
323e0a4a | 1864 | lim_warning (_("don't know bounds of array")); |
4c4b4cd2 PH |
1865 | lowerbound = upperbound = 0; |
1866 | } | |
1867 | ||
1868 | idx = value_as_long (value_pos_atr (ind[i])); | |
1869 | if (idx < lowerbound || idx > upperbound) | |
323e0a4a | 1870 | lim_warning (_("packed array index %ld out of bounds"), (long) idx); |
4c4b4cd2 PH |
1871 | bits = TYPE_FIELD_BITSIZE (elt_type, 0); |
1872 | elt_total_bit_offset += (idx - lowerbound) * bits; | |
61ee279c | 1873 | elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type)); |
4c4b4cd2 | 1874 | } |
14f9c5c9 AS |
1875 | } |
1876 | elt_off = elt_total_bit_offset / HOST_CHAR_BIT; | |
1877 | bit_off = elt_total_bit_offset % HOST_CHAR_BIT; | |
d2e4a39e AS |
1878 | |
1879 | v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off, | |
4c4b4cd2 | 1880 | bits, elt_type); |
14f9c5c9 AS |
1881 | return v; |
1882 | } | |
1883 | ||
4c4b4cd2 | 1884 | /* Non-zero iff TYPE includes negative integer values. */ |
14f9c5c9 AS |
1885 | |
1886 | static int | |
d2e4a39e | 1887 | has_negatives (struct type *type) |
14f9c5c9 | 1888 | { |
d2e4a39e AS |
1889 | switch (TYPE_CODE (type)) |
1890 | { | |
1891 | default: | |
1892 | return 0; | |
1893 | case TYPE_CODE_INT: | |
1894 | return !TYPE_UNSIGNED (type); | |
1895 | case TYPE_CODE_RANGE: | |
1896 | return TYPE_LOW_BOUND (type) < 0; | |
1897 | } | |
14f9c5c9 | 1898 | } |
d2e4a39e | 1899 | |
14f9c5c9 AS |
1900 | |
1901 | /* Create a new value of type TYPE from the contents of OBJ starting | |
1902 | at byte OFFSET, and bit offset BIT_OFFSET within that byte, | |
1903 | proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then | |
4c4b4cd2 PH |
1904 | assigning through the result will set the field fetched from. |
1905 | VALADDR is ignored unless OBJ is NULL, in which case, | |
1906 | VALADDR+OFFSET must address the start of storage containing the | |
1907 | packed value. The value returned in this case is never an lval. | |
1908 | Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */ | |
14f9c5c9 | 1909 | |
d2e4a39e | 1910 | struct value * |
fc1a4b47 | 1911 | ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr, |
a2bd3dcd | 1912 | long offset, int bit_offset, int bit_size, |
4c4b4cd2 | 1913 | struct type *type) |
14f9c5c9 | 1914 | { |
d2e4a39e | 1915 | struct value *v; |
4c4b4cd2 PH |
1916 | int src, /* Index into the source area */ |
1917 | targ, /* Index into the target area */ | |
1918 | srcBitsLeft, /* Number of source bits left to move */ | |
1919 | nsrc, ntarg, /* Number of source and target bytes */ | |
1920 | unusedLS, /* Number of bits in next significant | |
1921 | byte of source that are unused */ | |
1922 | accumSize; /* Number of meaningful bits in accum */ | |
1923 | unsigned char *bytes; /* First byte containing data to unpack */ | |
d2e4a39e | 1924 | unsigned char *unpacked; |
4c4b4cd2 | 1925 | unsigned long accum; /* Staging area for bits being transferred */ |
14f9c5c9 AS |
1926 | unsigned char sign; |
1927 | int len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8; | |
4c4b4cd2 PH |
1928 | /* Transmit bytes from least to most significant; delta is the direction |
1929 | the indices move. */ | |
14f9c5c9 AS |
1930 | int delta = BITS_BIG_ENDIAN ? -1 : 1; |
1931 | ||
61ee279c | 1932 | type = ada_check_typedef (type); |
14f9c5c9 AS |
1933 | |
1934 | if (obj == NULL) | |
1935 | { | |
1936 | v = allocate_value (type); | |
d2e4a39e | 1937 | bytes = (unsigned char *) (valaddr + offset); |
14f9c5c9 | 1938 | } |
d69fe07e | 1939 | else if (value_lazy (obj)) |
14f9c5c9 AS |
1940 | { |
1941 | v = value_at (type, | |
df407dfe | 1942 | VALUE_ADDRESS (obj) + value_offset (obj) + offset); |
d2e4a39e | 1943 | bytes = (unsigned char *) alloca (len); |
14f9c5c9 AS |
1944 | read_memory (VALUE_ADDRESS (v), bytes, len); |
1945 | } | |
d2e4a39e | 1946 | else |
14f9c5c9 AS |
1947 | { |
1948 | v = allocate_value (type); | |
0fd88904 | 1949 | bytes = (unsigned char *) value_contents (obj) + offset; |
14f9c5c9 | 1950 | } |
d2e4a39e AS |
1951 | |
1952 | if (obj != NULL) | |
14f9c5c9 AS |
1953 | { |
1954 | VALUE_LVAL (v) = VALUE_LVAL (obj); | |
1955 | if (VALUE_LVAL (obj) == lval_internalvar) | |
4c4b4cd2 | 1956 | VALUE_LVAL (v) = lval_internalvar_component; |
df407dfe | 1957 | VALUE_ADDRESS (v) = VALUE_ADDRESS (obj) + value_offset (obj) + offset; |
9bbda503 AC |
1958 | set_value_bitpos (v, bit_offset + value_bitpos (obj)); |
1959 | set_value_bitsize (v, bit_size); | |
df407dfe | 1960 | if (value_bitpos (v) >= HOST_CHAR_BIT) |
4c4b4cd2 PH |
1961 | { |
1962 | VALUE_ADDRESS (v) += 1; | |
9bbda503 | 1963 | set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT); |
4c4b4cd2 | 1964 | } |
14f9c5c9 AS |
1965 | } |
1966 | else | |
9bbda503 | 1967 | set_value_bitsize (v, bit_size); |
0fd88904 | 1968 | unpacked = (unsigned char *) value_contents (v); |
14f9c5c9 AS |
1969 | |
1970 | srcBitsLeft = bit_size; | |
1971 | nsrc = len; | |
1972 | ntarg = TYPE_LENGTH (type); | |
1973 | sign = 0; | |
1974 | if (bit_size == 0) | |
1975 | { | |
1976 | memset (unpacked, 0, TYPE_LENGTH (type)); | |
1977 | return v; | |
1978 | } | |
1979 | else if (BITS_BIG_ENDIAN) | |
1980 | { | |
d2e4a39e | 1981 | src = len - 1; |
1265e4aa JB |
1982 | if (has_negatives (type) |
1983 | && ((bytes[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1)))) | |
4c4b4cd2 | 1984 | sign = ~0; |
d2e4a39e AS |
1985 | |
1986 | unusedLS = | |
4c4b4cd2 PH |
1987 | (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT) |
1988 | % HOST_CHAR_BIT; | |
14f9c5c9 AS |
1989 | |
1990 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
1991 | { |
1992 | case TYPE_CODE_ARRAY: | |
1993 | case TYPE_CODE_UNION: | |
1994 | case TYPE_CODE_STRUCT: | |
1995 | /* Non-scalar values must be aligned at a byte boundary... */ | |
1996 | accumSize = | |
1997 | (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT; | |
1998 | /* ... And are placed at the beginning (most-significant) bytes | |
1999 | of the target. */ | |
529cad9c | 2000 | targ = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT - 1; |
4c4b4cd2 PH |
2001 | break; |
2002 | default: | |
2003 | accumSize = 0; | |
2004 | targ = TYPE_LENGTH (type) - 1; | |
2005 | break; | |
2006 | } | |
14f9c5c9 | 2007 | } |
d2e4a39e | 2008 | else |
14f9c5c9 AS |
2009 | { |
2010 | int sign_bit_offset = (bit_size + bit_offset - 1) % 8; | |
2011 | ||
2012 | src = targ = 0; | |
2013 | unusedLS = bit_offset; | |
2014 | accumSize = 0; | |
2015 | ||
d2e4a39e | 2016 | if (has_negatives (type) && (bytes[len - 1] & (1 << sign_bit_offset))) |
4c4b4cd2 | 2017 | sign = ~0; |
14f9c5c9 | 2018 | } |
d2e4a39e | 2019 | |
14f9c5c9 AS |
2020 | accum = 0; |
2021 | while (nsrc > 0) | |
2022 | { | |
2023 | /* Mask for removing bits of the next source byte that are not | |
4c4b4cd2 | 2024 | part of the value. */ |
d2e4a39e | 2025 | unsigned int unusedMSMask = |
4c4b4cd2 PH |
2026 | (1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) - |
2027 | 1; | |
2028 | /* Sign-extend bits for this byte. */ | |
14f9c5c9 | 2029 | unsigned int signMask = sign & ~unusedMSMask; |
d2e4a39e | 2030 | accum |= |
4c4b4cd2 | 2031 | (((bytes[src] >> unusedLS) & unusedMSMask) | signMask) << accumSize; |
14f9c5c9 | 2032 | accumSize += HOST_CHAR_BIT - unusedLS; |
d2e4a39e | 2033 | if (accumSize >= HOST_CHAR_BIT) |
4c4b4cd2 PH |
2034 | { |
2035 | unpacked[targ] = accum & ~(~0L << HOST_CHAR_BIT); | |
2036 | accumSize -= HOST_CHAR_BIT; | |
2037 | accum >>= HOST_CHAR_BIT; | |
2038 | ntarg -= 1; | |
2039 | targ += delta; | |
2040 | } | |
14f9c5c9 AS |
2041 | srcBitsLeft -= HOST_CHAR_BIT - unusedLS; |
2042 | unusedLS = 0; | |
2043 | nsrc -= 1; | |
2044 | src += delta; | |
2045 | } | |
2046 | while (ntarg > 0) | |
2047 | { | |
2048 | accum |= sign << accumSize; | |
2049 | unpacked[targ] = accum & ~(~0L << HOST_CHAR_BIT); | |
2050 | accumSize -= HOST_CHAR_BIT; | |
2051 | accum >>= HOST_CHAR_BIT; | |
2052 | ntarg -= 1; | |
2053 | targ += delta; | |
2054 | } | |
2055 | ||
2056 | return v; | |
2057 | } | |
d2e4a39e | 2058 | |
14f9c5c9 AS |
2059 | /* Move N bits from SOURCE, starting at bit offset SRC_OFFSET to |
2060 | TARGET, starting at bit offset TARG_OFFSET. SOURCE and TARGET must | |
4c4b4cd2 | 2061 | not overlap. */ |
14f9c5c9 | 2062 | static void |
fc1a4b47 | 2063 | move_bits (gdb_byte *target, int targ_offset, const gdb_byte *source, |
0fd88904 | 2064 | int src_offset, int n) |
14f9c5c9 AS |
2065 | { |
2066 | unsigned int accum, mask; | |
2067 | int accum_bits, chunk_size; | |
2068 | ||
2069 | target += targ_offset / HOST_CHAR_BIT; | |
2070 | targ_offset %= HOST_CHAR_BIT; | |
2071 | source += src_offset / HOST_CHAR_BIT; | |
2072 | src_offset %= HOST_CHAR_BIT; | |
d2e4a39e | 2073 | if (BITS_BIG_ENDIAN) |
14f9c5c9 AS |
2074 | { |
2075 | accum = (unsigned char) *source; | |
2076 | source += 1; | |
2077 | accum_bits = HOST_CHAR_BIT - src_offset; | |
2078 | ||
d2e4a39e | 2079 | while (n > 0) |
4c4b4cd2 PH |
2080 | { |
2081 | int unused_right; | |
2082 | accum = (accum << HOST_CHAR_BIT) + (unsigned char) *source; | |
2083 | accum_bits += HOST_CHAR_BIT; | |
2084 | source += 1; | |
2085 | chunk_size = HOST_CHAR_BIT - targ_offset; | |
2086 | if (chunk_size > n) | |
2087 | chunk_size = n; | |
2088 | unused_right = HOST_CHAR_BIT - (chunk_size + targ_offset); | |
2089 | mask = ((1 << chunk_size) - 1) << unused_right; | |
2090 | *target = | |
2091 | (*target & ~mask) | |
2092 | | ((accum >> (accum_bits - chunk_size - unused_right)) & mask); | |
2093 | n -= chunk_size; | |
2094 | accum_bits -= chunk_size; | |
2095 | target += 1; | |
2096 | targ_offset = 0; | |
2097 | } | |
14f9c5c9 AS |
2098 | } |
2099 | else | |
2100 | { | |
2101 | accum = (unsigned char) *source >> src_offset; | |
2102 | source += 1; | |
2103 | accum_bits = HOST_CHAR_BIT - src_offset; | |
2104 | ||
d2e4a39e | 2105 | while (n > 0) |
4c4b4cd2 PH |
2106 | { |
2107 | accum = accum + ((unsigned char) *source << accum_bits); | |
2108 | accum_bits += HOST_CHAR_BIT; | |
2109 | source += 1; | |
2110 | chunk_size = HOST_CHAR_BIT - targ_offset; | |
2111 | if (chunk_size > n) | |
2112 | chunk_size = n; | |
2113 | mask = ((1 << chunk_size) - 1) << targ_offset; | |
2114 | *target = (*target & ~mask) | ((accum << targ_offset) & mask); | |
2115 | n -= chunk_size; | |
2116 | accum_bits -= chunk_size; | |
2117 | accum >>= chunk_size; | |
2118 | target += 1; | |
2119 | targ_offset = 0; | |
2120 | } | |
14f9c5c9 AS |
2121 | } |
2122 | } | |
2123 | ||
14f9c5c9 AS |
2124 | /* Store the contents of FROMVAL into the location of TOVAL. |
2125 | Return a new value with the location of TOVAL and contents of | |
2126 | FROMVAL. Handles assignment into packed fields that have | |
4c4b4cd2 | 2127 | floating-point or non-scalar types. */ |
14f9c5c9 | 2128 | |
d2e4a39e AS |
2129 | static struct value * |
2130 | ada_value_assign (struct value *toval, struct value *fromval) | |
14f9c5c9 | 2131 | { |
df407dfe AC |
2132 | struct type *type = value_type (toval); |
2133 | int bits = value_bitsize (toval); | |
14f9c5c9 | 2134 | |
52ce6436 PH |
2135 | toval = ada_coerce_ref (toval); |
2136 | fromval = ada_coerce_ref (fromval); | |
2137 | ||
2138 | if (ada_is_direct_array_type (value_type (toval))) | |
2139 | toval = ada_coerce_to_simple_array (toval); | |
2140 | if (ada_is_direct_array_type (value_type (fromval))) | |
2141 | fromval = ada_coerce_to_simple_array (fromval); | |
2142 | ||
88e3b34b | 2143 | if (!deprecated_value_modifiable (toval)) |
323e0a4a | 2144 | error (_("Left operand of assignment is not a modifiable lvalue.")); |
14f9c5c9 | 2145 | |
d2e4a39e | 2146 | if (VALUE_LVAL (toval) == lval_memory |
14f9c5c9 | 2147 | && bits > 0 |
d2e4a39e | 2148 | && (TYPE_CODE (type) == TYPE_CODE_FLT |
4c4b4cd2 | 2149 | || TYPE_CODE (type) == TYPE_CODE_STRUCT)) |
14f9c5c9 | 2150 | { |
df407dfe AC |
2151 | int len = (value_bitpos (toval) |
2152 | + bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT; | |
d2e4a39e AS |
2153 | char *buffer = (char *) alloca (len); |
2154 | struct value *val; | |
52ce6436 | 2155 | CORE_ADDR to_addr = VALUE_ADDRESS (toval) + value_offset (toval); |
14f9c5c9 AS |
2156 | |
2157 | if (TYPE_CODE (type) == TYPE_CODE_FLT) | |
4c4b4cd2 | 2158 | fromval = value_cast (type, fromval); |
14f9c5c9 | 2159 | |
52ce6436 | 2160 | read_memory (to_addr, buffer, len); |
14f9c5c9 | 2161 | if (BITS_BIG_ENDIAN) |
df407dfe | 2162 | move_bits (buffer, value_bitpos (toval), |
0fd88904 | 2163 | value_contents (fromval), |
df407dfe | 2164 | TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT - |
4c4b4cd2 | 2165 | bits, bits); |
14f9c5c9 | 2166 | else |
0fd88904 | 2167 | move_bits (buffer, value_bitpos (toval), value_contents (fromval), |
4c4b4cd2 | 2168 | 0, bits); |
52ce6436 PH |
2169 | write_memory (to_addr, buffer, len); |
2170 | if (deprecated_memory_changed_hook) | |
2171 | deprecated_memory_changed_hook (to_addr, len); | |
2172 | ||
14f9c5c9 | 2173 | val = value_copy (toval); |
0fd88904 | 2174 | memcpy (value_contents_raw (val), value_contents (fromval), |
4c4b4cd2 | 2175 | TYPE_LENGTH (type)); |
04624583 | 2176 | deprecated_set_value_type (val, type); |
d2e4a39e | 2177 | |
14f9c5c9 AS |
2178 | return val; |
2179 | } | |
2180 | ||
2181 | return value_assign (toval, fromval); | |
2182 | } | |
2183 | ||
2184 | ||
52ce6436 PH |
2185 | /* Given that COMPONENT is a memory lvalue that is part of the lvalue |
2186 | * CONTAINER, assign the contents of VAL to COMPONENTS's place in | |
2187 | * CONTAINER. Modifies the VALUE_CONTENTS of CONTAINER only, not | |
2188 | * COMPONENT, and not the inferior's memory. The current contents | |
2189 | * of COMPONENT are ignored. */ | |
2190 | static void | |
2191 | value_assign_to_component (struct value *container, struct value *component, | |
2192 | struct value *val) | |
2193 | { | |
2194 | LONGEST offset_in_container = | |
2195 | (LONGEST) (VALUE_ADDRESS (component) + value_offset (component) | |
2196 | - VALUE_ADDRESS (container) - value_offset (container)); | |
2197 | int bit_offset_in_container = | |
2198 | value_bitpos (component) - value_bitpos (container); | |
2199 | int bits; | |
2200 | ||
2201 | val = value_cast (value_type (component), val); | |
2202 | ||
2203 | if (value_bitsize (component) == 0) | |
2204 | bits = TARGET_CHAR_BIT * TYPE_LENGTH (value_type (component)); | |
2205 | else | |
2206 | bits = value_bitsize (component); | |
2207 | ||
2208 | if (BITS_BIG_ENDIAN) | |
2209 | move_bits (value_contents_writeable (container) + offset_in_container, | |
2210 | value_bitpos (container) + bit_offset_in_container, | |
2211 | value_contents (val), | |
2212 | TYPE_LENGTH (value_type (component)) * TARGET_CHAR_BIT - bits, | |
2213 | bits); | |
2214 | else | |
2215 | move_bits (value_contents_writeable (container) + offset_in_container, | |
2216 | value_bitpos (container) + bit_offset_in_container, | |
2217 | value_contents (val), 0, bits); | |
2218 | } | |
2219 | ||
4c4b4cd2 PH |
2220 | /* The value of the element of array ARR at the ARITY indices given in IND. |
2221 | ARR may be either a simple array, GNAT array descriptor, or pointer | |
14f9c5c9 AS |
2222 | thereto. */ |
2223 | ||
d2e4a39e AS |
2224 | struct value * |
2225 | ada_value_subscript (struct value *arr, int arity, struct value **ind) | |
14f9c5c9 AS |
2226 | { |
2227 | int k; | |
d2e4a39e AS |
2228 | struct value *elt; |
2229 | struct type *elt_type; | |
14f9c5c9 AS |
2230 | |
2231 | elt = ada_coerce_to_simple_array (arr); | |
2232 | ||
df407dfe | 2233 | elt_type = ada_check_typedef (value_type (elt)); |
d2e4a39e | 2234 | if (TYPE_CODE (elt_type) == TYPE_CODE_ARRAY |
14f9c5c9 AS |
2235 | && TYPE_FIELD_BITSIZE (elt_type, 0) > 0) |
2236 | return value_subscript_packed (elt, arity, ind); | |
2237 | ||
2238 | for (k = 0; k < arity; k += 1) | |
2239 | { | |
2240 | if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY) | |
323e0a4a | 2241 | error (_("too many subscripts (%d expected)"), k); |
14f9c5c9 AS |
2242 | elt = value_subscript (elt, value_pos_atr (ind[k])); |
2243 | } | |
2244 | return elt; | |
2245 | } | |
2246 | ||
2247 | /* Assuming ARR is a pointer to a standard GDB array of type TYPE, the | |
2248 | value of the element of *ARR at the ARITY indices given in | |
4c4b4cd2 | 2249 | IND. Does not read the entire array into memory. */ |
14f9c5c9 | 2250 | |
d2e4a39e AS |
2251 | struct value * |
2252 | ada_value_ptr_subscript (struct value *arr, struct type *type, int arity, | |
4c4b4cd2 | 2253 | struct value **ind) |
14f9c5c9 AS |
2254 | { |
2255 | int k; | |
2256 | ||
2257 | for (k = 0; k < arity; k += 1) | |
2258 | { | |
2259 | LONGEST lwb, upb; | |
d2e4a39e | 2260 | struct value *idx; |
14f9c5c9 AS |
2261 | |
2262 | if (TYPE_CODE (type) != TYPE_CODE_ARRAY) | |
323e0a4a | 2263 | error (_("too many subscripts (%d expected)"), k); |
d2e4a39e | 2264 | arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)), |
4c4b4cd2 | 2265 | value_copy (arr)); |
14f9c5c9 | 2266 | get_discrete_bounds (TYPE_INDEX_TYPE (type), &lwb, &upb); |
4c4b4cd2 PH |
2267 | idx = value_pos_atr (ind[k]); |
2268 | if (lwb != 0) | |
2269 | idx = value_sub (idx, value_from_longest (builtin_type_int, lwb)); | |
14f9c5c9 AS |
2270 | arr = value_add (arr, idx); |
2271 | type = TYPE_TARGET_TYPE (type); | |
2272 | } | |
2273 | ||
2274 | return value_ind (arr); | |
2275 | } | |
2276 | ||
0b5d8877 PH |
2277 | /* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the |
2278 | actual type of ARRAY_PTR is ignored), returns a reference to | |
2279 | the Ada slice of HIGH-LOW+1 elements starting at index LOW. The lower | |
2280 | bound of this array is LOW, as per Ada rules. */ | |
2281 | static struct value * | |
6c038f32 | 2282 | ada_value_slice_ptr (struct value *array_ptr, struct type *type, |
0b5d8877 PH |
2283 | int low, int high) |
2284 | { | |
6c038f32 | 2285 | CORE_ADDR base = value_as_address (array_ptr) |
0b5d8877 PH |
2286 | + ((low - TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type))) |
2287 | * TYPE_LENGTH (TYPE_TARGET_TYPE (type))); | |
6c038f32 PH |
2288 | struct type *index_type = |
2289 | create_range_type (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (type)), | |
0b5d8877 | 2290 | low, high); |
6c038f32 | 2291 | struct type *slice_type = |
0b5d8877 PH |
2292 | create_array_type (NULL, TYPE_TARGET_TYPE (type), index_type); |
2293 | return value_from_pointer (lookup_reference_type (slice_type), base); | |
2294 | } | |
2295 | ||
2296 | ||
2297 | static struct value * | |
2298 | ada_value_slice (struct value *array, int low, int high) | |
2299 | { | |
df407dfe | 2300 | struct type *type = value_type (array); |
6c038f32 | 2301 | struct type *index_type = |
0b5d8877 | 2302 | create_range_type (NULL, TYPE_INDEX_TYPE (type), low, high); |
6c038f32 | 2303 | struct type *slice_type = |
0b5d8877 | 2304 | create_array_type (NULL, TYPE_TARGET_TYPE (type), index_type); |
6c038f32 | 2305 | return value_cast (slice_type, value_slice (array, low, high - low + 1)); |
0b5d8877 PH |
2306 | } |
2307 | ||
14f9c5c9 AS |
2308 | /* If type is a record type in the form of a standard GNAT array |
2309 | descriptor, returns the number of dimensions for type. If arr is a | |
2310 | simple array, returns the number of "array of"s that prefix its | |
4c4b4cd2 | 2311 | type designation. Otherwise, returns 0. */ |
14f9c5c9 AS |
2312 | |
2313 | int | |
d2e4a39e | 2314 | ada_array_arity (struct type *type) |
14f9c5c9 AS |
2315 | { |
2316 | int arity; | |
2317 | ||
2318 | if (type == NULL) | |
2319 | return 0; | |
2320 | ||
2321 | type = desc_base_type (type); | |
2322 | ||
2323 | arity = 0; | |
d2e4a39e | 2324 | if (TYPE_CODE (type) == TYPE_CODE_STRUCT) |
14f9c5c9 | 2325 | return desc_arity (desc_bounds_type (type)); |
d2e4a39e AS |
2326 | else |
2327 | while (TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
14f9c5c9 | 2328 | { |
4c4b4cd2 | 2329 | arity += 1; |
61ee279c | 2330 | type = ada_check_typedef (TYPE_TARGET_TYPE (type)); |
14f9c5c9 | 2331 | } |
d2e4a39e | 2332 | |
14f9c5c9 AS |
2333 | return arity; |
2334 | } | |
2335 | ||
2336 | /* If TYPE is a record type in the form of a standard GNAT array | |
2337 | descriptor or a simple array type, returns the element type for | |
2338 | TYPE after indexing by NINDICES indices, or by all indices if | |
4c4b4cd2 | 2339 | NINDICES is -1. Otherwise, returns NULL. */ |
14f9c5c9 | 2340 | |
d2e4a39e AS |
2341 | struct type * |
2342 | ada_array_element_type (struct type *type, int nindices) | |
14f9c5c9 AS |
2343 | { |
2344 | type = desc_base_type (type); | |
2345 | ||
d2e4a39e | 2346 | if (TYPE_CODE (type) == TYPE_CODE_STRUCT) |
14f9c5c9 AS |
2347 | { |
2348 | int k; | |
d2e4a39e | 2349 | struct type *p_array_type; |
14f9c5c9 AS |
2350 | |
2351 | p_array_type = desc_data_type (type); | |
2352 | ||
2353 | k = ada_array_arity (type); | |
2354 | if (k == 0) | |
4c4b4cd2 | 2355 | return NULL; |
d2e4a39e | 2356 | |
4c4b4cd2 | 2357 | /* Initially p_array_type = elt_type(*)[]...(k times)...[]. */ |
14f9c5c9 | 2358 | if (nindices >= 0 && k > nindices) |
4c4b4cd2 | 2359 | k = nindices; |
14f9c5c9 | 2360 | p_array_type = TYPE_TARGET_TYPE (p_array_type); |
d2e4a39e | 2361 | while (k > 0 && p_array_type != NULL) |
4c4b4cd2 | 2362 | { |
61ee279c | 2363 | p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type)); |
4c4b4cd2 PH |
2364 | k -= 1; |
2365 | } | |
14f9c5c9 AS |
2366 | return p_array_type; |
2367 | } | |
2368 | else if (TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
2369 | { | |
2370 | while (nindices != 0 && TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
4c4b4cd2 PH |
2371 | { |
2372 | type = TYPE_TARGET_TYPE (type); | |
2373 | nindices -= 1; | |
2374 | } | |
14f9c5c9 AS |
2375 | return type; |
2376 | } | |
2377 | ||
2378 | return NULL; | |
2379 | } | |
2380 | ||
4c4b4cd2 PH |
2381 | /* The type of nth index in arrays of given type (n numbering from 1). |
2382 | Does not examine memory. */ | |
14f9c5c9 | 2383 | |
d2e4a39e AS |
2384 | struct type * |
2385 | ada_index_type (struct type *type, int n) | |
14f9c5c9 | 2386 | { |
4c4b4cd2 PH |
2387 | struct type *result_type; |
2388 | ||
14f9c5c9 AS |
2389 | type = desc_base_type (type); |
2390 | ||
2391 | if (n > ada_array_arity (type)) | |
2392 | return NULL; | |
2393 | ||
4c4b4cd2 | 2394 | if (ada_is_simple_array_type (type)) |
14f9c5c9 AS |
2395 | { |
2396 | int i; | |
2397 | ||
2398 | for (i = 1; i < n; i += 1) | |
4c4b4cd2 PH |
2399 | type = TYPE_TARGET_TYPE (type); |
2400 | result_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, 0)); | |
2401 | /* FIXME: The stabs type r(0,0);bound;bound in an array type | |
2402 | has a target type of TYPE_CODE_UNDEF. We compensate here, but | |
76a01679 JB |
2403 | perhaps stabsread.c would make more sense. */ |
2404 | if (result_type == NULL || TYPE_CODE (result_type) == TYPE_CODE_UNDEF) | |
2405 | result_type = builtin_type_int; | |
14f9c5c9 | 2406 | |
4c4b4cd2 | 2407 | return result_type; |
14f9c5c9 | 2408 | } |
d2e4a39e | 2409 | else |
14f9c5c9 AS |
2410 | return desc_index_type (desc_bounds_type (type), n); |
2411 | } | |
2412 | ||
2413 | /* Given that arr is an array type, returns the lower bound of the | |
2414 | Nth index (numbering from 1) if WHICH is 0, and the upper bound if | |
4c4b4cd2 PH |
2415 | WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an |
2416 | array-descriptor type. If TYPEP is non-null, *TYPEP is set to the | |
2417 | bounds type. It works for other arrays with bounds supplied by | |
2418 | run-time quantities other than discriminants. */ | |
14f9c5c9 AS |
2419 | |
2420 | LONGEST | |
d2e4a39e | 2421 | ada_array_bound_from_type (struct type * arr_type, int n, int which, |
4c4b4cd2 | 2422 | struct type ** typep) |
14f9c5c9 | 2423 | { |
d2e4a39e AS |
2424 | struct type *type; |
2425 | struct type *index_type_desc; | |
14f9c5c9 AS |
2426 | |
2427 | if (ada_is_packed_array_type (arr_type)) | |
2428 | arr_type = decode_packed_array_type (arr_type); | |
2429 | ||
4c4b4cd2 | 2430 | if (arr_type == NULL || !ada_is_simple_array_type (arr_type)) |
14f9c5c9 AS |
2431 | { |
2432 | if (typep != NULL) | |
4c4b4cd2 | 2433 | *typep = builtin_type_int; |
d2e4a39e | 2434 | return (LONGEST) - which; |
14f9c5c9 AS |
2435 | } |
2436 | ||
2437 | if (TYPE_CODE (arr_type) == TYPE_CODE_PTR) | |
2438 | type = TYPE_TARGET_TYPE (arr_type); | |
2439 | else | |
2440 | type = arr_type; | |
2441 | ||
2442 | index_type_desc = ada_find_parallel_type (type, "___XA"); | |
d2e4a39e | 2443 | if (index_type_desc == NULL) |
14f9c5c9 | 2444 | { |
d2e4a39e AS |
2445 | struct type *range_type; |
2446 | struct type *index_type; | |
14f9c5c9 | 2447 | |
d2e4a39e | 2448 | while (n > 1) |
4c4b4cd2 PH |
2449 | { |
2450 | type = TYPE_TARGET_TYPE (type); | |
2451 | n -= 1; | |
2452 | } | |
14f9c5c9 AS |
2453 | |
2454 | range_type = TYPE_INDEX_TYPE (type); | |
2455 | index_type = TYPE_TARGET_TYPE (range_type); | |
2456 | if (TYPE_CODE (index_type) == TYPE_CODE_UNDEF) | |
4c4b4cd2 | 2457 | index_type = builtin_type_long; |
14f9c5c9 | 2458 | if (typep != NULL) |
4c4b4cd2 | 2459 | *typep = index_type; |
d2e4a39e | 2460 | return |
4c4b4cd2 PH |
2461 | (LONGEST) (which == 0 |
2462 | ? TYPE_LOW_BOUND (range_type) | |
2463 | : TYPE_HIGH_BOUND (range_type)); | |
14f9c5c9 | 2464 | } |
d2e4a39e | 2465 | else |
14f9c5c9 | 2466 | { |
d2e4a39e | 2467 | struct type *index_type = |
4c4b4cd2 PH |
2468 | to_fixed_range_type (TYPE_FIELD_NAME (index_type_desc, n - 1), |
2469 | NULL, TYPE_OBJFILE (arr_type)); | |
14f9c5c9 | 2470 | if (typep != NULL) |
4c4b4cd2 | 2471 | *typep = TYPE_TARGET_TYPE (index_type); |
d2e4a39e | 2472 | return |
4c4b4cd2 PH |
2473 | (LONGEST) (which == 0 |
2474 | ? TYPE_LOW_BOUND (index_type) | |
2475 | : TYPE_HIGH_BOUND (index_type)); | |
14f9c5c9 AS |
2476 | } |
2477 | } | |
2478 | ||
2479 | /* Given that arr is an array value, returns the lower bound of the | |
2480 | nth index (numbering from 1) if which is 0, and the upper bound if | |
4c4b4cd2 PH |
2481 | which is 1. This routine will also work for arrays with bounds |
2482 | supplied by run-time quantities other than discriminants. */ | |
14f9c5c9 | 2483 | |
d2e4a39e | 2484 | struct value * |
4dc81987 | 2485 | ada_array_bound (struct value *arr, int n, int which) |
14f9c5c9 | 2486 | { |
df407dfe | 2487 | struct type *arr_type = value_type (arr); |
14f9c5c9 AS |
2488 | |
2489 | if (ada_is_packed_array_type (arr_type)) | |
2490 | return ada_array_bound (decode_packed_array (arr), n, which); | |
4c4b4cd2 | 2491 | else if (ada_is_simple_array_type (arr_type)) |
14f9c5c9 | 2492 | { |
d2e4a39e | 2493 | struct type *type; |
14f9c5c9 AS |
2494 | LONGEST v = ada_array_bound_from_type (arr_type, n, which, &type); |
2495 | return value_from_longest (type, v); | |
2496 | } | |
2497 | else | |
2498 | return desc_one_bound (desc_bounds (arr), n, which); | |
2499 | } | |
2500 | ||
2501 | /* Given that arr is an array value, returns the length of the | |
2502 | nth index. This routine will also work for arrays with bounds | |
4c4b4cd2 PH |
2503 | supplied by run-time quantities other than discriminants. |
2504 | Does not work for arrays indexed by enumeration types with representation | |
2505 | clauses at the moment. */ | |
14f9c5c9 | 2506 | |
d2e4a39e AS |
2507 | struct value * |
2508 | ada_array_length (struct value *arr, int n) | |
14f9c5c9 | 2509 | { |
df407dfe | 2510 | struct type *arr_type = ada_check_typedef (value_type (arr)); |
14f9c5c9 AS |
2511 | |
2512 | if (ada_is_packed_array_type (arr_type)) | |
2513 | return ada_array_length (decode_packed_array (arr), n); | |
2514 | ||
4c4b4cd2 | 2515 | if (ada_is_simple_array_type (arr_type)) |
14f9c5c9 | 2516 | { |
d2e4a39e | 2517 | struct type *type; |
14f9c5c9 | 2518 | LONGEST v = |
4c4b4cd2 PH |
2519 | ada_array_bound_from_type (arr_type, n, 1, &type) - |
2520 | ada_array_bound_from_type (arr_type, n, 0, NULL) + 1; | |
14f9c5c9 AS |
2521 | return value_from_longest (type, v); |
2522 | } | |
2523 | else | |
d2e4a39e | 2524 | return |
72d5681a | 2525 | value_from_longest (builtin_type_int, |
4c4b4cd2 PH |
2526 | value_as_long (desc_one_bound (desc_bounds (arr), |
2527 | n, 1)) | |
2528 | - value_as_long (desc_one_bound (desc_bounds (arr), | |
2529 | n, 0)) + 1); | |
2530 | } | |
2531 | ||
2532 | /* An empty array whose type is that of ARR_TYPE (an array type), | |
2533 | with bounds LOW to LOW-1. */ | |
2534 | ||
2535 | static struct value * | |
2536 | empty_array (struct type *arr_type, int low) | |
2537 | { | |
6c038f32 | 2538 | struct type *index_type = |
0b5d8877 PH |
2539 | create_range_type (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (arr_type)), |
2540 | low, low - 1); | |
2541 | struct type *elt_type = ada_array_element_type (arr_type, 1); | |
2542 | return allocate_value (create_array_type (NULL, elt_type, index_type)); | |
14f9c5c9 | 2543 | } |
14f9c5c9 | 2544 | \f |
d2e4a39e | 2545 | |
4c4b4cd2 | 2546 | /* Name resolution */ |
14f9c5c9 | 2547 | |
4c4b4cd2 PH |
2548 | /* The "decoded" name for the user-definable Ada operator corresponding |
2549 | to OP. */ | |
14f9c5c9 | 2550 | |
d2e4a39e | 2551 | static const char * |
4c4b4cd2 | 2552 | ada_decoded_op_name (enum exp_opcode op) |
14f9c5c9 AS |
2553 | { |
2554 | int i; | |
2555 | ||
4c4b4cd2 | 2556 | for (i = 0; ada_opname_table[i].encoded != NULL; i += 1) |
14f9c5c9 AS |
2557 | { |
2558 | if (ada_opname_table[i].op == op) | |
4c4b4cd2 | 2559 | return ada_opname_table[i].decoded; |
14f9c5c9 | 2560 | } |
323e0a4a | 2561 | error (_("Could not find operator name for opcode")); |
14f9c5c9 AS |
2562 | } |
2563 | ||
2564 | ||
4c4b4cd2 PH |
2565 | /* Same as evaluate_type (*EXP), but resolves ambiguous symbol |
2566 | references (marked by OP_VAR_VALUE nodes in which the symbol has an | |
2567 | undefined namespace) and converts operators that are | |
2568 | user-defined into appropriate function calls. If CONTEXT_TYPE is | |
14f9c5c9 AS |
2569 | non-null, it provides a preferred result type [at the moment, only |
2570 | type void has any effect---causing procedures to be preferred over | |
2571 | functions in calls]. A null CONTEXT_TYPE indicates that a non-void | |
4c4b4cd2 | 2572 | return type is preferred. May change (expand) *EXP. */ |
14f9c5c9 | 2573 | |
4c4b4cd2 PH |
2574 | static void |
2575 | resolve (struct expression **expp, int void_context_p) | |
14f9c5c9 AS |
2576 | { |
2577 | int pc; | |
2578 | pc = 0; | |
4c4b4cd2 | 2579 | resolve_subexp (expp, &pc, 1, void_context_p ? builtin_type_void : NULL); |
14f9c5c9 AS |
2580 | } |
2581 | ||
4c4b4cd2 PH |
2582 | /* Resolve the operator of the subexpression beginning at |
2583 | position *POS of *EXPP. "Resolving" consists of replacing | |
2584 | the symbols that have undefined namespaces in OP_VAR_VALUE nodes | |
2585 | with their resolutions, replacing built-in operators with | |
2586 | function calls to user-defined operators, where appropriate, and, | |
2587 | when DEPROCEDURE_P is non-zero, converting function-valued variables | |
2588 | into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions | |
2589 | are as in ada_resolve, above. */ | |
14f9c5c9 | 2590 | |
d2e4a39e | 2591 | static struct value * |
4c4b4cd2 | 2592 | resolve_subexp (struct expression **expp, int *pos, int deprocedure_p, |
76a01679 | 2593 | struct type *context_type) |
14f9c5c9 AS |
2594 | { |
2595 | int pc = *pos; | |
2596 | int i; | |
4c4b4cd2 | 2597 | struct expression *exp; /* Convenience: == *expp. */ |
14f9c5c9 | 2598 | enum exp_opcode op = (*expp)->elts[pc].opcode; |
4c4b4cd2 PH |
2599 | struct value **argvec; /* Vector of operand types (alloca'ed). */ |
2600 | int nargs; /* Number of operands. */ | |
52ce6436 | 2601 | int oplen; |
14f9c5c9 AS |
2602 | |
2603 | argvec = NULL; | |
2604 | nargs = 0; | |
2605 | exp = *expp; | |
2606 | ||
52ce6436 PH |
2607 | /* Pass one: resolve operands, saving their types and updating *pos, |
2608 | if needed. */ | |
14f9c5c9 AS |
2609 | switch (op) |
2610 | { | |
4c4b4cd2 PH |
2611 | case OP_FUNCALL: |
2612 | if (exp->elts[pc + 3].opcode == OP_VAR_VALUE | |
76a01679 JB |
2613 | && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN) |
2614 | *pos += 7; | |
4c4b4cd2 PH |
2615 | else |
2616 | { | |
2617 | *pos += 3; | |
2618 | resolve_subexp (expp, pos, 0, NULL); | |
2619 | } | |
2620 | nargs = longest_to_int (exp->elts[pc + 1].longconst); | |
14f9c5c9 AS |
2621 | break; |
2622 | ||
14f9c5c9 | 2623 | case UNOP_ADDR: |
4c4b4cd2 PH |
2624 | *pos += 1; |
2625 | resolve_subexp (expp, pos, 0, NULL); | |
2626 | break; | |
2627 | ||
52ce6436 PH |
2628 | case UNOP_QUAL: |
2629 | *pos += 3; | |
2630 | resolve_subexp (expp, pos, 1, exp->elts[pc + 1].type); | |
4c4b4cd2 PH |
2631 | break; |
2632 | ||
52ce6436 | 2633 | case OP_ATR_MODULUS: |
4c4b4cd2 PH |
2634 | case OP_ATR_SIZE: |
2635 | case OP_ATR_TAG: | |
4c4b4cd2 PH |
2636 | case OP_ATR_FIRST: |
2637 | case OP_ATR_LAST: | |
2638 | case OP_ATR_LENGTH: | |
2639 | case OP_ATR_POS: | |
2640 | case OP_ATR_VAL: | |
4c4b4cd2 PH |
2641 | case OP_ATR_MIN: |
2642 | case OP_ATR_MAX: | |
52ce6436 PH |
2643 | case TERNOP_IN_RANGE: |
2644 | case BINOP_IN_BOUNDS: | |
2645 | case UNOP_IN_RANGE: | |
2646 | case OP_AGGREGATE: | |
2647 | case OP_OTHERS: | |
2648 | case OP_CHOICES: | |
2649 | case OP_POSITIONAL: | |
2650 | case OP_DISCRETE_RANGE: | |
2651 | case OP_NAME: | |
2652 | ada_forward_operator_length (exp, pc, &oplen, &nargs); | |
2653 | *pos += oplen; | |
14f9c5c9 AS |
2654 | break; |
2655 | ||
2656 | case BINOP_ASSIGN: | |
2657 | { | |
4c4b4cd2 PH |
2658 | struct value *arg1; |
2659 | ||
2660 | *pos += 1; | |
2661 | arg1 = resolve_subexp (expp, pos, 0, NULL); | |
2662 | if (arg1 == NULL) | |
2663 | resolve_subexp (expp, pos, 1, NULL); | |
2664 | else | |
df407dfe | 2665 | resolve_subexp (expp, pos, 1, value_type (arg1)); |
4c4b4cd2 | 2666 | break; |
14f9c5c9 AS |
2667 | } |
2668 | ||
4c4b4cd2 | 2669 | case UNOP_CAST: |
4c4b4cd2 PH |
2670 | *pos += 3; |
2671 | nargs = 1; | |
2672 | break; | |
14f9c5c9 | 2673 | |
4c4b4cd2 PH |
2674 | case BINOP_ADD: |
2675 | case BINOP_SUB: | |
2676 | case BINOP_MUL: | |
2677 | case BINOP_DIV: | |
2678 | case BINOP_REM: | |
2679 | case BINOP_MOD: | |
2680 | case BINOP_EXP: | |
2681 | case BINOP_CONCAT: | |
2682 | case BINOP_LOGICAL_AND: | |
2683 | case BINOP_LOGICAL_OR: | |
2684 | case BINOP_BITWISE_AND: | |
2685 | case BINOP_BITWISE_IOR: | |
2686 | case BINOP_BITWISE_XOR: | |
14f9c5c9 | 2687 | |
4c4b4cd2 PH |
2688 | case BINOP_EQUAL: |
2689 | case BINOP_NOTEQUAL: | |
2690 | case BINOP_LESS: | |
2691 | case BINOP_GTR: | |
2692 | case BINOP_LEQ: | |
2693 | case BINOP_GEQ: | |
14f9c5c9 | 2694 | |
4c4b4cd2 PH |
2695 | case BINOP_REPEAT: |
2696 | case BINOP_SUBSCRIPT: | |
2697 | case BINOP_COMMA: | |
40c8aaa9 JB |
2698 | *pos += 1; |
2699 | nargs = 2; | |
2700 | break; | |
14f9c5c9 | 2701 | |
4c4b4cd2 PH |
2702 | case UNOP_NEG: |
2703 | case UNOP_PLUS: | |
2704 | case UNOP_LOGICAL_NOT: | |
2705 | case UNOP_ABS: | |
2706 | case UNOP_IND: | |
2707 | *pos += 1; | |
2708 | nargs = 1; | |
2709 | break; | |
14f9c5c9 | 2710 | |
4c4b4cd2 PH |
2711 | case OP_LONG: |
2712 | case OP_DOUBLE: | |
2713 | case OP_VAR_VALUE: | |
2714 | *pos += 4; | |
2715 | break; | |
14f9c5c9 | 2716 | |
4c4b4cd2 PH |
2717 | case OP_TYPE: |
2718 | case OP_BOOL: | |
2719 | case OP_LAST: | |
4c4b4cd2 PH |
2720 | case OP_INTERNALVAR: |
2721 | *pos += 3; | |
2722 | break; | |
14f9c5c9 | 2723 | |
4c4b4cd2 PH |
2724 | case UNOP_MEMVAL: |
2725 | *pos += 3; | |
2726 | nargs = 1; | |
2727 | break; | |
2728 | ||
67f3407f DJ |
2729 | case OP_REGISTER: |
2730 | *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1); | |
2731 | break; | |
2732 | ||
4c4b4cd2 PH |
2733 | case STRUCTOP_STRUCT: |
2734 | *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1); | |
2735 | nargs = 1; | |
2736 | break; | |
2737 | ||
4c4b4cd2 | 2738 | case TERNOP_SLICE: |
4c4b4cd2 PH |
2739 | *pos += 1; |
2740 | nargs = 3; | |
2741 | break; | |
2742 | ||
52ce6436 | 2743 | case OP_STRING: |
14f9c5c9 | 2744 | break; |
4c4b4cd2 PH |
2745 | |
2746 | default: | |
323e0a4a | 2747 | error (_("Unexpected operator during name resolution")); |
14f9c5c9 AS |
2748 | } |
2749 | ||
76a01679 | 2750 | argvec = (struct value * *) alloca (sizeof (struct value *) * (nargs + 1)); |
4c4b4cd2 PH |
2751 | for (i = 0; i < nargs; i += 1) |
2752 | argvec[i] = resolve_subexp (expp, pos, 1, NULL); | |
2753 | argvec[i] = NULL; | |
2754 | exp = *expp; | |
2755 | ||
2756 | /* Pass two: perform any resolution on principal operator. */ | |
14f9c5c9 AS |
2757 | switch (op) |
2758 | { | |
2759 | default: | |
2760 | break; | |
2761 | ||
14f9c5c9 | 2762 | case OP_VAR_VALUE: |
4c4b4cd2 | 2763 | if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN) |
76a01679 JB |
2764 | { |
2765 | struct ada_symbol_info *candidates; | |
2766 | int n_candidates; | |
2767 | ||
2768 | n_candidates = | |
2769 | ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME | |
2770 | (exp->elts[pc + 2].symbol), | |
2771 | exp->elts[pc + 1].block, VAR_DOMAIN, | |
2772 | &candidates); | |
2773 | ||
2774 | if (n_candidates > 1) | |
2775 | { | |
2776 | /* Types tend to get re-introduced locally, so if there | |
2777 | are any local symbols that are not types, first filter | |
2778 | out all types. */ | |
2779 | int j; | |
2780 | for (j = 0; j < n_candidates; j += 1) | |
2781 | switch (SYMBOL_CLASS (candidates[j].sym)) | |
2782 | { | |
2783 | case LOC_REGISTER: | |
2784 | case LOC_ARG: | |
2785 | case LOC_REF_ARG: | |
2786 | case LOC_REGPARM: | |
2787 | case LOC_REGPARM_ADDR: | |
2788 | case LOC_LOCAL: | |
2789 | case LOC_LOCAL_ARG: | |
2790 | case LOC_BASEREG: | |
2791 | case LOC_BASEREG_ARG: | |
2792 | case LOC_COMPUTED: | |
2793 | case LOC_COMPUTED_ARG: | |
2794 | goto FoundNonType; | |
2795 | default: | |
2796 | break; | |
2797 | } | |
2798 | FoundNonType: | |
2799 | if (j < n_candidates) | |
2800 | { | |
2801 | j = 0; | |
2802 | while (j < n_candidates) | |
2803 | { | |
2804 | if (SYMBOL_CLASS (candidates[j].sym) == LOC_TYPEDEF) | |
2805 | { | |
2806 | candidates[j] = candidates[n_candidates - 1]; | |
2807 | n_candidates -= 1; | |
2808 | } | |
2809 | else | |
2810 | j += 1; | |
2811 | } | |
2812 | } | |
2813 | } | |
2814 | ||
2815 | if (n_candidates == 0) | |
323e0a4a | 2816 | error (_("No definition found for %s"), |
76a01679 JB |
2817 | SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol)); |
2818 | else if (n_candidates == 1) | |
2819 | i = 0; | |
2820 | else if (deprocedure_p | |
2821 | && !is_nonfunction (candidates, n_candidates)) | |
2822 | { | |
06d5cf63 JB |
2823 | i = ada_resolve_function |
2824 | (candidates, n_candidates, NULL, 0, | |
2825 | SYMBOL_LINKAGE_NAME (exp->elts[pc + 2].symbol), | |
2826 | context_type); | |
76a01679 | 2827 | if (i < 0) |
323e0a4a | 2828 | error (_("Could not find a match for %s"), |
76a01679 JB |
2829 | SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol)); |
2830 | } | |
2831 | else | |
2832 | { | |
323e0a4a | 2833 | printf_filtered (_("Multiple matches for %s\n"), |
76a01679 JB |
2834 | SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol)); |
2835 | user_select_syms (candidates, n_candidates, 1); | |
2836 | i = 0; | |
2837 | } | |
2838 | ||
2839 | exp->elts[pc + 1].block = candidates[i].block; | |
2840 | exp->elts[pc + 2].symbol = candidates[i].sym; | |
1265e4aa JB |
2841 | if (innermost_block == NULL |
2842 | || contained_in (candidates[i].block, innermost_block)) | |
76a01679 JB |
2843 | innermost_block = candidates[i].block; |
2844 | } | |
2845 | ||
2846 | if (deprocedure_p | |
2847 | && (TYPE_CODE (SYMBOL_TYPE (exp->elts[pc + 2].symbol)) | |
2848 | == TYPE_CODE_FUNC)) | |
2849 | { | |
2850 | replace_operator_with_call (expp, pc, 0, 0, | |
2851 | exp->elts[pc + 2].symbol, | |
2852 | exp->elts[pc + 1].block); | |
2853 | exp = *expp; | |
2854 | } | |
14f9c5c9 AS |
2855 | break; |
2856 | ||
2857 | case OP_FUNCALL: | |
2858 | { | |
4c4b4cd2 | 2859 | if (exp->elts[pc + 3].opcode == OP_VAR_VALUE |
76a01679 | 2860 | && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN) |
4c4b4cd2 PH |
2861 | { |
2862 | struct ada_symbol_info *candidates; | |
2863 | int n_candidates; | |
2864 | ||
2865 | n_candidates = | |
76a01679 JB |
2866 | ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME |
2867 | (exp->elts[pc + 5].symbol), | |
2868 | exp->elts[pc + 4].block, VAR_DOMAIN, | |
2869 | &candidates); | |
4c4b4cd2 PH |
2870 | if (n_candidates == 1) |
2871 | i = 0; | |
2872 | else | |
2873 | { | |
06d5cf63 JB |
2874 | i = ada_resolve_function |
2875 | (candidates, n_candidates, | |
2876 | argvec, nargs, | |
2877 | SYMBOL_LINKAGE_NAME (exp->elts[pc + 5].symbol), | |
2878 | context_type); | |
4c4b4cd2 | 2879 | if (i < 0) |
323e0a4a | 2880 | error (_("Could not find a match for %s"), |
4c4b4cd2 PH |
2881 | SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol)); |
2882 | } | |
2883 | ||
2884 | exp->elts[pc + 4].block = candidates[i].block; | |
2885 | exp->elts[pc + 5].symbol = candidates[i].sym; | |
1265e4aa JB |
2886 | if (innermost_block == NULL |
2887 | || contained_in (candidates[i].block, innermost_block)) | |
4c4b4cd2 PH |
2888 | innermost_block = candidates[i].block; |
2889 | } | |
14f9c5c9 AS |
2890 | } |
2891 | break; | |
2892 | case BINOP_ADD: | |
2893 | case BINOP_SUB: | |
2894 | case BINOP_MUL: | |
2895 | case BINOP_DIV: | |
2896 | case BINOP_REM: | |
2897 | case BINOP_MOD: | |
2898 | case BINOP_CONCAT: | |
2899 | case BINOP_BITWISE_AND: | |
2900 | case BINOP_BITWISE_IOR: | |
2901 | case BINOP_BITWISE_XOR: | |
2902 | case BINOP_EQUAL: | |
2903 | case BINOP_NOTEQUAL: | |
2904 | case BINOP_LESS: | |
2905 | case BINOP_GTR: | |
2906 | case BINOP_LEQ: | |
2907 | case BINOP_GEQ: | |
2908 | case BINOP_EXP: | |
2909 | case UNOP_NEG: | |
2910 | case UNOP_PLUS: | |
2911 | case UNOP_LOGICAL_NOT: | |
2912 | case UNOP_ABS: | |
2913 | if (possible_user_operator_p (op, argvec)) | |
4c4b4cd2 PH |
2914 | { |
2915 | struct ada_symbol_info *candidates; | |
2916 | int n_candidates; | |
2917 | ||
2918 | n_candidates = | |
2919 | ada_lookup_symbol_list (ada_encode (ada_decoded_op_name (op)), | |
2920 | (struct block *) NULL, VAR_DOMAIN, | |
2921 | &candidates); | |
2922 | i = ada_resolve_function (candidates, n_candidates, argvec, nargs, | |
76a01679 | 2923 | ada_decoded_op_name (op), NULL); |
4c4b4cd2 PH |
2924 | if (i < 0) |
2925 | break; | |
2926 | ||
76a01679 JB |
2927 | replace_operator_with_call (expp, pc, nargs, 1, |
2928 | candidates[i].sym, candidates[i].block); | |
4c4b4cd2 PH |
2929 | exp = *expp; |
2930 | } | |
14f9c5c9 | 2931 | break; |
4c4b4cd2 PH |
2932 | |
2933 | case OP_TYPE: | |
2934 | return NULL; | |
14f9c5c9 AS |
2935 | } |
2936 | ||
2937 | *pos = pc; | |
2938 | return evaluate_subexp_type (exp, pos); | |
2939 | } | |
2940 | ||
2941 | /* Return non-zero if formal type FTYPE matches actual type ATYPE. If | |
4c4b4cd2 PH |
2942 | MAY_DEREF is non-zero, the formal may be a pointer and the actual |
2943 | a non-pointer. A type of 'void' (which is never a valid expression type) | |
2944 | by convention matches anything. */ | |
14f9c5c9 | 2945 | /* The term "match" here is rather loose. The match is heuristic and |
4c4b4cd2 | 2946 | liberal. FIXME: TOO liberal, in fact. */ |
14f9c5c9 AS |
2947 | |
2948 | static int | |
4dc81987 | 2949 | ada_type_match (struct type *ftype, struct type *atype, int may_deref) |
14f9c5c9 | 2950 | { |
61ee279c PH |
2951 | ftype = ada_check_typedef (ftype); |
2952 | atype = ada_check_typedef (atype); | |
14f9c5c9 AS |
2953 | |
2954 | if (TYPE_CODE (ftype) == TYPE_CODE_REF) | |
2955 | ftype = TYPE_TARGET_TYPE (ftype); | |
2956 | if (TYPE_CODE (atype) == TYPE_CODE_REF) | |
2957 | atype = TYPE_TARGET_TYPE (atype); | |
2958 | ||
d2e4a39e | 2959 | if (TYPE_CODE (ftype) == TYPE_CODE_VOID |
14f9c5c9 AS |
2960 | || TYPE_CODE (atype) == TYPE_CODE_VOID) |
2961 | return 1; | |
2962 | ||
d2e4a39e | 2963 | switch (TYPE_CODE (ftype)) |
14f9c5c9 AS |
2964 | { |
2965 | default: | |
2966 | return 1; | |
2967 | case TYPE_CODE_PTR: | |
2968 | if (TYPE_CODE (atype) == TYPE_CODE_PTR) | |
4c4b4cd2 PH |
2969 | return ada_type_match (TYPE_TARGET_TYPE (ftype), |
2970 | TYPE_TARGET_TYPE (atype), 0); | |
d2e4a39e | 2971 | else |
1265e4aa JB |
2972 | return (may_deref |
2973 | && ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0)); | |
14f9c5c9 AS |
2974 | case TYPE_CODE_INT: |
2975 | case TYPE_CODE_ENUM: | |
2976 | case TYPE_CODE_RANGE: | |
2977 | switch (TYPE_CODE (atype)) | |
4c4b4cd2 PH |
2978 | { |
2979 | case TYPE_CODE_INT: | |
2980 | case TYPE_CODE_ENUM: | |
2981 | case TYPE_CODE_RANGE: | |
2982 | return 1; | |
2983 | default: | |
2984 | return 0; | |
2985 | } | |
14f9c5c9 AS |
2986 | |
2987 | case TYPE_CODE_ARRAY: | |
d2e4a39e | 2988 | return (TYPE_CODE (atype) == TYPE_CODE_ARRAY |
4c4b4cd2 | 2989 | || ada_is_array_descriptor_type (atype)); |
14f9c5c9 AS |
2990 | |
2991 | case TYPE_CODE_STRUCT: | |
4c4b4cd2 PH |
2992 | if (ada_is_array_descriptor_type (ftype)) |
2993 | return (TYPE_CODE (atype) == TYPE_CODE_ARRAY | |
2994 | || ada_is_array_descriptor_type (atype)); | |
14f9c5c9 | 2995 | else |
4c4b4cd2 PH |
2996 | return (TYPE_CODE (atype) == TYPE_CODE_STRUCT |
2997 | && !ada_is_array_descriptor_type (atype)); | |
14f9c5c9 AS |
2998 | |
2999 | case TYPE_CODE_UNION: | |
3000 | case TYPE_CODE_FLT: | |
3001 | return (TYPE_CODE (atype) == TYPE_CODE (ftype)); | |
3002 | } | |
3003 | } | |
3004 | ||
3005 | /* Return non-zero if the formals of FUNC "sufficiently match" the | |
3006 | vector of actual argument types ACTUALS of size N_ACTUALS. FUNC | |
3007 | may also be an enumeral, in which case it is treated as a 0- | |
4c4b4cd2 | 3008 | argument function. */ |
14f9c5c9 AS |
3009 | |
3010 | static int | |
d2e4a39e | 3011 | ada_args_match (struct symbol *func, struct value **actuals, int n_actuals) |
14f9c5c9 AS |
3012 | { |
3013 | int i; | |
d2e4a39e | 3014 | struct type *func_type = SYMBOL_TYPE (func); |
14f9c5c9 | 3015 | |
1265e4aa JB |
3016 | if (SYMBOL_CLASS (func) == LOC_CONST |
3017 | && TYPE_CODE (func_type) == TYPE_CODE_ENUM) | |
14f9c5c9 AS |
3018 | return (n_actuals == 0); |
3019 | else if (func_type == NULL || TYPE_CODE (func_type) != TYPE_CODE_FUNC) | |
3020 | return 0; | |
3021 | ||
3022 | if (TYPE_NFIELDS (func_type) != n_actuals) | |
3023 | return 0; | |
3024 | ||
3025 | for (i = 0; i < n_actuals; i += 1) | |
3026 | { | |
4c4b4cd2 | 3027 | if (actuals[i] == NULL) |
76a01679 JB |
3028 | return 0; |
3029 | else | |
3030 | { | |
61ee279c | 3031 | struct type *ftype = ada_check_typedef (TYPE_FIELD_TYPE (func_type, i)); |
df407dfe | 3032 | struct type *atype = ada_check_typedef (value_type (actuals[i])); |
4c4b4cd2 | 3033 | |
76a01679 JB |
3034 | if (!ada_type_match (ftype, atype, 1)) |
3035 | return 0; | |
3036 | } | |
14f9c5c9 AS |
3037 | } |
3038 | return 1; | |
3039 | } | |
3040 | ||
3041 | /* False iff function type FUNC_TYPE definitely does not produce a value | |
3042 | compatible with type CONTEXT_TYPE. Conservatively returns 1 if | |
3043 | FUNC_TYPE is not a valid function type with a non-null return type | |
3044 | or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */ | |
3045 | ||
3046 | static int | |
d2e4a39e | 3047 | return_match (struct type *func_type, struct type *context_type) |
14f9c5c9 | 3048 | { |
d2e4a39e | 3049 | struct type *return_type; |
14f9c5c9 AS |
3050 | |
3051 | if (func_type == NULL) | |
3052 | return 1; | |
3053 | ||
4c4b4cd2 PH |
3054 | if (TYPE_CODE (func_type) == TYPE_CODE_FUNC) |
3055 | return_type = base_type (TYPE_TARGET_TYPE (func_type)); | |
3056 | else | |
3057 | return_type = base_type (func_type); | |
14f9c5c9 AS |
3058 | if (return_type == NULL) |
3059 | return 1; | |
3060 | ||
4c4b4cd2 | 3061 | context_type = base_type (context_type); |
14f9c5c9 AS |
3062 | |
3063 | if (TYPE_CODE (return_type) == TYPE_CODE_ENUM) | |
3064 | return context_type == NULL || return_type == context_type; | |
3065 | else if (context_type == NULL) | |
3066 | return TYPE_CODE (return_type) != TYPE_CODE_VOID; | |
3067 | else | |
3068 | return TYPE_CODE (return_type) == TYPE_CODE (context_type); | |
3069 | } | |
3070 | ||
3071 | ||
4c4b4cd2 | 3072 | /* Returns the index in SYMS[0..NSYMS-1] that contains the symbol for the |
14f9c5c9 | 3073 | function (if any) that matches the types of the NARGS arguments in |
4c4b4cd2 PH |
3074 | ARGS. If CONTEXT_TYPE is non-null and there is at least one match |
3075 | that returns that type, then eliminate matches that don't. If | |
3076 | CONTEXT_TYPE is void and there is at least one match that does not | |
3077 | return void, eliminate all matches that do. | |
3078 | ||
14f9c5c9 AS |
3079 | Asks the user if there is more than one match remaining. Returns -1 |
3080 | if there is no such symbol or none is selected. NAME is used | |
4c4b4cd2 PH |
3081 | solely for messages. May re-arrange and modify SYMS in |
3082 | the process; the index returned is for the modified vector. */ | |
14f9c5c9 | 3083 | |
4c4b4cd2 PH |
3084 | static int |
3085 | ada_resolve_function (struct ada_symbol_info syms[], | |
3086 | int nsyms, struct value **args, int nargs, | |
3087 | const char *name, struct type *context_type) | |
14f9c5c9 AS |
3088 | { |
3089 | int k; | |
4c4b4cd2 | 3090 | int m; /* Number of hits */ |
d2e4a39e AS |
3091 | struct type *fallback; |
3092 | struct type *return_type; | |
14f9c5c9 AS |
3093 | |
3094 | return_type = context_type; | |
3095 | if (context_type == NULL) | |
3096 | fallback = builtin_type_void; | |
3097 | else | |
3098 | fallback = NULL; | |
3099 | ||
d2e4a39e | 3100 | m = 0; |
14f9c5c9 AS |
3101 | while (1) |
3102 | { | |
3103 | for (k = 0; k < nsyms; k += 1) | |
4c4b4cd2 | 3104 | { |
61ee279c | 3105 | struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].sym)); |
4c4b4cd2 PH |
3106 | |
3107 | if (ada_args_match (syms[k].sym, args, nargs) | |
3108 | && return_match (type, return_type)) | |
3109 | { | |
3110 | syms[m] = syms[k]; | |
3111 | m += 1; | |
3112 | } | |
3113 | } | |
14f9c5c9 | 3114 | if (m > 0 || return_type == fallback) |
4c4b4cd2 | 3115 | break; |
14f9c5c9 | 3116 | else |
4c4b4cd2 | 3117 | return_type = fallback; |
14f9c5c9 AS |
3118 | } |
3119 | ||
3120 | if (m == 0) | |
3121 | return -1; | |
3122 | else if (m > 1) | |
3123 | { | |
323e0a4a | 3124 | printf_filtered (_("Multiple matches for %s\n"), name); |
4c4b4cd2 | 3125 | user_select_syms (syms, m, 1); |
14f9c5c9 AS |
3126 | return 0; |
3127 | } | |
3128 | return 0; | |
3129 | } | |
3130 | ||
4c4b4cd2 PH |
3131 | /* Returns true (non-zero) iff decoded name N0 should appear before N1 |
3132 | in a listing of choices during disambiguation (see sort_choices, below). | |
3133 | The idea is that overloadings of a subprogram name from the | |
3134 | same package should sort in their source order. We settle for ordering | |
3135 | such symbols by their trailing number (__N or $N). */ | |
3136 | ||
14f9c5c9 | 3137 | static int |
4c4b4cd2 | 3138 | encoded_ordered_before (char *N0, char *N1) |
14f9c5c9 AS |
3139 | { |
3140 | if (N1 == NULL) | |
3141 | return 0; | |
3142 | else if (N0 == NULL) | |
3143 | return 1; | |
3144 | else | |
3145 | { | |
3146 | int k0, k1; | |
d2e4a39e | 3147 | for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1) |
4c4b4cd2 | 3148 | ; |
d2e4a39e | 3149 | for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1) |
4c4b4cd2 | 3150 | ; |
d2e4a39e | 3151 | if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000' |
4c4b4cd2 PH |
3152 | && (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000') |
3153 | { | |
3154 | int n0, n1; | |
3155 | n0 = k0; | |
3156 | while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_') | |
3157 | n0 -= 1; | |
3158 | n1 = k1; | |
3159 | while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_') | |
3160 | n1 -= 1; | |
3161 | if (n0 == n1 && strncmp (N0, N1, n0) == 0) | |
3162 | return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1)); | |
3163 | } | |
14f9c5c9 AS |
3164 | return (strcmp (N0, N1) < 0); |
3165 | } | |
3166 | } | |
d2e4a39e | 3167 | |
4c4b4cd2 PH |
3168 | /* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the |
3169 | encoded names. */ | |
3170 | ||
d2e4a39e | 3171 | static void |
4c4b4cd2 | 3172 | sort_choices (struct ada_symbol_info syms[], int nsyms) |
14f9c5c9 | 3173 | { |
4c4b4cd2 | 3174 | int i; |
d2e4a39e | 3175 | for (i = 1; i < nsyms; i += 1) |
14f9c5c9 | 3176 | { |
4c4b4cd2 | 3177 | struct ada_symbol_info sym = syms[i]; |
14f9c5c9 AS |
3178 | int j; |
3179 | ||
d2e4a39e | 3180 | for (j = i - 1; j >= 0; j -= 1) |
4c4b4cd2 PH |
3181 | { |
3182 | if (encoded_ordered_before (SYMBOL_LINKAGE_NAME (syms[j].sym), | |
3183 | SYMBOL_LINKAGE_NAME (sym.sym))) | |
3184 | break; | |
3185 | syms[j + 1] = syms[j]; | |
3186 | } | |
d2e4a39e | 3187 | syms[j + 1] = sym; |
14f9c5c9 AS |
3188 | } |
3189 | } | |
3190 | ||
4c4b4cd2 PH |
3191 | /* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0 |
3192 | by asking the user (if necessary), returning the number selected, | |
3193 | and setting the first elements of SYMS items. Error if no symbols | |
3194 | selected. */ | |
14f9c5c9 AS |
3195 | |
3196 | /* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought | |
4c4b4cd2 | 3197 | to be re-integrated one of these days. */ |
14f9c5c9 AS |
3198 | |
3199 | int | |
4c4b4cd2 | 3200 | user_select_syms (struct ada_symbol_info *syms, int nsyms, int max_results) |
14f9c5c9 AS |
3201 | { |
3202 | int i; | |
d2e4a39e | 3203 | int *chosen = (int *) alloca (sizeof (int) * nsyms); |
14f9c5c9 AS |
3204 | int n_chosen; |
3205 | int first_choice = (max_results == 1) ? 1 : 2; | |
3206 | ||
3207 | if (max_results < 1) | |
323e0a4a | 3208 | error (_("Request to select 0 symbols!")); |
14f9c5c9 AS |
3209 | if (nsyms <= 1) |
3210 | return nsyms; | |
3211 | ||
323e0a4a | 3212 | printf_unfiltered (_("[0] cancel\n")); |
14f9c5c9 | 3213 | if (max_results > 1) |
323e0a4a | 3214 | printf_unfiltered (_("[1] all\n")); |
14f9c5c9 | 3215 | |
4c4b4cd2 | 3216 | sort_choices (syms, nsyms); |
14f9c5c9 AS |
3217 | |
3218 | for (i = 0; i < nsyms; i += 1) | |
3219 | { | |
4c4b4cd2 PH |
3220 | if (syms[i].sym == NULL) |
3221 | continue; | |
3222 | ||
3223 | if (SYMBOL_CLASS (syms[i].sym) == LOC_BLOCK) | |
3224 | { | |
76a01679 JB |
3225 | struct symtab_and_line sal = |
3226 | find_function_start_sal (syms[i].sym, 1); | |
323e0a4a AC |
3227 | if (sal.symtab == NULL) |
3228 | printf_unfiltered (_("[%d] %s at <no source file available>:%d\n"), | |
3229 | i + first_choice, | |
3230 | SYMBOL_PRINT_NAME (syms[i].sym), | |
3231 | sal.line); | |
3232 | else | |
3233 | printf_unfiltered (_("[%d] %s at %s:%d\n"), i + first_choice, | |
3234 | SYMBOL_PRINT_NAME (syms[i].sym), | |
3235 | sal.symtab->filename, sal.line); | |
4c4b4cd2 PH |
3236 | continue; |
3237 | } | |
d2e4a39e | 3238 | else |
4c4b4cd2 PH |
3239 | { |
3240 | int is_enumeral = | |
3241 | (SYMBOL_CLASS (syms[i].sym) == LOC_CONST | |
3242 | && SYMBOL_TYPE (syms[i].sym) != NULL | |
3243 | && TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) == TYPE_CODE_ENUM); | |
3244 | struct symtab *symtab = symtab_for_sym (syms[i].sym); | |
3245 | ||
3246 | if (SYMBOL_LINE (syms[i].sym) != 0 && symtab != NULL) | |
323e0a4a | 3247 | printf_unfiltered (_("[%d] %s at %s:%d\n"), |
4c4b4cd2 PH |
3248 | i + first_choice, |
3249 | SYMBOL_PRINT_NAME (syms[i].sym), | |
3250 | symtab->filename, SYMBOL_LINE (syms[i].sym)); | |
76a01679 JB |
3251 | else if (is_enumeral |
3252 | && TYPE_NAME (SYMBOL_TYPE (syms[i].sym)) != NULL) | |
4c4b4cd2 | 3253 | { |
a3f17187 | 3254 | printf_unfiltered (("[%d] "), i + first_choice); |
76a01679 JB |
3255 | ada_print_type (SYMBOL_TYPE (syms[i].sym), NULL, |
3256 | gdb_stdout, -1, 0); | |
323e0a4a | 3257 | printf_unfiltered (_("'(%s) (enumeral)\n"), |
4c4b4cd2 PH |
3258 | SYMBOL_PRINT_NAME (syms[i].sym)); |
3259 | } | |
3260 | else if (symtab != NULL) | |
3261 | printf_unfiltered (is_enumeral | |
323e0a4a AC |
3262 | ? _("[%d] %s in %s (enumeral)\n") |
3263 | : _("[%d] %s at %s:?\n"), | |
4c4b4cd2 PH |
3264 | i + first_choice, |
3265 | SYMBOL_PRINT_NAME (syms[i].sym), | |
3266 | symtab->filename); | |
3267 | else | |
3268 | printf_unfiltered (is_enumeral | |
323e0a4a AC |
3269 | ? _("[%d] %s (enumeral)\n") |
3270 | : _("[%d] %s at ?\n"), | |
4c4b4cd2 PH |
3271 | i + first_choice, |
3272 | SYMBOL_PRINT_NAME (syms[i].sym)); | |
3273 | } | |
14f9c5c9 | 3274 | } |
d2e4a39e | 3275 | |
14f9c5c9 | 3276 | n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1, |
4c4b4cd2 | 3277 | "overload-choice"); |
14f9c5c9 AS |
3278 | |
3279 | for (i = 0; i < n_chosen; i += 1) | |
4c4b4cd2 | 3280 | syms[i] = syms[chosen[i]]; |
14f9c5c9 AS |
3281 | |
3282 | return n_chosen; | |
3283 | } | |
3284 | ||
3285 | /* Read and validate a set of numeric choices from the user in the | |
4c4b4cd2 | 3286 | range 0 .. N_CHOICES-1. Place the results in increasing |
14f9c5c9 AS |
3287 | order in CHOICES[0 .. N-1], and return N. |
3288 | ||
3289 | The user types choices as a sequence of numbers on one line | |
3290 | separated by blanks, encoding them as follows: | |
3291 | ||
4c4b4cd2 | 3292 | + A choice of 0 means to cancel the selection, throwing an error. |
14f9c5c9 AS |
3293 | + If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1. |
3294 | + The user chooses k by typing k+IS_ALL_CHOICE+1. | |
3295 | ||
4c4b4cd2 | 3296 | The user is not allowed to choose more than MAX_RESULTS values. |
14f9c5c9 AS |
3297 | |
3298 | ANNOTATION_SUFFIX, if present, is used to annotate the input | |
4c4b4cd2 | 3299 | prompts (for use with the -f switch). */ |
14f9c5c9 AS |
3300 | |
3301 | int | |
d2e4a39e | 3302 | get_selections (int *choices, int n_choices, int max_results, |
4c4b4cd2 | 3303 | int is_all_choice, char *annotation_suffix) |
14f9c5c9 | 3304 | { |
d2e4a39e AS |
3305 | char *args; |
3306 | const char *prompt; | |
14f9c5c9 AS |
3307 | int n_chosen; |
3308 | int first_choice = is_all_choice ? 2 : 1; | |
d2e4a39e | 3309 | |
14f9c5c9 AS |
3310 | prompt = getenv ("PS2"); |
3311 | if (prompt == NULL) | |
3312 | prompt = ">"; | |
3313 | ||
a3f17187 | 3314 | printf_unfiltered (("%s "), prompt); |
14f9c5c9 AS |
3315 | gdb_flush (gdb_stdout); |
3316 | ||
3317 | args = command_line_input ((char *) NULL, 0, annotation_suffix); | |
d2e4a39e | 3318 | |
14f9c5c9 | 3319 | if (args == NULL) |
323e0a4a | 3320 | error_no_arg (_("one or more choice numbers")); |
14f9c5c9 AS |
3321 | |
3322 | n_chosen = 0; | |
76a01679 | 3323 | |
4c4b4cd2 PH |
3324 | /* Set choices[0 .. n_chosen-1] to the users' choices in ascending |
3325 | order, as given in args. Choices are validated. */ | |
14f9c5c9 AS |
3326 | while (1) |
3327 | { | |
d2e4a39e | 3328 | char *args2; |
14f9c5c9 AS |
3329 | int choice, j; |
3330 | ||
3331 | while (isspace (*args)) | |
4c4b4cd2 | 3332 | args += 1; |
14f9c5c9 | 3333 | if (*args == '\0' && n_chosen == 0) |
323e0a4a | 3334 | error_no_arg (_("one or more choice numbers")); |
14f9c5c9 | 3335 | else if (*args == '\0') |
4c4b4cd2 | 3336 | break; |
14f9c5c9 AS |
3337 | |
3338 | choice = strtol (args, &args2, 10); | |
d2e4a39e | 3339 | if (args == args2 || choice < 0 |
4c4b4cd2 | 3340 | || choice > n_choices + first_choice - 1) |
323e0a4a | 3341 | error (_("Argument must be choice number")); |
14f9c5c9 AS |
3342 | args = args2; |
3343 | ||
d2e4a39e | 3344 | if (choice == 0) |
323e0a4a | 3345 | error (_("cancelled")); |
14f9c5c9 AS |
3346 | |
3347 | if (choice < first_choice) | |
4c4b4cd2 PH |
3348 | { |
3349 | n_chosen = n_choices; | |
3350 | for (j = 0; j < n_choices; j += 1) | |
3351 | choices[j] = j; | |
3352 | break; | |
3353 | } | |
14f9c5c9 AS |
3354 | choice -= first_choice; |
3355 | ||
d2e4a39e | 3356 | for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1) |
4c4b4cd2 PH |
3357 | { |
3358 | } | |
14f9c5c9 AS |
3359 | |
3360 | if (j < 0 || choice != choices[j]) | |
4c4b4cd2 PH |
3361 | { |
3362 | int k; | |
3363 | for (k = n_chosen - 1; k > j; k -= 1) | |
3364 | choices[k + 1] = choices[k]; | |
3365 | choices[j + 1] = choice; | |
3366 | n_chosen += 1; | |
3367 | } | |
14f9c5c9 AS |
3368 | } |
3369 | ||
3370 | if (n_chosen > max_results) | |
323e0a4a | 3371 | error (_("Select no more than %d of the above"), max_results); |
d2e4a39e | 3372 | |
14f9c5c9 AS |
3373 | return n_chosen; |
3374 | } | |
3375 | ||
4c4b4cd2 PH |
3376 | /* Replace the operator of length OPLEN at position PC in *EXPP with a call |
3377 | on the function identified by SYM and BLOCK, and taking NARGS | |
3378 | arguments. Update *EXPP as needed to hold more space. */ | |
14f9c5c9 AS |
3379 | |
3380 | static void | |
d2e4a39e | 3381 | replace_operator_with_call (struct expression **expp, int pc, int nargs, |
4c4b4cd2 PH |
3382 | int oplen, struct symbol *sym, |
3383 | struct block *block) | |
14f9c5c9 AS |
3384 | { |
3385 | /* A new expression, with 6 more elements (3 for funcall, 4 for function | |
4c4b4cd2 | 3386 | symbol, -oplen for operator being replaced). */ |
d2e4a39e | 3387 | struct expression *newexp = (struct expression *) |
14f9c5c9 | 3388 | xmalloc (sizeof (struct expression) |
4c4b4cd2 | 3389 | + EXP_ELEM_TO_BYTES ((*expp)->nelts + 7 - oplen)); |
d2e4a39e | 3390 | struct expression *exp = *expp; |
14f9c5c9 AS |
3391 | |
3392 | newexp->nelts = exp->nelts + 7 - oplen; | |
3393 | newexp->language_defn = exp->language_defn; | |
3394 | memcpy (newexp->elts, exp->elts, EXP_ELEM_TO_BYTES (pc)); | |
d2e4a39e | 3395 | memcpy (newexp->elts + pc + 7, exp->elts + pc + oplen, |
4c4b4cd2 | 3396 | EXP_ELEM_TO_BYTES (exp->nelts - pc - oplen)); |
14f9c5c9 AS |
3397 | |
3398 | newexp->elts[pc].opcode = newexp->elts[pc + 2].opcode = OP_FUNCALL; | |
3399 | newexp->elts[pc + 1].longconst = (LONGEST) nargs; | |
3400 | ||
3401 | newexp->elts[pc + 3].opcode = newexp->elts[pc + 6].opcode = OP_VAR_VALUE; | |
3402 | newexp->elts[pc + 4].block = block; | |
3403 | newexp->elts[pc + 5].symbol = sym; | |
3404 | ||
3405 | *expp = newexp; | |
aacb1f0a | 3406 | xfree (exp); |
d2e4a39e | 3407 | } |
14f9c5c9 AS |
3408 | |
3409 | /* Type-class predicates */ | |
3410 | ||
4c4b4cd2 PH |
3411 | /* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type), |
3412 | or FLOAT). */ | |
14f9c5c9 AS |
3413 | |
3414 | static int | |
d2e4a39e | 3415 | numeric_type_p (struct type *type) |
14f9c5c9 AS |
3416 | { |
3417 | if (type == NULL) | |
3418 | return 0; | |
d2e4a39e AS |
3419 | else |
3420 | { | |
3421 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
3422 | { |
3423 | case TYPE_CODE_INT: | |
3424 | case TYPE_CODE_FLT: | |
3425 | return 1; | |
3426 | case TYPE_CODE_RANGE: | |
3427 | return (type == TYPE_TARGET_TYPE (type) | |
3428 | || numeric_type_p (TYPE_TARGET_TYPE (type))); | |
3429 | default: | |
3430 | return 0; | |
3431 | } | |
d2e4a39e | 3432 | } |
14f9c5c9 AS |
3433 | } |
3434 | ||
4c4b4cd2 | 3435 | /* True iff TYPE is integral (an INT or RANGE of INTs). */ |
14f9c5c9 AS |
3436 | |
3437 | static int | |
d2e4a39e | 3438 | integer_type_p (struct type *type) |
14f9c5c9 AS |
3439 | { |
3440 | if (type == NULL) | |
3441 | return 0; | |
d2e4a39e AS |
3442 | else |
3443 | { | |
3444 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
3445 | { |
3446 | case TYPE_CODE_INT: | |
3447 | return 1; | |
3448 | case TYPE_CODE_RANGE: | |
3449 | return (type == TYPE_TARGET_TYPE (type) | |
3450 | || integer_type_p (TYPE_TARGET_TYPE (type))); | |
3451 | default: | |
3452 | return 0; | |
3453 | } | |
d2e4a39e | 3454 | } |
14f9c5c9 AS |
3455 | } |
3456 | ||
4c4b4cd2 | 3457 | /* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */ |
14f9c5c9 AS |
3458 | |
3459 | static int | |
d2e4a39e | 3460 | scalar_type_p (struct type *type) |
14f9c5c9 AS |
3461 | { |
3462 | if (type == NULL) | |
3463 | return 0; | |
d2e4a39e AS |
3464 | else |
3465 | { | |
3466 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
3467 | { |
3468 | case TYPE_CODE_INT: | |
3469 | case TYPE_CODE_RANGE: | |
3470 | case TYPE_CODE_ENUM: | |
3471 | case TYPE_CODE_FLT: | |
3472 | return 1; | |
3473 | default: | |
3474 | return 0; | |
3475 | } | |
d2e4a39e | 3476 | } |
14f9c5c9 AS |
3477 | } |
3478 | ||
4c4b4cd2 | 3479 | /* True iff TYPE is discrete (INT, RANGE, ENUM). */ |
14f9c5c9 AS |
3480 | |
3481 | static int | |
d2e4a39e | 3482 | discrete_type_p (struct type *type) |
14f9c5c9 AS |
3483 | { |
3484 | if (type == NULL) | |
3485 | return 0; | |
d2e4a39e AS |
3486 | else |
3487 | { | |
3488 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
3489 | { |
3490 | case TYPE_CODE_INT: | |
3491 | case TYPE_CODE_RANGE: | |
3492 | case TYPE_CODE_ENUM: | |
3493 | return 1; | |
3494 | default: | |
3495 | return 0; | |
3496 | } | |
d2e4a39e | 3497 | } |
14f9c5c9 AS |
3498 | } |
3499 | ||
4c4b4cd2 PH |
3500 | /* Returns non-zero if OP with operands in the vector ARGS could be |
3501 | a user-defined function. Errs on the side of pre-defined operators | |
3502 | (i.e., result 0). */ | |
14f9c5c9 AS |
3503 | |
3504 | static int | |
d2e4a39e | 3505 | possible_user_operator_p (enum exp_opcode op, struct value *args[]) |
14f9c5c9 | 3506 | { |
76a01679 | 3507 | struct type *type0 = |
df407dfe | 3508 | (args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0])); |
d2e4a39e | 3509 | struct type *type1 = |
df407dfe | 3510 | (args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1])); |
d2e4a39e | 3511 | |
4c4b4cd2 PH |
3512 | if (type0 == NULL) |
3513 | return 0; | |
3514 | ||
14f9c5c9 AS |
3515 | switch (op) |
3516 | { | |
3517 | default: | |
3518 | return 0; | |
3519 | ||
3520 | case BINOP_ADD: | |
3521 | case BINOP_SUB: | |
3522 | case BINOP_MUL: | |
3523 | case BINOP_DIV: | |
d2e4a39e | 3524 | return (!(numeric_type_p (type0) && numeric_type_p (type1))); |
14f9c5c9 AS |
3525 | |
3526 | case BINOP_REM: | |
3527 | case BINOP_MOD: | |
3528 | case BINOP_BITWISE_AND: | |
3529 | case BINOP_BITWISE_IOR: | |
3530 | case BINOP_BITWISE_XOR: | |
d2e4a39e | 3531 | return (!(integer_type_p (type0) && integer_type_p (type1))); |
14f9c5c9 AS |
3532 | |
3533 | case BINOP_EQUAL: | |
3534 | case BINOP_NOTEQUAL: | |
3535 | case BINOP_LESS: | |
3536 | case BINOP_GTR: | |
3537 | case BINOP_LEQ: | |
3538 | case BINOP_GEQ: | |
d2e4a39e | 3539 | return (!(scalar_type_p (type0) && scalar_type_p (type1))); |
14f9c5c9 AS |
3540 | |
3541 | case BINOP_CONCAT: | |
ee90b9ab | 3542 | return !ada_is_array_type (type0) || !ada_is_array_type (type1); |
14f9c5c9 AS |
3543 | |
3544 | case BINOP_EXP: | |
d2e4a39e | 3545 | return (!(numeric_type_p (type0) && integer_type_p (type1))); |
14f9c5c9 AS |
3546 | |
3547 | case UNOP_NEG: | |
3548 | case UNOP_PLUS: | |
3549 | case UNOP_LOGICAL_NOT: | |
d2e4a39e AS |
3550 | case UNOP_ABS: |
3551 | return (!numeric_type_p (type0)); | |
14f9c5c9 AS |
3552 | |
3553 | } | |
3554 | } | |
3555 | \f | |
4c4b4cd2 | 3556 | /* Renaming */ |
14f9c5c9 | 3557 | |
aeb5907d JB |
3558 | /* NOTES: |
3559 | ||
3560 | 1. In the following, we assume that a renaming type's name may | |
3561 | have an ___XD suffix. It would be nice if this went away at some | |
3562 | point. | |
3563 | 2. We handle both the (old) purely type-based representation of | |
3564 | renamings and the (new) variable-based encoding. At some point, | |
3565 | it is devoutly to be hoped that the former goes away | |
3566 | (FIXME: hilfinger-2007-07-09). | |
3567 | 3. Subprogram renamings are not implemented, although the XRS | |
3568 | suffix is recognized (FIXME: hilfinger-2007-07-09). */ | |
3569 | ||
3570 | /* If SYM encodes a renaming, | |
3571 | ||
3572 | <renaming> renames <renamed entity>, | |
3573 | ||
3574 | sets *LEN to the length of the renamed entity's name, | |
3575 | *RENAMED_ENTITY to that name (not null-terminated), and *RENAMING_EXPR to | |
3576 | the string describing the subcomponent selected from the renamed | |
3577 | entity. Returns ADA_NOT_RENAMING if SYM does not encode a renaming | |
3578 | (in which case, the values of *RENAMED_ENTITY, *LEN, and *RENAMING_EXPR | |
3579 | are undefined). Otherwise, returns a value indicating the category | |
3580 | of entity renamed: an object (ADA_OBJECT_RENAMING), exception | |
3581 | (ADA_EXCEPTION_RENAMING), package (ADA_PACKAGE_RENAMING), or | |
3582 | subprogram (ADA_SUBPROGRAM_RENAMING). Does no allocation; the | |
3583 | strings returned in *RENAMED_ENTITY and *RENAMING_EXPR should not be | |
3584 | deallocated. The values of RENAMED_ENTITY, LEN, or RENAMING_EXPR | |
3585 | may be NULL, in which case they are not assigned. | |
3586 | ||
3587 | [Currently, however, GCC does not generate subprogram renamings.] */ | |
3588 | ||
3589 | enum ada_renaming_category | |
3590 | ada_parse_renaming (struct symbol *sym, | |
3591 | const char **renamed_entity, int *len, | |
3592 | const char **renaming_expr) | |
3593 | { | |
3594 | enum ada_renaming_category kind; | |
3595 | const char *info; | |
3596 | const char *suffix; | |
3597 | ||
3598 | if (sym == NULL) | |
3599 | return ADA_NOT_RENAMING; | |
3600 | switch (SYMBOL_CLASS (sym)) | |
14f9c5c9 | 3601 | { |
aeb5907d JB |
3602 | default: |
3603 | return ADA_NOT_RENAMING; | |
3604 | case LOC_TYPEDEF: | |
3605 | return parse_old_style_renaming (SYMBOL_TYPE (sym), | |
3606 | renamed_entity, len, renaming_expr); | |
3607 | case LOC_LOCAL: | |
3608 | case LOC_STATIC: | |
3609 | case LOC_COMPUTED: | |
3610 | case LOC_OPTIMIZED_OUT: | |
3611 | info = strstr (SYMBOL_LINKAGE_NAME (sym), "___XR"); | |
3612 | if (info == NULL) | |
3613 | return ADA_NOT_RENAMING; | |
3614 | switch (info[5]) | |
3615 | { | |
3616 | case '_': | |
3617 | kind = ADA_OBJECT_RENAMING; | |
3618 | info += 6; | |
3619 | break; | |
3620 | case 'E': | |
3621 | kind = ADA_EXCEPTION_RENAMING; | |
3622 | info += 7; | |
3623 | break; | |
3624 | case 'P': | |
3625 | kind = ADA_PACKAGE_RENAMING; | |
3626 | info += 7; | |
3627 | break; | |
3628 | case 'S': | |
3629 | kind = ADA_SUBPROGRAM_RENAMING; | |
3630 | info += 7; | |
3631 | break; | |
3632 | default: | |
3633 | return ADA_NOT_RENAMING; | |
3634 | } | |
14f9c5c9 | 3635 | } |
4c4b4cd2 | 3636 | |
aeb5907d JB |
3637 | if (renamed_entity != NULL) |
3638 | *renamed_entity = info; | |
3639 | suffix = strstr (info, "___XE"); | |
3640 | if (suffix == NULL || suffix == info) | |
3641 | return ADA_NOT_RENAMING; | |
3642 | if (len != NULL) | |
3643 | *len = strlen (info) - strlen (suffix); | |
3644 | suffix += 5; | |
3645 | if (renaming_expr != NULL) | |
3646 | *renaming_expr = suffix; | |
3647 | return kind; | |
3648 | } | |
3649 | ||
3650 | /* Assuming TYPE encodes a renaming according to the old encoding in | |
3651 | exp_dbug.ads, returns details of that renaming in *RENAMED_ENTITY, | |
3652 | *LEN, and *RENAMING_EXPR, as for ada_parse_renaming, above. Returns | |
3653 | ADA_NOT_RENAMING otherwise. */ | |
3654 | static enum ada_renaming_category | |
3655 | parse_old_style_renaming (struct type *type, | |
3656 | const char **renamed_entity, int *len, | |
3657 | const char **renaming_expr) | |
3658 | { | |
3659 | enum ada_renaming_category kind; | |
3660 | const char *name; | |
3661 | const char *info; | |
3662 | const char *suffix; | |
14f9c5c9 | 3663 | |
aeb5907d JB |
3664 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM |
3665 | || TYPE_NFIELDS (type) != 1) | |
3666 | return ADA_NOT_RENAMING; | |
14f9c5c9 | 3667 | |
aeb5907d JB |
3668 | name = type_name_no_tag (type); |
3669 | if (name == NULL) | |
3670 | return ADA_NOT_RENAMING; | |
3671 | ||
3672 | name = strstr (name, "___XR"); | |
3673 | if (name == NULL) | |
3674 | return ADA_NOT_RENAMING; | |
3675 | switch (name[5]) | |
3676 | { | |
3677 | case '\0': | |
3678 | case '_': | |
3679 | kind = ADA_OBJECT_RENAMING; | |
3680 | break; | |
3681 | case 'E': | |
3682 | kind = ADA_EXCEPTION_RENAMING; | |
3683 | break; | |
3684 | case 'P': | |
3685 | kind = ADA_PACKAGE_RENAMING; | |
3686 | break; | |
3687 | case 'S': | |
3688 | kind = ADA_SUBPROGRAM_RENAMING; | |
3689 | break; | |
3690 | default: | |
3691 | return ADA_NOT_RENAMING; | |
3692 | } | |
14f9c5c9 | 3693 | |
aeb5907d JB |
3694 | info = TYPE_FIELD_NAME (type, 0); |
3695 | if (info == NULL) | |
3696 | return ADA_NOT_RENAMING; | |
3697 | if (renamed_entity != NULL) | |
3698 | *renamed_entity = info; | |
3699 | suffix = strstr (info, "___XE"); | |
3700 | if (renaming_expr != NULL) | |
3701 | *renaming_expr = suffix + 5; | |
3702 | if (suffix == NULL || suffix == info) | |
3703 | return ADA_NOT_RENAMING; | |
3704 | if (len != NULL) | |
3705 | *len = suffix - info; | |
3706 | return kind; | |
3707 | } | |
52ce6436 | 3708 | |
14f9c5c9 | 3709 | \f |
d2e4a39e | 3710 | |
4c4b4cd2 | 3711 | /* Evaluation: Function Calls */ |
14f9c5c9 | 3712 | |
4c4b4cd2 PH |
3713 | /* Return an lvalue containing the value VAL. This is the identity on |
3714 | lvalues, and otherwise has the side-effect of pushing a copy of VAL | |
3715 | on the stack, using and updating *SP as the stack pointer, and | |
3716 | returning an lvalue whose VALUE_ADDRESS points to the copy. */ | |
14f9c5c9 | 3717 | |
d2e4a39e | 3718 | static struct value * |
4c4b4cd2 | 3719 | ensure_lval (struct value *val, CORE_ADDR *sp) |
14f9c5c9 | 3720 | { |
c3e5cd34 PH |
3721 | if (! VALUE_LVAL (val)) |
3722 | { | |
df407dfe | 3723 | int len = TYPE_LENGTH (ada_check_typedef (value_type (val))); |
c3e5cd34 PH |
3724 | |
3725 | /* The following is taken from the structure-return code in | |
3726 | call_function_by_hand. FIXME: Therefore, some refactoring seems | |
3727 | indicated. */ | |
4d1e7dd1 | 3728 | if (gdbarch_inner_than (current_gdbarch, 1, 2)) |
c3e5cd34 PH |
3729 | { |
3730 | /* Stack grows downward. Align SP and VALUE_ADDRESS (val) after | |
3731 | reserving sufficient space. */ | |
3732 | *sp -= len; | |
3733 | if (gdbarch_frame_align_p (current_gdbarch)) | |
3734 | *sp = gdbarch_frame_align (current_gdbarch, *sp); | |
3735 | VALUE_ADDRESS (val) = *sp; | |
3736 | } | |
3737 | else | |
3738 | { | |
3739 | /* Stack grows upward. Align the frame, allocate space, and | |
3740 | then again, re-align the frame. */ | |
3741 | if (gdbarch_frame_align_p (current_gdbarch)) | |
3742 | *sp = gdbarch_frame_align (current_gdbarch, *sp); | |
3743 | VALUE_ADDRESS (val) = *sp; | |
3744 | *sp += len; | |
3745 | if (gdbarch_frame_align_p (current_gdbarch)) | |
3746 | *sp = gdbarch_frame_align (current_gdbarch, *sp); | |
3747 | } | |
14f9c5c9 | 3748 | |
990a07ab | 3749 | write_memory (VALUE_ADDRESS (val), value_contents_raw (val), len); |
c3e5cd34 | 3750 | } |
14f9c5c9 AS |
3751 | |
3752 | return val; | |
3753 | } | |
3754 | ||
3755 | /* Return the value ACTUAL, converted to be an appropriate value for a | |
3756 | formal of type FORMAL_TYPE. Use *SP as a stack pointer for | |
3757 | allocating any necessary descriptors (fat pointers), or copies of | |
4c4b4cd2 | 3758 | values not residing in memory, updating it as needed. */ |
14f9c5c9 | 3759 | |
d2e4a39e AS |
3760 | static struct value * |
3761 | convert_actual (struct value *actual, struct type *formal_type0, | |
4c4b4cd2 | 3762 | CORE_ADDR *sp) |
14f9c5c9 | 3763 | { |
df407dfe | 3764 | struct type *actual_type = ada_check_typedef (value_type (actual)); |
61ee279c | 3765 | struct type *formal_type = ada_check_typedef (formal_type0); |
d2e4a39e AS |
3766 | struct type *formal_target = |
3767 | TYPE_CODE (formal_type) == TYPE_CODE_PTR | |
61ee279c | 3768 | ? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type; |
d2e4a39e AS |
3769 | struct type *actual_target = |
3770 | TYPE_CODE (actual_type) == TYPE_CODE_PTR | |
61ee279c | 3771 | ? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type; |
14f9c5c9 | 3772 | |
4c4b4cd2 | 3773 | if (ada_is_array_descriptor_type (formal_target) |
14f9c5c9 AS |
3774 | && TYPE_CODE (actual_target) == TYPE_CODE_ARRAY) |
3775 | return make_array_descriptor (formal_type, actual, sp); | |
3776 | else if (TYPE_CODE (formal_type) == TYPE_CODE_PTR) | |
3777 | { | |
3778 | if (TYPE_CODE (formal_target) == TYPE_CODE_ARRAY | |
4c4b4cd2 PH |
3779 | && ada_is_array_descriptor_type (actual_target)) |
3780 | return desc_data (actual); | |
14f9c5c9 | 3781 | else if (TYPE_CODE (actual_type) != TYPE_CODE_PTR) |
4c4b4cd2 PH |
3782 | { |
3783 | if (VALUE_LVAL (actual) != lval_memory) | |
3784 | { | |
3785 | struct value *val; | |
df407dfe | 3786 | actual_type = ada_check_typedef (value_type (actual)); |
4c4b4cd2 | 3787 | val = allocate_value (actual_type); |
990a07ab | 3788 | memcpy ((char *) value_contents_raw (val), |
0fd88904 | 3789 | (char *) value_contents (actual), |
4c4b4cd2 PH |
3790 | TYPE_LENGTH (actual_type)); |
3791 | actual = ensure_lval (val, sp); | |
3792 | } | |
3793 | return value_addr (actual); | |
3794 | } | |
14f9c5c9 AS |
3795 | } |
3796 | else if (TYPE_CODE (actual_type) == TYPE_CODE_PTR) | |
3797 | return ada_value_ind (actual); | |
3798 | ||
3799 | return actual; | |
3800 | } | |
3801 | ||
3802 | ||
4c4b4cd2 PH |
3803 | /* Push a descriptor of type TYPE for array value ARR on the stack at |
3804 | *SP, updating *SP to reflect the new descriptor. Return either | |
14f9c5c9 | 3805 | an lvalue representing the new descriptor, or (if TYPE is a pointer- |
4c4b4cd2 PH |
3806 | to-descriptor type rather than a descriptor type), a struct value * |
3807 | representing a pointer to this descriptor. */ | |
14f9c5c9 | 3808 | |
d2e4a39e AS |
3809 | static struct value * |
3810 | make_array_descriptor (struct type *type, struct value *arr, CORE_ADDR *sp) | |
14f9c5c9 | 3811 | { |
d2e4a39e AS |
3812 | struct type *bounds_type = desc_bounds_type (type); |
3813 | struct type *desc_type = desc_base_type (type); | |
3814 | struct value *descriptor = allocate_value (desc_type); | |
3815 | struct value *bounds = allocate_value (bounds_type); | |
14f9c5c9 | 3816 | int i; |
d2e4a39e | 3817 | |
df407dfe | 3818 | for (i = ada_array_arity (ada_check_typedef (value_type (arr))); i > 0; i -= 1) |
14f9c5c9 | 3819 | { |
0fd88904 | 3820 | modify_general_field (value_contents_writeable (bounds), |
4c4b4cd2 PH |
3821 | value_as_long (ada_array_bound (arr, i, 0)), |
3822 | desc_bound_bitpos (bounds_type, i, 0), | |
3823 | desc_bound_bitsize (bounds_type, i, 0)); | |
0fd88904 | 3824 | modify_general_field (value_contents_writeable (bounds), |
4c4b4cd2 PH |
3825 | value_as_long (ada_array_bound (arr, i, 1)), |
3826 | desc_bound_bitpos (bounds_type, i, 1), | |
3827 | desc_bound_bitsize (bounds_type, i, 1)); | |
14f9c5c9 | 3828 | } |
d2e4a39e | 3829 | |
4c4b4cd2 | 3830 | bounds = ensure_lval (bounds, sp); |
d2e4a39e | 3831 | |
0fd88904 | 3832 | modify_general_field (value_contents_writeable (descriptor), |
76a01679 JB |
3833 | VALUE_ADDRESS (ensure_lval (arr, sp)), |
3834 | fat_pntr_data_bitpos (desc_type), | |
3835 | fat_pntr_data_bitsize (desc_type)); | |
4c4b4cd2 | 3836 | |
0fd88904 | 3837 | modify_general_field (value_contents_writeable (descriptor), |
4c4b4cd2 PH |
3838 | VALUE_ADDRESS (bounds), |
3839 | fat_pntr_bounds_bitpos (desc_type), | |
3840 | fat_pntr_bounds_bitsize (desc_type)); | |
14f9c5c9 | 3841 | |
4c4b4cd2 | 3842 | descriptor = ensure_lval (descriptor, sp); |
14f9c5c9 AS |
3843 | |
3844 | if (TYPE_CODE (type) == TYPE_CODE_PTR) | |
3845 | return value_addr (descriptor); | |
3846 | else | |
3847 | return descriptor; | |
3848 | } | |
3849 | ||
3850 | ||
4c4b4cd2 | 3851 | /* Assuming a dummy frame has been established on the target, perform any |
14f9c5c9 | 3852 | conversions needed for calling function FUNC on the NARGS actual |
4c4b4cd2 | 3853 | parameters in ARGS, other than standard C conversions. Does |
14f9c5c9 | 3854 | nothing if FUNC does not have Ada-style prototype data, or if NARGS |
4c4b4cd2 | 3855 | does not match the number of arguments expected. Use *SP as a |
14f9c5c9 | 3856 | stack pointer for additional data that must be pushed, updating its |
4c4b4cd2 | 3857 | value as needed. */ |
14f9c5c9 AS |
3858 | |
3859 | void | |
d2e4a39e | 3860 | ada_convert_actuals (struct value *func, int nargs, struct value *args[], |
4c4b4cd2 | 3861 | CORE_ADDR *sp) |
14f9c5c9 AS |
3862 | { |
3863 | int i; | |
3864 | ||
df407dfe AC |
3865 | if (TYPE_NFIELDS (value_type (func)) == 0 |
3866 | || nargs != TYPE_NFIELDS (value_type (func))) | |
14f9c5c9 AS |
3867 | return; |
3868 | ||
3869 | for (i = 0; i < nargs; i += 1) | |
d2e4a39e | 3870 | args[i] = |
df407dfe | 3871 | convert_actual (args[i], TYPE_FIELD_TYPE (value_type (func), i), sp); |
14f9c5c9 | 3872 | } |
14f9c5c9 | 3873 | \f |
963a6417 PH |
3874 | /* Dummy definitions for an experimental caching module that is not |
3875 | * used in the public sources. */ | |
96d887e8 | 3876 | |
96d887e8 PH |
3877 | static int |
3878 | lookup_cached_symbol (const char *name, domain_enum namespace, | |
76a01679 JB |
3879 | struct symbol **sym, struct block **block, |
3880 | struct symtab **symtab) | |
96d887e8 PH |
3881 | { |
3882 | return 0; | |
3883 | } | |
3884 | ||
3885 | static void | |
3886 | cache_symbol (const char *name, domain_enum namespace, struct symbol *sym, | |
76a01679 | 3887 | struct block *block, struct symtab *symtab) |
96d887e8 PH |
3888 | { |
3889 | } | |
4c4b4cd2 PH |
3890 | \f |
3891 | /* Symbol Lookup */ | |
3892 | ||
3893 | /* Return the result of a standard (literal, C-like) lookup of NAME in | |
3894 | given DOMAIN, visible from lexical block BLOCK. */ | |
3895 | ||
3896 | static struct symbol * | |
3897 | standard_lookup (const char *name, const struct block *block, | |
3898 | domain_enum domain) | |
3899 | { | |
3900 | struct symbol *sym; | |
3901 | struct symtab *symtab; | |
3902 | ||
3903 | if (lookup_cached_symbol (name, domain, &sym, NULL, NULL)) | |
3904 | return sym; | |
76a01679 JB |
3905 | sym = |
3906 | lookup_symbol_in_language (name, block, domain, language_c, 0, &symtab); | |
4c4b4cd2 PH |
3907 | cache_symbol (name, domain, sym, block_found, symtab); |
3908 | return sym; | |
3909 | } | |
3910 | ||
3911 | ||
3912 | /* Non-zero iff there is at least one non-function/non-enumeral symbol | |
3913 | in the symbol fields of SYMS[0..N-1]. We treat enumerals as functions, | |
3914 | since they contend in overloading in the same way. */ | |
3915 | static int | |
3916 | is_nonfunction (struct ada_symbol_info syms[], int n) | |
3917 | { | |
3918 | int i; | |
3919 | ||
3920 | for (i = 0; i < n; i += 1) | |
3921 | if (TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) != TYPE_CODE_FUNC | |
3922 | && (TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) != TYPE_CODE_ENUM | |
3923 | || SYMBOL_CLASS (syms[i].sym) != LOC_CONST)) | |
14f9c5c9 AS |
3924 | return 1; |
3925 | ||
3926 | return 0; | |
3927 | } | |
3928 | ||
3929 | /* If true (non-zero), then TYPE0 and TYPE1 represent equivalent | |
4c4b4cd2 | 3930 | struct types. Otherwise, they may not. */ |
14f9c5c9 AS |
3931 | |
3932 | static int | |
d2e4a39e | 3933 | equiv_types (struct type *type0, struct type *type1) |
14f9c5c9 | 3934 | { |
d2e4a39e | 3935 | if (type0 == type1) |
14f9c5c9 | 3936 | return 1; |
d2e4a39e | 3937 | if (type0 == NULL || type1 == NULL |
14f9c5c9 AS |
3938 | || TYPE_CODE (type0) != TYPE_CODE (type1)) |
3939 | return 0; | |
d2e4a39e | 3940 | if ((TYPE_CODE (type0) == TYPE_CODE_STRUCT |
14f9c5c9 AS |
3941 | || TYPE_CODE (type0) == TYPE_CODE_ENUM) |
3942 | && ada_type_name (type0) != NULL && ada_type_name (type1) != NULL | |
4c4b4cd2 | 3943 | && strcmp (ada_type_name (type0), ada_type_name (type1)) == 0) |
14f9c5c9 | 3944 | return 1; |
d2e4a39e | 3945 | |
14f9c5c9 AS |
3946 | return 0; |
3947 | } | |
3948 | ||
3949 | /* True iff SYM0 represents the same entity as SYM1, or one that is | |
4c4b4cd2 | 3950 | no more defined than that of SYM1. */ |
14f9c5c9 AS |
3951 | |
3952 | static int | |
d2e4a39e | 3953 | lesseq_defined_than (struct symbol *sym0, struct symbol *sym1) |
14f9c5c9 AS |
3954 | { |
3955 | if (sym0 == sym1) | |
3956 | return 1; | |
176620f1 | 3957 | if (SYMBOL_DOMAIN (sym0) != SYMBOL_DOMAIN (sym1) |
14f9c5c9 AS |
3958 | || SYMBOL_CLASS (sym0) != SYMBOL_CLASS (sym1)) |
3959 | return 0; | |
3960 | ||
d2e4a39e | 3961 | switch (SYMBOL_CLASS (sym0)) |
14f9c5c9 AS |
3962 | { |
3963 | case LOC_UNDEF: | |
3964 | return 1; | |
3965 | case LOC_TYPEDEF: | |
3966 | { | |
4c4b4cd2 PH |
3967 | struct type *type0 = SYMBOL_TYPE (sym0); |
3968 | struct type *type1 = SYMBOL_TYPE (sym1); | |
3969 | char *name0 = SYMBOL_LINKAGE_NAME (sym0); | |
3970 | char *name1 = SYMBOL_LINKAGE_NAME (sym1); | |
3971 | int len0 = strlen (name0); | |
3972 | return | |
3973 | TYPE_CODE (type0) == TYPE_CODE (type1) | |
3974 | && (equiv_types (type0, type1) | |
3975 | || (len0 < strlen (name1) && strncmp (name0, name1, len0) == 0 | |
3976 | && strncmp (name1 + len0, "___XV", 5) == 0)); | |
14f9c5c9 AS |
3977 | } |
3978 | case LOC_CONST: | |
3979 | return SYMBOL_VALUE (sym0) == SYMBOL_VALUE (sym1) | |
4c4b4cd2 | 3980 | && equiv_types (SYMBOL_TYPE (sym0), SYMBOL_TYPE (sym1)); |
d2e4a39e AS |
3981 | default: |
3982 | return 0; | |
14f9c5c9 AS |
3983 | } |
3984 | } | |
3985 | ||
4c4b4cd2 PH |
3986 | /* Append (SYM,BLOCK,SYMTAB) to the end of the array of struct ada_symbol_info |
3987 | records in OBSTACKP. Do nothing if SYM is a duplicate. */ | |
14f9c5c9 AS |
3988 | |
3989 | static void | |
76a01679 JB |
3990 | add_defn_to_vec (struct obstack *obstackp, |
3991 | struct symbol *sym, | |
3992 | struct block *block, struct symtab *symtab) | |
14f9c5c9 AS |
3993 | { |
3994 | int i; | |
3995 | size_t tmp; | |
4c4b4cd2 | 3996 | struct ada_symbol_info *prevDefns = defns_collected (obstackp, 0); |
14f9c5c9 | 3997 | |
529cad9c PH |
3998 | /* Do not try to complete stub types, as the debugger is probably |
3999 | already scanning all symbols matching a certain name at the | |
4000 | time when this function is called. Trying to replace the stub | |
4001 | type by its associated full type will cause us to restart a scan | |
4002 | which may lead to an infinite recursion. Instead, the client | |
4003 | collecting the matching symbols will end up collecting several | |
4004 | matches, with at least one of them complete. It can then filter | |
4005 | out the stub ones if needed. */ | |
4006 | ||
4c4b4cd2 PH |
4007 | for (i = num_defns_collected (obstackp) - 1; i >= 0; i -= 1) |
4008 | { | |
4009 | if (lesseq_defined_than (sym, prevDefns[i].sym)) | |
4010 | return; | |
4011 | else if (lesseq_defined_than (prevDefns[i].sym, sym)) | |
4012 | { | |
4013 | prevDefns[i].sym = sym; | |
4014 | prevDefns[i].block = block; | |
76a01679 | 4015 | prevDefns[i].symtab = symtab; |
4c4b4cd2 | 4016 | return; |
76a01679 | 4017 | } |
4c4b4cd2 PH |
4018 | } |
4019 | ||
4020 | { | |
4021 | struct ada_symbol_info info; | |
4022 | ||
4023 | info.sym = sym; | |
4024 | info.block = block; | |
4025 | info.symtab = symtab; | |
4026 | obstack_grow (obstackp, &info, sizeof (struct ada_symbol_info)); | |
4027 | } | |
4028 | } | |
4029 | ||
4030 | /* Number of ada_symbol_info structures currently collected in | |
4031 | current vector in *OBSTACKP. */ | |
4032 | ||
76a01679 JB |
4033 | static int |
4034 | num_defns_collected (struct obstack *obstackp) | |
4c4b4cd2 PH |
4035 | { |
4036 | return obstack_object_size (obstackp) / sizeof (struct ada_symbol_info); | |
4037 | } | |
4038 | ||
4039 | /* Vector of ada_symbol_info structures currently collected in current | |
4040 | vector in *OBSTACKP. If FINISH, close off the vector and return | |
4041 | its final address. */ | |
4042 | ||
76a01679 | 4043 | static struct ada_symbol_info * |
4c4b4cd2 PH |
4044 | defns_collected (struct obstack *obstackp, int finish) |
4045 | { | |
4046 | if (finish) | |
4047 | return obstack_finish (obstackp); | |
4048 | else | |
4049 | return (struct ada_symbol_info *) obstack_base (obstackp); | |
4050 | } | |
4051 | ||
96d887e8 PH |
4052 | /* Look, in partial_symtab PST, for symbol NAME in given namespace. |
4053 | Check the global symbols if GLOBAL, the static symbols if not. | |
4054 | Do wild-card match if WILD. */ | |
4c4b4cd2 | 4055 | |
96d887e8 PH |
4056 | static struct partial_symbol * |
4057 | ada_lookup_partial_symbol (struct partial_symtab *pst, const char *name, | |
4058 | int global, domain_enum namespace, int wild) | |
4c4b4cd2 | 4059 | { |
96d887e8 PH |
4060 | struct partial_symbol **start; |
4061 | int name_len = strlen (name); | |
4062 | int length = (global ? pst->n_global_syms : pst->n_static_syms); | |
4063 | int i; | |
4c4b4cd2 | 4064 | |
96d887e8 | 4065 | if (length == 0) |
4c4b4cd2 | 4066 | { |
96d887e8 | 4067 | return (NULL); |
4c4b4cd2 PH |
4068 | } |
4069 | ||
96d887e8 PH |
4070 | start = (global ? |
4071 | pst->objfile->global_psymbols.list + pst->globals_offset : | |
4072 | pst->objfile->static_psymbols.list + pst->statics_offset); | |
4c4b4cd2 | 4073 | |
96d887e8 | 4074 | if (wild) |
4c4b4cd2 | 4075 | { |
96d887e8 PH |
4076 | for (i = 0; i < length; i += 1) |
4077 | { | |
4078 | struct partial_symbol *psym = start[i]; | |
4c4b4cd2 | 4079 | |
1265e4aa JB |
4080 | if (SYMBOL_DOMAIN (psym) == namespace |
4081 | && wild_match (name, name_len, SYMBOL_LINKAGE_NAME (psym))) | |
96d887e8 PH |
4082 | return psym; |
4083 | } | |
4084 | return NULL; | |
4c4b4cd2 | 4085 | } |
96d887e8 PH |
4086 | else |
4087 | { | |
4088 | if (global) | |
4089 | { | |
4090 | int U; | |
4091 | i = 0; | |
4092 | U = length - 1; | |
4093 | while (U - i > 4) | |
4094 | { | |
4095 | int M = (U + i) >> 1; | |
4096 | struct partial_symbol *psym = start[M]; | |
4097 | if (SYMBOL_LINKAGE_NAME (psym)[0] < name[0]) | |
4098 | i = M + 1; | |
4099 | else if (SYMBOL_LINKAGE_NAME (psym)[0] > name[0]) | |
4100 | U = M - 1; | |
4101 | else if (strcmp (SYMBOL_LINKAGE_NAME (psym), name) < 0) | |
4102 | i = M + 1; | |
4103 | else | |
4104 | U = M; | |
4105 | } | |
4106 | } | |
4107 | else | |
4108 | i = 0; | |
4c4b4cd2 | 4109 | |
96d887e8 PH |
4110 | while (i < length) |
4111 | { | |
4112 | struct partial_symbol *psym = start[i]; | |
4c4b4cd2 | 4113 | |
96d887e8 PH |
4114 | if (SYMBOL_DOMAIN (psym) == namespace) |
4115 | { | |
4116 | int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym), name_len); | |
4c4b4cd2 | 4117 | |
96d887e8 PH |
4118 | if (cmp < 0) |
4119 | { | |
4120 | if (global) | |
4121 | break; | |
4122 | } | |
4123 | else if (cmp == 0 | |
4124 | && is_name_suffix (SYMBOL_LINKAGE_NAME (psym) | |
76a01679 | 4125 | + name_len)) |
96d887e8 PH |
4126 | return psym; |
4127 | } | |
4128 | i += 1; | |
4129 | } | |
4c4b4cd2 | 4130 | |
96d887e8 PH |
4131 | if (global) |
4132 | { | |
4133 | int U; | |
4134 | i = 0; | |
4135 | U = length - 1; | |
4136 | while (U - i > 4) | |
4137 | { | |
4138 | int M = (U + i) >> 1; | |
4139 | struct partial_symbol *psym = start[M]; | |
4140 | if (SYMBOL_LINKAGE_NAME (psym)[0] < '_') | |
4141 | i = M + 1; | |
4142 | else if (SYMBOL_LINKAGE_NAME (psym)[0] > '_') | |
4143 | U = M - 1; | |
4144 | else if (strcmp (SYMBOL_LINKAGE_NAME (psym), "_ada_") < 0) | |
4145 | i = M + 1; | |
4146 | else | |
4147 | U = M; | |
4148 | } | |
4149 | } | |
4150 | else | |
4151 | i = 0; | |
4c4b4cd2 | 4152 | |
96d887e8 PH |
4153 | while (i < length) |
4154 | { | |
4155 | struct partial_symbol *psym = start[i]; | |
4c4b4cd2 | 4156 | |
96d887e8 PH |
4157 | if (SYMBOL_DOMAIN (psym) == namespace) |
4158 | { | |
4159 | int cmp; | |
4c4b4cd2 | 4160 | |
96d887e8 PH |
4161 | cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (psym)[0]; |
4162 | if (cmp == 0) | |
4163 | { | |
4164 | cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (psym), 5); | |
4165 | if (cmp == 0) | |
4166 | cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym) + 5, | |
76a01679 | 4167 | name_len); |
96d887e8 | 4168 | } |
4c4b4cd2 | 4169 | |
96d887e8 PH |
4170 | if (cmp < 0) |
4171 | { | |
4172 | if (global) | |
4173 | break; | |
4174 | } | |
4175 | else if (cmp == 0 | |
4176 | && is_name_suffix (SYMBOL_LINKAGE_NAME (psym) | |
76a01679 | 4177 | + name_len + 5)) |
96d887e8 PH |
4178 | return psym; |
4179 | } | |
4180 | i += 1; | |
4181 | } | |
4182 | } | |
4183 | return NULL; | |
4c4b4cd2 PH |
4184 | } |
4185 | ||
96d887e8 | 4186 | /* Find a symbol table containing symbol SYM or NULL if none. */ |
4c4b4cd2 | 4187 | |
96d887e8 PH |
4188 | static struct symtab * |
4189 | symtab_for_sym (struct symbol *sym) | |
4c4b4cd2 | 4190 | { |
96d887e8 PH |
4191 | struct symtab *s; |
4192 | struct objfile *objfile; | |
4193 | struct block *b; | |
4194 | struct symbol *tmp_sym; | |
4195 | struct dict_iterator iter; | |
4196 | int j; | |
4c4b4cd2 | 4197 | |
11309657 | 4198 | ALL_PRIMARY_SYMTABS (objfile, s) |
96d887e8 PH |
4199 | { |
4200 | switch (SYMBOL_CLASS (sym)) | |
4201 | { | |
4202 | case LOC_CONST: | |
4203 | case LOC_STATIC: | |
4204 | case LOC_TYPEDEF: | |
4205 | case LOC_REGISTER: | |
4206 | case LOC_LABEL: | |
4207 | case LOC_BLOCK: | |
4208 | case LOC_CONST_BYTES: | |
76a01679 JB |
4209 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK); |
4210 | ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym) | |
4211 | return s; | |
4212 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK); | |
4213 | ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym) | |
4214 | return s; | |
96d887e8 PH |
4215 | break; |
4216 | default: | |
4217 | break; | |
4218 | } | |
4219 | switch (SYMBOL_CLASS (sym)) | |
4220 | { | |
4221 | case LOC_REGISTER: | |
4222 | case LOC_ARG: | |
4223 | case LOC_REF_ARG: | |
4224 | case LOC_REGPARM: | |
4225 | case LOC_REGPARM_ADDR: | |
4226 | case LOC_LOCAL: | |
4227 | case LOC_TYPEDEF: | |
4228 | case LOC_LOCAL_ARG: | |
4229 | case LOC_BASEREG: | |
4230 | case LOC_BASEREG_ARG: | |
4231 | case LOC_COMPUTED: | |
4232 | case LOC_COMPUTED_ARG: | |
76a01679 JB |
4233 | for (j = FIRST_LOCAL_BLOCK; |
4234 | j < BLOCKVECTOR_NBLOCKS (BLOCKVECTOR (s)); j += 1) | |
4235 | { | |
4236 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), j); | |
4237 | ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym) | |
4238 | return s; | |
4239 | } | |
4240 | break; | |
96d887e8 PH |
4241 | default: |
4242 | break; | |
4243 | } | |
4244 | } | |
4245 | return NULL; | |
4c4b4cd2 PH |
4246 | } |
4247 | ||
96d887e8 PH |
4248 | /* Return a minimal symbol matching NAME according to Ada decoding |
4249 | rules. Returns NULL if there is no such minimal symbol. Names | |
4250 | prefixed with "standard__" are handled specially: "standard__" is | |
4251 | first stripped off, and only static and global symbols are searched. */ | |
4c4b4cd2 | 4252 | |
96d887e8 PH |
4253 | struct minimal_symbol * |
4254 | ada_lookup_simple_minsym (const char *name) | |
4c4b4cd2 | 4255 | { |
4c4b4cd2 | 4256 | struct objfile *objfile; |
96d887e8 PH |
4257 | struct minimal_symbol *msymbol; |
4258 | int wild_match; | |
4c4b4cd2 | 4259 | |
96d887e8 | 4260 | if (strncmp (name, "standard__", sizeof ("standard__") - 1) == 0) |
4c4b4cd2 | 4261 | { |
96d887e8 | 4262 | name += sizeof ("standard__") - 1; |
4c4b4cd2 | 4263 | wild_match = 0; |
4c4b4cd2 PH |
4264 | } |
4265 | else | |
96d887e8 | 4266 | wild_match = (strstr (name, "__") == NULL); |
4c4b4cd2 | 4267 | |
96d887e8 PH |
4268 | ALL_MSYMBOLS (objfile, msymbol) |
4269 | { | |
4270 | if (ada_match_name (SYMBOL_LINKAGE_NAME (msymbol), name, wild_match) | |
4271 | && MSYMBOL_TYPE (msymbol) != mst_solib_trampoline) | |
4272 | return msymbol; | |
4273 | } | |
4c4b4cd2 | 4274 | |
96d887e8 PH |
4275 | return NULL; |
4276 | } | |
4c4b4cd2 | 4277 | |
96d887e8 PH |
4278 | /* For all subprograms that statically enclose the subprogram of the |
4279 | selected frame, add symbols matching identifier NAME in DOMAIN | |
4280 | and their blocks to the list of data in OBSTACKP, as for | |
4281 | ada_add_block_symbols (q.v.). If WILD, treat as NAME with a | |
4282 | wildcard prefix. */ | |
4c4b4cd2 | 4283 | |
96d887e8 PH |
4284 | static void |
4285 | add_symbols_from_enclosing_procs (struct obstack *obstackp, | |
76a01679 | 4286 | const char *name, domain_enum namespace, |
96d887e8 PH |
4287 | int wild_match) |
4288 | { | |
96d887e8 | 4289 | } |
14f9c5c9 | 4290 | |
96d887e8 PH |
4291 | /* True if TYPE is definitely an artificial type supplied to a symbol |
4292 | for which no debugging information was given in the symbol file. */ | |
14f9c5c9 | 4293 | |
96d887e8 PH |
4294 | static int |
4295 | is_nondebugging_type (struct type *type) | |
4296 | { | |
4297 | char *name = ada_type_name (type); | |
4298 | return (name != NULL && strcmp (name, "<variable, no debug info>") == 0); | |
4299 | } | |
4c4b4cd2 | 4300 | |
96d887e8 PH |
4301 | /* Remove any non-debugging symbols in SYMS[0 .. NSYMS-1] that definitely |
4302 | duplicate other symbols in the list (The only case I know of where | |
4303 | this happens is when object files containing stabs-in-ecoff are | |
4304 | linked with files containing ordinary ecoff debugging symbols (or no | |
4305 | debugging symbols)). Modifies SYMS to squeeze out deleted entries. | |
4306 | Returns the number of items in the modified list. */ | |
4c4b4cd2 | 4307 | |
96d887e8 PH |
4308 | static int |
4309 | remove_extra_symbols (struct ada_symbol_info *syms, int nsyms) | |
4310 | { | |
4311 | int i, j; | |
4c4b4cd2 | 4312 | |
96d887e8 PH |
4313 | i = 0; |
4314 | while (i < nsyms) | |
4315 | { | |
4316 | if (SYMBOL_LINKAGE_NAME (syms[i].sym) != NULL | |
4317 | && SYMBOL_CLASS (syms[i].sym) == LOC_STATIC | |
4318 | && is_nondebugging_type (SYMBOL_TYPE (syms[i].sym))) | |
4319 | { | |
4320 | for (j = 0; j < nsyms; j += 1) | |
4321 | { | |
4322 | if (i != j | |
4323 | && SYMBOL_LINKAGE_NAME (syms[j].sym) != NULL | |
4324 | && strcmp (SYMBOL_LINKAGE_NAME (syms[i].sym), | |
76a01679 | 4325 | SYMBOL_LINKAGE_NAME (syms[j].sym)) == 0 |
96d887e8 PH |
4326 | && SYMBOL_CLASS (syms[i].sym) == SYMBOL_CLASS (syms[j].sym) |
4327 | && SYMBOL_VALUE_ADDRESS (syms[i].sym) | |
4328 | == SYMBOL_VALUE_ADDRESS (syms[j].sym)) | |
4c4b4cd2 | 4329 | { |
96d887e8 PH |
4330 | int k; |
4331 | for (k = i + 1; k < nsyms; k += 1) | |
76a01679 | 4332 | syms[k - 1] = syms[k]; |
96d887e8 PH |
4333 | nsyms -= 1; |
4334 | goto NextSymbol; | |
4c4b4cd2 | 4335 | } |
4c4b4cd2 | 4336 | } |
4c4b4cd2 | 4337 | } |
96d887e8 PH |
4338 | i += 1; |
4339 | NextSymbol: | |
4340 | ; | |
14f9c5c9 | 4341 | } |
96d887e8 | 4342 | return nsyms; |
14f9c5c9 AS |
4343 | } |
4344 | ||
96d887e8 PH |
4345 | /* Given a type that corresponds to a renaming entity, use the type name |
4346 | to extract the scope (package name or function name, fully qualified, | |
4347 | and following the GNAT encoding convention) where this renaming has been | |
4348 | defined. The string returned needs to be deallocated after use. */ | |
4c4b4cd2 | 4349 | |
96d887e8 PH |
4350 | static char * |
4351 | xget_renaming_scope (struct type *renaming_type) | |
14f9c5c9 | 4352 | { |
96d887e8 PH |
4353 | /* The renaming types adhere to the following convention: |
4354 | <scope>__<rename>___<XR extension>. | |
4355 | So, to extract the scope, we search for the "___XR" extension, | |
4356 | and then backtrack until we find the first "__". */ | |
76a01679 | 4357 | |
96d887e8 PH |
4358 | const char *name = type_name_no_tag (renaming_type); |
4359 | char *suffix = strstr (name, "___XR"); | |
4360 | char *last; | |
4361 | int scope_len; | |
4362 | char *scope; | |
14f9c5c9 | 4363 | |
96d887e8 PH |
4364 | /* Now, backtrack a bit until we find the first "__". Start looking |
4365 | at suffix - 3, as the <rename> part is at least one character long. */ | |
14f9c5c9 | 4366 | |
96d887e8 PH |
4367 | for (last = suffix - 3; last > name; last--) |
4368 | if (last[0] == '_' && last[1] == '_') | |
4369 | break; | |
76a01679 | 4370 | |
96d887e8 | 4371 | /* Make a copy of scope and return it. */ |
14f9c5c9 | 4372 | |
96d887e8 PH |
4373 | scope_len = last - name; |
4374 | scope = (char *) xmalloc ((scope_len + 1) * sizeof (char)); | |
14f9c5c9 | 4375 | |
96d887e8 PH |
4376 | strncpy (scope, name, scope_len); |
4377 | scope[scope_len] = '\0'; | |
4c4b4cd2 | 4378 | |
96d887e8 | 4379 | return scope; |
4c4b4cd2 PH |
4380 | } |
4381 | ||
96d887e8 | 4382 | /* Return nonzero if NAME corresponds to a package name. */ |
4c4b4cd2 | 4383 | |
96d887e8 PH |
4384 | static int |
4385 | is_package_name (const char *name) | |
4c4b4cd2 | 4386 | { |
96d887e8 PH |
4387 | /* Here, We take advantage of the fact that no symbols are generated |
4388 | for packages, while symbols are generated for each function. | |
4389 | So the condition for NAME represent a package becomes equivalent | |
4390 | to NAME not existing in our list of symbols. There is only one | |
4391 | small complication with library-level functions (see below). */ | |
4c4b4cd2 | 4392 | |
96d887e8 | 4393 | char *fun_name; |
76a01679 | 4394 | |
96d887e8 PH |
4395 | /* If it is a function that has not been defined at library level, |
4396 | then we should be able to look it up in the symbols. */ | |
4397 | if (standard_lookup (name, NULL, VAR_DOMAIN) != NULL) | |
4398 | return 0; | |
14f9c5c9 | 4399 | |
96d887e8 PH |
4400 | /* Library-level function names start with "_ada_". See if function |
4401 | "_ada_" followed by NAME can be found. */ | |
14f9c5c9 | 4402 | |
96d887e8 | 4403 | /* Do a quick check that NAME does not contain "__", since library-level |
e1d5a0d2 | 4404 | functions names cannot contain "__" in them. */ |
96d887e8 PH |
4405 | if (strstr (name, "__") != NULL) |
4406 | return 0; | |
4c4b4cd2 | 4407 | |
b435e160 | 4408 | fun_name = xstrprintf ("_ada_%s", name); |
14f9c5c9 | 4409 | |
96d887e8 PH |
4410 | return (standard_lookup (fun_name, NULL, VAR_DOMAIN) == NULL); |
4411 | } | |
14f9c5c9 | 4412 | |
96d887e8 | 4413 | /* Return nonzero if SYM corresponds to a renaming entity that is |
aeb5907d | 4414 | not visible from FUNCTION_NAME. */ |
14f9c5c9 | 4415 | |
96d887e8 | 4416 | static int |
aeb5907d | 4417 | old_renaming_is_invisible (const struct symbol *sym, char *function_name) |
96d887e8 | 4418 | { |
aeb5907d JB |
4419 | char *scope; |
4420 | ||
4421 | if (SYMBOL_CLASS (sym) != LOC_TYPEDEF) | |
4422 | return 0; | |
4423 | ||
4424 | scope = xget_renaming_scope (SYMBOL_TYPE (sym)); | |
d2e4a39e | 4425 | |
96d887e8 | 4426 | make_cleanup (xfree, scope); |
14f9c5c9 | 4427 | |
96d887e8 PH |
4428 | /* If the rename has been defined in a package, then it is visible. */ |
4429 | if (is_package_name (scope)) | |
aeb5907d | 4430 | return 0; |
14f9c5c9 | 4431 | |
96d887e8 PH |
4432 | /* Check that the rename is in the current function scope by checking |
4433 | that its name starts with SCOPE. */ | |
76a01679 | 4434 | |
96d887e8 PH |
4435 | /* If the function name starts with "_ada_", it means that it is |
4436 | a library-level function. Strip this prefix before doing the | |
4437 | comparison, as the encoding for the renaming does not contain | |
4438 | this prefix. */ | |
4439 | if (strncmp (function_name, "_ada_", 5) == 0) | |
4440 | function_name += 5; | |
f26caa11 | 4441 | |
aeb5907d | 4442 | return (strncmp (function_name, scope, strlen (scope)) != 0); |
f26caa11 PH |
4443 | } |
4444 | ||
aeb5907d JB |
4445 | /* Remove entries from SYMS that corresponds to a renaming entity that |
4446 | is not visible from the function associated with CURRENT_BLOCK or | |
4447 | that is superfluous due to the presence of more specific renaming | |
4448 | information. Places surviving symbols in the initial entries of | |
4449 | SYMS and returns the number of surviving symbols. | |
96d887e8 PH |
4450 | |
4451 | Rationale: | |
aeb5907d JB |
4452 | First, in cases where an object renaming is implemented as a |
4453 | reference variable, GNAT may produce both the actual reference | |
4454 | variable and the renaming encoding. In this case, we discard the | |
4455 | latter. | |
4456 | ||
4457 | Second, GNAT emits a type following a specified encoding for each renaming | |
96d887e8 PH |
4458 | entity. Unfortunately, STABS currently does not support the definition |
4459 | of types that are local to a given lexical block, so all renamings types | |
4460 | are emitted at library level. As a consequence, if an application | |
4461 | contains two renaming entities using the same name, and a user tries to | |
4462 | print the value of one of these entities, the result of the ada symbol | |
4463 | lookup will also contain the wrong renaming type. | |
f26caa11 | 4464 | |
96d887e8 PH |
4465 | This function partially covers for this limitation by attempting to |
4466 | remove from the SYMS list renaming symbols that should be visible | |
4467 | from CURRENT_BLOCK. However, there does not seem be a 100% reliable | |
4468 | method with the current information available. The implementation | |
4469 | below has a couple of limitations (FIXME: brobecker-2003-05-12): | |
4470 | ||
4471 | - When the user tries to print a rename in a function while there | |
4472 | is another rename entity defined in a package: Normally, the | |
4473 | rename in the function has precedence over the rename in the | |
4474 | package, so the latter should be removed from the list. This is | |
4475 | currently not the case. | |
4476 | ||
4477 | - This function will incorrectly remove valid renames if | |
4478 | the CURRENT_BLOCK corresponds to a function which symbol name | |
4479 | has been changed by an "Export" pragma. As a consequence, | |
4480 | the user will be unable to print such rename entities. */ | |
4c4b4cd2 | 4481 | |
14f9c5c9 | 4482 | static int |
aeb5907d JB |
4483 | remove_irrelevant_renamings (struct ada_symbol_info *syms, |
4484 | int nsyms, const struct block *current_block) | |
4c4b4cd2 PH |
4485 | { |
4486 | struct symbol *current_function; | |
4487 | char *current_function_name; | |
4488 | int i; | |
aeb5907d JB |
4489 | int is_new_style_renaming; |
4490 | ||
4491 | /* If there is both a renaming foo___XR... encoded as a variable and | |
4492 | a simple variable foo in the same block, discard the latter. | |
4493 | First, zero out such symbols, then compress. */ | |
4494 | is_new_style_renaming = 0; | |
4495 | for (i = 0; i < nsyms; i += 1) | |
4496 | { | |
4497 | struct symbol *sym = syms[i].sym; | |
4498 | struct block *block = syms[i].block; | |
4499 | const char *name; | |
4500 | const char *suffix; | |
4501 | ||
4502 | if (sym == NULL || SYMBOL_CLASS (sym) == LOC_TYPEDEF) | |
4503 | continue; | |
4504 | name = SYMBOL_LINKAGE_NAME (sym); | |
4505 | suffix = strstr (name, "___XR"); | |
4506 | ||
4507 | if (suffix != NULL) | |
4508 | { | |
4509 | int name_len = suffix - name; | |
4510 | int j; | |
4511 | is_new_style_renaming = 1; | |
4512 | for (j = 0; j < nsyms; j += 1) | |
4513 | if (i != j && syms[j].sym != NULL | |
4514 | && strncmp (name, SYMBOL_LINKAGE_NAME (syms[j].sym), | |
4515 | name_len) == 0 | |
4516 | && block == syms[j].block) | |
4517 | syms[j].sym = NULL; | |
4518 | } | |
4519 | } | |
4520 | if (is_new_style_renaming) | |
4521 | { | |
4522 | int j, k; | |
4523 | ||
4524 | for (j = k = 0; j < nsyms; j += 1) | |
4525 | if (syms[j].sym != NULL) | |
4526 | { | |
4527 | syms[k] = syms[j]; | |
4528 | k += 1; | |
4529 | } | |
4530 | return k; | |
4531 | } | |
4c4b4cd2 PH |
4532 | |
4533 | /* Extract the function name associated to CURRENT_BLOCK. | |
4534 | Abort if unable to do so. */ | |
76a01679 | 4535 | |
4c4b4cd2 PH |
4536 | if (current_block == NULL) |
4537 | return nsyms; | |
76a01679 | 4538 | |
4c4b4cd2 PH |
4539 | current_function = block_function (current_block); |
4540 | if (current_function == NULL) | |
4541 | return nsyms; | |
4542 | ||
4543 | current_function_name = SYMBOL_LINKAGE_NAME (current_function); | |
4544 | if (current_function_name == NULL) | |
4545 | return nsyms; | |
4546 | ||
4547 | /* Check each of the symbols, and remove it from the list if it is | |
4548 | a type corresponding to a renaming that is out of the scope of | |
4549 | the current block. */ | |
4550 | ||
4551 | i = 0; | |
4552 | while (i < nsyms) | |
4553 | { | |
aeb5907d JB |
4554 | if (ada_parse_renaming (syms[i].sym, NULL, NULL, NULL) |
4555 | == ADA_OBJECT_RENAMING | |
4556 | && old_renaming_is_invisible (syms[i].sym, current_function_name)) | |
4c4b4cd2 PH |
4557 | { |
4558 | int j; | |
aeb5907d | 4559 | for (j = i + 1; j < nsyms; j += 1) |
76a01679 | 4560 | syms[j - 1] = syms[j]; |
4c4b4cd2 PH |
4561 | nsyms -= 1; |
4562 | } | |
4563 | else | |
4564 | i += 1; | |
4565 | } | |
4566 | ||
4567 | return nsyms; | |
4568 | } | |
4569 | ||
4570 | /* Find symbols in DOMAIN matching NAME0, in BLOCK0 and enclosing | |
4571 | scope and in global scopes, returning the number of matches. Sets | |
4572 | *RESULTS to point to a vector of (SYM,BLOCK,SYMTAB) triples, | |
4573 | indicating the symbols found and the blocks and symbol tables (if | |
4574 | any) in which they were found. This vector are transient---good only to | |
4575 | the next call of ada_lookup_symbol_list. Any non-function/non-enumeral | |
4576 | symbol match within the nest of blocks whose innermost member is BLOCK0, | |
4577 | is the one match returned (no other matches in that or | |
4578 | enclosing blocks is returned). If there are any matches in or | |
4579 | surrounding BLOCK0, then these alone are returned. Otherwise, the | |
4580 | search extends to global and file-scope (static) symbol tables. | |
4581 | Names prefixed with "standard__" are handled specially: "standard__" | |
4582 | is first stripped off, and only static and global symbols are searched. */ | |
14f9c5c9 AS |
4583 | |
4584 | int | |
4c4b4cd2 | 4585 | ada_lookup_symbol_list (const char *name0, const struct block *block0, |
76a01679 JB |
4586 | domain_enum namespace, |
4587 | struct ada_symbol_info **results) | |
14f9c5c9 AS |
4588 | { |
4589 | struct symbol *sym; | |
4590 | struct symtab *s; | |
4591 | struct partial_symtab *ps; | |
4592 | struct blockvector *bv; | |
4593 | struct objfile *objfile; | |
14f9c5c9 | 4594 | struct block *block; |
4c4b4cd2 | 4595 | const char *name; |
14f9c5c9 | 4596 | struct minimal_symbol *msymbol; |
4c4b4cd2 | 4597 | int wild_match; |
14f9c5c9 | 4598 | int cacheIfUnique; |
4c4b4cd2 PH |
4599 | int block_depth; |
4600 | int ndefns; | |
14f9c5c9 | 4601 | |
4c4b4cd2 PH |
4602 | obstack_free (&symbol_list_obstack, NULL); |
4603 | obstack_init (&symbol_list_obstack); | |
14f9c5c9 | 4604 | |
14f9c5c9 AS |
4605 | cacheIfUnique = 0; |
4606 | ||
4607 | /* Search specified block and its superiors. */ | |
4608 | ||
4c4b4cd2 PH |
4609 | wild_match = (strstr (name0, "__") == NULL); |
4610 | name = name0; | |
76a01679 JB |
4611 | block = (struct block *) block0; /* FIXME: No cast ought to be |
4612 | needed, but adding const will | |
4613 | have a cascade effect. */ | |
4c4b4cd2 PH |
4614 | if (strncmp (name0, "standard__", sizeof ("standard__") - 1) == 0) |
4615 | { | |
4616 | wild_match = 0; | |
4617 | block = NULL; | |
4618 | name = name0 + sizeof ("standard__") - 1; | |
4619 | } | |
4620 | ||
4621 | block_depth = 0; | |
14f9c5c9 AS |
4622 | while (block != NULL) |
4623 | { | |
4c4b4cd2 | 4624 | block_depth += 1; |
76a01679 JB |
4625 | ada_add_block_symbols (&symbol_list_obstack, block, name, |
4626 | namespace, NULL, NULL, wild_match); | |
14f9c5c9 | 4627 | |
4c4b4cd2 PH |
4628 | /* If we found a non-function match, assume that's the one. */ |
4629 | if (is_nonfunction (defns_collected (&symbol_list_obstack, 0), | |
76a01679 | 4630 | num_defns_collected (&symbol_list_obstack))) |
4c4b4cd2 | 4631 | goto done; |
14f9c5c9 AS |
4632 | |
4633 | block = BLOCK_SUPERBLOCK (block); | |
4634 | } | |
4635 | ||
4c4b4cd2 PH |
4636 | /* If no luck so far, try to find NAME as a local symbol in some lexically |
4637 | enclosing subprogram. */ | |
4638 | if (num_defns_collected (&symbol_list_obstack) == 0 && block_depth > 2) | |
4639 | add_symbols_from_enclosing_procs (&symbol_list_obstack, | |
76a01679 | 4640 | name, namespace, wild_match); |
4c4b4cd2 PH |
4641 | |
4642 | /* If we found ANY matches among non-global symbols, we're done. */ | |
14f9c5c9 | 4643 | |
4c4b4cd2 | 4644 | if (num_defns_collected (&symbol_list_obstack) > 0) |
14f9c5c9 | 4645 | goto done; |
d2e4a39e | 4646 | |
14f9c5c9 | 4647 | cacheIfUnique = 1; |
4c4b4cd2 PH |
4648 | if (lookup_cached_symbol (name0, namespace, &sym, &block, &s)) |
4649 | { | |
4650 | if (sym != NULL) | |
4651 | add_defn_to_vec (&symbol_list_obstack, sym, block, s); | |
4652 | goto done; | |
4653 | } | |
14f9c5c9 AS |
4654 | |
4655 | /* Now add symbols from all global blocks: symbol tables, minimal symbol | |
4c4b4cd2 | 4656 | tables, and psymtab's. */ |
14f9c5c9 | 4657 | |
11309657 | 4658 | ALL_PRIMARY_SYMTABS (objfile, s) |
d2e4a39e AS |
4659 | { |
4660 | QUIT; | |
d2e4a39e AS |
4661 | bv = BLOCKVECTOR (s); |
4662 | block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); | |
76a01679 JB |
4663 | ada_add_block_symbols (&symbol_list_obstack, block, name, namespace, |
4664 | objfile, s, wild_match); | |
d2e4a39e | 4665 | } |
14f9c5c9 | 4666 | |
4c4b4cd2 | 4667 | if (namespace == VAR_DOMAIN) |
14f9c5c9 AS |
4668 | { |
4669 | ALL_MSYMBOLS (objfile, msymbol) | |
d2e4a39e | 4670 | { |
4c4b4cd2 PH |
4671 | if (ada_match_name (SYMBOL_LINKAGE_NAME (msymbol), name, wild_match)) |
4672 | { | |
4673 | switch (MSYMBOL_TYPE (msymbol)) | |
4674 | { | |
4675 | case mst_solib_trampoline: | |
4676 | break; | |
4677 | default: | |
4678 | s = find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)); | |
4679 | if (s != NULL) | |
4680 | { | |
4681 | int ndefns0 = num_defns_collected (&symbol_list_obstack); | |
4682 | QUIT; | |
4683 | bv = BLOCKVECTOR (s); | |
4684 | block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); | |
4685 | ada_add_block_symbols (&symbol_list_obstack, block, | |
4686 | SYMBOL_LINKAGE_NAME (msymbol), | |
4687 | namespace, objfile, s, wild_match); | |
76a01679 | 4688 | |
4c4b4cd2 PH |
4689 | if (num_defns_collected (&symbol_list_obstack) == ndefns0) |
4690 | { | |
4691 | block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK); | |
4692 | ada_add_block_symbols (&symbol_list_obstack, block, | |
4693 | SYMBOL_LINKAGE_NAME (msymbol), | |
4694 | namespace, objfile, s, | |
4695 | wild_match); | |
4696 | } | |
4697 | } | |
4698 | } | |
4699 | } | |
d2e4a39e | 4700 | } |
14f9c5c9 | 4701 | } |
d2e4a39e | 4702 | |
14f9c5c9 | 4703 | ALL_PSYMTABS (objfile, ps) |
d2e4a39e AS |
4704 | { |
4705 | QUIT; | |
4706 | if (!ps->readin | |
4c4b4cd2 | 4707 | && ada_lookup_partial_symbol (ps, name, 1, namespace, wild_match)) |
d2e4a39e | 4708 | { |
4c4b4cd2 PH |
4709 | s = PSYMTAB_TO_SYMTAB (ps); |
4710 | if (!s->primary) | |
4711 | continue; | |
4712 | bv = BLOCKVECTOR (s); | |
4713 | block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); | |
4714 | ada_add_block_symbols (&symbol_list_obstack, block, name, | |
76a01679 | 4715 | namespace, objfile, s, wild_match); |
d2e4a39e AS |
4716 | } |
4717 | } | |
4718 | ||
4c4b4cd2 | 4719 | /* Now add symbols from all per-file blocks if we've gotten no hits |
14f9c5c9 | 4720 | (Not strictly correct, but perhaps better than an error). |
4c4b4cd2 | 4721 | Do the symtabs first, then check the psymtabs. */ |
d2e4a39e | 4722 | |
4c4b4cd2 | 4723 | if (num_defns_collected (&symbol_list_obstack) == 0) |
14f9c5c9 AS |
4724 | { |
4725 | ||
11309657 | 4726 | ALL_PRIMARY_SYMTABS (objfile, s) |
d2e4a39e | 4727 | { |
4c4b4cd2 | 4728 | QUIT; |
4c4b4cd2 PH |
4729 | bv = BLOCKVECTOR (s); |
4730 | block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK); | |
76a01679 JB |
4731 | ada_add_block_symbols (&symbol_list_obstack, block, name, namespace, |
4732 | objfile, s, wild_match); | |
d2e4a39e AS |
4733 | } |
4734 | ||
14f9c5c9 | 4735 | ALL_PSYMTABS (objfile, ps) |
d2e4a39e | 4736 | { |
4c4b4cd2 PH |
4737 | QUIT; |
4738 | if (!ps->readin | |
4739 | && ada_lookup_partial_symbol (ps, name, 0, namespace, wild_match)) | |
4740 | { | |
4741 | s = PSYMTAB_TO_SYMTAB (ps); | |
4742 | bv = BLOCKVECTOR (s); | |
4743 | if (!s->primary) | |
4744 | continue; | |
4745 | block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK); | |
76a01679 JB |
4746 | ada_add_block_symbols (&symbol_list_obstack, block, name, |
4747 | namespace, objfile, s, wild_match); | |
4c4b4cd2 | 4748 | } |
d2e4a39e AS |
4749 | } |
4750 | } | |
14f9c5c9 | 4751 | |
4c4b4cd2 PH |
4752 | done: |
4753 | ndefns = num_defns_collected (&symbol_list_obstack); | |
4754 | *results = defns_collected (&symbol_list_obstack, 1); | |
4755 | ||
4756 | ndefns = remove_extra_symbols (*results, ndefns); | |
4757 | ||
d2e4a39e | 4758 | if (ndefns == 0) |
4c4b4cd2 | 4759 | cache_symbol (name0, namespace, NULL, NULL, NULL); |
14f9c5c9 | 4760 | |
4c4b4cd2 | 4761 | if (ndefns == 1 && cacheIfUnique) |
76a01679 JB |
4762 | cache_symbol (name0, namespace, (*results)[0].sym, (*results)[0].block, |
4763 | (*results)[0].symtab); | |
14f9c5c9 | 4764 | |
aeb5907d | 4765 | ndefns = remove_irrelevant_renamings (*results, ndefns, block0); |
14f9c5c9 | 4766 | |
14f9c5c9 AS |
4767 | return ndefns; |
4768 | } | |
4769 | ||
d2e4a39e | 4770 | struct symbol * |
aeb5907d JB |
4771 | ada_lookup_encoded_symbol (const char *name, const struct block *block0, |
4772 | domain_enum namespace, | |
4773 | struct block **block_found, struct symtab **symtab) | |
14f9c5c9 | 4774 | { |
4c4b4cd2 | 4775 | struct ada_symbol_info *candidates; |
14f9c5c9 AS |
4776 | int n_candidates; |
4777 | ||
aeb5907d | 4778 | n_candidates = ada_lookup_symbol_list (name, block0, namespace, &candidates); |
14f9c5c9 AS |
4779 | |
4780 | if (n_candidates == 0) | |
4781 | return NULL; | |
4c4b4cd2 | 4782 | |
aeb5907d JB |
4783 | if (block_found != NULL) |
4784 | *block_found = candidates[0].block; | |
4c4b4cd2 | 4785 | |
76a01679 | 4786 | if (symtab != NULL) |
4c4b4cd2 PH |
4787 | { |
4788 | *symtab = candidates[0].symtab; | |
76a01679 JB |
4789 | if (*symtab == NULL && candidates[0].block != NULL) |
4790 | { | |
4791 | struct objfile *objfile; | |
4792 | struct symtab *s; | |
4793 | struct block *b; | |
4794 | struct blockvector *bv; | |
4795 | ||
4796 | /* Search the list of symtabs for one which contains the | |
4797 | address of the start of this block. */ | |
11309657 | 4798 | ALL_PRIMARY_SYMTABS (objfile, s) |
76a01679 JB |
4799 | { |
4800 | bv = BLOCKVECTOR (s); | |
4801 | b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); | |
4802 | if (BLOCK_START (b) <= BLOCK_START (candidates[0].block) | |
4803 | && BLOCK_END (b) > BLOCK_START (candidates[0].block)) | |
4804 | { | |
4805 | *symtab = s; | |
4806 | return fixup_symbol_section (candidates[0].sym, objfile); | |
4807 | } | |
76a01679 | 4808 | } |
529cad9c PH |
4809 | /* FIXME: brobecker/2004-11-12: I think that we should never |
4810 | reach this point. I don't see a reason why we would not | |
4811 | find a symtab for a given block, so I suggest raising an | |
4812 | internal_error exception here. Otherwise, we end up | |
4813 | returning a symbol but no symtab, which certain parts of | |
4814 | the code that rely (indirectly) on this function do not | |
4815 | expect, eventually causing a SEGV. */ | |
4816 | return fixup_symbol_section (candidates[0].sym, NULL); | |
76a01679 JB |
4817 | } |
4818 | } | |
4c4b4cd2 | 4819 | return candidates[0].sym; |
aeb5907d JB |
4820 | } |
4821 | ||
4822 | /* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing | |
4823 | scope and in global scopes, or NULL if none. NAME is folded and | |
4824 | encoded first. Otherwise, the result is as for ada_lookup_symbol_list, | |
4825 | choosing the first symbol if there are multiple choices. | |
4826 | *IS_A_FIELD_OF_THIS is set to 0 and *SYMTAB is set to the symbol | |
4827 | table in which the symbol was found (in both cases, these | |
4828 | assignments occur only if the pointers are non-null). */ | |
4829 | struct symbol * | |
4830 | ada_lookup_symbol (const char *name, const struct block *block0, | |
4831 | domain_enum namespace, int *is_a_field_of_this, | |
4832 | struct symtab **symtab) | |
4833 | { | |
4834 | if (is_a_field_of_this != NULL) | |
4835 | *is_a_field_of_this = 0; | |
4836 | ||
4837 | return | |
4838 | ada_lookup_encoded_symbol (ada_encode (ada_fold_name (name)), | |
4839 | block0, namespace, NULL, symtab); | |
4c4b4cd2 | 4840 | } |
14f9c5c9 | 4841 | |
4c4b4cd2 PH |
4842 | static struct symbol * |
4843 | ada_lookup_symbol_nonlocal (const char *name, | |
76a01679 JB |
4844 | const char *linkage_name, |
4845 | const struct block *block, | |
4846 | const domain_enum domain, struct symtab **symtab) | |
4c4b4cd2 PH |
4847 | { |
4848 | if (linkage_name == NULL) | |
4849 | linkage_name = name; | |
76a01679 JB |
4850 | return ada_lookup_symbol (linkage_name, block_static_block (block), domain, |
4851 | NULL, symtab); | |
14f9c5c9 AS |
4852 | } |
4853 | ||
4854 | ||
4c4b4cd2 PH |
4855 | /* True iff STR is a possible encoded suffix of a normal Ada name |
4856 | that is to be ignored for matching purposes. Suffixes of parallel | |
4857 | names (e.g., XVE) are not included here. Currently, the possible suffixes | |
4858 | are given by either of the regular expression: | |
4859 | ||
529cad9c PH |
4860 | (__[0-9]+)?[.$][0-9]+ [nested subprogram suffix, on platforms such |
4861 | as GNU/Linux] | |
4c4b4cd2 | 4862 | ___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX] |
529cad9c | 4863 | _E[0-9]+[bs]$ [protected object entry suffixes] |
61ee279c | 4864 | (X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$ |
14f9c5c9 | 4865 | */ |
4c4b4cd2 | 4866 | |
14f9c5c9 | 4867 | static int |
d2e4a39e | 4868 | is_name_suffix (const char *str) |
14f9c5c9 AS |
4869 | { |
4870 | int k; | |
4c4b4cd2 PH |
4871 | const char *matching; |
4872 | const int len = strlen (str); | |
4873 | ||
4874 | /* (__[0-9]+)?\.[0-9]+ */ | |
4875 | matching = str; | |
4876 | if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2])) | |
4877 | { | |
4878 | matching += 3; | |
4879 | while (isdigit (matching[0])) | |
4880 | matching += 1; | |
4881 | if (matching[0] == '\0') | |
4882 | return 1; | |
4883 | } | |
4884 | ||
529cad9c | 4885 | if (matching[0] == '.' || matching[0] == '$') |
4c4b4cd2 PH |
4886 | { |
4887 | matching += 1; | |
4888 | while (isdigit (matching[0])) | |
4889 | matching += 1; | |
4890 | if (matching[0] == '\0') | |
4891 | return 1; | |
4892 | } | |
4893 | ||
4894 | /* ___[0-9]+ */ | |
4895 | if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_') | |
4896 | { | |
4897 | matching = str + 3; | |
4898 | while (isdigit (matching[0])) | |
4899 | matching += 1; | |
4900 | if (matching[0] == '\0') | |
4901 | return 1; | |
4902 | } | |
4903 | ||
529cad9c PH |
4904 | #if 0 |
4905 | /* FIXME: brobecker/2005-09-23: Protected Object subprograms end | |
4906 | with a N at the end. Unfortunately, the compiler uses the same | |
4907 | convention for other internal types it creates. So treating | |
4908 | all entity names that end with an "N" as a name suffix causes | |
4909 | some regressions. For instance, consider the case of an enumerated | |
4910 | type. To support the 'Image attribute, it creates an array whose | |
4911 | name ends with N. | |
4912 | Having a single character like this as a suffix carrying some | |
4913 | information is a bit risky. Perhaps we should change the encoding | |
4914 | to be something like "_N" instead. In the meantime, do not do | |
4915 | the following check. */ | |
4916 | /* Protected Object Subprograms */ | |
4917 | if (len == 1 && str [0] == 'N') | |
4918 | return 1; | |
4919 | #endif | |
4920 | ||
4921 | /* _E[0-9]+[bs]$ */ | |
4922 | if (len > 3 && str[0] == '_' && str [1] == 'E' && isdigit (str[2])) | |
4923 | { | |
4924 | matching = str + 3; | |
4925 | while (isdigit (matching[0])) | |
4926 | matching += 1; | |
4927 | if ((matching[0] == 'b' || matching[0] == 's') | |
4928 | && matching [1] == '\0') | |
4929 | return 1; | |
4930 | } | |
4931 | ||
4c4b4cd2 PH |
4932 | /* ??? We should not modify STR directly, as we are doing below. This |
4933 | is fine in this case, but may become problematic later if we find | |
4934 | that this alternative did not work, and want to try matching | |
4935 | another one from the begining of STR. Since we modified it, we | |
4936 | won't be able to find the begining of the string anymore! */ | |
14f9c5c9 AS |
4937 | if (str[0] == 'X') |
4938 | { | |
4939 | str += 1; | |
d2e4a39e | 4940 | while (str[0] != '_' && str[0] != '\0') |
4c4b4cd2 PH |
4941 | { |
4942 | if (str[0] != 'n' && str[0] != 'b') | |
4943 | return 0; | |
4944 | str += 1; | |
4945 | } | |
14f9c5c9 AS |
4946 | } |
4947 | if (str[0] == '\000') | |
4948 | return 1; | |
d2e4a39e | 4949 | if (str[0] == '_') |
14f9c5c9 AS |
4950 | { |
4951 | if (str[1] != '_' || str[2] == '\000') | |
4c4b4cd2 | 4952 | return 0; |
d2e4a39e | 4953 | if (str[2] == '_') |
4c4b4cd2 | 4954 | { |
61ee279c PH |
4955 | if (strcmp (str + 3, "JM") == 0) |
4956 | return 1; | |
4957 | /* FIXME: brobecker/2004-09-30: GNAT will soon stop using | |
4958 | the LJM suffix in favor of the JM one. But we will | |
4959 | still accept LJM as a valid suffix for a reasonable | |
4960 | amount of time, just to allow ourselves to debug programs | |
4961 | compiled using an older version of GNAT. */ | |
4c4b4cd2 PH |
4962 | if (strcmp (str + 3, "LJM") == 0) |
4963 | return 1; | |
4964 | if (str[3] != 'X') | |
4965 | return 0; | |
1265e4aa JB |
4966 | if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B' |
4967 | || str[4] == 'U' || str[4] == 'P') | |
4c4b4cd2 PH |
4968 | return 1; |
4969 | if (str[4] == 'R' && str[5] != 'T') | |
4970 | return 1; | |
4971 | return 0; | |
4972 | } | |
4973 | if (!isdigit (str[2])) | |
4974 | return 0; | |
4975 | for (k = 3; str[k] != '\0'; k += 1) | |
4976 | if (!isdigit (str[k]) && str[k] != '_') | |
4977 | return 0; | |
14f9c5c9 AS |
4978 | return 1; |
4979 | } | |
4c4b4cd2 | 4980 | if (str[0] == '$' && isdigit (str[1])) |
14f9c5c9 | 4981 | { |
4c4b4cd2 PH |
4982 | for (k = 2; str[k] != '\0'; k += 1) |
4983 | if (!isdigit (str[k]) && str[k] != '_') | |
4984 | return 0; | |
14f9c5c9 AS |
4985 | return 1; |
4986 | } | |
4987 | return 0; | |
4988 | } | |
d2e4a39e | 4989 | |
4c4b4cd2 PH |
4990 | /* Return nonzero if the given string starts with a dot ('.') |
4991 | followed by zero or more digits. | |
4992 | ||
4993 | Note: brobecker/2003-11-10: A forward declaration has not been | |
4994 | added at the begining of this file yet, because this function | |
4995 | is only used to work around a problem found during wild matching | |
4996 | when trying to match minimal symbol names against symbol names | |
4997 | obtained from dwarf-2 data. This function is therefore currently | |
4998 | only used in wild_match() and is likely to be deleted when the | |
4999 | problem in dwarf-2 is fixed. */ | |
5000 | ||
5001 | static int | |
5002 | is_dot_digits_suffix (const char *str) | |
5003 | { | |
5004 | if (str[0] != '.') | |
5005 | return 0; | |
5006 | ||
5007 | str++; | |
5008 | while (isdigit (str[0])) | |
5009 | str++; | |
5010 | return (str[0] == '\0'); | |
5011 | } | |
5012 | ||
aeb5907d JB |
5013 | /* Return non-zero if the string starting at NAME and ending before |
5014 | NAME_END contains no capital letters. */ | |
529cad9c PH |
5015 | |
5016 | static int | |
5017 | is_valid_name_for_wild_match (const char *name0) | |
5018 | { | |
5019 | const char *decoded_name = ada_decode (name0); | |
5020 | int i; | |
5021 | ||
5022 | for (i=0; decoded_name[i] != '\0'; i++) | |
5023 | if (isalpha (decoded_name[i]) && !islower (decoded_name[i])) | |
5024 | return 0; | |
5025 | ||
5026 | return 1; | |
5027 | } | |
5028 | ||
4c4b4cd2 PH |
5029 | /* True if NAME represents a name of the form A1.A2....An, n>=1 and |
5030 | PATN[0..PATN_LEN-1] = Ak.Ak+1.....An for some k >= 1. Ignores | |
5031 | informational suffixes of NAME (i.e., for which is_name_suffix is | |
5032 | true). */ | |
5033 | ||
14f9c5c9 | 5034 | static int |
4c4b4cd2 | 5035 | wild_match (const char *patn0, int patn_len, const char *name0) |
14f9c5c9 AS |
5036 | { |
5037 | int name_len; | |
4c4b4cd2 | 5038 | char *name; |
aeb5907d | 5039 | char *name_start; |
4c4b4cd2 PH |
5040 | char *patn; |
5041 | ||
5042 | /* FIXME: brobecker/2003-11-10: For some reason, the symbol name | |
5043 | stored in the symbol table for nested function names is sometimes | |
5044 | different from the name of the associated entity stored in | |
5045 | the dwarf-2 data: This is the case for nested subprograms, where | |
5046 | the minimal symbol name contains a trailing ".[:digit:]+" suffix, | |
5047 | while the symbol name from the dwarf-2 data does not. | |
5048 | ||
5049 | Although the DWARF-2 standard documents that entity names stored | |
5050 | in the dwarf-2 data should be identical to the name as seen in | |
5051 | the source code, GNAT takes a different approach as we already use | |
5052 | a special encoding mechanism to convey the information so that | |
5053 | a C debugger can still use the information generated to debug | |
5054 | Ada programs. A corollary is that the symbol names in the dwarf-2 | |
5055 | data should match the names found in the symbol table. I therefore | |
5056 | consider this issue as a compiler defect. | |
76a01679 | 5057 | |
4c4b4cd2 PH |
5058 | Until the compiler is properly fixed, we work-around the problem |
5059 | by ignoring such suffixes during the match. We do so by making | |
5060 | a copy of PATN0 and NAME0, and then by stripping such a suffix | |
5061 | if present. We then perform the match on the resulting strings. */ | |
5062 | { | |
5063 | char *dot; | |
5064 | name_len = strlen (name0); | |
5065 | ||
aeb5907d | 5066 | name = name_start = (char *) alloca ((name_len + 1) * sizeof (char)); |
4c4b4cd2 PH |
5067 | strcpy (name, name0); |
5068 | dot = strrchr (name, '.'); | |
5069 | if (dot != NULL && is_dot_digits_suffix (dot)) | |
5070 | *dot = '\0'; | |
5071 | ||
5072 | patn = (char *) alloca ((patn_len + 1) * sizeof (char)); | |
5073 | strncpy (patn, patn0, patn_len); | |
5074 | patn[patn_len] = '\0'; | |
5075 | dot = strrchr (patn, '.'); | |
5076 | if (dot != NULL && is_dot_digits_suffix (dot)) | |
5077 | { | |
5078 | *dot = '\0'; | |
5079 | patn_len = dot - patn; | |
5080 | } | |
5081 | } | |
5082 | ||
5083 | /* Now perform the wild match. */ | |
14f9c5c9 AS |
5084 | |
5085 | name_len = strlen (name); | |
4c4b4cd2 PH |
5086 | if (name_len >= patn_len + 5 && strncmp (name, "_ada_", 5) == 0 |
5087 | && strncmp (patn, name + 5, patn_len) == 0 | |
d2e4a39e | 5088 | && is_name_suffix (name + patn_len + 5)) |
14f9c5c9 AS |
5089 | return 1; |
5090 | ||
d2e4a39e | 5091 | while (name_len >= patn_len) |
14f9c5c9 | 5092 | { |
4c4b4cd2 PH |
5093 | if (strncmp (patn, name, patn_len) == 0 |
5094 | && is_name_suffix (name + patn_len)) | |
aeb5907d | 5095 | return (name == name_start || is_valid_name_for_wild_match (name0)); |
4c4b4cd2 PH |
5096 | do |
5097 | { | |
5098 | name += 1; | |
5099 | name_len -= 1; | |
5100 | } | |
d2e4a39e | 5101 | while (name_len > 0 |
4c4b4cd2 | 5102 | && name[0] != '.' && (name[0] != '_' || name[1] != '_')); |
14f9c5c9 | 5103 | if (name_len <= 0) |
4c4b4cd2 | 5104 | return 0; |
14f9c5c9 | 5105 | if (name[0] == '_') |
4c4b4cd2 PH |
5106 | { |
5107 | if (!islower (name[2])) | |
5108 | return 0; | |
5109 | name += 2; | |
5110 | name_len -= 2; | |
5111 | } | |
14f9c5c9 | 5112 | else |
4c4b4cd2 PH |
5113 | { |
5114 | if (!islower (name[1])) | |
5115 | return 0; | |
5116 | name += 1; | |
5117 | name_len -= 1; | |
5118 | } | |
96d887e8 PH |
5119 | } |
5120 | ||
5121 | return 0; | |
5122 | } | |
5123 | ||
5124 | ||
5125 | /* Add symbols from BLOCK matching identifier NAME in DOMAIN to | |
5126 | vector *defn_symbols, updating the list of symbols in OBSTACKP | |
5127 | (if necessary). If WILD, treat as NAME with a wildcard prefix. | |
5128 | OBJFILE is the section containing BLOCK. | |
5129 | SYMTAB is recorded with each symbol added. */ | |
5130 | ||
5131 | static void | |
5132 | ada_add_block_symbols (struct obstack *obstackp, | |
76a01679 | 5133 | struct block *block, const char *name, |
96d887e8 PH |
5134 | domain_enum domain, struct objfile *objfile, |
5135 | struct symtab *symtab, int wild) | |
5136 | { | |
5137 | struct dict_iterator iter; | |
5138 | int name_len = strlen (name); | |
5139 | /* A matching argument symbol, if any. */ | |
5140 | struct symbol *arg_sym; | |
5141 | /* Set true when we find a matching non-argument symbol. */ | |
5142 | int found_sym; | |
5143 | struct symbol *sym; | |
5144 | ||
5145 | arg_sym = NULL; | |
5146 | found_sym = 0; | |
5147 | if (wild) | |
5148 | { | |
5149 | struct symbol *sym; | |
5150 | ALL_BLOCK_SYMBOLS (block, iter, sym) | |
76a01679 | 5151 | { |
1265e4aa JB |
5152 | if (SYMBOL_DOMAIN (sym) == domain |
5153 | && wild_match (name, name_len, SYMBOL_LINKAGE_NAME (sym))) | |
76a01679 JB |
5154 | { |
5155 | switch (SYMBOL_CLASS (sym)) | |
5156 | { | |
5157 | case LOC_ARG: | |
5158 | case LOC_LOCAL_ARG: | |
5159 | case LOC_REF_ARG: | |
5160 | case LOC_REGPARM: | |
5161 | case LOC_REGPARM_ADDR: | |
5162 | case LOC_BASEREG_ARG: | |
5163 | case LOC_COMPUTED_ARG: | |
5164 | arg_sym = sym; | |
5165 | break; | |
5166 | case LOC_UNRESOLVED: | |
5167 | continue; | |
5168 | default: | |
5169 | found_sym = 1; | |
5170 | add_defn_to_vec (obstackp, | |
5171 | fixup_symbol_section (sym, objfile), | |
5172 | block, symtab); | |
5173 | break; | |
5174 | } | |
5175 | } | |
5176 | } | |
96d887e8 PH |
5177 | } |
5178 | else | |
5179 | { | |
5180 | ALL_BLOCK_SYMBOLS (block, iter, sym) | |
76a01679 JB |
5181 | { |
5182 | if (SYMBOL_DOMAIN (sym) == domain) | |
5183 | { | |
5184 | int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym), name_len); | |
5185 | if (cmp == 0 | |
5186 | && is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len)) | |
5187 | { | |
5188 | switch (SYMBOL_CLASS (sym)) | |
5189 | { | |
5190 | case LOC_ARG: | |
5191 | case LOC_LOCAL_ARG: | |
5192 | case LOC_REF_ARG: | |
5193 | case LOC_REGPARM: | |
5194 | case LOC_REGPARM_ADDR: | |
5195 | case LOC_BASEREG_ARG: | |
5196 | case LOC_COMPUTED_ARG: | |
5197 | arg_sym = sym; | |
5198 | break; | |
5199 | case LOC_UNRESOLVED: | |
5200 | break; | |
5201 | default: | |
5202 | found_sym = 1; | |
5203 | add_defn_to_vec (obstackp, | |
5204 | fixup_symbol_section (sym, objfile), | |
5205 | block, symtab); | |
5206 | break; | |
5207 | } | |
5208 | } | |
5209 | } | |
5210 | } | |
96d887e8 PH |
5211 | } |
5212 | ||
5213 | if (!found_sym && arg_sym != NULL) | |
5214 | { | |
76a01679 JB |
5215 | add_defn_to_vec (obstackp, |
5216 | fixup_symbol_section (arg_sym, objfile), | |
5217 | block, symtab); | |
96d887e8 PH |
5218 | } |
5219 | ||
5220 | if (!wild) | |
5221 | { | |
5222 | arg_sym = NULL; | |
5223 | found_sym = 0; | |
5224 | ||
5225 | ALL_BLOCK_SYMBOLS (block, iter, sym) | |
76a01679 JB |
5226 | { |
5227 | if (SYMBOL_DOMAIN (sym) == domain) | |
5228 | { | |
5229 | int cmp; | |
5230 | ||
5231 | cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (sym)[0]; | |
5232 | if (cmp == 0) | |
5233 | { | |
5234 | cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (sym), 5); | |
5235 | if (cmp == 0) | |
5236 | cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym) + 5, | |
5237 | name_len); | |
5238 | } | |
5239 | ||
5240 | if (cmp == 0 | |
5241 | && is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len + 5)) | |
5242 | { | |
5243 | switch (SYMBOL_CLASS (sym)) | |
5244 | { | |
5245 | case LOC_ARG: | |
5246 | case LOC_LOCAL_ARG: | |
5247 | case LOC_REF_ARG: | |
5248 | case LOC_REGPARM: | |
5249 | case LOC_REGPARM_ADDR: | |
5250 | case LOC_BASEREG_ARG: | |
5251 | case LOC_COMPUTED_ARG: | |
5252 | arg_sym = sym; | |
5253 | break; | |
5254 | case LOC_UNRESOLVED: | |
5255 | break; | |
5256 | default: | |
5257 | found_sym = 1; | |
5258 | add_defn_to_vec (obstackp, | |
5259 | fixup_symbol_section (sym, objfile), | |
5260 | block, symtab); | |
5261 | break; | |
5262 | } | |
5263 | } | |
5264 | } | |
76a01679 | 5265 | } |
96d887e8 PH |
5266 | |
5267 | /* NOTE: This really shouldn't be needed for _ada_ symbols. | |
5268 | They aren't parameters, right? */ | |
5269 | if (!found_sym && arg_sym != NULL) | |
5270 | { | |
5271 | add_defn_to_vec (obstackp, | |
76a01679 JB |
5272 | fixup_symbol_section (arg_sym, objfile), |
5273 | block, symtab); | |
96d887e8 PH |
5274 | } |
5275 | } | |
5276 | } | |
5277 | \f | |
963a6417 | 5278 | /* Field Access */ |
96d887e8 | 5279 | |
73fb9985 JB |
5280 | /* Return non-zero if TYPE is a pointer to the GNAT dispatch table used |
5281 | for tagged types. */ | |
5282 | ||
5283 | static int | |
5284 | ada_is_dispatch_table_ptr_type (struct type *type) | |
5285 | { | |
5286 | char *name; | |
5287 | ||
5288 | if (TYPE_CODE (type) != TYPE_CODE_PTR) | |
5289 | return 0; | |
5290 | ||
5291 | name = TYPE_NAME (TYPE_TARGET_TYPE (type)); | |
5292 | if (name == NULL) | |
5293 | return 0; | |
5294 | ||
5295 | return (strcmp (name, "ada__tags__dispatch_table") == 0); | |
5296 | } | |
5297 | ||
963a6417 PH |
5298 | /* True if field number FIELD_NUM in struct or union type TYPE is supposed |
5299 | to be invisible to users. */ | |
96d887e8 | 5300 | |
963a6417 PH |
5301 | int |
5302 | ada_is_ignored_field (struct type *type, int field_num) | |
96d887e8 | 5303 | { |
963a6417 PH |
5304 | if (field_num < 0 || field_num > TYPE_NFIELDS (type)) |
5305 | return 1; | |
73fb9985 JB |
5306 | |
5307 | /* Check the name of that field. */ | |
5308 | { | |
5309 | const char *name = TYPE_FIELD_NAME (type, field_num); | |
5310 | ||
5311 | /* Anonymous field names should not be printed. | |
5312 | brobecker/2007-02-20: I don't think this can actually happen | |
5313 | but we don't want to print the value of annonymous fields anyway. */ | |
5314 | if (name == NULL) | |
5315 | return 1; | |
5316 | ||
5317 | /* A field named "_parent" is internally generated by GNAT for | |
5318 | tagged types, and should not be printed either. */ | |
5319 | if (name[0] == '_' && strncmp (name, "_parent", 7) != 0) | |
5320 | return 1; | |
5321 | } | |
5322 | ||
5323 | /* If this is the dispatch table of a tagged type, then ignore. */ | |
5324 | if (ada_is_tagged_type (type, 1) | |
5325 | && ada_is_dispatch_table_ptr_type (TYPE_FIELD_TYPE (type, field_num))) | |
5326 | return 1; | |
5327 | ||
5328 | /* Not a special field, so it should not be ignored. */ | |
5329 | return 0; | |
963a6417 | 5330 | } |
96d887e8 | 5331 | |
963a6417 PH |
5332 | /* True iff TYPE has a tag field. If REFOK, then TYPE may also be a |
5333 | pointer or reference type whose ultimate target has a tag field. */ | |
96d887e8 | 5334 | |
963a6417 PH |
5335 | int |
5336 | ada_is_tagged_type (struct type *type, int refok) | |
5337 | { | |
5338 | return (ada_lookup_struct_elt_type (type, "_tag", refok, 1, NULL) != NULL); | |
5339 | } | |
96d887e8 | 5340 | |
963a6417 | 5341 | /* True iff TYPE represents the type of X'Tag */ |
96d887e8 | 5342 | |
963a6417 PH |
5343 | int |
5344 | ada_is_tag_type (struct type *type) | |
5345 | { | |
5346 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_PTR) | |
5347 | return 0; | |
5348 | else | |
96d887e8 | 5349 | { |
963a6417 PH |
5350 | const char *name = ada_type_name (TYPE_TARGET_TYPE (type)); |
5351 | return (name != NULL | |
5352 | && strcmp (name, "ada__tags__dispatch_table") == 0); | |
96d887e8 | 5353 | } |
96d887e8 PH |
5354 | } |
5355 | ||
963a6417 | 5356 | /* The type of the tag on VAL. */ |
76a01679 | 5357 | |
963a6417 PH |
5358 | struct type * |
5359 | ada_tag_type (struct value *val) | |
96d887e8 | 5360 | { |
df407dfe | 5361 | return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0, NULL); |
963a6417 | 5362 | } |
96d887e8 | 5363 | |
963a6417 | 5364 | /* The value of the tag on VAL. */ |
96d887e8 | 5365 | |
963a6417 PH |
5366 | struct value * |
5367 | ada_value_tag (struct value *val) | |
5368 | { | |
03ee6b2e | 5369 | return ada_value_struct_elt (val, "_tag", 0); |
96d887e8 PH |
5370 | } |
5371 | ||
963a6417 PH |
5372 | /* The value of the tag on the object of type TYPE whose contents are |
5373 | saved at VALADDR, if it is non-null, or is at memory address | |
5374 | ADDRESS. */ | |
96d887e8 | 5375 | |
963a6417 | 5376 | static struct value * |
10a2c479 | 5377 | value_tag_from_contents_and_address (struct type *type, |
fc1a4b47 | 5378 | const gdb_byte *valaddr, |
963a6417 | 5379 | CORE_ADDR address) |
96d887e8 | 5380 | { |
963a6417 PH |
5381 | int tag_byte_offset, dummy1, dummy2; |
5382 | struct type *tag_type; | |
5383 | if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset, | |
52ce6436 | 5384 | NULL, NULL, NULL)) |
96d887e8 | 5385 | { |
fc1a4b47 | 5386 | const gdb_byte *valaddr1 = ((valaddr == NULL) |
10a2c479 AC |
5387 | ? NULL |
5388 | : valaddr + tag_byte_offset); | |
963a6417 | 5389 | CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset; |
96d887e8 | 5390 | |
963a6417 | 5391 | return value_from_contents_and_address (tag_type, valaddr1, address1); |
96d887e8 | 5392 | } |
963a6417 PH |
5393 | return NULL; |
5394 | } | |
96d887e8 | 5395 | |
963a6417 PH |
5396 | static struct type * |
5397 | type_from_tag (struct value *tag) | |
5398 | { | |
5399 | const char *type_name = ada_tag_name (tag); | |
5400 | if (type_name != NULL) | |
5401 | return ada_find_any_type (ada_encode (type_name)); | |
5402 | return NULL; | |
5403 | } | |
96d887e8 | 5404 | |
963a6417 PH |
5405 | struct tag_args |
5406 | { | |
5407 | struct value *tag; | |
5408 | char *name; | |
5409 | }; | |
4c4b4cd2 | 5410 | |
529cad9c PH |
5411 | |
5412 | static int ada_tag_name_1 (void *); | |
5413 | static int ada_tag_name_2 (struct tag_args *); | |
5414 | ||
4c4b4cd2 PH |
5415 | /* Wrapper function used by ada_tag_name. Given a struct tag_args* |
5416 | value ARGS, sets ARGS->name to the tag name of ARGS->tag. | |
5417 | The value stored in ARGS->name is valid until the next call to | |
5418 | ada_tag_name_1. */ | |
5419 | ||
5420 | static int | |
5421 | ada_tag_name_1 (void *args0) | |
5422 | { | |
5423 | struct tag_args *args = (struct tag_args *) args0; | |
5424 | static char name[1024]; | |
76a01679 | 5425 | char *p; |
4c4b4cd2 PH |
5426 | struct value *val; |
5427 | args->name = NULL; | |
03ee6b2e | 5428 | val = ada_value_struct_elt (args->tag, "tsd", 1); |
529cad9c PH |
5429 | if (val == NULL) |
5430 | return ada_tag_name_2 (args); | |
03ee6b2e | 5431 | val = ada_value_struct_elt (val, "expanded_name", 1); |
529cad9c PH |
5432 | if (val == NULL) |
5433 | return 0; | |
5434 | read_memory_string (value_as_address (val), name, sizeof (name) - 1); | |
5435 | for (p = name; *p != '\0'; p += 1) | |
5436 | if (isalpha (*p)) | |
5437 | *p = tolower (*p); | |
5438 | args->name = name; | |
5439 | return 0; | |
5440 | } | |
5441 | ||
5442 | /* Utility function for ada_tag_name_1 that tries the second | |
5443 | representation for the dispatch table (in which there is no | |
5444 | explicit 'tsd' field in the referent of the tag pointer, and instead | |
5445 | the tsd pointer is stored just before the dispatch table. */ | |
5446 | ||
5447 | static int | |
5448 | ada_tag_name_2 (struct tag_args *args) | |
5449 | { | |
5450 | struct type *info_type; | |
5451 | static char name[1024]; | |
5452 | char *p; | |
5453 | struct value *val, *valp; | |
5454 | ||
5455 | args->name = NULL; | |
5456 | info_type = ada_find_any_type ("ada__tags__type_specific_data"); | |
5457 | if (info_type == NULL) | |
5458 | return 0; | |
5459 | info_type = lookup_pointer_type (lookup_pointer_type (info_type)); | |
5460 | valp = value_cast (info_type, args->tag); | |
5461 | if (valp == NULL) | |
5462 | return 0; | |
5463 | val = value_ind (value_add (valp, value_from_longest (builtin_type_int, -1))); | |
4c4b4cd2 PH |
5464 | if (val == NULL) |
5465 | return 0; | |
03ee6b2e | 5466 | val = ada_value_struct_elt (val, "expanded_name", 1); |
4c4b4cd2 PH |
5467 | if (val == NULL) |
5468 | return 0; | |
5469 | read_memory_string (value_as_address (val), name, sizeof (name) - 1); | |
5470 | for (p = name; *p != '\0'; p += 1) | |
5471 | if (isalpha (*p)) | |
5472 | *p = tolower (*p); | |
5473 | args->name = name; | |
5474 | return 0; | |
5475 | } | |
5476 | ||
5477 | /* The type name of the dynamic type denoted by the 'tag value TAG, as | |
5478 | * a C string. */ | |
5479 | ||
5480 | const char * | |
5481 | ada_tag_name (struct value *tag) | |
5482 | { | |
5483 | struct tag_args args; | |
df407dfe | 5484 | if (!ada_is_tag_type (value_type (tag))) |
4c4b4cd2 | 5485 | return NULL; |
76a01679 | 5486 | args.tag = tag; |
4c4b4cd2 PH |
5487 | args.name = NULL; |
5488 | catch_errors (ada_tag_name_1, &args, NULL, RETURN_MASK_ALL); | |
5489 | return args.name; | |
5490 | } | |
5491 | ||
5492 | /* The parent type of TYPE, or NULL if none. */ | |
14f9c5c9 | 5493 | |
d2e4a39e | 5494 | struct type * |
ebf56fd3 | 5495 | ada_parent_type (struct type *type) |
14f9c5c9 AS |
5496 | { |
5497 | int i; | |
5498 | ||
61ee279c | 5499 | type = ada_check_typedef (type); |
14f9c5c9 AS |
5500 | |
5501 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT) | |
5502 | return NULL; | |
5503 | ||
5504 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) | |
5505 | if (ada_is_parent_field (type, i)) | |
61ee279c | 5506 | return ada_check_typedef (TYPE_FIELD_TYPE (type, i)); |
14f9c5c9 AS |
5507 | |
5508 | return NULL; | |
5509 | } | |
5510 | ||
4c4b4cd2 PH |
5511 | /* True iff field number FIELD_NUM of structure type TYPE contains the |
5512 | parent-type (inherited) fields of a derived type. Assumes TYPE is | |
5513 | a structure type with at least FIELD_NUM+1 fields. */ | |
14f9c5c9 AS |
5514 | |
5515 | int | |
ebf56fd3 | 5516 | ada_is_parent_field (struct type *type, int field_num) |
14f9c5c9 | 5517 | { |
61ee279c | 5518 | const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num); |
4c4b4cd2 PH |
5519 | return (name != NULL |
5520 | && (strncmp (name, "PARENT", 6) == 0 | |
5521 | || strncmp (name, "_parent", 7) == 0)); | |
14f9c5c9 AS |
5522 | } |
5523 | ||
4c4b4cd2 | 5524 | /* True iff field number FIELD_NUM of structure type TYPE is a |
14f9c5c9 | 5525 | transparent wrapper field (which should be silently traversed when doing |
4c4b4cd2 | 5526 | field selection and flattened when printing). Assumes TYPE is a |
14f9c5c9 | 5527 | structure type with at least FIELD_NUM+1 fields. Such fields are always |
4c4b4cd2 | 5528 | structures. */ |
14f9c5c9 AS |
5529 | |
5530 | int | |
ebf56fd3 | 5531 | ada_is_wrapper_field (struct type *type, int field_num) |
14f9c5c9 | 5532 | { |
d2e4a39e AS |
5533 | const char *name = TYPE_FIELD_NAME (type, field_num); |
5534 | return (name != NULL | |
4c4b4cd2 PH |
5535 | && (strncmp (name, "PARENT", 6) == 0 |
5536 | || strcmp (name, "REP") == 0 | |
5537 | || strncmp (name, "_parent", 7) == 0 | |
5538 | || name[0] == 'S' || name[0] == 'R' || name[0] == 'O')); | |
14f9c5c9 AS |
5539 | } |
5540 | ||
4c4b4cd2 PH |
5541 | /* True iff field number FIELD_NUM of structure or union type TYPE |
5542 | is a variant wrapper. Assumes TYPE is a structure type with at least | |
5543 | FIELD_NUM+1 fields. */ | |
14f9c5c9 AS |
5544 | |
5545 | int | |
ebf56fd3 | 5546 | ada_is_variant_part (struct type *type, int field_num) |
14f9c5c9 | 5547 | { |
d2e4a39e | 5548 | struct type *field_type = TYPE_FIELD_TYPE (type, field_num); |
14f9c5c9 | 5549 | return (TYPE_CODE (field_type) == TYPE_CODE_UNION |
4c4b4cd2 | 5550 | || (is_dynamic_field (type, field_num) |
c3e5cd34 PH |
5551 | && (TYPE_CODE (TYPE_TARGET_TYPE (field_type)) |
5552 | == TYPE_CODE_UNION))); | |
14f9c5c9 AS |
5553 | } |
5554 | ||
5555 | /* Assuming that VAR_TYPE is a variant wrapper (type of the variant part) | |
4c4b4cd2 | 5556 | whose discriminants are contained in the record type OUTER_TYPE, |
14f9c5c9 AS |
5557 | returns the type of the controlling discriminant for the variant. */ |
5558 | ||
d2e4a39e | 5559 | struct type * |
ebf56fd3 | 5560 | ada_variant_discrim_type (struct type *var_type, struct type *outer_type) |
14f9c5c9 | 5561 | { |
d2e4a39e | 5562 | char *name = ada_variant_discrim_name (var_type); |
76a01679 | 5563 | struct type *type = |
4c4b4cd2 | 5564 | ada_lookup_struct_elt_type (outer_type, name, 1, 1, NULL); |
14f9c5c9 AS |
5565 | if (type == NULL) |
5566 | return builtin_type_int; | |
5567 | else | |
5568 | return type; | |
5569 | } | |
5570 | ||
4c4b4cd2 | 5571 | /* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a |
14f9c5c9 | 5572 | valid field number within it, returns 1 iff field FIELD_NUM of TYPE |
4c4b4cd2 | 5573 | represents a 'when others' clause; otherwise 0. */ |
14f9c5c9 AS |
5574 | |
5575 | int | |
ebf56fd3 | 5576 | ada_is_others_clause (struct type *type, int field_num) |
14f9c5c9 | 5577 | { |
d2e4a39e | 5578 | const char *name = TYPE_FIELD_NAME (type, field_num); |
14f9c5c9 AS |
5579 | return (name != NULL && name[0] == 'O'); |
5580 | } | |
5581 | ||
5582 | /* Assuming that TYPE0 is the type of the variant part of a record, | |
4c4b4cd2 PH |
5583 | returns the name of the discriminant controlling the variant. |
5584 | The value is valid until the next call to ada_variant_discrim_name. */ | |
14f9c5c9 | 5585 | |
d2e4a39e | 5586 | char * |
ebf56fd3 | 5587 | ada_variant_discrim_name (struct type *type0) |
14f9c5c9 | 5588 | { |
d2e4a39e | 5589 | static char *result = NULL; |
14f9c5c9 | 5590 | static size_t result_len = 0; |
d2e4a39e AS |
5591 | struct type *type; |
5592 | const char *name; | |
5593 | const char *discrim_end; | |
5594 | const char *discrim_start; | |
14f9c5c9 AS |
5595 | |
5596 | if (TYPE_CODE (type0) == TYPE_CODE_PTR) | |
5597 | type = TYPE_TARGET_TYPE (type0); | |
5598 | else | |
5599 | type = type0; | |
5600 | ||
5601 | name = ada_type_name (type); | |
5602 | ||
5603 | if (name == NULL || name[0] == '\000') | |
5604 | return ""; | |
5605 | ||
5606 | for (discrim_end = name + strlen (name) - 6; discrim_end != name; | |
5607 | discrim_end -= 1) | |
5608 | { | |
4c4b4cd2 PH |
5609 | if (strncmp (discrim_end, "___XVN", 6) == 0) |
5610 | break; | |
14f9c5c9 AS |
5611 | } |
5612 | if (discrim_end == name) | |
5613 | return ""; | |
5614 | ||
d2e4a39e | 5615 | for (discrim_start = discrim_end; discrim_start != name + 3; |
14f9c5c9 AS |
5616 | discrim_start -= 1) |
5617 | { | |
d2e4a39e | 5618 | if (discrim_start == name + 1) |
4c4b4cd2 | 5619 | return ""; |
76a01679 | 5620 | if ((discrim_start > name + 3 |
4c4b4cd2 PH |
5621 | && strncmp (discrim_start - 3, "___", 3) == 0) |
5622 | || discrim_start[-1] == '.') | |
5623 | break; | |
14f9c5c9 AS |
5624 | } |
5625 | ||
5626 | GROW_VECT (result, result_len, discrim_end - discrim_start + 1); | |
5627 | strncpy (result, discrim_start, discrim_end - discrim_start); | |
d2e4a39e | 5628 | result[discrim_end - discrim_start] = '\0'; |
14f9c5c9 AS |
5629 | return result; |
5630 | } | |
5631 | ||
4c4b4cd2 PH |
5632 | /* Scan STR for a subtype-encoded number, beginning at position K. |
5633 | Put the position of the character just past the number scanned in | |
5634 | *NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL. | |
5635 | Return 1 if there was a valid number at the given position, and 0 | |
5636 | otherwise. A "subtype-encoded" number consists of the absolute value | |
5637 | in decimal, followed by the letter 'm' to indicate a negative number. | |
5638 | Assumes 0m does not occur. */ | |
14f9c5c9 AS |
5639 | |
5640 | int | |
d2e4a39e | 5641 | ada_scan_number (const char str[], int k, LONGEST * R, int *new_k) |
14f9c5c9 AS |
5642 | { |
5643 | ULONGEST RU; | |
5644 | ||
d2e4a39e | 5645 | if (!isdigit (str[k])) |
14f9c5c9 AS |
5646 | return 0; |
5647 | ||
4c4b4cd2 | 5648 | /* Do it the hard way so as not to make any assumption about |
14f9c5c9 | 5649 | the relationship of unsigned long (%lu scan format code) and |
4c4b4cd2 | 5650 | LONGEST. */ |
14f9c5c9 AS |
5651 | RU = 0; |
5652 | while (isdigit (str[k])) | |
5653 | { | |
d2e4a39e | 5654 | RU = RU * 10 + (str[k] - '0'); |
14f9c5c9 AS |
5655 | k += 1; |
5656 | } | |
5657 | ||
d2e4a39e | 5658 | if (str[k] == 'm') |
14f9c5c9 AS |
5659 | { |
5660 | if (R != NULL) | |
4c4b4cd2 | 5661 | *R = (-(LONGEST) (RU - 1)) - 1; |
14f9c5c9 AS |
5662 | k += 1; |
5663 | } | |
5664 | else if (R != NULL) | |
5665 | *R = (LONGEST) RU; | |
5666 | ||
4c4b4cd2 | 5667 | /* NOTE on the above: Technically, C does not say what the results of |
14f9c5c9 AS |
5668 | - (LONGEST) RU or (LONGEST) -RU are for RU == largest positive |
5669 | number representable as a LONGEST (although either would probably work | |
5670 | in most implementations). When RU>0, the locution in the then branch | |
4c4b4cd2 | 5671 | above is always equivalent to the negative of RU. */ |
14f9c5c9 AS |
5672 | |
5673 | if (new_k != NULL) | |
5674 | *new_k = k; | |
5675 | return 1; | |
5676 | } | |
5677 | ||
4c4b4cd2 PH |
5678 | /* Assuming that TYPE is a variant part wrapper type (a VARIANTS field), |
5679 | and FIELD_NUM is a valid field number within it, returns 1 iff VAL is | |
5680 | in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */ | |
14f9c5c9 | 5681 | |
d2e4a39e | 5682 | int |
ebf56fd3 | 5683 | ada_in_variant (LONGEST val, struct type *type, int field_num) |
14f9c5c9 | 5684 | { |
d2e4a39e | 5685 | const char *name = TYPE_FIELD_NAME (type, field_num); |
14f9c5c9 AS |
5686 | int p; |
5687 | ||
5688 | p = 0; | |
5689 | while (1) | |
5690 | { | |
d2e4a39e | 5691 | switch (name[p]) |
4c4b4cd2 PH |
5692 | { |
5693 | case '\0': | |
5694 | return 0; | |
5695 | case 'S': | |
5696 | { | |
5697 | LONGEST W; | |
5698 | if (!ada_scan_number (name, p + 1, &W, &p)) | |
5699 | return 0; | |
5700 | if (val == W) | |
5701 | return 1; | |
5702 | break; | |
5703 | } | |
5704 | case 'R': | |
5705 | { | |
5706 | LONGEST L, U; | |
5707 | if (!ada_scan_number (name, p + 1, &L, &p) | |
5708 | || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p)) | |
5709 | return 0; | |
5710 | if (val >= L && val <= U) | |
5711 | return 1; | |
5712 | break; | |
5713 | } | |
5714 | case 'O': | |
5715 | return 1; | |
5716 | default: | |
5717 | return 0; | |
5718 | } | |
5719 | } | |
5720 | } | |
5721 | ||
5722 | /* FIXME: Lots of redundancy below. Try to consolidate. */ | |
5723 | ||
5724 | /* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type | |
5725 | ARG_TYPE, extract and return the value of one of its (non-static) | |
5726 | fields. FIELDNO says which field. Differs from value_primitive_field | |
5727 | only in that it can handle packed values of arbitrary type. */ | |
14f9c5c9 | 5728 | |
4c4b4cd2 | 5729 | static struct value * |
d2e4a39e | 5730 | ada_value_primitive_field (struct value *arg1, int offset, int fieldno, |
4c4b4cd2 | 5731 | struct type *arg_type) |
14f9c5c9 | 5732 | { |
14f9c5c9 AS |
5733 | struct type *type; |
5734 | ||
61ee279c | 5735 | arg_type = ada_check_typedef (arg_type); |
14f9c5c9 AS |
5736 | type = TYPE_FIELD_TYPE (arg_type, fieldno); |
5737 | ||
4c4b4cd2 | 5738 | /* Handle packed fields. */ |
14f9c5c9 AS |
5739 | |
5740 | if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0) | |
5741 | { | |
5742 | int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno); | |
5743 | int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno); | |
d2e4a39e | 5744 | |
0fd88904 | 5745 | return ada_value_primitive_packed_val (arg1, value_contents (arg1), |
4c4b4cd2 PH |
5746 | offset + bit_pos / 8, |
5747 | bit_pos % 8, bit_size, type); | |
14f9c5c9 AS |
5748 | } |
5749 | else | |
5750 | return value_primitive_field (arg1, offset, fieldno, arg_type); | |
5751 | } | |
5752 | ||
52ce6436 PH |
5753 | /* Find field with name NAME in object of type TYPE. If found, |
5754 | set the following for each argument that is non-null: | |
5755 | - *FIELD_TYPE_P to the field's type; | |
5756 | - *BYTE_OFFSET_P to OFFSET + the byte offset of the field within | |
5757 | an object of that type; | |
5758 | - *BIT_OFFSET_P to the bit offset modulo byte size of the field; | |
5759 | - *BIT_SIZE_P to its size in bits if the field is packed, and | |
5760 | 0 otherwise; | |
5761 | If INDEX_P is non-null, increment *INDEX_P by the number of source-visible | |
5762 | fields up to but not including the desired field, or by the total | |
5763 | number of fields if not found. A NULL value of NAME never | |
5764 | matches; the function just counts visible fields in this case. | |
5765 | ||
5766 | Returns 1 if found, 0 otherwise. */ | |
5767 | ||
4c4b4cd2 | 5768 | static int |
76a01679 JB |
5769 | find_struct_field (char *name, struct type *type, int offset, |
5770 | struct type **field_type_p, | |
52ce6436 PH |
5771 | int *byte_offset_p, int *bit_offset_p, int *bit_size_p, |
5772 | int *index_p) | |
4c4b4cd2 PH |
5773 | { |
5774 | int i; | |
5775 | ||
61ee279c | 5776 | type = ada_check_typedef (type); |
76a01679 | 5777 | |
52ce6436 PH |
5778 | if (field_type_p != NULL) |
5779 | *field_type_p = NULL; | |
5780 | if (byte_offset_p != NULL) | |
d5d6fca5 | 5781 | *byte_offset_p = 0; |
52ce6436 PH |
5782 | if (bit_offset_p != NULL) |
5783 | *bit_offset_p = 0; | |
5784 | if (bit_size_p != NULL) | |
5785 | *bit_size_p = 0; | |
5786 | ||
5787 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) | |
4c4b4cd2 PH |
5788 | { |
5789 | int bit_pos = TYPE_FIELD_BITPOS (type, i); | |
5790 | int fld_offset = offset + bit_pos / 8; | |
5791 | char *t_field_name = TYPE_FIELD_NAME (type, i); | |
76a01679 | 5792 | |
4c4b4cd2 PH |
5793 | if (t_field_name == NULL) |
5794 | continue; | |
5795 | ||
52ce6436 | 5796 | else if (name != NULL && field_name_match (t_field_name, name)) |
76a01679 JB |
5797 | { |
5798 | int bit_size = TYPE_FIELD_BITSIZE (type, i); | |
52ce6436 PH |
5799 | if (field_type_p != NULL) |
5800 | *field_type_p = TYPE_FIELD_TYPE (type, i); | |
5801 | if (byte_offset_p != NULL) | |
5802 | *byte_offset_p = fld_offset; | |
5803 | if (bit_offset_p != NULL) | |
5804 | *bit_offset_p = bit_pos % 8; | |
5805 | if (bit_size_p != NULL) | |
5806 | *bit_size_p = bit_size; | |
76a01679 JB |
5807 | return 1; |
5808 | } | |
4c4b4cd2 PH |
5809 | else if (ada_is_wrapper_field (type, i)) |
5810 | { | |
52ce6436 PH |
5811 | if (find_struct_field (name, TYPE_FIELD_TYPE (type, i), fld_offset, |
5812 | field_type_p, byte_offset_p, bit_offset_p, | |
5813 | bit_size_p, index_p)) | |
76a01679 JB |
5814 | return 1; |
5815 | } | |
4c4b4cd2 PH |
5816 | else if (ada_is_variant_part (type, i)) |
5817 | { | |
52ce6436 PH |
5818 | /* PNH: Wait. Do we ever execute this section, or is ARG always of |
5819 | fixed type?? */ | |
4c4b4cd2 | 5820 | int j; |
52ce6436 PH |
5821 | struct type *field_type |
5822 | = ada_check_typedef (TYPE_FIELD_TYPE (type, i)); | |
4c4b4cd2 | 5823 | |
52ce6436 | 5824 | for (j = 0; j < TYPE_NFIELDS (field_type); j += 1) |
4c4b4cd2 | 5825 | { |
76a01679 JB |
5826 | if (find_struct_field (name, TYPE_FIELD_TYPE (field_type, j), |
5827 | fld_offset | |
5828 | + TYPE_FIELD_BITPOS (field_type, j) / 8, | |
5829 | field_type_p, byte_offset_p, | |
52ce6436 | 5830 | bit_offset_p, bit_size_p, index_p)) |
76a01679 | 5831 | return 1; |
4c4b4cd2 PH |
5832 | } |
5833 | } | |
52ce6436 PH |
5834 | else if (index_p != NULL) |
5835 | *index_p += 1; | |
4c4b4cd2 PH |
5836 | } |
5837 | return 0; | |
5838 | } | |
5839 | ||
52ce6436 | 5840 | /* Number of user-visible fields in record type TYPE. */ |
4c4b4cd2 | 5841 | |
52ce6436 PH |
5842 | static int |
5843 | num_visible_fields (struct type *type) | |
5844 | { | |
5845 | int n; | |
5846 | n = 0; | |
5847 | find_struct_field (NULL, type, 0, NULL, NULL, NULL, NULL, &n); | |
5848 | return n; | |
5849 | } | |
14f9c5c9 | 5850 | |
4c4b4cd2 | 5851 | /* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes, |
14f9c5c9 AS |
5852 | and search in it assuming it has (class) type TYPE. |
5853 | If found, return value, else return NULL. | |
5854 | ||
4c4b4cd2 | 5855 | Searches recursively through wrapper fields (e.g., '_parent'). */ |
14f9c5c9 | 5856 | |
4c4b4cd2 | 5857 | static struct value * |
d2e4a39e | 5858 | ada_search_struct_field (char *name, struct value *arg, int offset, |
4c4b4cd2 | 5859 | struct type *type) |
14f9c5c9 AS |
5860 | { |
5861 | int i; | |
61ee279c | 5862 | type = ada_check_typedef (type); |
14f9c5c9 | 5863 | |
52ce6436 | 5864 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) |
14f9c5c9 AS |
5865 | { |
5866 | char *t_field_name = TYPE_FIELD_NAME (type, i); | |
5867 | ||
5868 | if (t_field_name == NULL) | |
4c4b4cd2 | 5869 | continue; |
14f9c5c9 AS |
5870 | |
5871 | else if (field_name_match (t_field_name, name)) | |
4c4b4cd2 | 5872 | return ada_value_primitive_field (arg, offset, i, type); |
14f9c5c9 AS |
5873 | |
5874 | else if (ada_is_wrapper_field (type, i)) | |
4c4b4cd2 | 5875 | { |
06d5cf63 JB |
5876 | struct value *v = /* Do not let indent join lines here. */ |
5877 | ada_search_struct_field (name, arg, | |
5878 | offset + TYPE_FIELD_BITPOS (type, i) / 8, | |
5879 | TYPE_FIELD_TYPE (type, i)); | |
4c4b4cd2 PH |
5880 | if (v != NULL) |
5881 | return v; | |
5882 | } | |
14f9c5c9 AS |
5883 | |
5884 | else if (ada_is_variant_part (type, i)) | |
4c4b4cd2 | 5885 | { |
52ce6436 | 5886 | /* PNH: Do we ever get here? See find_struct_field. */ |
4c4b4cd2 | 5887 | int j; |
61ee279c | 5888 | struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i)); |
4c4b4cd2 PH |
5889 | int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8; |
5890 | ||
52ce6436 | 5891 | for (j = 0; j < TYPE_NFIELDS (field_type); j += 1) |
4c4b4cd2 | 5892 | { |
06d5cf63 JB |
5893 | struct value *v = ada_search_struct_field /* Force line break. */ |
5894 | (name, arg, | |
5895 | var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8, | |
5896 | TYPE_FIELD_TYPE (field_type, j)); | |
4c4b4cd2 PH |
5897 | if (v != NULL) |
5898 | return v; | |
5899 | } | |
5900 | } | |
14f9c5c9 AS |
5901 | } |
5902 | return NULL; | |
5903 | } | |
d2e4a39e | 5904 | |
52ce6436 PH |
5905 | static struct value *ada_index_struct_field_1 (int *, struct value *, |
5906 | int, struct type *); | |
5907 | ||
5908 | ||
5909 | /* Return field #INDEX in ARG, where the index is that returned by | |
5910 | * find_struct_field through its INDEX_P argument. Adjust the address | |
5911 | * of ARG by OFFSET bytes, and search in it assuming it has (class) type TYPE. | |
5912 | * If found, return value, else return NULL. */ | |
5913 | ||
5914 | static struct value * | |
5915 | ada_index_struct_field (int index, struct value *arg, int offset, | |
5916 | struct type *type) | |
5917 | { | |
5918 | return ada_index_struct_field_1 (&index, arg, offset, type); | |
5919 | } | |
5920 | ||
5921 | ||
5922 | /* Auxiliary function for ada_index_struct_field. Like | |
5923 | * ada_index_struct_field, but takes index from *INDEX_P and modifies | |
5924 | * *INDEX_P. */ | |
5925 | ||
5926 | static struct value * | |
5927 | ada_index_struct_field_1 (int *index_p, struct value *arg, int offset, | |
5928 | struct type *type) | |
5929 | { | |
5930 | int i; | |
5931 | type = ada_check_typedef (type); | |
5932 | ||
5933 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) | |
5934 | { | |
5935 | if (TYPE_FIELD_NAME (type, i) == NULL) | |
5936 | continue; | |
5937 | else if (ada_is_wrapper_field (type, i)) | |
5938 | { | |
5939 | struct value *v = /* Do not let indent join lines here. */ | |
5940 | ada_index_struct_field_1 (index_p, arg, | |
5941 | offset + TYPE_FIELD_BITPOS (type, i) / 8, | |
5942 | TYPE_FIELD_TYPE (type, i)); | |
5943 | if (v != NULL) | |
5944 | return v; | |
5945 | } | |
5946 | ||
5947 | else if (ada_is_variant_part (type, i)) | |
5948 | { | |
5949 | /* PNH: Do we ever get here? See ada_search_struct_field, | |
5950 | find_struct_field. */ | |
5951 | error (_("Cannot assign this kind of variant record")); | |
5952 | } | |
5953 | else if (*index_p == 0) | |
5954 | return ada_value_primitive_field (arg, offset, i, type); | |
5955 | else | |
5956 | *index_p -= 1; | |
5957 | } | |
5958 | return NULL; | |
5959 | } | |
5960 | ||
4c4b4cd2 PH |
5961 | /* Given ARG, a value of type (pointer or reference to a)* |
5962 | structure/union, extract the component named NAME from the ultimate | |
5963 | target structure/union and return it as a value with its | |
5964 | appropriate type. If ARG is a pointer or reference and the field | |
5965 | is not packed, returns a reference to the field, otherwise the | |
5966 | value of the field (an lvalue if ARG is an lvalue). | |
14f9c5c9 | 5967 | |
4c4b4cd2 PH |
5968 | The routine searches for NAME among all members of the structure itself |
5969 | and (recursively) among all members of any wrapper members | |
14f9c5c9 AS |
5970 | (e.g., '_parent'). |
5971 | ||
03ee6b2e PH |
5972 | If NO_ERR, then simply return NULL in case of error, rather than |
5973 | calling error. */ | |
14f9c5c9 | 5974 | |
d2e4a39e | 5975 | struct value * |
03ee6b2e | 5976 | ada_value_struct_elt (struct value *arg, char *name, int no_err) |
14f9c5c9 | 5977 | { |
4c4b4cd2 | 5978 | struct type *t, *t1; |
d2e4a39e | 5979 | struct value *v; |
14f9c5c9 | 5980 | |
4c4b4cd2 | 5981 | v = NULL; |
df407dfe | 5982 | t1 = t = ada_check_typedef (value_type (arg)); |
4c4b4cd2 PH |
5983 | if (TYPE_CODE (t) == TYPE_CODE_REF) |
5984 | { | |
5985 | t1 = TYPE_TARGET_TYPE (t); | |
5986 | if (t1 == NULL) | |
03ee6b2e | 5987 | goto BadValue; |
61ee279c | 5988 | t1 = ada_check_typedef (t1); |
4c4b4cd2 | 5989 | if (TYPE_CODE (t1) == TYPE_CODE_PTR) |
76a01679 | 5990 | { |
994b9211 | 5991 | arg = coerce_ref (arg); |
76a01679 JB |
5992 | t = t1; |
5993 | } | |
4c4b4cd2 | 5994 | } |
14f9c5c9 | 5995 | |
4c4b4cd2 PH |
5996 | while (TYPE_CODE (t) == TYPE_CODE_PTR) |
5997 | { | |
5998 | t1 = TYPE_TARGET_TYPE (t); | |
5999 | if (t1 == NULL) | |
03ee6b2e | 6000 | goto BadValue; |
61ee279c | 6001 | t1 = ada_check_typedef (t1); |
4c4b4cd2 | 6002 | if (TYPE_CODE (t1) == TYPE_CODE_PTR) |
76a01679 JB |
6003 | { |
6004 | arg = value_ind (arg); | |
6005 | t = t1; | |
6006 | } | |
4c4b4cd2 | 6007 | else |
76a01679 | 6008 | break; |
4c4b4cd2 | 6009 | } |
14f9c5c9 | 6010 | |
4c4b4cd2 | 6011 | if (TYPE_CODE (t1) != TYPE_CODE_STRUCT && TYPE_CODE (t1) != TYPE_CODE_UNION) |
03ee6b2e | 6012 | goto BadValue; |
14f9c5c9 | 6013 | |
4c4b4cd2 PH |
6014 | if (t1 == t) |
6015 | v = ada_search_struct_field (name, arg, 0, t); | |
6016 | else | |
6017 | { | |
6018 | int bit_offset, bit_size, byte_offset; | |
6019 | struct type *field_type; | |
6020 | CORE_ADDR address; | |
6021 | ||
76a01679 JB |
6022 | if (TYPE_CODE (t) == TYPE_CODE_PTR) |
6023 | address = value_as_address (arg); | |
4c4b4cd2 | 6024 | else |
0fd88904 | 6025 | address = unpack_pointer (t, value_contents (arg)); |
14f9c5c9 | 6026 | |
4c4b4cd2 | 6027 | t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL, address, NULL); |
76a01679 JB |
6028 | if (find_struct_field (name, t1, 0, |
6029 | &field_type, &byte_offset, &bit_offset, | |
52ce6436 | 6030 | &bit_size, NULL)) |
76a01679 JB |
6031 | { |
6032 | if (bit_size != 0) | |
6033 | { | |
714e53ab PH |
6034 | if (TYPE_CODE (t) == TYPE_CODE_REF) |
6035 | arg = ada_coerce_ref (arg); | |
6036 | else | |
6037 | arg = ada_value_ind (arg); | |
76a01679 JB |
6038 | v = ada_value_primitive_packed_val (arg, NULL, byte_offset, |
6039 | bit_offset, bit_size, | |
6040 | field_type); | |
6041 | } | |
6042 | else | |
6043 | v = value_from_pointer (lookup_reference_type (field_type), | |
6044 | address + byte_offset); | |
6045 | } | |
6046 | } | |
6047 | ||
03ee6b2e PH |
6048 | if (v != NULL || no_err) |
6049 | return v; | |
6050 | else | |
323e0a4a | 6051 | error (_("There is no member named %s."), name); |
14f9c5c9 | 6052 | |
03ee6b2e PH |
6053 | BadValue: |
6054 | if (no_err) | |
6055 | return NULL; | |
6056 | else | |
6057 | error (_("Attempt to extract a component of a value that is not a record.")); | |
14f9c5c9 AS |
6058 | } |
6059 | ||
6060 | /* Given a type TYPE, look up the type of the component of type named NAME. | |
4c4b4cd2 PH |
6061 | If DISPP is non-null, add its byte displacement from the beginning of a |
6062 | structure (pointed to by a value) of type TYPE to *DISPP (does not | |
14f9c5c9 AS |
6063 | work for packed fields). |
6064 | ||
6065 | Matches any field whose name has NAME as a prefix, possibly | |
4c4b4cd2 | 6066 | followed by "___". |
14f9c5c9 | 6067 | |
4c4b4cd2 PH |
6068 | TYPE can be either a struct or union. If REFOK, TYPE may also |
6069 | be a (pointer or reference)+ to a struct or union, and the | |
6070 | ultimate target type will be searched. | |
14f9c5c9 AS |
6071 | |
6072 | Looks recursively into variant clauses and parent types. | |
6073 | ||
4c4b4cd2 PH |
6074 | If NOERR is nonzero, return NULL if NAME is not suitably defined or |
6075 | TYPE is not a type of the right kind. */ | |
14f9c5c9 | 6076 | |
4c4b4cd2 | 6077 | static struct type * |
76a01679 JB |
6078 | ada_lookup_struct_elt_type (struct type *type, char *name, int refok, |
6079 | int noerr, int *dispp) | |
14f9c5c9 AS |
6080 | { |
6081 | int i; | |
6082 | ||
6083 | if (name == NULL) | |
6084 | goto BadName; | |
6085 | ||
76a01679 | 6086 | if (refok && type != NULL) |
4c4b4cd2 PH |
6087 | while (1) |
6088 | { | |
61ee279c | 6089 | type = ada_check_typedef (type); |
76a01679 JB |
6090 | if (TYPE_CODE (type) != TYPE_CODE_PTR |
6091 | && TYPE_CODE (type) != TYPE_CODE_REF) | |
6092 | break; | |
6093 | type = TYPE_TARGET_TYPE (type); | |
4c4b4cd2 | 6094 | } |
14f9c5c9 | 6095 | |
76a01679 | 6096 | if (type == NULL |
1265e4aa JB |
6097 | || (TYPE_CODE (type) != TYPE_CODE_STRUCT |
6098 | && TYPE_CODE (type) != TYPE_CODE_UNION)) | |
14f9c5c9 | 6099 | { |
4c4b4cd2 | 6100 | if (noerr) |
76a01679 | 6101 | return NULL; |
4c4b4cd2 | 6102 | else |
76a01679 JB |
6103 | { |
6104 | target_terminal_ours (); | |
6105 | gdb_flush (gdb_stdout); | |
323e0a4a AC |
6106 | if (type == NULL) |
6107 | error (_("Type (null) is not a structure or union type")); | |
6108 | else | |
6109 | { | |
6110 | /* XXX: type_sprint */ | |
6111 | fprintf_unfiltered (gdb_stderr, _("Type ")); | |
6112 | type_print (type, "", gdb_stderr, -1); | |
6113 | error (_(" is not a structure or union type")); | |
6114 | } | |
76a01679 | 6115 | } |
14f9c5c9 AS |
6116 | } |
6117 | ||
6118 | type = to_static_fixed_type (type); | |
6119 | ||
6120 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) | |
6121 | { | |
6122 | char *t_field_name = TYPE_FIELD_NAME (type, i); | |
6123 | struct type *t; | |
6124 | int disp; | |
d2e4a39e | 6125 | |
14f9c5c9 | 6126 | if (t_field_name == NULL) |
4c4b4cd2 | 6127 | continue; |
14f9c5c9 AS |
6128 | |
6129 | else if (field_name_match (t_field_name, name)) | |
4c4b4cd2 PH |
6130 | { |
6131 | if (dispp != NULL) | |
6132 | *dispp += TYPE_FIELD_BITPOS (type, i) / 8; | |
61ee279c | 6133 | return ada_check_typedef (TYPE_FIELD_TYPE (type, i)); |
4c4b4cd2 | 6134 | } |
14f9c5c9 AS |
6135 | |
6136 | else if (ada_is_wrapper_field (type, i)) | |
4c4b4cd2 PH |
6137 | { |
6138 | disp = 0; | |
6139 | t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (type, i), name, | |
6140 | 0, 1, &disp); | |
6141 | if (t != NULL) | |
6142 | { | |
6143 | if (dispp != NULL) | |
6144 | *dispp += disp + TYPE_FIELD_BITPOS (type, i) / 8; | |
6145 | return t; | |
6146 | } | |
6147 | } | |
14f9c5c9 AS |
6148 | |
6149 | else if (ada_is_variant_part (type, i)) | |
4c4b4cd2 PH |
6150 | { |
6151 | int j; | |
61ee279c | 6152 | struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i)); |
4c4b4cd2 PH |
6153 | |
6154 | for (j = TYPE_NFIELDS (field_type) - 1; j >= 0; j -= 1) | |
6155 | { | |
6156 | disp = 0; | |
6157 | t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (field_type, j), | |
6158 | name, 0, 1, &disp); | |
6159 | if (t != NULL) | |
6160 | { | |
6161 | if (dispp != NULL) | |
6162 | *dispp += disp + TYPE_FIELD_BITPOS (type, i) / 8; | |
6163 | return t; | |
6164 | } | |
6165 | } | |
6166 | } | |
14f9c5c9 AS |
6167 | |
6168 | } | |
6169 | ||
6170 | BadName: | |
d2e4a39e | 6171 | if (!noerr) |
14f9c5c9 AS |
6172 | { |
6173 | target_terminal_ours (); | |
6174 | gdb_flush (gdb_stdout); | |
323e0a4a AC |
6175 | if (name == NULL) |
6176 | { | |
6177 | /* XXX: type_sprint */ | |
6178 | fprintf_unfiltered (gdb_stderr, _("Type ")); | |
6179 | type_print (type, "", gdb_stderr, -1); | |
6180 | error (_(" has no component named <null>")); | |
6181 | } | |
6182 | else | |
6183 | { | |
6184 | /* XXX: type_sprint */ | |
6185 | fprintf_unfiltered (gdb_stderr, _("Type ")); | |
6186 | type_print (type, "", gdb_stderr, -1); | |
6187 | error (_(" has no component named %s"), name); | |
6188 | } | |
14f9c5c9 AS |
6189 | } |
6190 | ||
6191 | return NULL; | |
6192 | } | |
6193 | ||
6194 | /* Assuming that VAR_TYPE is the type of a variant part of a record (a union), | |
6195 | within a value of type OUTER_TYPE that is stored in GDB at | |
4c4b4cd2 PH |
6196 | OUTER_VALADDR, determine which variant clause (field number in VAR_TYPE, |
6197 | numbering from 0) is applicable. Returns -1 if none are. */ | |
14f9c5c9 | 6198 | |
d2e4a39e | 6199 | int |
ebf56fd3 | 6200 | ada_which_variant_applies (struct type *var_type, struct type *outer_type, |
fc1a4b47 | 6201 | const gdb_byte *outer_valaddr) |
14f9c5c9 AS |
6202 | { |
6203 | int others_clause; | |
6204 | int i; | |
6205 | int disp; | |
d2e4a39e AS |
6206 | struct type *discrim_type; |
6207 | char *discrim_name = ada_variant_discrim_name (var_type); | |
14f9c5c9 AS |
6208 | LONGEST discrim_val; |
6209 | ||
6210 | disp = 0; | |
d2e4a39e | 6211 | discrim_type = |
4c4b4cd2 | 6212 | ada_lookup_struct_elt_type (outer_type, discrim_name, 1, 1, &disp); |
14f9c5c9 AS |
6213 | if (discrim_type == NULL) |
6214 | return -1; | |
6215 | discrim_val = unpack_long (discrim_type, outer_valaddr + disp); | |
6216 | ||
6217 | others_clause = -1; | |
6218 | for (i = 0; i < TYPE_NFIELDS (var_type); i += 1) | |
6219 | { | |
6220 | if (ada_is_others_clause (var_type, i)) | |
4c4b4cd2 | 6221 | others_clause = i; |
14f9c5c9 | 6222 | else if (ada_in_variant (discrim_val, var_type, i)) |
4c4b4cd2 | 6223 | return i; |
14f9c5c9 AS |
6224 | } |
6225 | ||
6226 | return others_clause; | |
6227 | } | |
d2e4a39e | 6228 | \f |
14f9c5c9 AS |
6229 | |
6230 | ||
4c4b4cd2 | 6231 | /* Dynamic-Sized Records */ |
14f9c5c9 AS |
6232 | |
6233 | /* Strategy: The type ostensibly attached to a value with dynamic size | |
6234 | (i.e., a size that is not statically recorded in the debugging | |
6235 | data) does not accurately reflect the size or layout of the value. | |
6236 | Our strategy is to convert these values to values with accurate, | |
4c4b4cd2 | 6237 | conventional types that are constructed on the fly. */ |
14f9c5c9 AS |
6238 | |
6239 | /* There is a subtle and tricky problem here. In general, we cannot | |
6240 | determine the size of dynamic records without its data. However, | |
6241 | the 'struct value' data structure, which GDB uses to represent | |
6242 | quantities in the inferior process (the target), requires the size | |
6243 | of the type at the time of its allocation in order to reserve space | |
6244 | for GDB's internal copy of the data. That's why the | |
6245 | 'to_fixed_xxx_type' routines take (target) addresses as parameters, | |
4c4b4cd2 | 6246 | rather than struct value*s. |
14f9c5c9 AS |
6247 | |
6248 | However, GDB's internal history variables ($1, $2, etc.) are | |
6249 | struct value*s containing internal copies of the data that are not, in | |
6250 | general, the same as the data at their corresponding addresses in | |
6251 | the target. Fortunately, the types we give to these values are all | |
6252 | conventional, fixed-size types (as per the strategy described | |
6253 | above), so that we don't usually have to perform the | |
6254 | 'to_fixed_xxx_type' conversions to look at their values. | |
6255 | Unfortunately, there is one exception: if one of the internal | |
6256 | history variables is an array whose elements are unconstrained | |
6257 | records, then we will need to create distinct fixed types for each | |
6258 | element selected. */ | |
6259 | ||
6260 | /* The upshot of all of this is that many routines take a (type, host | |
6261 | address, target address) triple as arguments to represent a value. | |
6262 | The host address, if non-null, is supposed to contain an internal | |
6263 | copy of the relevant data; otherwise, the program is to consult the | |
4c4b4cd2 | 6264 | target at the target address. */ |
14f9c5c9 AS |
6265 | |
6266 | /* Assuming that VAL0 represents a pointer value, the result of | |
6267 | dereferencing it. Differs from value_ind in its treatment of | |
4c4b4cd2 | 6268 | dynamic-sized types. */ |
14f9c5c9 | 6269 | |
d2e4a39e AS |
6270 | struct value * |
6271 | ada_value_ind (struct value *val0) | |
14f9c5c9 | 6272 | { |
d2e4a39e | 6273 | struct value *val = unwrap_value (value_ind (val0)); |
4c4b4cd2 | 6274 | return ada_to_fixed_value (val); |
14f9c5c9 AS |
6275 | } |
6276 | ||
6277 | /* The value resulting from dereferencing any "reference to" | |
4c4b4cd2 PH |
6278 | qualifiers on VAL0. */ |
6279 | ||
d2e4a39e AS |
6280 | static struct value * |
6281 | ada_coerce_ref (struct value *val0) | |
6282 | { | |
df407dfe | 6283 | if (TYPE_CODE (value_type (val0)) == TYPE_CODE_REF) |
d2e4a39e AS |
6284 | { |
6285 | struct value *val = val0; | |
994b9211 | 6286 | val = coerce_ref (val); |
d2e4a39e | 6287 | val = unwrap_value (val); |
4c4b4cd2 | 6288 | return ada_to_fixed_value (val); |
d2e4a39e AS |
6289 | } |
6290 | else | |
14f9c5c9 AS |
6291 | return val0; |
6292 | } | |
6293 | ||
6294 | /* Return OFF rounded upward if necessary to a multiple of | |
4c4b4cd2 | 6295 | ALIGNMENT (a power of 2). */ |
14f9c5c9 AS |
6296 | |
6297 | static unsigned int | |
ebf56fd3 | 6298 | align_value (unsigned int off, unsigned int alignment) |
14f9c5c9 AS |
6299 | { |
6300 | return (off + alignment - 1) & ~(alignment - 1); | |
6301 | } | |
6302 | ||
4c4b4cd2 | 6303 | /* Return the bit alignment required for field #F of template type TYPE. */ |
14f9c5c9 AS |
6304 | |
6305 | static unsigned int | |
ebf56fd3 | 6306 | field_alignment (struct type *type, int f) |
14f9c5c9 | 6307 | { |
d2e4a39e | 6308 | const char *name = TYPE_FIELD_NAME (type, f); |
64a1bf19 | 6309 | int len; |
14f9c5c9 AS |
6310 | int align_offset; |
6311 | ||
64a1bf19 JB |
6312 | /* The field name should never be null, unless the debugging information |
6313 | is somehow malformed. In this case, we assume the field does not | |
6314 | require any alignment. */ | |
6315 | if (name == NULL) | |
6316 | return 1; | |
6317 | ||
6318 | len = strlen (name); | |
6319 | ||
4c4b4cd2 PH |
6320 | if (!isdigit (name[len - 1])) |
6321 | return 1; | |
14f9c5c9 | 6322 | |
d2e4a39e | 6323 | if (isdigit (name[len - 2])) |
14f9c5c9 AS |
6324 | align_offset = len - 2; |
6325 | else | |
6326 | align_offset = len - 1; | |
6327 | ||
4c4b4cd2 | 6328 | if (align_offset < 7 || strncmp ("___XV", name + align_offset - 6, 5) != 0) |
14f9c5c9 AS |
6329 | return TARGET_CHAR_BIT; |
6330 | ||
4c4b4cd2 PH |
6331 | return atoi (name + align_offset) * TARGET_CHAR_BIT; |
6332 | } | |
6333 | ||
6334 | /* Find a symbol named NAME. Ignores ambiguity. */ | |
6335 | ||
6336 | struct symbol * | |
6337 | ada_find_any_symbol (const char *name) | |
6338 | { | |
6339 | struct symbol *sym; | |
6340 | ||
6341 | sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN); | |
6342 | if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF) | |
6343 | return sym; | |
6344 | ||
6345 | sym = standard_lookup (name, NULL, STRUCT_DOMAIN); | |
6346 | return sym; | |
14f9c5c9 AS |
6347 | } |
6348 | ||
6349 | /* Find a type named NAME. Ignores ambiguity. */ | |
4c4b4cd2 | 6350 | |
d2e4a39e | 6351 | struct type * |
ebf56fd3 | 6352 | ada_find_any_type (const char *name) |
14f9c5c9 | 6353 | { |
4c4b4cd2 | 6354 | struct symbol *sym = ada_find_any_symbol (name); |
14f9c5c9 | 6355 | |
14f9c5c9 AS |
6356 | if (sym != NULL) |
6357 | return SYMBOL_TYPE (sym); | |
6358 | ||
6359 | return NULL; | |
6360 | } | |
6361 | ||
aeb5907d JB |
6362 | /* Given NAME and an associated BLOCK, search all symbols for |
6363 | NAME suffixed with "___XR", which is the ``renaming'' symbol | |
4c4b4cd2 PH |
6364 | associated to NAME. Return this symbol if found, return |
6365 | NULL otherwise. */ | |
6366 | ||
6367 | struct symbol * | |
6368 | ada_find_renaming_symbol (const char *name, struct block *block) | |
aeb5907d JB |
6369 | { |
6370 | struct symbol *sym; | |
6371 | ||
6372 | sym = find_old_style_renaming_symbol (name, block); | |
6373 | ||
6374 | if (sym != NULL) | |
6375 | return sym; | |
6376 | ||
6377 | /* Not right yet. FIXME pnh 7/20/2007. */ | |
6378 | sym = ada_find_any_symbol (name); | |
6379 | if (sym != NULL && strstr (SYMBOL_LINKAGE_NAME (sym), "___XR") != NULL) | |
6380 | return sym; | |
6381 | else | |
6382 | return NULL; | |
6383 | } | |
6384 | ||
6385 | static struct symbol * | |
6386 | find_old_style_renaming_symbol (const char *name, struct block *block) | |
4c4b4cd2 PH |
6387 | { |
6388 | const struct symbol *function_sym = block_function (block); | |
6389 | char *rename; | |
6390 | ||
6391 | if (function_sym != NULL) | |
6392 | { | |
6393 | /* If the symbol is defined inside a function, NAME is not fully | |
6394 | qualified. This means we need to prepend the function name | |
6395 | as well as adding the ``___XR'' suffix to build the name of | |
6396 | the associated renaming symbol. */ | |
6397 | char *function_name = SYMBOL_LINKAGE_NAME (function_sym); | |
529cad9c PH |
6398 | /* Function names sometimes contain suffixes used |
6399 | for instance to qualify nested subprograms. When building | |
6400 | the XR type name, we need to make sure that this suffix is | |
6401 | not included. So do not include any suffix in the function | |
6402 | name length below. */ | |
6403 | const int function_name_len = ada_name_prefix_len (function_name); | |
76a01679 JB |
6404 | const int rename_len = function_name_len + 2 /* "__" */ |
6405 | + strlen (name) + 6 /* "___XR\0" */ ; | |
4c4b4cd2 | 6406 | |
529cad9c PH |
6407 | /* Strip the suffix if necessary. */ |
6408 | function_name[function_name_len] = '\0'; | |
6409 | ||
4c4b4cd2 PH |
6410 | /* Library-level functions are a special case, as GNAT adds |
6411 | a ``_ada_'' prefix to the function name to avoid namespace | |
aeb5907d | 6412 | pollution. However, the renaming symbols themselves do not |
4c4b4cd2 PH |
6413 | have this prefix, so we need to skip this prefix if present. */ |
6414 | if (function_name_len > 5 /* "_ada_" */ | |
6415 | && strstr (function_name, "_ada_") == function_name) | |
6416 | function_name = function_name + 5; | |
6417 | ||
6418 | rename = (char *) alloca (rename_len * sizeof (char)); | |
6419 | sprintf (rename, "%s__%s___XR", function_name, name); | |
6420 | } | |
6421 | else | |
6422 | { | |
6423 | const int rename_len = strlen (name) + 6; | |
6424 | rename = (char *) alloca (rename_len * sizeof (char)); | |
6425 | sprintf (rename, "%s___XR", name); | |
6426 | } | |
6427 | ||
6428 | return ada_find_any_symbol (rename); | |
6429 | } | |
6430 | ||
14f9c5c9 | 6431 | /* Because of GNAT encoding conventions, several GDB symbols may match a |
4c4b4cd2 | 6432 | given type name. If the type denoted by TYPE0 is to be preferred to |
14f9c5c9 | 6433 | that of TYPE1 for purposes of type printing, return non-zero; |
4c4b4cd2 PH |
6434 | otherwise return 0. */ |
6435 | ||
14f9c5c9 | 6436 | int |
d2e4a39e | 6437 | ada_prefer_type (struct type *type0, struct type *type1) |
14f9c5c9 AS |
6438 | { |
6439 | if (type1 == NULL) | |
6440 | return 1; | |
6441 | else if (type0 == NULL) | |
6442 | return 0; | |
6443 | else if (TYPE_CODE (type1) == TYPE_CODE_VOID) | |
6444 | return 1; | |
6445 | else if (TYPE_CODE (type0) == TYPE_CODE_VOID) | |
6446 | return 0; | |
4c4b4cd2 PH |
6447 | else if (TYPE_NAME (type1) == NULL && TYPE_NAME (type0) != NULL) |
6448 | return 1; | |
14f9c5c9 AS |
6449 | else if (ada_is_packed_array_type (type0)) |
6450 | return 1; | |
4c4b4cd2 PH |
6451 | else if (ada_is_array_descriptor_type (type0) |
6452 | && !ada_is_array_descriptor_type (type1)) | |
14f9c5c9 | 6453 | return 1; |
aeb5907d JB |
6454 | else |
6455 | { | |
6456 | const char *type0_name = type_name_no_tag (type0); | |
6457 | const char *type1_name = type_name_no_tag (type1); | |
6458 | ||
6459 | if (type0_name != NULL && strstr (type0_name, "___XR") != NULL | |
6460 | && (type1_name == NULL || strstr (type1_name, "___XR") == NULL)) | |
6461 | return 1; | |
6462 | } | |
14f9c5c9 AS |
6463 | return 0; |
6464 | } | |
6465 | ||
6466 | /* The name of TYPE, which is either its TYPE_NAME, or, if that is | |
4c4b4cd2 PH |
6467 | null, its TYPE_TAG_NAME. Null if TYPE is null. */ |
6468 | ||
d2e4a39e AS |
6469 | char * |
6470 | ada_type_name (struct type *type) | |
14f9c5c9 | 6471 | { |
d2e4a39e | 6472 | if (type == NULL) |
14f9c5c9 AS |
6473 | return NULL; |
6474 | else if (TYPE_NAME (type) != NULL) | |
6475 | return TYPE_NAME (type); | |
6476 | else | |
6477 | return TYPE_TAG_NAME (type); | |
6478 | } | |
6479 | ||
6480 | /* Find a parallel type to TYPE whose name is formed by appending | |
4c4b4cd2 | 6481 | SUFFIX to the name of TYPE. */ |
14f9c5c9 | 6482 | |
d2e4a39e | 6483 | struct type * |
ebf56fd3 | 6484 | ada_find_parallel_type (struct type *type, const char *suffix) |
14f9c5c9 | 6485 | { |
d2e4a39e | 6486 | static char *name; |
14f9c5c9 | 6487 | static size_t name_len = 0; |
14f9c5c9 | 6488 | int len; |
d2e4a39e AS |
6489 | char *typename = ada_type_name (type); |
6490 | ||
14f9c5c9 AS |
6491 | if (typename == NULL) |
6492 | return NULL; | |
6493 | ||
6494 | len = strlen (typename); | |
6495 | ||
d2e4a39e | 6496 | GROW_VECT (name, name_len, len + strlen (suffix) + 1); |
14f9c5c9 AS |
6497 | |
6498 | strcpy (name, typename); | |
6499 | strcpy (name + len, suffix); | |
6500 | ||
6501 | return ada_find_any_type (name); | |
6502 | } | |
6503 | ||
6504 | ||
6505 | /* If TYPE is a variable-size record type, return the corresponding template | |
4c4b4cd2 | 6506 | type describing its fields. Otherwise, return NULL. */ |
14f9c5c9 | 6507 | |
d2e4a39e AS |
6508 | static struct type * |
6509 | dynamic_template_type (struct type *type) | |
14f9c5c9 | 6510 | { |
61ee279c | 6511 | type = ada_check_typedef (type); |
14f9c5c9 AS |
6512 | |
6513 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT | |
d2e4a39e | 6514 | || ada_type_name (type) == NULL) |
14f9c5c9 | 6515 | return NULL; |
d2e4a39e | 6516 | else |
14f9c5c9 AS |
6517 | { |
6518 | int len = strlen (ada_type_name (type)); | |
4c4b4cd2 PH |
6519 | if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0) |
6520 | return type; | |
14f9c5c9 | 6521 | else |
4c4b4cd2 | 6522 | return ada_find_parallel_type (type, "___XVE"); |
14f9c5c9 AS |
6523 | } |
6524 | } | |
6525 | ||
6526 | /* Assuming that TEMPL_TYPE is a union or struct type, returns | |
4c4b4cd2 | 6527 | non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */ |
14f9c5c9 | 6528 | |
d2e4a39e AS |
6529 | static int |
6530 | is_dynamic_field (struct type *templ_type, int field_num) | |
14f9c5c9 AS |
6531 | { |
6532 | const char *name = TYPE_FIELD_NAME (templ_type, field_num); | |
d2e4a39e | 6533 | return name != NULL |
14f9c5c9 AS |
6534 | && TYPE_CODE (TYPE_FIELD_TYPE (templ_type, field_num)) == TYPE_CODE_PTR |
6535 | && strstr (name, "___XVL") != NULL; | |
6536 | } | |
6537 | ||
4c4b4cd2 PH |
6538 | /* The index of the variant field of TYPE, or -1 if TYPE does not |
6539 | represent a variant record type. */ | |
14f9c5c9 | 6540 | |
d2e4a39e | 6541 | static int |
4c4b4cd2 | 6542 | variant_field_index (struct type *type) |
14f9c5c9 AS |
6543 | { |
6544 | int f; | |
6545 | ||
4c4b4cd2 PH |
6546 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT) |
6547 | return -1; | |
6548 | ||
6549 | for (f = 0; f < TYPE_NFIELDS (type); f += 1) | |
6550 | { | |
6551 | if (ada_is_variant_part (type, f)) | |
6552 | return f; | |
6553 | } | |
6554 | return -1; | |
14f9c5c9 AS |
6555 | } |
6556 | ||
4c4b4cd2 PH |
6557 | /* A record type with no fields. */ |
6558 | ||
d2e4a39e AS |
6559 | static struct type * |
6560 | empty_record (struct objfile *objfile) | |
14f9c5c9 | 6561 | { |
d2e4a39e | 6562 | struct type *type = alloc_type (objfile); |
14f9c5c9 AS |
6563 | TYPE_CODE (type) = TYPE_CODE_STRUCT; |
6564 | TYPE_NFIELDS (type) = 0; | |
6565 | TYPE_FIELDS (type) = NULL; | |
6566 | TYPE_NAME (type) = "<empty>"; | |
6567 | TYPE_TAG_NAME (type) = NULL; | |
6568 | TYPE_FLAGS (type) = 0; | |
6569 | TYPE_LENGTH (type) = 0; | |
6570 | return type; | |
6571 | } | |
6572 | ||
6573 | /* An ordinary record type (with fixed-length fields) that describes | |
4c4b4cd2 PH |
6574 | the value of type TYPE at VALADDR or ADDRESS (see comments at |
6575 | the beginning of this section) VAL according to GNAT conventions. | |
6576 | DVAL0 should describe the (portion of a) record that contains any | |
df407dfe | 6577 | necessary discriminants. It should be NULL if value_type (VAL) is |
14f9c5c9 AS |
6578 | an outer-level type (i.e., as opposed to a branch of a variant.) A |
6579 | variant field (unless unchecked) is replaced by a particular branch | |
4c4b4cd2 | 6580 | of the variant. |
14f9c5c9 | 6581 | |
4c4b4cd2 PH |
6582 | If not KEEP_DYNAMIC_FIELDS, then all fields whose position or |
6583 | length are not statically known are discarded. As a consequence, | |
6584 | VALADDR, ADDRESS and DVAL0 are ignored. | |
6585 | ||
6586 | NOTE: Limitations: For now, we assume that dynamic fields and | |
6587 | variants occupy whole numbers of bytes. However, they need not be | |
6588 | byte-aligned. */ | |
6589 | ||
6590 | struct type * | |
10a2c479 | 6591 | ada_template_to_fixed_record_type_1 (struct type *type, |
fc1a4b47 | 6592 | const gdb_byte *valaddr, |
4c4b4cd2 PH |
6593 | CORE_ADDR address, struct value *dval0, |
6594 | int keep_dynamic_fields) | |
14f9c5c9 | 6595 | { |
d2e4a39e AS |
6596 | struct value *mark = value_mark (); |
6597 | struct value *dval; | |
6598 | struct type *rtype; | |
14f9c5c9 | 6599 | int nfields, bit_len; |
4c4b4cd2 | 6600 | int variant_field; |
14f9c5c9 | 6601 | long off; |
4c4b4cd2 | 6602 | int fld_bit_len, bit_incr; |
14f9c5c9 AS |
6603 | int f; |
6604 | ||
4c4b4cd2 PH |
6605 | /* Compute the number of fields in this record type that are going |
6606 | to be processed: unless keep_dynamic_fields, this includes only | |
6607 | fields whose position and length are static will be processed. */ | |
6608 | if (keep_dynamic_fields) | |
6609 | nfields = TYPE_NFIELDS (type); | |
6610 | else | |
6611 | { | |
6612 | nfields = 0; | |
76a01679 | 6613 | while (nfields < TYPE_NFIELDS (type) |
4c4b4cd2 PH |
6614 | && !ada_is_variant_part (type, nfields) |
6615 | && !is_dynamic_field (type, nfields)) | |
6616 | nfields++; | |
6617 | } | |
6618 | ||
14f9c5c9 AS |
6619 | rtype = alloc_type (TYPE_OBJFILE (type)); |
6620 | TYPE_CODE (rtype) = TYPE_CODE_STRUCT; | |
6621 | INIT_CPLUS_SPECIFIC (rtype); | |
6622 | TYPE_NFIELDS (rtype) = nfields; | |
d2e4a39e | 6623 | TYPE_FIELDS (rtype) = (struct field *) |
14f9c5c9 AS |
6624 | TYPE_ALLOC (rtype, nfields * sizeof (struct field)); |
6625 | memset (TYPE_FIELDS (rtype), 0, sizeof (struct field) * nfields); | |
6626 | TYPE_NAME (rtype) = ada_type_name (type); | |
6627 | TYPE_TAG_NAME (rtype) = NULL; | |
4c4b4cd2 | 6628 | TYPE_FLAGS (rtype) |= TYPE_FLAG_FIXED_INSTANCE; |
14f9c5c9 | 6629 | |
d2e4a39e AS |
6630 | off = 0; |
6631 | bit_len = 0; | |
4c4b4cd2 PH |
6632 | variant_field = -1; |
6633 | ||
14f9c5c9 AS |
6634 | for (f = 0; f < nfields; f += 1) |
6635 | { | |
6c038f32 PH |
6636 | off = align_value (off, field_alignment (type, f)) |
6637 | + TYPE_FIELD_BITPOS (type, f); | |
14f9c5c9 | 6638 | TYPE_FIELD_BITPOS (rtype, f) = off; |
d2e4a39e | 6639 | TYPE_FIELD_BITSIZE (rtype, f) = 0; |
14f9c5c9 | 6640 | |
d2e4a39e | 6641 | if (ada_is_variant_part (type, f)) |
4c4b4cd2 PH |
6642 | { |
6643 | variant_field = f; | |
6644 | fld_bit_len = bit_incr = 0; | |
6645 | } | |
14f9c5c9 | 6646 | else if (is_dynamic_field (type, f)) |
4c4b4cd2 PH |
6647 | { |
6648 | if (dval0 == NULL) | |
6649 | dval = value_from_contents_and_address (rtype, valaddr, address); | |
6650 | else | |
6651 | dval = dval0; | |
6652 | ||
6653 | TYPE_FIELD_TYPE (rtype, f) = | |
6654 | ada_to_fixed_type | |
6655 | (ada_get_base_type | |
6656 | (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, f))), | |
6657 | cond_offset_host (valaddr, off / TARGET_CHAR_BIT), | |
6658 | cond_offset_target (address, off / TARGET_CHAR_BIT), dval); | |
6659 | TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f); | |
6660 | bit_incr = fld_bit_len = | |
6661 | TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, f)) * TARGET_CHAR_BIT; | |
6662 | } | |
14f9c5c9 | 6663 | else |
4c4b4cd2 PH |
6664 | { |
6665 | TYPE_FIELD_TYPE (rtype, f) = TYPE_FIELD_TYPE (type, f); | |
6666 | TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f); | |
6667 | if (TYPE_FIELD_BITSIZE (type, f) > 0) | |
6668 | bit_incr = fld_bit_len = | |
6669 | TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f); | |
6670 | else | |
6671 | bit_incr = fld_bit_len = | |
6672 | TYPE_LENGTH (TYPE_FIELD_TYPE (type, f)) * TARGET_CHAR_BIT; | |
6673 | } | |
14f9c5c9 | 6674 | if (off + fld_bit_len > bit_len) |
4c4b4cd2 | 6675 | bit_len = off + fld_bit_len; |
14f9c5c9 | 6676 | off += bit_incr; |
4c4b4cd2 PH |
6677 | TYPE_LENGTH (rtype) = |
6678 | align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT; | |
14f9c5c9 | 6679 | } |
4c4b4cd2 PH |
6680 | |
6681 | /* We handle the variant part, if any, at the end because of certain | |
6682 | odd cases in which it is re-ordered so as NOT the last field of | |
6683 | the record. This can happen in the presence of representation | |
6684 | clauses. */ | |
6685 | if (variant_field >= 0) | |
6686 | { | |
6687 | struct type *branch_type; | |
6688 | ||
6689 | off = TYPE_FIELD_BITPOS (rtype, variant_field); | |
6690 | ||
6691 | if (dval0 == NULL) | |
6692 | dval = value_from_contents_and_address (rtype, valaddr, address); | |
6693 | else | |
6694 | dval = dval0; | |
6695 | ||
6696 | branch_type = | |
6697 | to_fixed_variant_branch_type | |
6698 | (TYPE_FIELD_TYPE (type, variant_field), | |
6699 | cond_offset_host (valaddr, off / TARGET_CHAR_BIT), | |
6700 | cond_offset_target (address, off / TARGET_CHAR_BIT), dval); | |
6701 | if (branch_type == NULL) | |
6702 | { | |
6703 | for (f = variant_field + 1; f < TYPE_NFIELDS (rtype); f += 1) | |
6704 | TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f]; | |
6705 | TYPE_NFIELDS (rtype) -= 1; | |
6706 | } | |
6707 | else | |
6708 | { | |
6709 | TYPE_FIELD_TYPE (rtype, variant_field) = branch_type; | |
6710 | TYPE_FIELD_NAME (rtype, variant_field) = "S"; | |
6711 | fld_bit_len = | |
6712 | TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, variant_field)) * | |
6713 | TARGET_CHAR_BIT; | |
6714 | if (off + fld_bit_len > bit_len) | |
6715 | bit_len = off + fld_bit_len; | |
6716 | TYPE_LENGTH (rtype) = | |
6717 | align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT; | |
6718 | } | |
6719 | } | |
6720 | ||
714e53ab PH |
6721 | /* According to exp_dbug.ads, the size of TYPE for variable-size records |
6722 | should contain the alignment of that record, which should be a strictly | |
6723 | positive value. If null or negative, then something is wrong, most | |
6724 | probably in the debug info. In that case, we don't round up the size | |
6725 | of the resulting type. If this record is not part of another structure, | |
6726 | the current RTYPE length might be good enough for our purposes. */ | |
6727 | if (TYPE_LENGTH (type) <= 0) | |
6728 | { | |
323e0a4a AC |
6729 | if (TYPE_NAME (rtype)) |
6730 | warning (_("Invalid type size for `%s' detected: %d."), | |
6731 | TYPE_NAME (rtype), TYPE_LENGTH (type)); | |
6732 | else | |
6733 | warning (_("Invalid type size for <unnamed> detected: %d."), | |
6734 | TYPE_LENGTH (type)); | |
714e53ab PH |
6735 | } |
6736 | else | |
6737 | { | |
6738 | TYPE_LENGTH (rtype) = align_value (TYPE_LENGTH (rtype), | |
6739 | TYPE_LENGTH (type)); | |
6740 | } | |
14f9c5c9 AS |
6741 | |
6742 | value_free_to_mark (mark); | |
d2e4a39e | 6743 | if (TYPE_LENGTH (rtype) > varsize_limit) |
323e0a4a | 6744 | error (_("record type with dynamic size is larger than varsize-limit")); |
14f9c5c9 AS |
6745 | return rtype; |
6746 | } | |
6747 | ||
4c4b4cd2 PH |
6748 | /* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS |
6749 | of 1. */ | |
14f9c5c9 | 6750 | |
d2e4a39e | 6751 | static struct type * |
fc1a4b47 | 6752 | template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr, |
4c4b4cd2 PH |
6753 | CORE_ADDR address, struct value *dval0) |
6754 | { | |
6755 | return ada_template_to_fixed_record_type_1 (type, valaddr, | |
6756 | address, dval0, 1); | |
6757 | } | |
6758 | ||
6759 | /* An ordinary record type in which ___XVL-convention fields and | |
6760 | ___XVU- and ___XVN-convention field types in TYPE0 are replaced with | |
6761 | static approximations, containing all possible fields. Uses | |
6762 | no runtime values. Useless for use in values, but that's OK, | |
6763 | since the results are used only for type determinations. Works on both | |
6764 | structs and unions. Representation note: to save space, we memorize | |
6765 | the result of this function in the TYPE_TARGET_TYPE of the | |
6766 | template type. */ | |
6767 | ||
6768 | static struct type * | |
6769 | template_to_static_fixed_type (struct type *type0) | |
14f9c5c9 AS |
6770 | { |
6771 | struct type *type; | |
6772 | int nfields; | |
6773 | int f; | |
6774 | ||
4c4b4cd2 PH |
6775 | if (TYPE_TARGET_TYPE (type0) != NULL) |
6776 | return TYPE_TARGET_TYPE (type0); | |
6777 | ||
6778 | nfields = TYPE_NFIELDS (type0); | |
6779 | type = type0; | |
14f9c5c9 AS |
6780 | |
6781 | for (f = 0; f < nfields; f += 1) | |
6782 | { | |
61ee279c | 6783 | struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type0, f)); |
4c4b4cd2 | 6784 | struct type *new_type; |
14f9c5c9 | 6785 | |
4c4b4cd2 PH |
6786 | if (is_dynamic_field (type0, f)) |
6787 | new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type)); | |
14f9c5c9 | 6788 | else |
4c4b4cd2 PH |
6789 | new_type = to_static_fixed_type (field_type); |
6790 | if (type == type0 && new_type != field_type) | |
6791 | { | |
6792 | TYPE_TARGET_TYPE (type0) = type = alloc_type (TYPE_OBJFILE (type0)); | |
6793 | TYPE_CODE (type) = TYPE_CODE (type0); | |
6794 | INIT_CPLUS_SPECIFIC (type); | |
6795 | TYPE_NFIELDS (type) = nfields; | |
6796 | TYPE_FIELDS (type) = (struct field *) | |
6797 | TYPE_ALLOC (type, nfields * sizeof (struct field)); | |
6798 | memcpy (TYPE_FIELDS (type), TYPE_FIELDS (type0), | |
6799 | sizeof (struct field) * nfields); | |
6800 | TYPE_NAME (type) = ada_type_name (type0); | |
6801 | TYPE_TAG_NAME (type) = NULL; | |
6802 | TYPE_FLAGS (type) |= TYPE_FLAG_FIXED_INSTANCE; | |
6803 | TYPE_LENGTH (type) = 0; | |
6804 | } | |
6805 | TYPE_FIELD_TYPE (type, f) = new_type; | |
6806 | TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f); | |
14f9c5c9 | 6807 | } |
14f9c5c9 AS |
6808 | return type; |
6809 | } | |
6810 | ||
4c4b4cd2 PH |
6811 | /* Given an object of type TYPE whose contents are at VALADDR and |
6812 | whose address in memory is ADDRESS, returns a revision of TYPE -- | |
6813 | a non-dynamic-sized record with a variant part -- in which | |
6814 | the variant part is replaced with the appropriate branch. Looks | |
6815 | for discriminant values in DVAL0, which can be NULL if the record | |
6816 | contains the necessary discriminant values. */ | |
6817 | ||
d2e4a39e | 6818 | static struct type * |
fc1a4b47 | 6819 | to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr, |
4c4b4cd2 | 6820 | CORE_ADDR address, struct value *dval0) |
14f9c5c9 | 6821 | { |
d2e4a39e | 6822 | struct value *mark = value_mark (); |
4c4b4cd2 | 6823 | struct value *dval; |
d2e4a39e | 6824 | struct type *rtype; |
14f9c5c9 AS |
6825 | struct type *branch_type; |
6826 | int nfields = TYPE_NFIELDS (type); | |
4c4b4cd2 | 6827 | int variant_field = variant_field_index (type); |
14f9c5c9 | 6828 | |
4c4b4cd2 | 6829 | if (variant_field == -1) |
14f9c5c9 AS |
6830 | return type; |
6831 | ||
4c4b4cd2 PH |
6832 | if (dval0 == NULL) |
6833 | dval = value_from_contents_and_address (type, valaddr, address); | |
6834 | else | |
6835 | dval = dval0; | |
6836 | ||
14f9c5c9 AS |
6837 | rtype = alloc_type (TYPE_OBJFILE (type)); |
6838 | TYPE_CODE (rtype) = TYPE_CODE_STRUCT; | |
4c4b4cd2 PH |
6839 | INIT_CPLUS_SPECIFIC (rtype); |
6840 | TYPE_NFIELDS (rtype) = nfields; | |
d2e4a39e AS |
6841 | TYPE_FIELDS (rtype) = |
6842 | (struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field)); | |
6843 | memcpy (TYPE_FIELDS (rtype), TYPE_FIELDS (type), | |
4c4b4cd2 | 6844 | sizeof (struct field) * nfields); |
14f9c5c9 AS |
6845 | TYPE_NAME (rtype) = ada_type_name (type); |
6846 | TYPE_TAG_NAME (rtype) = NULL; | |
4c4b4cd2 | 6847 | TYPE_FLAGS (rtype) |= TYPE_FLAG_FIXED_INSTANCE; |
14f9c5c9 AS |
6848 | TYPE_LENGTH (rtype) = TYPE_LENGTH (type); |
6849 | ||
4c4b4cd2 PH |
6850 | branch_type = to_fixed_variant_branch_type |
6851 | (TYPE_FIELD_TYPE (type, variant_field), | |
d2e4a39e | 6852 | cond_offset_host (valaddr, |
4c4b4cd2 PH |
6853 | TYPE_FIELD_BITPOS (type, variant_field) |
6854 | / TARGET_CHAR_BIT), | |
d2e4a39e | 6855 | cond_offset_target (address, |
4c4b4cd2 PH |
6856 | TYPE_FIELD_BITPOS (type, variant_field) |
6857 | / TARGET_CHAR_BIT), dval); | |
d2e4a39e | 6858 | if (branch_type == NULL) |
14f9c5c9 | 6859 | { |
4c4b4cd2 PH |
6860 | int f; |
6861 | for (f = variant_field + 1; f < nfields; f += 1) | |
6862 | TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f]; | |
14f9c5c9 | 6863 | TYPE_NFIELDS (rtype) -= 1; |
14f9c5c9 AS |
6864 | } |
6865 | else | |
6866 | { | |
4c4b4cd2 PH |
6867 | TYPE_FIELD_TYPE (rtype, variant_field) = branch_type; |
6868 | TYPE_FIELD_NAME (rtype, variant_field) = "S"; | |
6869 | TYPE_FIELD_BITSIZE (rtype, variant_field) = 0; | |
14f9c5c9 | 6870 | TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type); |
14f9c5c9 | 6871 | } |
4c4b4cd2 | 6872 | TYPE_LENGTH (rtype) -= TYPE_LENGTH (TYPE_FIELD_TYPE (type, variant_field)); |
d2e4a39e | 6873 | |
4c4b4cd2 | 6874 | value_free_to_mark (mark); |
14f9c5c9 AS |
6875 | return rtype; |
6876 | } | |
6877 | ||
6878 | /* An ordinary record type (with fixed-length fields) that describes | |
6879 | the value at (TYPE0, VALADDR, ADDRESS) [see explanation at | |
6880 | beginning of this section]. Any necessary discriminants' values | |
4c4b4cd2 PH |
6881 | should be in DVAL, a record value; it may be NULL if the object |
6882 | at ADDR itself contains any necessary discriminant values. | |
6883 | Additionally, VALADDR and ADDRESS may also be NULL if no discriminant | |
6884 | values from the record are needed. Except in the case that DVAL, | |
6885 | VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless | |
6886 | unchecked) is replaced by a particular branch of the variant. | |
6887 | ||
6888 | NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0 | |
6889 | is questionable and may be removed. It can arise during the | |
6890 | processing of an unconstrained-array-of-record type where all the | |
6891 | variant branches have exactly the same size. This is because in | |
6892 | such cases, the compiler does not bother to use the XVS convention | |
6893 | when encoding the record. I am currently dubious of this | |
6894 | shortcut and suspect the compiler should be altered. FIXME. */ | |
14f9c5c9 | 6895 | |
d2e4a39e | 6896 | static struct type * |
fc1a4b47 | 6897 | to_fixed_record_type (struct type *type0, const gdb_byte *valaddr, |
4c4b4cd2 | 6898 | CORE_ADDR address, struct value *dval) |
14f9c5c9 | 6899 | { |
d2e4a39e | 6900 | struct type *templ_type; |
14f9c5c9 | 6901 | |
4c4b4cd2 PH |
6902 | if (TYPE_FLAGS (type0) & TYPE_FLAG_FIXED_INSTANCE) |
6903 | return type0; | |
6904 | ||
d2e4a39e | 6905 | templ_type = dynamic_template_type (type0); |
14f9c5c9 AS |
6906 | |
6907 | if (templ_type != NULL) | |
6908 | return template_to_fixed_record_type (templ_type, valaddr, address, dval); | |
4c4b4cd2 PH |
6909 | else if (variant_field_index (type0) >= 0) |
6910 | { | |
6911 | if (dval == NULL && valaddr == NULL && address == 0) | |
6912 | return type0; | |
6913 | return to_record_with_fixed_variant_part (type0, valaddr, address, | |
6914 | dval); | |
6915 | } | |
14f9c5c9 AS |
6916 | else |
6917 | { | |
4c4b4cd2 | 6918 | TYPE_FLAGS (type0) |= TYPE_FLAG_FIXED_INSTANCE; |
14f9c5c9 AS |
6919 | return type0; |
6920 | } | |
6921 | ||
6922 | } | |
6923 | ||
6924 | /* An ordinary record type (with fixed-length fields) that describes | |
6925 | the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a | |
6926 | union type. Any necessary discriminants' values should be in DVAL, | |
6927 | a record value. That is, this routine selects the appropriate | |
6928 | branch of the union at ADDR according to the discriminant value | |
4c4b4cd2 | 6929 | indicated in the union's type name. */ |
14f9c5c9 | 6930 | |
d2e4a39e | 6931 | static struct type * |
fc1a4b47 | 6932 | to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr, |
4c4b4cd2 | 6933 | CORE_ADDR address, struct value *dval) |
14f9c5c9 AS |
6934 | { |
6935 | int which; | |
d2e4a39e AS |
6936 | struct type *templ_type; |
6937 | struct type *var_type; | |
14f9c5c9 AS |
6938 | |
6939 | if (TYPE_CODE (var_type0) == TYPE_CODE_PTR) | |
6940 | var_type = TYPE_TARGET_TYPE (var_type0); | |
d2e4a39e | 6941 | else |
14f9c5c9 AS |
6942 | var_type = var_type0; |
6943 | ||
6944 | templ_type = ada_find_parallel_type (var_type, "___XVU"); | |
6945 | ||
6946 | if (templ_type != NULL) | |
6947 | var_type = templ_type; | |
6948 | ||
d2e4a39e AS |
6949 | which = |
6950 | ada_which_variant_applies (var_type, | |
0fd88904 | 6951 | value_type (dval), value_contents (dval)); |
14f9c5c9 AS |
6952 | |
6953 | if (which < 0) | |
6954 | return empty_record (TYPE_OBJFILE (var_type)); | |
6955 | else if (is_dynamic_field (var_type, which)) | |
4c4b4cd2 | 6956 | return to_fixed_record_type |
d2e4a39e AS |
6957 | (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (var_type, which)), |
6958 | valaddr, address, dval); | |
4c4b4cd2 | 6959 | else if (variant_field_index (TYPE_FIELD_TYPE (var_type, which)) >= 0) |
d2e4a39e AS |
6960 | return |
6961 | to_fixed_record_type | |
6962 | (TYPE_FIELD_TYPE (var_type, which), valaddr, address, dval); | |
14f9c5c9 AS |
6963 | else |
6964 | return TYPE_FIELD_TYPE (var_type, which); | |
6965 | } | |
6966 | ||
6967 | /* Assuming that TYPE0 is an array type describing the type of a value | |
6968 | at ADDR, and that DVAL describes a record containing any | |
6969 | discriminants used in TYPE0, returns a type for the value that | |
6970 | contains no dynamic components (that is, no components whose sizes | |
6971 | are determined by run-time quantities). Unless IGNORE_TOO_BIG is | |
6972 | true, gives an error message if the resulting type's size is over | |
4c4b4cd2 | 6973 | varsize_limit. */ |
14f9c5c9 | 6974 | |
d2e4a39e AS |
6975 | static struct type * |
6976 | to_fixed_array_type (struct type *type0, struct value *dval, | |
4c4b4cd2 | 6977 | int ignore_too_big) |
14f9c5c9 | 6978 | { |
d2e4a39e AS |
6979 | struct type *index_type_desc; |
6980 | struct type *result; | |
14f9c5c9 | 6981 | |
4c4b4cd2 PH |
6982 | if (ada_is_packed_array_type (type0) /* revisit? */ |
6983 | || (TYPE_FLAGS (type0) & TYPE_FLAG_FIXED_INSTANCE)) | |
6984 | return type0; | |
14f9c5c9 AS |
6985 | |
6986 | index_type_desc = ada_find_parallel_type (type0, "___XA"); | |
6987 | if (index_type_desc == NULL) | |
6988 | { | |
61ee279c | 6989 | struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0)); |
14f9c5c9 | 6990 | /* NOTE: elt_type---the fixed version of elt_type0---should never |
4c4b4cd2 PH |
6991 | depend on the contents of the array in properly constructed |
6992 | debugging data. */ | |
529cad9c PH |
6993 | /* Create a fixed version of the array element type. |
6994 | We're not providing the address of an element here, | |
e1d5a0d2 | 6995 | and thus the actual object value cannot be inspected to do |
529cad9c PH |
6996 | the conversion. This should not be a problem, since arrays of |
6997 | unconstrained objects are not allowed. In particular, all | |
6998 | the elements of an array of a tagged type should all be of | |
6999 | the same type specified in the debugging info. No need to | |
7000 | consult the object tag. */ | |
d2e4a39e | 7001 | struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval); |
14f9c5c9 AS |
7002 | |
7003 | if (elt_type0 == elt_type) | |
4c4b4cd2 | 7004 | result = type0; |
14f9c5c9 | 7005 | else |
4c4b4cd2 PH |
7006 | result = create_array_type (alloc_type (TYPE_OBJFILE (type0)), |
7007 | elt_type, TYPE_INDEX_TYPE (type0)); | |
14f9c5c9 AS |
7008 | } |
7009 | else | |
7010 | { | |
7011 | int i; | |
7012 | struct type *elt_type0; | |
7013 | ||
7014 | elt_type0 = type0; | |
7015 | for (i = TYPE_NFIELDS (index_type_desc); i > 0; i -= 1) | |
4c4b4cd2 | 7016 | elt_type0 = TYPE_TARGET_TYPE (elt_type0); |
14f9c5c9 AS |
7017 | |
7018 | /* NOTE: result---the fixed version of elt_type0---should never | |
4c4b4cd2 PH |
7019 | depend on the contents of the array in properly constructed |
7020 | debugging data. */ | |
529cad9c PH |
7021 | /* Create a fixed version of the array element type. |
7022 | We're not providing the address of an element here, | |
e1d5a0d2 | 7023 | and thus the actual object value cannot be inspected to do |
529cad9c PH |
7024 | the conversion. This should not be a problem, since arrays of |
7025 | unconstrained objects are not allowed. In particular, all | |
7026 | the elements of an array of a tagged type should all be of | |
7027 | the same type specified in the debugging info. No need to | |
7028 | consult the object tag. */ | |
61ee279c | 7029 | result = ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval); |
14f9c5c9 | 7030 | for (i = TYPE_NFIELDS (index_type_desc) - 1; i >= 0; i -= 1) |
4c4b4cd2 PH |
7031 | { |
7032 | struct type *range_type = | |
7033 | to_fixed_range_type (TYPE_FIELD_NAME (index_type_desc, i), | |
7034 | dval, TYPE_OBJFILE (type0)); | |
7035 | result = create_array_type (alloc_type (TYPE_OBJFILE (type0)), | |
7036 | result, range_type); | |
7037 | } | |
d2e4a39e | 7038 | if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit) |
323e0a4a | 7039 | error (_("array type with dynamic size is larger than varsize-limit")); |
14f9c5c9 AS |
7040 | } |
7041 | ||
4c4b4cd2 | 7042 | TYPE_FLAGS (result) |= TYPE_FLAG_FIXED_INSTANCE; |
14f9c5c9 | 7043 | return result; |
d2e4a39e | 7044 | } |
14f9c5c9 AS |
7045 | |
7046 | ||
7047 | /* A standard type (containing no dynamically sized components) | |
7048 | corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS) | |
7049 | DVAL describes a record containing any discriminants used in TYPE0, | |
4c4b4cd2 | 7050 | and may be NULL if there are none, or if the object of type TYPE at |
529cad9c PH |
7051 | ADDRESS or in VALADDR contains these discriminants. |
7052 | ||
7053 | In the case of tagged types, this function attempts to locate the object's | |
7054 | tag and use it to compute the actual type. However, when ADDRESS is null, | |
7055 | we cannot use it to determine the location of the tag, and therefore | |
7056 | compute the tagged type's actual type. So we return the tagged type | |
7057 | without consulting the tag. */ | |
7058 | ||
d2e4a39e | 7059 | struct type * |
fc1a4b47 | 7060 | ada_to_fixed_type (struct type *type, const gdb_byte *valaddr, |
4c4b4cd2 | 7061 | CORE_ADDR address, struct value *dval) |
14f9c5c9 | 7062 | { |
61ee279c | 7063 | type = ada_check_typedef (type); |
d2e4a39e AS |
7064 | switch (TYPE_CODE (type)) |
7065 | { | |
7066 | default: | |
14f9c5c9 | 7067 | return type; |
d2e4a39e | 7068 | case TYPE_CODE_STRUCT: |
4c4b4cd2 | 7069 | { |
76a01679 | 7070 | struct type *static_type = to_static_fixed_type (type); |
529cad9c PH |
7071 | |
7072 | /* If STATIC_TYPE is a tagged type and we know the object's address, | |
7073 | then we can determine its tag, and compute the object's actual | |
7074 | type from there. */ | |
7075 | ||
7076 | if (address != 0 && ada_is_tagged_type (static_type, 0)) | |
76a01679 JB |
7077 | { |
7078 | struct type *real_type = | |
7079 | type_from_tag (value_tag_from_contents_and_address (static_type, | |
7080 | valaddr, | |
7081 | address)); | |
7082 | if (real_type != NULL) | |
7083 | type = real_type; | |
7084 | } | |
7085 | return to_fixed_record_type (type, valaddr, address, NULL); | |
4c4b4cd2 | 7086 | } |
d2e4a39e | 7087 | case TYPE_CODE_ARRAY: |
4c4b4cd2 | 7088 | return to_fixed_array_type (type, dval, 1); |
d2e4a39e AS |
7089 | case TYPE_CODE_UNION: |
7090 | if (dval == NULL) | |
4c4b4cd2 | 7091 | return type; |
d2e4a39e | 7092 | else |
4c4b4cd2 | 7093 | return to_fixed_variant_branch_type (type, valaddr, address, dval); |
d2e4a39e | 7094 | } |
14f9c5c9 AS |
7095 | } |
7096 | ||
7097 | /* A standard (static-sized) type corresponding as well as possible to | |
4c4b4cd2 | 7098 | TYPE0, but based on no runtime data. */ |
14f9c5c9 | 7099 | |
d2e4a39e AS |
7100 | static struct type * |
7101 | to_static_fixed_type (struct type *type0) | |
14f9c5c9 | 7102 | { |
d2e4a39e | 7103 | struct type *type; |
14f9c5c9 AS |
7104 | |
7105 | if (type0 == NULL) | |
7106 | return NULL; | |
7107 | ||
4c4b4cd2 PH |
7108 | if (TYPE_FLAGS (type0) & TYPE_FLAG_FIXED_INSTANCE) |
7109 | return type0; | |
7110 | ||
61ee279c | 7111 | type0 = ada_check_typedef (type0); |
d2e4a39e | 7112 | |
14f9c5c9 AS |
7113 | switch (TYPE_CODE (type0)) |
7114 | { | |
7115 | default: | |
7116 | return type0; | |
7117 | case TYPE_CODE_STRUCT: | |
7118 | type = dynamic_template_type (type0); | |
d2e4a39e | 7119 | if (type != NULL) |
4c4b4cd2 PH |
7120 | return template_to_static_fixed_type (type); |
7121 | else | |
7122 | return template_to_static_fixed_type (type0); | |
14f9c5c9 AS |
7123 | case TYPE_CODE_UNION: |
7124 | type = ada_find_parallel_type (type0, "___XVU"); | |
7125 | if (type != NULL) | |
4c4b4cd2 PH |
7126 | return template_to_static_fixed_type (type); |
7127 | else | |
7128 | return template_to_static_fixed_type (type0); | |
14f9c5c9 AS |
7129 | } |
7130 | } | |
7131 | ||
4c4b4cd2 PH |
7132 | /* A static approximation of TYPE with all type wrappers removed. */ |
7133 | ||
d2e4a39e AS |
7134 | static struct type * |
7135 | static_unwrap_type (struct type *type) | |
14f9c5c9 AS |
7136 | { |
7137 | if (ada_is_aligner_type (type)) | |
7138 | { | |
61ee279c | 7139 | struct type *type1 = TYPE_FIELD_TYPE (ada_check_typedef (type), 0); |
14f9c5c9 | 7140 | if (ada_type_name (type1) == NULL) |
4c4b4cd2 | 7141 | TYPE_NAME (type1) = ada_type_name (type); |
14f9c5c9 AS |
7142 | |
7143 | return static_unwrap_type (type1); | |
7144 | } | |
d2e4a39e | 7145 | else |
14f9c5c9 | 7146 | { |
d2e4a39e AS |
7147 | struct type *raw_real_type = ada_get_base_type (type); |
7148 | if (raw_real_type == type) | |
4c4b4cd2 | 7149 | return type; |
14f9c5c9 | 7150 | else |
4c4b4cd2 | 7151 | return to_static_fixed_type (raw_real_type); |
14f9c5c9 AS |
7152 | } |
7153 | } | |
7154 | ||
7155 | /* In some cases, incomplete and private types require | |
4c4b4cd2 | 7156 | cross-references that are not resolved as records (for example, |
14f9c5c9 AS |
7157 | type Foo; |
7158 | type FooP is access Foo; | |
7159 | V: FooP; | |
7160 | type Foo is array ...; | |
4c4b4cd2 | 7161 | ). In these cases, since there is no mechanism for producing |
14f9c5c9 AS |
7162 | cross-references to such types, we instead substitute for FooP a |
7163 | stub enumeration type that is nowhere resolved, and whose tag is | |
4c4b4cd2 | 7164 | the name of the actual type. Call these types "non-record stubs". */ |
14f9c5c9 AS |
7165 | |
7166 | /* A type equivalent to TYPE that is not a non-record stub, if one | |
4c4b4cd2 PH |
7167 | exists, otherwise TYPE. */ |
7168 | ||
d2e4a39e | 7169 | struct type * |
61ee279c | 7170 | ada_check_typedef (struct type *type) |
14f9c5c9 AS |
7171 | { |
7172 | CHECK_TYPEDEF (type); | |
7173 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM | |
529cad9c | 7174 | || !TYPE_STUB (type) |
14f9c5c9 AS |
7175 | || TYPE_TAG_NAME (type) == NULL) |
7176 | return type; | |
d2e4a39e | 7177 | else |
14f9c5c9 | 7178 | { |
d2e4a39e AS |
7179 | char *name = TYPE_TAG_NAME (type); |
7180 | struct type *type1 = ada_find_any_type (name); | |
14f9c5c9 AS |
7181 | return (type1 == NULL) ? type : type1; |
7182 | } | |
7183 | } | |
7184 | ||
7185 | /* A value representing the data at VALADDR/ADDRESS as described by | |
7186 | type TYPE0, but with a standard (static-sized) type that correctly | |
7187 | describes it. If VAL0 is not NULL and TYPE0 already is a standard | |
7188 | type, then return VAL0 [this feature is simply to avoid redundant | |
4c4b4cd2 | 7189 | creation of struct values]. */ |
14f9c5c9 | 7190 | |
4c4b4cd2 PH |
7191 | static struct value * |
7192 | ada_to_fixed_value_create (struct type *type0, CORE_ADDR address, | |
7193 | struct value *val0) | |
14f9c5c9 | 7194 | { |
4c4b4cd2 | 7195 | struct type *type = ada_to_fixed_type (type0, 0, address, NULL); |
14f9c5c9 AS |
7196 | if (type == type0 && val0 != NULL) |
7197 | return val0; | |
d2e4a39e | 7198 | else |
4c4b4cd2 PH |
7199 | return value_from_contents_and_address (type, 0, address); |
7200 | } | |
7201 | ||
7202 | /* A value representing VAL, but with a standard (static-sized) type | |
7203 | that correctly describes it. Does not necessarily create a new | |
7204 | value. */ | |
7205 | ||
7206 | static struct value * | |
7207 | ada_to_fixed_value (struct value *val) | |
7208 | { | |
df407dfe AC |
7209 | return ada_to_fixed_value_create (value_type (val), |
7210 | VALUE_ADDRESS (val) + value_offset (val), | |
4c4b4cd2 | 7211 | val); |
14f9c5c9 AS |
7212 | } |
7213 | ||
4c4b4cd2 | 7214 | /* A value representing VAL, but with a standard (static-sized) type |
14f9c5c9 AS |
7215 | chosen to approximate the real type of VAL as well as possible, but |
7216 | without consulting any runtime values. For Ada dynamic-sized | |
4c4b4cd2 | 7217 | types, therefore, the type of the result is likely to be inaccurate. */ |
14f9c5c9 | 7218 | |
d2e4a39e AS |
7219 | struct value * |
7220 | ada_to_static_fixed_value (struct value *val) | |
14f9c5c9 | 7221 | { |
d2e4a39e | 7222 | struct type *type = |
df407dfe AC |
7223 | to_static_fixed_type (static_unwrap_type (value_type (val))); |
7224 | if (type == value_type (val)) | |
14f9c5c9 AS |
7225 | return val; |
7226 | else | |
4c4b4cd2 | 7227 | return coerce_unspec_val_to_type (val, type); |
14f9c5c9 | 7228 | } |
d2e4a39e | 7229 | \f |
14f9c5c9 | 7230 | |
14f9c5c9 AS |
7231 | /* Attributes */ |
7232 | ||
4c4b4cd2 PH |
7233 | /* Table mapping attribute numbers to names. |
7234 | NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */ | |
14f9c5c9 | 7235 | |
d2e4a39e | 7236 | static const char *attribute_names[] = { |
14f9c5c9 AS |
7237 | "<?>", |
7238 | ||
d2e4a39e | 7239 | "first", |
14f9c5c9 AS |
7240 | "last", |
7241 | "length", | |
7242 | "image", | |
14f9c5c9 AS |
7243 | "max", |
7244 | "min", | |
4c4b4cd2 PH |
7245 | "modulus", |
7246 | "pos", | |
7247 | "size", | |
7248 | "tag", | |
14f9c5c9 | 7249 | "val", |
14f9c5c9 AS |
7250 | 0 |
7251 | }; | |
7252 | ||
d2e4a39e | 7253 | const char * |
4c4b4cd2 | 7254 | ada_attribute_name (enum exp_opcode n) |
14f9c5c9 | 7255 | { |
4c4b4cd2 PH |
7256 | if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL) |
7257 | return attribute_names[n - OP_ATR_FIRST + 1]; | |
14f9c5c9 AS |
7258 | else |
7259 | return attribute_names[0]; | |
7260 | } | |
7261 | ||
4c4b4cd2 | 7262 | /* Evaluate the 'POS attribute applied to ARG. */ |
14f9c5c9 | 7263 | |
4c4b4cd2 PH |
7264 | static LONGEST |
7265 | pos_atr (struct value *arg) | |
14f9c5c9 | 7266 | { |
df407dfe | 7267 | struct type *type = value_type (arg); |
14f9c5c9 | 7268 | |
d2e4a39e | 7269 | if (!discrete_type_p (type)) |
323e0a4a | 7270 | error (_("'POS only defined on discrete types")); |
14f9c5c9 AS |
7271 | |
7272 | if (TYPE_CODE (type) == TYPE_CODE_ENUM) | |
7273 | { | |
7274 | int i; | |
7275 | LONGEST v = value_as_long (arg); | |
7276 | ||
d2e4a39e | 7277 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) |
4c4b4cd2 PH |
7278 | { |
7279 | if (v == TYPE_FIELD_BITPOS (type, i)) | |
7280 | return i; | |
7281 | } | |
323e0a4a | 7282 | error (_("enumeration value is invalid: can't find 'POS")); |
14f9c5c9 AS |
7283 | } |
7284 | else | |
4c4b4cd2 PH |
7285 | return value_as_long (arg); |
7286 | } | |
7287 | ||
7288 | static struct value * | |
7289 | value_pos_atr (struct value *arg) | |
7290 | { | |
72d5681a | 7291 | return value_from_longest (builtin_type_int, pos_atr (arg)); |
14f9c5c9 AS |
7292 | } |
7293 | ||
4c4b4cd2 | 7294 | /* Evaluate the TYPE'VAL attribute applied to ARG. */ |
14f9c5c9 | 7295 | |
d2e4a39e AS |
7296 | static struct value * |
7297 | value_val_atr (struct type *type, struct value *arg) | |
14f9c5c9 | 7298 | { |
d2e4a39e | 7299 | if (!discrete_type_p (type)) |
323e0a4a | 7300 | error (_("'VAL only defined on discrete types")); |
df407dfe | 7301 | if (!integer_type_p (value_type (arg))) |
323e0a4a | 7302 | error (_("'VAL requires integral argument")); |
14f9c5c9 AS |
7303 | |
7304 | if (TYPE_CODE (type) == TYPE_CODE_ENUM) | |
7305 | { | |
7306 | long pos = value_as_long (arg); | |
7307 | if (pos < 0 || pos >= TYPE_NFIELDS (type)) | |
323e0a4a | 7308 | error (_("argument to 'VAL out of range")); |
d2e4a39e | 7309 | return value_from_longest (type, TYPE_FIELD_BITPOS (type, pos)); |
14f9c5c9 AS |
7310 | } |
7311 | else | |
7312 | return value_from_longest (type, value_as_long (arg)); | |
7313 | } | |
14f9c5c9 | 7314 | \f |
d2e4a39e | 7315 | |
4c4b4cd2 | 7316 | /* Evaluation */ |
14f9c5c9 | 7317 | |
4c4b4cd2 PH |
7318 | /* True if TYPE appears to be an Ada character type. |
7319 | [At the moment, this is true only for Character and Wide_Character; | |
7320 | It is a heuristic test that could stand improvement]. */ | |
14f9c5c9 | 7321 | |
d2e4a39e AS |
7322 | int |
7323 | ada_is_character_type (struct type *type) | |
14f9c5c9 | 7324 | { |
7b9f71f2 JB |
7325 | const char *name; |
7326 | ||
7327 | /* If the type code says it's a character, then assume it really is, | |
7328 | and don't check any further. */ | |
7329 | if (TYPE_CODE (type) == TYPE_CODE_CHAR) | |
7330 | return 1; | |
7331 | ||
7332 | /* Otherwise, assume it's a character type iff it is a discrete type | |
7333 | with a known character type name. */ | |
7334 | name = ada_type_name (type); | |
7335 | return (name != NULL | |
7336 | && (TYPE_CODE (type) == TYPE_CODE_INT | |
7337 | || TYPE_CODE (type) == TYPE_CODE_RANGE) | |
7338 | && (strcmp (name, "character") == 0 | |
7339 | || strcmp (name, "wide_character") == 0 | |
5a517ebd | 7340 | || strcmp (name, "wide_wide_character") == 0 |
7b9f71f2 | 7341 | || strcmp (name, "unsigned char") == 0)); |
14f9c5c9 AS |
7342 | } |
7343 | ||
4c4b4cd2 | 7344 | /* True if TYPE appears to be an Ada string type. */ |
14f9c5c9 AS |
7345 | |
7346 | int | |
ebf56fd3 | 7347 | ada_is_string_type (struct type *type) |
14f9c5c9 | 7348 | { |
61ee279c | 7349 | type = ada_check_typedef (type); |
d2e4a39e | 7350 | if (type != NULL |
14f9c5c9 | 7351 | && TYPE_CODE (type) != TYPE_CODE_PTR |
76a01679 JB |
7352 | && (ada_is_simple_array_type (type) |
7353 | || ada_is_array_descriptor_type (type)) | |
14f9c5c9 AS |
7354 | && ada_array_arity (type) == 1) |
7355 | { | |
7356 | struct type *elttype = ada_array_element_type (type, 1); | |
7357 | ||
7358 | return ada_is_character_type (elttype); | |
7359 | } | |
d2e4a39e | 7360 | else |
14f9c5c9 AS |
7361 | return 0; |
7362 | } | |
7363 | ||
7364 | ||
7365 | /* True if TYPE is a struct type introduced by the compiler to force the | |
7366 | alignment of a value. Such types have a single field with a | |
4c4b4cd2 | 7367 | distinctive name. */ |
14f9c5c9 AS |
7368 | |
7369 | int | |
ebf56fd3 | 7370 | ada_is_aligner_type (struct type *type) |
14f9c5c9 | 7371 | { |
61ee279c | 7372 | type = ada_check_typedef (type); |
714e53ab PH |
7373 | |
7374 | /* If we can find a parallel XVS type, then the XVS type should | |
7375 | be used instead of this type. And hence, this is not an aligner | |
7376 | type. */ | |
7377 | if (ada_find_parallel_type (type, "___XVS") != NULL) | |
7378 | return 0; | |
7379 | ||
14f9c5c9 | 7380 | return (TYPE_CODE (type) == TYPE_CODE_STRUCT |
4c4b4cd2 PH |
7381 | && TYPE_NFIELDS (type) == 1 |
7382 | && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0); | |
14f9c5c9 AS |
7383 | } |
7384 | ||
7385 | /* If there is an ___XVS-convention type parallel to SUBTYPE, return | |
4c4b4cd2 | 7386 | the parallel type. */ |
14f9c5c9 | 7387 | |
d2e4a39e AS |
7388 | struct type * |
7389 | ada_get_base_type (struct type *raw_type) | |
14f9c5c9 | 7390 | { |
d2e4a39e AS |
7391 | struct type *real_type_namer; |
7392 | struct type *raw_real_type; | |
14f9c5c9 AS |
7393 | |
7394 | if (raw_type == NULL || TYPE_CODE (raw_type) != TYPE_CODE_STRUCT) | |
7395 | return raw_type; | |
7396 | ||
7397 | real_type_namer = ada_find_parallel_type (raw_type, "___XVS"); | |
d2e4a39e | 7398 | if (real_type_namer == NULL |
14f9c5c9 AS |
7399 | || TYPE_CODE (real_type_namer) != TYPE_CODE_STRUCT |
7400 | || TYPE_NFIELDS (real_type_namer) != 1) | |
7401 | return raw_type; | |
7402 | ||
7403 | raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0)); | |
d2e4a39e | 7404 | if (raw_real_type == NULL) |
14f9c5c9 AS |
7405 | return raw_type; |
7406 | else | |
7407 | return raw_real_type; | |
d2e4a39e | 7408 | } |
14f9c5c9 | 7409 | |
4c4b4cd2 | 7410 | /* The type of value designated by TYPE, with all aligners removed. */ |
14f9c5c9 | 7411 | |
d2e4a39e AS |
7412 | struct type * |
7413 | ada_aligned_type (struct type *type) | |
14f9c5c9 AS |
7414 | { |
7415 | if (ada_is_aligner_type (type)) | |
7416 | return ada_aligned_type (TYPE_FIELD_TYPE (type, 0)); | |
7417 | else | |
7418 | return ada_get_base_type (type); | |
7419 | } | |
7420 | ||
7421 | ||
7422 | /* The address of the aligned value in an object at address VALADDR | |
4c4b4cd2 | 7423 | having type TYPE. Assumes ada_is_aligner_type (TYPE). */ |
14f9c5c9 | 7424 | |
fc1a4b47 AC |
7425 | const gdb_byte * |
7426 | ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr) | |
14f9c5c9 | 7427 | { |
d2e4a39e | 7428 | if (ada_is_aligner_type (type)) |
14f9c5c9 | 7429 | return ada_aligned_value_addr (TYPE_FIELD_TYPE (type, 0), |
4c4b4cd2 PH |
7430 | valaddr + |
7431 | TYPE_FIELD_BITPOS (type, | |
7432 | 0) / TARGET_CHAR_BIT); | |
14f9c5c9 AS |
7433 | else |
7434 | return valaddr; | |
7435 | } | |
7436 | ||
4c4b4cd2 PH |
7437 | |
7438 | ||
14f9c5c9 | 7439 | /* The printed representation of an enumeration literal with encoded |
4c4b4cd2 | 7440 | name NAME. The value is good to the next call of ada_enum_name. */ |
d2e4a39e AS |
7441 | const char * |
7442 | ada_enum_name (const char *name) | |
14f9c5c9 | 7443 | { |
4c4b4cd2 PH |
7444 | static char *result; |
7445 | static size_t result_len = 0; | |
d2e4a39e | 7446 | char *tmp; |
14f9c5c9 | 7447 | |
4c4b4cd2 PH |
7448 | /* First, unqualify the enumeration name: |
7449 | 1. Search for the last '.' character. If we find one, then skip | |
76a01679 JB |
7450 | all the preceeding characters, the unqualified name starts |
7451 | right after that dot. | |
4c4b4cd2 | 7452 | 2. Otherwise, we may be debugging on a target where the compiler |
76a01679 JB |
7453 | translates dots into "__". Search forward for double underscores, |
7454 | but stop searching when we hit an overloading suffix, which is | |
7455 | of the form "__" followed by digits. */ | |
4c4b4cd2 | 7456 | |
c3e5cd34 PH |
7457 | tmp = strrchr (name, '.'); |
7458 | if (tmp != NULL) | |
4c4b4cd2 PH |
7459 | name = tmp + 1; |
7460 | else | |
14f9c5c9 | 7461 | { |
4c4b4cd2 PH |
7462 | while ((tmp = strstr (name, "__")) != NULL) |
7463 | { | |
7464 | if (isdigit (tmp[2])) | |
7465 | break; | |
7466 | else | |
7467 | name = tmp + 2; | |
7468 | } | |
14f9c5c9 AS |
7469 | } |
7470 | ||
7471 | if (name[0] == 'Q') | |
7472 | { | |
14f9c5c9 AS |
7473 | int v; |
7474 | if (name[1] == 'U' || name[1] == 'W') | |
4c4b4cd2 PH |
7475 | { |
7476 | if (sscanf (name + 2, "%x", &v) != 1) | |
7477 | return name; | |
7478 | } | |
14f9c5c9 | 7479 | else |
4c4b4cd2 | 7480 | return name; |
14f9c5c9 | 7481 | |
4c4b4cd2 | 7482 | GROW_VECT (result, result_len, 16); |
14f9c5c9 | 7483 | if (isascii (v) && isprint (v)) |
4c4b4cd2 | 7484 | sprintf (result, "'%c'", v); |
14f9c5c9 | 7485 | else if (name[1] == 'U') |
4c4b4cd2 | 7486 | sprintf (result, "[\"%02x\"]", v); |
14f9c5c9 | 7487 | else |
4c4b4cd2 | 7488 | sprintf (result, "[\"%04x\"]", v); |
14f9c5c9 AS |
7489 | |
7490 | return result; | |
7491 | } | |
d2e4a39e | 7492 | else |
4c4b4cd2 | 7493 | { |
c3e5cd34 PH |
7494 | tmp = strstr (name, "__"); |
7495 | if (tmp == NULL) | |
7496 | tmp = strstr (name, "$"); | |
7497 | if (tmp != NULL) | |
4c4b4cd2 PH |
7498 | { |
7499 | GROW_VECT (result, result_len, tmp - name + 1); | |
7500 | strncpy (result, name, tmp - name); | |
7501 | result[tmp - name] = '\0'; | |
7502 | return result; | |
7503 | } | |
7504 | ||
7505 | return name; | |
7506 | } | |
14f9c5c9 AS |
7507 | } |
7508 | ||
d2e4a39e | 7509 | static struct value * |
ebf56fd3 | 7510 | evaluate_subexp (struct type *expect_type, struct expression *exp, int *pos, |
4c4b4cd2 | 7511 | enum noside noside) |
14f9c5c9 | 7512 | { |
76a01679 | 7513 | return (*exp->language_defn->la_exp_desc->evaluate_exp) |
4c4b4cd2 | 7514 | (expect_type, exp, pos, noside); |
14f9c5c9 AS |
7515 | } |
7516 | ||
7517 | /* Evaluate the subexpression of EXP starting at *POS as for | |
7518 | evaluate_type, updating *POS to point just past the evaluated | |
4c4b4cd2 | 7519 | expression. */ |
14f9c5c9 | 7520 | |
d2e4a39e AS |
7521 | static struct value * |
7522 | evaluate_subexp_type (struct expression *exp, int *pos) | |
14f9c5c9 | 7523 | { |
4c4b4cd2 | 7524 | return (*exp->language_defn->la_exp_desc->evaluate_exp) |
14f9c5c9 AS |
7525 | (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS); |
7526 | } | |
7527 | ||
7528 | /* If VAL is wrapped in an aligner or subtype wrapper, return the | |
4c4b4cd2 | 7529 | value it wraps. */ |
14f9c5c9 | 7530 | |
d2e4a39e AS |
7531 | static struct value * |
7532 | unwrap_value (struct value *val) | |
14f9c5c9 | 7533 | { |
df407dfe | 7534 | struct type *type = ada_check_typedef (value_type (val)); |
14f9c5c9 AS |
7535 | if (ada_is_aligner_type (type)) |
7536 | { | |
d2e4a39e | 7537 | struct value *v = value_struct_elt (&val, NULL, "F", |
4c4b4cd2 | 7538 | NULL, "internal structure"); |
df407dfe | 7539 | struct type *val_type = ada_check_typedef (value_type (v)); |
14f9c5c9 | 7540 | if (ada_type_name (val_type) == NULL) |
4c4b4cd2 | 7541 | TYPE_NAME (val_type) = ada_type_name (type); |
14f9c5c9 AS |
7542 | |
7543 | return unwrap_value (v); | |
7544 | } | |
d2e4a39e | 7545 | else |
14f9c5c9 | 7546 | { |
d2e4a39e | 7547 | struct type *raw_real_type = |
61ee279c | 7548 | ada_check_typedef (ada_get_base_type (type)); |
d2e4a39e | 7549 | |
14f9c5c9 | 7550 | if (type == raw_real_type) |
4c4b4cd2 | 7551 | return val; |
14f9c5c9 | 7552 | |
d2e4a39e | 7553 | return |
4c4b4cd2 PH |
7554 | coerce_unspec_val_to_type |
7555 | (val, ada_to_fixed_type (raw_real_type, 0, | |
df407dfe | 7556 | VALUE_ADDRESS (val) + value_offset (val), |
4c4b4cd2 | 7557 | NULL)); |
14f9c5c9 AS |
7558 | } |
7559 | } | |
d2e4a39e AS |
7560 | |
7561 | static struct value * | |
7562 | cast_to_fixed (struct type *type, struct value *arg) | |
14f9c5c9 AS |
7563 | { |
7564 | LONGEST val; | |
7565 | ||
df407dfe | 7566 | if (type == value_type (arg)) |
14f9c5c9 | 7567 | return arg; |
df407dfe | 7568 | else if (ada_is_fixed_point_type (value_type (arg))) |
d2e4a39e | 7569 | val = ada_float_to_fixed (type, |
df407dfe | 7570 | ada_fixed_to_float (value_type (arg), |
4c4b4cd2 | 7571 | value_as_long (arg))); |
d2e4a39e | 7572 | else |
14f9c5c9 | 7573 | { |
d2e4a39e | 7574 | DOUBLEST argd = |
4c4b4cd2 | 7575 | value_as_double (value_cast (builtin_type_double, value_copy (arg))); |
14f9c5c9 AS |
7576 | val = ada_float_to_fixed (type, argd); |
7577 | } | |
7578 | ||
7579 | return value_from_longest (type, val); | |
7580 | } | |
7581 | ||
d2e4a39e AS |
7582 | static struct value * |
7583 | cast_from_fixed_to_double (struct value *arg) | |
14f9c5c9 | 7584 | { |
df407dfe | 7585 | DOUBLEST val = ada_fixed_to_float (value_type (arg), |
4c4b4cd2 | 7586 | value_as_long (arg)); |
14f9c5c9 AS |
7587 | return value_from_double (builtin_type_double, val); |
7588 | } | |
7589 | ||
4c4b4cd2 PH |
7590 | /* Coerce VAL as necessary for assignment to an lval of type TYPE, and |
7591 | return the converted value. */ | |
7592 | ||
d2e4a39e AS |
7593 | static struct value * |
7594 | coerce_for_assign (struct type *type, struct value *val) | |
14f9c5c9 | 7595 | { |
df407dfe | 7596 | struct type *type2 = value_type (val); |
14f9c5c9 AS |
7597 | if (type == type2) |
7598 | return val; | |
7599 | ||
61ee279c PH |
7600 | type2 = ada_check_typedef (type2); |
7601 | type = ada_check_typedef (type); | |
14f9c5c9 | 7602 | |
d2e4a39e AS |
7603 | if (TYPE_CODE (type2) == TYPE_CODE_PTR |
7604 | && TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
14f9c5c9 AS |
7605 | { |
7606 | val = ada_value_ind (val); | |
df407dfe | 7607 | type2 = value_type (val); |
14f9c5c9 AS |
7608 | } |
7609 | ||
d2e4a39e | 7610 | if (TYPE_CODE (type2) == TYPE_CODE_ARRAY |
14f9c5c9 AS |
7611 | && TYPE_CODE (type) == TYPE_CODE_ARRAY) |
7612 | { | |
7613 | if (TYPE_LENGTH (type2) != TYPE_LENGTH (type) | |
4c4b4cd2 PH |
7614 | || TYPE_LENGTH (TYPE_TARGET_TYPE (type2)) |
7615 | != TYPE_LENGTH (TYPE_TARGET_TYPE (type2))) | |
323e0a4a | 7616 | error (_("Incompatible types in assignment")); |
04624583 | 7617 | deprecated_set_value_type (val, type); |
14f9c5c9 | 7618 | } |
d2e4a39e | 7619 | return val; |
14f9c5c9 AS |
7620 | } |
7621 | ||
4c4b4cd2 PH |
7622 | static struct value * |
7623 | ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op) | |
7624 | { | |
7625 | struct value *val; | |
7626 | struct type *type1, *type2; | |
7627 | LONGEST v, v1, v2; | |
7628 | ||
994b9211 AC |
7629 | arg1 = coerce_ref (arg1); |
7630 | arg2 = coerce_ref (arg2); | |
df407dfe AC |
7631 | type1 = base_type (ada_check_typedef (value_type (arg1))); |
7632 | type2 = base_type (ada_check_typedef (value_type (arg2))); | |
4c4b4cd2 | 7633 | |
76a01679 JB |
7634 | if (TYPE_CODE (type1) != TYPE_CODE_INT |
7635 | || TYPE_CODE (type2) != TYPE_CODE_INT) | |
4c4b4cd2 PH |
7636 | return value_binop (arg1, arg2, op); |
7637 | ||
76a01679 | 7638 | switch (op) |
4c4b4cd2 PH |
7639 | { |
7640 | case BINOP_MOD: | |
7641 | case BINOP_DIV: | |
7642 | case BINOP_REM: | |
7643 | break; | |
7644 | default: | |
7645 | return value_binop (arg1, arg2, op); | |
7646 | } | |
7647 | ||
7648 | v2 = value_as_long (arg2); | |
7649 | if (v2 == 0) | |
323e0a4a | 7650 | error (_("second operand of %s must not be zero."), op_string (op)); |
4c4b4cd2 PH |
7651 | |
7652 | if (TYPE_UNSIGNED (type1) || op == BINOP_MOD) | |
7653 | return value_binop (arg1, arg2, op); | |
7654 | ||
7655 | v1 = value_as_long (arg1); | |
7656 | switch (op) | |
7657 | { | |
7658 | case BINOP_DIV: | |
7659 | v = v1 / v2; | |
76a01679 JB |
7660 | if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0) |
7661 | v += v > 0 ? -1 : 1; | |
4c4b4cd2 PH |
7662 | break; |
7663 | case BINOP_REM: | |
7664 | v = v1 % v2; | |
76a01679 JB |
7665 | if (v * v1 < 0) |
7666 | v -= v2; | |
4c4b4cd2 PH |
7667 | break; |
7668 | default: | |
7669 | /* Should not reach this point. */ | |
7670 | v = 0; | |
7671 | } | |
7672 | ||
7673 | val = allocate_value (type1); | |
990a07ab | 7674 | store_unsigned_integer (value_contents_raw (val), |
df407dfe | 7675 | TYPE_LENGTH (value_type (val)), v); |
4c4b4cd2 PH |
7676 | return val; |
7677 | } | |
7678 | ||
7679 | static int | |
7680 | ada_value_equal (struct value *arg1, struct value *arg2) | |
7681 | { | |
df407dfe AC |
7682 | if (ada_is_direct_array_type (value_type (arg1)) |
7683 | || ada_is_direct_array_type (value_type (arg2))) | |
4c4b4cd2 PH |
7684 | { |
7685 | arg1 = ada_coerce_to_simple_array (arg1); | |
7686 | arg2 = ada_coerce_to_simple_array (arg2); | |
df407dfe AC |
7687 | if (TYPE_CODE (value_type (arg1)) != TYPE_CODE_ARRAY |
7688 | || TYPE_CODE (value_type (arg2)) != TYPE_CODE_ARRAY) | |
323e0a4a | 7689 | error (_("Attempt to compare array with non-array")); |
4c4b4cd2 | 7690 | /* FIXME: The following works only for types whose |
76a01679 JB |
7691 | representations use all bits (no padding or undefined bits) |
7692 | and do not have user-defined equality. */ | |
7693 | return | |
df407dfe | 7694 | TYPE_LENGTH (value_type (arg1)) == TYPE_LENGTH (value_type (arg2)) |
0fd88904 | 7695 | && memcmp (value_contents (arg1), value_contents (arg2), |
df407dfe | 7696 | TYPE_LENGTH (value_type (arg1))) == 0; |
4c4b4cd2 PH |
7697 | } |
7698 | return value_equal (arg1, arg2); | |
7699 | } | |
7700 | ||
52ce6436 PH |
7701 | /* Total number of component associations in the aggregate starting at |
7702 | index PC in EXP. Assumes that index PC is the start of an | |
7703 | OP_AGGREGATE. */ | |
7704 | ||
7705 | static int | |
7706 | num_component_specs (struct expression *exp, int pc) | |
7707 | { | |
7708 | int n, m, i; | |
7709 | m = exp->elts[pc + 1].longconst; | |
7710 | pc += 3; | |
7711 | n = 0; | |
7712 | for (i = 0; i < m; i += 1) | |
7713 | { | |
7714 | switch (exp->elts[pc].opcode) | |
7715 | { | |
7716 | default: | |
7717 | n += 1; | |
7718 | break; | |
7719 | case OP_CHOICES: | |
7720 | n += exp->elts[pc + 1].longconst; | |
7721 | break; | |
7722 | } | |
7723 | ada_evaluate_subexp (NULL, exp, &pc, EVAL_SKIP); | |
7724 | } | |
7725 | return n; | |
7726 | } | |
7727 | ||
7728 | /* Assign the result of evaluating EXP starting at *POS to the INDEXth | |
7729 | component of LHS (a simple array or a record), updating *POS past | |
7730 | the expression, assuming that LHS is contained in CONTAINER. Does | |
7731 | not modify the inferior's memory, nor does it modify LHS (unless | |
7732 | LHS == CONTAINER). */ | |
7733 | ||
7734 | static void | |
7735 | assign_component (struct value *container, struct value *lhs, LONGEST index, | |
7736 | struct expression *exp, int *pos) | |
7737 | { | |
7738 | struct value *mark = value_mark (); | |
7739 | struct value *elt; | |
7740 | if (TYPE_CODE (value_type (lhs)) == TYPE_CODE_ARRAY) | |
7741 | { | |
7742 | struct value *index_val = value_from_longest (builtin_type_int, index); | |
7743 | elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val)); | |
7744 | } | |
7745 | else | |
7746 | { | |
7747 | elt = ada_index_struct_field (index, lhs, 0, value_type (lhs)); | |
7748 | elt = ada_to_fixed_value (unwrap_value (elt)); | |
7749 | } | |
7750 | ||
7751 | if (exp->elts[*pos].opcode == OP_AGGREGATE) | |
7752 | assign_aggregate (container, elt, exp, pos, EVAL_NORMAL); | |
7753 | else | |
7754 | value_assign_to_component (container, elt, | |
7755 | ada_evaluate_subexp (NULL, exp, pos, | |
7756 | EVAL_NORMAL)); | |
7757 | ||
7758 | value_free_to_mark (mark); | |
7759 | } | |
7760 | ||
7761 | /* Assuming that LHS represents an lvalue having a record or array | |
7762 | type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment | |
7763 | of that aggregate's value to LHS, advancing *POS past the | |
7764 | aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an | |
7765 | lvalue containing LHS (possibly LHS itself). Does not modify | |
7766 | the inferior's memory, nor does it modify the contents of | |
7767 | LHS (unless == CONTAINER). Returns the modified CONTAINER. */ | |
7768 | ||
7769 | static struct value * | |
7770 | assign_aggregate (struct value *container, | |
7771 | struct value *lhs, struct expression *exp, | |
7772 | int *pos, enum noside noside) | |
7773 | { | |
7774 | struct type *lhs_type; | |
7775 | int n = exp->elts[*pos+1].longconst; | |
7776 | LONGEST low_index, high_index; | |
7777 | int num_specs; | |
7778 | LONGEST *indices; | |
7779 | int max_indices, num_indices; | |
7780 | int is_array_aggregate; | |
7781 | int i; | |
7782 | struct value *mark = value_mark (); | |
7783 | ||
7784 | *pos += 3; | |
7785 | if (noside != EVAL_NORMAL) | |
7786 | { | |
7787 | int i; | |
7788 | for (i = 0; i < n; i += 1) | |
7789 | ada_evaluate_subexp (NULL, exp, pos, noside); | |
7790 | return container; | |
7791 | } | |
7792 | ||
7793 | container = ada_coerce_ref (container); | |
7794 | if (ada_is_direct_array_type (value_type (container))) | |
7795 | container = ada_coerce_to_simple_array (container); | |
7796 | lhs = ada_coerce_ref (lhs); | |
7797 | if (!deprecated_value_modifiable (lhs)) | |
7798 | error (_("Left operand of assignment is not a modifiable lvalue.")); | |
7799 | ||
7800 | lhs_type = value_type (lhs); | |
7801 | if (ada_is_direct_array_type (lhs_type)) | |
7802 | { | |
7803 | lhs = ada_coerce_to_simple_array (lhs); | |
7804 | lhs_type = value_type (lhs); | |
7805 | low_index = TYPE_ARRAY_LOWER_BOUND_VALUE (lhs_type); | |
7806 | high_index = TYPE_ARRAY_UPPER_BOUND_VALUE (lhs_type); | |
7807 | is_array_aggregate = 1; | |
7808 | } | |
7809 | else if (TYPE_CODE (lhs_type) == TYPE_CODE_STRUCT) | |
7810 | { | |
7811 | low_index = 0; | |
7812 | high_index = num_visible_fields (lhs_type) - 1; | |
7813 | is_array_aggregate = 0; | |
7814 | } | |
7815 | else | |
7816 | error (_("Left-hand side must be array or record.")); | |
7817 | ||
7818 | num_specs = num_component_specs (exp, *pos - 3); | |
7819 | max_indices = 4 * num_specs + 4; | |
7820 | indices = alloca (max_indices * sizeof (indices[0])); | |
7821 | indices[0] = indices[1] = low_index - 1; | |
7822 | indices[2] = indices[3] = high_index + 1; | |
7823 | num_indices = 4; | |
7824 | ||
7825 | for (i = 0; i < n; i += 1) | |
7826 | { | |
7827 | switch (exp->elts[*pos].opcode) | |
7828 | { | |
7829 | case OP_CHOICES: | |
7830 | aggregate_assign_from_choices (container, lhs, exp, pos, indices, | |
7831 | &num_indices, max_indices, | |
7832 | low_index, high_index); | |
7833 | break; | |
7834 | case OP_POSITIONAL: | |
7835 | aggregate_assign_positional (container, lhs, exp, pos, indices, | |
7836 | &num_indices, max_indices, | |
7837 | low_index, high_index); | |
7838 | break; | |
7839 | case OP_OTHERS: | |
7840 | if (i != n-1) | |
7841 | error (_("Misplaced 'others' clause")); | |
7842 | aggregate_assign_others (container, lhs, exp, pos, indices, | |
7843 | num_indices, low_index, high_index); | |
7844 | break; | |
7845 | default: | |
7846 | error (_("Internal error: bad aggregate clause")); | |
7847 | } | |
7848 | } | |
7849 | ||
7850 | return container; | |
7851 | } | |
7852 | ||
7853 | /* Assign into the component of LHS indexed by the OP_POSITIONAL | |
7854 | construct at *POS, updating *POS past the construct, given that | |
7855 | the positions are relative to lower bound LOW, where HIGH is the | |
7856 | upper bound. Record the position in INDICES[0 .. MAX_INDICES-1] | |
7857 | updating *NUM_INDICES as needed. CONTAINER is as for | |
7858 | assign_aggregate. */ | |
7859 | static void | |
7860 | aggregate_assign_positional (struct value *container, | |
7861 | struct value *lhs, struct expression *exp, | |
7862 | int *pos, LONGEST *indices, int *num_indices, | |
7863 | int max_indices, LONGEST low, LONGEST high) | |
7864 | { | |
7865 | LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low; | |
7866 | ||
7867 | if (ind - 1 == high) | |
e1d5a0d2 | 7868 | warning (_("Extra components in aggregate ignored.")); |
52ce6436 PH |
7869 | if (ind <= high) |
7870 | { | |
7871 | add_component_interval (ind, ind, indices, num_indices, max_indices); | |
7872 | *pos += 3; | |
7873 | assign_component (container, lhs, ind, exp, pos); | |
7874 | } | |
7875 | else | |
7876 | ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP); | |
7877 | } | |
7878 | ||
7879 | /* Assign into the components of LHS indexed by the OP_CHOICES | |
7880 | construct at *POS, updating *POS past the construct, given that | |
7881 | the allowable indices are LOW..HIGH. Record the indices assigned | |
7882 | to in INDICES[0 .. MAX_INDICES-1], updating *NUM_INDICES as | |
7883 | needed. CONTAINER is as for assign_aggregate. */ | |
7884 | static void | |
7885 | aggregate_assign_from_choices (struct value *container, | |
7886 | struct value *lhs, struct expression *exp, | |
7887 | int *pos, LONGEST *indices, int *num_indices, | |
7888 | int max_indices, LONGEST low, LONGEST high) | |
7889 | { | |
7890 | int j; | |
7891 | int n_choices = longest_to_int (exp->elts[*pos+1].longconst); | |
7892 | int choice_pos, expr_pc; | |
7893 | int is_array = ada_is_direct_array_type (value_type (lhs)); | |
7894 | ||
7895 | choice_pos = *pos += 3; | |
7896 | ||
7897 | for (j = 0; j < n_choices; j += 1) | |
7898 | ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP); | |
7899 | expr_pc = *pos; | |
7900 | ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP); | |
7901 | ||
7902 | for (j = 0; j < n_choices; j += 1) | |
7903 | { | |
7904 | LONGEST lower, upper; | |
7905 | enum exp_opcode op = exp->elts[choice_pos].opcode; | |
7906 | if (op == OP_DISCRETE_RANGE) | |
7907 | { | |
7908 | choice_pos += 1; | |
7909 | lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos, | |
7910 | EVAL_NORMAL)); | |
7911 | upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos, | |
7912 | EVAL_NORMAL)); | |
7913 | } | |
7914 | else if (is_array) | |
7915 | { | |
7916 | lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos, | |
7917 | EVAL_NORMAL)); | |
7918 | upper = lower; | |
7919 | } | |
7920 | else | |
7921 | { | |
7922 | int ind; | |
7923 | char *name; | |
7924 | switch (op) | |
7925 | { | |
7926 | case OP_NAME: | |
7927 | name = &exp->elts[choice_pos + 2].string; | |
7928 | break; | |
7929 | case OP_VAR_VALUE: | |
7930 | name = SYMBOL_NATURAL_NAME (exp->elts[choice_pos + 2].symbol); | |
7931 | break; | |
7932 | default: | |
7933 | error (_("Invalid record component association.")); | |
7934 | } | |
7935 | ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP); | |
7936 | ind = 0; | |
7937 | if (! find_struct_field (name, value_type (lhs), 0, | |
7938 | NULL, NULL, NULL, NULL, &ind)) | |
7939 | error (_("Unknown component name: %s."), name); | |
7940 | lower = upper = ind; | |
7941 | } | |
7942 | ||
7943 | if (lower <= upper && (lower < low || upper > high)) | |
7944 | error (_("Index in component association out of bounds.")); | |
7945 | ||
7946 | add_component_interval (lower, upper, indices, num_indices, | |
7947 | max_indices); | |
7948 | while (lower <= upper) | |
7949 | { | |
7950 | int pos1; | |
7951 | pos1 = expr_pc; | |
7952 | assign_component (container, lhs, lower, exp, &pos1); | |
7953 | lower += 1; | |
7954 | } | |
7955 | } | |
7956 | } | |
7957 | ||
7958 | /* Assign the value of the expression in the OP_OTHERS construct in | |
7959 | EXP at *POS into the components of LHS indexed from LOW .. HIGH that | |
7960 | have not been previously assigned. The index intervals already assigned | |
7961 | are in INDICES[0 .. NUM_INDICES-1]. Updates *POS to after the | |
7962 | OP_OTHERS clause. CONTAINER is as for assign_aggregate*/ | |
7963 | static void | |
7964 | aggregate_assign_others (struct value *container, | |
7965 | struct value *lhs, struct expression *exp, | |
7966 | int *pos, LONGEST *indices, int num_indices, | |
7967 | LONGEST low, LONGEST high) | |
7968 | { | |
7969 | int i; | |
7970 | int expr_pc = *pos+1; | |
7971 | ||
7972 | for (i = 0; i < num_indices - 2; i += 2) | |
7973 | { | |
7974 | LONGEST ind; | |
7975 | for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1) | |
7976 | { | |
7977 | int pos; | |
7978 | pos = expr_pc; | |
7979 | assign_component (container, lhs, ind, exp, &pos); | |
7980 | } | |
7981 | } | |
7982 | ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP); | |
7983 | } | |
7984 | ||
7985 | /* Add the interval [LOW .. HIGH] to the sorted set of intervals | |
7986 | [ INDICES[0] .. INDICES[1] ],..., [ INDICES[*SIZE-2] .. INDICES[*SIZE-1] ], | |
7987 | modifying *SIZE as needed. It is an error if *SIZE exceeds | |
7988 | MAX_SIZE. The resulting intervals do not overlap. */ | |
7989 | static void | |
7990 | add_component_interval (LONGEST low, LONGEST high, | |
7991 | LONGEST* indices, int *size, int max_size) | |
7992 | { | |
7993 | int i, j; | |
7994 | for (i = 0; i < *size; i += 2) { | |
7995 | if (high >= indices[i] && low <= indices[i + 1]) | |
7996 | { | |
7997 | int kh; | |
7998 | for (kh = i + 2; kh < *size; kh += 2) | |
7999 | if (high < indices[kh]) | |
8000 | break; | |
8001 | if (low < indices[i]) | |
8002 | indices[i] = low; | |
8003 | indices[i + 1] = indices[kh - 1]; | |
8004 | if (high > indices[i + 1]) | |
8005 | indices[i + 1] = high; | |
8006 | memcpy (indices + i + 2, indices + kh, *size - kh); | |
8007 | *size -= kh - i - 2; | |
8008 | return; | |
8009 | } | |
8010 | else if (high < indices[i]) | |
8011 | break; | |
8012 | } | |
8013 | ||
8014 | if (*size == max_size) | |
8015 | error (_("Internal error: miscounted aggregate components.")); | |
8016 | *size += 2; | |
8017 | for (j = *size-1; j >= i+2; j -= 1) | |
8018 | indices[j] = indices[j - 2]; | |
8019 | indices[i] = low; | |
8020 | indices[i + 1] = high; | |
8021 | } | |
8022 | ||
6e48bd2c JB |
8023 | /* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2 |
8024 | is different. */ | |
8025 | ||
8026 | static struct value * | |
8027 | ada_value_cast (struct type *type, struct value *arg2, enum noside noside) | |
8028 | { | |
8029 | if (type == ada_check_typedef (value_type (arg2))) | |
8030 | return arg2; | |
8031 | ||
8032 | if (ada_is_fixed_point_type (type)) | |
8033 | return (cast_to_fixed (type, arg2)); | |
8034 | ||
8035 | if (ada_is_fixed_point_type (value_type (arg2))) | |
8036 | return value_cast (type, cast_from_fixed_to_double (arg2)); | |
8037 | ||
8038 | return value_cast (type, arg2); | |
8039 | } | |
8040 | ||
52ce6436 | 8041 | static struct value * |
ebf56fd3 | 8042 | ada_evaluate_subexp (struct type *expect_type, struct expression *exp, |
4c4b4cd2 | 8043 | int *pos, enum noside noside) |
14f9c5c9 AS |
8044 | { |
8045 | enum exp_opcode op; | |
14f9c5c9 AS |
8046 | int tem, tem2, tem3; |
8047 | int pc; | |
8048 | struct value *arg1 = NULL, *arg2 = NULL, *arg3; | |
8049 | struct type *type; | |
52ce6436 | 8050 | int nargs, oplen; |
d2e4a39e | 8051 | struct value **argvec; |
14f9c5c9 | 8052 | |
d2e4a39e AS |
8053 | pc = *pos; |
8054 | *pos += 1; | |
14f9c5c9 AS |
8055 | op = exp->elts[pc].opcode; |
8056 | ||
d2e4a39e | 8057 | switch (op) |
14f9c5c9 AS |
8058 | { |
8059 | default: | |
8060 | *pos -= 1; | |
6e48bd2c JB |
8061 | arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside); |
8062 | arg1 = unwrap_value (arg1); | |
8063 | ||
8064 | /* If evaluating an OP_DOUBLE and an EXPECT_TYPE was provided, | |
8065 | then we need to perform the conversion manually, because | |
8066 | evaluate_subexp_standard doesn't do it. This conversion is | |
8067 | necessary in Ada because the different kinds of float/fixed | |
8068 | types in Ada have different representations. | |
8069 | ||
8070 | Similarly, we need to perform the conversion from OP_LONG | |
8071 | ourselves. */ | |
8072 | if ((op == OP_DOUBLE || op == OP_LONG) && expect_type != NULL) | |
8073 | arg1 = ada_value_cast (expect_type, arg1, noside); | |
8074 | ||
8075 | return arg1; | |
4c4b4cd2 PH |
8076 | |
8077 | case OP_STRING: | |
8078 | { | |
76a01679 JB |
8079 | struct value *result; |
8080 | *pos -= 1; | |
8081 | result = evaluate_subexp_standard (expect_type, exp, pos, noside); | |
8082 | /* The result type will have code OP_STRING, bashed there from | |
8083 | OP_ARRAY. Bash it back. */ | |
df407dfe AC |
8084 | if (TYPE_CODE (value_type (result)) == TYPE_CODE_STRING) |
8085 | TYPE_CODE (value_type (result)) = TYPE_CODE_ARRAY; | |
76a01679 | 8086 | return result; |
4c4b4cd2 | 8087 | } |
14f9c5c9 AS |
8088 | |
8089 | case UNOP_CAST: | |
8090 | (*pos) += 2; | |
8091 | type = exp->elts[pc + 1].type; | |
8092 | arg1 = evaluate_subexp (type, exp, pos, noside); | |
8093 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8094 | goto nosideret; |
6e48bd2c | 8095 | arg1 = ada_value_cast (type, arg1, noside); |
14f9c5c9 AS |
8096 | return arg1; |
8097 | ||
4c4b4cd2 PH |
8098 | case UNOP_QUAL: |
8099 | (*pos) += 2; | |
8100 | type = exp->elts[pc + 1].type; | |
8101 | return ada_evaluate_subexp (type, exp, pos, noside); | |
8102 | ||
14f9c5c9 AS |
8103 | case BINOP_ASSIGN: |
8104 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
52ce6436 PH |
8105 | if (exp->elts[*pos].opcode == OP_AGGREGATE) |
8106 | { | |
8107 | arg1 = assign_aggregate (arg1, arg1, exp, pos, noside); | |
8108 | if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS) | |
8109 | return arg1; | |
8110 | return ada_value_assign (arg1, arg1); | |
8111 | } | |
df407dfe | 8112 | arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside); |
14f9c5c9 | 8113 | if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS) |
4c4b4cd2 | 8114 | return arg1; |
df407dfe AC |
8115 | if (ada_is_fixed_point_type (value_type (arg1))) |
8116 | arg2 = cast_to_fixed (value_type (arg1), arg2); | |
8117 | else if (ada_is_fixed_point_type (value_type (arg2))) | |
76a01679 | 8118 | error |
323e0a4a | 8119 | (_("Fixed-point values must be assigned to fixed-point variables")); |
d2e4a39e | 8120 | else |
df407dfe | 8121 | arg2 = coerce_for_assign (value_type (arg1), arg2); |
4c4b4cd2 | 8122 | return ada_value_assign (arg1, arg2); |
14f9c5c9 AS |
8123 | |
8124 | case BINOP_ADD: | |
8125 | arg1 = evaluate_subexp_with_coercion (exp, pos, noside); | |
8126 | arg2 = evaluate_subexp_with_coercion (exp, pos, noside); | |
8127 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8128 | goto nosideret; |
df407dfe AC |
8129 | if ((ada_is_fixed_point_type (value_type (arg1)) |
8130 | || ada_is_fixed_point_type (value_type (arg2))) | |
8131 | && value_type (arg1) != value_type (arg2)) | |
323e0a4a | 8132 | error (_("Operands of fixed-point addition must have the same type")); |
df407dfe | 8133 | return value_cast (value_type (arg1), value_add (arg1, arg2)); |
14f9c5c9 AS |
8134 | |
8135 | case BINOP_SUB: | |
8136 | arg1 = evaluate_subexp_with_coercion (exp, pos, noside); | |
8137 | arg2 = evaluate_subexp_with_coercion (exp, pos, noside); | |
8138 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8139 | goto nosideret; |
df407dfe AC |
8140 | if ((ada_is_fixed_point_type (value_type (arg1)) |
8141 | || ada_is_fixed_point_type (value_type (arg2))) | |
8142 | && value_type (arg1) != value_type (arg2)) | |
323e0a4a | 8143 | error (_("Operands of fixed-point subtraction must have the same type")); |
df407dfe | 8144 | return value_cast (value_type (arg1), value_sub (arg1, arg2)); |
14f9c5c9 AS |
8145 | |
8146 | case BINOP_MUL: | |
8147 | case BINOP_DIV: | |
8148 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8149 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8150 | if (noside == EVAL_SKIP) | |
4c4b4cd2 PH |
8151 | goto nosideret; |
8152 | else if (noside == EVAL_AVOID_SIDE_EFFECTS | |
76a01679 | 8153 | && (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD)) |
df407dfe | 8154 | return value_zero (value_type (arg1), not_lval); |
14f9c5c9 | 8155 | else |
4c4b4cd2 | 8156 | { |
df407dfe | 8157 | if (ada_is_fixed_point_type (value_type (arg1))) |
4c4b4cd2 | 8158 | arg1 = cast_from_fixed_to_double (arg1); |
df407dfe | 8159 | if (ada_is_fixed_point_type (value_type (arg2))) |
4c4b4cd2 PH |
8160 | arg2 = cast_from_fixed_to_double (arg2); |
8161 | return ada_value_binop (arg1, arg2, op); | |
8162 | } | |
8163 | ||
8164 | case BINOP_REM: | |
8165 | case BINOP_MOD: | |
8166 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8167 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8168 | if (noside == EVAL_SKIP) | |
76a01679 | 8169 | goto nosideret; |
4c4b4cd2 | 8170 | else if (noside == EVAL_AVOID_SIDE_EFFECTS |
76a01679 | 8171 | && (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD)) |
df407dfe | 8172 | return value_zero (value_type (arg1), not_lval); |
14f9c5c9 | 8173 | else |
76a01679 | 8174 | return ada_value_binop (arg1, arg2, op); |
14f9c5c9 | 8175 | |
4c4b4cd2 PH |
8176 | case BINOP_EQUAL: |
8177 | case BINOP_NOTEQUAL: | |
14f9c5c9 | 8178 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
df407dfe | 8179 | arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside); |
14f9c5c9 | 8180 | if (noside == EVAL_SKIP) |
76a01679 | 8181 | goto nosideret; |
4c4b4cd2 | 8182 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
76a01679 | 8183 | tem = 0; |
4c4b4cd2 | 8184 | else |
76a01679 | 8185 | tem = ada_value_equal (arg1, arg2); |
4c4b4cd2 | 8186 | if (op == BINOP_NOTEQUAL) |
76a01679 | 8187 | tem = !tem; |
4c4b4cd2 PH |
8188 | return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem); |
8189 | ||
8190 | case UNOP_NEG: | |
8191 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8192 | if (noside == EVAL_SKIP) | |
8193 | goto nosideret; | |
df407dfe AC |
8194 | else if (ada_is_fixed_point_type (value_type (arg1))) |
8195 | return value_cast (value_type (arg1), value_neg (arg1)); | |
14f9c5c9 | 8196 | else |
4c4b4cd2 PH |
8197 | return value_neg (arg1); |
8198 | ||
2330c6c6 JB |
8199 | case BINOP_LOGICAL_AND: |
8200 | case BINOP_LOGICAL_OR: | |
8201 | case UNOP_LOGICAL_NOT: | |
000d5124 JB |
8202 | { |
8203 | struct value *val; | |
8204 | ||
8205 | *pos -= 1; | |
8206 | val = evaluate_subexp_standard (expect_type, exp, pos, noside); | |
8207 | return value_cast (LA_BOOL_TYPE, val); | |
8208 | } | |
2330c6c6 JB |
8209 | |
8210 | case BINOP_BITWISE_AND: | |
8211 | case BINOP_BITWISE_IOR: | |
8212 | case BINOP_BITWISE_XOR: | |
000d5124 JB |
8213 | { |
8214 | struct value *val; | |
8215 | ||
8216 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS); | |
8217 | *pos = pc; | |
8218 | val = evaluate_subexp_standard (expect_type, exp, pos, noside); | |
8219 | ||
8220 | return value_cast (value_type (arg1), val); | |
8221 | } | |
2330c6c6 | 8222 | |
14f9c5c9 AS |
8223 | case OP_VAR_VALUE: |
8224 | *pos -= 1; | |
8225 | if (noside == EVAL_SKIP) | |
4c4b4cd2 PH |
8226 | { |
8227 | *pos += 4; | |
8228 | goto nosideret; | |
8229 | } | |
8230 | else if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN) | |
76a01679 JB |
8231 | /* Only encountered when an unresolved symbol occurs in a |
8232 | context other than a function call, in which case, it is | |
52ce6436 | 8233 | invalid. */ |
323e0a4a | 8234 | error (_("Unexpected unresolved symbol, %s, during evaluation"), |
4c4b4cd2 | 8235 | SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol)); |
14f9c5c9 | 8236 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
4c4b4cd2 PH |
8237 | { |
8238 | *pos += 4; | |
8239 | return value_zero | |
8240 | (to_static_fixed_type | |
8241 | (static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol))), | |
8242 | not_lval); | |
8243 | } | |
d2e4a39e | 8244 | else |
4c4b4cd2 PH |
8245 | { |
8246 | arg1 = | |
8247 | unwrap_value (evaluate_subexp_standard | |
8248 | (expect_type, exp, pos, noside)); | |
8249 | return ada_to_fixed_value (arg1); | |
8250 | } | |
8251 | ||
8252 | case OP_FUNCALL: | |
8253 | (*pos) += 2; | |
8254 | ||
8255 | /* Allocate arg vector, including space for the function to be | |
8256 | called in argvec[0] and a terminating NULL. */ | |
8257 | nargs = longest_to_int (exp->elts[pc + 1].longconst); | |
8258 | argvec = | |
8259 | (struct value **) alloca (sizeof (struct value *) * (nargs + 2)); | |
8260 | ||
8261 | if (exp->elts[*pos].opcode == OP_VAR_VALUE | |
76a01679 | 8262 | && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN) |
323e0a4a | 8263 | error (_("Unexpected unresolved symbol, %s, during evaluation"), |
4c4b4cd2 PH |
8264 | SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol)); |
8265 | else | |
8266 | { | |
8267 | for (tem = 0; tem <= nargs; tem += 1) | |
8268 | argvec[tem] = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8269 | argvec[tem] = 0; | |
8270 | ||
8271 | if (noside == EVAL_SKIP) | |
8272 | goto nosideret; | |
8273 | } | |
8274 | ||
df407dfe | 8275 | if (ada_is_packed_array_type (desc_base_type (value_type (argvec[0])))) |
4c4b4cd2 | 8276 | argvec[0] = ada_coerce_to_simple_array (argvec[0]); |
df407dfe AC |
8277 | else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_REF |
8278 | || (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_ARRAY | |
76a01679 | 8279 | && VALUE_LVAL (argvec[0]) == lval_memory)) |
4c4b4cd2 PH |
8280 | argvec[0] = value_addr (argvec[0]); |
8281 | ||
df407dfe | 8282 | type = ada_check_typedef (value_type (argvec[0])); |
4c4b4cd2 PH |
8283 | if (TYPE_CODE (type) == TYPE_CODE_PTR) |
8284 | { | |
61ee279c | 8285 | switch (TYPE_CODE (ada_check_typedef (TYPE_TARGET_TYPE (type)))) |
4c4b4cd2 PH |
8286 | { |
8287 | case TYPE_CODE_FUNC: | |
61ee279c | 8288 | type = ada_check_typedef (TYPE_TARGET_TYPE (type)); |
4c4b4cd2 PH |
8289 | break; |
8290 | case TYPE_CODE_ARRAY: | |
8291 | break; | |
8292 | case TYPE_CODE_STRUCT: | |
8293 | if (noside != EVAL_AVOID_SIDE_EFFECTS) | |
8294 | argvec[0] = ada_value_ind (argvec[0]); | |
61ee279c | 8295 | type = ada_check_typedef (TYPE_TARGET_TYPE (type)); |
4c4b4cd2 PH |
8296 | break; |
8297 | default: | |
323e0a4a | 8298 | error (_("cannot subscript or call something of type `%s'"), |
df407dfe | 8299 | ada_type_name (value_type (argvec[0]))); |
4c4b4cd2 PH |
8300 | break; |
8301 | } | |
8302 | } | |
8303 | ||
8304 | switch (TYPE_CODE (type)) | |
8305 | { | |
8306 | case TYPE_CODE_FUNC: | |
8307 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8308 | return allocate_value (TYPE_TARGET_TYPE (type)); | |
8309 | return call_function_by_hand (argvec[0], nargs, argvec + 1); | |
8310 | case TYPE_CODE_STRUCT: | |
8311 | { | |
8312 | int arity; | |
8313 | ||
4c4b4cd2 PH |
8314 | arity = ada_array_arity (type); |
8315 | type = ada_array_element_type (type, nargs); | |
8316 | if (type == NULL) | |
323e0a4a | 8317 | error (_("cannot subscript or call a record")); |
4c4b4cd2 | 8318 | if (arity != nargs) |
323e0a4a | 8319 | error (_("wrong number of subscripts; expecting %d"), arity); |
4c4b4cd2 PH |
8320 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
8321 | return allocate_value (ada_aligned_type (type)); | |
8322 | return | |
8323 | unwrap_value (ada_value_subscript | |
8324 | (argvec[0], nargs, argvec + 1)); | |
8325 | } | |
8326 | case TYPE_CODE_ARRAY: | |
8327 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8328 | { | |
8329 | type = ada_array_element_type (type, nargs); | |
8330 | if (type == NULL) | |
323e0a4a | 8331 | error (_("element type of array unknown")); |
4c4b4cd2 PH |
8332 | else |
8333 | return allocate_value (ada_aligned_type (type)); | |
8334 | } | |
8335 | return | |
8336 | unwrap_value (ada_value_subscript | |
8337 | (ada_coerce_to_simple_array (argvec[0]), | |
8338 | nargs, argvec + 1)); | |
8339 | case TYPE_CODE_PTR: /* Pointer to array */ | |
8340 | type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1); | |
8341 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8342 | { | |
8343 | type = ada_array_element_type (type, nargs); | |
8344 | if (type == NULL) | |
323e0a4a | 8345 | error (_("element type of array unknown")); |
4c4b4cd2 PH |
8346 | else |
8347 | return allocate_value (ada_aligned_type (type)); | |
8348 | } | |
8349 | return | |
8350 | unwrap_value (ada_value_ptr_subscript (argvec[0], type, | |
8351 | nargs, argvec + 1)); | |
8352 | ||
8353 | default: | |
e1d5a0d2 PH |
8354 | error (_("Attempt to index or call something other than an " |
8355 | "array or function")); | |
4c4b4cd2 PH |
8356 | } |
8357 | ||
8358 | case TERNOP_SLICE: | |
8359 | { | |
8360 | struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8361 | struct value *low_bound_val = | |
8362 | evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
714e53ab PH |
8363 | struct value *high_bound_val = |
8364 | evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8365 | LONGEST low_bound; | |
8366 | LONGEST high_bound; | |
994b9211 AC |
8367 | low_bound_val = coerce_ref (low_bound_val); |
8368 | high_bound_val = coerce_ref (high_bound_val); | |
714e53ab PH |
8369 | low_bound = pos_atr (low_bound_val); |
8370 | high_bound = pos_atr (high_bound_val); | |
963a6417 | 8371 | |
4c4b4cd2 PH |
8372 | if (noside == EVAL_SKIP) |
8373 | goto nosideret; | |
8374 | ||
4c4b4cd2 PH |
8375 | /* If this is a reference to an aligner type, then remove all |
8376 | the aligners. */ | |
df407dfe AC |
8377 | if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF |
8378 | && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array)))) | |
8379 | TYPE_TARGET_TYPE (value_type (array)) = | |
8380 | ada_aligned_type (TYPE_TARGET_TYPE (value_type (array))); | |
4c4b4cd2 | 8381 | |
df407dfe | 8382 | if (ada_is_packed_array_type (value_type (array))) |
323e0a4a | 8383 | error (_("cannot slice a packed array")); |
4c4b4cd2 PH |
8384 | |
8385 | /* If this is a reference to an array or an array lvalue, | |
8386 | convert to a pointer. */ | |
df407dfe AC |
8387 | if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF |
8388 | || (TYPE_CODE (value_type (array)) == TYPE_CODE_ARRAY | |
4c4b4cd2 PH |
8389 | && VALUE_LVAL (array) == lval_memory)) |
8390 | array = value_addr (array); | |
8391 | ||
1265e4aa | 8392 | if (noside == EVAL_AVOID_SIDE_EFFECTS |
61ee279c | 8393 | && ada_is_array_descriptor_type (ada_check_typedef |
df407dfe | 8394 | (value_type (array)))) |
0b5d8877 | 8395 | return empty_array (ada_type_of_array (array, 0), low_bound); |
4c4b4cd2 PH |
8396 | |
8397 | array = ada_coerce_to_simple_array_ptr (array); | |
8398 | ||
714e53ab PH |
8399 | /* If we have more than one level of pointer indirection, |
8400 | dereference the value until we get only one level. */ | |
df407dfe AC |
8401 | while (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR |
8402 | && (TYPE_CODE (TYPE_TARGET_TYPE (value_type (array))) | |
714e53ab PH |
8403 | == TYPE_CODE_PTR)) |
8404 | array = value_ind (array); | |
8405 | ||
8406 | /* Make sure we really do have an array type before going further, | |
8407 | to avoid a SEGV when trying to get the index type or the target | |
8408 | type later down the road if the debug info generated by | |
8409 | the compiler is incorrect or incomplete. */ | |
df407dfe | 8410 | if (!ada_is_simple_array_type (value_type (array))) |
323e0a4a | 8411 | error (_("cannot take slice of non-array")); |
714e53ab | 8412 | |
df407dfe | 8413 | if (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR) |
4c4b4cd2 | 8414 | { |
0b5d8877 | 8415 | if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS) |
df407dfe | 8416 | return empty_array (TYPE_TARGET_TYPE (value_type (array)), |
4c4b4cd2 PH |
8417 | low_bound); |
8418 | else | |
8419 | { | |
8420 | struct type *arr_type0 = | |
df407dfe | 8421 | to_fixed_array_type (TYPE_TARGET_TYPE (value_type (array)), |
4c4b4cd2 | 8422 | NULL, 1); |
0b5d8877 | 8423 | return ada_value_slice_ptr (array, arr_type0, |
529cad9c PH |
8424 | longest_to_int (low_bound), |
8425 | longest_to_int (high_bound)); | |
4c4b4cd2 PH |
8426 | } |
8427 | } | |
8428 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8429 | return array; | |
8430 | else if (high_bound < low_bound) | |
df407dfe | 8431 | return empty_array (value_type (array), low_bound); |
4c4b4cd2 | 8432 | else |
529cad9c PH |
8433 | return ada_value_slice (array, longest_to_int (low_bound), |
8434 | longest_to_int (high_bound)); | |
4c4b4cd2 | 8435 | } |
14f9c5c9 | 8436 | |
4c4b4cd2 PH |
8437 | case UNOP_IN_RANGE: |
8438 | (*pos) += 2; | |
8439 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8440 | type = exp->elts[pc + 1].type; | |
14f9c5c9 | 8441 | |
14f9c5c9 | 8442 | if (noside == EVAL_SKIP) |
4c4b4cd2 | 8443 | goto nosideret; |
14f9c5c9 | 8444 | |
4c4b4cd2 PH |
8445 | switch (TYPE_CODE (type)) |
8446 | { | |
8447 | default: | |
e1d5a0d2 PH |
8448 | lim_warning (_("Membership test incompletely implemented; " |
8449 | "always returns true")); | |
4c4b4cd2 PH |
8450 | return value_from_longest (builtin_type_int, (LONGEST) 1); |
8451 | ||
8452 | case TYPE_CODE_RANGE: | |
76a01679 | 8453 | arg2 = value_from_longest (builtin_type_int, TYPE_LOW_BOUND (type)); |
4c4b4cd2 PH |
8454 | arg3 = value_from_longest (builtin_type_int, |
8455 | TYPE_HIGH_BOUND (type)); | |
8456 | return | |
8457 | value_from_longest (builtin_type_int, | |
8458 | (value_less (arg1, arg3) | |
8459 | || value_equal (arg1, arg3)) | |
8460 | && (value_less (arg2, arg1) | |
8461 | || value_equal (arg2, arg1))); | |
8462 | } | |
8463 | ||
8464 | case BINOP_IN_BOUNDS: | |
14f9c5c9 | 8465 | (*pos) += 2; |
4c4b4cd2 PH |
8466 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
8467 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
14f9c5c9 | 8468 | |
4c4b4cd2 PH |
8469 | if (noside == EVAL_SKIP) |
8470 | goto nosideret; | |
14f9c5c9 | 8471 | |
4c4b4cd2 PH |
8472 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
8473 | return value_zero (builtin_type_int, not_lval); | |
14f9c5c9 | 8474 | |
4c4b4cd2 | 8475 | tem = longest_to_int (exp->elts[pc + 1].longconst); |
14f9c5c9 | 8476 | |
df407dfe | 8477 | if (tem < 1 || tem > ada_array_arity (value_type (arg2))) |
323e0a4a | 8478 | error (_("invalid dimension number to 'range")); |
14f9c5c9 | 8479 | |
4c4b4cd2 PH |
8480 | arg3 = ada_array_bound (arg2, tem, 1); |
8481 | arg2 = ada_array_bound (arg2, tem, 0); | |
d2e4a39e | 8482 | |
4c4b4cd2 PH |
8483 | return |
8484 | value_from_longest (builtin_type_int, | |
8485 | (value_less (arg1, arg3) | |
8486 | || value_equal (arg1, arg3)) | |
8487 | && (value_less (arg2, arg1) | |
8488 | || value_equal (arg2, arg1))); | |
8489 | ||
8490 | case TERNOP_IN_RANGE: | |
8491 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8492 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8493 | arg3 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8494 | ||
8495 | if (noside == EVAL_SKIP) | |
8496 | goto nosideret; | |
8497 | ||
8498 | return | |
8499 | value_from_longest (builtin_type_int, | |
8500 | (value_less (arg1, arg3) | |
8501 | || value_equal (arg1, arg3)) | |
8502 | && (value_less (arg2, arg1) | |
8503 | || value_equal (arg2, arg1))); | |
8504 | ||
8505 | case OP_ATR_FIRST: | |
8506 | case OP_ATR_LAST: | |
8507 | case OP_ATR_LENGTH: | |
8508 | { | |
76a01679 JB |
8509 | struct type *type_arg; |
8510 | if (exp->elts[*pos].opcode == OP_TYPE) | |
8511 | { | |
8512 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
8513 | arg1 = NULL; | |
8514 | type_arg = exp->elts[pc + 2].type; | |
8515 | } | |
8516 | else | |
8517 | { | |
8518 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8519 | type_arg = NULL; | |
8520 | } | |
8521 | ||
8522 | if (exp->elts[*pos].opcode != OP_LONG) | |
323e0a4a | 8523 | error (_("Invalid operand to '%s"), ada_attribute_name (op)); |
76a01679 JB |
8524 | tem = longest_to_int (exp->elts[*pos + 2].longconst); |
8525 | *pos += 4; | |
8526 | ||
8527 | if (noside == EVAL_SKIP) | |
8528 | goto nosideret; | |
8529 | ||
8530 | if (type_arg == NULL) | |
8531 | { | |
8532 | arg1 = ada_coerce_ref (arg1); | |
8533 | ||
df407dfe | 8534 | if (ada_is_packed_array_type (value_type (arg1))) |
76a01679 JB |
8535 | arg1 = ada_coerce_to_simple_array (arg1); |
8536 | ||
df407dfe | 8537 | if (tem < 1 || tem > ada_array_arity (value_type (arg1))) |
323e0a4a | 8538 | error (_("invalid dimension number to '%s"), |
76a01679 JB |
8539 | ada_attribute_name (op)); |
8540 | ||
8541 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8542 | { | |
df407dfe | 8543 | type = ada_index_type (value_type (arg1), tem); |
76a01679 JB |
8544 | if (type == NULL) |
8545 | error | |
323e0a4a | 8546 | (_("attempt to take bound of something that is not an array")); |
76a01679 JB |
8547 | return allocate_value (type); |
8548 | } | |
8549 | ||
8550 | switch (op) | |
8551 | { | |
8552 | default: /* Should never happen. */ | |
323e0a4a | 8553 | error (_("unexpected attribute encountered")); |
76a01679 JB |
8554 | case OP_ATR_FIRST: |
8555 | return ada_array_bound (arg1, tem, 0); | |
8556 | case OP_ATR_LAST: | |
8557 | return ada_array_bound (arg1, tem, 1); | |
8558 | case OP_ATR_LENGTH: | |
8559 | return ada_array_length (arg1, tem); | |
8560 | } | |
8561 | } | |
8562 | else if (discrete_type_p (type_arg)) | |
8563 | { | |
8564 | struct type *range_type; | |
8565 | char *name = ada_type_name (type_arg); | |
8566 | range_type = NULL; | |
8567 | if (name != NULL && TYPE_CODE (type_arg) != TYPE_CODE_ENUM) | |
8568 | range_type = | |
8569 | to_fixed_range_type (name, NULL, TYPE_OBJFILE (type_arg)); | |
8570 | if (range_type == NULL) | |
8571 | range_type = type_arg; | |
8572 | switch (op) | |
8573 | { | |
8574 | default: | |
323e0a4a | 8575 | error (_("unexpected attribute encountered")); |
76a01679 JB |
8576 | case OP_ATR_FIRST: |
8577 | return discrete_type_low_bound (range_type); | |
8578 | case OP_ATR_LAST: | |
8579 | return discrete_type_high_bound (range_type); | |
8580 | case OP_ATR_LENGTH: | |
323e0a4a | 8581 | error (_("the 'length attribute applies only to array types")); |
76a01679 JB |
8582 | } |
8583 | } | |
8584 | else if (TYPE_CODE (type_arg) == TYPE_CODE_FLT) | |
323e0a4a | 8585 | error (_("unimplemented type attribute")); |
76a01679 JB |
8586 | else |
8587 | { | |
8588 | LONGEST low, high; | |
8589 | ||
8590 | if (ada_is_packed_array_type (type_arg)) | |
8591 | type_arg = decode_packed_array_type (type_arg); | |
8592 | ||
8593 | if (tem < 1 || tem > ada_array_arity (type_arg)) | |
323e0a4a | 8594 | error (_("invalid dimension number to '%s"), |
76a01679 JB |
8595 | ada_attribute_name (op)); |
8596 | ||
8597 | type = ada_index_type (type_arg, tem); | |
8598 | if (type == NULL) | |
8599 | error | |
323e0a4a | 8600 | (_("attempt to take bound of something that is not an array")); |
76a01679 JB |
8601 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
8602 | return allocate_value (type); | |
8603 | ||
8604 | switch (op) | |
8605 | { | |
8606 | default: | |
323e0a4a | 8607 | error (_("unexpected attribute encountered")); |
76a01679 JB |
8608 | case OP_ATR_FIRST: |
8609 | low = ada_array_bound_from_type (type_arg, tem, 0, &type); | |
8610 | return value_from_longest (type, low); | |
8611 | case OP_ATR_LAST: | |
8612 | high = ada_array_bound_from_type (type_arg, tem, 1, &type); | |
8613 | return value_from_longest (type, high); | |
8614 | case OP_ATR_LENGTH: | |
8615 | low = ada_array_bound_from_type (type_arg, tem, 0, &type); | |
8616 | high = ada_array_bound_from_type (type_arg, tem, 1, NULL); | |
8617 | return value_from_longest (type, high - low + 1); | |
8618 | } | |
8619 | } | |
14f9c5c9 AS |
8620 | } |
8621 | ||
4c4b4cd2 PH |
8622 | case OP_ATR_TAG: |
8623 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8624 | if (noside == EVAL_SKIP) | |
76a01679 | 8625 | goto nosideret; |
4c4b4cd2 PH |
8626 | |
8627 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
76a01679 | 8628 | return value_zero (ada_tag_type (arg1), not_lval); |
4c4b4cd2 PH |
8629 | |
8630 | return ada_value_tag (arg1); | |
8631 | ||
8632 | case OP_ATR_MIN: | |
8633 | case OP_ATR_MAX: | |
8634 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
14f9c5c9 AS |
8635 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
8636 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8637 | if (noside == EVAL_SKIP) | |
76a01679 | 8638 | goto nosideret; |
d2e4a39e | 8639 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
df407dfe | 8640 | return value_zero (value_type (arg1), not_lval); |
14f9c5c9 | 8641 | else |
76a01679 JB |
8642 | return value_binop (arg1, arg2, |
8643 | op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX); | |
14f9c5c9 | 8644 | |
4c4b4cd2 PH |
8645 | case OP_ATR_MODULUS: |
8646 | { | |
76a01679 JB |
8647 | struct type *type_arg = exp->elts[pc + 2].type; |
8648 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
4c4b4cd2 | 8649 | |
76a01679 JB |
8650 | if (noside == EVAL_SKIP) |
8651 | goto nosideret; | |
4c4b4cd2 | 8652 | |
76a01679 | 8653 | if (!ada_is_modular_type (type_arg)) |
323e0a4a | 8654 | error (_("'modulus must be applied to modular type")); |
4c4b4cd2 | 8655 | |
76a01679 JB |
8656 | return value_from_longest (TYPE_TARGET_TYPE (type_arg), |
8657 | ada_modulus (type_arg)); | |
4c4b4cd2 PH |
8658 | } |
8659 | ||
8660 | ||
8661 | case OP_ATR_POS: | |
8662 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
14f9c5c9 AS |
8663 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
8664 | if (noside == EVAL_SKIP) | |
76a01679 | 8665 | goto nosideret; |
4c4b4cd2 | 8666 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
72d5681a | 8667 | return value_zero (builtin_type_int, not_lval); |
14f9c5c9 | 8668 | else |
76a01679 | 8669 | return value_pos_atr (arg1); |
14f9c5c9 | 8670 | |
4c4b4cd2 PH |
8671 | case OP_ATR_SIZE: |
8672 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8673 | if (noside == EVAL_SKIP) | |
76a01679 | 8674 | goto nosideret; |
4c4b4cd2 | 8675 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
72d5681a | 8676 | return value_zero (builtin_type_int, not_lval); |
4c4b4cd2 | 8677 | else |
72d5681a | 8678 | return value_from_longest (builtin_type_int, |
76a01679 | 8679 | TARGET_CHAR_BIT |
df407dfe | 8680 | * TYPE_LENGTH (value_type (arg1))); |
4c4b4cd2 PH |
8681 | |
8682 | case OP_ATR_VAL: | |
8683 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
14f9c5c9 | 8684 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
4c4b4cd2 | 8685 | type = exp->elts[pc + 2].type; |
14f9c5c9 | 8686 | if (noside == EVAL_SKIP) |
76a01679 | 8687 | goto nosideret; |
4c4b4cd2 | 8688 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
76a01679 | 8689 | return value_zero (type, not_lval); |
4c4b4cd2 | 8690 | else |
76a01679 | 8691 | return value_val_atr (type, arg1); |
4c4b4cd2 PH |
8692 | |
8693 | case BINOP_EXP: | |
8694 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8695 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8696 | if (noside == EVAL_SKIP) | |
8697 | goto nosideret; | |
8698 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
df407dfe | 8699 | return value_zero (value_type (arg1), not_lval); |
4c4b4cd2 PH |
8700 | else |
8701 | return value_binop (arg1, arg2, op); | |
8702 | ||
8703 | case UNOP_PLUS: | |
8704 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8705 | if (noside == EVAL_SKIP) | |
8706 | goto nosideret; | |
8707 | else | |
8708 | return arg1; | |
8709 | ||
8710 | case UNOP_ABS: | |
8711 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8712 | if (noside == EVAL_SKIP) | |
8713 | goto nosideret; | |
df407dfe | 8714 | if (value_less (arg1, value_zero (value_type (arg1), not_lval))) |
4c4b4cd2 | 8715 | return value_neg (arg1); |
14f9c5c9 | 8716 | else |
4c4b4cd2 | 8717 | return arg1; |
14f9c5c9 AS |
8718 | |
8719 | case UNOP_IND: | |
8720 | if (expect_type && TYPE_CODE (expect_type) == TYPE_CODE_PTR) | |
61ee279c | 8721 | expect_type = TYPE_TARGET_TYPE (ada_check_typedef (expect_type)); |
14f9c5c9 AS |
8722 | arg1 = evaluate_subexp (expect_type, exp, pos, noside); |
8723 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8724 | goto nosideret; |
df407dfe | 8725 | type = ada_check_typedef (value_type (arg1)); |
14f9c5c9 | 8726 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
4c4b4cd2 PH |
8727 | { |
8728 | if (ada_is_array_descriptor_type (type)) | |
8729 | /* GDB allows dereferencing GNAT array descriptors. */ | |
8730 | { | |
8731 | struct type *arrType = ada_type_of_array (arg1, 0); | |
8732 | if (arrType == NULL) | |
323e0a4a | 8733 | error (_("Attempt to dereference null array pointer.")); |
00a4c844 | 8734 | return value_at_lazy (arrType, 0); |
4c4b4cd2 PH |
8735 | } |
8736 | else if (TYPE_CODE (type) == TYPE_CODE_PTR | |
8737 | || TYPE_CODE (type) == TYPE_CODE_REF | |
8738 | /* In C you can dereference an array to get the 1st elt. */ | |
8739 | || TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
714e53ab PH |
8740 | { |
8741 | type = to_static_fixed_type | |
8742 | (ada_aligned_type | |
8743 | (ada_check_typedef (TYPE_TARGET_TYPE (type)))); | |
8744 | check_size (type); | |
8745 | return value_zero (type, lval_memory); | |
8746 | } | |
4c4b4cd2 PH |
8747 | else if (TYPE_CODE (type) == TYPE_CODE_INT) |
8748 | /* GDB allows dereferencing an int. */ | |
8749 | return value_zero (builtin_type_int, lval_memory); | |
8750 | else | |
323e0a4a | 8751 | error (_("Attempt to take contents of a non-pointer value.")); |
4c4b4cd2 | 8752 | } |
76a01679 | 8753 | arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */ |
df407dfe | 8754 | type = ada_check_typedef (value_type (arg1)); |
d2e4a39e | 8755 | |
4c4b4cd2 PH |
8756 | if (ada_is_array_descriptor_type (type)) |
8757 | /* GDB allows dereferencing GNAT array descriptors. */ | |
8758 | return ada_coerce_to_simple_array (arg1); | |
14f9c5c9 | 8759 | else |
4c4b4cd2 | 8760 | return ada_value_ind (arg1); |
14f9c5c9 AS |
8761 | |
8762 | case STRUCTOP_STRUCT: | |
8763 | tem = longest_to_int (exp->elts[pc + 1].longconst); | |
8764 | (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1); | |
8765 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8766 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8767 | goto nosideret; |
14f9c5c9 | 8768 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
76a01679 | 8769 | { |
df407dfe | 8770 | struct type *type1 = value_type (arg1); |
76a01679 JB |
8771 | if (ada_is_tagged_type (type1, 1)) |
8772 | { | |
8773 | type = ada_lookup_struct_elt_type (type1, | |
8774 | &exp->elts[pc + 2].string, | |
8775 | 1, 1, NULL); | |
8776 | if (type == NULL) | |
8777 | /* In this case, we assume that the field COULD exist | |
8778 | in some extension of the type. Return an object of | |
8779 | "type" void, which will match any formal | |
8780 | (see ada_type_match). */ | |
8781 | return value_zero (builtin_type_void, lval_memory); | |
8782 | } | |
8783 | else | |
8784 | type = | |
8785 | ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1, | |
8786 | 0, NULL); | |
8787 | ||
8788 | return value_zero (ada_aligned_type (type), lval_memory); | |
8789 | } | |
14f9c5c9 | 8790 | else |
76a01679 JB |
8791 | return |
8792 | ada_to_fixed_value (unwrap_value | |
8793 | (ada_value_struct_elt | |
03ee6b2e | 8794 | (arg1, &exp->elts[pc + 2].string, 0))); |
14f9c5c9 | 8795 | case OP_TYPE: |
4c4b4cd2 PH |
8796 | /* The value is not supposed to be used. This is here to make it |
8797 | easier to accommodate expressions that contain types. */ | |
14f9c5c9 AS |
8798 | (*pos) += 2; |
8799 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8800 | goto nosideret; |
14f9c5c9 | 8801 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
a6cfbe68 | 8802 | return allocate_value (exp->elts[pc + 1].type); |
14f9c5c9 | 8803 | else |
323e0a4a | 8804 | error (_("Attempt to use a type name as an expression")); |
52ce6436 PH |
8805 | |
8806 | case OP_AGGREGATE: | |
8807 | case OP_CHOICES: | |
8808 | case OP_OTHERS: | |
8809 | case OP_DISCRETE_RANGE: | |
8810 | case OP_POSITIONAL: | |
8811 | case OP_NAME: | |
8812 | if (noside == EVAL_NORMAL) | |
8813 | switch (op) | |
8814 | { | |
8815 | case OP_NAME: | |
8816 | error (_("Undefined name, ambiguous name, or renaming used in " | |
e1d5a0d2 | 8817 | "component association: %s."), &exp->elts[pc+2].string); |
52ce6436 PH |
8818 | case OP_AGGREGATE: |
8819 | error (_("Aggregates only allowed on the right of an assignment")); | |
8820 | default: | |
e1d5a0d2 | 8821 | internal_error (__FILE__, __LINE__, _("aggregate apparently mangled")); |
52ce6436 PH |
8822 | } |
8823 | ||
8824 | ada_forward_operator_length (exp, pc, &oplen, &nargs); | |
8825 | *pos += oplen - 1; | |
8826 | for (tem = 0; tem < nargs; tem += 1) | |
8827 | ada_evaluate_subexp (NULL, exp, pos, noside); | |
8828 | goto nosideret; | |
14f9c5c9 AS |
8829 | } |
8830 | ||
8831 | nosideret: | |
8832 | return value_from_longest (builtin_type_long, (LONGEST) 1); | |
8833 | } | |
14f9c5c9 | 8834 | \f |
d2e4a39e | 8835 | |
4c4b4cd2 | 8836 | /* Fixed point */ |
14f9c5c9 AS |
8837 | |
8838 | /* If TYPE encodes an Ada fixed-point type, return the suffix of the | |
8839 | type name that encodes the 'small and 'delta information. | |
4c4b4cd2 | 8840 | Otherwise, return NULL. */ |
14f9c5c9 | 8841 | |
d2e4a39e | 8842 | static const char * |
ebf56fd3 | 8843 | fixed_type_info (struct type *type) |
14f9c5c9 | 8844 | { |
d2e4a39e | 8845 | const char *name = ada_type_name (type); |
14f9c5c9 AS |
8846 | enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : TYPE_CODE (type); |
8847 | ||
d2e4a39e AS |
8848 | if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL) |
8849 | { | |
14f9c5c9 AS |
8850 | const char *tail = strstr (name, "___XF_"); |
8851 | if (tail == NULL) | |
4c4b4cd2 | 8852 | return NULL; |
d2e4a39e | 8853 | else |
4c4b4cd2 | 8854 | return tail + 5; |
14f9c5c9 AS |
8855 | } |
8856 | else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type) | |
8857 | return fixed_type_info (TYPE_TARGET_TYPE (type)); | |
8858 | else | |
8859 | return NULL; | |
8860 | } | |
8861 | ||
4c4b4cd2 | 8862 | /* Returns non-zero iff TYPE represents an Ada fixed-point type. */ |
14f9c5c9 AS |
8863 | |
8864 | int | |
ebf56fd3 | 8865 | ada_is_fixed_point_type (struct type *type) |
14f9c5c9 AS |
8866 | { |
8867 | return fixed_type_info (type) != NULL; | |
8868 | } | |
8869 | ||
4c4b4cd2 PH |
8870 | /* Return non-zero iff TYPE represents a System.Address type. */ |
8871 | ||
8872 | int | |
8873 | ada_is_system_address_type (struct type *type) | |
8874 | { | |
8875 | return (TYPE_NAME (type) | |
8876 | && strcmp (TYPE_NAME (type), "system__address") == 0); | |
8877 | } | |
8878 | ||
14f9c5c9 AS |
8879 | /* Assuming that TYPE is the representation of an Ada fixed-point |
8880 | type, return its delta, or -1 if the type is malformed and the | |
4c4b4cd2 | 8881 | delta cannot be determined. */ |
14f9c5c9 AS |
8882 | |
8883 | DOUBLEST | |
ebf56fd3 | 8884 | ada_delta (struct type *type) |
14f9c5c9 AS |
8885 | { |
8886 | const char *encoding = fixed_type_info (type); | |
8887 | long num, den; | |
8888 | ||
8889 | if (sscanf (encoding, "_%ld_%ld", &num, &den) < 2) | |
8890 | return -1.0; | |
d2e4a39e | 8891 | else |
14f9c5c9 AS |
8892 | return (DOUBLEST) num / (DOUBLEST) den; |
8893 | } | |
8894 | ||
8895 | /* Assuming that ada_is_fixed_point_type (TYPE), return the scaling | |
4c4b4cd2 | 8896 | factor ('SMALL value) associated with the type. */ |
14f9c5c9 AS |
8897 | |
8898 | static DOUBLEST | |
ebf56fd3 | 8899 | scaling_factor (struct type *type) |
14f9c5c9 AS |
8900 | { |
8901 | const char *encoding = fixed_type_info (type); | |
8902 | unsigned long num0, den0, num1, den1; | |
8903 | int n; | |
d2e4a39e | 8904 | |
14f9c5c9 AS |
8905 | n = sscanf (encoding, "_%lu_%lu_%lu_%lu", &num0, &den0, &num1, &den1); |
8906 | ||
8907 | if (n < 2) | |
8908 | return 1.0; | |
8909 | else if (n == 4) | |
8910 | return (DOUBLEST) num1 / (DOUBLEST) den1; | |
d2e4a39e | 8911 | else |
14f9c5c9 AS |
8912 | return (DOUBLEST) num0 / (DOUBLEST) den0; |
8913 | } | |
8914 | ||
8915 | ||
8916 | /* Assuming that X is the representation of a value of fixed-point | |
4c4b4cd2 | 8917 | type TYPE, return its floating-point equivalent. */ |
14f9c5c9 AS |
8918 | |
8919 | DOUBLEST | |
ebf56fd3 | 8920 | ada_fixed_to_float (struct type *type, LONGEST x) |
14f9c5c9 | 8921 | { |
d2e4a39e | 8922 | return (DOUBLEST) x *scaling_factor (type); |
14f9c5c9 AS |
8923 | } |
8924 | ||
4c4b4cd2 PH |
8925 | /* The representation of a fixed-point value of type TYPE |
8926 | corresponding to the value X. */ | |
14f9c5c9 AS |
8927 | |
8928 | LONGEST | |
ebf56fd3 | 8929 | ada_float_to_fixed (struct type *type, DOUBLEST x) |
14f9c5c9 AS |
8930 | { |
8931 | return (LONGEST) (x / scaling_factor (type) + 0.5); | |
8932 | } | |
8933 | ||
8934 | ||
4c4b4cd2 | 8935 | /* VAX floating formats */ |
14f9c5c9 AS |
8936 | |
8937 | /* Non-zero iff TYPE represents one of the special VAX floating-point | |
4c4b4cd2 PH |
8938 | types. */ |
8939 | ||
14f9c5c9 | 8940 | int |
d2e4a39e | 8941 | ada_is_vax_floating_type (struct type *type) |
14f9c5c9 | 8942 | { |
d2e4a39e | 8943 | int name_len = |
14f9c5c9 | 8944 | (ada_type_name (type) == NULL) ? 0 : strlen (ada_type_name (type)); |
d2e4a39e | 8945 | return |
14f9c5c9 | 8946 | name_len > 6 |
d2e4a39e | 8947 | && (TYPE_CODE (type) == TYPE_CODE_INT |
4c4b4cd2 PH |
8948 | || TYPE_CODE (type) == TYPE_CODE_RANGE) |
8949 | && strncmp (ada_type_name (type) + name_len - 6, "___XF", 5) == 0; | |
14f9c5c9 AS |
8950 | } |
8951 | ||
8952 | /* The type of special VAX floating-point type this is, assuming | |
4c4b4cd2 PH |
8953 | ada_is_vax_floating_point. */ |
8954 | ||
14f9c5c9 | 8955 | int |
d2e4a39e | 8956 | ada_vax_float_type_suffix (struct type *type) |
14f9c5c9 | 8957 | { |
d2e4a39e | 8958 | return ada_type_name (type)[strlen (ada_type_name (type)) - 1]; |
14f9c5c9 AS |
8959 | } |
8960 | ||
4c4b4cd2 | 8961 | /* A value representing the special debugging function that outputs |
14f9c5c9 | 8962 | VAX floating-point values of the type represented by TYPE. Assumes |
4c4b4cd2 PH |
8963 | ada_is_vax_floating_type (TYPE). */ |
8964 | ||
d2e4a39e AS |
8965 | struct value * |
8966 | ada_vax_float_print_function (struct type *type) | |
8967 | { | |
8968 | switch (ada_vax_float_type_suffix (type)) | |
8969 | { | |
8970 | case 'F': | |
8971 | return get_var_value ("DEBUG_STRING_F", 0); | |
8972 | case 'D': | |
8973 | return get_var_value ("DEBUG_STRING_D", 0); | |
8974 | case 'G': | |
8975 | return get_var_value ("DEBUG_STRING_G", 0); | |
8976 | default: | |
323e0a4a | 8977 | error (_("invalid VAX floating-point type")); |
d2e4a39e | 8978 | } |
14f9c5c9 | 8979 | } |
14f9c5c9 | 8980 | \f |
d2e4a39e | 8981 | |
4c4b4cd2 | 8982 | /* Range types */ |
14f9c5c9 AS |
8983 | |
8984 | /* Scan STR beginning at position K for a discriminant name, and | |
8985 | return the value of that discriminant field of DVAL in *PX. If | |
8986 | PNEW_K is not null, put the position of the character beyond the | |
8987 | name scanned in *PNEW_K. Return 1 if successful; return 0 and do | |
4c4b4cd2 | 8988 | not alter *PX and *PNEW_K if unsuccessful. */ |
14f9c5c9 AS |
8989 | |
8990 | static int | |
07d8f827 | 8991 | scan_discrim_bound (char *str, int k, struct value *dval, LONGEST * px, |
76a01679 | 8992 | int *pnew_k) |
14f9c5c9 AS |
8993 | { |
8994 | static char *bound_buffer = NULL; | |
8995 | static size_t bound_buffer_len = 0; | |
8996 | char *bound; | |
8997 | char *pend; | |
d2e4a39e | 8998 | struct value *bound_val; |
14f9c5c9 AS |
8999 | |
9000 | if (dval == NULL || str == NULL || str[k] == '\0') | |
9001 | return 0; | |
9002 | ||
d2e4a39e | 9003 | pend = strstr (str + k, "__"); |
14f9c5c9 AS |
9004 | if (pend == NULL) |
9005 | { | |
d2e4a39e | 9006 | bound = str + k; |
14f9c5c9 AS |
9007 | k += strlen (bound); |
9008 | } | |
d2e4a39e | 9009 | else |
14f9c5c9 | 9010 | { |
d2e4a39e | 9011 | GROW_VECT (bound_buffer, bound_buffer_len, pend - (str + k) + 1); |
14f9c5c9 | 9012 | bound = bound_buffer; |
d2e4a39e AS |
9013 | strncpy (bound_buffer, str + k, pend - (str + k)); |
9014 | bound[pend - (str + k)] = '\0'; | |
9015 | k = pend - str; | |
14f9c5c9 | 9016 | } |
d2e4a39e | 9017 | |
df407dfe | 9018 | bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval)); |
14f9c5c9 AS |
9019 | if (bound_val == NULL) |
9020 | return 0; | |
9021 | ||
9022 | *px = value_as_long (bound_val); | |
9023 | if (pnew_k != NULL) | |
9024 | *pnew_k = k; | |
9025 | return 1; | |
9026 | } | |
9027 | ||
9028 | /* Value of variable named NAME in the current environment. If | |
9029 | no such variable found, then if ERR_MSG is null, returns 0, and | |
4c4b4cd2 PH |
9030 | otherwise causes an error with message ERR_MSG. */ |
9031 | ||
d2e4a39e AS |
9032 | static struct value * |
9033 | get_var_value (char *name, char *err_msg) | |
14f9c5c9 | 9034 | { |
4c4b4cd2 | 9035 | struct ada_symbol_info *syms; |
14f9c5c9 AS |
9036 | int nsyms; |
9037 | ||
4c4b4cd2 PH |
9038 | nsyms = ada_lookup_symbol_list (name, get_selected_block (0), VAR_DOMAIN, |
9039 | &syms); | |
14f9c5c9 AS |
9040 | |
9041 | if (nsyms != 1) | |
9042 | { | |
9043 | if (err_msg == NULL) | |
4c4b4cd2 | 9044 | return 0; |
14f9c5c9 | 9045 | else |
8a3fe4f8 | 9046 | error (("%s"), err_msg); |
14f9c5c9 AS |
9047 | } |
9048 | ||
4c4b4cd2 | 9049 | return value_of_variable (syms[0].sym, syms[0].block); |
14f9c5c9 | 9050 | } |
d2e4a39e | 9051 | |
14f9c5c9 | 9052 | /* Value of integer variable named NAME in the current environment. If |
4c4b4cd2 PH |
9053 | no such variable found, returns 0, and sets *FLAG to 0. If |
9054 | successful, sets *FLAG to 1. */ | |
9055 | ||
14f9c5c9 | 9056 | LONGEST |
4c4b4cd2 | 9057 | get_int_var_value (char *name, int *flag) |
14f9c5c9 | 9058 | { |
4c4b4cd2 | 9059 | struct value *var_val = get_var_value (name, 0); |
d2e4a39e | 9060 | |
14f9c5c9 AS |
9061 | if (var_val == 0) |
9062 | { | |
9063 | if (flag != NULL) | |
4c4b4cd2 | 9064 | *flag = 0; |
14f9c5c9 AS |
9065 | return 0; |
9066 | } | |
9067 | else | |
9068 | { | |
9069 | if (flag != NULL) | |
4c4b4cd2 | 9070 | *flag = 1; |
14f9c5c9 AS |
9071 | return value_as_long (var_val); |
9072 | } | |
9073 | } | |
d2e4a39e | 9074 | |
14f9c5c9 AS |
9075 | |
9076 | /* Return a range type whose base type is that of the range type named | |
9077 | NAME in the current environment, and whose bounds are calculated | |
4c4b4cd2 | 9078 | from NAME according to the GNAT range encoding conventions. |
14f9c5c9 AS |
9079 | Extract discriminant values, if needed, from DVAL. If a new type |
9080 | must be created, allocate in OBJFILE's space. The bounds | |
9081 | information, in general, is encoded in NAME, the base type given in | |
4c4b4cd2 | 9082 | the named range type. */ |
14f9c5c9 | 9083 | |
d2e4a39e | 9084 | static struct type * |
ebf56fd3 | 9085 | to_fixed_range_type (char *name, struct value *dval, struct objfile *objfile) |
14f9c5c9 AS |
9086 | { |
9087 | struct type *raw_type = ada_find_any_type (name); | |
9088 | struct type *base_type; | |
d2e4a39e | 9089 | char *subtype_info; |
14f9c5c9 AS |
9090 | |
9091 | if (raw_type == NULL) | |
9092 | base_type = builtin_type_int; | |
9093 | else if (TYPE_CODE (raw_type) == TYPE_CODE_RANGE) | |
9094 | base_type = TYPE_TARGET_TYPE (raw_type); | |
9095 | else | |
9096 | base_type = raw_type; | |
9097 | ||
9098 | subtype_info = strstr (name, "___XD"); | |
9099 | if (subtype_info == NULL) | |
9100 | return raw_type; | |
9101 | else | |
9102 | { | |
9103 | static char *name_buf = NULL; | |
9104 | static size_t name_len = 0; | |
9105 | int prefix_len = subtype_info - name; | |
9106 | LONGEST L, U; | |
9107 | struct type *type; | |
9108 | char *bounds_str; | |
9109 | int n; | |
9110 | ||
9111 | GROW_VECT (name_buf, name_len, prefix_len + 5); | |
9112 | strncpy (name_buf, name, prefix_len); | |
9113 | name_buf[prefix_len] = '\0'; | |
9114 | ||
9115 | subtype_info += 5; | |
9116 | bounds_str = strchr (subtype_info, '_'); | |
9117 | n = 1; | |
9118 | ||
d2e4a39e | 9119 | if (*subtype_info == 'L') |
4c4b4cd2 PH |
9120 | { |
9121 | if (!ada_scan_number (bounds_str, n, &L, &n) | |
9122 | && !scan_discrim_bound (bounds_str, n, dval, &L, &n)) | |
9123 | return raw_type; | |
9124 | if (bounds_str[n] == '_') | |
9125 | n += 2; | |
9126 | else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */ | |
9127 | n += 1; | |
9128 | subtype_info += 1; | |
9129 | } | |
d2e4a39e | 9130 | else |
4c4b4cd2 PH |
9131 | { |
9132 | int ok; | |
9133 | strcpy (name_buf + prefix_len, "___L"); | |
9134 | L = get_int_var_value (name_buf, &ok); | |
9135 | if (!ok) | |
9136 | { | |
323e0a4a | 9137 | lim_warning (_("Unknown lower bound, using 1.")); |
4c4b4cd2 PH |
9138 | L = 1; |
9139 | } | |
9140 | } | |
14f9c5c9 | 9141 | |
d2e4a39e | 9142 | if (*subtype_info == 'U') |
4c4b4cd2 PH |
9143 | { |
9144 | if (!ada_scan_number (bounds_str, n, &U, &n) | |
9145 | && !scan_discrim_bound (bounds_str, n, dval, &U, &n)) | |
9146 | return raw_type; | |
9147 | } | |
d2e4a39e | 9148 | else |
4c4b4cd2 PH |
9149 | { |
9150 | int ok; | |
9151 | strcpy (name_buf + prefix_len, "___U"); | |
9152 | U = get_int_var_value (name_buf, &ok); | |
9153 | if (!ok) | |
9154 | { | |
323e0a4a | 9155 | lim_warning (_("Unknown upper bound, using %ld."), (long) L); |
4c4b4cd2 PH |
9156 | U = L; |
9157 | } | |
9158 | } | |
14f9c5c9 | 9159 | |
d2e4a39e | 9160 | if (objfile == NULL) |
4c4b4cd2 | 9161 | objfile = TYPE_OBJFILE (base_type); |
14f9c5c9 | 9162 | type = create_range_type (alloc_type (objfile), base_type, L, U); |
d2e4a39e | 9163 | TYPE_NAME (type) = name; |
14f9c5c9 AS |
9164 | return type; |
9165 | } | |
9166 | } | |
9167 | ||
4c4b4cd2 PH |
9168 | /* True iff NAME is the name of a range type. */ |
9169 | ||
14f9c5c9 | 9170 | int |
d2e4a39e | 9171 | ada_is_range_type_name (const char *name) |
14f9c5c9 AS |
9172 | { |
9173 | return (name != NULL && strstr (name, "___XD")); | |
d2e4a39e | 9174 | } |
14f9c5c9 | 9175 | \f |
d2e4a39e | 9176 | |
4c4b4cd2 PH |
9177 | /* Modular types */ |
9178 | ||
9179 | /* True iff TYPE is an Ada modular type. */ | |
14f9c5c9 | 9180 | |
14f9c5c9 | 9181 | int |
d2e4a39e | 9182 | ada_is_modular_type (struct type *type) |
14f9c5c9 | 9183 | { |
4c4b4cd2 | 9184 | struct type *subranged_type = base_type (type); |
14f9c5c9 AS |
9185 | |
9186 | return (subranged_type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE | |
4c4b4cd2 PH |
9187 | && TYPE_CODE (subranged_type) != TYPE_CODE_ENUM |
9188 | && TYPE_UNSIGNED (subranged_type)); | |
14f9c5c9 AS |
9189 | } |
9190 | ||
4c4b4cd2 PH |
9191 | /* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */ |
9192 | ||
61ee279c | 9193 | ULONGEST |
d2e4a39e | 9194 | ada_modulus (struct type * type) |
14f9c5c9 | 9195 | { |
61ee279c | 9196 | return (ULONGEST) TYPE_HIGH_BOUND (type) + 1; |
14f9c5c9 | 9197 | } |
d2e4a39e | 9198 | \f |
f7f9143b JB |
9199 | |
9200 | /* Ada exception catchpoint support: | |
9201 | --------------------------------- | |
9202 | ||
9203 | We support 3 kinds of exception catchpoints: | |
9204 | . catchpoints on Ada exceptions | |
9205 | . catchpoints on unhandled Ada exceptions | |
9206 | . catchpoints on failed assertions | |
9207 | ||
9208 | Exceptions raised during failed assertions, or unhandled exceptions | |
9209 | could perfectly be caught with the general catchpoint on Ada exceptions. | |
9210 | However, we can easily differentiate these two special cases, and having | |
9211 | the option to distinguish these two cases from the rest can be useful | |
9212 | to zero-in on certain situations. | |
9213 | ||
9214 | Exception catchpoints are a specialized form of breakpoint, | |
9215 | since they rely on inserting breakpoints inside known routines | |
9216 | of the GNAT runtime. The implementation therefore uses a standard | |
9217 | breakpoint structure of the BP_BREAKPOINT type, but with its own set | |
9218 | of breakpoint_ops. | |
9219 | ||
0259addd JB |
9220 | Support in the runtime for exception catchpoints have been changed |
9221 | a few times already, and these changes affect the implementation | |
9222 | of these catchpoints. In order to be able to support several | |
9223 | variants of the runtime, we use a sniffer that will determine | |
9224 | the runtime variant used by the program being debugged. | |
9225 | ||
f7f9143b JB |
9226 | At this time, we do not support the use of conditions on Ada exception |
9227 | catchpoints. The COND and COND_STRING fields are therefore set | |
9228 | to NULL (most of the time, see below). | |
9229 | ||
9230 | Conditions where EXP_STRING, COND, and COND_STRING are used: | |
9231 | ||
9232 | When a user specifies the name of a specific exception in the case | |
9233 | of catchpoints on Ada exceptions, we store the name of that exception | |
9234 | in the EXP_STRING. We then translate this request into an actual | |
9235 | condition stored in COND_STRING, and then parse it into an expression | |
9236 | stored in COND. */ | |
9237 | ||
9238 | /* The different types of catchpoints that we introduced for catching | |
9239 | Ada exceptions. */ | |
9240 | ||
9241 | enum exception_catchpoint_kind | |
9242 | { | |
9243 | ex_catch_exception, | |
9244 | ex_catch_exception_unhandled, | |
9245 | ex_catch_assert | |
9246 | }; | |
9247 | ||
0259addd JB |
9248 | typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void); |
9249 | ||
9250 | /* A structure that describes how to support exception catchpoints | |
9251 | for a given executable. */ | |
9252 | ||
9253 | struct exception_support_info | |
9254 | { | |
9255 | /* The name of the symbol to break on in order to insert | |
9256 | a catchpoint on exceptions. */ | |
9257 | const char *catch_exception_sym; | |
9258 | ||
9259 | /* The name of the symbol to break on in order to insert | |
9260 | a catchpoint on unhandled exceptions. */ | |
9261 | const char *catch_exception_unhandled_sym; | |
9262 | ||
9263 | /* The name of the symbol to break on in order to insert | |
9264 | a catchpoint on failed assertions. */ | |
9265 | const char *catch_assert_sym; | |
9266 | ||
9267 | /* Assuming that the inferior just triggered an unhandled exception | |
9268 | catchpoint, this function is responsible for returning the address | |
9269 | in inferior memory where the name of that exception is stored. | |
9270 | Return zero if the address could not be computed. */ | |
9271 | ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr; | |
9272 | }; | |
9273 | ||
9274 | static CORE_ADDR ada_unhandled_exception_name_addr (void); | |
9275 | static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void); | |
9276 | ||
9277 | /* The following exception support info structure describes how to | |
9278 | implement exception catchpoints with the latest version of the | |
9279 | Ada runtime (as of 2007-03-06). */ | |
9280 | ||
9281 | static const struct exception_support_info default_exception_support_info = | |
9282 | { | |
9283 | "__gnat_debug_raise_exception", /* catch_exception_sym */ | |
9284 | "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */ | |
9285 | "__gnat_debug_raise_assert_failure", /* catch_assert_sym */ | |
9286 | ada_unhandled_exception_name_addr | |
9287 | }; | |
9288 | ||
9289 | /* The following exception support info structure describes how to | |
9290 | implement exception catchpoints with a slightly older version | |
9291 | of the Ada runtime. */ | |
9292 | ||
9293 | static const struct exception_support_info exception_support_info_fallback = | |
9294 | { | |
9295 | "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */ | |
9296 | "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */ | |
9297 | "system__assertions__raise_assert_failure", /* catch_assert_sym */ | |
9298 | ada_unhandled_exception_name_addr_from_raise | |
9299 | }; | |
9300 | ||
9301 | /* For each executable, we sniff which exception info structure to use | |
9302 | and cache it in the following global variable. */ | |
9303 | ||
9304 | static const struct exception_support_info *exception_info = NULL; | |
9305 | ||
9306 | /* Inspect the Ada runtime and determine which exception info structure | |
9307 | should be used to provide support for exception catchpoints. | |
9308 | ||
9309 | This function will always set exception_info, or raise an error. */ | |
9310 | ||
9311 | static void | |
9312 | ada_exception_support_info_sniffer (void) | |
9313 | { | |
9314 | struct symbol *sym; | |
9315 | ||
9316 | /* If the exception info is already known, then no need to recompute it. */ | |
9317 | if (exception_info != NULL) | |
9318 | return; | |
9319 | ||
9320 | /* Check the latest (default) exception support info. */ | |
9321 | sym = standard_lookup (default_exception_support_info.catch_exception_sym, | |
9322 | NULL, VAR_DOMAIN); | |
9323 | if (sym != NULL) | |
9324 | { | |
9325 | exception_info = &default_exception_support_info; | |
9326 | return; | |
9327 | } | |
9328 | ||
9329 | /* Try our fallback exception suport info. */ | |
9330 | sym = standard_lookup (exception_support_info_fallback.catch_exception_sym, | |
9331 | NULL, VAR_DOMAIN); | |
9332 | if (sym != NULL) | |
9333 | { | |
9334 | exception_info = &exception_support_info_fallback; | |
9335 | return; | |
9336 | } | |
9337 | ||
9338 | /* Sometimes, it is normal for us to not be able to find the routine | |
9339 | we are looking for. This happens when the program is linked with | |
9340 | the shared version of the GNAT runtime, and the program has not been | |
9341 | started yet. Inform the user of these two possible causes if | |
9342 | applicable. */ | |
9343 | ||
9344 | if (ada_update_initial_language (language_unknown, NULL) != language_ada) | |
9345 | error (_("Unable to insert catchpoint. Is this an Ada main program?")); | |
9346 | ||
9347 | /* If the symbol does not exist, then check that the program is | |
9348 | already started, to make sure that shared libraries have been | |
9349 | loaded. If it is not started, this may mean that the symbol is | |
9350 | in a shared library. */ | |
9351 | ||
9352 | if (ptid_get_pid (inferior_ptid) == 0) | |
9353 | error (_("Unable to insert catchpoint. Try to start the program first.")); | |
9354 | ||
9355 | /* At this point, we know that we are debugging an Ada program and | |
9356 | that the inferior has been started, but we still are not able to | |
9357 | find the run-time symbols. That can mean that we are in | |
9358 | configurable run time mode, or that a-except as been optimized | |
9359 | out by the linker... In any case, at this point it is not worth | |
9360 | supporting this feature. */ | |
9361 | ||
9362 | error (_("Cannot insert catchpoints in this configuration.")); | |
9363 | } | |
9364 | ||
9365 | /* An observer of "executable_changed" events. | |
9366 | Its role is to clear certain cached values that need to be recomputed | |
9367 | each time a new executable is loaded by GDB. */ | |
9368 | ||
9369 | static void | |
9370 | ada_executable_changed_observer (void *unused) | |
9371 | { | |
9372 | /* If the executable changed, then it is possible that the Ada runtime | |
9373 | is different. So we need to invalidate the exception support info | |
9374 | cache. */ | |
9375 | exception_info = NULL; | |
9376 | } | |
9377 | ||
f7f9143b JB |
9378 | /* Return the name of the function at PC, NULL if could not find it. |
9379 | This function only checks the debugging information, not the symbol | |
9380 | table. */ | |
9381 | ||
9382 | static char * | |
9383 | function_name_from_pc (CORE_ADDR pc) | |
9384 | { | |
9385 | char *func_name; | |
9386 | ||
9387 | if (!find_pc_partial_function (pc, &func_name, NULL, NULL)) | |
9388 | return NULL; | |
9389 | ||
9390 | return func_name; | |
9391 | } | |
9392 | ||
9393 | /* True iff FRAME is very likely to be that of a function that is | |
9394 | part of the runtime system. This is all very heuristic, but is | |
9395 | intended to be used as advice as to what frames are uninteresting | |
9396 | to most users. */ | |
9397 | ||
9398 | static int | |
9399 | is_known_support_routine (struct frame_info *frame) | |
9400 | { | |
4ed6b5be | 9401 | struct symtab_and_line sal; |
f7f9143b JB |
9402 | char *func_name; |
9403 | int i; | |
f7f9143b | 9404 | |
4ed6b5be JB |
9405 | /* If this code does not have any debugging information (no symtab), |
9406 | This cannot be any user code. */ | |
f7f9143b | 9407 | |
4ed6b5be | 9408 | find_frame_sal (frame, &sal); |
f7f9143b JB |
9409 | if (sal.symtab == NULL) |
9410 | return 1; | |
9411 | ||
4ed6b5be JB |
9412 | /* If there is a symtab, but the associated source file cannot be |
9413 | located, then assume this is not user code: Selecting a frame | |
9414 | for which we cannot display the code would not be very helpful | |
9415 | for the user. This should also take care of case such as VxWorks | |
9416 | where the kernel has some debugging info provided for a few units. */ | |
f7f9143b | 9417 | |
9bbc9174 | 9418 | if (symtab_to_fullname (sal.symtab) == NULL) |
f7f9143b JB |
9419 | return 1; |
9420 | ||
4ed6b5be JB |
9421 | /* Check the unit filename againt the Ada runtime file naming. |
9422 | We also check the name of the objfile against the name of some | |
9423 | known system libraries that sometimes come with debugging info | |
9424 | too. */ | |
9425 | ||
f7f9143b JB |
9426 | for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1) |
9427 | { | |
9428 | re_comp (known_runtime_file_name_patterns[i]); | |
9429 | if (re_exec (sal.symtab->filename)) | |
9430 | return 1; | |
4ed6b5be JB |
9431 | if (sal.symtab->objfile != NULL |
9432 | && re_exec (sal.symtab->objfile->name)) | |
9433 | return 1; | |
f7f9143b JB |
9434 | } |
9435 | ||
4ed6b5be | 9436 | /* Check whether the function is a GNAT-generated entity. */ |
f7f9143b | 9437 | |
4ed6b5be | 9438 | func_name = function_name_from_pc (get_frame_address_in_block (frame)); |
f7f9143b JB |
9439 | if (func_name == NULL) |
9440 | return 1; | |
9441 | ||
9442 | for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1) | |
9443 | { | |
9444 | re_comp (known_auxiliary_function_name_patterns[i]); | |
9445 | if (re_exec (func_name)) | |
9446 | return 1; | |
9447 | } | |
9448 | ||
9449 | return 0; | |
9450 | } | |
9451 | ||
9452 | /* Find the first frame that contains debugging information and that is not | |
9453 | part of the Ada run-time, starting from FI and moving upward. */ | |
9454 | ||
9455 | static void | |
9456 | ada_find_printable_frame (struct frame_info *fi) | |
9457 | { | |
9458 | for (; fi != NULL; fi = get_prev_frame (fi)) | |
9459 | { | |
9460 | if (!is_known_support_routine (fi)) | |
9461 | { | |
9462 | select_frame (fi); | |
9463 | break; | |
9464 | } | |
9465 | } | |
9466 | ||
9467 | } | |
9468 | ||
9469 | /* Assuming that the inferior just triggered an unhandled exception | |
9470 | catchpoint, return the address in inferior memory where the name | |
9471 | of the exception is stored. | |
9472 | ||
9473 | Return zero if the address could not be computed. */ | |
9474 | ||
9475 | static CORE_ADDR | |
9476 | ada_unhandled_exception_name_addr (void) | |
0259addd JB |
9477 | { |
9478 | return parse_and_eval_address ("e.full_name"); | |
9479 | } | |
9480 | ||
9481 | /* Same as ada_unhandled_exception_name_addr, except that this function | |
9482 | should be used when the inferior uses an older version of the runtime, | |
9483 | where the exception name needs to be extracted from a specific frame | |
9484 | several frames up in the callstack. */ | |
9485 | ||
9486 | static CORE_ADDR | |
9487 | ada_unhandled_exception_name_addr_from_raise (void) | |
f7f9143b JB |
9488 | { |
9489 | int frame_level; | |
9490 | struct frame_info *fi; | |
9491 | ||
9492 | /* To determine the name of this exception, we need to select | |
9493 | the frame corresponding to RAISE_SYM_NAME. This frame is | |
9494 | at least 3 levels up, so we simply skip the first 3 frames | |
9495 | without checking the name of their associated function. */ | |
9496 | fi = get_current_frame (); | |
9497 | for (frame_level = 0; frame_level < 3; frame_level += 1) | |
9498 | if (fi != NULL) | |
9499 | fi = get_prev_frame (fi); | |
9500 | ||
9501 | while (fi != NULL) | |
9502 | { | |
9503 | const char *func_name = | |
9504 | function_name_from_pc (get_frame_address_in_block (fi)); | |
9505 | if (func_name != NULL | |
0259addd | 9506 | && strcmp (func_name, exception_info->catch_exception_sym) == 0) |
f7f9143b JB |
9507 | break; /* We found the frame we were looking for... */ |
9508 | fi = get_prev_frame (fi); | |
9509 | } | |
9510 | ||
9511 | if (fi == NULL) | |
9512 | return 0; | |
9513 | ||
9514 | select_frame (fi); | |
9515 | return parse_and_eval_address ("id.full_name"); | |
9516 | } | |
9517 | ||
9518 | /* Assuming the inferior just triggered an Ada exception catchpoint | |
9519 | (of any type), return the address in inferior memory where the name | |
9520 | of the exception is stored, if applicable. | |
9521 | ||
9522 | Return zero if the address could not be computed, or if not relevant. */ | |
9523 | ||
9524 | static CORE_ADDR | |
9525 | ada_exception_name_addr_1 (enum exception_catchpoint_kind ex, | |
9526 | struct breakpoint *b) | |
9527 | { | |
9528 | switch (ex) | |
9529 | { | |
9530 | case ex_catch_exception: | |
9531 | return (parse_and_eval_address ("e.full_name")); | |
9532 | break; | |
9533 | ||
9534 | case ex_catch_exception_unhandled: | |
0259addd | 9535 | return exception_info->unhandled_exception_name_addr (); |
f7f9143b JB |
9536 | break; |
9537 | ||
9538 | case ex_catch_assert: | |
9539 | return 0; /* Exception name is not relevant in this case. */ | |
9540 | break; | |
9541 | ||
9542 | default: | |
9543 | internal_error (__FILE__, __LINE__, _("unexpected catchpoint type")); | |
9544 | break; | |
9545 | } | |
9546 | ||
9547 | return 0; /* Should never be reached. */ | |
9548 | } | |
9549 | ||
9550 | /* Same as ada_exception_name_addr_1, except that it intercepts and contains | |
9551 | any error that ada_exception_name_addr_1 might cause to be thrown. | |
9552 | When an error is intercepted, a warning with the error message is printed, | |
9553 | and zero is returned. */ | |
9554 | ||
9555 | static CORE_ADDR | |
9556 | ada_exception_name_addr (enum exception_catchpoint_kind ex, | |
9557 | struct breakpoint *b) | |
9558 | { | |
9559 | struct gdb_exception e; | |
9560 | CORE_ADDR result = 0; | |
9561 | ||
9562 | TRY_CATCH (e, RETURN_MASK_ERROR) | |
9563 | { | |
9564 | result = ada_exception_name_addr_1 (ex, b); | |
9565 | } | |
9566 | ||
9567 | if (e.reason < 0) | |
9568 | { | |
9569 | warning (_("failed to get exception name: %s"), e.message); | |
9570 | return 0; | |
9571 | } | |
9572 | ||
9573 | return result; | |
9574 | } | |
9575 | ||
9576 | /* Implement the PRINT_IT method in the breakpoint_ops structure | |
9577 | for all exception catchpoint kinds. */ | |
9578 | ||
9579 | static enum print_stop_action | |
9580 | print_it_exception (enum exception_catchpoint_kind ex, struct breakpoint *b) | |
9581 | { | |
9582 | const CORE_ADDR addr = ada_exception_name_addr (ex, b); | |
9583 | char exception_name[256]; | |
9584 | ||
9585 | if (addr != 0) | |
9586 | { | |
9587 | read_memory (addr, exception_name, sizeof (exception_name) - 1); | |
9588 | exception_name [sizeof (exception_name) - 1] = '\0'; | |
9589 | } | |
9590 | ||
9591 | ada_find_printable_frame (get_current_frame ()); | |
9592 | ||
9593 | annotate_catchpoint (b->number); | |
9594 | switch (ex) | |
9595 | { | |
9596 | case ex_catch_exception: | |
9597 | if (addr != 0) | |
9598 | printf_filtered (_("\nCatchpoint %d, %s at "), | |
9599 | b->number, exception_name); | |
9600 | else | |
9601 | printf_filtered (_("\nCatchpoint %d, exception at "), b->number); | |
9602 | break; | |
9603 | case ex_catch_exception_unhandled: | |
9604 | if (addr != 0) | |
9605 | printf_filtered (_("\nCatchpoint %d, unhandled %s at "), | |
9606 | b->number, exception_name); | |
9607 | else | |
9608 | printf_filtered (_("\nCatchpoint %d, unhandled exception at "), | |
9609 | b->number); | |
9610 | break; | |
9611 | case ex_catch_assert: | |
9612 | printf_filtered (_("\nCatchpoint %d, failed assertion at "), | |
9613 | b->number); | |
9614 | break; | |
9615 | } | |
9616 | ||
9617 | return PRINT_SRC_AND_LOC; | |
9618 | } | |
9619 | ||
9620 | /* Implement the PRINT_ONE method in the breakpoint_ops structure | |
9621 | for all exception catchpoint kinds. */ | |
9622 | ||
9623 | static void | |
9624 | print_one_exception (enum exception_catchpoint_kind ex, | |
9625 | struct breakpoint *b, CORE_ADDR *last_addr) | |
9626 | { | |
9627 | if (addressprint) | |
9628 | { | |
9629 | annotate_field (4); | |
9630 | ui_out_field_core_addr (uiout, "addr", b->loc->address); | |
9631 | } | |
9632 | ||
9633 | annotate_field (5); | |
9634 | *last_addr = b->loc->address; | |
9635 | switch (ex) | |
9636 | { | |
9637 | case ex_catch_exception: | |
9638 | if (b->exp_string != NULL) | |
9639 | { | |
9640 | char *msg = xstrprintf (_("`%s' Ada exception"), b->exp_string); | |
9641 | ||
9642 | ui_out_field_string (uiout, "what", msg); | |
9643 | xfree (msg); | |
9644 | } | |
9645 | else | |
9646 | ui_out_field_string (uiout, "what", "all Ada exceptions"); | |
9647 | ||
9648 | break; | |
9649 | ||
9650 | case ex_catch_exception_unhandled: | |
9651 | ui_out_field_string (uiout, "what", "unhandled Ada exceptions"); | |
9652 | break; | |
9653 | ||
9654 | case ex_catch_assert: | |
9655 | ui_out_field_string (uiout, "what", "failed Ada assertions"); | |
9656 | break; | |
9657 | ||
9658 | default: | |
9659 | internal_error (__FILE__, __LINE__, _("unexpected catchpoint type")); | |
9660 | break; | |
9661 | } | |
9662 | } | |
9663 | ||
9664 | /* Implement the PRINT_MENTION method in the breakpoint_ops structure | |
9665 | for all exception catchpoint kinds. */ | |
9666 | ||
9667 | static void | |
9668 | print_mention_exception (enum exception_catchpoint_kind ex, | |
9669 | struct breakpoint *b) | |
9670 | { | |
9671 | switch (ex) | |
9672 | { | |
9673 | case ex_catch_exception: | |
9674 | if (b->exp_string != NULL) | |
9675 | printf_filtered (_("Catchpoint %d: `%s' Ada exception"), | |
9676 | b->number, b->exp_string); | |
9677 | else | |
9678 | printf_filtered (_("Catchpoint %d: all Ada exceptions"), b->number); | |
9679 | ||
9680 | break; | |
9681 | ||
9682 | case ex_catch_exception_unhandled: | |
9683 | printf_filtered (_("Catchpoint %d: unhandled Ada exceptions"), | |
9684 | b->number); | |
9685 | break; | |
9686 | ||
9687 | case ex_catch_assert: | |
9688 | printf_filtered (_("Catchpoint %d: failed Ada assertions"), b->number); | |
9689 | break; | |
9690 | ||
9691 | default: | |
9692 | internal_error (__FILE__, __LINE__, _("unexpected catchpoint type")); | |
9693 | break; | |
9694 | } | |
9695 | } | |
9696 | ||
9697 | /* Virtual table for "catch exception" breakpoints. */ | |
9698 | ||
9699 | static enum print_stop_action | |
9700 | print_it_catch_exception (struct breakpoint *b) | |
9701 | { | |
9702 | return print_it_exception (ex_catch_exception, b); | |
9703 | } | |
9704 | ||
9705 | static void | |
9706 | print_one_catch_exception (struct breakpoint *b, CORE_ADDR *last_addr) | |
9707 | { | |
9708 | print_one_exception (ex_catch_exception, b, last_addr); | |
9709 | } | |
9710 | ||
9711 | static void | |
9712 | print_mention_catch_exception (struct breakpoint *b) | |
9713 | { | |
9714 | print_mention_exception (ex_catch_exception, b); | |
9715 | } | |
9716 | ||
9717 | static struct breakpoint_ops catch_exception_breakpoint_ops = | |
9718 | { | |
9719 | print_it_catch_exception, | |
9720 | print_one_catch_exception, | |
9721 | print_mention_catch_exception | |
9722 | }; | |
9723 | ||
9724 | /* Virtual table for "catch exception unhandled" breakpoints. */ | |
9725 | ||
9726 | static enum print_stop_action | |
9727 | print_it_catch_exception_unhandled (struct breakpoint *b) | |
9728 | { | |
9729 | return print_it_exception (ex_catch_exception_unhandled, b); | |
9730 | } | |
9731 | ||
9732 | static void | |
9733 | print_one_catch_exception_unhandled (struct breakpoint *b, CORE_ADDR *last_addr) | |
9734 | { | |
9735 | print_one_exception (ex_catch_exception_unhandled, b, last_addr); | |
9736 | } | |
9737 | ||
9738 | static void | |
9739 | print_mention_catch_exception_unhandled (struct breakpoint *b) | |
9740 | { | |
9741 | print_mention_exception (ex_catch_exception_unhandled, b); | |
9742 | } | |
9743 | ||
9744 | static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops = { | |
9745 | print_it_catch_exception_unhandled, | |
9746 | print_one_catch_exception_unhandled, | |
9747 | print_mention_catch_exception_unhandled | |
9748 | }; | |
9749 | ||
9750 | /* Virtual table for "catch assert" breakpoints. */ | |
9751 | ||
9752 | static enum print_stop_action | |
9753 | print_it_catch_assert (struct breakpoint *b) | |
9754 | { | |
9755 | return print_it_exception (ex_catch_assert, b); | |
9756 | } | |
9757 | ||
9758 | static void | |
9759 | print_one_catch_assert (struct breakpoint *b, CORE_ADDR *last_addr) | |
9760 | { | |
9761 | print_one_exception (ex_catch_assert, b, last_addr); | |
9762 | } | |
9763 | ||
9764 | static void | |
9765 | print_mention_catch_assert (struct breakpoint *b) | |
9766 | { | |
9767 | print_mention_exception (ex_catch_assert, b); | |
9768 | } | |
9769 | ||
9770 | static struct breakpoint_ops catch_assert_breakpoint_ops = { | |
9771 | print_it_catch_assert, | |
9772 | print_one_catch_assert, | |
9773 | print_mention_catch_assert | |
9774 | }; | |
9775 | ||
9776 | /* Return non-zero if B is an Ada exception catchpoint. */ | |
9777 | ||
9778 | int | |
9779 | ada_exception_catchpoint_p (struct breakpoint *b) | |
9780 | { | |
9781 | return (b->ops == &catch_exception_breakpoint_ops | |
9782 | || b->ops == &catch_exception_unhandled_breakpoint_ops | |
9783 | || b->ops == &catch_assert_breakpoint_ops); | |
9784 | } | |
9785 | ||
f7f9143b JB |
9786 | /* Return a newly allocated copy of the first space-separated token |
9787 | in ARGSP, and then adjust ARGSP to point immediately after that | |
9788 | token. | |
9789 | ||
9790 | Return NULL if ARGPS does not contain any more tokens. */ | |
9791 | ||
9792 | static char * | |
9793 | ada_get_next_arg (char **argsp) | |
9794 | { | |
9795 | char *args = *argsp; | |
9796 | char *end; | |
9797 | char *result; | |
9798 | ||
9799 | /* Skip any leading white space. */ | |
9800 | ||
9801 | while (isspace (*args)) | |
9802 | args++; | |
9803 | ||
9804 | if (args[0] == '\0') | |
9805 | return NULL; /* No more arguments. */ | |
9806 | ||
9807 | /* Find the end of the current argument. */ | |
9808 | ||
9809 | end = args; | |
9810 | while (*end != '\0' && !isspace (*end)) | |
9811 | end++; | |
9812 | ||
9813 | /* Adjust ARGSP to point to the start of the next argument. */ | |
9814 | ||
9815 | *argsp = end; | |
9816 | ||
9817 | /* Make a copy of the current argument and return it. */ | |
9818 | ||
9819 | result = xmalloc (end - args + 1); | |
9820 | strncpy (result, args, end - args); | |
9821 | result[end - args] = '\0'; | |
9822 | ||
9823 | return result; | |
9824 | } | |
9825 | ||
9826 | /* Split the arguments specified in a "catch exception" command. | |
9827 | Set EX to the appropriate catchpoint type. | |
9828 | Set EXP_STRING to the name of the specific exception if | |
9829 | specified by the user. */ | |
9830 | ||
9831 | static void | |
9832 | catch_ada_exception_command_split (char *args, | |
9833 | enum exception_catchpoint_kind *ex, | |
9834 | char **exp_string) | |
9835 | { | |
9836 | struct cleanup *old_chain = make_cleanup (null_cleanup, NULL); | |
9837 | char *exception_name; | |
9838 | ||
9839 | exception_name = ada_get_next_arg (&args); | |
9840 | make_cleanup (xfree, exception_name); | |
9841 | ||
9842 | /* Check that we do not have any more arguments. Anything else | |
9843 | is unexpected. */ | |
9844 | ||
9845 | while (isspace (*args)) | |
9846 | args++; | |
9847 | ||
9848 | if (args[0] != '\0') | |
9849 | error (_("Junk at end of expression")); | |
9850 | ||
9851 | discard_cleanups (old_chain); | |
9852 | ||
9853 | if (exception_name == NULL) | |
9854 | { | |
9855 | /* Catch all exceptions. */ | |
9856 | *ex = ex_catch_exception; | |
9857 | *exp_string = NULL; | |
9858 | } | |
9859 | else if (strcmp (exception_name, "unhandled") == 0) | |
9860 | { | |
9861 | /* Catch unhandled exceptions. */ | |
9862 | *ex = ex_catch_exception_unhandled; | |
9863 | *exp_string = NULL; | |
9864 | } | |
9865 | else | |
9866 | { | |
9867 | /* Catch a specific exception. */ | |
9868 | *ex = ex_catch_exception; | |
9869 | *exp_string = exception_name; | |
9870 | } | |
9871 | } | |
9872 | ||
9873 | /* Return the name of the symbol on which we should break in order to | |
9874 | implement a catchpoint of the EX kind. */ | |
9875 | ||
9876 | static const char * | |
9877 | ada_exception_sym_name (enum exception_catchpoint_kind ex) | |
9878 | { | |
0259addd JB |
9879 | gdb_assert (exception_info != NULL); |
9880 | ||
f7f9143b JB |
9881 | switch (ex) |
9882 | { | |
9883 | case ex_catch_exception: | |
0259addd | 9884 | return (exception_info->catch_exception_sym); |
f7f9143b JB |
9885 | break; |
9886 | case ex_catch_exception_unhandled: | |
0259addd | 9887 | return (exception_info->catch_exception_unhandled_sym); |
f7f9143b JB |
9888 | break; |
9889 | case ex_catch_assert: | |
0259addd | 9890 | return (exception_info->catch_assert_sym); |
f7f9143b JB |
9891 | break; |
9892 | default: | |
9893 | internal_error (__FILE__, __LINE__, | |
9894 | _("unexpected catchpoint kind (%d)"), ex); | |
9895 | } | |
9896 | } | |
9897 | ||
9898 | /* Return the breakpoint ops "virtual table" used for catchpoints | |
9899 | of the EX kind. */ | |
9900 | ||
9901 | static struct breakpoint_ops * | |
4b9eee8c | 9902 | ada_exception_breakpoint_ops (enum exception_catchpoint_kind ex) |
f7f9143b JB |
9903 | { |
9904 | switch (ex) | |
9905 | { | |
9906 | case ex_catch_exception: | |
9907 | return (&catch_exception_breakpoint_ops); | |
9908 | break; | |
9909 | case ex_catch_exception_unhandled: | |
9910 | return (&catch_exception_unhandled_breakpoint_ops); | |
9911 | break; | |
9912 | case ex_catch_assert: | |
9913 | return (&catch_assert_breakpoint_ops); | |
9914 | break; | |
9915 | default: | |
9916 | internal_error (__FILE__, __LINE__, | |
9917 | _("unexpected catchpoint kind (%d)"), ex); | |
9918 | } | |
9919 | } | |
9920 | ||
9921 | /* Return the condition that will be used to match the current exception | |
9922 | being raised with the exception that the user wants to catch. This | |
9923 | assumes that this condition is used when the inferior just triggered | |
9924 | an exception catchpoint. | |
9925 | ||
9926 | The string returned is a newly allocated string that needs to be | |
9927 | deallocated later. */ | |
9928 | ||
9929 | static char * | |
9930 | ada_exception_catchpoint_cond_string (const char *exp_string) | |
9931 | { | |
9932 | return xstrprintf ("long_integer (e) = long_integer (&%s)", exp_string); | |
9933 | } | |
9934 | ||
9935 | /* Return the expression corresponding to COND_STRING evaluated at SAL. */ | |
9936 | ||
9937 | static struct expression * | |
9938 | ada_parse_catchpoint_condition (char *cond_string, | |
9939 | struct symtab_and_line sal) | |
9940 | { | |
9941 | return (parse_exp_1 (&cond_string, block_for_pc (sal.pc), 0)); | |
9942 | } | |
9943 | ||
9944 | /* Return the symtab_and_line that should be used to insert an exception | |
9945 | catchpoint of the TYPE kind. | |
9946 | ||
9947 | EX_STRING should contain the name of a specific exception | |
9948 | that the catchpoint should catch, or NULL otherwise. | |
9949 | ||
9950 | The idea behind all the remaining parameters is that their names match | |
9951 | the name of certain fields in the breakpoint structure that are used to | |
9952 | handle exception catchpoints. This function returns the value to which | |
9953 | these fields should be set, depending on the type of catchpoint we need | |
9954 | to create. | |
9955 | ||
9956 | If COND and COND_STRING are both non-NULL, any value they might | |
9957 | hold will be free'ed, and then replaced by newly allocated ones. | |
9958 | These parameters are left untouched otherwise. */ | |
9959 | ||
9960 | static struct symtab_and_line | |
9961 | ada_exception_sal (enum exception_catchpoint_kind ex, char *exp_string, | |
9962 | char **addr_string, char **cond_string, | |
9963 | struct expression **cond, struct breakpoint_ops **ops) | |
9964 | { | |
9965 | const char *sym_name; | |
9966 | struct symbol *sym; | |
9967 | struct symtab_and_line sal; | |
9968 | ||
0259addd JB |
9969 | /* First, find out which exception support info to use. */ |
9970 | ada_exception_support_info_sniffer (); | |
9971 | ||
9972 | /* Then lookup the function on which we will break in order to catch | |
f7f9143b JB |
9973 | the Ada exceptions requested by the user. */ |
9974 | ||
9975 | sym_name = ada_exception_sym_name (ex); | |
9976 | sym = standard_lookup (sym_name, NULL, VAR_DOMAIN); | |
9977 | ||
9978 | /* The symbol we're looking up is provided by a unit in the GNAT runtime | |
9979 | that should be compiled with debugging information. As a result, we | |
9980 | expect to find that symbol in the symtabs. If we don't find it, then | |
9981 | the target most likely does not support Ada exceptions, or we cannot | |
9982 | insert exception breakpoints yet, because the GNAT runtime hasn't been | |
9983 | loaded yet. */ | |
9984 | ||
9985 | /* brobecker/2006-12-26: It is conceivable that the runtime was compiled | |
9986 | in such a way that no debugging information is produced for the symbol | |
9987 | we are looking for. In this case, we could search the minimal symbols | |
9988 | as a fall-back mechanism. This would still be operating in degraded | |
9989 | mode, however, as we would still be missing the debugging information | |
9990 | that is needed in order to extract the name of the exception being | |
9991 | raised (this name is printed in the catchpoint message, and is also | |
9992 | used when trying to catch a specific exception). We do not handle | |
9993 | this case for now. */ | |
9994 | ||
9995 | if (sym == NULL) | |
0259addd | 9996 | error (_("Unable to break on '%s' in this configuration."), sym_name); |
f7f9143b JB |
9997 | |
9998 | /* Make sure that the symbol we found corresponds to a function. */ | |
9999 | if (SYMBOL_CLASS (sym) != LOC_BLOCK) | |
10000 | error (_("Symbol \"%s\" is not a function (class = %d)"), | |
10001 | sym_name, SYMBOL_CLASS (sym)); | |
10002 | ||
10003 | sal = find_function_start_sal (sym, 1); | |
10004 | ||
10005 | /* Set ADDR_STRING. */ | |
10006 | ||
10007 | *addr_string = xstrdup (sym_name); | |
10008 | ||
10009 | /* Set the COND and COND_STRING (if not NULL). */ | |
10010 | ||
10011 | if (cond_string != NULL && cond != NULL) | |
10012 | { | |
10013 | if (*cond_string != NULL) | |
10014 | { | |
10015 | xfree (*cond_string); | |
10016 | *cond_string = NULL; | |
10017 | } | |
10018 | if (*cond != NULL) | |
10019 | { | |
10020 | xfree (*cond); | |
10021 | *cond = NULL; | |
10022 | } | |
10023 | if (exp_string != NULL) | |
10024 | { | |
10025 | *cond_string = ada_exception_catchpoint_cond_string (exp_string); | |
10026 | *cond = ada_parse_catchpoint_condition (*cond_string, sal); | |
10027 | } | |
10028 | } | |
10029 | ||
10030 | /* Set OPS. */ | |
4b9eee8c | 10031 | *ops = ada_exception_breakpoint_ops (ex); |
f7f9143b JB |
10032 | |
10033 | return sal; | |
10034 | } | |
10035 | ||
10036 | /* Parse the arguments (ARGS) of the "catch exception" command. | |
10037 | ||
10038 | Set TYPE to the appropriate exception catchpoint type. | |
10039 | If the user asked the catchpoint to catch only a specific | |
10040 | exception, then save the exception name in ADDR_STRING. | |
10041 | ||
10042 | See ada_exception_sal for a description of all the remaining | |
10043 | function arguments of this function. */ | |
10044 | ||
10045 | struct symtab_and_line | |
10046 | ada_decode_exception_location (char *args, char **addr_string, | |
10047 | char **exp_string, char **cond_string, | |
10048 | struct expression **cond, | |
10049 | struct breakpoint_ops **ops) | |
10050 | { | |
10051 | enum exception_catchpoint_kind ex; | |
10052 | ||
10053 | catch_ada_exception_command_split (args, &ex, exp_string); | |
10054 | return ada_exception_sal (ex, *exp_string, addr_string, cond_string, | |
10055 | cond, ops); | |
10056 | } | |
10057 | ||
10058 | struct symtab_and_line | |
10059 | ada_decode_assert_location (char *args, char **addr_string, | |
10060 | struct breakpoint_ops **ops) | |
10061 | { | |
10062 | /* Check that no argument where provided at the end of the command. */ | |
10063 | ||
10064 | if (args != NULL) | |
10065 | { | |
10066 | while (isspace (*args)) | |
10067 | args++; | |
10068 | if (*args != '\0') | |
10069 | error (_("Junk at end of arguments.")); | |
10070 | } | |
10071 | ||
10072 | return ada_exception_sal (ex_catch_assert, NULL, addr_string, NULL, NULL, | |
10073 | ops); | |
10074 | } | |
10075 | ||
4c4b4cd2 PH |
10076 | /* Operators */ |
10077 | /* Information about operators given special treatment in functions | |
10078 | below. */ | |
10079 | /* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */ | |
10080 | ||
10081 | #define ADA_OPERATORS \ | |
10082 | OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \ | |
10083 | OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \ | |
10084 | OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \ | |
10085 | OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \ | |
10086 | OP_DEFN (OP_ATR_LAST, 1, 2, 0) \ | |
10087 | OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \ | |
10088 | OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \ | |
10089 | OP_DEFN (OP_ATR_MAX, 1, 3, 0) \ | |
10090 | OP_DEFN (OP_ATR_MIN, 1, 3, 0) \ | |
10091 | OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \ | |
10092 | OP_DEFN (OP_ATR_POS, 1, 2, 0) \ | |
10093 | OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \ | |
10094 | OP_DEFN (OP_ATR_TAG, 1, 1, 0) \ | |
10095 | OP_DEFN (OP_ATR_VAL, 1, 2, 0) \ | |
10096 | OP_DEFN (UNOP_QUAL, 3, 1, 0) \ | |
52ce6436 PH |
10097 | OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \ |
10098 | OP_DEFN (OP_OTHERS, 1, 1, 0) \ | |
10099 | OP_DEFN (OP_POSITIONAL, 3, 1, 0) \ | |
10100 | OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0) | |
4c4b4cd2 PH |
10101 | |
10102 | static void | |
10103 | ada_operator_length (struct expression *exp, int pc, int *oplenp, int *argsp) | |
10104 | { | |
10105 | switch (exp->elts[pc - 1].opcode) | |
10106 | { | |
76a01679 | 10107 | default: |
4c4b4cd2 PH |
10108 | operator_length_standard (exp, pc, oplenp, argsp); |
10109 | break; | |
10110 | ||
10111 | #define OP_DEFN(op, len, args, binop) \ | |
10112 | case op: *oplenp = len; *argsp = args; break; | |
10113 | ADA_OPERATORS; | |
10114 | #undef OP_DEFN | |
52ce6436 PH |
10115 | |
10116 | case OP_AGGREGATE: | |
10117 | *oplenp = 3; | |
10118 | *argsp = longest_to_int (exp->elts[pc - 2].longconst); | |
10119 | break; | |
10120 | ||
10121 | case OP_CHOICES: | |
10122 | *oplenp = 3; | |
10123 | *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1; | |
10124 | break; | |
4c4b4cd2 PH |
10125 | } |
10126 | } | |
10127 | ||
10128 | static char * | |
10129 | ada_op_name (enum exp_opcode opcode) | |
10130 | { | |
10131 | switch (opcode) | |
10132 | { | |
76a01679 | 10133 | default: |
4c4b4cd2 | 10134 | return op_name_standard (opcode); |
52ce6436 | 10135 | |
4c4b4cd2 PH |
10136 | #define OP_DEFN(op, len, args, binop) case op: return #op; |
10137 | ADA_OPERATORS; | |
10138 | #undef OP_DEFN | |
52ce6436 PH |
10139 | |
10140 | case OP_AGGREGATE: | |
10141 | return "OP_AGGREGATE"; | |
10142 | case OP_CHOICES: | |
10143 | return "OP_CHOICES"; | |
10144 | case OP_NAME: | |
10145 | return "OP_NAME"; | |
4c4b4cd2 PH |
10146 | } |
10147 | } | |
10148 | ||
10149 | /* As for operator_length, but assumes PC is pointing at the first | |
10150 | element of the operator, and gives meaningful results only for the | |
52ce6436 | 10151 | Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */ |
4c4b4cd2 PH |
10152 | |
10153 | static void | |
76a01679 JB |
10154 | ada_forward_operator_length (struct expression *exp, int pc, |
10155 | int *oplenp, int *argsp) | |
4c4b4cd2 | 10156 | { |
76a01679 | 10157 | switch (exp->elts[pc].opcode) |
4c4b4cd2 PH |
10158 | { |
10159 | default: | |
10160 | *oplenp = *argsp = 0; | |
10161 | break; | |
52ce6436 | 10162 | |
4c4b4cd2 PH |
10163 | #define OP_DEFN(op, len, args, binop) \ |
10164 | case op: *oplenp = len; *argsp = args; break; | |
10165 | ADA_OPERATORS; | |
10166 | #undef OP_DEFN | |
52ce6436 PH |
10167 | |
10168 | case OP_AGGREGATE: | |
10169 | *oplenp = 3; | |
10170 | *argsp = longest_to_int (exp->elts[pc + 1].longconst); | |
10171 | break; | |
10172 | ||
10173 | case OP_CHOICES: | |
10174 | *oplenp = 3; | |
10175 | *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1; | |
10176 | break; | |
10177 | ||
10178 | case OP_STRING: | |
10179 | case OP_NAME: | |
10180 | { | |
10181 | int len = longest_to_int (exp->elts[pc + 1].longconst); | |
10182 | *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1); | |
10183 | *argsp = 0; | |
10184 | break; | |
10185 | } | |
4c4b4cd2 PH |
10186 | } |
10187 | } | |
10188 | ||
10189 | static int | |
10190 | ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt) | |
10191 | { | |
10192 | enum exp_opcode op = exp->elts[elt].opcode; | |
10193 | int oplen, nargs; | |
10194 | int pc = elt; | |
10195 | int i; | |
76a01679 | 10196 | |
4c4b4cd2 PH |
10197 | ada_forward_operator_length (exp, elt, &oplen, &nargs); |
10198 | ||
76a01679 | 10199 | switch (op) |
4c4b4cd2 | 10200 | { |
76a01679 | 10201 | /* Ada attributes ('Foo). */ |
4c4b4cd2 PH |
10202 | case OP_ATR_FIRST: |
10203 | case OP_ATR_LAST: | |
10204 | case OP_ATR_LENGTH: | |
10205 | case OP_ATR_IMAGE: | |
10206 | case OP_ATR_MAX: | |
10207 | case OP_ATR_MIN: | |
10208 | case OP_ATR_MODULUS: | |
10209 | case OP_ATR_POS: | |
10210 | case OP_ATR_SIZE: | |
10211 | case OP_ATR_TAG: | |
10212 | case OP_ATR_VAL: | |
10213 | break; | |
10214 | ||
10215 | case UNOP_IN_RANGE: | |
10216 | case UNOP_QUAL: | |
323e0a4a AC |
10217 | /* XXX: gdb_sprint_host_address, type_sprint */ |
10218 | fprintf_filtered (stream, _("Type @")); | |
4c4b4cd2 PH |
10219 | gdb_print_host_address (exp->elts[pc + 1].type, stream); |
10220 | fprintf_filtered (stream, " ("); | |
10221 | type_print (exp->elts[pc + 1].type, NULL, stream, 0); | |
10222 | fprintf_filtered (stream, ")"); | |
10223 | break; | |
10224 | case BINOP_IN_BOUNDS: | |
52ce6436 PH |
10225 | fprintf_filtered (stream, " (%d)", |
10226 | longest_to_int (exp->elts[pc + 2].longconst)); | |
4c4b4cd2 PH |
10227 | break; |
10228 | case TERNOP_IN_RANGE: | |
10229 | break; | |
10230 | ||
52ce6436 PH |
10231 | case OP_AGGREGATE: |
10232 | case OP_OTHERS: | |
10233 | case OP_DISCRETE_RANGE: | |
10234 | case OP_POSITIONAL: | |
10235 | case OP_CHOICES: | |
10236 | break; | |
10237 | ||
10238 | case OP_NAME: | |
10239 | case OP_STRING: | |
10240 | { | |
10241 | char *name = &exp->elts[elt + 2].string; | |
10242 | int len = longest_to_int (exp->elts[elt + 1].longconst); | |
10243 | fprintf_filtered (stream, "Text: `%.*s'", len, name); | |
10244 | break; | |
10245 | } | |
10246 | ||
4c4b4cd2 PH |
10247 | default: |
10248 | return dump_subexp_body_standard (exp, stream, elt); | |
10249 | } | |
10250 | ||
10251 | elt += oplen; | |
10252 | for (i = 0; i < nargs; i += 1) | |
10253 | elt = dump_subexp (exp, stream, elt); | |
10254 | ||
10255 | return elt; | |
10256 | } | |
10257 | ||
10258 | /* The Ada extension of print_subexp (q.v.). */ | |
10259 | ||
76a01679 JB |
10260 | static void |
10261 | ada_print_subexp (struct expression *exp, int *pos, | |
10262 | struct ui_file *stream, enum precedence prec) | |
4c4b4cd2 | 10263 | { |
52ce6436 | 10264 | int oplen, nargs, i; |
4c4b4cd2 PH |
10265 | int pc = *pos; |
10266 | enum exp_opcode op = exp->elts[pc].opcode; | |
10267 | ||
10268 | ada_forward_operator_length (exp, pc, &oplen, &nargs); | |
10269 | ||
52ce6436 | 10270 | *pos += oplen; |
4c4b4cd2 PH |
10271 | switch (op) |
10272 | { | |
10273 | default: | |
52ce6436 | 10274 | *pos -= oplen; |
4c4b4cd2 PH |
10275 | print_subexp_standard (exp, pos, stream, prec); |
10276 | return; | |
10277 | ||
10278 | case OP_VAR_VALUE: | |
4c4b4cd2 PH |
10279 | fputs_filtered (SYMBOL_NATURAL_NAME (exp->elts[pc + 2].symbol), stream); |
10280 | return; | |
10281 | ||
10282 | case BINOP_IN_BOUNDS: | |
323e0a4a | 10283 | /* XXX: sprint_subexp */ |
4c4b4cd2 | 10284 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
0b48a291 | 10285 | fputs_filtered (" in ", stream); |
4c4b4cd2 | 10286 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
0b48a291 | 10287 | fputs_filtered ("'range", stream); |
4c4b4cd2 | 10288 | if (exp->elts[pc + 1].longconst > 1) |
76a01679 JB |
10289 | fprintf_filtered (stream, "(%ld)", |
10290 | (long) exp->elts[pc + 1].longconst); | |
4c4b4cd2 PH |
10291 | return; |
10292 | ||
10293 | case TERNOP_IN_RANGE: | |
4c4b4cd2 | 10294 | if (prec >= PREC_EQUAL) |
76a01679 | 10295 | fputs_filtered ("(", stream); |
323e0a4a | 10296 | /* XXX: sprint_subexp */ |
4c4b4cd2 | 10297 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
0b48a291 | 10298 | fputs_filtered (" in ", stream); |
4c4b4cd2 PH |
10299 | print_subexp (exp, pos, stream, PREC_EQUAL); |
10300 | fputs_filtered (" .. ", stream); | |
10301 | print_subexp (exp, pos, stream, PREC_EQUAL); | |
10302 | if (prec >= PREC_EQUAL) | |
76a01679 JB |
10303 | fputs_filtered (")", stream); |
10304 | return; | |
4c4b4cd2 PH |
10305 | |
10306 | case OP_ATR_FIRST: | |
10307 | case OP_ATR_LAST: | |
10308 | case OP_ATR_LENGTH: | |
10309 | case OP_ATR_IMAGE: | |
10310 | case OP_ATR_MAX: | |
10311 | case OP_ATR_MIN: | |
10312 | case OP_ATR_MODULUS: | |
10313 | case OP_ATR_POS: | |
10314 | case OP_ATR_SIZE: | |
10315 | case OP_ATR_TAG: | |
10316 | case OP_ATR_VAL: | |
4c4b4cd2 | 10317 | if (exp->elts[*pos].opcode == OP_TYPE) |
76a01679 JB |
10318 | { |
10319 | if (TYPE_CODE (exp->elts[*pos + 1].type) != TYPE_CODE_VOID) | |
10320 | LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0); | |
10321 | *pos += 3; | |
10322 | } | |
4c4b4cd2 | 10323 | else |
76a01679 | 10324 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
4c4b4cd2 PH |
10325 | fprintf_filtered (stream, "'%s", ada_attribute_name (op)); |
10326 | if (nargs > 1) | |
76a01679 JB |
10327 | { |
10328 | int tem; | |
10329 | for (tem = 1; tem < nargs; tem += 1) | |
10330 | { | |
10331 | fputs_filtered ((tem == 1) ? " (" : ", ", stream); | |
10332 | print_subexp (exp, pos, stream, PREC_ABOVE_COMMA); | |
10333 | } | |
10334 | fputs_filtered (")", stream); | |
10335 | } | |
4c4b4cd2 | 10336 | return; |
14f9c5c9 | 10337 | |
4c4b4cd2 | 10338 | case UNOP_QUAL: |
4c4b4cd2 PH |
10339 | type_print (exp->elts[pc + 1].type, "", stream, 0); |
10340 | fputs_filtered ("'(", stream); | |
10341 | print_subexp (exp, pos, stream, PREC_PREFIX); | |
10342 | fputs_filtered (")", stream); | |
10343 | return; | |
14f9c5c9 | 10344 | |
4c4b4cd2 | 10345 | case UNOP_IN_RANGE: |
323e0a4a | 10346 | /* XXX: sprint_subexp */ |
4c4b4cd2 | 10347 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
0b48a291 | 10348 | fputs_filtered (" in ", stream); |
4c4b4cd2 PH |
10349 | LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0); |
10350 | return; | |
52ce6436 PH |
10351 | |
10352 | case OP_DISCRETE_RANGE: | |
10353 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10354 | fputs_filtered ("..", stream); | |
10355 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10356 | return; | |
10357 | ||
10358 | case OP_OTHERS: | |
10359 | fputs_filtered ("others => ", stream); | |
10360 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10361 | return; | |
10362 | ||
10363 | case OP_CHOICES: | |
10364 | for (i = 0; i < nargs-1; i += 1) | |
10365 | { | |
10366 | if (i > 0) | |
10367 | fputs_filtered ("|", stream); | |
10368 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10369 | } | |
10370 | fputs_filtered (" => ", stream); | |
10371 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10372 | return; | |
10373 | ||
10374 | case OP_POSITIONAL: | |
10375 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10376 | return; | |
10377 | ||
10378 | case OP_AGGREGATE: | |
10379 | fputs_filtered ("(", stream); | |
10380 | for (i = 0; i < nargs; i += 1) | |
10381 | { | |
10382 | if (i > 0) | |
10383 | fputs_filtered (", ", stream); | |
10384 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10385 | } | |
10386 | fputs_filtered (")", stream); | |
10387 | return; | |
4c4b4cd2 PH |
10388 | } |
10389 | } | |
14f9c5c9 AS |
10390 | |
10391 | /* Table mapping opcodes into strings for printing operators | |
10392 | and precedences of the operators. */ | |
10393 | ||
d2e4a39e AS |
10394 | static const struct op_print ada_op_print_tab[] = { |
10395 | {":=", BINOP_ASSIGN, PREC_ASSIGN, 1}, | |
10396 | {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0}, | |
10397 | {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0}, | |
10398 | {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0}, | |
10399 | {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0}, | |
10400 | {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0}, | |
10401 | {"=", BINOP_EQUAL, PREC_EQUAL, 0}, | |
10402 | {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0}, | |
10403 | {"<=", BINOP_LEQ, PREC_ORDER, 0}, | |
10404 | {">=", BINOP_GEQ, PREC_ORDER, 0}, | |
10405 | {">", BINOP_GTR, PREC_ORDER, 0}, | |
10406 | {"<", BINOP_LESS, PREC_ORDER, 0}, | |
10407 | {">>", BINOP_RSH, PREC_SHIFT, 0}, | |
10408 | {"<<", BINOP_LSH, PREC_SHIFT, 0}, | |
10409 | {"+", BINOP_ADD, PREC_ADD, 0}, | |
10410 | {"-", BINOP_SUB, PREC_ADD, 0}, | |
10411 | {"&", BINOP_CONCAT, PREC_ADD, 0}, | |
10412 | {"*", BINOP_MUL, PREC_MUL, 0}, | |
10413 | {"/", BINOP_DIV, PREC_MUL, 0}, | |
10414 | {"rem", BINOP_REM, PREC_MUL, 0}, | |
10415 | {"mod", BINOP_MOD, PREC_MUL, 0}, | |
10416 | {"**", BINOP_EXP, PREC_REPEAT, 0}, | |
10417 | {"@", BINOP_REPEAT, PREC_REPEAT, 0}, | |
10418 | {"-", UNOP_NEG, PREC_PREFIX, 0}, | |
10419 | {"+", UNOP_PLUS, PREC_PREFIX, 0}, | |
10420 | {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0}, | |
10421 | {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0}, | |
10422 | {"abs ", UNOP_ABS, PREC_PREFIX, 0}, | |
4c4b4cd2 PH |
10423 | {".all", UNOP_IND, PREC_SUFFIX, 1}, |
10424 | {"'access", UNOP_ADDR, PREC_SUFFIX, 1}, | |
10425 | {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1}, | |
d2e4a39e | 10426 | {NULL, 0, 0, 0} |
14f9c5c9 AS |
10427 | }; |
10428 | \f | |
72d5681a PH |
10429 | enum ada_primitive_types { |
10430 | ada_primitive_type_int, | |
10431 | ada_primitive_type_long, | |
10432 | ada_primitive_type_short, | |
10433 | ada_primitive_type_char, | |
10434 | ada_primitive_type_float, | |
10435 | ada_primitive_type_double, | |
10436 | ada_primitive_type_void, | |
10437 | ada_primitive_type_long_long, | |
10438 | ada_primitive_type_long_double, | |
10439 | ada_primitive_type_natural, | |
10440 | ada_primitive_type_positive, | |
10441 | ada_primitive_type_system_address, | |
10442 | nr_ada_primitive_types | |
10443 | }; | |
6c038f32 PH |
10444 | |
10445 | static void | |
d4a9a881 | 10446 | ada_language_arch_info (struct gdbarch *gdbarch, |
72d5681a PH |
10447 | struct language_arch_info *lai) |
10448 | { | |
d4a9a881 | 10449 | const struct builtin_type *builtin = builtin_type (gdbarch); |
72d5681a | 10450 | lai->primitive_type_vector |
d4a9a881 | 10451 | = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_ada_primitive_types + 1, |
72d5681a PH |
10452 | struct type *); |
10453 | lai->primitive_type_vector [ada_primitive_type_int] = | |
9a76efb6 | 10454 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10455 | gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10456 | 0, "integer", (struct objfile *) NULL); |
72d5681a | 10457 | lai->primitive_type_vector [ada_primitive_type_long] = |
9a76efb6 | 10458 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10459 | gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10460 | 0, "long_integer", (struct objfile *) NULL); |
72d5681a | 10461 | lai->primitive_type_vector [ada_primitive_type_short] = |
9a76efb6 | 10462 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10463 | gdbarch_short_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10464 | 0, "short_integer", (struct objfile *) NULL); |
61ee279c PH |
10465 | lai->string_char_type = |
10466 | lai->primitive_type_vector [ada_primitive_type_char] = | |
6c038f32 PH |
10467 | init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT, |
10468 | 0, "character", (struct objfile *) NULL); | |
72d5681a | 10469 | lai->primitive_type_vector [ada_primitive_type_float] = |
ea06eb3d | 10470 | init_type (TYPE_CODE_FLT, |
d4a9a881 | 10471 | gdbarch_float_bit (gdbarch)/ TARGET_CHAR_BIT, |
6c038f32 | 10472 | 0, "float", (struct objfile *) NULL); |
72d5681a | 10473 | lai->primitive_type_vector [ada_primitive_type_double] = |
ea06eb3d | 10474 | init_type (TYPE_CODE_FLT, |
d4a9a881 | 10475 | gdbarch_double_bit (gdbarch) / TARGET_CHAR_BIT, |
6c038f32 | 10476 | 0, "long_float", (struct objfile *) NULL); |
72d5681a | 10477 | lai->primitive_type_vector [ada_primitive_type_long_long] = |
9a76efb6 | 10478 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10479 | gdbarch_long_long_bit (gdbarch) / TARGET_CHAR_BIT, |
6c038f32 | 10480 | 0, "long_long_integer", (struct objfile *) NULL); |
72d5681a | 10481 | lai->primitive_type_vector [ada_primitive_type_long_double] = |
ea06eb3d | 10482 | init_type (TYPE_CODE_FLT, |
d4a9a881 | 10483 | gdbarch_double_bit (gdbarch) / TARGET_CHAR_BIT, |
6c038f32 | 10484 | 0, "long_long_float", (struct objfile *) NULL); |
72d5681a | 10485 | lai->primitive_type_vector [ada_primitive_type_natural] = |
9a76efb6 | 10486 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10487 | gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10488 | 0, "natural", (struct objfile *) NULL); |
72d5681a | 10489 | lai->primitive_type_vector [ada_primitive_type_positive] = |
9a76efb6 | 10490 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10491 | gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10492 | 0, "positive", (struct objfile *) NULL); |
72d5681a | 10493 | lai->primitive_type_vector [ada_primitive_type_void] = builtin->builtin_void; |
6c038f32 | 10494 | |
72d5681a | 10495 | lai->primitive_type_vector [ada_primitive_type_system_address] = |
6c038f32 PH |
10496 | lookup_pointer_type (init_type (TYPE_CODE_VOID, 1, 0, "void", |
10497 | (struct objfile *) NULL)); | |
72d5681a PH |
10498 | TYPE_NAME (lai->primitive_type_vector [ada_primitive_type_system_address]) |
10499 | = "system__address"; | |
6c038f32 | 10500 | } |
6c038f32 PH |
10501 | \f |
10502 | /* Language vector */ | |
10503 | ||
10504 | /* Not really used, but needed in the ada_language_defn. */ | |
10505 | ||
10506 | static void | |
10507 | emit_char (int c, struct ui_file *stream, int quoter) | |
10508 | { | |
10509 | ada_emit_char (c, stream, quoter, 1); | |
10510 | } | |
10511 | ||
10512 | static int | |
10513 | parse (void) | |
10514 | { | |
10515 | warnings_issued = 0; | |
10516 | return ada_parse (); | |
10517 | } | |
10518 | ||
10519 | static const struct exp_descriptor ada_exp_descriptor = { | |
10520 | ada_print_subexp, | |
10521 | ada_operator_length, | |
10522 | ada_op_name, | |
10523 | ada_dump_subexp_body, | |
10524 | ada_evaluate_subexp | |
10525 | }; | |
10526 | ||
10527 | const struct language_defn ada_language_defn = { | |
10528 | "ada", /* Language name */ | |
10529 | language_ada, | |
6c038f32 PH |
10530 | range_check_off, |
10531 | type_check_off, | |
10532 | case_sensitive_on, /* Yes, Ada is case-insensitive, but | |
10533 | that's not quite what this means. */ | |
6c038f32 PH |
10534 | array_row_major, |
10535 | &ada_exp_descriptor, | |
10536 | parse, | |
10537 | ada_error, | |
10538 | resolve, | |
10539 | ada_printchar, /* Print a character constant */ | |
10540 | ada_printstr, /* Function to print string constant */ | |
10541 | emit_char, /* Function to print single char (not used) */ | |
6c038f32 PH |
10542 | ada_print_type, /* Print a type using appropriate syntax */ |
10543 | ada_val_print, /* Print a value using appropriate syntax */ | |
10544 | ada_value_print, /* Print a top-level value */ | |
10545 | NULL, /* Language specific skip_trampoline */ | |
10546 | NULL, /* value_of_this */ | |
10547 | ada_lookup_symbol_nonlocal, /* Looking up non-local symbols. */ | |
10548 | basic_lookup_transparent_type, /* lookup_transparent_type */ | |
10549 | ada_la_decode, /* Language specific symbol demangler */ | |
10550 | NULL, /* Language specific class_name_from_physname */ | |
10551 | ada_op_print_tab, /* expression operators for printing */ | |
10552 | 0, /* c-style arrays */ | |
10553 | 1, /* String lower bound */ | |
6c038f32 | 10554 | ada_get_gdb_completer_word_break_characters, |
72d5681a | 10555 | ada_language_arch_info, |
e79af960 | 10556 | ada_print_array_index, |
41f1b697 | 10557 | default_pass_by_reference, |
6c038f32 PH |
10558 | LANG_MAGIC |
10559 | }; | |
10560 | ||
d2e4a39e | 10561 | void |
6c038f32 | 10562 | _initialize_ada_language (void) |
14f9c5c9 | 10563 | { |
6c038f32 PH |
10564 | add_language (&ada_language_defn); |
10565 | ||
10566 | varsize_limit = 65536; | |
6c038f32 PH |
10567 | |
10568 | obstack_init (&symbol_list_obstack); | |
10569 | ||
10570 | decoded_names_store = htab_create_alloc | |
10571 | (256, htab_hash_string, (int (*)(const void *, const void *)) streq, | |
10572 | NULL, xcalloc, xfree); | |
6b69afc4 JB |
10573 | |
10574 | observer_attach_executable_changed (ada_executable_changed_observer); | |
14f9c5c9 | 10575 | } |