]>
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" |
2ba95b9b | 58 | #include "vec.h" |
14f9c5c9 | 59 | |
4c4b4cd2 PH |
60 | /* Define whether or not the C operator '/' truncates towards zero for |
61 | differently signed operands (truncation direction is undefined in C). | |
62 | Copied from valarith.c. */ | |
63 | ||
64 | #ifndef TRUNCATION_TOWARDS_ZERO | |
65 | #define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2) | |
66 | #endif | |
67 | ||
4c4b4cd2 | 68 | static void extract_string (CORE_ADDR addr, char *buf); |
14f9c5c9 | 69 | |
14f9c5c9 AS |
70 | static void modify_general_field (char *, LONGEST, int, int); |
71 | ||
d2e4a39e | 72 | static struct type *desc_base_type (struct type *); |
14f9c5c9 | 73 | |
d2e4a39e | 74 | static struct type *desc_bounds_type (struct type *); |
14f9c5c9 | 75 | |
d2e4a39e | 76 | static struct value *desc_bounds (struct value *); |
14f9c5c9 | 77 | |
d2e4a39e | 78 | static int fat_pntr_bounds_bitpos (struct type *); |
14f9c5c9 | 79 | |
d2e4a39e | 80 | static int fat_pntr_bounds_bitsize (struct type *); |
14f9c5c9 | 81 | |
d2e4a39e | 82 | static struct type *desc_data_type (struct type *); |
14f9c5c9 | 83 | |
d2e4a39e | 84 | static struct value *desc_data (struct value *); |
14f9c5c9 | 85 | |
d2e4a39e | 86 | static int fat_pntr_data_bitpos (struct type *); |
14f9c5c9 | 87 | |
d2e4a39e | 88 | static int fat_pntr_data_bitsize (struct type *); |
14f9c5c9 | 89 | |
d2e4a39e | 90 | static struct value *desc_one_bound (struct value *, int, int); |
14f9c5c9 | 91 | |
d2e4a39e | 92 | static int desc_bound_bitpos (struct type *, int, int); |
14f9c5c9 | 93 | |
d2e4a39e | 94 | static int desc_bound_bitsize (struct type *, int, int); |
14f9c5c9 | 95 | |
d2e4a39e | 96 | static struct type *desc_index_type (struct type *, int); |
14f9c5c9 | 97 | |
d2e4a39e | 98 | static int desc_arity (struct type *); |
14f9c5c9 | 99 | |
d2e4a39e | 100 | static int ada_type_match (struct type *, struct type *, int); |
14f9c5c9 | 101 | |
d2e4a39e | 102 | static int ada_args_match (struct symbol *, struct value **, int); |
14f9c5c9 | 103 | |
4c4b4cd2 | 104 | static struct value *ensure_lval (struct value *, CORE_ADDR *); |
14f9c5c9 | 105 | |
d2e4a39e | 106 | static struct value *convert_actual (struct value *, struct type *, |
4c4b4cd2 | 107 | CORE_ADDR *); |
14f9c5c9 | 108 | |
d2e4a39e | 109 | static struct value *make_array_descriptor (struct type *, struct value *, |
4c4b4cd2 | 110 | CORE_ADDR *); |
14f9c5c9 | 111 | |
4c4b4cd2 | 112 | static void ada_add_block_symbols (struct obstack *, |
76a01679 | 113 | struct block *, const char *, |
2570f2b7 | 114 | domain_enum, struct objfile *, int); |
14f9c5c9 | 115 | |
4c4b4cd2 | 116 | static int is_nonfunction (struct ada_symbol_info *, int); |
14f9c5c9 | 117 | |
76a01679 | 118 | static void add_defn_to_vec (struct obstack *, struct symbol *, |
2570f2b7 | 119 | struct block *); |
14f9c5c9 | 120 | |
4c4b4cd2 PH |
121 | static int num_defns_collected (struct obstack *); |
122 | ||
123 | static struct ada_symbol_info *defns_collected (struct obstack *, int); | |
14f9c5c9 | 124 | |
d2e4a39e | 125 | static struct partial_symbol *ada_lookup_partial_symbol (struct partial_symtab |
76a01679 JB |
126 | *, const char *, int, |
127 | domain_enum, int); | |
14f9c5c9 | 128 | |
d2e4a39e | 129 | static struct symtab *symtab_for_sym (struct symbol *); |
14f9c5c9 | 130 | |
4c4b4cd2 | 131 | static struct value *resolve_subexp (struct expression **, int *, int, |
76a01679 | 132 | struct type *); |
14f9c5c9 | 133 | |
d2e4a39e | 134 | static void replace_operator_with_call (struct expression **, int, int, int, |
4c4b4cd2 | 135 | struct symbol *, struct block *); |
14f9c5c9 | 136 | |
d2e4a39e | 137 | static int possible_user_operator_p (enum exp_opcode, struct value **); |
14f9c5c9 | 138 | |
4c4b4cd2 PH |
139 | static char *ada_op_name (enum exp_opcode); |
140 | ||
141 | static const char *ada_decoded_op_name (enum exp_opcode); | |
14f9c5c9 | 142 | |
d2e4a39e | 143 | static int numeric_type_p (struct type *); |
14f9c5c9 | 144 | |
d2e4a39e | 145 | static int integer_type_p (struct type *); |
14f9c5c9 | 146 | |
d2e4a39e | 147 | static int scalar_type_p (struct type *); |
14f9c5c9 | 148 | |
d2e4a39e | 149 | static int discrete_type_p (struct type *); |
14f9c5c9 | 150 | |
aeb5907d JB |
151 | static enum ada_renaming_category parse_old_style_renaming (struct type *, |
152 | const char **, | |
153 | int *, | |
154 | const char **); | |
155 | ||
156 | static struct symbol *find_old_style_renaming_symbol (const char *, | |
157 | struct block *); | |
158 | ||
4c4b4cd2 | 159 | static struct type *ada_lookup_struct_elt_type (struct type *, char *, |
76a01679 | 160 | int, int, int *); |
4c4b4cd2 | 161 | |
d2e4a39e | 162 | static struct value *evaluate_subexp (struct type *, struct expression *, |
4c4b4cd2 | 163 | int *, enum noside); |
14f9c5c9 | 164 | |
d2e4a39e | 165 | static struct value *evaluate_subexp_type (struct expression *, int *); |
14f9c5c9 | 166 | |
d2e4a39e | 167 | static int is_dynamic_field (struct type *, int); |
14f9c5c9 | 168 | |
10a2c479 | 169 | static struct type *to_fixed_variant_branch_type (struct type *, |
fc1a4b47 | 170 | const gdb_byte *, |
4c4b4cd2 PH |
171 | CORE_ADDR, struct value *); |
172 | ||
173 | static struct type *to_fixed_array_type (struct type *, struct value *, int); | |
14f9c5c9 | 174 | |
d2e4a39e | 175 | static struct type *to_fixed_range_type (char *, struct value *, |
4c4b4cd2 | 176 | struct objfile *); |
14f9c5c9 | 177 | |
d2e4a39e | 178 | static struct type *to_static_fixed_type (struct type *); |
f192137b | 179 | static struct type *static_unwrap_type (struct type *type); |
14f9c5c9 | 180 | |
d2e4a39e | 181 | static struct value *unwrap_value (struct value *); |
14f9c5c9 | 182 | |
d2e4a39e | 183 | static struct type *packed_array_type (struct type *, long *); |
14f9c5c9 | 184 | |
d2e4a39e | 185 | static struct type *decode_packed_array_type (struct type *); |
14f9c5c9 | 186 | |
d2e4a39e | 187 | static struct value *decode_packed_array (struct value *); |
14f9c5c9 | 188 | |
d2e4a39e | 189 | static struct value *value_subscript_packed (struct value *, int, |
4c4b4cd2 | 190 | struct value **); |
14f9c5c9 | 191 | |
52ce6436 PH |
192 | static void move_bits (gdb_byte *, int, const gdb_byte *, int, int); |
193 | ||
4c4b4cd2 PH |
194 | static struct value *coerce_unspec_val_to_type (struct value *, |
195 | struct type *); | |
14f9c5c9 | 196 | |
d2e4a39e | 197 | static struct value *get_var_value (char *, char *); |
14f9c5c9 | 198 | |
d2e4a39e | 199 | static int lesseq_defined_than (struct symbol *, struct symbol *); |
14f9c5c9 | 200 | |
d2e4a39e | 201 | static int equiv_types (struct type *, struct type *); |
14f9c5c9 | 202 | |
d2e4a39e | 203 | static int is_name_suffix (const char *); |
14f9c5c9 | 204 | |
d2e4a39e | 205 | static int wild_match (const char *, int, const char *); |
14f9c5c9 | 206 | |
d2e4a39e | 207 | static struct value *ada_coerce_ref (struct value *); |
14f9c5c9 | 208 | |
4c4b4cd2 PH |
209 | static LONGEST pos_atr (struct value *); |
210 | ||
3cb382c9 | 211 | static struct value *value_pos_atr (struct type *, struct value *); |
14f9c5c9 | 212 | |
d2e4a39e | 213 | static struct value *value_val_atr (struct type *, struct value *); |
14f9c5c9 | 214 | |
4c4b4cd2 PH |
215 | static struct symbol *standard_lookup (const char *, const struct block *, |
216 | domain_enum); | |
14f9c5c9 | 217 | |
4c4b4cd2 PH |
218 | static struct value *ada_search_struct_field (char *, struct value *, int, |
219 | struct type *); | |
220 | ||
221 | static struct value *ada_value_primitive_field (struct value *, int, int, | |
222 | struct type *); | |
223 | ||
76a01679 | 224 | static int find_struct_field (char *, struct type *, int, |
52ce6436 | 225 | struct type **, int *, int *, int *, int *); |
4c4b4cd2 PH |
226 | |
227 | static struct value *ada_to_fixed_value_create (struct type *, CORE_ADDR, | |
228 | struct value *); | |
229 | ||
230 | static struct value *ada_to_fixed_value (struct value *); | |
14f9c5c9 | 231 | |
4c4b4cd2 PH |
232 | static int ada_resolve_function (struct ada_symbol_info *, int, |
233 | struct value **, int, const char *, | |
234 | struct type *); | |
235 | ||
236 | static struct value *ada_coerce_to_simple_array (struct value *); | |
237 | ||
238 | static int ada_is_direct_array_type (struct type *); | |
239 | ||
72d5681a PH |
240 | static void ada_language_arch_info (struct gdbarch *, |
241 | struct language_arch_info *); | |
714e53ab PH |
242 | |
243 | static void check_size (const struct type *); | |
52ce6436 PH |
244 | |
245 | static struct value *ada_index_struct_field (int, struct value *, int, | |
246 | struct type *); | |
247 | ||
248 | static struct value *assign_aggregate (struct value *, struct value *, | |
249 | struct expression *, int *, enum noside); | |
250 | ||
251 | static void aggregate_assign_from_choices (struct value *, struct value *, | |
252 | struct expression *, | |
253 | int *, LONGEST *, int *, | |
254 | int, LONGEST, LONGEST); | |
255 | ||
256 | static void aggregate_assign_positional (struct value *, struct value *, | |
257 | struct expression *, | |
258 | int *, LONGEST *, int *, int, | |
259 | LONGEST, LONGEST); | |
260 | ||
261 | ||
262 | static void aggregate_assign_others (struct value *, struct value *, | |
263 | struct expression *, | |
264 | int *, LONGEST *, int, LONGEST, LONGEST); | |
265 | ||
266 | ||
267 | static void add_component_interval (LONGEST, LONGEST, LONGEST *, int *, int); | |
268 | ||
269 | ||
270 | static struct value *ada_evaluate_subexp (struct type *, struct expression *, | |
271 | int *, enum noside); | |
272 | ||
273 | static void ada_forward_operator_length (struct expression *, int, int *, | |
274 | int *); | |
4c4b4cd2 PH |
275 | \f |
276 | ||
76a01679 | 277 | |
4c4b4cd2 | 278 | /* Maximum-sized dynamic type. */ |
14f9c5c9 AS |
279 | static unsigned int varsize_limit; |
280 | ||
4c4b4cd2 PH |
281 | /* FIXME: brobecker/2003-09-17: No longer a const because it is |
282 | returned by a function that does not return a const char *. */ | |
283 | static char *ada_completer_word_break_characters = | |
284 | #ifdef VMS | |
285 | " \t\n!@#%^&*()+=|~`}{[]\";:?/,-"; | |
286 | #else | |
14f9c5c9 | 287 | " \t\n!@#$%^&*()+=|~`}{[]\";:?/,-"; |
4c4b4cd2 | 288 | #endif |
14f9c5c9 | 289 | |
4c4b4cd2 | 290 | /* The name of the symbol to use to get the name of the main subprogram. */ |
76a01679 | 291 | static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[] |
4c4b4cd2 | 292 | = "__gnat_ada_main_program_name"; |
14f9c5c9 | 293 | |
4c4b4cd2 PH |
294 | /* Limit on the number of warnings to raise per expression evaluation. */ |
295 | static int warning_limit = 2; | |
296 | ||
297 | /* Number of warning messages issued; reset to 0 by cleanups after | |
298 | expression evaluation. */ | |
299 | static int warnings_issued = 0; | |
300 | ||
301 | static const char *known_runtime_file_name_patterns[] = { | |
302 | ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL | |
303 | }; | |
304 | ||
305 | static const char *known_auxiliary_function_name_patterns[] = { | |
306 | ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL | |
307 | }; | |
308 | ||
309 | /* Space for allocating results of ada_lookup_symbol_list. */ | |
310 | static struct obstack symbol_list_obstack; | |
311 | ||
312 | /* Utilities */ | |
313 | ||
41d27058 JB |
314 | /* Given DECODED_NAME a string holding a symbol name in its |
315 | decoded form (ie using the Ada dotted notation), returns | |
316 | its unqualified name. */ | |
317 | ||
318 | static const char * | |
319 | ada_unqualified_name (const char *decoded_name) | |
320 | { | |
321 | const char *result = strrchr (decoded_name, '.'); | |
322 | ||
323 | if (result != NULL) | |
324 | result++; /* Skip the dot... */ | |
325 | else | |
326 | result = decoded_name; | |
327 | ||
328 | return result; | |
329 | } | |
330 | ||
331 | /* Return a string starting with '<', followed by STR, and '>'. | |
332 | The result is good until the next call. */ | |
333 | ||
334 | static char * | |
335 | add_angle_brackets (const char *str) | |
336 | { | |
337 | static char *result = NULL; | |
338 | ||
339 | xfree (result); | |
340 | result = (char *) xmalloc ((strlen (str) + 3) * sizeof (char)); | |
341 | ||
342 | sprintf (result, "<%s>", str); | |
343 | return result; | |
344 | } | |
96d887e8 | 345 | |
4c4b4cd2 PH |
346 | static char * |
347 | ada_get_gdb_completer_word_break_characters (void) | |
348 | { | |
349 | return ada_completer_word_break_characters; | |
350 | } | |
351 | ||
e79af960 JB |
352 | /* Print an array element index using the Ada syntax. */ |
353 | ||
354 | static void | |
355 | ada_print_array_index (struct value *index_value, struct ui_file *stream, | |
356 | int format, enum val_prettyprint pretty) | |
357 | { | |
358 | LA_VALUE_PRINT (index_value, stream, format, pretty); | |
359 | fprintf_filtered (stream, " => "); | |
360 | } | |
361 | ||
4c4b4cd2 PH |
362 | /* Read the string located at ADDR from the inferior and store the |
363 | result into BUF. */ | |
364 | ||
365 | static void | |
14f9c5c9 AS |
366 | extract_string (CORE_ADDR addr, char *buf) |
367 | { | |
d2e4a39e | 368 | int char_index = 0; |
14f9c5c9 | 369 | |
4c4b4cd2 PH |
370 | /* Loop, reading one byte at a time, until we reach the '\000' |
371 | end-of-string marker. */ | |
d2e4a39e AS |
372 | do |
373 | { | |
374 | target_read_memory (addr + char_index * sizeof (char), | |
4c4b4cd2 | 375 | buf + char_index * sizeof (char), sizeof (char)); |
d2e4a39e AS |
376 | char_index++; |
377 | } | |
378 | while (buf[char_index - 1] != '\000'); | |
14f9c5c9 AS |
379 | } |
380 | ||
f27cf670 | 381 | /* Assuming VECT points to an array of *SIZE objects of size |
14f9c5c9 | 382 | ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects, |
f27cf670 | 383 | updating *SIZE as necessary and returning the (new) array. */ |
14f9c5c9 | 384 | |
f27cf670 AS |
385 | void * |
386 | grow_vect (void *vect, size_t *size, size_t min_size, int element_size) | |
14f9c5c9 | 387 | { |
d2e4a39e AS |
388 | if (*size < min_size) |
389 | { | |
390 | *size *= 2; | |
391 | if (*size < min_size) | |
4c4b4cd2 | 392 | *size = min_size; |
f27cf670 | 393 | vect = xrealloc (vect, *size * element_size); |
d2e4a39e | 394 | } |
f27cf670 | 395 | return vect; |
14f9c5c9 AS |
396 | } |
397 | ||
398 | /* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing | |
4c4b4cd2 | 399 | suffix of FIELD_NAME beginning "___". */ |
14f9c5c9 AS |
400 | |
401 | static int | |
ebf56fd3 | 402 | field_name_match (const char *field_name, const char *target) |
14f9c5c9 AS |
403 | { |
404 | int len = strlen (target); | |
d2e4a39e | 405 | return |
4c4b4cd2 PH |
406 | (strncmp (field_name, target, len) == 0 |
407 | && (field_name[len] == '\0' | |
408 | || (strncmp (field_name + len, "___", 3) == 0 | |
76a01679 JB |
409 | && strcmp (field_name + strlen (field_name) - 6, |
410 | "___XVN") != 0))); | |
14f9c5c9 AS |
411 | } |
412 | ||
413 | ||
4c4b4cd2 PH |
414 | /* Assuming TYPE is a TYPE_CODE_STRUCT, find the field whose name matches |
415 | FIELD_NAME, and return its index. This function also handles fields | |
416 | whose name have ___ suffixes because the compiler sometimes alters | |
417 | their name by adding such a suffix to represent fields with certain | |
418 | constraints. If the field could not be found, return a negative | |
419 | number if MAYBE_MISSING is set. Otherwise raise an error. */ | |
420 | ||
421 | int | |
422 | ada_get_field_index (const struct type *type, const char *field_name, | |
423 | int maybe_missing) | |
424 | { | |
425 | int fieldno; | |
426 | for (fieldno = 0; fieldno < TYPE_NFIELDS (type); fieldno++) | |
427 | if (field_name_match (TYPE_FIELD_NAME (type, fieldno), field_name)) | |
428 | return fieldno; | |
429 | ||
430 | if (!maybe_missing) | |
323e0a4a | 431 | error (_("Unable to find field %s in struct %s. Aborting"), |
4c4b4cd2 PH |
432 | field_name, TYPE_NAME (type)); |
433 | ||
434 | return -1; | |
435 | } | |
436 | ||
437 | /* The length of the prefix of NAME prior to any "___" suffix. */ | |
14f9c5c9 AS |
438 | |
439 | int | |
d2e4a39e | 440 | ada_name_prefix_len (const char *name) |
14f9c5c9 AS |
441 | { |
442 | if (name == NULL) | |
443 | return 0; | |
d2e4a39e | 444 | else |
14f9c5c9 | 445 | { |
d2e4a39e | 446 | const char *p = strstr (name, "___"); |
14f9c5c9 | 447 | if (p == NULL) |
4c4b4cd2 | 448 | return strlen (name); |
14f9c5c9 | 449 | else |
4c4b4cd2 | 450 | return p - name; |
14f9c5c9 AS |
451 | } |
452 | } | |
453 | ||
4c4b4cd2 PH |
454 | /* Return non-zero if SUFFIX is a suffix of STR. |
455 | Return zero if STR is null. */ | |
456 | ||
14f9c5c9 | 457 | static int |
d2e4a39e | 458 | is_suffix (const char *str, const char *suffix) |
14f9c5c9 AS |
459 | { |
460 | int len1, len2; | |
461 | if (str == NULL) | |
462 | return 0; | |
463 | len1 = strlen (str); | |
464 | len2 = strlen (suffix); | |
4c4b4cd2 | 465 | return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0); |
14f9c5c9 AS |
466 | } |
467 | ||
468 | /* Create a value of type TYPE whose contents come from VALADDR, if it | |
4c4b4cd2 PH |
469 | is non-null, and whose memory address (in the inferior) is |
470 | ADDRESS. */ | |
471 | ||
d2e4a39e | 472 | struct value * |
10a2c479 | 473 | value_from_contents_and_address (struct type *type, |
fc1a4b47 | 474 | const gdb_byte *valaddr, |
4c4b4cd2 | 475 | CORE_ADDR address) |
14f9c5c9 | 476 | { |
d2e4a39e AS |
477 | struct value *v = allocate_value (type); |
478 | if (valaddr == NULL) | |
dfa52d88 | 479 | set_value_lazy (v, 1); |
14f9c5c9 | 480 | else |
990a07ab | 481 | memcpy (value_contents_raw (v), valaddr, TYPE_LENGTH (type)); |
14f9c5c9 AS |
482 | VALUE_ADDRESS (v) = address; |
483 | if (address != 0) | |
484 | VALUE_LVAL (v) = lval_memory; | |
485 | return v; | |
486 | } | |
487 | ||
4c4b4cd2 PH |
488 | /* The contents of value VAL, treated as a value of type TYPE. The |
489 | result is an lval in memory if VAL is. */ | |
14f9c5c9 | 490 | |
d2e4a39e | 491 | static struct value * |
4c4b4cd2 | 492 | coerce_unspec_val_to_type (struct value *val, struct type *type) |
14f9c5c9 | 493 | { |
61ee279c | 494 | type = ada_check_typedef (type); |
df407dfe | 495 | if (value_type (val) == type) |
4c4b4cd2 | 496 | return val; |
d2e4a39e | 497 | else |
14f9c5c9 | 498 | { |
4c4b4cd2 PH |
499 | struct value *result; |
500 | ||
501 | /* Make sure that the object size is not unreasonable before | |
502 | trying to allocate some memory for it. */ | |
714e53ab | 503 | check_size (type); |
4c4b4cd2 PH |
504 | |
505 | result = allocate_value (type); | |
506 | VALUE_LVAL (result) = VALUE_LVAL (val); | |
9bbda503 AC |
507 | set_value_bitsize (result, value_bitsize (val)); |
508 | set_value_bitpos (result, value_bitpos (val)); | |
df407dfe | 509 | VALUE_ADDRESS (result) = VALUE_ADDRESS (val) + value_offset (val); |
d69fe07e | 510 | if (value_lazy (val) |
df407dfe | 511 | || TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val))) |
dfa52d88 | 512 | set_value_lazy (result, 1); |
d2e4a39e | 513 | else |
0fd88904 | 514 | memcpy (value_contents_raw (result), value_contents (val), |
4c4b4cd2 | 515 | TYPE_LENGTH (type)); |
14f9c5c9 AS |
516 | return result; |
517 | } | |
518 | } | |
519 | ||
fc1a4b47 AC |
520 | static const gdb_byte * |
521 | cond_offset_host (const gdb_byte *valaddr, long offset) | |
14f9c5c9 AS |
522 | { |
523 | if (valaddr == NULL) | |
524 | return NULL; | |
525 | else | |
526 | return valaddr + offset; | |
527 | } | |
528 | ||
529 | static CORE_ADDR | |
ebf56fd3 | 530 | cond_offset_target (CORE_ADDR address, long offset) |
14f9c5c9 AS |
531 | { |
532 | if (address == 0) | |
533 | return 0; | |
d2e4a39e | 534 | else |
14f9c5c9 AS |
535 | return address + offset; |
536 | } | |
537 | ||
4c4b4cd2 PH |
538 | /* Issue a warning (as for the definition of warning in utils.c, but |
539 | with exactly one argument rather than ...), unless the limit on the | |
540 | number of warnings has passed during the evaluation of the current | |
541 | expression. */ | |
a2249542 | 542 | |
77109804 AC |
543 | /* FIXME: cagney/2004-10-10: This function is mimicking the behavior |
544 | provided by "complaint". */ | |
545 | static void lim_warning (const char *format, ...) ATTR_FORMAT (printf, 1, 2); | |
546 | ||
14f9c5c9 | 547 | static void |
a2249542 | 548 | lim_warning (const char *format, ...) |
14f9c5c9 | 549 | { |
a2249542 MK |
550 | va_list args; |
551 | va_start (args, format); | |
552 | ||
4c4b4cd2 PH |
553 | warnings_issued += 1; |
554 | if (warnings_issued <= warning_limit) | |
a2249542 MK |
555 | vwarning (format, args); |
556 | ||
557 | va_end (args); | |
4c4b4cd2 PH |
558 | } |
559 | ||
714e53ab PH |
560 | /* Issue an error if the size of an object of type T is unreasonable, |
561 | i.e. if it would be a bad idea to allocate a value of this type in | |
562 | GDB. */ | |
563 | ||
564 | static void | |
565 | check_size (const struct type *type) | |
566 | { | |
567 | if (TYPE_LENGTH (type) > varsize_limit) | |
323e0a4a | 568 | error (_("object size is larger than varsize-limit")); |
714e53ab PH |
569 | } |
570 | ||
571 | ||
c3e5cd34 PH |
572 | /* Note: would have used MAX_OF_TYPE and MIN_OF_TYPE macros from |
573 | gdbtypes.h, but some of the necessary definitions in that file | |
574 | seem to have gone missing. */ | |
575 | ||
576 | /* Maximum value of a SIZE-byte signed integer type. */ | |
4c4b4cd2 | 577 | static LONGEST |
c3e5cd34 | 578 | max_of_size (int size) |
4c4b4cd2 | 579 | { |
76a01679 JB |
580 | LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2); |
581 | return top_bit | (top_bit - 1); | |
4c4b4cd2 PH |
582 | } |
583 | ||
c3e5cd34 | 584 | /* Minimum value of a SIZE-byte signed integer type. */ |
4c4b4cd2 | 585 | static LONGEST |
c3e5cd34 | 586 | min_of_size (int size) |
4c4b4cd2 | 587 | { |
c3e5cd34 | 588 | return -max_of_size (size) - 1; |
4c4b4cd2 PH |
589 | } |
590 | ||
c3e5cd34 | 591 | /* Maximum value of a SIZE-byte unsigned integer type. */ |
4c4b4cd2 | 592 | static ULONGEST |
c3e5cd34 | 593 | umax_of_size (int size) |
4c4b4cd2 | 594 | { |
76a01679 JB |
595 | ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1); |
596 | return top_bit | (top_bit - 1); | |
4c4b4cd2 PH |
597 | } |
598 | ||
c3e5cd34 PH |
599 | /* Maximum value of integral type T, as a signed quantity. */ |
600 | static LONGEST | |
601 | max_of_type (struct type *t) | |
4c4b4cd2 | 602 | { |
c3e5cd34 PH |
603 | if (TYPE_UNSIGNED (t)) |
604 | return (LONGEST) umax_of_size (TYPE_LENGTH (t)); | |
605 | else | |
606 | return max_of_size (TYPE_LENGTH (t)); | |
607 | } | |
608 | ||
609 | /* Minimum value of integral type T, as a signed quantity. */ | |
610 | static LONGEST | |
611 | min_of_type (struct type *t) | |
612 | { | |
613 | if (TYPE_UNSIGNED (t)) | |
614 | return 0; | |
615 | else | |
616 | return min_of_size (TYPE_LENGTH (t)); | |
4c4b4cd2 PH |
617 | } |
618 | ||
619 | /* The largest value in the domain of TYPE, a discrete type, as an integer. */ | |
690cc4eb | 620 | static LONGEST |
4c4b4cd2 PH |
621 | discrete_type_high_bound (struct type *type) |
622 | { | |
76a01679 | 623 | switch (TYPE_CODE (type)) |
4c4b4cd2 PH |
624 | { |
625 | case TYPE_CODE_RANGE: | |
690cc4eb | 626 | return TYPE_HIGH_BOUND (type); |
4c4b4cd2 | 627 | case TYPE_CODE_ENUM: |
690cc4eb PH |
628 | return TYPE_FIELD_BITPOS (type, TYPE_NFIELDS (type) - 1); |
629 | case TYPE_CODE_BOOL: | |
630 | return 1; | |
631 | case TYPE_CODE_CHAR: | |
76a01679 | 632 | case TYPE_CODE_INT: |
690cc4eb | 633 | return max_of_type (type); |
4c4b4cd2 | 634 | default: |
323e0a4a | 635 | error (_("Unexpected type in discrete_type_high_bound.")); |
4c4b4cd2 PH |
636 | } |
637 | } | |
638 | ||
639 | /* The largest value in the domain of TYPE, a discrete type, as an integer. */ | |
690cc4eb | 640 | static LONGEST |
4c4b4cd2 PH |
641 | discrete_type_low_bound (struct type *type) |
642 | { | |
76a01679 | 643 | switch (TYPE_CODE (type)) |
4c4b4cd2 PH |
644 | { |
645 | case TYPE_CODE_RANGE: | |
690cc4eb | 646 | return TYPE_LOW_BOUND (type); |
4c4b4cd2 | 647 | case TYPE_CODE_ENUM: |
690cc4eb PH |
648 | return TYPE_FIELD_BITPOS (type, 0); |
649 | case TYPE_CODE_BOOL: | |
650 | return 0; | |
651 | case TYPE_CODE_CHAR: | |
76a01679 | 652 | case TYPE_CODE_INT: |
690cc4eb | 653 | return min_of_type (type); |
4c4b4cd2 | 654 | default: |
323e0a4a | 655 | error (_("Unexpected type in discrete_type_low_bound.")); |
4c4b4cd2 PH |
656 | } |
657 | } | |
658 | ||
659 | /* The identity on non-range types. For range types, the underlying | |
76a01679 | 660 | non-range scalar type. */ |
4c4b4cd2 PH |
661 | |
662 | static struct type * | |
663 | base_type (struct type *type) | |
664 | { | |
665 | while (type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE) | |
666 | { | |
76a01679 JB |
667 | if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL) |
668 | return type; | |
4c4b4cd2 PH |
669 | type = TYPE_TARGET_TYPE (type); |
670 | } | |
671 | return type; | |
14f9c5c9 | 672 | } |
4c4b4cd2 | 673 | \f |
76a01679 | 674 | |
4c4b4cd2 | 675 | /* Language Selection */ |
14f9c5c9 AS |
676 | |
677 | /* If the main program is in Ada, return language_ada, otherwise return LANG | |
678 | (the main program is in Ada iif the adainit symbol is found). | |
679 | ||
4c4b4cd2 | 680 | MAIN_PST is not used. */ |
d2e4a39e | 681 | |
14f9c5c9 | 682 | enum language |
d2e4a39e | 683 | ada_update_initial_language (enum language lang, |
4c4b4cd2 | 684 | struct partial_symtab *main_pst) |
14f9c5c9 | 685 | { |
d2e4a39e | 686 | if (lookup_minimal_symbol ("adainit", (const char *) NULL, |
4c4b4cd2 PH |
687 | (struct objfile *) NULL) != NULL) |
688 | return language_ada; | |
14f9c5c9 AS |
689 | |
690 | return lang; | |
691 | } | |
96d887e8 PH |
692 | |
693 | /* If the main procedure is written in Ada, then return its name. | |
694 | The result is good until the next call. Return NULL if the main | |
695 | procedure doesn't appear to be in Ada. */ | |
696 | ||
697 | char * | |
698 | ada_main_name (void) | |
699 | { | |
700 | struct minimal_symbol *msym; | |
701 | CORE_ADDR main_program_name_addr; | |
702 | static char main_program_name[1024]; | |
6c038f32 | 703 | |
96d887e8 PH |
704 | /* For Ada, the name of the main procedure is stored in a specific |
705 | string constant, generated by the binder. Look for that symbol, | |
706 | extract its address, and then read that string. If we didn't find | |
707 | that string, then most probably the main procedure is not written | |
708 | in Ada. */ | |
709 | msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL); | |
710 | ||
711 | if (msym != NULL) | |
712 | { | |
713 | main_program_name_addr = SYMBOL_VALUE_ADDRESS (msym); | |
714 | if (main_program_name_addr == 0) | |
323e0a4a | 715 | error (_("Invalid address for Ada main program name.")); |
96d887e8 PH |
716 | |
717 | extract_string (main_program_name_addr, main_program_name); | |
718 | return main_program_name; | |
719 | } | |
720 | ||
721 | /* The main procedure doesn't seem to be in Ada. */ | |
722 | return NULL; | |
723 | } | |
14f9c5c9 | 724 | \f |
4c4b4cd2 | 725 | /* Symbols */ |
d2e4a39e | 726 | |
4c4b4cd2 PH |
727 | /* Table of Ada operators and their GNAT-encoded names. Last entry is pair |
728 | of NULLs. */ | |
14f9c5c9 | 729 | |
d2e4a39e AS |
730 | const struct ada_opname_map ada_opname_table[] = { |
731 | {"Oadd", "\"+\"", BINOP_ADD}, | |
732 | {"Osubtract", "\"-\"", BINOP_SUB}, | |
733 | {"Omultiply", "\"*\"", BINOP_MUL}, | |
734 | {"Odivide", "\"/\"", BINOP_DIV}, | |
735 | {"Omod", "\"mod\"", BINOP_MOD}, | |
736 | {"Orem", "\"rem\"", BINOP_REM}, | |
737 | {"Oexpon", "\"**\"", BINOP_EXP}, | |
738 | {"Olt", "\"<\"", BINOP_LESS}, | |
739 | {"Ole", "\"<=\"", BINOP_LEQ}, | |
740 | {"Ogt", "\">\"", BINOP_GTR}, | |
741 | {"Oge", "\">=\"", BINOP_GEQ}, | |
742 | {"Oeq", "\"=\"", BINOP_EQUAL}, | |
743 | {"One", "\"/=\"", BINOP_NOTEQUAL}, | |
744 | {"Oand", "\"and\"", BINOP_BITWISE_AND}, | |
745 | {"Oor", "\"or\"", BINOP_BITWISE_IOR}, | |
746 | {"Oxor", "\"xor\"", BINOP_BITWISE_XOR}, | |
747 | {"Oconcat", "\"&\"", BINOP_CONCAT}, | |
748 | {"Oabs", "\"abs\"", UNOP_ABS}, | |
749 | {"Onot", "\"not\"", UNOP_LOGICAL_NOT}, | |
750 | {"Oadd", "\"+\"", UNOP_PLUS}, | |
751 | {"Osubtract", "\"-\"", UNOP_NEG}, | |
752 | {NULL, NULL} | |
14f9c5c9 AS |
753 | }; |
754 | ||
4c4b4cd2 PH |
755 | /* Return non-zero if STR should be suppressed in info listings. */ |
756 | ||
14f9c5c9 | 757 | static int |
d2e4a39e | 758 | is_suppressed_name (const char *str) |
14f9c5c9 | 759 | { |
4c4b4cd2 | 760 | if (strncmp (str, "_ada_", 5) == 0) |
14f9c5c9 AS |
761 | str += 5; |
762 | if (str[0] == '_' || str[0] == '\000') | |
763 | return 1; | |
764 | else | |
765 | { | |
d2e4a39e AS |
766 | const char *p; |
767 | const char *suffix = strstr (str, "___"); | |
14f9c5c9 | 768 | if (suffix != NULL && suffix[3] != 'X') |
4c4b4cd2 | 769 | return 1; |
14f9c5c9 | 770 | if (suffix == NULL) |
4c4b4cd2 | 771 | suffix = str + strlen (str); |
d2e4a39e | 772 | for (p = suffix - 1; p != str; p -= 1) |
4c4b4cd2 PH |
773 | if (isupper (*p)) |
774 | { | |
775 | int i; | |
776 | if (p[0] == 'X' && p[-1] != '_') | |
777 | goto OK; | |
778 | if (*p != 'O') | |
779 | return 1; | |
780 | for (i = 0; ada_opname_table[i].encoded != NULL; i += 1) | |
781 | if (strncmp (ada_opname_table[i].encoded, p, | |
782 | strlen (ada_opname_table[i].encoded)) == 0) | |
783 | goto OK; | |
784 | return 1; | |
785 | OK:; | |
786 | } | |
14f9c5c9 AS |
787 | return 0; |
788 | } | |
789 | } | |
790 | ||
4c4b4cd2 PH |
791 | /* The "encoded" form of DECODED, according to GNAT conventions. |
792 | The result is valid until the next call to ada_encode. */ | |
793 | ||
14f9c5c9 | 794 | char * |
4c4b4cd2 | 795 | ada_encode (const char *decoded) |
14f9c5c9 | 796 | { |
4c4b4cd2 PH |
797 | static char *encoding_buffer = NULL; |
798 | static size_t encoding_buffer_size = 0; | |
d2e4a39e | 799 | const char *p; |
14f9c5c9 | 800 | int k; |
d2e4a39e | 801 | |
4c4b4cd2 | 802 | if (decoded == NULL) |
14f9c5c9 AS |
803 | return NULL; |
804 | ||
4c4b4cd2 PH |
805 | GROW_VECT (encoding_buffer, encoding_buffer_size, |
806 | 2 * strlen (decoded) + 10); | |
14f9c5c9 AS |
807 | |
808 | k = 0; | |
4c4b4cd2 | 809 | for (p = decoded; *p != '\0'; p += 1) |
14f9c5c9 | 810 | { |
cdc7bb92 | 811 | if (*p == '.') |
4c4b4cd2 PH |
812 | { |
813 | encoding_buffer[k] = encoding_buffer[k + 1] = '_'; | |
814 | k += 2; | |
815 | } | |
14f9c5c9 | 816 | else if (*p == '"') |
4c4b4cd2 PH |
817 | { |
818 | const struct ada_opname_map *mapping; | |
819 | ||
820 | for (mapping = ada_opname_table; | |
1265e4aa JB |
821 | mapping->encoded != NULL |
822 | && strncmp (mapping->decoded, p, | |
823 | strlen (mapping->decoded)) != 0; mapping += 1) | |
4c4b4cd2 PH |
824 | ; |
825 | if (mapping->encoded == NULL) | |
323e0a4a | 826 | error (_("invalid Ada operator name: %s"), p); |
4c4b4cd2 PH |
827 | strcpy (encoding_buffer + k, mapping->encoded); |
828 | k += strlen (mapping->encoded); | |
829 | break; | |
830 | } | |
d2e4a39e | 831 | else |
4c4b4cd2 PH |
832 | { |
833 | encoding_buffer[k] = *p; | |
834 | k += 1; | |
835 | } | |
14f9c5c9 AS |
836 | } |
837 | ||
4c4b4cd2 PH |
838 | encoding_buffer[k] = '\0'; |
839 | return encoding_buffer; | |
14f9c5c9 AS |
840 | } |
841 | ||
842 | /* Return NAME folded to lower case, or, if surrounded by single | |
4c4b4cd2 PH |
843 | quotes, unfolded, but with the quotes stripped away. Result good |
844 | to next call. */ | |
845 | ||
d2e4a39e AS |
846 | char * |
847 | ada_fold_name (const char *name) | |
14f9c5c9 | 848 | { |
d2e4a39e | 849 | static char *fold_buffer = NULL; |
14f9c5c9 AS |
850 | static size_t fold_buffer_size = 0; |
851 | ||
852 | int len = strlen (name); | |
d2e4a39e | 853 | GROW_VECT (fold_buffer, fold_buffer_size, len + 1); |
14f9c5c9 AS |
854 | |
855 | if (name[0] == '\'') | |
856 | { | |
d2e4a39e AS |
857 | strncpy (fold_buffer, name + 1, len - 2); |
858 | fold_buffer[len - 2] = '\000'; | |
14f9c5c9 AS |
859 | } |
860 | else | |
861 | { | |
862 | int i; | |
863 | for (i = 0; i <= len; i += 1) | |
4c4b4cd2 | 864 | fold_buffer[i] = tolower (name[i]); |
14f9c5c9 AS |
865 | } |
866 | ||
867 | return fold_buffer; | |
868 | } | |
869 | ||
529cad9c PH |
870 | /* Return nonzero if C is either a digit or a lowercase alphabet character. */ |
871 | ||
872 | static int | |
873 | is_lower_alphanum (const char c) | |
874 | { | |
875 | return (isdigit (c) || (isalpha (c) && islower (c))); | |
876 | } | |
877 | ||
29480c32 JB |
878 | /* Remove either of these suffixes: |
879 | . .{DIGIT}+ | |
880 | . ${DIGIT}+ | |
881 | . ___{DIGIT}+ | |
882 | . __{DIGIT}+. | |
883 | These are suffixes introduced by the compiler for entities such as | |
884 | nested subprogram for instance, in order to avoid name clashes. | |
885 | They do not serve any purpose for the debugger. */ | |
886 | ||
887 | static void | |
888 | ada_remove_trailing_digits (const char *encoded, int *len) | |
889 | { | |
890 | if (*len > 1 && isdigit (encoded[*len - 1])) | |
891 | { | |
892 | int i = *len - 2; | |
893 | while (i > 0 && isdigit (encoded[i])) | |
894 | i--; | |
895 | if (i >= 0 && encoded[i] == '.') | |
896 | *len = i; | |
897 | else if (i >= 0 && encoded[i] == '$') | |
898 | *len = i; | |
899 | else if (i >= 2 && strncmp (encoded + i - 2, "___", 3) == 0) | |
900 | *len = i - 2; | |
901 | else if (i >= 1 && strncmp (encoded + i - 1, "__", 2) == 0) | |
902 | *len = i - 1; | |
903 | } | |
904 | } | |
905 | ||
906 | /* Remove the suffix introduced by the compiler for protected object | |
907 | subprograms. */ | |
908 | ||
909 | static void | |
910 | ada_remove_po_subprogram_suffix (const char *encoded, int *len) | |
911 | { | |
912 | /* Remove trailing N. */ | |
913 | ||
914 | /* Protected entry subprograms are broken into two | |
915 | separate subprograms: The first one is unprotected, and has | |
916 | a 'N' suffix; the second is the protected version, and has | |
917 | the 'P' suffix. The second calls the first one after handling | |
918 | the protection. Since the P subprograms are internally generated, | |
919 | we leave these names undecoded, giving the user a clue that this | |
920 | entity is internal. */ | |
921 | ||
922 | if (*len > 1 | |
923 | && encoded[*len - 1] == 'N' | |
924 | && (isdigit (encoded[*len - 2]) || islower (encoded[*len - 2]))) | |
925 | *len = *len - 1; | |
926 | } | |
927 | ||
928 | /* If ENCODED follows the GNAT entity encoding conventions, then return | |
929 | the decoded form of ENCODED. Otherwise, return "<%s>" where "%s" is | |
930 | replaced by ENCODED. | |
14f9c5c9 | 931 | |
4c4b4cd2 | 932 | The resulting string is valid until the next call of ada_decode. |
29480c32 | 933 | If the string is unchanged by decoding, the original string pointer |
4c4b4cd2 PH |
934 | is returned. */ |
935 | ||
936 | const char * | |
937 | ada_decode (const char *encoded) | |
14f9c5c9 AS |
938 | { |
939 | int i, j; | |
940 | int len0; | |
d2e4a39e | 941 | const char *p; |
4c4b4cd2 | 942 | char *decoded; |
14f9c5c9 | 943 | int at_start_name; |
4c4b4cd2 PH |
944 | static char *decoding_buffer = NULL; |
945 | static size_t decoding_buffer_size = 0; | |
d2e4a39e | 946 | |
29480c32 JB |
947 | /* The name of the Ada main procedure starts with "_ada_". |
948 | This prefix is not part of the decoded name, so skip this part | |
949 | if we see this prefix. */ | |
4c4b4cd2 PH |
950 | if (strncmp (encoded, "_ada_", 5) == 0) |
951 | encoded += 5; | |
14f9c5c9 | 952 | |
29480c32 JB |
953 | /* If the name starts with '_', then it is not a properly encoded |
954 | name, so do not attempt to decode it. Similarly, if the name | |
955 | starts with '<', the name should not be decoded. */ | |
4c4b4cd2 | 956 | if (encoded[0] == '_' || encoded[0] == '<') |
14f9c5c9 AS |
957 | goto Suppress; |
958 | ||
4c4b4cd2 | 959 | len0 = strlen (encoded); |
4c4b4cd2 | 960 | |
29480c32 JB |
961 | ada_remove_trailing_digits (encoded, &len0); |
962 | ada_remove_po_subprogram_suffix (encoded, &len0); | |
529cad9c | 963 | |
4c4b4cd2 PH |
964 | /* Remove the ___X.* suffix if present. Do not forget to verify that |
965 | the suffix is located before the current "end" of ENCODED. We want | |
966 | to avoid re-matching parts of ENCODED that have previously been | |
967 | marked as discarded (by decrementing LEN0). */ | |
968 | p = strstr (encoded, "___"); | |
969 | if (p != NULL && p - encoded < len0 - 3) | |
14f9c5c9 AS |
970 | { |
971 | if (p[3] == 'X') | |
4c4b4cd2 | 972 | len0 = p - encoded; |
14f9c5c9 | 973 | else |
4c4b4cd2 | 974 | goto Suppress; |
14f9c5c9 | 975 | } |
4c4b4cd2 | 976 | |
29480c32 JB |
977 | /* Remove any trailing TKB suffix. It tells us that this symbol |
978 | is for the body of a task, but that information does not actually | |
979 | appear in the decoded name. */ | |
980 | ||
4c4b4cd2 | 981 | if (len0 > 3 && strncmp (encoded + len0 - 3, "TKB", 3) == 0) |
14f9c5c9 | 982 | len0 -= 3; |
76a01679 | 983 | |
29480c32 JB |
984 | /* Remove trailing "B" suffixes. */ |
985 | /* FIXME: brobecker/2006-04-19: Not sure what this are used for... */ | |
986 | ||
4c4b4cd2 | 987 | if (len0 > 1 && strncmp (encoded + len0 - 1, "B", 1) == 0) |
14f9c5c9 AS |
988 | len0 -= 1; |
989 | ||
4c4b4cd2 | 990 | /* Make decoded big enough for possible expansion by operator name. */ |
29480c32 | 991 | |
4c4b4cd2 PH |
992 | GROW_VECT (decoding_buffer, decoding_buffer_size, 2 * len0 + 1); |
993 | decoded = decoding_buffer; | |
14f9c5c9 | 994 | |
29480c32 JB |
995 | /* Remove trailing __{digit}+ or trailing ${digit}+. */ |
996 | ||
4c4b4cd2 | 997 | if (len0 > 1 && isdigit (encoded[len0 - 1])) |
d2e4a39e | 998 | { |
4c4b4cd2 PH |
999 | i = len0 - 2; |
1000 | while ((i >= 0 && isdigit (encoded[i])) | |
1001 | || (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1]))) | |
1002 | i -= 1; | |
1003 | if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_') | |
1004 | len0 = i - 1; | |
1005 | else if (encoded[i] == '$') | |
1006 | len0 = i; | |
d2e4a39e | 1007 | } |
14f9c5c9 | 1008 | |
29480c32 JB |
1009 | /* The first few characters that are not alphabetic are not part |
1010 | of any encoding we use, so we can copy them over verbatim. */ | |
1011 | ||
4c4b4cd2 PH |
1012 | for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1) |
1013 | decoded[j] = encoded[i]; | |
14f9c5c9 AS |
1014 | |
1015 | at_start_name = 1; | |
1016 | while (i < len0) | |
1017 | { | |
29480c32 | 1018 | /* Is this a symbol function? */ |
4c4b4cd2 PH |
1019 | if (at_start_name && encoded[i] == 'O') |
1020 | { | |
1021 | int k; | |
1022 | for (k = 0; ada_opname_table[k].encoded != NULL; k += 1) | |
1023 | { | |
1024 | int op_len = strlen (ada_opname_table[k].encoded); | |
06d5cf63 JB |
1025 | if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1, |
1026 | op_len - 1) == 0) | |
1027 | && !isalnum (encoded[i + op_len])) | |
4c4b4cd2 PH |
1028 | { |
1029 | strcpy (decoded + j, ada_opname_table[k].decoded); | |
1030 | at_start_name = 0; | |
1031 | i += op_len; | |
1032 | j += strlen (ada_opname_table[k].decoded); | |
1033 | break; | |
1034 | } | |
1035 | } | |
1036 | if (ada_opname_table[k].encoded != NULL) | |
1037 | continue; | |
1038 | } | |
14f9c5c9 AS |
1039 | at_start_name = 0; |
1040 | ||
529cad9c PH |
1041 | /* Replace "TK__" with "__", which will eventually be translated |
1042 | into "." (just below). */ | |
1043 | ||
4c4b4cd2 PH |
1044 | if (i < len0 - 4 && strncmp (encoded + i, "TK__", 4) == 0) |
1045 | i += 2; | |
529cad9c | 1046 | |
29480c32 JB |
1047 | /* Replace "__B_{DIGITS}+__" sequences by "__", which will eventually |
1048 | be translated into "." (just below). These are internal names | |
1049 | generated for anonymous blocks inside which our symbol is nested. */ | |
1050 | ||
1051 | if (len0 - i > 5 && encoded [i] == '_' && encoded [i+1] == '_' | |
1052 | && encoded [i+2] == 'B' && encoded [i+3] == '_' | |
1053 | && isdigit (encoded [i+4])) | |
1054 | { | |
1055 | int k = i + 5; | |
1056 | ||
1057 | while (k < len0 && isdigit (encoded[k])) | |
1058 | k++; /* Skip any extra digit. */ | |
1059 | ||
1060 | /* Double-check that the "__B_{DIGITS}+" sequence we found | |
1061 | is indeed followed by "__". */ | |
1062 | if (len0 - k > 2 && encoded [k] == '_' && encoded [k+1] == '_') | |
1063 | i = k; | |
1064 | } | |
1065 | ||
529cad9c PH |
1066 | /* Remove _E{DIGITS}+[sb] */ |
1067 | ||
1068 | /* Just as for protected object subprograms, there are 2 categories | |
1069 | of subprograms created by the compiler for each entry. The first | |
1070 | one implements the actual entry code, and has a suffix following | |
1071 | the convention above; the second one implements the barrier and | |
1072 | uses the same convention as above, except that the 'E' is replaced | |
1073 | by a 'B'. | |
1074 | ||
1075 | Just as above, we do not decode the name of barrier functions | |
1076 | to give the user a clue that the code he is debugging has been | |
1077 | internally generated. */ | |
1078 | ||
1079 | if (len0 - i > 3 && encoded [i] == '_' && encoded[i+1] == 'E' | |
1080 | && isdigit (encoded[i+2])) | |
1081 | { | |
1082 | int k = i + 3; | |
1083 | ||
1084 | while (k < len0 && isdigit (encoded[k])) | |
1085 | k++; | |
1086 | ||
1087 | if (k < len0 | |
1088 | && (encoded[k] == 'b' || encoded[k] == 's')) | |
1089 | { | |
1090 | k++; | |
1091 | /* Just as an extra precaution, make sure that if this | |
1092 | suffix is followed by anything else, it is a '_'. | |
1093 | Otherwise, we matched this sequence by accident. */ | |
1094 | if (k == len0 | |
1095 | || (k < len0 && encoded[k] == '_')) | |
1096 | i = k; | |
1097 | } | |
1098 | } | |
1099 | ||
1100 | /* Remove trailing "N" in [a-z0-9]+N__. The N is added by | |
1101 | the GNAT front-end in protected object subprograms. */ | |
1102 | ||
1103 | if (i < len0 + 3 | |
1104 | && encoded[i] == 'N' && encoded[i+1] == '_' && encoded[i+2] == '_') | |
1105 | { | |
1106 | /* Backtrack a bit up until we reach either the begining of | |
1107 | the encoded name, or "__". Make sure that we only find | |
1108 | digits or lowercase characters. */ | |
1109 | const char *ptr = encoded + i - 1; | |
1110 | ||
1111 | while (ptr >= encoded && is_lower_alphanum (ptr[0])) | |
1112 | ptr--; | |
1113 | if (ptr < encoded | |
1114 | || (ptr > encoded && ptr[0] == '_' && ptr[-1] == '_')) | |
1115 | i++; | |
1116 | } | |
1117 | ||
4c4b4cd2 PH |
1118 | if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1])) |
1119 | { | |
29480c32 JB |
1120 | /* This is a X[bn]* sequence not separated from the previous |
1121 | part of the name with a non-alpha-numeric character (in other | |
1122 | words, immediately following an alpha-numeric character), then | |
1123 | verify that it is placed at the end of the encoded name. If | |
1124 | not, then the encoding is not valid and we should abort the | |
1125 | decoding. Otherwise, just skip it, it is used in body-nested | |
1126 | package names. */ | |
4c4b4cd2 PH |
1127 | do |
1128 | i += 1; | |
1129 | while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n')); | |
1130 | if (i < len0) | |
1131 | goto Suppress; | |
1132 | } | |
cdc7bb92 | 1133 | else if (i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_') |
4c4b4cd2 | 1134 | { |
29480c32 | 1135 | /* Replace '__' by '.'. */ |
4c4b4cd2 PH |
1136 | decoded[j] = '.'; |
1137 | at_start_name = 1; | |
1138 | i += 2; | |
1139 | j += 1; | |
1140 | } | |
14f9c5c9 | 1141 | else |
4c4b4cd2 | 1142 | { |
29480c32 JB |
1143 | /* It's a character part of the decoded name, so just copy it |
1144 | over. */ | |
4c4b4cd2 PH |
1145 | decoded[j] = encoded[i]; |
1146 | i += 1; | |
1147 | j += 1; | |
1148 | } | |
14f9c5c9 | 1149 | } |
4c4b4cd2 | 1150 | decoded[j] = '\000'; |
14f9c5c9 | 1151 | |
29480c32 JB |
1152 | /* Decoded names should never contain any uppercase character. |
1153 | Double-check this, and abort the decoding if we find one. */ | |
1154 | ||
4c4b4cd2 PH |
1155 | for (i = 0; decoded[i] != '\0'; i += 1) |
1156 | if (isupper (decoded[i]) || decoded[i] == ' ') | |
14f9c5c9 AS |
1157 | goto Suppress; |
1158 | ||
4c4b4cd2 PH |
1159 | if (strcmp (decoded, encoded) == 0) |
1160 | return encoded; | |
1161 | else | |
1162 | return decoded; | |
14f9c5c9 AS |
1163 | |
1164 | Suppress: | |
4c4b4cd2 PH |
1165 | GROW_VECT (decoding_buffer, decoding_buffer_size, strlen (encoded) + 3); |
1166 | decoded = decoding_buffer; | |
1167 | if (encoded[0] == '<') | |
1168 | strcpy (decoded, encoded); | |
14f9c5c9 | 1169 | else |
4c4b4cd2 PH |
1170 | sprintf (decoded, "<%s>", encoded); |
1171 | return decoded; | |
1172 | ||
1173 | } | |
1174 | ||
1175 | /* Table for keeping permanent unique copies of decoded names. Once | |
1176 | allocated, names in this table are never released. While this is a | |
1177 | storage leak, it should not be significant unless there are massive | |
1178 | changes in the set of decoded names in successive versions of a | |
1179 | symbol table loaded during a single session. */ | |
1180 | static struct htab *decoded_names_store; | |
1181 | ||
1182 | /* Returns the decoded name of GSYMBOL, as for ada_decode, caching it | |
1183 | in the language-specific part of GSYMBOL, if it has not been | |
1184 | previously computed. Tries to save the decoded name in the same | |
1185 | obstack as GSYMBOL, if possible, and otherwise on the heap (so that, | |
1186 | in any case, the decoded symbol has a lifetime at least that of | |
1187 | GSYMBOL). | |
1188 | The GSYMBOL parameter is "mutable" in the C++ sense: logically | |
1189 | const, but nevertheless modified to a semantically equivalent form | |
1190 | when a decoded name is cached in it. | |
76a01679 | 1191 | */ |
4c4b4cd2 | 1192 | |
76a01679 JB |
1193 | char * |
1194 | ada_decode_symbol (const struct general_symbol_info *gsymbol) | |
4c4b4cd2 | 1195 | { |
76a01679 | 1196 | char **resultp = |
4c4b4cd2 PH |
1197 | (char **) &gsymbol->language_specific.cplus_specific.demangled_name; |
1198 | if (*resultp == NULL) | |
1199 | { | |
1200 | const char *decoded = ada_decode (gsymbol->name); | |
714835d5 | 1201 | if (gsymbol->obj_section != NULL) |
76a01679 | 1202 | { |
714835d5 UW |
1203 | struct objfile *objf = gsymbol->obj_section->objfile; |
1204 | *resultp = obsavestring (decoded, strlen (decoded), | |
1205 | &objf->objfile_obstack); | |
76a01679 | 1206 | } |
4c4b4cd2 | 1207 | /* Sometimes, we can't find a corresponding objfile, in which |
76a01679 JB |
1208 | case, we put the result on the heap. Since we only decode |
1209 | when needed, we hope this usually does not cause a | |
1210 | significant memory leak (FIXME). */ | |
4c4b4cd2 | 1211 | if (*resultp == NULL) |
76a01679 JB |
1212 | { |
1213 | char **slot = (char **) htab_find_slot (decoded_names_store, | |
1214 | decoded, INSERT); | |
1215 | if (*slot == NULL) | |
1216 | *slot = xstrdup (decoded); | |
1217 | *resultp = *slot; | |
1218 | } | |
4c4b4cd2 | 1219 | } |
14f9c5c9 | 1220 | |
4c4b4cd2 PH |
1221 | return *resultp; |
1222 | } | |
76a01679 JB |
1223 | |
1224 | char * | |
1225 | ada_la_decode (const char *encoded, int options) | |
4c4b4cd2 PH |
1226 | { |
1227 | return xstrdup (ada_decode (encoded)); | |
14f9c5c9 AS |
1228 | } |
1229 | ||
1230 | /* Returns non-zero iff SYM_NAME matches NAME, ignoring any trailing | |
4c4b4cd2 PH |
1231 | suffixes that encode debugging information or leading _ada_ on |
1232 | SYM_NAME (see is_name_suffix commentary for the debugging | |
1233 | information that is ignored). If WILD, then NAME need only match a | |
1234 | suffix of SYM_NAME minus the same suffixes. Also returns 0 if | |
1235 | either argument is NULL. */ | |
14f9c5c9 AS |
1236 | |
1237 | int | |
d2e4a39e | 1238 | ada_match_name (const char *sym_name, const char *name, int wild) |
14f9c5c9 AS |
1239 | { |
1240 | if (sym_name == NULL || name == NULL) | |
1241 | return 0; | |
1242 | else if (wild) | |
1243 | return wild_match (name, strlen (name), sym_name); | |
d2e4a39e AS |
1244 | else |
1245 | { | |
1246 | int len_name = strlen (name); | |
4c4b4cd2 PH |
1247 | return (strncmp (sym_name, name, len_name) == 0 |
1248 | && is_name_suffix (sym_name + len_name)) | |
1249 | || (strncmp (sym_name, "_ada_", 5) == 0 | |
1250 | && strncmp (sym_name + 5, name, len_name) == 0 | |
1251 | && is_name_suffix (sym_name + len_name + 5)); | |
d2e4a39e | 1252 | } |
14f9c5c9 AS |
1253 | } |
1254 | ||
4c4b4cd2 PH |
1255 | /* True (non-zero) iff, in Ada mode, the symbol SYM should be |
1256 | suppressed in info listings. */ | |
14f9c5c9 AS |
1257 | |
1258 | int | |
ebf56fd3 | 1259 | ada_suppress_symbol_printing (struct symbol *sym) |
14f9c5c9 | 1260 | { |
176620f1 | 1261 | if (SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN) |
14f9c5c9 | 1262 | return 1; |
d2e4a39e | 1263 | else |
4c4b4cd2 | 1264 | return is_suppressed_name (SYMBOL_LINKAGE_NAME (sym)); |
14f9c5c9 | 1265 | } |
14f9c5c9 | 1266 | \f |
d2e4a39e | 1267 | |
4c4b4cd2 | 1268 | /* Arrays */ |
14f9c5c9 | 1269 | |
4c4b4cd2 | 1270 | /* Names of MAX_ADA_DIMENS bounds in P_BOUNDS fields of array descriptors. */ |
14f9c5c9 | 1271 | |
d2e4a39e AS |
1272 | static char *bound_name[] = { |
1273 | "LB0", "UB0", "LB1", "UB1", "LB2", "UB2", "LB3", "UB3", | |
14f9c5c9 AS |
1274 | "LB4", "UB4", "LB5", "UB5", "LB6", "UB6", "LB7", "UB7" |
1275 | }; | |
1276 | ||
1277 | /* Maximum number of array dimensions we are prepared to handle. */ | |
1278 | ||
4c4b4cd2 | 1279 | #define MAX_ADA_DIMENS (sizeof(bound_name) / (2*sizeof(char *))) |
14f9c5c9 | 1280 | |
4c4b4cd2 | 1281 | /* Like modify_field, but allows bitpos > wordlength. */ |
14f9c5c9 AS |
1282 | |
1283 | static void | |
ebf56fd3 | 1284 | modify_general_field (char *addr, LONGEST fieldval, int bitpos, int bitsize) |
14f9c5c9 | 1285 | { |
4c4b4cd2 | 1286 | modify_field (addr + bitpos / 8, fieldval, bitpos % 8, bitsize); |
14f9c5c9 AS |
1287 | } |
1288 | ||
1289 | ||
4c4b4cd2 PH |
1290 | /* The desc_* routines return primitive portions of array descriptors |
1291 | (fat pointers). */ | |
14f9c5c9 AS |
1292 | |
1293 | /* The descriptor or array type, if any, indicated by TYPE; removes | |
4c4b4cd2 PH |
1294 | level of indirection, if needed. */ |
1295 | ||
d2e4a39e AS |
1296 | static struct type * |
1297 | desc_base_type (struct type *type) | |
14f9c5c9 AS |
1298 | { |
1299 | if (type == NULL) | |
1300 | return NULL; | |
61ee279c | 1301 | type = ada_check_typedef (type); |
1265e4aa JB |
1302 | if (type != NULL |
1303 | && (TYPE_CODE (type) == TYPE_CODE_PTR | |
1304 | || TYPE_CODE (type) == TYPE_CODE_REF)) | |
61ee279c | 1305 | return ada_check_typedef (TYPE_TARGET_TYPE (type)); |
14f9c5c9 AS |
1306 | else |
1307 | return type; | |
1308 | } | |
1309 | ||
4c4b4cd2 PH |
1310 | /* True iff TYPE indicates a "thin" array pointer type. */ |
1311 | ||
14f9c5c9 | 1312 | static int |
d2e4a39e | 1313 | is_thin_pntr (struct type *type) |
14f9c5c9 | 1314 | { |
d2e4a39e | 1315 | return |
14f9c5c9 AS |
1316 | is_suffix (ada_type_name (desc_base_type (type)), "___XUT") |
1317 | || is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE"); | |
1318 | } | |
1319 | ||
4c4b4cd2 PH |
1320 | /* The descriptor type for thin pointer type TYPE. */ |
1321 | ||
d2e4a39e AS |
1322 | static struct type * |
1323 | thin_descriptor_type (struct type *type) | |
14f9c5c9 | 1324 | { |
d2e4a39e | 1325 | struct type *base_type = desc_base_type (type); |
14f9c5c9 AS |
1326 | if (base_type == NULL) |
1327 | return NULL; | |
1328 | if (is_suffix (ada_type_name (base_type), "___XVE")) | |
1329 | return base_type; | |
d2e4a39e | 1330 | else |
14f9c5c9 | 1331 | { |
d2e4a39e | 1332 | struct type *alt_type = ada_find_parallel_type (base_type, "___XVE"); |
14f9c5c9 | 1333 | if (alt_type == NULL) |
4c4b4cd2 | 1334 | return base_type; |
14f9c5c9 | 1335 | else |
4c4b4cd2 | 1336 | return alt_type; |
14f9c5c9 AS |
1337 | } |
1338 | } | |
1339 | ||
4c4b4cd2 PH |
1340 | /* A pointer to the array data for thin-pointer value VAL. */ |
1341 | ||
d2e4a39e AS |
1342 | static struct value * |
1343 | thin_data_pntr (struct value *val) | |
14f9c5c9 | 1344 | { |
df407dfe | 1345 | struct type *type = value_type (val); |
14f9c5c9 | 1346 | if (TYPE_CODE (type) == TYPE_CODE_PTR) |
d2e4a39e | 1347 | return value_cast (desc_data_type (thin_descriptor_type (type)), |
4c4b4cd2 | 1348 | value_copy (val)); |
d2e4a39e | 1349 | else |
14f9c5c9 | 1350 | return value_from_longest (desc_data_type (thin_descriptor_type (type)), |
df407dfe | 1351 | VALUE_ADDRESS (val) + value_offset (val)); |
14f9c5c9 AS |
1352 | } |
1353 | ||
4c4b4cd2 PH |
1354 | /* True iff TYPE indicates a "thick" array pointer type. */ |
1355 | ||
14f9c5c9 | 1356 | static int |
d2e4a39e | 1357 | is_thick_pntr (struct type *type) |
14f9c5c9 AS |
1358 | { |
1359 | type = desc_base_type (type); | |
1360 | return (type != NULL && TYPE_CODE (type) == TYPE_CODE_STRUCT | |
4c4b4cd2 | 1361 | && lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL); |
14f9c5c9 AS |
1362 | } |
1363 | ||
4c4b4cd2 PH |
1364 | /* If TYPE is the type of an array descriptor (fat or thin pointer) or a |
1365 | pointer to one, the type of its bounds data; otherwise, NULL. */ | |
76a01679 | 1366 | |
d2e4a39e AS |
1367 | static struct type * |
1368 | desc_bounds_type (struct type *type) | |
14f9c5c9 | 1369 | { |
d2e4a39e | 1370 | struct type *r; |
14f9c5c9 AS |
1371 | |
1372 | type = desc_base_type (type); | |
1373 | ||
1374 | if (type == NULL) | |
1375 | return NULL; | |
1376 | else if (is_thin_pntr (type)) | |
1377 | { | |
1378 | type = thin_descriptor_type (type); | |
1379 | if (type == NULL) | |
4c4b4cd2 | 1380 | return NULL; |
14f9c5c9 AS |
1381 | r = lookup_struct_elt_type (type, "BOUNDS", 1); |
1382 | if (r != NULL) | |
61ee279c | 1383 | return ada_check_typedef (r); |
14f9c5c9 AS |
1384 | } |
1385 | else if (TYPE_CODE (type) == TYPE_CODE_STRUCT) | |
1386 | { | |
1387 | r = lookup_struct_elt_type (type, "P_BOUNDS", 1); | |
1388 | if (r != NULL) | |
61ee279c | 1389 | return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r))); |
14f9c5c9 AS |
1390 | } |
1391 | return NULL; | |
1392 | } | |
1393 | ||
1394 | /* If ARR is an array descriptor (fat or thin pointer), or pointer to | |
4c4b4cd2 PH |
1395 | one, a pointer to its bounds data. Otherwise NULL. */ |
1396 | ||
d2e4a39e AS |
1397 | static struct value * |
1398 | desc_bounds (struct value *arr) | |
14f9c5c9 | 1399 | { |
df407dfe | 1400 | struct type *type = ada_check_typedef (value_type (arr)); |
d2e4a39e | 1401 | if (is_thin_pntr (type)) |
14f9c5c9 | 1402 | { |
d2e4a39e | 1403 | struct type *bounds_type = |
4c4b4cd2 | 1404 | desc_bounds_type (thin_descriptor_type (type)); |
14f9c5c9 AS |
1405 | LONGEST addr; |
1406 | ||
4cdfadb1 | 1407 | if (bounds_type == NULL) |
323e0a4a | 1408 | error (_("Bad GNAT array descriptor")); |
14f9c5c9 AS |
1409 | |
1410 | /* NOTE: The following calculation is not really kosher, but | |
d2e4a39e | 1411 | since desc_type is an XVE-encoded type (and shouldn't be), |
4c4b4cd2 | 1412 | the correct calculation is a real pain. FIXME (and fix GCC). */ |
14f9c5c9 | 1413 | if (TYPE_CODE (type) == TYPE_CODE_PTR) |
4c4b4cd2 | 1414 | addr = value_as_long (arr); |
d2e4a39e | 1415 | else |
df407dfe | 1416 | addr = VALUE_ADDRESS (arr) + value_offset (arr); |
14f9c5c9 | 1417 | |
d2e4a39e | 1418 | return |
4c4b4cd2 PH |
1419 | value_from_longest (lookup_pointer_type (bounds_type), |
1420 | addr - TYPE_LENGTH (bounds_type)); | |
14f9c5c9 AS |
1421 | } |
1422 | ||
1423 | else if (is_thick_pntr (type)) | |
d2e4a39e | 1424 | return value_struct_elt (&arr, NULL, "P_BOUNDS", NULL, |
323e0a4a | 1425 | _("Bad GNAT array descriptor")); |
14f9c5c9 AS |
1426 | else |
1427 | return NULL; | |
1428 | } | |
1429 | ||
4c4b4cd2 PH |
1430 | /* If TYPE is the type of an array-descriptor (fat pointer), the bit |
1431 | position of the field containing the address of the bounds data. */ | |
1432 | ||
14f9c5c9 | 1433 | static int |
d2e4a39e | 1434 | fat_pntr_bounds_bitpos (struct type *type) |
14f9c5c9 AS |
1435 | { |
1436 | return TYPE_FIELD_BITPOS (desc_base_type (type), 1); | |
1437 | } | |
1438 | ||
1439 | /* If TYPE is the type of an array-descriptor (fat pointer), the bit | |
4c4b4cd2 PH |
1440 | size of the field containing the address of the bounds data. */ |
1441 | ||
14f9c5c9 | 1442 | static int |
d2e4a39e | 1443 | fat_pntr_bounds_bitsize (struct type *type) |
14f9c5c9 AS |
1444 | { |
1445 | type = desc_base_type (type); | |
1446 | ||
d2e4a39e | 1447 | if (TYPE_FIELD_BITSIZE (type, 1) > 0) |
14f9c5c9 AS |
1448 | return TYPE_FIELD_BITSIZE (type, 1); |
1449 | else | |
61ee279c | 1450 | return 8 * TYPE_LENGTH (ada_check_typedef (TYPE_FIELD_TYPE (type, 1))); |
14f9c5c9 AS |
1451 | } |
1452 | ||
4c4b4cd2 | 1453 | /* If TYPE is the type of an array descriptor (fat or thin pointer) or a |
14f9c5c9 | 1454 | pointer to one, the type of its array data (a |
4c4b4cd2 PH |
1455 | pointer-to-array-with-no-bounds type); otherwise, NULL. Use |
1456 | ada_type_of_array to get an array type with bounds data. */ | |
1457 | ||
d2e4a39e AS |
1458 | static struct type * |
1459 | desc_data_type (struct type *type) | |
14f9c5c9 AS |
1460 | { |
1461 | type = desc_base_type (type); | |
1462 | ||
4c4b4cd2 | 1463 | /* NOTE: The following is bogus; see comment in desc_bounds. */ |
14f9c5c9 | 1464 | if (is_thin_pntr (type)) |
d2e4a39e AS |
1465 | return lookup_pointer_type |
1466 | (desc_base_type (TYPE_FIELD_TYPE (thin_descriptor_type (type), 1))); | |
14f9c5c9 AS |
1467 | else if (is_thick_pntr (type)) |
1468 | return lookup_struct_elt_type (type, "P_ARRAY", 1); | |
1469 | else | |
1470 | return NULL; | |
1471 | } | |
1472 | ||
1473 | /* If ARR is an array descriptor (fat or thin pointer), a pointer to | |
1474 | its array data. */ | |
4c4b4cd2 | 1475 | |
d2e4a39e AS |
1476 | static struct value * |
1477 | desc_data (struct value *arr) | |
14f9c5c9 | 1478 | { |
df407dfe | 1479 | struct type *type = value_type (arr); |
14f9c5c9 AS |
1480 | if (is_thin_pntr (type)) |
1481 | return thin_data_pntr (arr); | |
1482 | else if (is_thick_pntr (type)) | |
d2e4a39e | 1483 | return value_struct_elt (&arr, NULL, "P_ARRAY", NULL, |
323e0a4a | 1484 | _("Bad GNAT array descriptor")); |
14f9c5c9 AS |
1485 | else |
1486 | return NULL; | |
1487 | } | |
1488 | ||
1489 | ||
1490 | /* If TYPE is the type of an array-descriptor (fat pointer), the bit | |
4c4b4cd2 PH |
1491 | position of the field containing the address of the data. */ |
1492 | ||
14f9c5c9 | 1493 | static int |
d2e4a39e | 1494 | fat_pntr_data_bitpos (struct type *type) |
14f9c5c9 AS |
1495 | { |
1496 | return TYPE_FIELD_BITPOS (desc_base_type (type), 0); | |
1497 | } | |
1498 | ||
1499 | /* If TYPE is the type of an array-descriptor (fat pointer), the bit | |
4c4b4cd2 PH |
1500 | size of the field containing the address of the data. */ |
1501 | ||
14f9c5c9 | 1502 | static int |
d2e4a39e | 1503 | fat_pntr_data_bitsize (struct type *type) |
14f9c5c9 AS |
1504 | { |
1505 | type = desc_base_type (type); | |
1506 | ||
1507 | if (TYPE_FIELD_BITSIZE (type, 0) > 0) | |
1508 | return TYPE_FIELD_BITSIZE (type, 0); | |
d2e4a39e | 1509 | else |
14f9c5c9 AS |
1510 | return TARGET_CHAR_BIT * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0)); |
1511 | } | |
1512 | ||
4c4b4cd2 | 1513 | /* If BOUNDS is an array-bounds structure (or pointer to one), return |
14f9c5c9 | 1514 | the Ith lower bound stored in it, if WHICH is 0, and the Ith upper |
4c4b4cd2 PH |
1515 | bound, if WHICH is 1. The first bound is I=1. */ |
1516 | ||
d2e4a39e AS |
1517 | static struct value * |
1518 | desc_one_bound (struct value *bounds, int i, int which) | |
14f9c5c9 | 1519 | { |
d2e4a39e | 1520 | return value_struct_elt (&bounds, NULL, bound_name[2 * i + which - 2], NULL, |
323e0a4a | 1521 | _("Bad GNAT array descriptor bounds")); |
14f9c5c9 AS |
1522 | } |
1523 | ||
1524 | /* If BOUNDS is an array-bounds structure type, return the bit position | |
1525 | of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper | |
4c4b4cd2 PH |
1526 | bound, if WHICH is 1. The first bound is I=1. */ |
1527 | ||
14f9c5c9 | 1528 | static int |
d2e4a39e | 1529 | desc_bound_bitpos (struct type *type, int i, int which) |
14f9c5c9 | 1530 | { |
d2e4a39e | 1531 | return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2); |
14f9c5c9 AS |
1532 | } |
1533 | ||
1534 | /* If BOUNDS is an array-bounds structure type, return the bit field size | |
1535 | of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper | |
4c4b4cd2 PH |
1536 | bound, if WHICH is 1. The first bound is I=1. */ |
1537 | ||
76a01679 | 1538 | static int |
d2e4a39e | 1539 | desc_bound_bitsize (struct type *type, int i, int which) |
14f9c5c9 AS |
1540 | { |
1541 | type = desc_base_type (type); | |
1542 | ||
d2e4a39e AS |
1543 | if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0) |
1544 | return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2); | |
1545 | else | |
1546 | return 8 * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 2 * i + which - 2)); | |
14f9c5c9 AS |
1547 | } |
1548 | ||
1549 | /* If TYPE is the type of an array-bounds structure, the type of its | |
4c4b4cd2 PH |
1550 | Ith bound (numbering from 1). Otherwise, NULL. */ |
1551 | ||
d2e4a39e AS |
1552 | static struct type * |
1553 | desc_index_type (struct type *type, int i) | |
14f9c5c9 AS |
1554 | { |
1555 | type = desc_base_type (type); | |
1556 | ||
1557 | if (TYPE_CODE (type) == TYPE_CODE_STRUCT) | |
d2e4a39e AS |
1558 | return lookup_struct_elt_type (type, bound_name[2 * i - 2], 1); |
1559 | else | |
14f9c5c9 AS |
1560 | return NULL; |
1561 | } | |
1562 | ||
4c4b4cd2 PH |
1563 | /* The number of index positions in the array-bounds type TYPE. |
1564 | Return 0 if TYPE is NULL. */ | |
1565 | ||
14f9c5c9 | 1566 | static int |
d2e4a39e | 1567 | desc_arity (struct type *type) |
14f9c5c9 AS |
1568 | { |
1569 | type = desc_base_type (type); | |
1570 | ||
1571 | if (type != NULL) | |
1572 | return TYPE_NFIELDS (type) / 2; | |
1573 | return 0; | |
1574 | } | |
1575 | ||
4c4b4cd2 PH |
1576 | /* Non-zero iff TYPE is a simple array type (not a pointer to one) or |
1577 | an array descriptor type (representing an unconstrained array | |
1578 | type). */ | |
1579 | ||
76a01679 JB |
1580 | static int |
1581 | ada_is_direct_array_type (struct type *type) | |
4c4b4cd2 PH |
1582 | { |
1583 | if (type == NULL) | |
1584 | return 0; | |
61ee279c | 1585 | type = ada_check_typedef (type); |
4c4b4cd2 | 1586 | return (TYPE_CODE (type) == TYPE_CODE_ARRAY |
76a01679 | 1587 | || ada_is_array_descriptor_type (type)); |
4c4b4cd2 PH |
1588 | } |
1589 | ||
52ce6436 PH |
1590 | /* Non-zero iff TYPE represents any kind of array in Ada, or a pointer |
1591 | * to one. */ | |
1592 | ||
1593 | int | |
1594 | ada_is_array_type (struct type *type) | |
1595 | { | |
1596 | while (type != NULL | |
1597 | && (TYPE_CODE (type) == TYPE_CODE_PTR | |
1598 | || TYPE_CODE (type) == TYPE_CODE_REF)) | |
1599 | type = TYPE_TARGET_TYPE (type); | |
1600 | return ada_is_direct_array_type (type); | |
1601 | } | |
1602 | ||
4c4b4cd2 | 1603 | /* Non-zero iff TYPE is a simple array type or pointer to one. */ |
14f9c5c9 | 1604 | |
14f9c5c9 | 1605 | int |
4c4b4cd2 | 1606 | ada_is_simple_array_type (struct type *type) |
14f9c5c9 AS |
1607 | { |
1608 | if (type == NULL) | |
1609 | return 0; | |
61ee279c | 1610 | type = ada_check_typedef (type); |
14f9c5c9 | 1611 | return (TYPE_CODE (type) == TYPE_CODE_ARRAY |
4c4b4cd2 PH |
1612 | || (TYPE_CODE (type) == TYPE_CODE_PTR |
1613 | && TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_ARRAY)); | |
14f9c5c9 AS |
1614 | } |
1615 | ||
4c4b4cd2 PH |
1616 | /* Non-zero iff TYPE belongs to a GNAT array descriptor. */ |
1617 | ||
14f9c5c9 | 1618 | int |
4c4b4cd2 | 1619 | ada_is_array_descriptor_type (struct type *type) |
14f9c5c9 | 1620 | { |
d2e4a39e | 1621 | struct type *data_type = desc_data_type (type); |
14f9c5c9 AS |
1622 | |
1623 | if (type == NULL) | |
1624 | return 0; | |
61ee279c | 1625 | type = ada_check_typedef (type); |
d2e4a39e | 1626 | return |
14f9c5c9 AS |
1627 | data_type != NULL |
1628 | && ((TYPE_CODE (data_type) == TYPE_CODE_PTR | |
4c4b4cd2 PH |
1629 | && TYPE_TARGET_TYPE (data_type) != NULL |
1630 | && TYPE_CODE (TYPE_TARGET_TYPE (data_type)) == TYPE_CODE_ARRAY) | |
1265e4aa | 1631 | || TYPE_CODE (data_type) == TYPE_CODE_ARRAY) |
14f9c5c9 AS |
1632 | && desc_arity (desc_bounds_type (type)) > 0; |
1633 | } | |
1634 | ||
1635 | /* Non-zero iff type is a partially mal-formed GNAT array | |
4c4b4cd2 | 1636 | descriptor. FIXME: This is to compensate for some problems with |
14f9c5c9 | 1637 | debugging output from GNAT. Re-examine periodically to see if it |
4c4b4cd2 PH |
1638 | is still needed. */ |
1639 | ||
14f9c5c9 | 1640 | int |
ebf56fd3 | 1641 | ada_is_bogus_array_descriptor (struct type *type) |
14f9c5c9 | 1642 | { |
d2e4a39e | 1643 | return |
14f9c5c9 AS |
1644 | type != NULL |
1645 | && TYPE_CODE (type) == TYPE_CODE_STRUCT | |
1646 | && (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL | |
4c4b4cd2 PH |
1647 | || lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL) |
1648 | && !ada_is_array_descriptor_type (type); | |
14f9c5c9 AS |
1649 | } |
1650 | ||
1651 | ||
4c4b4cd2 | 1652 | /* If ARR has a record type in the form of a standard GNAT array descriptor, |
14f9c5c9 | 1653 | (fat pointer) returns the type of the array data described---specifically, |
4c4b4cd2 | 1654 | a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled |
14f9c5c9 | 1655 | in from the descriptor; otherwise, they are left unspecified. If |
4c4b4cd2 PH |
1656 | the ARR denotes a null array descriptor and BOUNDS is non-zero, |
1657 | returns NULL. The result is simply the type of ARR if ARR is not | |
14f9c5c9 | 1658 | a descriptor. */ |
d2e4a39e AS |
1659 | struct type * |
1660 | ada_type_of_array (struct value *arr, int bounds) | |
14f9c5c9 | 1661 | { |
df407dfe AC |
1662 | if (ada_is_packed_array_type (value_type (arr))) |
1663 | return decode_packed_array_type (value_type (arr)); | |
14f9c5c9 | 1664 | |
df407dfe AC |
1665 | if (!ada_is_array_descriptor_type (value_type (arr))) |
1666 | return value_type (arr); | |
d2e4a39e AS |
1667 | |
1668 | if (!bounds) | |
1669 | return | |
df407dfe | 1670 | ada_check_typedef (TYPE_TARGET_TYPE (desc_data_type (value_type (arr)))); |
14f9c5c9 AS |
1671 | else |
1672 | { | |
d2e4a39e | 1673 | struct type *elt_type; |
14f9c5c9 | 1674 | int arity; |
d2e4a39e | 1675 | struct value *descriptor; |
df407dfe | 1676 | struct objfile *objf = TYPE_OBJFILE (value_type (arr)); |
14f9c5c9 | 1677 | |
df407dfe AC |
1678 | elt_type = ada_array_element_type (value_type (arr), -1); |
1679 | arity = ada_array_arity (value_type (arr)); | |
14f9c5c9 | 1680 | |
d2e4a39e | 1681 | if (elt_type == NULL || arity == 0) |
df407dfe | 1682 | return ada_check_typedef (value_type (arr)); |
14f9c5c9 AS |
1683 | |
1684 | descriptor = desc_bounds (arr); | |
d2e4a39e | 1685 | if (value_as_long (descriptor) == 0) |
4c4b4cd2 | 1686 | return NULL; |
d2e4a39e | 1687 | while (arity > 0) |
4c4b4cd2 PH |
1688 | { |
1689 | struct type *range_type = alloc_type (objf); | |
1690 | struct type *array_type = alloc_type (objf); | |
1691 | struct value *low = desc_one_bound (descriptor, arity, 0); | |
1692 | struct value *high = desc_one_bound (descriptor, arity, 1); | |
1693 | arity -= 1; | |
1694 | ||
df407dfe | 1695 | create_range_type (range_type, value_type (low), |
529cad9c PH |
1696 | longest_to_int (value_as_long (low)), |
1697 | longest_to_int (value_as_long (high))); | |
4c4b4cd2 PH |
1698 | elt_type = create_array_type (array_type, elt_type, range_type); |
1699 | } | |
14f9c5c9 AS |
1700 | |
1701 | return lookup_pointer_type (elt_type); | |
1702 | } | |
1703 | } | |
1704 | ||
1705 | /* If ARR does not represent an array, returns ARR unchanged. | |
4c4b4cd2 PH |
1706 | Otherwise, returns either a standard GDB array with bounds set |
1707 | appropriately or, if ARR is a non-null fat pointer, a pointer to a standard | |
1708 | GDB array. Returns NULL if ARR is a null fat pointer. */ | |
1709 | ||
d2e4a39e AS |
1710 | struct value * |
1711 | ada_coerce_to_simple_array_ptr (struct value *arr) | |
14f9c5c9 | 1712 | { |
df407dfe | 1713 | if (ada_is_array_descriptor_type (value_type (arr))) |
14f9c5c9 | 1714 | { |
d2e4a39e | 1715 | struct type *arrType = ada_type_of_array (arr, 1); |
14f9c5c9 | 1716 | if (arrType == NULL) |
4c4b4cd2 | 1717 | return NULL; |
14f9c5c9 AS |
1718 | return value_cast (arrType, value_copy (desc_data (arr))); |
1719 | } | |
df407dfe | 1720 | else if (ada_is_packed_array_type (value_type (arr))) |
14f9c5c9 AS |
1721 | return decode_packed_array (arr); |
1722 | else | |
1723 | return arr; | |
1724 | } | |
1725 | ||
1726 | /* If ARR does not represent an array, returns ARR unchanged. | |
1727 | Otherwise, returns a standard GDB array describing ARR (which may | |
4c4b4cd2 PH |
1728 | be ARR itself if it already is in the proper form). */ |
1729 | ||
1730 | static struct value * | |
d2e4a39e | 1731 | ada_coerce_to_simple_array (struct value *arr) |
14f9c5c9 | 1732 | { |
df407dfe | 1733 | if (ada_is_array_descriptor_type (value_type (arr))) |
14f9c5c9 | 1734 | { |
d2e4a39e | 1735 | struct value *arrVal = ada_coerce_to_simple_array_ptr (arr); |
14f9c5c9 | 1736 | if (arrVal == NULL) |
323e0a4a | 1737 | error (_("Bounds unavailable for null array pointer.")); |
529cad9c | 1738 | check_size (TYPE_TARGET_TYPE (value_type (arrVal))); |
14f9c5c9 AS |
1739 | return value_ind (arrVal); |
1740 | } | |
df407dfe | 1741 | else if (ada_is_packed_array_type (value_type (arr))) |
14f9c5c9 | 1742 | return decode_packed_array (arr); |
d2e4a39e | 1743 | else |
14f9c5c9 AS |
1744 | return arr; |
1745 | } | |
1746 | ||
1747 | /* If TYPE represents a GNAT array type, return it translated to an | |
1748 | ordinary GDB array type (possibly with BITSIZE fields indicating | |
4c4b4cd2 PH |
1749 | packing). For other types, is the identity. */ |
1750 | ||
d2e4a39e AS |
1751 | struct type * |
1752 | ada_coerce_to_simple_array_type (struct type *type) | |
14f9c5c9 | 1753 | { |
d2e4a39e | 1754 | struct value *mark = value_mark (); |
6d84d3d8 | 1755 | struct value *dummy = value_from_longest (builtin_type_int32, 0); |
d2e4a39e | 1756 | struct type *result; |
04624583 | 1757 | deprecated_set_value_type (dummy, type); |
14f9c5c9 | 1758 | result = ada_type_of_array (dummy, 0); |
4c4b4cd2 | 1759 | value_free_to_mark (mark); |
14f9c5c9 AS |
1760 | return result; |
1761 | } | |
1762 | ||
4c4b4cd2 PH |
1763 | /* Non-zero iff TYPE represents a standard GNAT packed-array type. */ |
1764 | ||
14f9c5c9 | 1765 | int |
d2e4a39e | 1766 | ada_is_packed_array_type (struct type *type) |
14f9c5c9 AS |
1767 | { |
1768 | if (type == NULL) | |
1769 | return 0; | |
4c4b4cd2 | 1770 | type = desc_base_type (type); |
61ee279c | 1771 | type = ada_check_typedef (type); |
d2e4a39e | 1772 | return |
14f9c5c9 AS |
1773 | ada_type_name (type) != NULL |
1774 | && strstr (ada_type_name (type), "___XP") != NULL; | |
1775 | } | |
1776 | ||
1777 | /* Given that TYPE is a standard GDB array type with all bounds filled | |
1778 | in, and that the element size of its ultimate scalar constituents | |
1779 | (that is, either its elements, or, if it is an array of arrays, its | |
1780 | elements' elements, etc.) is *ELT_BITS, return an identical type, | |
1781 | but with the bit sizes of its elements (and those of any | |
1782 | constituent arrays) recorded in the BITSIZE components of its | |
4c4b4cd2 PH |
1783 | TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size |
1784 | in bits. */ | |
1785 | ||
d2e4a39e AS |
1786 | static struct type * |
1787 | packed_array_type (struct type *type, long *elt_bits) | |
14f9c5c9 | 1788 | { |
d2e4a39e AS |
1789 | struct type *new_elt_type; |
1790 | struct type *new_type; | |
14f9c5c9 AS |
1791 | LONGEST low_bound, high_bound; |
1792 | ||
61ee279c | 1793 | type = ada_check_typedef (type); |
14f9c5c9 AS |
1794 | if (TYPE_CODE (type) != TYPE_CODE_ARRAY) |
1795 | return type; | |
1796 | ||
1797 | new_type = alloc_type (TYPE_OBJFILE (type)); | |
61ee279c | 1798 | new_elt_type = packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)), |
4c4b4cd2 | 1799 | elt_bits); |
14f9c5c9 AS |
1800 | create_array_type (new_type, new_elt_type, TYPE_FIELD_TYPE (type, 0)); |
1801 | TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits; | |
1802 | TYPE_NAME (new_type) = ada_type_name (type); | |
1803 | ||
d2e4a39e | 1804 | if (get_discrete_bounds (TYPE_FIELD_TYPE (type, 0), |
4c4b4cd2 | 1805 | &low_bound, &high_bound) < 0) |
14f9c5c9 AS |
1806 | low_bound = high_bound = 0; |
1807 | if (high_bound < low_bound) | |
1808 | *elt_bits = TYPE_LENGTH (new_type) = 0; | |
d2e4a39e | 1809 | else |
14f9c5c9 AS |
1810 | { |
1811 | *elt_bits *= (high_bound - low_bound + 1); | |
d2e4a39e | 1812 | TYPE_LENGTH (new_type) = |
4c4b4cd2 | 1813 | (*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT; |
14f9c5c9 AS |
1814 | } |
1815 | ||
876cecd0 | 1816 | TYPE_FIXED_INSTANCE (new_type) = 1; |
14f9c5c9 AS |
1817 | return new_type; |
1818 | } | |
1819 | ||
4c4b4cd2 PH |
1820 | /* The array type encoded by TYPE, where ada_is_packed_array_type (TYPE). */ |
1821 | ||
d2e4a39e AS |
1822 | static struct type * |
1823 | decode_packed_array_type (struct type *type) | |
1824 | { | |
4c4b4cd2 | 1825 | struct symbol *sym; |
d2e4a39e | 1826 | struct block **blocks; |
727e3d2e JB |
1827 | char *raw_name = ada_type_name (ada_check_typedef (type)); |
1828 | char *name; | |
1829 | char *tail; | |
d2e4a39e | 1830 | struct type *shadow_type; |
14f9c5c9 AS |
1831 | long bits; |
1832 | int i, n; | |
1833 | ||
727e3d2e JB |
1834 | if (!raw_name) |
1835 | raw_name = ada_type_name (desc_base_type (type)); | |
1836 | ||
1837 | if (!raw_name) | |
1838 | return NULL; | |
1839 | ||
1840 | name = (char *) alloca (strlen (raw_name) + 1); | |
1841 | tail = strstr (raw_name, "___XP"); | |
4c4b4cd2 PH |
1842 | type = desc_base_type (type); |
1843 | ||
14f9c5c9 AS |
1844 | memcpy (name, raw_name, tail - raw_name); |
1845 | name[tail - raw_name] = '\000'; | |
1846 | ||
4c4b4cd2 PH |
1847 | sym = standard_lookup (name, get_selected_block (0), VAR_DOMAIN); |
1848 | if (sym == NULL || SYMBOL_TYPE (sym) == NULL) | |
14f9c5c9 | 1849 | { |
323e0a4a | 1850 | lim_warning (_("could not find bounds information on packed array")); |
14f9c5c9 AS |
1851 | return NULL; |
1852 | } | |
4c4b4cd2 | 1853 | shadow_type = SYMBOL_TYPE (sym); |
14f9c5c9 AS |
1854 | |
1855 | if (TYPE_CODE (shadow_type) != TYPE_CODE_ARRAY) | |
1856 | { | |
323e0a4a | 1857 | lim_warning (_("could not understand bounds information on packed array")); |
14f9c5c9 AS |
1858 | return NULL; |
1859 | } | |
d2e4a39e | 1860 | |
14f9c5c9 AS |
1861 | if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1) |
1862 | { | |
4c4b4cd2 | 1863 | lim_warning |
323e0a4a | 1864 | (_("could not understand bit size information on packed array")); |
14f9c5c9 AS |
1865 | return NULL; |
1866 | } | |
d2e4a39e | 1867 | |
14f9c5c9 AS |
1868 | return packed_array_type (shadow_type, &bits); |
1869 | } | |
1870 | ||
4c4b4cd2 | 1871 | /* Given that ARR is a struct value *indicating a GNAT packed array, |
14f9c5c9 AS |
1872 | returns a simple array that denotes that array. Its type is a |
1873 | standard GDB array type except that the BITSIZEs of the array | |
1874 | target types are set to the number of bits in each element, and the | |
4c4b4cd2 | 1875 | type length is set appropriately. */ |
14f9c5c9 | 1876 | |
d2e4a39e AS |
1877 | static struct value * |
1878 | decode_packed_array (struct value *arr) | |
14f9c5c9 | 1879 | { |
4c4b4cd2 | 1880 | struct type *type; |
14f9c5c9 | 1881 | |
4c4b4cd2 | 1882 | arr = ada_coerce_ref (arr); |
df407dfe | 1883 | if (TYPE_CODE (value_type (arr)) == TYPE_CODE_PTR) |
4c4b4cd2 PH |
1884 | arr = ada_value_ind (arr); |
1885 | ||
df407dfe | 1886 | type = decode_packed_array_type (value_type (arr)); |
14f9c5c9 AS |
1887 | if (type == NULL) |
1888 | { | |
323e0a4a | 1889 | error (_("can't unpack array")); |
14f9c5c9 AS |
1890 | return NULL; |
1891 | } | |
61ee279c | 1892 | |
32c9a795 MD |
1893 | if (gdbarch_bits_big_endian (current_gdbarch) |
1894 | && ada_is_modular_type (value_type (arr))) | |
61ee279c PH |
1895 | { |
1896 | /* This is a (right-justified) modular type representing a packed | |
1897 | array with no wrapper. In order to interpret the value through | |
1898 | the (left-justified) packed array type we just built, we must | |
1899 | first left-justify it. */ | |
1900 | int bit_size, bit_pos; | |
1901 | ULONGEST mod; | |
1902 | ||
df407dfe | 1903 | mod = ada_modulus (value_type (arr)) - 1; |
61ee279c PH |
1904 | bit_size = 0; |
1905 | while (mod > 0) | |
1906 | { | |
1907 | bit_size += 1; | |
1908 | mod >>= 1; | |
1909 | } | |
df407dfe | 1910 | bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size; |
61ee279c PH |
1911 | arr = ada_value_primitive_packed_val (arr, NULL, |
1912 | bit_pos / HOST_CHAR_BIT, | |
1913 | bit_pos % HOST_CHAR_BIT, | |
1914 | bit_size, | |
1915 | type); | |
1916 | } | |
1917 | ||
4c4b4cd2 | 1918 | return coerce_unspec_val_to_type (arr, type); |
14f9c5c9 AS |
1919 | } |
1920 | ||
1921 | ||
1922 | /* The value of the element of packed array ARR at the ARITY indices | |
4c4b4cd2 | 1923 | given in IND. ARR must be a simple array. */ |
14f9c5c9 | 1924 | |
d2e4a39e AS |
1925 | static struct value * |
1926 | value_subscript_packed (struct value *arr, int arity, struct value **ind) | |
14f9c5c9 AS |
1927 | { |
1928 | int i; | |
1929 | int bits, elt_off, bit_off; | |
1930 | long elt_total_bit_offset; | |
d2e4a39e AS |
1931 | struct type *elt_type; |
1932 | struct value *v; | |
14f9c5c9 AS |
1933 | |
1934 | bits = 0; | |
1935 | elt_total_bit_offset = 0; | |
df407dfe | 1936 | elt_type = ada_check_typedef (value_type (arr)); |
d2e4a39e | 1937 | for (i = 0; i < arity; i += 1) |
14f9c5c9 | 1938 | { |
d2e4a39e | 1939 | if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY |
4c4b4cd2 PH |
1940 | || TYPE_FIELD_BITSIZE (elt_type, 0) == 0) |
1941 | error | |
323e0a4a | 1942 | (_("attempt to do packed indexing of something other than a packed array")); |
14f9c5c9 | 1943 | else |
4c4b4cd2 PH |
1944 | { |
1945 | struct type *range_type = TYPE_INDEX_TYPE (elt_type); | |
1946 | LONGEST lowerbound, upperbound; | |
1947 | LONGEST idx; | |
1948 | ||
1949 | if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0) | |
1950 | { | |
323e0a4a | 1951 | lim_warning (_("don't know bounds of array")); |
4c4b4cd2 PH |
1952 | lowerbound = upperbound = 0; |
1953 | } | |
1954 | ||
3cb382c9 | 1955 | idx = pos_atr (ind[i]); |
4c4b4cd2 | 1956 | if (idx < lowerbound || idx > upperbound) |
323e0a4a | 1957 | lim_warning (_("packed array index %ld out of bounds"), (long) idx); |
4c4b4cd2 PH |
1958 | bits = TYPE_FIELD_BITSIZE (elt_type, 0); |
1959 | elt_total_bit_offset += (idx - lowerbound) * bits; | |
61ee279c | 1960 | elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type)); |
4c4b4cd2 | 1961 | } |
14f9c5c9 AS |
1962 | } |
1963 | elt_off = elt_total_bit_offset / HOST_CHAR_BIT; | |
1964 | bit_off = elt_total_bit_offset % HOST_CHAR_BIT; | |
d2e4a39e AS |
1965 | |
1966 | v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off, | |
4c4b4cd2 | 1967 | bits, elt_type); |
14f9c5c9 AS |
1968 | return v; |
1969 | } | |
1970 | ||
4c4b4cd2 | 1971 | /* Non-zero iff TYPE includes negative integer values. */ |
14f9c5c9 AS |
1972 | |
1973 | static int | |
d2e4a39e | 1974 | has_negatives (struct type *type) |
14f9c5c9 | 1975 | { |
d2e4a39e AS |
1976 | switch (TYPE_CODE (type)) |
1977 | { | |
1978 | default: | |
1979 | return 0; | |
1980 | case TYPE_CODE_INT: | |
1981 | return !TYPE_UNSIGNED (type); | |
1982 | case TYPE_CODE_RANGE: | |
1983 | return TYPE_LOW_BOUND (type) < 0; | |
1984 | } | |
14f9c5c9 | 1985 | } |
d2e4a39e | 1986 | |
14f9c5c9 AS |
1987 | |
1988 | /* Create a new value of type TYPE from the contents of OBJ starting | |
1989 | at byte OFFSET, and bit offset BIT_OFFSET within that byte, | |
1990 | proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then | |
4c4b4cd2 PH |
1991 | assigning through the result will set the field fetched from. |
1992 | VALADDR is ignored unless OBJ is NULL, in which case, | |
1993 | VALADDR+OFFSET must address the start of storage containing the | |
1994 | packed value. The value returned in this case is never an lval. | |
1995 | Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */ | |
14f9c5c9 | 1996 | |
d2e4a39e | 1997 | struct value * |
fc1a4b47 | 1998 | ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr, |
a2bd3dcd | 1999 | long offset, int bit_offset, int bit_size, |
4c4b4cd2 | 2000 | struct type *type) |
14f9c5c9 | 2001 | { |
d2e4a39e | 2002 | struct value *v; |
4c4b4cd2 PH |
2003 | int src, /* Index into the source area */ |
2004 | targ, /* Index into the target area */ | |
2005 | srcBitsLeft, /* Number of source bits left to move */ | |
2006 | nsrc, ntarg, /* Number of source and target bytes */ | |
2007 | unusedLS, /* Number of bits in next significant | |
2008 | byte of source that are unused */ | |
2009 | accumSize; /* Number of meaningful bits in accum */ | |
2010 | unsigned char *bytes; /* First byte containing data to unpack */ | |
d2e4a39e | 2011 | unsigned char *unpacked; |
4c4b4cd2 | 2012 | unsigned long accum; /* Staging area for bits being transferred */ |
14f9c5c9 AS |
2013 | unsigned char sign; |
2014 | int len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8; | |
4c4b4cd2 PH |
2015 | /* Transmit bytes from least to most significant; delta is the direction |
2016 | the indices move. */ | |
32c9a795 | 2017 | int delta = gdbarch_bits_big_endian (current_gdbarch) ? -1 : 1; |
14f9c5c9 | 2018 | |
61ee279c | 2019 | type = ada_check_typedef (type); |
14f9c5c9 AS |
2020 | |
2021 | if (obj == NULL) | |
2022 | { | |
2023 | v = allocate_value (type); | |
d2e4a39e | 2024 | bytes = (unsigned char *) (valaddr + offset); |
14f9c5c9 | 2025 | } |
9214ee5f | 2026 | else if (VALUE_LVAL (obj) == lval_memory && value_lazy (obj)) |
14f9c5c9 AS |
2027 | { |
2028 | v = value_at (type, | |
df407dfe | 2029 | VALUE_ADDRESS (obj) + value_offset (obj) + offset); |
d2e4a39e | 2030 | bytes = (unsigned char *) alloca (len); |
14f9c5c9 AS |
2031 | read_memory (VALUE_ADDRESS (v), bytes, len); |
2032 | } | |
d2e4a39e | 2033 | else |
14f9c5c9 AS |
2034 | { |
2035 | v = allocate_value (type); | |
0fd88904 | 2036 | bytes = (unsigned char *) value_contents (obj) + offset; |
14f9c5c9 | 2037 | } |
d2e4a39e AS |
2038 | |
2039 | if (obj != NULL) | |
14f9c5c9 AS |
2040 | { |
2041 | VALUE_LVAL (v) = VALUE_LVAL (obj); | |
2042 | if (VALUE_LVAL (obj) == lval_internalvar) | |
4c4b4cd2 | 2043 | VALUE_LVAL (v) = lval_internalvar_component; |
df407dfe | 2044 | VALUE_ADDRESS (v) = VALUE_ADDRESS (obj) + value_offset (obj) + offset; |
9bbda503 AC |
2045 | set_value_bitpos (v, bit_offset + value_bitpos (obj)); |
2046 | set_value_bitsize (v, bit_size); | |
df407dfe | 2047 | if (value_bitpos (v) >= HOST_CHAR_BIT) |
4c4b4cd2 PH |
2048 | { |
2049 | VALUE_ADDRESS (v) += 1; | |
9bbda503 | 2050 | set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT); |
4c4b4cd2 | 2051 | } |
14f9c5c9 AS |
2052 | } |
2053 | else | |
9bbda503 | 2054 | set_value_bitsize (v, bit_size); |
0fd88904 | 2055 | unpacked = (unsigned char *) value_contents (v); |
14f9c5c9 AS |
2056 | |
2057 | srcBitsLeft = bit_size; | |
2058 | nsrc = len; | |
2059 | ntarg = TYPE_LENGTH (type); | |
2060 | sign = 0; | |
2061 | if (bit_size == 0) | |
2062 | { | |
2063 | memset (unpacked, 0, TYPE_LENGTH (type)); | |
2064 | return v; | |
2065 | } | |
32c9a795 | 2066 | else if (gdbarch_bits_big_endian (current_gdbarch)) |
14f9c5c9 | 2067 | { |
d2e4a39e | 2068 | src = len - 1; |
1265e4aa JB |
2069 | if (has_negatives (type) |
2070 | && ((bytes[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1)))) | |
4c4b4cd2 | 2071 | sign = ~0; |
d2e4a39e AS |
2072 | |
2073 | unusedLS = | |
4c4b4cd2 PH |
2074 | (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT) |
2075 | % HOST_CHAR_BIT; | |
14f9c5c9 AS |
2076 | |
2077 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
2078 | { |
2079 | case TYPE_CODE_ARRAY: | |
2080 | case TYPE_CODE_UNION: | |
2081 | case TYPE_CODE_STRUCT: | |
2082 | /* Non-scalar values must be aligned at a byte boundary... */ | |
2083 | accumSize = | |
2084 | (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT; | |
2085 | /* ... And are placed at the beginning (most-significant) bytes | |
2086 | of the target. */ | |
529cad9c | 2087 | targ = (bit_size + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT - 1; |
4c4b4cd2 PH |
2088 | break; |
2089 | default: | |
2090 | accumSize = 0; | |
2091 | targ = TYPE_LENGTH (type) - 1; | |
2092 | break; | |
2093 | } | |
14f9c5c9 | 2094 | } |
d2e4a39e | 2095 | else |
14f9c5c9 AS |
2096 | { |
2097 | int sign_bit_offset = (bit_size + bit_offset - 1) % 8; | |
2098 | ||
2099 | src = targ = 0; | |
2100 | unusedLS = bit_offset; | |
2101 | accumSize = 0; | |
2102 | ||
d2e4a39e | 2103 | if (has_negatives (type) && (bytes[len - 1] & (1 << sign_bit_offset))) |
4c4b4cd2 | 2104 | sign = ~0; |
14f9c5c9 | 2105 | } |
d2e4a39e | 2106 | |
14f9c5c9 AS |
2107 | accum = 0; |
2108 | while (nsrc > 0) | |
2109 | { | |
2110 | /* Mask for removing bits of the next source byte that are not | |
4c4b4cd2 | 2111 | part of the value. */ |
d2e4a39e | 2112 | unsigned int unusedMSMask = |
4c4b4cd2 PH |
2113 | (1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) - |
2114 | 1; | |
2115 | /* Sign-extend bits for this byte. */ | |
14f9c5c9 | 2116 | unsigned int signMask = sign & ~unusedMSMask; |
d2e4a39e | 2117 | accum |= |
4c4b4cd2 | 2118 | (((bytes[src] >> unusedLS) & unusedMSMask) | signMask) << accumSize; |
14f9c5c9 | 2119 | accumSize += HOST_CHAR_BIT - unusedLS; |
d2e4a39e | 2120 | if (accumSize >= HOST_CHAR_BIT) |
4c4b4cd2 PH |
2121 | { |
2122 | unpacked[targ] = accum & ~(~0L << HOST_CHAR_BIT); | |
2123 | accumSize -= HOST_CHAR_BIT; | |
2124 | accum >>= HOST_CHAR_BIT; | |
2125 | ntarg -= 1; | |
2126 | targ += delta; | |
2127 | } | |
14f9c5c9 AS |
2128 | srcBitsLeft -= HOST_CHAR_BIT - unusedLS; |
2129 | unusedLS = 0; | |
2130 | nsrc -= 1; | |
2131 | src += delta; | |
2132 | } | |
2133 | while (ntarg > 0) | |
2134 | { | |
2135 | accum |= sign << accumSize; | |
2136 | unpacked[targ] = accum & ~(~0L << HOST_CHAR_BIT); | |
2137 | accumSize -= HOST_CHAR_BIT; | |
2138 | accum >>= HOST_CHAR_BIT; | |
2139 | ntarg -= 1; | |
2140 | targ += delta; | |
2141 | } | |
2142 | ||
2143 | return v; | |
2144 | } | |
d2e4a39e | 2145 | |
14f9c5c9 AS |
2146 | /* Move N bits from SOURCE, starting at bit offset SRC_OFFSET to |
2147 | TARGET, starting at bit offset TARG_OFFSET. SOURCE and TARGET must | |
4c4b4cd2 | 2148 | not overlap. */ |
14f9c5c9 | 2149 | static void |
fc1a4b47 | 2150 | move_bits (gdb_byte *target, int targ_offset, const gdb_byte *source, |
0fd88904 | 2151 | int src_offset, int n) |
14f9c5c9 AS |
2152 | { |
2153 | unsigned int accum, mask; | |
2154 | int accum_bits, chunk_size; | |
2155 | ||
2156 | target += targ_offset / HOST_CHAR_BIT; | |
2157 | targ_offset %= HOST_CHAR_BIT; | |
2158 | source += src_offset / HOST_CHAR_BIT; | |
2159 | src_offset %= HOST_CHAR_BIT; | |
32c9a795 | 2160 | if (gdbarch_bits_big_endian (current_gdbarch)) |
14f9c5c9 AS |
2161 | { |
2162 | accum = (unsigned char) *source; | |
2163 | source += 1; | |
2164 | accum_bits = HOST_CHAR_BIT - src_offset; | |
2165 | ||
d2e4a39e | 2166 | while (n > 0) |
4c4b4cd2 PH |
2167 | { |
2168 | int unused_right; | |
2169 | accum = (accum << HOST_CHAR_BIT) + (unsigned char) *source; | |
2170 | accum_bits += HOST_CHAR_BIT; | |
2171 | source += 1; | |
2172 | chunk_size = HOST_CHAR_BIT - targ_offset; | |
2173 | if (chunk_size > n) | |
2174 | chunk_size = n; | |
2175 | unused_right = HOST_CHAR_BIT - (chunk_size + targ_offset); | |
2176 | mask = ((1 << chunk_size) - 1) << unused_right; | |
2177 | *target = | |
2178 | (*target & ~mask) | |
2179 | | ((accum >> (accum_bits - chunk_size - unused_right)) & mask); | |
2180 | n -= chunk_size; | |
2181 | accum_bits -= chunk_size; | |
2182 | target += 1; | |
2183 | targ_offset = 0; | |
2184 | } | |
14f9c5c9 AS |
2185 | } |
2186 | else | |
2187 | { | |
2188 | accum = (unsigned char) *source >> src_offset; | |
2189 | source += 1; | |
2190 | accum_bits = HOST_CHAR_BIT - src_offset; | |
2191 | ||
d2e4a39e | 2192 | while (n > 0) |
4c4b4cd2 PH |
2193 | { |
2194 | accum = accum + ((unsigned char) *source << accum_bits); | |
2195 | accum_bits += HOST_CHAR_BIT; | |
2196 | source += 1; | |
2197 | chunk_size = HOST_CHAR_BIT - targ_offset; | |
2198 | if (chunk_size > n) | |
2199 | chunk_size = n; | |
2200 | mask = ((1 << chunk_size) - 1) << targ_offset; | |
2201 | *target = (*target & ~mask) | ((accum << targ_offset) & mask); | |
2202 | n -= chunk_size; | |
2203 | accum_bits -= chunk_size; | |
2204 | accum >>= chunk_size; | |
2205 | target += 1; | |
2206 | targ_offset = 0; | |
2207 | } | |
14f9c5c9 AS |
2208 | } |
2209 | } | |
2210 | ||
14f9c5c9 AS |
2211 | /* Store the contents of FROMVAL into the location of TOVAL. |
2212 | Return a new value with the location of TOVAL and contents of | |
2213 | FROMVAL. Handles assignment into packed fields that have | |
4c4b4cd2 | 2214 | floating-point or non-scalar types. */ |
14f9c5c9 | 2215 | |
d2e4a39e AS |
2216 | static struct value * |
2217 | ada_value_assign (struct value *toval, struct value *fromval) | |
14f9c5c9 | 2218 | { |
df407dfe AC |
2219 | struct type *type = value_type (toval); |
2220 | int bits = value_bitsize (toval); | |
14f9c5c9 | 2221 | |
52ce6436 PH |
2222 | toval = ada_coerce_ref (toval); |
2223 | fromval = ada_coerce_ref (fromval); | |
2224 | ||
2225 | if (ada_is_direct_array_type (value_type (toval))) | |
2226 | toval = ada_coerce_to_simple_array (toval); | |
2227 | if (ada_is_direct_array_type (value_type (fromval))) | |
2228 | fromval = ada_coerce_to_simple_array (fromval); | |
2229 | ||
88e3b34b | 2230 | if (!deprecated_value_modifiable (toval)) |
323e0a4a | 2231 | error (_("Left operand of assignment is not a modifiable lvalue.")); |
14f9c5c9 | 2232 | |
d2e4a39e | 2233 | if (VALUE_LVAL (toval) == lval_memory |
14f9c5c9 | 2234 | && bits > 0 |
d2e4a39e | 2235 | && (TYPE_CODE (type) == TYPE_CODE_FLT |
4c4b4cd2 | 2236 | || TYPE_CODE (type) == TYPE_CODE_STRUCT)) |
14f9c5c9 | 2237 | { |
df407dfe AC |
2238 | int len = (value_bitpos (toval) |
2239 | + bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT; | |
aced2898 | 2240 | int from_size; |
d2e4a39e AS |
2241 | char *buffer = (char *) alloca (len); |
2242 | struct value *val; | |
52ce6436 | 2243 | CORE_ADDR to_addr = VALUE_ADDRESS (toval) + value_offset (toval); |
14f9c5c9 AS |
2244 | |
2245 | if (TYPE_CODE (type) == TYPE_CODE_FLT) | |
4c4b4cd2 | 2246 | fromval = value_cast (type, fromval); |
14f9c5c9 | 2247 | |
52ce6436 | 2248 | read_memory (to_addr, buffer, len); |
aced2898 PH |
2249 | from_size = value_bitsize (fromval); |
2250 | if (from_size == 0) | |
2251 | from_size = TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT; | |
32c9a795 | 2252 | if (gdbarch_bits_big_endian (current_gdbarch)) |
df407dfe | 2253 | move_bits (buffer, value_bitpos (toval), |
aced2898 | 2254 | value_contents (fromval), from_size - bits, bits); |
14f9c5c9 | 2255 | else |
0fd88904 | 2256 | move_bits (buffer, value_bitpos (toval), value_contents (fromval), |
4c4b4cd2 | 2257 | 0, bits); |
52ce6436 PH |
2258 | write_memory (to_addr, buffer, len); |
2259 | if (deprecated_memory_changed_hook) | |
2260 | deprecated_memory_changed_hook (to_addr, len); | |
2261 | ||
14f9c5c9 | 2262 | val = value_copy (toval); |
0fd88904 | 2263 | memcpy (value_contents_raw (val), value_contents (fromval), |
4c4b4cd2 | 2264 | TYPE_LENGTH (type)); |
04624583 | 2265 | deprecated_set_value_type (val, type); |
d2e4a39e | 2266 | |
14f9c5c9 AS |
2267 | return val; |
2268 | } | |
2269 | ||
2270 | return value_assign (toval, fromval); | |
2271 | } | |
2272 | ||
2273 | ||
52ce6436 PH |
2274 | /* Given that COMPONENT is a memory lvalue that is part of the lvalue |
2275 | * CONTAINER, assign the contents of VAL to COMPONENTS's place in | |
2276 | * CONTAINER. Modifies the VALUE_CONTENTS of CONTAINER only, not | |
2277 | * COMPONENT, and not the inferior's memory. The current contents | |
2278 | * of COMPONENT are ignored. */ | |
2279 | static void | |
2280 | value_assign_to_component (struct value *container, struct value *component, | |
2281 | struct value *val) | |
2282 | { | |
2283 | LONGEST offset_in_container = | |
2284 | (LONGEST) (VALUE_ADDRESS (component) + value_offset (component) | |
2285 | - VALUE_ADDRESS (container) - value_offset (container)); | |
2286 | int bit_offset_in_container = | |
2287 | value_bitpos (component) - value_bitpos (container); | |
2288 | int bits; | |
2289 | ||
2290 | val = value_cast (value_type (component), val); | |
2291 | ||
2292 | if (value_bitsize (component) == 0) | |
2293 | bits = TARGET_CHAR_BIT * TYPE_LENGTH (value_type (component)); | |
2294 | else | |
2295 | bits = value_bitsize (component); | |
2296 | ||
32c9a795 | 2297 | if (gdbarch_bits_big_endian (current_gdbarch)) |
52ce6436 PH |
2298 | move_bits (value_contents_writeable (container) + offset_in_container, |
2299 | value_bitpos (container) + bit_offset_in_container, | |
2300 | value_contents (val), | |
2301 | TYPE_LENGTH (value_type (component)) * TARGET_CHAR_BIT - bits, | |
2302 | bits); | |
2303 | else | |
2304 | move_bits (value_contents_writeable (container) + offset_in_container, | |
2305 | value_bitpos (container) + bit_offset_in_container, | |
2306 | value_contents (val), 0, bits); | |
2307 | } | |
2308 | ||
4c4b4cd2 PH |
2309 | /* The value of the element of array ARR at the ARITY indices given in IND. |
2310 | ARR may be either a simple array, GNAT array descriptor, or pointer | |
14f9c5c9 AS |
2311 | thereto. */ |
2312 | ||
d2e4a39e AS |
2313 | struct value * |
2314 | ada_value_subscript (struct value *arr, int arity, struct value **ind) | |
14f9c5c9 AS |
2315 | { |
2316 | int k; | |
d2e4a39e AS |
2317 | struct value *elt; |
2318 | struct type *elt_type; | |
14f9c5c9 AS |
2319 | |
2320 | elt = ada_coerce_to_simple_array (arr); | |
2321 | ||
df407dfe | 2322 | elt_type = ada_check_typedef (value_type (elt)); |
d2e4a39e | 2323 | if (TYPE_CODE (elt_type) == TYPE_CODE_ARRAY |
14f9c5c9 AS |
2324 | && TYPE_FIELD_BITSIZE (elt_type, 0) > 0) |
2325 | return value_subscript_packed (elt, arity, ind); | |
2326 | ||
2327 | for (k = 0; k < arity; k += 1) | |
2328 | { | |
2329 | if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY) | |
323e0a4a | 2330 | error (_("too many subscripts (%d expected)"), k); |
3cb382c9 | 2331 | elt = value_subscript (elt, value_pos_atr (builtin_type_int32, ind[k])); |
14f9c5c9 AS |
2332 | } |
2333 | return elt; | |
2334 | } | |
2335 | ||
2336 | /* Assuming ARR is a pointer to a standard GDB array of type TYPE, the | |
2337 | value of the element of *ARR at the ARITY indices given in | |
4c4b4cd2 | 2338 | IND. Does not read the entire array into memory. */ |
14f9c5c9 | 2339 | |
d2e4a39e AS |
2340 | struct value * |
2341 | ada_value_ptr_subscript (struct value *arr, struct type *type, int arity, | |
4c4b4cd2 | 2342 | struct value **ind) |
14f9c5c9 AS |
2343 | { |
2344 | int k; | |
2345 | ||
2346 | for (k = 0; k < arity; k += 1) | |
2347 | { | |
2348 | LONGEST lwb, upb; | |
d2e4a39e | 2349 | struct value *idx; |
14f9c5c9 AS |
2350 | |
2351 | if (TYPE_CODE (type) != TYPE_CODE_ARRAY) | |
323e0a4a | 2352 | error (_("too many subscripts (%d expected)"), k); |
d2e4a39e | 2353 | arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)), |
4c4b4cd2 | 2354 | value_copy (arr)); |
14f9c5c9 | 2355 | get_discrete_bounds (TYPE_INDEX_TYPE (type), &lwb, &upb); |
3cb382c9 | 2356 | idx = value_pos_atr (builtin_type_int32, ind[k]); |
4c4b4cd2 | 2357 | if (lwb != 0) |
89eef114 UW |
2358 | idx = value_binop (idx, value_from_longest (value_type (idx), lwb), |
2359 | BINOP_SUB); | |
2360 | ||
2361 | arr = value_ptradd (arr, idx); | |
14f9c5c9 AS |
2362 | type = TYPE_TARGET_TYPE (type); |
2363 | } | |
2364 | ||
2365 | return value_ind (arr); | |
2366 | } | |
2367 | ||
0b5d8877 PH |
2368 | /* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the |
2369 | actual type of ARRAY_PTR is ignored), returns a reference to | |
2370 | the Ada slice of HIGH-LOW+1 elements starting at index LOW. The lower | |
2371 | bound of this array is LOW, as per Ada rules. */ | |
2372 | static struct value * | |
6c038f32 | 2373 | ada_value_slice_ptr (struct value *array_ptr, struct type *type, |
0b5d8877 PH |
2374 | int low, int high) |
2375 | { | |
6c038f32 | 2376 | CORE_ADDR base = value_as_address (array_ptr) |
0b5d8877 PH |
2377 | + ((low - TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type))) |
2378 | * TYPE_LENGTH (TYPE_TARGET_TYPE (type))); | |
6c038f32 PH |
2379 | struct type *index_type = |
2380 | create_range_type (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (type)), | |
0b5d8877 | 2381 | low, high); |
6c038f32 | 2382 | struct type *slice_type = |
0b5d8877 PH |
2383 | create_array_type (NULL, TYPE_TARGET_TYPE (type), index_type); |
2384 | return value_from_pointer (lookup_reference_type (slice_type), base); | |
2385 | } | |
2386 | ||
2387 | ||
2388 | static struct value * | |
2389 | ada_value_slice (struct value *array, int low, int high) | |
2390 | { | |
df407dfe | 2391 | struct type *type = value_type (array); |
6c038f32 | 2392 | struct type *index_type = |
0b5d8877 | 2393 | create_range_type (NULL, TYPE_INDEX_TYPE (type), low, high); |
6c038f32 | 2394 | struct type *slice_type = |
0b5d8877 | 2395 | create_array_type (NULL, TYPE_TARGET_TYPE (type), index_type); |
6c038f32 | 2396 | return value_cast (slice_type, value_slice (array, low, high - low + 1)); |
0b5d8877 PH |
2397 | } |
2398 | ||
14f9c5c9 AS |
2399 | /* If type is a record type in the form of a standard GNAT array |
2400 | descriptor, returns the number of dimensions for type. If arr is a | |
2401 | simple array, returns the number of "array of"s that prefix its | |
4c4b4cd2 | 2402 | type designation. Otherwise, returns 0. */ |
14f9c5c9 AS |
2403 | |
2404 | int | |
d2e4a39e | 2405 | ada_array_arity (struct type *type) |
14f9c5c9 AS |
2406 | { |
2407 | int arity; | |
2408 | ||
2409 | if (type == NULL) | |
2410 | return 0; | |
2411 | ||
2412 | type = desc_base_type (type); | |
2413 | ||
2414 | arity = 0; | |
d2e4a39e | 2415 | if (TYPE_CODE (type) == TYPE_CODE_STRUCT) |
14f9c5c9 | 2416 | return desc_arity (desc_bounds_type (type)); |
d2e4a39e AS |
2417 | else |
2418 | while (TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
14f9c5c9 | 2419 | { |
4c4b4cd2 | 2420 | arity += 1; |
61ee279c | 2421 | type = ada_check_typedef (TYPE_TARGET_TYPE (type)); |
14f9c5c9 | 2422 | } |
d2e4a39e | 2423 | |
14f9c5c9 AS |
2424 | return arity; |
2425 | } | |
2426 | ||
2427 | /* If TYPE is a record type in the form of a standard GNAT array | |
2428 | descriptor or a simple array type, returns the element type for | |
2429 | TYPE after indexing by NINDICES indices, or by all indices if | |
4c4b4cd2 | 2430 | NINDICES is -1. Otherwise, returns NULL. */ |
14f9c5c9 | 2431 | |
d2e4a39e AS |
2432 | struct type * |
2433 | ada_array_element_type (struct type *type, int nindices) | |
14f9c5c9 AS |
2434 | { |
2435 | type = desc_base_type (type); | |
2436 | ||
d2e4a39e | 2437 | if (TYPE_CODE (type) == TYPE_CODE_STRUCT) |
14f9c5c9 AS |
2438 | { |
2439 | int k; | |
d2e4a39e | 2440 | struct type *p_array_type; |
14f9c5c9 AS |
2441 | |
2442 | p_array_type = desc_data_type (type); | |
2443 | ||
2444 | k = ada_array_arity (type); | |
2445 | if (k == 0) | |
4c4b4cd2 | 2446 | return NULL; |
d2e4a39e | 2447 | |
4c4b4cd2 | 2448 | /* Initially p_array_type = elt_type(*)[]...(k times)...[]. */ |
14f9c5c9 | 2449 | if (nindices >= 0 && k > nindices) |
4c4b4cd2 | 2450 | k = nindices; |
14f9c5c9 | 2451 | p_array_type = TYPE_TARGET_TYPE (p_array_type); |
d2e4a39e | 2452 | while (k > 0 && p_array_type != NULL) |
4c4b4cd2 | 2453 | { |
61ee279c | 2454 | p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type)); |
4c4b4cd2 PH |
2455 | k -= 1; |
2456 | } | |
14f9c5c9 AS |
2457 | return p_array_type; |
2458 | } | |
2459 | else if (TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
2460 | { | |
2461 | while (nindices != 0 && TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
4c4b4cd2 PH |
2462 | { |
2463 | type = TYPE_TARGET_TYPE (type); | |
2464 | nindices -= 1; | |
2465 | } | |
14f9c5c9 AS |
2466 | return type; |
2467 | } | |
2468 | ||
2469 | return NULL; | |
2470 | } | |
2471 | ||
4c4b4cd2 PH |
2472 | /* The type of nth index in arrays of given type (n numbering from 1). |
2473 | Does not examine memory. */ | |
14f9c5c9 | 2474 | |
d2e4a39e AS |
2475 | struct type * |
2476 | ada_index_type (struct type *type, int n) | |
14f9c5c9 | 2477 | { |
4c4b4cd2 PH |
2478 | struct type *result_type; |
2479 | ||
14f9c5c9 AS |
2480 | type = desc_base_type (type); |
2481 | ||
2482 | if (n > ada_array_arity (type)) | |
2483 | return NULL; | |
2484 | ||
4c4b4cd2 | 2485 | if (ada_is_simple_array_type (type)) |
14f9c5c9 AS |
2486 | { |
2487 | int i; | |
2488 | ||
2489 | for (i = 1; i < n; i += 1) | |
4c4b4cd2 PH |
2490 | type = TYPE_TARGET_TYPE (type); |
2491 | result_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, 0)); | |
2492 | /* FIXME: The stabs type r(0,0);bound;bound in an array type | |
2493 | has a target type of TYPE_CODE_UNDEF. We compensate here, but | |
76a01679 JB |
2494 | perhaps stabsread.c would make more sense. */ |
2495 | if (result_type == NULL || TYPE_CODE (result_type) == TYPE_CODE_UNDEF) | |
6d84d3d8 | 2496 | result_type = builtin_type_int32; |
14f9c5c9 | 2497 | |
4c4b4cd2 | 2498 | return result_type; |
14f9c5c9 | 2499 | } |
d2e4a39e | 2500 | else |
14f9c5c9 AS |
2501 | return desc_index_type (desc_bounds_type (type), n); |
2502 | } | |
2503 | ||
2504 | /* Given that arr is an array type, returns the lower bound of the | |
2505 | Nth index (numbering from 1) if WHICH is 0, and the upper bound if | |
4c4b4cd2 PH |
2506 | WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an |
2507 | array-descriptor type. If TYPEP is non-null, *TYPEP is set to the | |
2508 | bounds type. It works for other arrays with bounds supplied by | |
2509 | run-time quantities other than discriminants. */ | |
14f9c5c9 | 2510 | |
abb68b3e | 2511 | static LONGEST |
d2e4a39e | 2512 | ada_array_bound_from_type (struct type * arr_type, int n, int which, |
4c4b4cd2 | 2513 | struct type ** typep) |
14f9c5c9 | 2514 | { |
d2e4a39e AS |
2515 | struct type *type; |
2516 | struct type *index_type_desc; | |
14f9c5c9 AS |
2517 | |
2518 | if (ada_is_packed_array_type (arr_type)) | |
2519 | arr_type = decode_packed_array_type (arr_type); | |
2520 | ||
4c4b4cd2 | 2521 | if (arr_type == NULL || !ada_is_simple_array_type (arr_type)) |
14f9c5c9 AS |
2522 | { |
2523 | if (typep != NULL) | |
6d84d3d8 | 2524 | *typep = builtin_type_int32; |
d2e4a39e | 2525 | return (LONGEST) - which; |
14f9c5c9 AS |
2526 | } |
2527 | ||
2528 | if (TYPE_CODE (arr_type) == TYPE_CODE_PTR) | |
2529 | type = TYPE_TARGET_TYPE (arr_type); | |
2530 | else | |
2531 | type = arr_type; | |
2532 | ||
2533 | index_type_desc = ada_find_parallel_type (type, "___XA"); | |
d2e4a39e | 2534 | if (index_type_desc == NULL) |
14f9c5c9 | 2535 | { |
d2e4a39e | 2536 | struct type *index_type; |
14f9c5c9 | 2537 | |
d2e4a39e | 2538 | while (n > 1) |
4c4b4cd2 PH |
2539 | { |
2540 | type = TYPE_TARGET_TYPE (type); | |
2541 | n -= 1; | |
2542 | } | |
14f9c5c9 | 2543 | |
abb68b3e | 2544 | index_type = TYPE_INDEX_TYPE (type); |
14f9c5c9 | 2545 | if (typep != NULL) |
4c4b4cd2 | 2546 | *typep = index_type; |
abb68b3e JB |
2547 | |
2548 | /* The index type is either a range type or an enumerated type. | |
2549 | For the range type, we have some macros that allow us to | |
2550 | extract the value of the low and high bounds. But they | |
2551 | do now work for enumerated types. The expressions used | |
2552 | below work for both range and enum types. */ | |
d2e4a39e | 2553 | return |
4c4b4cd2 | 2554 | (LONGEST) (which == 0 |
abb68b3e JB |
2555 | ? TYPE_FIELD_BITPOS (index_type, 0) |
2556 | : TYPE_FIELD_BITPOS (index_type, | |
2557 | TYPE_NFIELDS (index_type) - 1)); | |
14f9c5c9 | 2558 | } |
d2e4a39e | 2559 | else |
14f9c5c9 | 2560 | { |
d2e4a39e | 2561 | struct type *index_type = |
4c4b4cd2 PH |
2562 | to_fixed_range_type (TYPE_FIELD_NAME (index_type_desc, n - 1), |
2563 | NULL, TYPE_OBJFILE (arr_type)); | |
abb68b3e | 2564 | |
14f9c5c9 | 2565 | if (typep != NULL) |
abb68b3e JB |
2566 | *typep = index_type; |
2567 | ||
d2e4a39e | 2568 | return |
4c4b4cd2 PH |
2569 | (LONGEST) (which == 0 |
2570 | ? TYPE_LOW_BOUND (index_type) | |
2571 | : TYPE_HIGH_BOUND (index_type)); | |
14f9c5c9 AS |
2572 | } |
2573 | } | |
2574 | ||
2575 | /* Given that arr is an array value, returns the lower bound of the | |
abb68b3e JB |
2576 | nth index (numbering from 1) if WHICH is 0, and the upper bound if |
2577 | WHICH is 1. This routine will also work for arrays with bounds | |
4c4b4cd2 | 2578 | supplied by run-time quantities other than discriminants. */ |
14f9c5c9 | 2579 | |
d2e4a39e | 2580 | struct value * |
4dc81987 | 2581 | ada_array_bound (struct value *arr, int n, int which) |
14f9c5c9 | 2582 | { |
df407dfe | 2583 | struct type *arr_type = value_type (arr); |
14f9c5c9 AS |
2584 | |
2585 | if (ada_is_packed_array_type (arr_type)) | |
2586 | return ada_array_bound (decode_packed_array (arr), n, which); | |
4c4b4cd2 | 2587 | else if (ada_is_simple_array_type (arr_type)) |
14f9c5c9 | 2588 | { |
d2e4a39e | 2589 | struct type *type; |
14f9c5c9 AS |
2590 | LONGEST v = ada_array_bound_from_type (arr_type, n, which, &type); |
2591 | return value_from_longest (type, v); | |
2592 | } | |
2593 | else | |
2594 | return desc_one_bound (desc_bounds (arr), n, which); | |
2595 | } | |
2596 | ||
2597 | /* Given that arr is an array value, returns the length of the | |
2598 | nth index. This routine will also work for arrays with bounds | |
4c4b4cd2 PH |
2599 | supplied by run-time quantities other than discriminants. |
2600 | Does not work for arrays indexed by enumeration types with representation | |
2601 | clauses at the moment. */ | |
14f9c5c9 | 2602 | |
d2e4a39e AS |
2603 | struct value * |
2604 | ada_array_length (struct value *arr, int n) | |
14f9c5c9 | 2605 | { |
df407dfe | 2606 | struct type *arr_type = ada_check_typedef (value_type (arr)); |
14f9c5c9 AS |
2607 | |
2608 | if (ada_is_packed_array_type (arr_type)) | |
2609 | return ada_array_length (decode_packed_array (arr), n); | |
2610 | ||
4c4b4cd2 | 2611 | if (ada_is_simple_array_type (arr_type)) |
14f9c5c9 | 2612 | { |
d2e4a39e | 2613 | struct type *type; |
14f9c5c9 | 2614 | LONGEST v = |
4c4b4cd2 PH |
2615 | ada_array_bound_from_type (arr_type, n, 1, &type) - |
2616 | ada_array_bound_from_type (arr_type, n, 0, NULL) + 1; | |
14f9c5c9 AS |
2617 | return value_from_longest (type, v); |
2618 | } | |
2619 | else | |
d2e4a39e | 2620 | return |
030b4912 | 2621 | value_from_longest (builtin_type_int32, |
4c4b4cd2 PH |
2622 | value_as_long (desc_one_bound (desc_bounds (arr), |
2623 | n, 1)) | |
2624 | - value_as_long (desc_one_bound (desc_bounds (arr), | |
2625 | n, 0)) + 1); | |
2626 | } | |
2627 | ||
2628 | /* An empty array whose type is that of ARR_TYPE (an array type), | |
2629 | with bounds LOW to LOW-1. */ | |
2630 | ||
2631 | static struct value * | |
2632 | empty_array (struct type *arr_type, int low) | |
2633 | { | |
6c038f32 | 2634 | struct type *index_type = |
0b5d8877 PH |
2635 | create_range_type (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (arr_type)), |
2636 | low, low - 1); | |
2637 | struct type *elt_type = ada_array_element_type (arr_type, 1); | |
2638 | return allocate_value (create_array_type (NULL, elt_type, index_type)); | |
14f9c5c9 | 2639 | } |
14f9c5c9 | 2640 | \f |
d2e4a39e | 2641 | |
4c4b4cd2 | 2642 | /* Name resolution */ |
14f9c5c9 | 2643 | |
4c4b4cd2 PH |
2644 | /* The "decoded" name for the user-definable Ada operator corresponding |
2645 | to OP. */ | |
14f9c5c9 | 2646 | |
d2e4a39e | 2647 | static const char * |
4c4b4cd2 | 2648 | ada_decoded_op_name (enum exp_opcode op) |
14f9c5c9 AS |
2649 | { |
2650 | int i; | |
2651 | ||
4c4b4cd2 | 2652 | for (i = 0; ada_opname_table[i].encoded != NULL; i += 1) |
14f9c5c9 AS |
2653 | { |
2654 | if (ada_opname_table[i].op == op) | |
4c4b4cd2 | 2655 | return ada_opname_table[i].decoded; |
14f9c5c9 | 2656 | } |
323e0a4a | 2657 | error (_("Could not find operator name for opcode")); |
14f9c5c9 AS |
2658 | } |
2659 | ||
2660 | ||
4c4b4cd2 PH |
2661 | /* Same as evaluate_type (*EXP), but resolves ambiguous symbol |
2662 | references (marked by OP_VAR_VALUE nodes in which the symbol has an | |
2663 | undefined namespace) and converts operators that are | |
2664 | user-defined into appropriate function calls. If CONTEXT_TYPE is | |
14f9c5c9 AS |
2665 | non-null, it provides a preferred result type [at the moment, only |
2666 | type void has any effect---causing procedures to be preferred over | |
2667 | functions in calls]. A null CONTEXT_TYPE indicates that a non-void | |
4c4b4cd2 | 2668 | return type is preferred. May change (expand) *EXP. */ |
14f9c5c9 | 2669 | |
4c4b4cd2 PH |
2670 | static void |
2671 | resolve (struct expression **expp, int void_context_p) | |
14f9c5c9 AS |
2672 | { |
2673 | int pc; | |
2674 | pc = 0; | |
4c4b4cd2 | 2675 | resolve_subexp (expp, &pc, 1, void_context_p ? builtin_type_void : NULL); |
14f9c5c9 AS |
2676 | } |
2677 | ||
4c4b4cd2 PH |
2678 | /* Resolve the operator of the subexpression beginning at |
2679 | position *POS of *EXPP. "Resolving" consists of replacing | |
2680 | the symbols that have undefined namespaces in OP_VAR_VALUE nodes | |
2681 | with their resolutions, replacing built-in operators with | |
2682 | function calls to user-defined operators, where appropriate, and, | |
2683 | when DEPROCEDURE_P is non-zero, converting function-valued variables | |
2684 | into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions | |
2685 | are as in ada_resolve, above. */ | |
14f9c5c9 | 2686 | |
d2e4a39e | 2687 | static struct value * |
4c4b4cd2 | 2688 | resolve_subexp (struct expression **expp, int *pos, int deprocedure_p, |
76a01679 | 2689 | struct type *context_type) |
14f9c5c9 AS |
2690 | { |
2691 | int pc = *pos; | |
2692 | int i; | |
4c4b4cd2 | 2693 | struct expression *exp; /* Convenience: == *expp. */ |
14f9c5c9 | 2694 | enum exp_opcode op = (*expp)->elts[pc].opcode; |
4c4b4cd2 PH |
2695 | struct value **argvec; /* Vector of operand types (alloca'ed). */ |
2696 | int nargs; /* Number of operands. */ | |
52ce6436 | 2697 | int oplen; |
14f9c5c9 AS |
2698 | |
2699 | argvec = NULL; | |
2700 | nargs = 0; | |
2701 | exp = *expp; | |
2702 | ||
52ce6436 PH |
2703 | /* Pass one: resolve operands, saving their types and updating *pos, |
2704 | if needed. */ | |
14f9c5c9 AS |
2705 | switch (op) |
2706 | { | |
4c4b4cd2 PH |
2707 | case OP_FUNCALL: |
2708 | if (exp->elts[pc + 3].opcode == OP_VAR_VALUE | |
76a01679 JB |
2709 | && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN) |
2710 | *pos += 7; | |
4c4b4cd2 PH |
2711 | else |
2712 | { | |
2713 | *pos += 3; | |
2714 | resolve_subexp (expp, pos, 0, NULL); | |
2715 | } | |
2716 | nargs = longest_to_int (exp->elts[pc + 1].longconst); | |
14f9c5c9 AS |
2717 | break; |
2718 | ||
14f9c5c9 | 2719 | case UNOP_ADDR: |
4c4b4cd2 PH |
2720 | *pos += 1; |
2721 | resolve_subexp (expp, pos, 0, NULL); | |
2722 | break; | |
2723 | ||
52ce6436 PH |
2724 | case UNOP_QUAL: |
2725 | *pos += 3; | |
2726 | resolve_subexp (expp, pos, 1, exp->elts[pc + 1].type); | |
4c4b4cd2 PH |
2727 | break; |
2728 | ||
52ce6436 | 2729 | case OP_ATR_MODULUS: |
4c4b4cd2 PH |
2730 | case OP_ATR_SIZE: |
2731 | case OP_ATR_TAG: | |
4c4b4cd2 PH |
2732 | case OP_ATR_FIRST: |
2733 | case OP_ATR_LAST: | |
2734 | case OP_ATR_LENGTH: | |
2735 | case OP_ATR_POS: | |
2736 | case OP_ATR_VAL: | |
4c4b4cd2 PH |
2737 | case OP_ATR_MIN: |
2738 | case OP_ATR_MAX: | |
52ce6436 PH |
2739 | case TERNOP_IN_RANGE: |
2740 | case BINOP_IN_BOUNDS: | |
2741 | case UNOP_IN_RANGE: | |
2742 | case OP_AGGREGATE: | |
2743 | case OP_OTHERS: | |
2744 | case OP_CHOICES: | |
2745 | case OP_POSITIONAL: | |
2746 | case OP_DISCRETE_RANGE: | |
2747 | case OP_NAME: | |
2748 | ada_forward_operator_length (exp, pc, &oplen, &nargs); | |
2749 | *pos += oplen; | |
14f9c5c9 AS |
2750 | break; |
2751 | ||
2752 | case BINOP_ASSIGN: | |
2753 | { | |
4c4b4cd2 PH |
2754 | struct value *arg1; |
2755 | ||
2756 | *pos += 1; | |
2757 | arg1 = resolve_subexp (expp, pos, 0, NULL); | |
2758 | if (arg1 == NULL) | |
2759 | resolve_subexp (expp, pos, 1, NULL); | |
2760 | else | |
df407dfe | 2761 | resolve_subexp (expp, pos, 1, value_type (arg1)); |
4c4b4cd2 | 2762 | break; |
14f9c5c9 AS |
2763 | } |
2764 | ||
4c4b4cd2 | 2765 | case UNOP_CAST: |
4c4b4cd2 PH |
2766 | *pos += 3; |
2767 | nargs = 1; | |
2768 | break; | |
14f9c5c9 | 2769 | |
4c4b4cd2 PH |
2770 | case BINOP_ADD: |
2771 | case BINOP_SUB: | |
2772 | case BINOP_MUL: | |
2773 | case BINOP_DIV: | |
2774 | case BINOP_REM: | |
2775 | case BINOP_MOD: | |
2776 | case BINOP_EXP: | |
2777 | case BINOP_CONCAT: | |
2778 | case BINOP_LOGICAL_AND: | |
2779 | case BINOP_LOGICAL_OR: | |
2780 | case BINOP_BITWISE_AND: | |
2781 | case BINOP_BITWISE_IOR: | |
2782 | case BINOP_BITWISE_XOR: | |
14f9c5c9 | 2783 | |
4c4b4cd2 PH |
2784 | case BINOP_EQUAL: |
2785 | case BINOP_NOTEQUAL: | |
2786 | case BINOP_LESS: | |
2787 | case BINOP_GTR: | |
2788 | case BINOP_LEQ: | |
2789 | case BINOP_GEQ: | |
14f9c5c9 | 2790 | |
4c4b4cd2 PH |
2791 | case BINOP_REPEAT: |
2792 | case BINOP_SUBSCRIPT: | |
2793 | case BINOP_COMMA: | |
40c8aaa9 JB |
2794 | *pos += 1; |
2795 | nargs = 2; | |
2796 | break; | |
14f9c5c9 | 2797 | |
4c4b4cd2 PH |
2798 | case UNOP_NEG: |
2799 | case UNOP_PLUS: | |
2800 | case UNOP_LOGICAL_NOT: | |
2801 | case UNOP_ABS: | |
2802 | case UNOP_IND: | |
2803 | *pos += 1; | |
2804 | nargs = 1; | |
2805 | break; | |
14f9c5c9 | 2806 | |
4c4b4cd2 PH |
2807 | case OP_LONG: |
2808 | case OP_DOUBLE: | |
2809 | case OP_VAR_VALUE: | |
2810 | *pos += 4; | |
2811 | break; | |
14f9c5c9 | 2812 | |
4c4b4cd2 PH |
2813 | case OP_TYPE: |
2814 | case OP_BOOL: | |
2815 | case OP_LAST: | |
4c4b4cd2 PH |
2816 | case OP_INTERNALVAR: |
2817 | *pos += 3; | |
2818 | break; | |
14f9c5c9 | 2819 | |
4c4b4cd2 PH |
2820 | case UNOP_MEMVAL: |
2821 | *pos += 3; | |
2822 | nargs = 1; | |
2823 | break; | |
2824 | ||
67f3407f DJ |
2825 | case OP_REGISTER: |
2826 | *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1); | |
2827 | break; | |
2828 | ||
4c4b4cd2 PH |
2829 | case STRUCTOP_STRUCT: |
2830 | *pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1); | |
2831 | nargs = 1; | |
2832 | break; | |
2833 | ||
4c4b4cd2 | 2834 | case TERNOP_SLICE: |
4c4b4cd2 PH |
2835 | *pos += 1; |
2836 | nargs = 3; | |
2837 | break; | |
2838 | ||
52ce6436 | 2839 | case OP_STRING: |
14f9c5c9 | 2840 | break; |
4c4b4cd2 PH |
2841 | |
2842 | default: | |
323e0a4a | 2843 | error (_("Unexpected operator during name resolution")); |
14f9c5c9 AS |
2844 | } |
2845 | ||
76a01679 | 2846 | argvec = (struct value * *) alloca (sizeof (struct value *) * (nargs + 1)); |
4c4b4cd2 PH |
2847 | for (i = 0; i < nargs; i += 1) |
2848 | argvec[i] = resolve_subexp (expp, pos, 1, NULL); | |
2849 | argvec[i] = NULL; | |
2850 | exp = *expp; | |
2851 | ||
2852 | /* Pass two: perform any resolution on principal operator. */ | |
14f9c5c9 AS |
2853 | switch (op) |
2854 | { | |
2855 | default: | |
2856 | break; | |
2857 | ||
14f9c5c9 | 2858 | case OP_VAR_VALUE: |
4c4b4cd2 | 2859 | if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN) |
76a01679 JB |
2860 | { |
2861 | struct ada_symbol_info *candidates; | |
2862 | int n_candidates; | |
2863 | ||
2864 | n_candidates = | |
2865 | ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME | |
2866 | (exp->elts[pc + 2].symbol), | |
2867 | exp->elts[pc + 1].block, VAR_DOMAIN, | |
2868 | &candidates); | |
2869 | ||
2870 | if (n_candidates > 1) | |
2871 | { | |
2872 | /* Types tend to get re-introduced locally, so if there | |
2873 | are any local symbols that are not types, first filter | |
2874 | out all types. */ | |
2875 | int j; | |
2876 | for (j = 0; j < n_candidates; j += 1) | |
2877 | switch (SYMBOL_CLASS (candidates[j].sym)) | |
2878 | { | |
2879 | case LOC_REGISTER: | |
2880 | case LOC_ARG: | |
2881 | case LOC_REF_ARG: | |
76a01679 JB |
2882 | case LOC_REGPARM_ADDR: |
2883 | case LOC_LOCAL: | |
76a01679 | 2884 | case LOC_COMPUTED: |
76a01679 JB |
2885 | goto FoundNonType; |
2886 | default: | |
2887 | break; | |
2888 | } | |
2889 | FoundNonType: | |
2890 | if (j < n_candidates) | |
2891 | { | |
2892 | j = 0; | |
2893 | while (j < n_candidates) | |
2894 | { | |
2895 | if (SYMBOL_CLASS (candidates[j].sym) == LOC_TYPEDEF) | |
2896 | { | |
2897 | candidates[j] = candidates[n_candidates - 1]; | |
2898 | n_candidates -= 1; | |
2899 | } | |
2900 | else | |
2901 | j += 1; | |
2902 | } | |
2903 | } | |
2904 | } | |
2905 | ||
2906 | if (n_candidates == 0) | |
323e0a4a | 2907 | error (_("No definition found for %s"), |
76a01679 JB |
2908 | SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol)); |
2909 | else if (n_candidates == 1) | |
2910 | i = 0; | |
2911 | else if (deprocedure_p | |
2912 | && !is_nonfunction (candidates, n_candidates)) | |
2913 | { | |
06d5cf63 JB |
2914 | i = ada_resolve_function |
2915 | (candidates, n_candidates, NULL, 0, | |
2916 | SYMBOL_LINKAGE_NAME (exp->elts[pc + 2].symbol), | |
2917 | context_type); | |
76a01679 | 2918 | if (i < 0) |
323e0a4a | 2919 | error (_("Could not find a match for %s"), |
76a01679 JB |
2920 | SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol)); |
2921 | } | |
2922 | else | |
2923 | { | |
323e0a4a | 2924 | printf_filtered (_("Multiple matches for %s\n"), |
76a01679 JB |
2925 | SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol)); |
2926 | user_select_syms (candidates, n_candidates, 1); | |
2927 | i = 0; | |
2928 | } | |
2929 | ||
2930 | exp->elts[pc + 1].block = candidates[i].block; | |
2931 | exp->elts[pc + 2].symbol = candidates[i].sym; | |
1265e4aa JB |
2932 | if (innermost_block == NULL |
2933 | || contained_in (candidates[i].block, innermost_block)) | |
76a01679 JB |
2934 | innermost_block = candidates[i].block; |
2935 | } | |
2936 | ||
2937 | if (deprocedure_p | |
2938 | && (TYPE_CODE (SYMBOL_TYPE (exp->elts[pc + 2].symbol)) | |
2939 | == TYPE_CODE_FUNC)) | |
2940 | { | |
2941 | replace_operator_with_call (expp, pc, 0, 0, | |
2942 | exp->elts[pc + 2].symbol, | |
2943 | exp->elts[pc + 1].block); | |
2944 | exp = *expp; | |
2945 | } | |
14f9c5c9 AS |
2946 | break; |
2947 | ||
2948 | case OP_FUNCALL: | |
2949 | { | |
4c4b4cd2 | 2950 | if (exp->elts[pc + 3].opcode == OP_VAR_VALUE |
76a01679 | 2951 | && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN) |
4c4b4cd2 PH |
2952 | { |
2953 | struct ada_symbol_info *candidates; | |
2954 | int n_candidates; | |
2955 | ||
2956 | n_candidates = | |
76a01679 JB |
2957 | ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME |
2958 | (exp->elts[pc + 5].symbol), | |
2959 | exp->elts[pc + 4].block, VAR_DOMAIN, | |
2960 | &candidates); | |
4c4b4cd2 PH |
2961 | if (n_candidates == 1) |
2962 | i = 0; | |
2963 | else | |
2964 | { | |
06d5cf63 JB |
2965 | i = ada_resolve_function |
2966 | (candidates, n_candidates, | |
2967 | argvec, nargs, | |
2968 | SYMBOL_LINKAGE_NAME (exp->elts[pc + 5].symbol), | |
2969 | context_type); | |
4c4b4cd2 | 2970 | if (i < 0) |
323e0a4a | 2971 | error (_("Could not find a match for %s"), |
4c4b4cd2 PH |
2972 | SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol)); |
2973 | } | |
2974 | ||
2975 | exp->elts[pc + 4].block = candidates[i].block; | |
2976 | exp->elts[pc + 5].symbol = candidates[i].sym; | |
1265e4aa JB |
2977 | if (innermost_block == NULL |
2978 | || contained_in (candidates[i].block, innermost_block)) | |
4c4b4cd2 PH |
2979 | innermost_block = candidates[i].block; |
2980 | } | |
14f9c5c9 AS |
2981 | } |
2982 | break; | |
2983 | case BINOP_ADD: | |
2984 | case BINOP_SUB: | |
2985 | case BINOP_MUL: | |
2986 | case BINOP_DIV: | |
2987 | case BINOP_REM: | |
2988 | case BINOP_MOD: | |
2989 | case BINOP_CONCAT: | |
2990 | case BINOP_BITWISE_AND: | |
2991 | case BINOP_BITWISE_IOR: | |
2992 | case BINOP_BITWISE_XOR: | |
2993 | case BINOP_EQUAL: | |
2994 | case BINOP_NOTEQUAL: | |
2995 | case BINOP_LESS: | |
2996 | case BINOP_GTR: | |
2997 | case BINOP_LEQ: | |
2998 | case BINOP_GEQ: | |
2999 | case BINOP_EXP: | |
3000 | case UNOP_NEG: | |
3001 | case UNOP_PLUS: | |
3002 | case UNOP_LOGICAL_NOT: | |
3003 | case UNOP_ABS: | |
3004 | if (possible_user_operator_p (op, argvec)) | |
4c4b4cd2 PH |
3005 | { |
3006 | struct ada_symbol_info *candidates; | |
3007 | int n_candidates; | |
3008 | ||
3009 | n_candidates = | |
3010 | ada_lookup_symbol_list (ada_encode (ada_decoded_op_name (op)), | |
3011 | (struct block *) NULL, VAR_DOMAIN, | |
3012 | &candidates); | |
3013 | i = ada_resolve_function (candidates, n_candidates, argvec, nargs, | |
76a01679 | 3014 | ada_decoded_op_name (op), NULL); |
4c4b4cd2 PH |
3015 | if (i < 0) |
3016 | break; | |
3017 | ||
76a01679 JB |
3018 | replace_operator_with_call (expp, pc, nargs, 1, |
3019 | candidates[i].sym, candidates[i].block); | |
4c4b4cd2 PH |
3020 | exp = *expp; |
3021 | } | |
14f9c5c9 | 3022 | break; |
4c4b4cd2 PH |
3023 | |
3024 | case OP_TYPE: | |
b3dbf008 | 3025 | case OP_REGISTER: |
4c4b4cd2 | 3026 | return NULL; |
14f9c5c9 AS |
3027 | } |
3028 | ||
3029 | *pos = pc; | |
3030 | return evaluate_subexp_type (exp, pos); | |
3031 | } | |
3032 | ||
3033 | /* Return non-zero if formal type FTYPE matches actual type ATYPE. If | |
4c4b4cd2 PH |
3034 | MAY_DEREF is non-zero, the formal may be a pointer and the actual |
3035 | a non-pointer. A type of 'void' (which is never a valid expression type) | |
3036 | by convention matches anything. */ | |
14f9c5c9 | 3037 | /* The term "match" here is rather loose. The match is heuristic and |
4c4b4cd2 | 3038 | liberal. FIXME: TOO liberal, in fact. */ |
14f9c5c9 AS |
3039 | |
3040 | static int | |
4dc81987 | 3041 | ada_type_match (struct type *ftype, struct type *atype, int may_deref) |
14f9c5c9 | 3042 | { |
61ee279c PH |
3043 | ftype = ada_check_typedef (ftype); |
3044 | atype = ada_check_typedef (atype); | |
14f9c5c9 AS |
3045 | |
3046 | if (TYPE_CODE (ftype) == TYPE_CODE_REF) | |
3047 | ftype = TYPE_TARGET_TYPE (ftype); | |
3048 | if (TYPE_CODE (atype) == TYPE_CODE_REF) | |
3049 | atype = TYPE_TARGET_TYPE (atype); | |
3050 | ||
d2e4a39e | 3051 | if (TYPE_CODE (ftype) == TYPE_CODE_VOID |
14f9c5c9 AS |
3052 | || TYPE_CODE (atype) == TYPE_CODE_VOID) |
3053 | return 1; | |
3054 | ||
d2e4a39e | 3055 | switch (TYPE_CODE (ftype)) |
14f9c5c9 AS |
3056 | { |
3057 | default: | |
3058 | return 1; | |
3059 | case TYPE_CODE_PTR: | |
3060 | if (TYPE_CODE (atype) == TYPE_CODE_PTR) | |
4c4b4cd2 PH |
3061 | return ada_type_match (TYPE_TARGET_TYPE (ftype), |
3062 | TYPE_TARGET_TYPE (atype), 0); | |
d2e4a39e | 3063 | else |
1265e4aa JB |
3064 | return (may_deref |
3065 | && ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0)); | |
14f9c5c9 AS |
3066 | case TYPE_CODE_INT: |
3067 | case TYPE_CODE_ENUM: | |
3068 | case TYPE_CODE_RANGE: | |
3069 | switch (TYPE_CODE (atype)) | |
4c4b4cd2 PH |
3070 | { |
3071 | case TYPE_CODE_INT: | |
3072 | case TYPE_CODE_ENUM: | |
3073 | case TYPE_CODE_RANGE: | |
3074 | return 1; | |
3075 | default: | |
3076 | return 0; | |
3077 | } | |
14f9c5c9 AS |
3078 | |
3079 | case TYPE_CODE_ARRAY: | |
d2e4a39e | 3080 | return (TYPE_CODE (atype) == TYPE_CODE_ARRAY |
4c4b4cd2 | 3081 | || ada_is_array_descriptor_type (atype)); |
14f9c5c9 AS |
3082 | |
3083 | case TYPE_CODE_STRUCT: | |
4c4b4cd2 PH |
3084 | if (ada_is_array_descriptor_type (ftype)) |
3085 | return (TYPE_CODE (atype) == TYPE_CODE_ARRAY | |
3086 | || ada_is_array_descriptor_type (atype)); | |
14f9c5c9 | 3087 | else |
4c4b4cd2 PH |
3088 | return (TYPE_CODE (atype) == TYPE_CODE_STRUCT |
3089 | && !ada_is_array_descriptor_type (atype)); | |
14f9c5c9 AS |
3090 | |
3091 | case TYPE_CODE_UNION: | |
3092 | case TYPE_CODE_FLT: | |
3093 | return (TYPE_CODE (atype) == TYPE_CODE (ftype)); | |
3094 | } | |
3095 | } | |
3096 | ||
3097 | /* Return non-zero if the formals of FUNC "sufficiently match" the | |
3098 | vector of actual argument types ACTUALS of size N_ACTUALS. FUNC | |
3099 | may also be an enumeral, in which case it is treated as a 0- | |
4c4b4cd2 | 3100 | argument function. */ |
14f9c5c9 AS |
3101 | |
3102 | static int | |
d2e4a39e | 3103 | ada_args_match (struct symbol *func, struct value **actuals, int n_actuals) |
14f9c5c9 AS |
3104 | { |
3105 | int i; | |
d2e4a39e | 3106 | struct type *func_type = SYMBOL_TYPE (func); |
14f9c5c9 | 3107 | |
1265e4aa JB |
3108 | if (SYMBOL_CLASS (func) == LOC_CONST |
3109 | && TYPE_CODE (func_type) == TYPE_CODE_ENUM) | |
14f9c5c9 AS |
3110 | return (n_actuals == 0); |
3111 | else if (func_type == NULL || TYPE_CODE (func_type) != TYPE_CODE_FUNC) | |
3112 | return 0; | |
3113 | ||
3114 | if (TYPE_NFIELDS (func_type) != n_actuals) | |
3115 | return 0; | |
3116 | ||
3117 | for (i = 0; i < n_actuals; i += 1) | |
3118 | { | |
4c4b4cd2 | 3119 | if (actuals[i] == NULL) |
76a01679 JB |
3120 | return 0; |
3121 | else | |
3122 | { | |
61ee279c | 3123 | struct type *ftype = ada_check_typedef (TYPE_FIELD_TYPE (func_type, i)); |
df407dfe | 3124 | struct type *atype = ada_check_typedef (value_type (actuals[i])); |
4c4b4cd2 | 3125 | |
76a01679 JB |
3126 | if (!ada_type_match (ftype, atype, 1)) |
3127 | return 0; | |
3128 | } | |
14f9c5c9 AS |
3129 | } |
3130 | return 1; | |
3131 | } | |
3132 | ||
3133 | /* False iff function type FUNC_TYPE definitely does not produce a value | |
3134 | compatible with type CONTEXT_TYPE. Conservatively returns 1 if | |
3135 | FUNC_TYPE is not a valid function type with a non-null return type | |
3136 | or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */ | |
3137 | ||
3138 | static int | |
d2e4a39e | 3139 | return_match (struct type *func_type, struct type *context_type) |
14f9c5c9 | 3140 | { |
d2e4a39e | 3141 | struct type *return_type; |
14f9c5c9 AS |
3142 | |
3143 | if (func_type == NULL) | |
3144 | return 1; | |
3145 | ||
4c4b4cd2 PH |
3146 | if (TYPE_CODE (func_type) == TYPE_CODE_FUNC) |
3147 | return_type = base_type (TYPE_TARGET_TYPE (func_type)); | |
3148 | else | |
3149 | return_type = base_type (func_type); | |
14f9c5c9 AS |
3150 | if (return_type == NULL) |
3151 | return 1; | |
3152 | ||
4c4b4cd2 | 3153 | context_type = base_type (context_type); |
14f9c5c9 AS |
3154 | |
3155 | if (TYPE_CODE (return_type) == TYPE_CODE_ENUM) | |
3156 | return context_type == NULL || return_type == context_type; | |
3157 | else if (context_type == NULL) | |
3158 | return TYPE_CODE (return_type) != TYPE_CODE_VOID; | |
3159 | else | |
3160 | return TYPE_CODE (return_type) == TYPE_CODE (context_type); | |
3161 | } | |
3162 | ||
3163 | ||
4c4b4cd2 | 3164 | /* Returns the index in SYMS[0..NSYMS-1] that contains the symbol for the |
14f9c5c9 | 3165 | function (if any) that matches the types of the NARGS arguments in |
4c4b4cd2 PH |
3166 | ARGS. If CONTEXT_TYPE is non-null and there is at least one match |
3167 | that returns that type, then eliminate matches that don't. If | |
3168 | CONTEXT_TYPE is void and there is at least one match that does not | |
3169 | return void, eliminate all matches that do. | |
3170 | ||
14f9c5c9 AS |
3171 | Asks the user if there is more than one match remaining. Returns -1 |
3172 | if there is no such symbol or none is selected. NAME is used | |
4c4b4cd2 PH |
3173 | solely for messages. May re-arrange and modify SYMS in |
3174 | the process; the index returned is for the modified vector. */ | |
14f9c5c9 | 3175 | |
4c4b4cd2 PH |
3176 | static int |
3177 | ada_resolve_function (struct ada_symbol_info syms[], | |
3178 | int nsyms, struct value **args, int nargs, | |
3179 | const char *name, struct type *context_type) | |
14f9c5c9 AS |
3180 | { |
3181 | int k; | |
4c4b4cd2 | 3182 | int m; /* Number of hits */ |
d2e4a39e AS |
3183 | struct type *fallback; |
3184 | struct type *return_type; | |
14f9c5c9 AS |
3185 | |
3186 | return_type = context_type; | |
3187 | if (context_type == NULL) | |
3188 | fallback = builtin_type_void; | |
3189 | else | |
3190 | fallback = NULL; | |
3191 | ||
d2e4a39e | 3192 | m = 0; |
14f9c5c9 AS |
3193 | while (1) |
3194 | { | |
3195 | for (k = 0; k < nsyms; k += 1) | |
4c4b4cd2 | 3196 | { |
61ee279c | 3197 | struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].sym)); |
4c4b4cd2 PH |
3198 | |
3199 | if (ada_args_match (syms[k].sym, args, nargs) | |
3200 | && return_match (type, return_type)) | |
3201 | { | |
3202 | syms[m] = syms[k]; | |
3203 | m += 1; | |
3204 | } | |
3205 | } | |
14f9c5c9 | 3206 | if (m > 0 || return_type == fallback) |
4c4b4cd2 | 3207 | break; |
14f9c5c9 | 3208 | else |
4c4b4cd2 | 3209 | return_type = fallback; |
14f9c5c9 AS |
3210 | } |
3211 | ||
3212 | if (m == 0) | |
3213 | return -1; | |
3214 | else if (m > 1) | |
3215 | { | |
323e0a4a | 3216 | printf_filtered (_("Multiple matches for %s\n"), name); |
4c4b4cd2 | 3217 | user_select_syms (syms, m, 1); |
14f9c5c9 AS |
3218 | return 0; |
3219 | } | |
3220 | return 0; | |
3221 | } | |
3222 | ||
4c4b4cd2 PH |
3223 | /* Returns true (non-zero) iff decoded name N0 should appear before N1 |
3224 | in a listing of choices during disambiguation (see sort_choices, below). | |
3225 | The idea is that overloadings of a subprogram name from the | |
3226 | same package should sort in their source order. We settle for ordering | |
3227 | such symbols by their trailing number (__N or $N). */ | |
3228 | ||
14f9c5c9 | 3229 | static int |
4c4b4cd2 | 3230 | encoded_ordered_before (char *N0, char *N1) |
14f9c5c9 AS |
3231 | { |
3232 | if (N1 == NULL) | |
3233 | return 0; | |
3234 | else if (N0 == NULL) | |
3235 | return 1; | |
3236 | else | |
3237 | { | |
3238 | int k0, k1; | |
d2e4a39e | 3239 | for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1) |
4c4b4cd2 | 3240 | ; |
d2e4a39e | 3241 | for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1) |
4c4b4cd2 | 3242 | ; |
d2e4a39e | 3243 | if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000' |
4c4b4cd2 PH |
3244 | && (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000') |
3245 | { | |
3246 | int n0, n1; | |
3247 | n0 = k0; | |
3248 | while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_') | |
3249 | n0 -= 1; | |
3250 | n1 = k1; | |
3251 | while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_') | |
3252 | n1 -= 1; | |
3253 | if (n0 == n1 && strncmp (N0, N1, n0) == 0) | |
3254 | return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1)); | |
3255 | } | |
14f9c5c9 AS |
3256 | return (strcmp (N0, N1) < 0); |
3257 | } | |
3258 | } | |
d2e4a39e | 3259 | |
4c4b4cd2 PH |
3260 | /* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the |
3261 | encoded names. */ | |
3262 | ||
d2e4a39e | 3263 | static void |
4c4b4cd2 | 3264 | sort_choices (struct ada_symbol_info syms[], int nsyms) |
14f9c5c9 | 3265 | { |
4c4b4cd2 | 3266 | int i; |
d2e4a39e | 3267 | for (i = 1; i < nsyms; i += 1) |
14f9c5c9 | 3268 | { |
4c4b4cd2 | 3269 | struct ada_symbol_info sym = syms[i]; |
14f9c5c9 AS |
3270 | int j; |
3271 | ||
d2e4a39e | 3272 | for (j = i - 1; j >= 0; j -= 1) |
4c4b4cd2 PH |
3273 | { |
3274 | if (encoded_ordered_before (SYMBOL_LINKAGE_NAME (syms[j].sym), | |
3275 | SYMBOL_LINKAGE_NAME (sym.sym))) | |
3276 | break; | |
3277 | syms[j + 1] = syms[j]; | |
3278 | } | |
d2e4a39e | 3279 | syms[j + 1] = sym; |
14f9c5c9 AS |
3280 | } |
3281 | } | |
3282 | ||
4c4b4cd2 PH |
3283 | /* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0 |
3284 | by asking the user (if necessary), returning the number selected, | |
3285 | and setting the first elements of SYMS items. Error if no symbols | |
3286 | selected. */ | |
14f9c5c9 AS |
3287 | |
3288 | /* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought | |
4c4b4cd2 | 3289 | to be re-integrated one of these days. */ |
14f9c5c9 AS |
3290 | |
3291 | int | |
4c4b4cd2 | 3292 | user_select_syms (struct ada_symbol_info *syms, int nsyms, int max_results) |
14f9c5c9 AS |
3293 | { |
3294 | int i; | |
d2e4a39e | 3295 | int *chosen = (int *) alloca (sizeof (int) * nsyms); |
14f9c5c9 AS |
3296 | int n_chosen; |
3297 | int first_choice = (max_results == 1) ? 1 : 2; | |
717d2f5a | 3298 | const char *select_mode = multiple_symbols_select_mode (); |
14f9c5c9 AS |
3299 | |
3300 | if (max_results < 1) | |
323e0a4a | 3301 | error (_("Request to select 0 symbols!")); |
14f9c5c9 AS |
3302 | if (nsyms <= 1) |
3303 | return nsyms; | |
3304 | ||
717d2f5a JB |
3305 | if (select_mode == multiple_symbols_cancel) |
3306 | error (_("\ | |
3307 | canceled because the command is ambiguous\n\ | |
3308 | See set/show multiple-symbol.")); | |
3309 | ||
3310 | /* If select_mode is "all", then return all possible symbols. | |
3311 | Only do that if more than one symbol can be selected, of course. | |
3312 | Otherwise, display the menu as usual. */ | |
3313 | if (select_mode == multiple_symbols_all && max_results > 1) | |
3314 | return nsyms; | |
3315 | ||
323e0a4a | 3316 | printf_unfiltered (_("[0] cancel\n")); |
14f9c5c9 | 3317 | if (max_results > 1) |
323e0a4a | 3318 | printf_unfiltered (_("[1] all\n")); |
14f9c5c9 | 3319 | |
4c4b4cd2 | 3320 | sort_choices (syms, nsyms); |
14f9c5c9 AS |
3321 | |
3322 | for (i = 0; i < nsyms; i += 1) | |
3323 | { | |
4c4b4cd2 PH |
3324 | if (syms[i].sym == NULL) |
3325 | continue; | |
3326 | ||
3327 | if (SYMBOL_CLASS (syms[i].sym) == LOC_BLOCK) | |
3328 | { | |
76a01679 JB |
3329 | struct symtab_and_line sal = |
3330 | find_function_start_sal (syms[i].sym, 1); | |
323e0a4a AC |
3331 | if (sal.symtab == NULL) |
3332 | printf_unfiltered (_("[%d] %s at <no source file available>:%d\n"), | |
3333 | i + first_choice, | |
3334 | SYMBOL_PRINT_NAME (syms[i].sym), | |
3335 | sal.line); | |
3336 | else | |
3337 | printf_unfiltered (_("[%d] %s at %s:%d\n"), i + first_choice, | |
3338 | SYMBOL_PRINT_NAME (syms[i].sym), | |
3339 | sal.symtab->filename, sal.line); | |
4c4b4cd2 PH |
3340 | continue; |
3341 | } | |
d2e4a39e | 3342 | else |
4c4b4cd2 PH |
3343 | { |
3344 | int is_enumeral = | |
3345 | (SYMBOL_CLASS (syms[i].sym) == LOC_CONST | |
3346 | && SYMBOL_TYPE (syms[i].sym) != NULL | |
3347 | && TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) == TYPE_CODE_ENUM); | |
3348 | struct symtab *symtab = symtab_for_sym (syms[i].sym); | |
3349 | ||
3350 | if (SYMBOL_LINE (syms[i].sym) != 0 && symtab != NULL) | |
323e0a4a | 3351 | printf_unfiltered (_("[%d] %s at %s:%d\n"), |
4c4b4cd2 PH |
3352 | i + first_choice, |
3353 | SYMBOL_PRINT_NAME (syms[i].sym), | |
3354 | symtab->filename, SYMBOL_LINE (syms[i].sym)); | |
76a01679 JB |
3355 | else if (is_enumeral |
3356 | && TYPE_NAME (SYMBOL_TYPE (syms[i].sym)) != NULL) | |
4c4b4cd2 | 3357 | { |
a3f17187 | 3358 | printf_unfiltered (("[%d] "), i + first_choice); |
76a01679 JB |
3359 | ada_print_type (SYMBOL_TYPE (syms[i].sym), NULL, |
3360 | gdb_stdout, -1, 0); | |
323e0a4a | 3361 | printf_unfiltered (_("'(%s) (enumeral)\n"), |
4c4b4cd2 PH |
3362 | SYMBOL_PRINT_NAME (syms[i].sym)); |
3363 | } | |
3364 | else if (symtab != NULL) | |
3365 | printf_unfiltered (is_enumeral | |
323e0a4a AC |
3366 | ? _("[%d] %s in %s (enumeral)\n") |
3367 | : _("[%d] %s at %s:?\n"), | |
4c4b4cd2 PH |
3368 | i + first_choice, |
3369 | SYMBOL_PRINT_NAME (syms[i].sym), | |
3370 | symtab->filename); | |
3371 | else | |
3372 | printf_unfiltered (is_enumeral | |
323e0a4a AC |
3373 | ? _("[%d] %s (enumeral)\n") |
3374 | : _("[%d] %s at ?\n"), | |
4c4b4cd2 PH |
3375 | i + first_choice, |
3376 | SYMBOL_PRINT_NAME (syms[i].sym)); | |
3377 | } | |
14f9c5c9 | 3378 | } |
d2e4a39e | 3379 | |
14f9c5c9 | 3380 | n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1, |
4c4b4cd2 | 3381 | "overload-choice"); |
14f9c5c9 AS |
3382 | |
3383 | for (i = 0; i < n_chosen; i += 1) | |
4c4b4cd2 | 3384 | syms[i] = syms[chosen[i]]; |
14f9c5c9 AS |
3385 | |
3386 | return n_chosen; | |
3387 | } | |
3388 | ||
3389 | /* Read and validate a set of numeric choices from the user in the | |
4c4b4cd2 | 3390 | range 0 .. N_CHOICES-1. Place the results in increasing |
14f9c5c9 AS |
3391 | order in CHOICES[0 .. N-1], and return N. |
3392 | ||
3393 | The user types choices as a sequence of numbers on one line | |
3394 | separated by blanks, encoding them as follows: | |
3395 | ||
4c4b4cd2 | 3396 | + A choice of 0 means to cancel the selection, throwing an error. |
14f9c5c9 AS |
3397 | + If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1. |
3398 | + The user chooses k by typing k+IS_ALL_CHOICE+1. | |
3399 | ||
4c4b4cd2 | 3400 | The user is not allowed to choose more than MAX_RESULTS values. |
14f9c5c9 AS |
3401 | |
3402 | ANNOTATION_SUFFIX, if present, is used to annotate the input | |
4c4b4cd2 | 3403 | prompts (for use with the -f switch). */ |
14f9c5c9 AS |
3404 | |
3405 | int | |
d2e4a39e | 3406 | get_selections (int *choices, int n_choices, int max_results, |
4c4b4cd2 | 3407 | int is_all_choice, char *annotation_suffix) |
14f9c5c9 | 3408 | { |
d2e4a39e | 3409 | char *args; |
0bcd0149 | 3410 | char *prompt; |
14f9c5c9 AS |
3411 | int n_chosen; |
3412 | int first_choice = is_all_choice ? 2 : 1; | |
d2e4a39e | 3413 | |
14f9c5c9 AS |
3414 | prompt = getenv ("PS2"); |
3415 | if (prompt == NULL) | |
0bcd0149 | 3416 | prompt = "> "; |
14f9c5c9 | 3417 | |
0bcd0149 | 3418 | args = command_line_input (prompt, 0, annotation_suffix); |
d2e4a39e | 3419 | |
14f9c5c9 | 3420 | if (args == NULL) |
323e0a4a | 3421 | error_no_arg (_("one or more choice numbers")); |
14f9c5c9 AS |
3422 | |
3423 | n_chosen = 0; | |
76a01679 | 3424 | |
4c4b4cd2 PH |
3425 | /* Set choices[0 .. n_chosen-1] to the users' choices in ascending |
3426 | order, as given in args. Choices are validated. */ | |
14f9c5c9 AS |
3427 | while (1) |
3428 | { | |
d2e4a39e | 3429 | char *args2; |
14f9c5c9 AS |
3430 | int choice, j; |
3431 | ||
3432 | while (isspace (*args)) | |
4c4b4cd2 | 3433 | args += 1; |
14f9c5c9 | 3434 | if (*args == '\0' && n_chosen == 0) |
323e0a4a | 3435 | error_no_arg (_("one or more choice numbers")); |
14f9c5c9 | 3436 | else if (*args == '\0') |
4c4b4cd2 | 3437 | break; |
14f9c5c9 AS |
3438 | |
3439 | choice = strtol (args, &args2, 10); | |
d2e4a39e | 3440 | if (args == args2 || choice < 0 |
4c4b4cd2 | 3441 | || choice > n_choices + first_choice - 1) |
323e0a4a | 3442 | error (_("Argument must be choice number")); |
14f9c5c9 AS |
3443 | args = args2; |
3444 | ||
d2e4a39e | 3445 | if (choice == 0) |
323e0a4a | 3446 | error (_("cancelled")); |
14f9c5c9 AS |
3447 | |
3448 | if (choice < first_choice) | |
4c4b4cd2 PH |
3449 | { |
3450 | n_chosen = n_choices; | |
3451 | for (j = 0; j < n_choices; j += 1) | |
3452 | choices[j] = j; | |
3453 | break; | |
3454 | } | |
14f9c5c9 AS |
3455 | choice -= first_choice; |
3456 | ||
d2e4a39e | 3457 | for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1) |
4c4b4cd2 PH |
3458 | { |
3459 | } | |
14f9c5c9 AS |
3460 | |
3461 | if (j < 0 || choice != choices[j]) | |
4c4b4cd2 PH |
3462 | { |
3463 | int k; | |
3464 | for (k = n_chosen - 1; k > j; k -= 1) | |
3465 | choices[k + 1] = choices[k]; | |
3466 | choices[j + 1] = choice; | |
3467 | n_chosen += 1; | |
3468 | } | |
14f9c5c9 AS |
3469 | } |
3470 | ||
3471 | if (n_chosen > max_results) | |
323e0a4a | 3472 | error (_("Select no more than %d of the above"), max_results); |
d2e4a39e | 3473 | |
14f9c5c9 AS |
3474 | return n_chosen; |
3475 | } | |
3476 | ||
4c4b4cd2 PH |
3477 | /* Replace the operator of length OPLEN at position PC in *EXPP with a call |
3478 | on the function identified by SYM and BLOCK, and taking NARGS | |
3479 | arguments. Update *EXPP as needed to hold more space. */ | |
14f9c5c9 AS |
3480 | |
3481 | static void | |
d2e4a39e | 3482 | replace_operator_with_call (struct expression **expp, int pc, int nargs, |
4c4b4cd2 PH |
3483 | int oplen, struct symbol *sym, |
3484 | struct block *block) | |
14f9c5c9 AS |
3485 | { |
3486 | /* A new expression, with 6 more elements (3 for funcall, 4 for function | |
4c4b4cd2 | 3487 | symbol, -oplen for operator being replaced). */ |
d2e4a39e | 3488 | struct expression *newexp = (struct expression *) |
14f9c5c9 | 3489 | xmalloc (sizeof (struct expression) |
4c4b4cd2 | 3490 | + EXP_ELEM_TO_BYTES ((*expp)->nelts + 7 - oplen)); |
d2e4a39e | 3491 | struct expression *exp = *expp; |
14f9c5c9 AS |
3492 | |
3493 | newexp->nelts = exp->nelts + 7 - oplen; | |
3494 | newexp->language_defn = exp->language_defn; | |
3495 | memcpy (newexp->elts, exp->elts, EXP_ELEM_TO_BYTES (pc)); | |
d2e4a39e | 3496 | memcpy (newexp->elts + pc + 7, exp->elts + pc + oplen, |
4c4b4cd2 | 3497 | EXP_ELEM_TO_BYTES (exp->nelts - pc - oplen)); |
14f9c5c9 AS |
3498 | |
3499 | newexp->elts[pc].opcode = newexp->elts[pc + 2].opcode = OP_FUNCALL; | |
3500 | newexp->elts[pc + 1].longconst = (LONGEST) nargs; | |
3501 | ||
3502 | newexp->elts[pc + 3].opcode = newexp->elts[pc + 6].opcode = OP_VAR_VALUE; | |
3503 | newexp->elts[pc + 4].block = block; | |
3504 | newexp->elts[pc + 5].symbol = sym; | |
3505 | ||
3506 | *expp = newexp; | |
aacb1f0a | 3507 | xfree (exp); |
d2e4a39e | 3508 | } |
14f9c5c9 AS |
3509 | |
3510 | /* Type-class predicates */ | |
3511 | ||
4c4b4cd2 PH |
3512 | /* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type), |
3513 | or FLOAT). */ | |
14f9c5c9 AS |
3514 | |
3515 | static int | |
d2e4a39e | 3516 | numeric_type_p (struct type *type) |
14f9c5c9 AS |
3517 | { |
3518 | if (type == NULL) | |
3519 | return 0; | |
d2e4a39e AS |
3520 | else |
3521 | { | |
3522 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
3523 | { |
3524 | case TYPE_CODE_INT: | |
3525 | case TYPE_CODE_FLT: | |
3526 | return 1; | |
3527 | case TYPE_CODE_RANGE: | |
3528 | return (type == TYPE_TARGET_TYPE (type) | |
3529 | || numeric_type_p (TYPE_TARGET_TYPE (type))); | |
3530 | default: | |
3531 | return 0; | |
3532 | } | |
d2e4a39e | 3533 | } |
14f9c5c9 AS |
3534 | } |
3535 | ||
4c4b4cd2 | 3536 | /* True iff TYPE is integral (an INT or RANGE of INTs). */ |
14f9c5c9 AS |
3537 | |
3538 | static int | |
d2e4a39e | 3539 | integer_type_p (struct type *type) |
14f9c5c9 AS |
3540 | { |
3541 | if (type == NULL) | |
3542 | return 0; | |
d2e4a39e AS |
3543 | else |
3544 | { | |
3545 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
3546 | { |
3547 | case TYPE_CODE_INT: | |
3548 | return 1; | |
3549 | case TYPE_CODE_RANGE: | |
3550 | return (type == TYPE_TARGET_TYPE (type) | |
3551 | || integer_type_p (TYPE_TARGET_TYPE (type))); | |
3552 | default: | |
3553 | return 0; | |
3554 | } | |
d2e4a39e | 3555 | } |
14f9c5c9 AS |
3556 | } |
3557 | ||
4c4b4cd2 | 3558 | /* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */ |
14f9c5c9 AS |
3559 | |
3560 | static int | |
d2e4a39e | 3561 | scalar_type_p (struct type *type) |
14f9c5c9 AS |
3562 | { |
3563 | if (type == NULL) | |
3564 | return 0; | |
d2e4a39e AS |
3565 | else |
3566 | { | |
3567 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
3568 | { |
3569 | case TYPE_CODE_INT: | |
3570 | case TYPE_CODE_RANGE: | |
3571 | case TYPE_CODE_ENUM: | |
3572 | case TYPE_CODE_FLT: | |
3573 | return 1; | |
3574 | default: | |
3575 | return 0; | |
3576 | } | |
d2e4a39e | 3577 | } |
14f9c5c9 AS |
3578 | } |
3579 | ||
4c4b4cd2 | 3580 | /* True iff TYPE is discrete (INT, RANGE, ENUM). */ |
14f9c5c9 AS |
3581 | |
3582 | static int | |
d2e4a39e | 3583 | discrete_type_p (struct type *type) |
14f9c5c9 AS |
3584 | { |
3585 | if (type == NULL) | |
3586 | return 0; | |
d2e4a39e AS |
3587 | else |
3588 | { | |
3589 | switch (TYPE_CODE (type)) | |
4c4b4cd2 PH |
3590 | { |
3591 | case TYPE_CODE_INT: | |
3592 | case TYPE_CODE_RANGE: | |
3593 | case TYPE_CODE_ENUM: | |
3594 | return 1; | |
3595 | default: | |
3596 | return 0; | |
3597 | } | |
d2e4a39e | 3598 | } |
14f9c5c9 AS |
3599 | } |
3600 | ||
4c4b4cd2 PH |
3601 | /* Returns non-zero if OP with operands in the vector ARGS could be |
3602 | a user-defined function. Errs on the side of pre-defined operators | |
3603 | (i.e., result 0). */ | |
14f9c5c9 AS |
3604 | |
3605 | static int | |
d2e4a39e | 3606 | possible_user_operator_p (enum exp_opcode op, struct value *args[]) |
14f9c5c9 | 3607 | { |
76a01679 | 3608 | struct type *type0 = |
df407dfe | 3609 | (args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0])); |
d2e4a39e | 3610 | struct type *type1 = |
df407dfe | 3611 | (args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1])); |
d2e4a39e | 3612 | |
4c4b4cd2 PH |
3613 | if (type0 == NULL) |
3614 | return 0; | |
3615 | ||
14f9c5c9 AS |
3616 | switch (op) |
3617 | { | |
3618 | default: | |
3619 | return 0; | |
3620 | ||
3621 | case BINOP_ADD: | |
3622 | case BINOP_SUB: | |
3623 | case BINOP_MUL: | |
3624 | case BINOP_DIV: | |
d2e4a39e | 3625 | return (!(numeric_type_p (type0) && numeric_type_p (type1))); |
14f9c5c9 AS |
3626 | |
3627 | case BINOP_REM: | |
3628 | case BINOP_MOD: | |
3629 | case BINOP_BITWISE_AND: | |
3630 | case BINOP_BITWISE_IOR: | |
3631 | case BINOP_BITWISE_XOR: | |
d2e4a39e | 3632 | return (!(integer_type_p (type0) && integer_type_p (type1))); |
14f9c5c9 AS |
3633 | |
3634 | case BINOP_EQUAL: | |
3635 | case BINOP_NOTEQUAL: | |
3636 | case BINOP_LESS: | |
3637 | case BINOP_GTR: | |
3638 | case BINOP_LEQ: | |
3639 | case BINOP_GEQ: | |
d2e4a39e | 3640 | return (!(scalar_type_p (type0) && scalar_type_p (type1))); |
14f9c5c9 AS |
3641 | |
3642 | case BINOP_CONCAT: | |
ee90b9ab | 3643 | return !ada_is_array_type (type0) || !ada_is_array_type (type1); |
14f9c5c9 AS |
3644 | |
3645 | case BINOP_EXP: | |
d2e4a39e | 3646 | return (!(numeric_type_p (type0) && integer_type_p (type1))); |
14f9c5c9 AS |
3647 | |
3648 | case UNOP_NEG: | |
3649 | case UNOP_PLUS: | |
3650 | case UNOP_LOGICAL_NOT: | |
d2e4a39e AS |
3651 | case UNOP_ABS: |
3652 | return (!numeric_type_p (type0)); | |
14f9c5c9 AS |
3653 | |
3654 | } | |
3655 | } | |
3656 | \f | |
4c4b4cd2 | 3657 | /* Renaming */ |
14f9c5c9 | 3658 | |
aeb5907d JB |
3659 | /* NOTES: |
3660 | ||
3661 | 1. In the following, we assume that a renaming type's name may | |
3662 | have an ___XD suffix. It would be nice if this went away at some | |
3663 | point. | |
3664 | 2. We handle both the (old) purely type-based representation of | |
3665 | renamings and the (new) variable-based encoding. At some point, | |
3666 | it is devoutly to be hoped that the former goes away | |
3667 | (FIXME: hilfinger-2007-07-09). | |
3668 | 3. Subprogram renamings are not implemented, although the XRS | |
3669 | suffix is recognized (FIXME: hilfinger-2007-07-09). */ | |
3670 | ||
3671 | /* If SYM encodes a renaming, | |
3672 | ||
3673 | <renaming> renames <renamed entity>, | |
3674 | ||
3675 | sets *LEN to the length of the renamed entity's name, | |
3676 | *RENAMED_ENTITY to that name (not null-terminated), and *RENAMING_EXPR to | |
3677 | the string describing the subcomponent selected from the renamed | |
3678 | entity. Returns ADA_NOT_RENAMING if SYM does not encode a renaming | |
3679 | (in which case, the values of *RENAMED_ENTITY, *LEN, and *RENAMING_EXPR | |
3680 | are undefined). Otherwise, returns a value indicating the category | |
3681 | of entity renamed: an object (ADA_OBJECT_RENAMING), exception | |
3682 | (ADA_EXCEPTION_RENAMING), package (ADA_PACKAGE_RENAMING), or | |
3683 | subprogram (ADA_SUBPROGRAM_RENAMING). Does no allocation; the | |
3684 | strings returned in *RENAMED_ENTITY and *RENAMING_EXPR should not be | |
3685 | deallocated. The values of RENAMED_ENTITY, LEN, or RENAMING_EXPR | |
3686 | may be NULL, in which case they are not assigned. | |
3687 | ||
3688 | [Currently, however, GCC does not generate subprogram renamings.] */ | |
3689 | ||
3690 | enum ada_renaming_category | |
3691 | ada_parse_renaming (struct symbol *sym, | |
3692 | const char **renamed_entity, int *len, | |
3693 | const char **renaming_expr) | |
3694 | { | |
3695 | enum ada_renaming_category kind; | |
3696 | const char *info; | |
3697 | const char *suffix; | |
3698 | ||
3699 | if (sym == NULL) | |
3700 | return ADA_NOT_RENAMING; | |
3701 | switch (SYMBOL_CLASS (sym)) | |
14f9c5c9 | 3702 | { |
aeb5907d JB |
3703 | default: |
3704 | return ADA_NOT_RENAMING; | |
3705 | case LOC_TYPEDEF: | |
3706 | return parse_old_style_renaming (SYMBOL_TYPE (sym), | |
3707 | renamed_entity, len, renaming_expr); | |
3708 | case LOC_LOCAL: | |
3709 | case LOC_STATIC: | |
3710 | case LOC_COMPUTED: | |
3711 | case LOC_OPTIMIZED_OUT: | |
3712 | info = strstr (SYMBOL_LINKAGE_NAME (sym), "___XR"); | |
3713 | if (info == NULL) | |
3714 | return ADA_NOT_RENAMING; | |
3715 | switch (info[5]) | |
3716 | { | |
3717 | case '_': | |
3718 | kind = ADA_OBJECT_RENAMING; | |
3719 | info += 6; | |
3720 | break; | |
3721 | case 'E': | |
3722 | kind = ADA_EXCEPTION_RENAMING; | |
3723 | info += 7; | |
3724 | break; | |
3725 | case 'P': | |
3726 | kind = ADA_PACKAGE_RENAMING; | |
3727 | info += 7; | |
3728 | break; | |
3729 | case 'S': | |
3730 | kind = ADA_SUBPROGRAM_RENAMING; | |
3731 | info += 7; | |
3732 | break; | |
3733 | default: | |
3734 | return ADA_NOT_RENAMING; | |
3735 | } | |
14f9c5c9 | 3736 | } |
4c4b4cd2 | 3737 | |
aeb5907d JB |
3738 | if (renamed_entity != NULL) |
3739 | *renamed_entity = info; | |
3740 | suffix = strstr (info, "___XE"); | |
3741 | if (suffix == NULL || suffix == info) | |
3742 | return ADA_NOT_RENAMING; | |
3743 | if (len != NULL) | |
3744 | *len = strlen (info) - strlen (suffix); | |
3745 | suffix += 5; | |
3746 | if (renaming_expr != NULL) | |
3747 | *renaming_expr = suffix; | |
3748 | return kind; | |
3749 | } | |
3750 | ||
3751 | /* Assuming TYPE encodes a renaming according to the old encoding in | |
3752 | exp_dbug.ads, returns details of that renaming in *RENAMED_ENTITY, | |
3753 | *LEN, and *RENAMING_EXPR, as for ada_parse_renaming, above. Returns | |
3754 | ADA_NOT_RENAMING otherwise. */ | |
3755 | static enum ada_renaming_category | |
3756 | parse_old_style_renaming (struct type *type, | |
3757 | const char **renamed_entity, int *len, | |
3758 | const char **renaming_expr) | |
3759 | { | |
3760 | enum ada_renaming_category kind; | |
3761 | const char *name; | |
3762 | const char *info; | |
3763 | const char *suffix; | |
14f9c5c9 | 3764 | |
aeb5907d JB |
3765 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM |
3766 | || TYPE_NFIELDS (type) != 1) | |
3767 | return ADA_NOT_RENAMING; | |
14f9c5c9 | 3768 | |
aeb5907d JB |
3769 | name = type_name_no_tag (type); |
3770 | if (name == NULL) | |
3771 | return ADA_NOT_RENAMING; | |
3772 | ||
3773 | name = strstr (name, "___XR"); | |
3774 | if (name == NULL) | |
3775 | return ADA_NOT_RENAMING; | |
3776 | switch (name[5]) | |
3777 | { | |
3778 | case '\0': | |
3779 | case '_': | |
3780 | kind = ADA_OBJECT_RENAMING; | |
3781 | break; | |
3782 | case 'E': | |
3783 | kind = ADA_EXCEPTION_RENAMING; | |
3784 | break; | |
3785 | case 'P': | |
3786 | kind = ADA_PACKAGE_RENAMING; | |
3787 | break; | |
3788 | case 'S': | |
3789 | kind = ADA_SUBPROGRAM_RENAMING; | |
3790 | break; | |
3791 | default: | |
3792 | return ADA_NOT_RENAMING; | |
3793 | } | |
14f9c5c9 | 3794 | |
aeb5907d JB |
3795 | info = TYPE_FIELD_NAME (type, 0); |
3796 | if (info == NULL) | |
3797 | return ADA_NOT_RENAMING; | |
3798 | if (renamed_entity != NULL) | |
3799 | *renamed_entity = info; | |
3800 | suffix = strstr (info, "___XE"); | |
3801 | if (renaming_expr != NULL) | |
3802 | *renaming_expr = suffix + 5; | |
3803 | if (suffix == NULL || suffix == info) | |
3804 | return ADA_NOT_RENAMING; | |
3805 | if (len != NULL) | |
3806 | *len = suffix - info; | |
3807 | return kind; | |
3808 | } | |
52ce6436 | 3809 | |
14f9c5c9 | 3810 | \f |
d2e4a39e | 3811 | |
4c4b4cd2 | 3812 | /* Evaluation: Function Calls */ |
14f9c5c9 | 3813 | |
4c4b4cd2 PH |
3814 | /* Return an lvalue containing the value VAL. This is the identity on |
3815 | lvalues, and otherwise has the side-effect of pushing a copy of VAL | |
3816 | on the stack, using and updating *SP as the stack pointer, and | |
3817 | returning an lvalue whose VALUE_ADDRESS points to the copy. */ | |
14f9c5c9 | 3818 | |
d2e4a39e | 3819 | static struct value * |
4c4b4cd2 | 3820 | ensure_lval (struct value *val, CORE_ADDR *sp) |
14f9c5c9 | 3821 | { |
c3e5cd34 PH |
3822 | if (! VALUE_LVAL (val)) |
3823 | { | |
df407dfe | 3824 | int len = TYPE_LENGTH (ada_check_typedef (value_type (val))); |
c3e5cd34 PH |
3825 | |
3826 | /* The following is taken from the structure-return code in | |
3827 | call_function_by_hand. FIXME: Therefore, some refactoring seems | |
3828 | indicated. */ | |
4d1e7dd1 | 3829 | if (gdbarch_inner_than (current_gdbarch, 1, 2)) |
c3e5cd34 PH |
3830 | { |
3831 | /* Stack grows downward. Align SP and VALUE_ADDRESS (val) after | |
3832 | reserving sufficient space. */ | |
3833 | *sp -= len; | |
3834 | if (gdbarch_frame_align_p (current_gdbarch)) | |
3835 | *sp = gdbarch_frame_align (current_gdbarch, *sp); | |
3836 | VALUE_ADDRESS (val) = *sp; | |
3837 | } | |
3838 | else | |
3839 | { | |
3840 | /* Stack grows upward. Align the frame, allocate space, and | |
3841 | then again, re-align the frame. */ | |
3842 | if (gdbarch_frame_align_p (current_gdbarch)) | |
3843 | *sp = gdbarch_frame_align (current_gdbarch, *sp); | |
3844 | VALUE_ADDRESS (val) = *sp; | |
3845 | *sp += len; | |
3846 | if (gdbarch_frame_align_p (current_gdbarch)) | |
3847 | *sp = gdbarch_frame_align (current_gdbarch, *sp); | |
3848 | } | |
a84a8a0d | 3849 | VALUE_LVAL (val) = lval_memory; |
14f9c5c9 | 3850 | |
990a07ab | 3851 | write_memory (VALUE_ADDRESS (val), value_contents_raw (val), len); |
c3e5cd34 | 3852 | } |
14f9c5c9 AS |
3853 | |
3854 | return val; | |
3855 | } | |
3856 | ||
3857 | /* Return the value ACTUAL, converted to be an appropriate value for a | |
3858 | formal of type FORMAL_TYPE. Use *SP as a stack pointer for | |
3859 | allocating any necessary descriptors (fat pointers), or copies of | |
4c4b4cd2 | 3860 | values not residing in memory, updating it as needed. */ |
14f9c5c9 | 3861 | |
a93c0eb6 JB |
3862 | struct value * |
3863 | ada_convert_actual (struct value *actual, struct type *formal_type0, | |
3864 | CORE_ADDR *sp) | |
14f9c5c9 | 3865 | { |
df407dfe | 3866 | struct type *actual_type = ada_check_typedef (value_type (actual)); |
61ee279c | 3867 | struct type *formal_type = ada_check_typedef (formal_type0); |
d2e4a39e AS |
3868 | struct type *formal_target = |
3869 | TYPE_CODE (formal_type) == TYPE_CODE_PTR | |
61ee279c | 3870 | ? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type; |
d2e4a39e AS |
3871 | struct type *actual_target = |
3872 | TYPE_CODE (actual_type) == TYPE_CODE_PTR | |
61ee279c | 3873 | ? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type; |
14f9c5c9 | 3874 | |
4c4b4cd2 | 3875 | if (ada_is_array_descriptor_type (formal_target) |
14f9c5c9 AS |
3876 | && TYPE_CODE (actual_target) == TYPE_CODE_ARRAY) |
3877 | return make_array_descriptor (formal_type, actual, sp); | |
a84a8a0d JB |
3878 | else if (TYPE_CODE (formal_type) == TYPE_CODE_PTR |
3879 | || TYPE_CODE (formal_type) == TYPE_CODE_REF) | |
14f9c5c9 | 3880 | { |
a84a8a0d | 3881 | struct value *result; |
14f9c5c9 | 3882 | if (TYPE_CODE (formal_target) == TYPE_CODE_ARRAY |
4c4b4cd2 | 3883 | && ada_is_array_descriptor_type (actual_target)) |
a84a8a0d | 3884 | result = desc_data (actual); |
14f9c5c9 | 3885 | else if (TYPE_CODE (actual_type) != TYPE_CODE_PTR) |
4c4b4cd2 PH |
3886 | { |
3887 | if (VALUE_LVAL (actual) != lval_memory) | |
3888 | { | |
3889 | struct value *val; | |
df407dfe | 3890 | actual_type = ada_check_typedef (value_type (actual)); |
4c4b4cd2 | 3891 | val = allocate_value (actual_type); |
990a07ab | 3892 | memcpy ((char *) value_contents_raw (val), |
0fd88904 | 3893 | (char *) value_contents (actual), |
4c4b4cd2 PH |
3894 | TYPE_LENGTH (actual_type)); |
3895 | actual = ensure_lval (val, sp); | |
3896 | } | |
a84a8a0d | 3897 | result = value_addr (actual); |
4c4b4cd2 | 3898 | } |
a84a8a0d JB |
3899 | else |
3900 | return actual; | |
3901 | return value_cast_pointers (formal_type, result); | |
14f9c5c9 AS |
3902 | } |
3903 | else if (TYPE_CODE (actual_type) == TYPE_CODE_PTR) | |
3904 | return ada_value_ind (actual); | |
3905 | ||
3906 | return actual; | |
3907 | } | |
3908 | ||
3909 | ||
4c4b4cd2 PH |
3910 | /* Push a descriptor of type TYPE for array value ARR on the stack at |
3911 | *SP, updating *SP to reflect the new descriptor. Return either | |
14f9c5c9 | 3912 | an lvalue representing the new descriptor, or (if TYPE is a pointer- |
4c4b4cd2 PH |
3913 | to-descriptor type rather than a descriptor type), a struct value * |
3914 | representing a pointer to this descriptor. */ | |
14f9c5c9 | 3915 | |
d2e4a39e AS |
3916 | static struct value * |
3917 | make_array_descriptor (struct type *type, struct value *arr, CORE_ADDR *sp) | |
14f9c5c9 | 3918 | { |
d2e4a39e AS |
3919 | struct type *bounds_type = desc_bounds_type (type); |
3920 | struct type *desc_type = desc_base_type (type); | |
3921 | struct value *descriptor = allocate_value (desc_type); | |
3922 | struct value *bounds = allocate_value (bounds_type); | |
14f9c5c9 | 3923 | int i; |
d2e4a39e | 3924 | |
df407dfe | 3925 | for (i = ada_array_arity (ada_check_typedef (value_type (arr))); i > 0; i -= 1) |
14f9c5c9 | 3926 | { |
0fd88904 | 3927 | modify_general_field (value_contents_writeable (bounds), |
4c4b4cd2 PH |
3928 | value_as_long (ada_array_bound (arr, i, 0)), |
3929 | desc_bound_bitpos (bounds_type, i, 0), | |
3930 | desc_bound_bitsize (bounds_type, i, 0)); | |
0fd88904 | 3931 | modify_general_field (value_contents_writeable (bounds), |
4c4b4cd2 PH |
3932 | value_as_long (ada_array_bound (arr, i, 1)), |
3933 | desc_bound_bitpos (bounds_type, i, 1), | |
3934 | desc_bound_bitsize (bounds_type, i, 1)); | |
14f9c5c9 | 3935 | } |
d2e4a39e | 3936 | |
4c4b4cd2 | 3937 | bounds = ensure_lval (bounds, sp); |
d2e4a39e | 3938 | |
0fd88904 | 3939 | modify_general_field (value_contents_writeable (descriptor), |
76a01679 JB |
3940 | VALUE_ADDRESS (ensure_lval (arr, sp)), |
3941 | fat_pntr_data_bitpos (desc_type), | |
3942 | fat_pntr_data_bitsize (desc_type)); | |
4c4b4cd2 | 3943 | |
0fd88904 | 3944 | modify_general_field (value_contents_writeable (descriptor), |
4c4b4cd2 PH |
3945 | VALUE_ADDRESS (bounds), |
3946 | fat_pntr_bounds_bitpos (desc_type), | |
3947 | fat_pntr_bounds_bitsize (desc_type)); | |
14f9c5c9 | 3948 | |
4c4b4cd2 | 3949 | descriptor = ensure_lval (descriptor, sp); |
14f9c5c9 AS |
3950 | |
3951 | if (TYPE_CODE (type) == TYPE_CODE_PTR) | |
3952 | return value_addr (descriptor); | |
3953 | else | |
3954 | return descriptor; | |
3955 | } | |
14f9c5c9 | 3956 | \f |
963a6417 PH |
3957 | /* Dummy definitions for an experimental caching module that is not |
3958 | * used in the public sources. */ | |
96d887e8 | 3959 | |
96d887e8 PH |
3960 | static int |
3961 | lookup_cached_symbol (const char *name, domain_enum namespace, | |
2570f2b7 | 3962 | struct symbol **sym, struct block **block) |
96d887e8 PH |
3963 | { |
3964 | return 0; | |
3965 | } | |
3966 | ||
3967 | static void | |
3968 | cache_symbol (const char *name, domain_enum namespace, struct symbol *sym, | |
2570f2b7 | 3969 | struct block *block) |
96d887e8 PH |
3970 | { |
3971 | } | |
4c4b4cd2 PH |
3972 | \f |
3973 | /* Symbol Lookup */ | |
3974 | ||
3975 | /* Return the result of a standard (literal, C-like) lookup of NAME in | |
3976 | given DOMAIN, visible from lexical block BLOCK. */ | |
3977 | ||
3978 | static struct symbol * | |
3979 | standard_lookup (const char *name, const struct block *block, | |
3980 | domain_enum domain) | |
3981 | { | |
3982 | struct symbol *sym; | |
4c4b4cd2 | 3983 | |
2570f2b7 | 3984 | if (lookup_cached_symbol (name, domain, &sym, NULL)) |
4c4b4cd2 | 3985 | return sym; |
2570f2b7 UW |
3986 | sym = lookup_symbol_in_language (name, block, domain, language_c, 0); |
3987 | cache_symbol (name, domain, sym, block_found); | |
4c4b4cd2 PH |
3988 | return sym; |
3989 | } | |
3990 | ||
3991 | ||
3992 | /* Non-zero iff there is at least one non-function/non-enumeral symbol | |
3993 | in the symbol fields of SYMS[0..N-1]. We treat enumerals as functions, | |
3994 | since they contend in overloading in the same way. */ | |
3995 | static int | |
3996 | is_nonfunction (struct ada_symbol_info syms[], int n) | |
3997 | { | |
3998 | int i; | |
3999 | ||
4000 | for (i = 0; i < n; i += 1) | |
4001 | if (TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) != TYPE_CODE_FUNC | |
4002 | && (TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) != TYPE_CODE_ENUM | |
4003 | || SYMBOL_CLASS (syms[i].sym) != LOC_CONST)) | |
14f9c5c9 AS |
4004 | return 1; |
4005 | ||
4006 | return 0; | |
4007 | } | |
4008 | ||
4009 | /* If true (non-zero), then TYPE0 and TYPE1 represent equivalent | |
4c4b4cd2 | 4010 | struct types. Otherwise, they may not. */ |
14f9c5c9 AS |
4011 | |
4012 | static int | |
d2e4a39e | 4013 | equiv_types (struct type *type0, struct type *type1) |
14f9c5c9 | 4014 | { |
d2e4a39e | 4015 | if (type0 == type1) |
14f9c5c9 | 4016 | return 1; |
d2e4a39e | 4017 | if (type0 == NULL || type1 == NULL |
14f9c5c9 AS |
4018 | || TYPE_CODE (type0) != TYPE_CODE (type1)) |
4019 | return 0; | |
d2e4a39e | 4020 | if ((TYPE_CODE (type0) == TYPE_CODE_STRUCT |
14f9c5c9 AS |
4021 | || TYPE_CODE (type0) == TYPE_CODE_ENUM) |
4022 | && ada_type_name (type0) != NULL && ada_type_name (type1) != NULL | |
4c4b4cd2 | 4023 | && strcmp (ada_type_name (type0), ada_type_name (type1)) == 0) |
14f9c5c9 | 4024 | return 1; |
d2e4a39e | 4025 | |
14f9c5c9 AS |
4026 | return 0; |
4027 | } | |
4028 | ||
4029 | /* True iff SYM0 represents the same entity as SYM1, or one that is | |
4c4b4cd2 | 4030 | no more defined than that of SYM1. */ |
14f9c5c9 AS |
4031 | |
4032 | static int | |
d2e4a39e | 4033 | lesseq_defined_than (struct symbol *sym0, struct symbol *sym1) |
14f9c5c9 AS |
4034 | { |
4035 | if (sym0 == sym1) | |
4036 | return 1; | |
176620f1 | 4037 | if (SYMBOL_DOMAIN (sym0) != SYMBOL_DOMAIN (sym1) |
14f9c5c9 AS |
4038 | || SYMBOL_CLASS (sym0) != SYMBOL_CLASS (sym1)) |
4039 | return 0; | |
4040 | ||
d2e4a39e | 4041 | switch (SYMBOL_CLASS (sym0)) |
14f9c5c9 AS |
4042 | { |
4043 | case LOC_UNDEF: | |
4044 | return 1; | |
4045 | case LOC_TYPEDEF: | |
4046 | { | |
4c4b4cd2 PH |
4047 | struct type *type0 = SYMBOL_TYPE (sym0); |
4048 | struct type *type1 = SYMBOL_TYPE (sym1); | |
4049 | char *name0 = SYMBOL_LINKAGE_NAME (sym0); | |
4050 | char *name1 = SYMBOL_LINKAGE_NAME (sym1); | |
4051 | int len0 = strlen (name0); | |
4052 | return | |
4053 | TYPE_CODE (type0) == TYPE_CODE (type1) | |
4054 | && (equiv_types (type0, type1) | |
4055 | || (len0 < strlen (name1) && strncmp (name0, name1, len0) == 0 | |
4056 | && strncmp (name1 + len0, "___XV", 5) == 0)); | |
14f9c5c9 AS |
4057 | } |
4058 | case LOC_CONST: | |
4059 | return SYMBOL_VALUE (sym0) == SYMBOL_VALUE (sym1) | |
4c4b4cd2 | 4060 | && equiv_types (SYMBOL_TYPE (sym0), SYMBOL_TYPE (sym1)); |
d2e4a39e AS |
4061 | default: |
4062 | return 0; | |
14f9c5c9 AS |
4063 | } |
4064 | } | |
4065 | ||
4c4b4cd2 PH |
4066 | /* Append (SYM,BLOCK,SYMTAB) to the end of the array of struct ada_symbol_info |
4067 | records in OBSTACKP. Do nothing if SYM is a duplicate. */ | |
14f9c5c9 AS |
4068 | |
4069 | static void | |
76a01679 JB |
4070 | add_defn_to_vec (struct obstack *obstackp, |
4071 | struct symbol *sym, | |
2570f2b7 | 4072 | struct block *block) |
14f9c5c9 AS |
4073 | { |
4074 | int i; | |
4075 | size_t tmp; | |
4c4b4cd2 | 4076 | struct ada_symbol_info *prevDefns = defns_collected (obstackp, 0); |
14f9c5c9 | 4077 | |
529cad9c PH |
4078 | /* Do not try to complete stub types, as the debugger is probably |
4079 | already scanning all symbols matching a certain name at the | |
4080 | time when this function is called. Trying to replace the stub | |
4081 | type by its associated full type will cause us to restart a scan | |
4082 | which may lead to an infinite recursion. Instead, the client | |
4083 | collecting the matching symbols will end up collecting several | |
4084 | matches, with at least one of them complete. It can then filter | |
4085 | out the stub ones if needed. */ | |
4086 | ||
4c4b4cd2 PH |
4087 | for (i = num_defns_collected (obstackp) - 1; i >= 0; i -= 1) |
4088 | { | |
4089 | if (lesseq_defined_than (sym, prevDefns[i].sym)) | |
4090 | return; | |
4091 | else if (lesseq_defined_than (prevDefns[i].sym, sym)) | |
4092 | { | |
4093 | prevDefns[i].sym = sym; | |
4094 | prevDefns[i].block = block; | |
4c4b4cd2 | 4095 | return; |
76a01679 | 4096 | } |
4c4b4cd2 PH |
4097 | } |
4098 | ||
4099 | { | |
4100 | struct ada_symbol_info info; | |
4101 | ||
4102 | info.sym = sym; | |
4103 | info.block = block; | |
4c4b4cd2 PH |
4104 | obstack_grow (obstackp, &info, sizeof (struct ada_symbol_info)); |
4105 | } | |
4106 | } | |
4107 | ||
4108 | /* Number of ada_symbol_info structures currently collected in | |
4109 | current vector in *OBSTACKP. */ | |
4110 | ||
76a01679 JB |
4111 | static int |
4112 | num_defns_collected (struct obstack *obstackp) | |
4c4b4cd2 PH |
4113 | { |
4114 | return obstack_object_size (obstackp) / sizeof (struct ada_symbol_info); | |
4115 | } | |
4116 | ||
4117 | /* Vector of ada_symbol_info structures currently collected in current | |
4118 | vector in *OBSTACKP. If FINISH, close off the vector and return | |
4119 | its final address. */ | |
4120 | ||
76a01679 | 4121 | static struct ada_symbol_info * |
4c4b4cd2 PH |
4122 | defns_collected (struct obstack *obstackp, int finish) |
4123 | { | |
4124 | if (finish) | |
4125 | return obstack_finish (obstackp); | |
4126 | else | |
4127 | return (struct ada_symbol_info *) obstack_base (obstackp); | |
4128 | } | |
4129 | ||
96d887e8 PH |
4130 | /* Look, in partial_symtab PST, for symbol NAME in given namespace. |
4131 | Check the global symbols if GLOBAL, the static symbols if not. | |
4132 | Do wild-card match if WILD. */ | |
4c4b4cd2 | 4133 | |
96d887e8 PH |
4134 | static struct partial_symbol * |
4135 | ada_lookup_partial_symbol (struct partial_symtab *pst, const char *name, | |
4136 | int global, domain_enum namespace, int wild) | |
4c4b4cd2 | 4137 | { |
96d887e8 PH |
4138 | struct partial_symbol **start; |
4139 | int name_len = strlen (name); | |
4140 | int length = (global ? pst->n_global_syms : pst->n_static_syms); | |
4141 | int i; | |
4c4b4cd2 | 4142 | |
96d887e8 | 4143 | if (length == 0) |
4c4b4cd2 | 4144 | { |
96d887e8 | 4145 | return (NULL); |
4c4b4cd2 PH |
4146 | } |
4147 | ||
96d887e8 PH |
4148 | start = (global ? |
4149 | pst->objfile->global_psymbols.list + pst->globals_offset : | |
4150 | pst->objfile->static_psymbols.list + pst->statics_offset); | |
4c4b4cd2 | 4151 | |
96d887e8 | 4152 | if (wild) |
4c4b4cd2 | 4153 | { |
96d887e8 PH |
4154 | for (i = 0; i < length; i += 1) |
4155 | { | |
4156 | struct partial_symbol *psym = start[i]; | |
4c4b4cd2 | 4157 | |
5eeb2539 AR |
4158 | if (symbol_matches_domain (SYMBOL_LANGUAGE (psym), |
4159 | SYMBOL_DOMAIN (psym), namespace) | |
1265e4aa | 4160 | && wild_match (name, name_len, SYMBOL_LINKAGE_NAME (psym))) |
96d887e8 PH |
4161 | return psym; |
4162 | } | |
4163 | return NULL; | |
4c4b4cd2 | 4164 | } |
96d887e8 PH |
4165 | else |
4166 | { | |
4167 | if (global) | |
4168 | { | |
4169 | int U; | |
4170 | i = 0; | |
4171 | U = length - 1; | |
4172 | while (U - i > 4) | |
4173 | { | |
4174 | int M = (U + i) >> 1; | |
4175 | struct partial_symbol *psym = start[M]; | |
4176 | if (SYMBOL_LINKAGE_NAME (psym)[0] < name[0]) | |
4177 | i = M + 1; | |
4178 | else if (SYMBOL_LINKAGE_NAME (psym)[0] > name[0]) | |
4179 | U = M - 1; | |
4180 | else if (strcmp (SYMBOL_LINKAGE_NAME (psym), name) < 0) | |
4181 | i = M + 1; | |
4182 | else | |
4183 | U = M; | |
4184 | } | |
4185 | } | |
4186 | else | |
4187 | i = 0; | |
4c4b4cd2 | 4188 | |
96d887e8 PH |
4189 | while (i < length) |
4190 | { | |
4191 | struct partial_symbol *psym = start[i]; | |
4c4b4cd2 | 4192 | |
5eeb2539 AR |
4193 | if (symbol_matches_domain (SYMBOL_LANGUAGE (psym), |
4194 | SYMBOL_DOMAIN (psym), namespace)) | |
96d887e8 PH |
4195 | { |
4196 | int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym), name_len); | |
4c4b4cd2 | 4197 | |
96d887e8 PH |
4198 | if (cmp < 0) |
4199 | { | |
4200 | if (global) | |
4201 | break; | |
4202 | } | |
4203 | else if (cmp == 0 | |
4204 | && is_name_suffix (SYMBOL_LINKAGE_NAME (psym) | |
76a01679 | 4205 | + name_len)) |
96d887e8 PH |
4206 | return psym; |
4207 | } | |
4208 | i += 1; | |
4209 | } | |
4c4b4cd2 | 4210 | |
96d887e8 PH |
4211 | if (global) |
4212 | { | |
4213 | int U; | |
4214 | i = 0; | |
4215 | U = length - 1; | |
4216 | while (U - i > 4) | |
4217 | { | |
4218 | int M = (U + i) >> 1; | |
4219 | struct partial_symbol *psym = start[M]; | |
4220 | if (SYMBOL_LINKAGE_NAME (psym)[0] < '_') | |
4221 | i = M + 1; | |
4222 | else if (SYMBOL_LINKAGE_NAME (psym)[0] > '_') | |
4223 | U = M - 1; | |
4224 | else if (strcmp (SYMBOL_LINKAGE_NAME (psym), "_ada_") < 0) | |
4225 | i = M + 1; | |
4226 | else | |
4227 | U = M; | |
4228 | } | |
4229 | } | |
4230 | else | |
4231 | i = 0; | |
4c4b4cd2 | 4232 | |
96d887e8 PH |
4233 | while (i < length) |
4234 | { | |
4235 | struct partial_symbol *psym = start[i]; | |
4c4b4cd2 | 4236 | |
5eeb2539 AR |
4237 | if (symbol_matches_domain (SYMBOL_LANGUAGE (psym), |
4238 | SYMBOL_DOMAIN (psym), namespace)) | |
96d887e8 PH |
4239 | { |
4240 | int cmp; | |
4c4b4cd2 | 4241 | |
96d887e8 PH |
4242 | cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (psym)[0]; |
4243 | if (cmp == 0) | |
4244 | { | |
4245 | cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (psym), 5); | |
4246 | if (cmp == 0) | |
4247 | cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym) + 5, | |
76a01679 | 4248 | name_len); |
96d887e8 | 4249 | } |
4c4b4cd2 | 4250 | |
96d887e8 PH |
4251 | if (cmp < 0) |
4252 | { | |
4253 | if (global) | |
4254 | break; | |
4255 | } | |
4256 | else if (cmp == 0 | |
4257 | && is_name_suffix (SYMBOL_LINKAGE_NAME (psym) | |
76a01679 | 4258 | + name_len + 5)) |
96d887e8 PH |
4259 | return psym; |
4260 | } | |
4261 | i += 1; | |
4262 | } | |
4263 | } | |
4264 | return NULL; | |
4c4b4cd2 PH |
4265 | } |
4266 | ||
96d887e8 | 4267 | /* Find a symbol table containing symbol SYM or NULL if none. */ |
4c4b4cd2 | 4268 | |
96d887e8 PH |
4269 | static struct symtab * |
4270 | symtab_for_sym (struct symbol *sym) | |
4c4b4cd2 | 4271 | { |
96d887e8 PH |
4272 | struct symtab *s; |
4273 | struct objfile *objfile; | |
4274 | struct block *b; | |
4275 | struct symbol *tmp_sym; | |
4276 | struct dict_iterator iter; | |
4277 | int j; | |
4c4b4cd2 | 4278 | |
11309657 | 4279 | ALL_PRIMARY_SYMTABS (objfile, s) |
96d887e8 PH |
4280 | { |
4281 | switch (SYMBOL_CLASS (sym)) | |
4282 | { | |
4283 | case LOC_CONST: | |
4284 | case LOC_STATIC: | |
4285 | case LOC_TYPEDEF: | |
4286 | case LOC_REGISTER: | |
4287 | case LOC_LABEL: | |
4288 | case LOC_BLOCK: | |
4289 | case LOC_CONST_BYTES: | |
76a01679 JB |
4290 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK); |
4291 | ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym) | |
4292 | return s; | |
4293 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK); | |
4294 | ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym) | |
4295 | return s; | |
96d887e8 PH |
4296 | break; |
4297 | default: | |
4298 | break; | |
4299 | } | |
4300 | switch (SYMBOL_CLASS (sym)) | |
4301 | { | |
4302 | case LOC_REGISTER: | |
4303 | case LOC_ARG: | |
4304 | case LOC_REF_ARG: | |
96d887e8 PH |
4305 | case LOC_REGPARM_ADDR: |
4306 | case LOC_LOCAL: | |
4307 | case LOC_TYPEDEF: | |
96d887e8 | 4308 | case LOC_COMPUTED: |
76a01679 JB |
4309 | for (j = FIRST_LOCAL_BLOCK; |
4310 | j < BLOCKVECTOR_NBLOCKS (BLOCKVECTOR (s)); j += 1) | |
4311 | { | |
4312 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), j); | |
4313 | ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym) | |
4314 | return s; | |
4315 | } | |
4316 | break; | |
96d887e8 PH |
4317 | default: |
4318 | break; | |
4319 | } | |
4320 | } | |
4321 | return NULL; | |
4c4b4cd2 PH |
4322 | } |
4323 | ||
96d887e8 PH |
4324 | /* Return a minimal symbol matching NAME according to Ada decoding |
4325 | rules. Returns NULL if there is no such minimal symbol. Names | |
4326 | prefixed with "standard__" are handled specially: "standard__" is | |
4327 | first stripped off, and only static and global symbols are searched. */ | |
4c4b4cd2 | 4328 | |
96d887e8 PH |
4329 | struct minimal_symbol * |
4330 | ada_lookup_simple_minsym (const char *name) | |
4c4b4cd2 | 4331 | { |
4c4b4cd2 | 4332 | struct objfile *objfile; |
96d887e8 PH |
4333 | struct minimal_symbol *msymbol; |
4334 | int wild_match; | |
4c4b4cd2 | 4335 | |
96d887e8 | 4336 | if (strncmp (name, "standard__", sizeof ("standard__") - 1) == 0) |
4c4b4cd2 | 4337 | { |
96d887e8 | 4338 | name += sizeof ("standard__") - 1; |
4c4b4cd2 | 4339 | wild_match = 0; |
4c4b4cd2 PH |
4340 | } |
4341 | else | |
96d887e8 | 4342 | wild_match = (strstr (name, "__") == NULL); |
4c4b4cd2 | 4343 | |
96d887e8 PH |
4344 | ALL_MSYMBOLS (objfile, msymbol) |
4345 | { | |
4346 | if (ada_match_name (SYMBOL_LINKAGE_NAME (msymbol), name, wild_match) | |
4347 | && MSYMBOL_TYPE (msymbol) != mst_solib_trampoline) | |
4348 | return msymbol; | |
4349 | } | |
4c4b4cd2 | 4350 | |
96d887e8 PH |
4351 | return NULL; |
4352 | } | |
4c4b4cd2 | 4353 | |
96d887e8 PH |
4354 | /* For all subprograms that statically enclose the subprogram of the |
4355 | selected frame, add symbols matching identifier NAME in DOMAIN | |
4356 | and their blocks to the list of data in OBSTACKP, as for | |
4357 | ada_add_block_symbols (q.v.). If WILD, treat as NAME with a | |
4358 | wildcard prefix. */ | |
4c4b4cd2 | 4359 | |
96d887e8 PH |
4360 | static void |
4361 | add_symbols_from_enclosing_procs (struct obstack *obstackp, | |
76a01679 | 4362 | const char *name, domain_enum namespace, |
96d887e8 PH |
4363 | int wild_match) |
4364 | { | |
96d887e8 | 4365 | } |
14f9c5c9 | 4366 | |
96d887e8 PH |
4367 | /* True if TYPE is definitely an artificial type supplied to a symbol |
4368 | for which no debugging information was given in the symbol file. */ | |
14f9c5c9 | 4369 | |
96d887e8 PH |
4370 | static int |
4371 | is_nondebugging_type (struct type *type) | |
4372 | { | |
4373 | char *name = ada_type_name (type); | |
4374 | return (name != NULL && strcmp (name, "<variable, no debug info>") == 0); | |
4375 | } | |
4c4b4cd2 | 4376 | |
96d887e8 PH |
4377 | /* Remove any non-debugging symbols in SYMS[0 .. NSYMS-1] that definitely |
4378 | duplicate other symbols in the list (The only case I know of where | |
4379 | this happens is when object files containing stabs-in-ecoff are | |
4380 | linked with files containing ordinary ecoff debugging symbols (or no | |
4381 | debugging symbols)). Modifies SYMS to squeeze out deleted entries. | |
4382 | Returns the number of items in the modified list. */ | |
4c4b4cd2 | 4383 | |
96d887e8 PH |
4384 | static int |
4385 | remove_extra_symbols (struct ada_symbol_info *syms, int nsyms) | |
4386 | { | |
4387 | int i, j; | |
4c4b4cd2 | 4388 | |
96d887e8 PH |
4389 | i = 0; |
4390 | while (i < nsyms) | |
4391 | { | |
339c13b6 JB |
4392 | int remove = 0; |
4393 | ||
4394 | /* If two symbols have the same name and one of them is a stub type, | |
4395 | the get rid of the stub. */ | |
4396 | ||
4397 | if (TYPE_STUB (SYMBOL_TYPE (syms[i].sym)) | |
4398 | && SYMBOL_LINKAGE_NAME (syms[i].sym) != NULL) | |
4399 | { | |
4400 | for (j = 0; j < nsyms; j++) | |
4401 | { | |
4402 | if (j != i | |
4403 | && !TYPE_STUB (SYMBOL_TYPE (syms[j].sym)) | |
4404 | && SYMBOL_LINKAGE_NAME (syms[j].sym) != NULL | |
4405 | && strcmp (SYMBOL_LINKAGE_NAME (syms[i].sym), | |
4406 | SYMBOL_LINKAGE_NAME (syms[j].sym)) == 0) | |
4407 | remove = 1; | |
4408 | } | |
4409 | } | |
4410 | ||
4411 | /* Two symbols with the same name, same class and same address | |
4412 | should be identical. */ | |
4413 | ||
4414 | else if (SYMBOL_LINKAGE_NAME (syms[i].sym) != NULL | |
96d887e8 PH |
4415 | && SYMBOL_CLASS (syms[i].sym) == LOC_STATIC |
4416 | && is_nondebugging_type (SYMBOL_TYPE (syms[i].sym))) | |
4417 | { | |
4418 | for (j = 0; j < nsyms; j += 1) | |
4419 | { | |
4420 | if (i != j | |
4421 | && SYMBOL_LINKAGE_NAME (syms[j].sym) != NULL | |
4422 | && strcmp (SYMBOL_LINKAGE_NAME (syms[i].sym), | |
76a01679 | 4423 | SYMBOL_LINKAGE_NAME (syms[j].sym)) == 0 |
96d887e8 PH |
4424 | && SYMBOL_CLASS (syms[i].sym) == SYMBOL_CLASS (syms[j].sym) |
4425 | && SYMBOL_VALUE_ADDRESS (syms[i].sym) | |
4426 | == SYMBOL_VALUE_ADDRESS (syms[j].sym)) | |
339c13b6 | 4427 | remove = 1; |
4c4b4cd2 | 4428 | } |
4c4b4cd2 | 4429 | } |
339c13b6 JB |
4430 | |
4431 | if (remove) | |
4432 | { | |
4433 | for (j = i + 1; j < nsyms; j += 1) | |
4434 | syms[j - 1] = syms[j]; | |
4435 | nsyms -= 1; | |
4436 | } | |
4437 | ||
96d887e8 | 4438 | i += 1; |
14f9c5c9 | 4439 | } |
96d887e8 | 4440 | return nsyms; |
14f9c5c9 AS |
4441 | } |
4442 | ||
96d887e8 PH |
4443 | /* Given a type that corresponds to a renaming entity, use the type name |
4444 | to extract the scope (package name or function name, fully qualified, | |
4445 | and following the GNAT encoding convention) where this renaming has been | |
4446 | defined. The string returned needs to be deallocated after use. */ | |
4c4b4cd2 | 4447 | |
96d887e8 PH |
4448 | static char * |
4449 | xget_renaming_scope (struct type *renaming_type) | |
14f9c5c9 | 4450 | { |
96d887e8 PH |
4451 | /* The renaming types adhere to the following convention: |
4452 | <scope>__<rename>___<XR extension>. | |
4453 | So, to extract the scope, we search for the "___XR" extension, | |
4454 | and then backtrack until we find the first "__". */ | |
76a01679 | 4455 | |
96d887e8 PH |
4456 | const char *name = type_name_no_tag (renaming_type); |
4457 | char *suffix = strstr (name, "___XR"); | |
4458 | char *last; | |
4459 | int scope_len; | |
4460 | char *scope; | |
14f9c5c9 | 4461 | |
96d887e8 PH |
4462 | /* Now, backtrack a bit until we find the first "__". Start looking |
4463 | at suffix - 3, as the <rename> part is at least one character long. */ | |
14f9c5c9 | 4464 | |
96d887e8 PH |
4465 | for (last = suffix - 3; last > name; last--) |
4466 | if (last[0] == '_' && last[1] == '_') | |
4467 | break; | |
76a01679 | 4468 | |
96d887e8 | 4469 | /* Make a copy of scope and return it. */ |
14f9c5c9 | 4470 | |
96d887e8 PH |
4471 | scope_len = last - name; |
4472 | scope = (char *) xmalloc ((scope_len + 1) * sizeof (char)); | |
14f9c5c9 | 4473 | |
96d887e8 PH |
4474 | strncpy (scope, name, scope_len); |
4475 | scope[scope_len] = '\0'; | |
4c4b4cd2 | 4476 | |
96d887e8 | 4477 | return scope; |
4c4b4cd2 PH |
4478 | } |
4479 | ||
96d887e8 | 4480 | /* Return nonzero if NAME corresponds to a package name. */ |
4c4b4cd2 | 4481 | |
96d887e8 PH |
4482 | static int |
4483 | is_package_name (const char *name) | |
4c4b4cd2 | 4484 | { |
96d887e8 PH |
4485 | /* Here, We take advantage of the fact that no symbols are generated |
4486 | for packages, while symbols are generated for each function. | |
4487 | So the condition for NAME represent a package becomes equivalent | |
4488 | to NAME not existing in our list of symbols. There is only one | |
4489 | small complication with library-level functions (see below). */ | |
4c4b4cd2 | 4490 | |
96d887e8 | 4491 | char *fun_name; |
76a01679 | 4492 | |
96d887e8 PH |
4493 | /* If it is a function that has not been defined at library level, |
4494 | then we should be able to look it up in the symbols. */ | |
4495 | if (standard_lookup (name, NULL, VAR_DOMAIN) != NULL) | |
4496 | return 0; | |
14f9c5c9 | 4497 | |
96d887e8 PH |
4498 | /* Library-level function names start with "_ada_". See if function |
4499 | "_ada_" followed by NAME can be found. */ | |
14f9c5c9 | 4500 | |
96d887e8 | 4501 | /* Do a quick check that NAME does not contain "__", since library-level |
e1d5a0d2 | 4502 | functions names cannot contain "__" in them. */ |
96d887e8 PH |
4503 | if (strstr (name, "__") != NULL) |
4504 | return 0; | |
4c4b4cd2 | 4505 | |
b435e160 | 4506 | fun_name = xstrprintf ("_ada_%s", name); |
14f9c5c9 | 4507 | |
96d887e8 PH |
4508 | return (standard_lookup (fun_name, NULL, VAR_DOMAIN) == NULL); |
4509 | } | |
14f9c5c9 | 4510 | |
96d887e8 | 4511 | /* Return nonzero if SYM corresponds to a renaming entity that is |
aeb5907d | 4512 | not visible from FUNCTION_NAME. */ |
14f9c5c9 | 4513 | |
96d887e8 | 4514 | static int |
aeb5907d | 4515 | old_renaming_is_invisible (const struct symbol *sym, char *function_name) |
96d887e8 | 4516 | { |
aeb5907d JB |
4517 | char *scope; |
4518 | ||
4519 | if (SYMBOL_CLASS (sym) != LOC_TYPEDEF) | |
4520 | return 0; | |
4521 | ||
4522 | scope = xget_renaming_scope (SYMBOL_TYPE (sym)); | |
d2e4a39e | 4523 | |
96d887e8 | 4524 | make_cleanup (xfree, scope); |
14f9c5c9 | 4525 | |
96d887e8 PH |
4526 | /* If the rename has been defined in a package, then it is visible. */ |
4527 | if (is_package_name (scope)) | |
aeb5907d | 4528 | return 0; |
14f9c5c9 | 4529 | |
96d887e8 PH |
4530 | /* Check that the rename is in the current function scope by checking |
4531 | that its name starts with SCOPE. */ | |
76a01679 | 4532 | |
96d887e8 PH |
4533 | /* If the function name starts with "_ada_", it means that it is |
4534 | a library-level function. Strip this prefix before doing the | |
4535 | comparison, as the encoding for the renaming does not contain | |
4536 | this prefix. */ | |
4537 | if (strncmp (function_name, "_ada_", 5) == 0) | |
4538 | function_name += 5; | |
f26caa11 | 4539 | |
aeb5907d | 4540 | return (strncmp (function_name, scope, strlen (scope)) != 0); |
f26caa11 PH |
4541 | } |
4542 | ||
aeb5907d JB |
4543 | /* Remove entries from SYMS that corresponds to a renaming entity that |
4544 | is not visible from the function associated with CURRENT_BLOCK or | |
4545 | that is superfluous due to the presence of more specific renaming | |
4546 | information. Places surviving symbols in the initial entries of | |
4547 | SYMS and returns the number of surviving symbols. | |
96d887e8 PH |
4548 | |
4549 | Rationale: | |
aeb5907d JB |
4550 | First, in cases where an object renaming is implemented as a |
4551 | reference variable, GNAT may produce both the actual reference | |
4552 | variable and the renaming encoding. In this case, we discard the | |
4553 | latter. | |
4554 | ||
4555 | Second, GNAT emits a type following a specified encoding for each renaming | |
96d887e8 PH |
4556 | entity. Unfortunately, STABS currently does not support the definition |
4557 | of types that are local to a given lexical block, so all renamings types | |
4558 | are emitted at library level. As a consequence, if an application | |
4559 | contains two renaming entities using the same name, and a user tries to | |
4560 | print the value of one of these entities, the result of the ada symbol | |
4561 | lookup will also contain the wrong renaming type. | |
f26caa11 | 4562 | |
96d887e8 PH |
4563 | This function partially covers for this limitation by attempting to |
4564 | remove from the SYMS list renaming symbols that should be visible | |
4565 | from CURRENT_BLOCK. However, there does not seem be a 100% reliable | |
4566 | method with the current information available. The implementation | |
4567 | below has a couple of limitations (FIXME: brobecker-2003-05-12): | |
4568 | ||
4569 | - When the user tries to print a rename in a function while there | |
4570 | is another rename entity defined in a package: Normally, the | |
4571 | rename in the function has precedence over the rename in the | |
4572 | package, so the latter should be removed from the list. This is | |
4573 | currently not the case. | |
4574 | ||
4575 | - This function will incorrectly remove valid renames if | |
4576 | the CURRENT_BLOCK corresponds to a function which symbol name | |
4577 | has been changed by an "Export" pragma. As a consequence, | |
4578 | the user will be unable to print such rename entities. */ | |
4c4b4cd2 | 4579 | |
14f9c5c9 | 4580 | static int |
aeb5907d JB |
4581 | remove_irrelevant_renamings (struct ada_symbol_info *syms, |
4582 | int nsyms, const struct block *current_block) | |
4c4b4cd2 PH |
4583 | { |
4584 | struct symbol *current_function; | |
4585 | char *current_function_name; | |
4586 | int i; | |
aeb5907d JB |
4587 | int is_new_style_renaming; |
4588 | ||
4589 | /* If there is both a renaming foo___XR... encoded as a variable and | |
4590 | a simple variable foo in the same block, discard the latter. | |
4591 | First, zero out such symbols, then compress. */ | |
4592 | is_new_style_renaming = 0; | |
4593 | for (i = 0; i < nsyms; i += 1) | |
4594 | { | |
4595 | struct symbol *sym = syms[i].sym; | |
4596 | struct block *block = syms[i].block; | |
4597 | const char *name; | |
4598 | const char *suffix; | |
4599 | ||
4600 | if (sym == NULL || SYMBOL_CLASS (sym) == LOC_TYPEDEF) | |
4601 | continue; | |
4602 | name = SYMBOL_LINKAGE_NAME (sym); | |
4603 | suffix = strstr (name, "___XR"); | |
4604 | ||
4605 | if (suffix != NULL) | |
4606 | { | |
4607 | int name_len = suffix - name; | |
4608 | int j; | |
4609 | is_new_style_renaming = 1; | |
4610 | for (j = 0; j < nsyms; j += 1) | |
4611 | if (i != j && syms[j].sym != NULL | |
4612 | && strncmp (name, SYMBOL_LINKAGE_NAME (syms[j].sym), | |
4613 | name_len) == 0 | |
4614 | && block == syms[j].block) | |
4615 | syms[j].sym = NULL; | |
4616 | } | |
4617 | } | |
4618 | if (is_new_style_renaming) | |
4619 | { | |
4620 | int j, k; | |
4621 | ||
4622 | for (j = k = 0; j < nsyms; j += 1) | |
4623 | if (syms[j].sym != NULL) | |
4624 | { | |
4625 | syms[k] = syms[j]; | |
4626 | k += 1; | |
4627 | } | |
4628 | return k; | |
4629 | } | |
4c4b4cd2 PH |
4630 | |
4631 | /* Extract the function name associated to CURRENT_BLOCK. | |
4632 | Abort if unable to do so. */ | |
76a01679 | 4633 | |
4c4b4cd2 PH |
4634 | if (current_block == NULL) |
4635 | return nsyms; | |
76a01679 | 4636 | |
7f0df278 | 4637 | current_function = block_linkage_function (current_block); |
4c4b4cd2 PH |
4638 | if (current_function == NULL) |
4639 | return nsyms; | |
4640 | ||
4641 | current_function_name = SYMBOL_LINKAGE_NAME (current_function); | |
4642 | if (current_function_name == NULL) | |
4643 | return nsyms; | |
4644 | ||
4645 | /* Check each of the symbols, and remove it from the list if it is | |
4646 | a type corresponding to a renaming that is out of the scope of | |
4647 | the current block. */ | |
4648 | ||
4649 | i = 0; | |
4650 | while (i < nsyms) | |
4651 | { | |
aeb5907d JB |
4652 | if (ada_parse_renaming (syms[i].sym, NULL, NULL, NULL) |
4653 | == ADA_OBJECT_RENAMING | |
4654 | && old_renaming_is_invisible (syms[i].sym, current_function_name)) | |
4c4b4cd2 PH |
4655 | { |
4656 | int j; | |
aeb5907d | 4657 | for (j = i + 1; j < nsyms; j += 1) |
76a01679 | 4658 | syms[j - 1] = syms[j]; |
4c4b4cd2 PH |
4659 | nsyms -= 1; |
4660 | } | |
4661 | else | |
4662 | i += 1; | |
4663 | } | |
4664 | ||
4665 | return nsyms; | |
4666 | } | |
4667 | ||
339c13b6 JB |
4668 | /* Add to OBSTACKP all symbols from BLOCK (and its super-blocks) |
4669 | whose name and domain match NAME and DOMAIN respectively. | |
4670 | If no match was found, then extend the search to "enclosing" | |
4671 | routines (in other words, if we're inside a nested function, | |
4672 | search the symbols defined inside the enclosing functions). | |
4673 | ||
4674 | Note: This function assumes that OBSTACKP has 0 (zero) element in it. */ | |
4675 | ||
4676 | static void | |
4677 | ada_add_local_symbols (struct obstack *obstackp, const char *name, | |
4678 | struct block *block, domain_enum domain, | |
4679 | int wild_match) | |
4680 | { | |
4681 | int block_depth = 0; | |
4682 | ||
4683 | while (block != NULL) | |
4684 | { | |
4685 | block_depth += 1; | |
4686 | ada_add_block_symbols (obstackp, block, name, domain, NULL, wild_match); | |
4687 | ||
4688 | /* If we found a non-function match, assume that's the one. */ | |
4689 | if (is_nonfunction (defns_collected (obstackp, 0), | |
4690 | num_defns_collected (obstackp))) | |
4691 | return; | |
4692 | ||
4693 | block = BLOCK_SUPERBLOCK (block); | |
4694 | } | |
4695 | ||
4696 | /* If no luck so far, try to find NAME as a local symbol in some lexically | |
4697 | enclosing subprogram. */ | |
4698 | if (num_defns_collected (obstackp) == 0 && block_depth > 2) | |
4699 | add_symbols_from_enclosing_procs (obstackp, name, domain, wild_match); | |
4700 | } | |
4701 | ||
4702 | /* Add to OBSTACKP all non-local symbols whose name and domain match | |
4703 | NAME and DOMAIN respectively. The search is performed on GLOBAL_BLOCK | |
4704 | symbols if GLOBAL is non-zero, or on STATIC_BLOCK symbols otherwise. */ | |
4705 | ||
4706 | static void | |
4707 | ada_add_non_local_symbols (struct obstack *obstackp, const char *name, | |
4708 | domain_enum domain, int global, | |
4709 | int wild_match) | |
4710 | { | |
4711 | struct objfile *objfile; | |
4712 | struct partial_symtab *ps; | |
4713 | ||
4714 | ALL_PSYMTABS (objfile, ps) | |
4715 | { | |
4716 | QUIT; | |
4717 | if (ps->readin | |
4718 | || ada_lookup_partial_symbol (ps, name, global, domain, wild_match)) | |
4719 | { | |
4720 | struct symtab *s = PSYMTAB_TO_SYMTAB (ps); | |
4721 | const int block_kind = global ? GLOBAL_BLOCK : STATIC_BLOCK; | |
4722 | ||
4723 | if (s == NULL || !s->primary) | |
4724 | continue; | |
4725 | ada_add_block_symbols (obstackp, | |
4726 | BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), block_kind), | |
4727 | name, domain, objfile, wild_match); | |
4728 | } | |
4729 | } | |
4730 | } | |
4731 | ||
4c4b4cd2 PH |
4732 | /* Find symbols in DOMAIN matching NAME0, in BLOCK0 and enclosing |
4733 | scope and in global scopes, returning the number of matches. Sets | |
6c9353d3 | 4734 | *RESULTS to point to a vector of (SYM,BLOCK) tuples, |
4c4b4cd2 PH |
4735 | indicating the symbols found and the blocks and symbol tables (if |
4736 | any) in which they were found. This vector are transient---good only to | |
4737 | the next call of ada_lookup_symbol_list. Any non-function/non-enumeral | |
4738 | symbol match within the nest of blocks whose innermost member is BLOCK0, | |
4739 | is the one match returned (no other matches in that or | |
4740 | enclosing blocks is returned). If there are any matches in or | |
4741 | surrounding BLOCK0, then these alone are returned. Otherwise, the | |
4742 | search extends to global and file-scope (static) symbol tables. | |
4743 | Names prefixed with "standard__" are handled specially: "standard__" | |
4744 | is first stripped off, and only static and global symbols are searched. */ | |
14f9c5c9 AS |
4745 | |
4746 | int | |
4c4b4cd2 | 4747 | ada_lookup_symbol_list (const char *name0, const struct block *block0, |
76a01679 JB |
4748 | domain_enum namespace, |
4749 | struct ada_symbol_info **results) | |
14f9c5c9 AS |
4750 | { |
4751 | struct symbol *sym; | |
14f9c5c9 | 4752 | struct block *block; |
4c4b4cd2 | 4753 | const char *name; |
4c4b4cd2 | 4754 | int wild_match; |
14f9c5c9 | 4755 | int cacheIfUnique; |
4c4b4cd2 | 4756 | int ndefns; |
14f9c5c9 | 4757 | |
4c4b4cd2 PH |
4758 | obstack_free (&symbol_list_obstack, NULL); |
4759 | obstack_init (&symbol_list_obstack); | |
14f9c5c9 | 4760 | |
14f9c5c9 AS |
4761 | cacheIfUnique = 0; |
4762 | ||
4763 | /* Search specified block and its superiors. */ | |
4764 | ||
4c4b4cd2 PH |
4765 | wild_match = (strstr (name0, "__") == NULL); |
4766 | name = name0; | |
76a01679 JB |
4767 | block = (struct block *) block0; /* FIXME: No cast ought to be |
4768 | needed, but adding const will | |
4769 | have a cascade effect. */ | |
339c13b6 JB |
4770 | |
4771 | /* Special case: If the user specifies a symbol name inside package | |
4772 | Standard, do a non-wild matching of the symbol name without | |
4773 | the "standard__" prefix. This was primarily introduced in order | |
4774 | to allow the user to specifically access the standard exceptions | |
4775 | using, for instance, Standard.Constraint_Error when Constraint_Error | |
4776 | is ambiguous (due to the user defining its own Constraint_Error | |
4777 | entity inside its program). */ | |
4c4b4cd2 PH |
4778 | if (strncmp (name0, "standard__", sizeof ("standard__") - 1) == 0) |
4779 | { | |
4780 | wild_match = 0; | |
4781 | block = NULL; | |
4782 | name = name0 + sizeof ("standard__") - 1; | |
4783 | } | |
4784 | ||
339c13b6 | 4785 | /* Check the non-global symbols. If we have ANY match, then we're done. */ |
14f9c5c9 | 4786 | |
339c13b6 JB |
4787 | ada_add_local_symbols (&symbol_list_obstack, name, block, namespace, |
4788 | wild_match); | |
4c4b4cd2 | 4789 | if (num_defns_collected (&symbol_list_obstack) > 0) |
14f9c5c9 | 4790 | goto done; |
d2e4a39e | 4791 | |
339c13b6 JB |
4792 | /* No non-global symbols found. Check our cache to see if we have |
4793 | already performed this search before. If we have, then return | |
4794 | the same result. */ | |
4795 | ||
14f9c5c9 | 4796 | cacheIfUnique = 1; |
2570f2b7 | 4797 | if (lookup_cached_symbol (name0, namespace, &sym, &block)) |
4c4b4cd2 PH |
4798 | { |
4799 | if (sym != NULL) | |
2570f2b7 | 4800 | add_defn_to_vec (&symbol_list_obstack, sym, block); |
4c4b4cd2 PH |
4801 | goto done; |
4802 | } | |
14f9c5c9 | 4803 | |
339c13b6 JB |
4804 | /* Search symbols from all global blocks. */ |
4805 | ||
4806 | ada_add_non_local_symbols (&symbol_list_obstack, name, namespace, 1, | |
4807 | wild_match); | |
d2e4a39e | 4808 | |
4c4b4cd2 | 4809 | /* Now add symbols from all per-file blocks if we've gotten no hits |
339c13b6 | 4810 | (not strictly correct, but perhaps better than an error). */ |
d2e4a39e | 4811 | |
4c4b4cd2 | 4812 | if (num_defns_collected (&symbol_list_obstack) == 0) |
339c13b6 JB |
4813 | ada_add_non_local_symbols (&symbol_list_obstack, name, namespace, 0, |
4814 | wild_match); | |
14f9c5c9 | 4815 | |
4c4b4cd2 PH |
4816 | done: |
4817 | ndefns = num_defns_collected (&symbol_list_obstack); | |
4818 | *results = defns_collected (&symbol_list_obstack, 1); | |
4819 | ||
4820 | ndefns = remove_extra_symbols (*results, ndefns); | |
4821 | ||
d2e4a39e | 4822 | if (ndefns == 0) |
2570f2b7 | 4823 | cache_symbol (name0, namespace, NULL, NULL); |
14f9c5c9 | 4824 | |
4c4b4cd2 | 4825 | if (ndefns == 1 && cacheIfUnique) |
2570f2b7 | 4826 | cache_symbol (name0, namespace, (*results)[0].sym, (*results)[0].block); |
14f9c5c9 | 4827 | |
aeb5907d | 4828 | ndefns = remove_irrelevant_renamings (*results, ndefns, block0); |
14f9c5c9 | 4829 | |
14f9c5c9 AS |
4830 | return ndefns; |
4831 | } | |
4832 | ||
d2e4a39e | 4833 | struct symbol * |
aeb5907d | 4834 | ada_lookup_encoded_symbol (const char *name, const struct block *block0, |
21b556f4 | 4835 | domain_enum namespace, struct block **block_found) |
14f9c5c9 | 4836 | { |
4c4b4cd2 | 4837 | struct ada_symbol_info *candidates; |
14f9c5c9 AS |
4838 | int n_candidates; |
4839 | ||
aeb5907d | 4840 | n_candidates = ada_lookup_symbol_list (name, block0, namespace, &candidates); |
14f9c5c9 AS |
4841 | |
4842 | if (n_candidates == 0) | |
4843 | return NULL; | |
4c4b4cd2 | 4844 | |
aeb5907d JB |
4845 | if (block_found != NULL) |
4846 | *block_found = candidates[0].block; | |
4c4b4cd2 | 4847 | |
21b556f4 | 4848 | return fixup_symbol_section (candidates[0].sym, NULL); |
aeb5907d JB |
4849 | } |
4850 | ||
4851 | /* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing | |
4852 | scope and in global scopes, or NULL if none. NAME is folded and | |
4853 | encoded first. Otherwise, the result is as for ada_lookup_symbol_list, | |
4854 | choosing the first symbol if there are multiple choices. | |
4855 | *IS_A_FIELD_OF_THIS is set to 0 and *SYMTAB is set to the symbol | |
4856 | table in which the symbol was found (in both cases, these | |
4857 | assignments occur only if the pointers are non-null). */ | |
4858 | struct symbol * | |
4859 | ada_lookup_symbol (const char *name, const struct block *block0, | |
21b556f4 | 4860 | domain_enum namespace, int *is_a_field_of_this) |
aeb5907d JB |
4861 | { |
4862 | if (is_a_field_of_this != NULL) | |
4863 | *is_a_field_of_this = 0; | |
4864 | ||
4865 | return | |
4866 | ada_lookup_encoded_symbol (ada_encode (ada_fold_name (name)), | |
21b556f4 | 4867 | block0, namespace, NULL); |
4c4b4cd2 | 4868 | } |
14f9c5c9 | 4869 | |
4c4b4cd2 PH |
4870 | static struct symbol * |
4871 | ada_lookup_symbol_nonlocal (const char *name, | |
76a01679 JB |
4872 | const char *linkage_name, |
4873 | const struct block *block, | |
21b556f4 | 4874 | const domain_enum domain) |
4c4b4cd2 PH |
4875 | { |
4876 | if (linkage_name == NULL) | |
4877 | linkage_name = name; | |
76a01679 | 4878 | return ada_lookup_symbol (linkage_name, block_static_block (block), domain, |
21b556f4 | 4879 | NULL); |
14f9c5c9 AS |
4880 | } |
4881 | ||
4882 | ||
4c4b4cd2 PH |
4883 | /* True iff STR is a possible encoded suffix of a normal Ada name |
4884 | that is to be ignored for matching purposes. Suffixes of parallel | |
4885 | names (e.g., XVE) are not included here. Currently, the possible suffixes | |
5823c3ef | 4886 | are given by any of the regular expressions: |
4c4b4cd2 | 4887 | |
babe1480 JB |
4888 | [.$][0-9]+ [nested subprogram suffix, on platforms such as GNU/Linux] |
4889 | ___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX] | |
4890 | _E[0-9]+[bs]$ [protected object entry suffixes] | |
61ee279c | 4891 | (X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$ |
babe1480 JB |
4892 | |
4893 | Also, any leading "__[0-9]+" sequence is skipped before the suffix | |
4894 | match is performed. This sequence is used to differentiate homonyms, | |
4895 | is an optional part of a valid name suffix. */ | |
4c4b4cd2 | 4896 | |
14f9c5c9 | 4897 | static int |
d2e4a39e | 4898 | is_name_suffix (const char *str) |
14f9c5c9 AS |
4899 | { |
4900 | int k; | |
4c4b4cd2 PH |
4901 | const char *matching; |
4902 | const int len = strlen (str); | |
4903 | ||
babe1480 JB |
4904 | /* Skip optional leading __[0-9]+. */ |
4905 | ||
4c4b4cd2 PH |
4906 | if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2])) |
4907 | { | |
babe1480 JB |
4908 | str += 3; |
4909 | while (isdigit (str[0])) | |
4910 | str += 1; | |
4c4b4cd2 | 4911 | } |
babe1480 JB |
4912 | |
4913 | /* [.$][0-9]+ */ | |
4c4b4cd2 | 4914 | |
babe1480 | 4915 | if (str[0] == '.' || str[0] == '$') |
4c4b4cd2 | 4916 | { |
babe1480 | 4917 | matching = str + 1; |
4c4b4cd2 PH |
4918 | while (isdigit (matching[0])) |
4919 | matching += 1; | |
4920 | if (matching[0] == '\0') | |
4921 | return 1; | |
4922 | } | |
4923 | ||
4924 | /* ___[0-9]+ */ | |
babe1480 | 4925 | |
4c4b4cd2 PH |
4926 | if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_') |
4927 | { | |
4928 | matching = str + 3; | |
4929 | while (isdigit (matching[0])) | |
4930 | matching += 1; | |
4931 | if (matching[0] == '\0') | |
4932 | return 1; | |
4933 | } | |
4934 | ||
529cad9c PH |
4935 | #if 0 |
4936 | /* FIXME: brobecker/2005-09-23: Protected Object subprograms end | |
4937 | with a N at the end. Unfortunately, the compiler uses the same | |
4938 | convention for other internal types it creates. So treating | |
4939 | all entity names that end with an "N" as a name suffix causes | |
4940 | some regressions. For instance, consider the case of an enumerated | |
4941 | type. To support the 'Image attribute, it creates an array whose | |
4942 | name ends with N. | |
4943 | Having a single character like this as a suffix carrying some | |
4944 | information is a bit risky. Perhaps we should change the encoding | |
4945 | to be something like "_N" instead. In the meantime, do not do | |
4946 | the following check. */ | |
4947 | /* Protected Object Subprograms */ | |
4948 | if (len == 1 && str [0] == 'N') | |
4949 | return 1; | |
4950 | #endif | |
4951 | ||
4952 | /* _E[0-9]+[bs]$ */ | |
4953 | if (len > 3 && str[0] == '_' && str [1] == 'E' && isdigit (str[2])) | |
4954 | { | |
4955 | matching = str + 3; | |
4956 | while (isdigit (matching[0])) | |
4957 | matching += 1; | |
4958 | if ((matching[0] == 'b' || matching[0] == 's') | |
4959 | && matching [1] == '\0') | |
4960 | return 1; | |
4961 | } | |
4962 | ||
4c4b4cd2 PH |
4963 | /* ??? We should not modify STR directly, as we are doing below. This |
4964 | is fine in this case, but may become problematic later if we find | |
4965 | that this alternative did not work, and want to try matching | |
4966 | another one from the begining of STR. Since we modified it, we | |
4967 | won't be able to find the begining of the string anymore! */ | |
14f9c5c9 AS |
4968 | if (str[0] == 'X') |
4969 | { | |
4970 | str += 1; | |
d2e4a39e | 4971 | while (str[0] != '_' && str[0] != '\0') |
4c4b4cd2 PH |
4972 | { |
4973 | if (str[0] != 'n' && str[0] != 'b') | |
4974 | return 0; | |
4975 | str += 1; | |
4976 | } | |
14f9c5c9 | 4977 | } |
babe1480 | 4978 | |
14f9c5c9 AS |
4979 | if (str[0] == '\000') |
4980 | return 1; | |
babe1480 | 4981 | |
d2e4a39e | 4982 | if (str[0] == '_') |
14f9c5c9 AS |
4983 | { |
4984 | if (str[1] != '_' || str[2] == '\000') | |
4c4b4cd2 | 4985 | return 0; |
d2e4a39e | 4986 | if (str[2] == '_') |
4c4b4cd2 | 4987 | { |
61ee279c PH |
4988 | if (strcmp (str + 3, "JM") == 0) |
4989 | return 1; | |
4990 | /* FIXME: brobecker/2004-09-30: GNAT will soon stop using | |
4991 | the LJM suffix in favor of the JM one. But we will | |
4992 | still accept LJM as a valid suffix for a reasonable | |
4993 | amount of time, just to allow ourselves to debug programs | |
4994 | compiled using an older version of GNAT. */ | |
4c4b4cd2 PH |
4995 | if (strcmp (str + 3, "LJM") == 0) |
4996 | return 1; | |
4997 | if (str[3] != 'X') | |
4998 | return 0; | |
1265e4aa JB |
4999 | if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B' |
5000 | || str[4] == 'U' || str[4] == 'P') | |
4c4b4cd2 PH |
5001 | return 1; |
5002 | if (str[4] == 'R' && str[5] != 'T') | |
5003 | return 1; | |
5004 | return 0; | |
5005 | } | |
5006 | if (!isdigit (str[2])) | |
5007 | return 0; | |
5008 | for (k = 3; str[k] != '\0'; k += 1) | |
5009 | if (!isdigit (str[k]) && str[k] != '_') | |
5010 | return 0; | |
14f9c5c9 AS |
5011 | return 1; |
5012 | } | |
4c4b4cd2 | 5013 | if (str[0] == '$' && isdigit (str[1])) |
14f9c5c9 | 5014 | { |
4c4b4cd2 PH |
5015 | for (k = 2; str[k] != '\0'; k += 1) |
5016 | if (!isdigit (str[k]) && str[k] != '_') | |
5017 | return 0; | |
14f9c5c9 AS |
5018 | return 1; |
5019 | } | |
5020 | return 0; | |
5021 | } | |
d2e4a39e | 5022 | |
aeb5907d JB |
5023 | /* Return non-zero if the string starting at NAME and ending before |
5024 | NAME_END contains no capital letters. */ | |
529cad9c PH |
5025 | |
5026 | static int | |
5027 | is_valid_name_for_wild_match (const char *name0) | |
5028 | { | |
5029 | const char *decoded_name = ada_decode (name0); | |
5030 | int i; | |
5031 | ||
5823c3ef JB |
5032 | /* If the decoded name starts with an angle bracket, it means that |
5033 | NAME0 does not follow the GNAT encoding format. It should then | |
5034 | not be allowed as a possible wild match. */ | |
5035 | if (decoded_name[0] == '<') | |
5036 | return 0; | |
5037 | ||
529cad9c PH |
5038 | for (i=0; decoded_name[i] != '\0'; i++) |
5039 | if (isalpha (decoded_name[i]) && !islower (decoded_name[i])) | |
5040 | return 0; | |
5041 | ||
5042 | return 1; | |
5043 | } | |
5044 | ||
4c4b4cd2 PH |
5045 | /* True if NAME represents a name of the form A1.A2....An, n>=1 and |
5046 | PATN[0..PATN_LEN-1] = Ak.Ak+1.....An for some k >= 1. Ignores | |
5047 | informational suffixes of NAME (i.e., for which is_name_suffix is | |
5048 | true). */ | |
5049 | ||
14f9c5c9 | 5050 | static int |
4c4b4cd2 | 5051 | wild_match (const char *patn0, int patn_len, const char *name0) |
14f9c5c9 | 5052 | { |
5823c3ef JB |
5053 | char* match; |
5054 | const char* start; | |
5055 | start = name0; | |
5056 | while (1) | |
14f9c5c9 | 5057 | { |
5823c3ef JB |
5058 | match = strstr (start, patn0); |
5059 | if (match == NULL) | |
5060 | return 0; | |
5061 | if ((match == name0 | |
5062 | || match[-1] == '.' | |
5063 | || (match > name0 + 1 && match[-1] == '_' && match[-2] == '_') | |
5064 | || (match == name0 + 5 && strncmp ("_ada_", name0, 5) == 0)) | |
5065 | && is_name_suffix (match + patn_len)) | |
5066 | return (match == name0 || is_valid_name_for_wild_match (name0)); | |
5067 | start = match + 1; | |
96d887e8 | 5068 | } |
96d887e8 PH |
5069 | } |
5070 | ||
5071 | ||
5072 | /* Add symbols from BLOCK matching identifier NAME in DOMAIN to | |
5073 | vector *defn_symbols, updating the list of symbols in OBSTACKP | |
5074 | (if necessary). If WILD, treat as NAME with a wildcard prefix. | |
5075 | OBJFILE is the section containing BLOCK. | |
5076 | SYMTAB is recorded with each symbol added. */ | |
5077 | ||
5078 | static void | |
5079 | ada_add_block_symbols (struct obstack *obstackp, | |
76a01679 | 5080 | struct block *block, const char *name, |
96d887e8 | 5081 | domain_enum domain, struct objfile *objfile, |
2570f2b7 | 5082 | int wild) |
96d887e8 PH |
5083 | { |
5084 | struct dict_iterator iter; | |
5085 | int name_len = strlen (name); | |
5086 | /* A matching argument symbol, if any. */ | |
5087 | struct symbol *arg_sym; | |
5088 | /* Set true when we find a matching non-argument symbol. */ | |
5089 | int found_sym; | |
5090 | struct symbol *sym; | |
5091 | ||
5092 | arg_sym = NULL; | |
5093 | found_sym = 0; | |
5094 | if (wild) | |
5095 | { | |
5096 | struct symbol *sym; | |
5097 | ALL_BLOCK_SYMBOLS (block, iter, sym) | |
76a01679 | 5098 | { |
5eeb2539 AR |
5099 | if (symbol_matches_domain (SYMBOL_LANGUAGE (sym), |
5100 | SYMBOL_DOMAIN (sym), domain) | |
1265e4aa | 5101 | && wild_match (name, name_len, SYMBOL_LINKAGE_NAME (sym))) |
76a01679 | 5102 | { |
2a2d4dc3 AS |
5103 | if (SYMBOL_CLASS (sym) == LOC_UNRESOLVED) |
5104 | continue; | |
5105 | else if (SYMBOL_IS_ARGUMENT (sym)) | |
5106 | arg_sym = sym; | |
5107 | else | |
5108 | { | |
76a01679 JB |
5109 | found_sym = 1; |
5110 | add_defn_to_vec (obstackp, | |
5111 | fixup_symbol_section (sym, objfile), | |
2570f2b7 | 5112 | block); |
76a01679 JB |
5113 | } |
5114 | } | |
5115 | } | |
96d887e8 PH |
5116 | } |
5117 | else | |
5118 | { | |
5119 | ALL_BLOCK_SYMBOLS (block, iter, sym) | |
76a01679 | 5120 | { |
5eeb2539 AR |
5121 | if (symbol_matches_domain (SYMBOL_LANGUAGE (sym), |
5122 | SYMBOL_DOMAIN (sym), domain)) | |
76a01679 JB |
5123 | { |
5124 | int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym), name_len); | |
5125 | if (cmp == 0 | |
5126 | && is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len)) | |
5127 | { | |
2a2d4dc3 AS |
5128 | if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED) |
5129 | { | |
5130 | if (SYMBOL_IS_ARGUMENT (sym)) | |
5131 | arg_sym = sym; | |
5132 | else | |
5133 | { | |
5134 | found_sym = 1; | |
5135 | add_defn_to_vec (obstackp, | |
5136 | fixup_symbol_section (sym, objfile), | |
5137 | block); | |
5138 | } | |
5139 | } | |
76a01679 JB |
5140 | } |
5141 | } | |
5142 | } | |
96d887e8 PH |
5143 | } |
5144 | ||
5145 | if (!found_sym && arg_sym != NULL) | |
5146 | { | |
76a01679 JB |
5147 | add_defn_to_vec (obstackp, |
5148 | fixup_symbol_section (arg_sym, objfile), | |
2570f2b7 | 5149 | block); |
96d887e8 PH |
5150 | } |
5151 | ||
5152 | if (!wild) | |
5153 | { | |
5154 | arg_sym = NULL; | |
5155 | found_sym = 0; | |
5156 | ||
5157 | ALL_BLOCK_SYMBOLS (block, iter, sym) | |
76a01679 | 5158 | { |
5eeb2539 AR |
5159 | if (symbol_matches_domain (SYMBOL_LANGUAGE (sym), |
5160 | SYMBOL_DOMAIN (sym), domain)) | |
76a01679 JB |
5161 | { |
5162 | int cmp; | |
5163 | ||
5164 | cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (sym)[0]; | |
5165 | if (cmp == 0) | |
5166 | { | |
5167 | cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (sym), 5); | |
5168 | if (cmp == 0) | |
5169 | cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym) + 5, | |
5170 | name_len); | |
5171 | } | |
5172 | ||
5173 | if (cmp == 0 | |
5174 | && is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len + 5)) | |
5175 | { | |
2a2d4dc3 AS |
5176 | if (SYMBOL_CLASS (sym) != LOC_UNRESOLVED) |
5177 | { | |
5178 | if (SYMBOL_IS_ARGUMENT (sym)) | |
5179 | arg_sym = sym; | |
5180 | else | |
5181 | { | |
5182 | found_sym = 1; | |
5183 | add_defn_to_vec (obstackp, | |
5184 | fixup_symbol_section (sym, objfile), | |
5185 | block); | |
5186 | } | |
5187 | } | |
76a01679 JB |
5188 | } |
5189 | } | |
76a01679 | 5190 | } |
96d887e8 PH |
5191 | |
5192 | /* NOTE: This really shouldn't be needed for _ada_ symbols. | |
5193 | They aren't parameters, right? */ | |
5194 | if (!found_sym && arg_sym != NULL) | |
5195 | { | |
5196 | add_defn_to_vec (obstackp, | |
76a01679 | 5197 | fixup_symbol_section (arg_sym, objfile), |
2570f2b7 | 5198 | block); |
96d887e8 PH |
5199 | } |
5200 | } | |
5201 | } | |
5202 | \f | |
41d27058 JB |
5203 | |
5204 | /* Symbol Completion */ | |
5205 | ||
5206 | /* If SYM_NAME is a completion candidate for TEXT, return this symbol | |
5207 | name in a form that's appropriate for the completion. The result | |
5208 | does not need to be deallocated, but is only good until the next call. | |
5209 | ||
5210 | TEXT_LEN is equal to the length of TEXT. | |
5211 | Perform a wild match if WILD_MATCH is set. | |
5212 | ENCODED should be set if TEXT represents the start of a symbol name | |
5213 | in its encoded form. */ | |
5214 | ||
5215 | static const char * | |
5216 | symbol_completion_match (const char *sym_name, | |
5217 | const char *text, int text_len, | |
5218 | int wild_match, int encoded) | |
5219 | { | |
5220 | char *result; | |
5221 | const int verbatim_match = (text[0] == '<'); | |
5222 | int match = 0; | |
5223 | ||
5224 | if (verbatim_match) | |
5225 | { | |
5226 | /* Strip the leading angle bracket. */ | |
5227 | text = text + 1; | |
5228 | text_len--; | |
5229 | } | |
5230 | ||
5231 | /* First, test against the fully qualified name of the symbol. */ | |
5232 | ||
5233 | if (strncmp (sym_name, text, text_len) == 0) | |
5234 | match = 1; | |
5235 | ||
5236 | if (match && !encoded) | |
5237 | { | |
5238 | /* One needed check before declaring a positive match is to verify | |
5239 | that iff we are doing a verbatim match, the decoded version | |
5240 | of the symbol name starts with '<'. Otherwise, this symbol name | |
5241 | is not a suitable completion. */ | |
5242 | const char *sym_name_copy = sym_name; | |
5243 | int has_angle_bracket; | |
5244 | ||
5245 | sym_name = ada_decode (sym_name); | |
5246 | has_angle_bracket = (sym_name[0] == '<'); | |
5247 | match = (has_angle_bracket == verbatim_match); | |
5248 | sym_name = sym_name_copy; | |
5249 | } | |
5250 | ||
5251 | if (match && !verbatim_match) | |
5252 | { | |
5253 | /* When doing non-verbatim match, another check that needs to | |
5254 | be done is to verify that the potentially matching symbol name | |
5255 | does not include capital letters, because the ada-mode would | |
5256 | not be able to understand these symbol names without the | |
5257 | angle bracket notation. */ | |
5258 | const char *tmp; | |
5259 | ||
5260 | for (tmp = sym_name; *tmp != '\0' && !isupper (*tmp); tmp++); | |
5261 | if (*tmp != '\0') | |
5262 | match = 0; | |
5263 | } | |
5264 | ||
5265 | /* Second: Try wild matching... */ | |
5266 | ||
5267 | if (!match && wild_match) | |
5268 | { | |
5269 | /* Since we are doing wild matching, this means that TEXT | |
5270 | may represent an unqualified symbol name. We therefore must | |
5271 | also compare TEXT against the unqualified name of the symbol. */ | |
5272 | sym_name = ada_unqualified_name (ada_decode (sym_name)); | |
5273 | ||
5274 | if (strncmp (sym_name, text, text_len) == 0) | |
5275 | match = 1; | |
5276 | } | |
5277 | ||
5278 | /* Finally: If we found a mach, prepare the result to return. */ | |
5279 | ||
5280 | if (!match) | |
5281 | return NULL; | |
5282 | ||
5283 | if (verbatim_match) | |
5284 | sym_name = add_angle_brackets (sym_name); | |
5285 | ||
5286 | if (!encoded) | |
5287 | sym_name = ada_decode (sym_name); | |
5288 | ||
5289 | return sym_name; | |
5290 | } | |
5291 | ||
2ba95b9b JB |
5292 | typedef char *char_ptr; |
5293 | DEF_VEC_P (char_ptr); | |
5294 | ||
41d27058 JB |
5295 | /* A companion function to ada_make_symbol_completion_list(). |
5296 | Check if SYM_NAME represents a symbol which name would be suitable | |
5297 | to complete TEXT (TEXT_LEN is the length of TEXT), in which case | |
5298 | it is appended at the end of the given string vector SV. | |
5299 | ||
5300 | ORIG_TEXT is the string original string from the user command | |
5301 | that needs to be completed. WORD is the entire command on which | |
5302 | completion should be performed. These two parameters are used to | |
5303 | determine which part of the symbol name should be added to the | |
5304 | completion vector. | |
5305 | if WILD_MATCH is set, then wild matching is performed. | |
5306 | ENCODED should be set if TEXT represents a symbol name in its | |
5307 | encoded formed (in which case the completion should also be | |
5308 | encoded). */ | |
5309 | ||
5310 | static void | |
d6565258 | 5311 | symbol_completion_add (VEC(char_ptr) **sv, |
41d27058 JB |
5312 | const char *sym_name, |
5313 | const char *text, int text_len, | |
5314 | const char *orig_text, const char *word, | |
5315 | int wild_match, int encoded) | |
5316 | { | |
5317 | const char *match = symbol_completion_match (sym_name, text, text_len, | |
5318 | wild_match, encoded); | |
5319 | char *completion; | |
5320 | ||
5321 | if (match == NULL) | |
5322 | return; | |
5323 | ||
5324 | /* We found a match, so add the appropriate completion to the given | |
5325 | string vector. */ | |
5326 | ||
5327 | if (word == orig_text) | |
5328 | { | |
5329 | completion = xmalloc (strlen (match) + 5); | |
5330 | strcpy (completion, match); | |
5331 | } | |
5332 | else if (word > orig_text) | |
5333 | { | |
5334 | /* Return some portion of sym_name. */ | |
5335 | completion = xmalloc (strlen (match) + 5); | |
5336 | strcpy (completion, match + (word - orig_text)); | |
5337 | } | |
5338 | else | |
5339 | { | |
5340 | /* Return some of ORIG_TEXT plus sym_name. */ | |
5341 | completion = xmalloc (strlen (match) + (orig_text - word) + 5); | |
5342 | strncpy (completion, word, orig_text - word); | |
5343 | completion[orig_text - word] = '\0'; | |
5344 | strcat (completion, match); | |
5345 | } | |
5346 | ||
d6565258 | 5347 | VEC_safe_push (char_ptr, *sv, completion); |
41d27058 JB |
5348 | } |
5349 | ||
5350 | /* Return a list of possible symbol names completing TEXT0. The list | |
5351 | is NULL terminated. WORD is the entire command on which completion | |
5352 | is made. */ | |
5353 | ||
5354 | static char ** | |
5355 | ada_make_symbol_completion_list (char *text0, char *word) | |
5356 | { | |
5357 | char *text; | |
5358 | int text_len; | |
5359 | int wild_match; | |
5360 | int encoded; | |
2ba95b9b | 5361 | VEC(char_ptr) *completions = VEC_alloc (char_ptr, 128); |
41d27058 JB |
5362 | struct symbol *sym; |
5363 | struct symtab *s; | |
5364 | struct partial_symtab *ps; | |
5365 | struct minimal_symbol *msymbol; | |
5366 | struct objfile *objfile; | |
5367 | struct block *b, *surrounding_static_block = 0; | |
5368 | int i; | |
5369 | struct dict_iterator iter; | |
5370 | ||
5371 | if (text0[0] == '<') | |
5372 | { | |
5373 | text = xstrdup (text0); | |
5374 | make_cleanup (xfree, text); | |
5375 | text_len = strlen (text); | |
5376 | wild_match = 0; | |
5377 | encoded = 1; | |
5378 | } | |
5379 | else | |
5380 | { | |
5381 | text = xstrdup (ada_encode (text0)); | |
5382 | make_cleanup (xfree, text); | |
5383 | text_len = strlen (text); | |
5384 | for (i = 0; i < text_len; i++) | |
5385 | text[i] = tolower (text[i]); | |
5386 | ||
5387 | encoded = (strstr (text0, "__") != NULL); | |
5388 | /* If the name contains a ".", then the user is entering a fully | |
5389 | qualified entity name, and the match must not be done in wild | |
5390 | mode. Similarly, if the user wants to complete what looks like | |
5391 | an encoded name, the match must not be done in wild mode. */ | |
5392 | wild_match = (strchr (text0, '.') == NULL && !encoded); | |
5393 | } | |
5394 | ||
5395 | /* First, look at the partial symtab symbols. */ | |
5396 | ALL_PSYMTABS (objfile, ps) | |
5397 | { | |
5398 | struct partial_symbol **psym; | |
5399 | ||
5400 | /* If the psymtab's been read in we'll get it when we search | |
5401 | through the blockvector. */ | |
5402 | if (ps->readin) | |
5403 | continue; | |
5404 | ||
5405 | for (psym = objfile->global_psymbols.list + ps->globals_offset; | |
5406 | psym < (objfile->global_psymbols.list + ps->globals_offset | |
5407 | + ps->n_global_syms); psym++) | |
5408 | { | |
5409 | QUIT; | |
d6565258 | 5410 | symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (*psym), |
41d27058 JB |
5411 | text, text_len, text0, word, |
5412 | wild_match, encoded); | |
5413 | } | |
5414 | ||
5415 | for (psym = objfile->static_psymbols.list + ps->statics_offset; | |
5416 | psym < (objfile->static_psymbols.list + ps->statics_offset | |
5417 | + ps->n_static_syms); psym++) | |
5418 | { | |
5419 | QUIT; | |
d6565258 | 5420 | symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (*psym), |
41d27058 JB |
5421 | text, text_len, text0, word, |
5422 | wild_match, encoded); | |
5423 | } | |
5424 | } | |
5425 | ||
5426 | /* At this point scan through the misc symbol vectors and add each | |
5427 | symbol you find to the list. Eventually we want to ignore | |
5428 | anything that isn't a text symbol (everything else will be | |
5429 | handled by the psymtab code above). */ | |
5430 | ||
5431 | ALL_MSYMBOLS (objfile, msymbol) | |
5432 | { | |
5433 | QUIT; | |
d6565258 | 5434 | symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (msymbol), |
41d27058 JB |
5435 | text, text_len, text0, word, wild_match, encoded); |
5436 | } | |
5437 | ||
5438 | /* Search upwards from currently selected frame (so that we can | |
5439 | complete on local vars. */ | |
5440 | ||
5441 | for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b)) | |
5442 | { | |
5443 | if (!BLOCK_SUPERBLOCK (b)) | |
5444 | surrounding_static_block = b; /* For elmin of dups */ | |
5445 | ||
5446 | ALL_BLOCK_SYMBOLS (b, iter, sym) | |
5447 | { | |
d6565258 | 5448 | symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym), |
41d27058 JB |
5449 | text, text_len, text0, word, |
5450 | wild_match, encoded); | |
5451 | } | |
5452 | } | |
5453 | ||
5454 | /* Go through the symtabs and check the externs and statics for | |
5455 | symbols which match. */ | |
5456 | ||
5457 | ALL_SYMTABS (objfile, s) | |
5458 | { | |
5459 | QUIT; | |
5460 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK); | |
5461 | ALL_BLOCK_SYMBOLS (b, iter, sym) | |
5462 | { | |
d6565258 | 5463 | symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym), |
41d27058 JB |
5464 | text, text_len, text0, word, |
5465 | wild_match, encoded); | |
5466 | } | |
5467 | } | |
5468 | ||
5469 | ALL_SYMTABS (objfile, s) | |
5470 | { | |
5471 | QUIT; | |
5472 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK); | |
5473 | /* Don't do this block twice. */ | |
5474 | if (b == surrounding_static_block) | |
5475 | continue; | |
5476 | ALL_BLOCK_SYMBOLS (b, iter, sym) | |
5477 | { | |
d6565258 | 5478 | symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym), |
41d27058 JB |
5479 | text, text_len, text0, word, |
5480 | wild_match, encoded); | |
5481 | } | |
5482 | } | |
5483 | ||
5484 | /* Append the closing NULL entry. */ | |
2ba95b9b | 5485 | VEC_safe_push (char_ptr, completions, NULL); |
41d27058 | 5486 | |
2ba95b9b JB |
5487 | /* Make a copy of the COMPLETIONS VEC before we free it, and then |
5488 | return the copy. It's unfortunate that we have to make a copy | |
5489 | of an array that we're about to destroy, but there is nothing much | |
5490 | we can do about it. Fortunately, it's typically not a very large | |
5491 | array. */ | |
5492 | { | |
5493 | const size_t completions_size = | |
5494 | VEC_length (char_ptr, completions) * sizeof (char *); | |
5495 | char **result = malloc (completions_size); | |
5496 | ||
5497 | memcpy (result, VEC_address (char_ptr, completions), completions_size); | |
5498 | ||
5499 | VEC_free (char_ptr, completions); | |
5500 | return result; | |
5501 | } | |
41d27058 JB |
5502 | } |
5503 | ||
963a6417 | 5504 | /* Field Access */ |
96d887e8 | 5505 | |
73fb9985 JB |
5506 | /* Return non-zero if TYPE is a pointer to the GNAT dispatch table used |
5507 | for tagged types. */ | |
5508 | ||
5509 | static int | |
5510 | ada_is_dispatch_table_ptr_type (struct type *type) | |
5511 | { | |
5512 | char *name; | |
5513 | ||
5514 | if (TYPE_CODE (type) != TYPE_CODE_PTR) | |
5515 | return 0; | |
5516 | ||
5517 | name = TYPE_NAME (TYPE_TARGET_TYPE (type)); | |
5518 | if (name == NULL) | |
5519 | return 0; | |
5520 | ||
5521 | return (strcmp (name, "ada__tags__dispatch_table") == 0); | |
5522 | } | |
5523 | ||
963a6417 PH |
5524 | /* True if field number FIELD_NUM in struct or union type TYPE is supposed |
5525 | to be invisible to users. */ | |
96d887e8 | 5526 | |
963a6417 PH |
5527 | int |
5528 | ada_is_ignored_field (struct type *type, int field_num) | |
96d887e8 | 5529 | { |
963a6417 PH |
5530 | if (field_num < 0 || field_num > TYPE_NFIELDS (type)) |
5531 | return 1; | |
73fb9985 JB |
5532 | |
5533 | /* Check the name of that field. */ | |
5534 | { | |
5535 | const char *name = TYPE_FIELD_NAME (type, field_num); | |
5536 | ||
5537 | /* Anonymous field names should not be printed. | |
5538 | brobecker/2007-02-20: I don't think this can actually happen | |
5539 | but we don't want to print the value of annonymous fields anyway. */ | |
5540 | if (name == NULL) | |
5541 | return 1; | |
5542 | ||
5543 | /* A field named "_parent" is internally generated by GNAT for | |
5544 | tagged types, and should not be printed either. */ | |
5545 | if (name[0] == '_' && strncmp (name, "_parent", 7) != 0) | |
5546 | return 1; | |
5547 | } | |
5548 | ||
5549 | /* If this is the dispatch table of a tagged type, then ignore. */ | |
5550 | if (ada_is_tagged_type (type, 1) | |
5551 | && ada_is_dispatch_table_ptr_type (TYPE_FIELD_TYPE (type, field_num))) | |
5552 | return 1; | |
5553 | ||
5554 | /* Not a special field, so it should not be ignored. */ | |
5555 | return 0; | |
963a6417 | 5556 | } |
96d887e8 | 5557 | |
963a6417 PH |
5558 | /* True iff TYPE has a tag field. If REFOK, then TYPE may also be a |
5559 | pointer or reference type whose ultimate target has a tag field. */ | |
96d887e8 | 5560 | |
963a6417 PH |
5561 | int |
5562 | ada_is_tagged_type (struct type *type, int refok) | |
5563 | { | |
5564 | return (ada_lookup_struct_elt_type (type, "_tag", refok, 1, NULL) != NULL); | |
5565 | } | |
96d887e8 | 5566 | |
963a6417 | 5567 | /* True iff TYPE represents the type of X'Tag */ |
96d887e8 | 5568 | |
963a6417 PH |
5569 | int |
5570 | ada_is_tag_type (struct type *type) | |
5571 | { | |
5572 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_PTR) | |
5573 | return 0; | |
5574 | else | |
96d887e8 | 5575 | { |
963a6417 PH |
5576 | const char *name = ada_type_name (TYPE_TARGET_TYPE (type)); |
5577 | return (name != NULL | |
5578 | && strcmp (name, "ada__tags__dispatch_table") == 0); | |
96d887e8 | 5579 | } |
96d887e8 PH |
5580 | } |
5581 | ||
963a6417 | 5582 | /* The type of the tag on VAL. */ |
76a01679 | 5583 | |
963a6417 PH |
5584 | struct type * |
5585 | ada_tag_type (struct value *val) | |
96d887e8 | 5586 | { |
df407dfe | 5587 | return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0, NULL); |
963a6417 | 5588 | } |
96d887e8 | 5589 | |
963a6417 | 5590 | /* The value of the tag on VAL. */ |
96d887e8 | 5591 | |
963a6417 PH |
5592 | struct value * |
5593 | ada_value_tag (struct value *val) | |
5594 | { | |
03ee6b2e | 5595 | return ada_value_struct_elt (val, "_tag", 0); |
96d887e8 PH |
5596 | } |
5597 | ||
963a6417 PH |
5598 | /* The value of the tag on the object of type TYPE whose contents are |
5599 | saved at VALADDR, if it is non-null, or is at memory address | |
5600 | ADDRESS. */ | |
96d887e8 | 5601 | |
963a6417 | 5602 | static struct value * |
10a2c479 | 5603 | value_tag_from_contents_and_address (struct type *type, |
fc1a4b47 | 5604 | const gdb_byte *valaddr, |
963a6417 | 5605 | CORE_ADDR address) |
96d887e8 | 5606 | { |
963a6417 PH |
5607 | int tag_byte_offset, dummy1, dummy2; |
5608 | struct type *tag_type; | |
5609 | if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset, | |
52ce6436 | 5610 | NULL, NULL, NULL)) |
96d887e8 | 5611 | { |
fc1a4b47 | 5612 | const gdb_byte *valaddr1 = ((valaddr == NULL) |
10a2c479 AC |
5613 | ? NULL |
5614 | : valaddr + tag_byte_offset); | |
963a6417 | 5615 | CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset; |
96d887e8 | 5616 | |
963a6417 | 5617 | return value_from_contents_and_address (tag_type, valaddr1, address1); |
96d887e8 | 5618 | } |
963a6417 PH |
5619 | return NULL; |
5620 | } | |
96d887e8 | 5621 | |
963a6417 PH |
5622 | static struct type * |
5623 | type_from_tag (struct value *tag) | |
5624 | { | |
5625 | const char *type_name = ada_tag_name (tag); | |
5626 | if (type_name != NULL) | |
5627 | return ada_find_any_type (ada_encode (type_name)); | |
5628 | return NULL; | |
5629 | } | |
96d887e8 | 5630 | |
963a6417 PH |
5631 | struct tag_args |
5632 | { | |
5633 | struct value *tag; | |
5634 | char *name; | |
5635 | }; | |
4c4b4cd2 | 5636 | |
529cad9c PH |
5637 | |
5638 | static int ada_tag_name_1 (void *); | |
5639 | static int ada_tag_name_2 (struct tag_args *); | |
5640 | ||
4c4b4cd2 PH |
5641 | /* Wrapper function used by ada_tag_name. Given a struct tag_args* |
5642 | value ARGS, sets ARGS->name to the tag name of ARGS->tag. | |
5643 | The value stored in ARGS->name is valid until the next call to | |
5644 | ada_tag_name_1. */ | |
5645 | ||
5646 | static int | |
5647 | ada_tag_name_1 (void *args0) | |
5648 | { | |
5649 | struct tag_args *args = (struct tag_args *) args0; | |
5650 | static char name[1024]; | |
76a01679 | 5651 | char *p; |
4c4b4cd2 PH |
5652 | struct value *val; |
5653 | args->name = NULL; | |
03ee6b2e | 5654 | val = ada_value_struct_elt (args->tag, "tsd", 1); |
529cad9c PH |
5655 | if (val == NULL) |
5656 | return ada_tag_name_2 (args); | |
03ee6b2e | 5657 | val = ada_value_struct_elt (val, "expanded_name", 1); |
529cad9c PH |
5658 | if (val == NULL) |
5659 | return 0; | |
5660 | read_memory_string (value_as_address (val), name, sizeof (name) - 1); | |
5661 | for (p = name; *p != '\0'; p += 1) | |
5662 | if (isalpha (*p)) | |
5663 | *p = tolower (*p); | |
5664 | args->name = name; | |
5665 | return 0; | |
5666 | } | |
5667 | ||
5668 | /* Utility function for ada_tag_name_1 that tries the second | |
5669 | representation for the dispatch table (in which there is no | |
5670 | explicit 'tsd' field in the referent of the tag pointer, and instead | |
5671 | the tsd pointer is stored just before the dispatch table. */ | |
5672 | ||
5673 | static int | |
5674 | ada_tag_name_2 (struct tag_args *args) | |
5675 | { | |
5676 | struct type *info_type; | |
5677 | static char name[1024]; | |
5678 | char *p; | |
5679 | struct value *val, *valp; | |
5680 | ||
5681 | args->name = NULL; | |
5682 | info_type = ada_find_any_type ("ada__tags__type_specific_data"); | |
5683 | if (info_type == NULL) | |
5684 | return 0; | |
5685 | info_type = lookup_pointer_type (lookup_pointer_type (info_type)); | |
5686 | valp = value_cast (info_type, args->tag); | |
5687 | if (valp == NULL) | |
5688 | return 0; | |
89eef114 UW |
5689 | val = value_ind (value_ptradd (valp, |
5690 | value_from_longest (builtin_type_int8, -1))); | |
4c4b4cd2 PH |
5691 | if (val == NULL) |
5692 | return 0; | |
03ee6b2e | 5693 | val = ada_value_struct_elt (val, "expanded_name", 1); |
4c4b4cd2 PH |
5694 | if (val == NULL) |
5695 | return 0; | |
5696 | read_memory_string (value_as_address (val), name, sizeof (name) - 1); | |
5697 | for (p = name; *p != '\0'; p += 1) | |
5698 | if (isalpha (*p)) | |
5699 | *p = tolower (*p); | |
5700 | args->name = name; | |
5701 | return 0; | |
5702 | } | |
5703 | ||
5704 | /* The type name of the dynamic type denoted by the 'tag value TAG, as | |
5705 | * a C string. */ | |
5706 | ||
5707 | const char * | |
5708 | ada_tag_name (struct value *tag) | |
5709 | { | |
5710 | struct tag_args args; | |
df407dfe | 5711 | if (!ada_is_tag_type (value_type (tag))) |
4c4b4cd2 | 5712 | return NULL; |
76a01679 | 5713 | args.tag = tag; |
4c4b4cd2 PH |
5714 | args.name = NULL; |
5715 | catch_errors (ada_tag_name_1, &args, NULL, RETURN_MASK_ALL); | |
5716 | return args.name; | |
5717 | } | |
5718 | ||
5719 | /* The parent type of TYPE, or NULL if none. */ | |
14f9c5c9 | 5720 | |
d2e4a39e | 5721 | struct type * |
ebf56fd3 | 5722 | ada_parent_type (struct type *type) |
14f9c5c9 AS |
5723 | { |
5724 | int i; | |
5725 | ||
61ee279c | 5726 | type = ada_check_typedef (type); |
14f9c5c9 AS |
5727 | |
5728 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT) | |
5729 | return NULL; | |
5730 | ||
5731 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) | |
5732 | if (ada_is_parent_field (type, i)) | |
0c1f74cf JB |
5733 | { |
5734 | struct type *parent_type = TYPE_FIELD_TYPE (type, i); | |
5735 | ||
5736 | /* If the _parent field is a pointer, then dereference it. */ | |
5737 | if (TYPE_CODE (parent_type) == TYPE_CODE_PTR) | |
5738 | parent_type = TYPE_TARGET_TYPE (parent_type); | |
5739 | /* If there is a parallel XVS type, get the actual base type. */ | |
5740 | parent_type = ada_get_base_type (parent_type); | |
5741 | ||
5742 | return ada_check_typedef (parent_type); | |
5743 | } | |
14f9c5c9 AS |
5744 | |
5745 | return NULL; | |
5746 | } | |
5747 | ||
4c4b4cd2 PH |
5748 | /* True iff field number FIELD_NUM of structure type TYPE contains the |
5749 | parent-type (inherited) fields of a derived type. Assumes TYPE is | |
5750 | a structure type with at least FIELD_NUM+1 fields. */ | |
14f9c5c9 AS |
5751 | |
5752 | int | |
ebf56fd3 | 5753 | ada_is_parent_field (struct type *type, int field_num) |
14f9c5c9 | 5754 | { |
61ee279c | 5755 | const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num); |
4c4b4cd2 PH |
5756 | return (name != NULL |
5757 | && (strncmp (name, "PARENT", 6) == 0 | |
5758 | || strncmp (name, "_parent", 7) == 0)); | |
14f9c5c9 AS |
5759 | } |
5760 | ||
4c4b4cd2 | 5761 | /* True iff field number FIELD_NUM of structure type TYPE is a |
14f9c5c9 | 5762 | transparent wrapper field (which should be silently traversed when doing |
4c4b4cd2 | 5763 | field selection and flattened when printing). Assumes TYPE is a |
14f9c5c9 | 5764 | structure type with at least FIELD_NUM+1 fields. Such fields are always |
4c4b4cd2 | 5765 | structures. */ |
14f9c5c9 AS |
5766 | |
5767 | int | |
ebf56fd3 | 5768 | ada_is_wrapper_field (struct type *type, int field_num) |
14f9c5c9 | 5769 | { |
d2e4a39e AS |
5770 | const char *name = TYPE_FIELD_NAME (type, field_num); |
5771 | return (name != NULL | |
4c4b4cd2 PH |
5772 | && (strncmp (name, "PARENT", 6) == 0 |
5773 | || strcmp (name, "REP") == 0 | |
5774 | || strncmp (name, "_parent", 7) == 0 | |
5775 | || name[0] == 'S' || name[0] == 'R' || name[0] == 'O')); | |
14f9c5c9 AS |
5776 | } |
5777 | ||
4c4b4cd2 PH |
5778 | /* True iff field number FIELD_NUM of structure or union type TYPE |
5779 | is a variant wrapper. Assumes TYPE is a structure type with at least | |
5780 | FIELD_NUM+1 fields. */ | |
14f9c5c9 AS |
5781 | |
5782 | int | |
ebf56fd3 | 5783 | ada_is_variant_part (struct type *type, int field_num) |
14f9c5c9 | 5784 | { |
d2e4a39e | 5785 | struct type *field_type = TYPE_FIELD_TYPE (type, field_num); |
14f9c5c9 | 5786 | return (TYPE_CODE (field_type) == TYPE_CODE_UNION |
4c4b4cd2 | 5787 | || (is_dynamic_field (type, field_num) |
c3e5cd34 PH |
5788 | && (TYPE_CODE (TYPE_TARGET_TYPE (field_type)) |
5789 | == TYPE_CODE_UNION))); | |
14f9c5c9 AS |
5790 | } |
5791 | ||
5792 | /* Assuming that VAR_TYPE is a variant wrapper (type of the variant part) | |
4c4b4cd2 | 5793 | whose discriminants are contained in the record type OUTER_TYPE, |
14f9c5c9 AS |
5794 | returns the type of the controlling discriminant for the variant. */ |
5795 | ||
d2e4a39e | 5796 | struct type * |
ebf56fd3 | 5797 | ada_variant_discrim_type (struct type *var_type, struct type *outer_type) |
14f9c5c9 | 5798 | { |
d2e4a39e | 5799 | char *name = ada_variant_discrim_name (var_type); |
76a01679 | 5800 | struct type *type = |
4c4b4cd2 | 5801 | ada_lookup_struct_elt_type (outer_type, name, 1, 1, NULL); |
14f9c5c9 | 5802 | if (type == NULL) |
6d84d3d8 | 5803 | return builtin_type_int32; |
14f9c5c9 AS |
5804 | else |
5805 | return type; | |
5806 | } | |
5807 | ||
4c4b4cd2 | 5808 | /* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a |
14f9c5c9 | 5809 | valid field number within it, returns 1 iff field FIELD_NUM of TYPE |
4c4b4cd2 | 5810 | represents a 'when others' clause; otherwise 0. */ |
14f9c5c9 AS |
5811 | |
5812 | int | |
ebf56fd3 | 5813 | ada_is_others_clause (struct type *type, int field_num) |
14f9c5c9 | 5814 | { |
d2e4a39e | 5815 | const char *name = TYPE_FIELD_NAME (type, field_num); |
14f9c5c9 AS |
5816 | return (name != NULL && name[0] == 'O'); |
5817 | } | |
5818 | ||
5819 | /* Assuming that TYPE0 is the type of the variant part of a record, | |
4c4b4cd2 PH |
5820 | returns the name of the discriminant controlling the variant. |
5821 | The value is valid until the next call to ada_variant_discrim_name. */ | |
14f9c5c9 | 5822 | |
d2e4a39e | 5823 | char * |
ebf56fd3 | 5824 | ada_variant_discrim_name (struct type *type0) |
14f9c5c9 | 5825 | { |
d2e4a39e | 5826 | static char *result = NULL; |
14f9c5c9 | 5827 | static size_t result_len = 0; |
d2e4a39e AS |
5828 | struct type *type; |
5829 | const char *name; | |
5830 | const char *discrim_end; | |
5831 | const char *discrim_start; | |
14f9c5c9 AS |
5832 | |
5833 | if (TYPE_CODE (type0) == TYPE_CODE_PTR) | |
5834 | type = TYPE_TARGET_TYPE (type0); | |
5835 | else | |
5836 | type = type0; | |
5837 | ||
5838 | name = ada_type_name (type); | |
5839 | ||
5840 | if (name == NULL || name[0] == '\000') | |
5841 | return ""; | |
5842 | ||
5843 | for (discrim_end = name + strlen (name) - 6; discrim_end != name; | |
5844 | discrim_end -= 1) | |
5845 | { | |
4c4b4cd2 PH |
5846 | if (strncmp (discrim_end, "___XVN", 6) == 0) |
5847 | break; | |
14f9c5c9 AS |
5848 | } |
5849 | if (discrim_end == name) | |
5850 | return ""; | |
5851 | ||
d2e4a39e | 5852 | for (discrim_start = discrim_end; discrim_start != name + 3; |
14f9c5c9 AS |
5853 | discrim_start -= 1) |
5854 | { | |
d2e4a39e | 5855 | if (discrim_start == name + 1) |
4c4b4cd2 | 5856 | return ""; |
76a01679 | 5857 | if ((discrim_start > name + 3 |
4c4b4cd2 PH |
5858 | && strncmp (discrim_start - 3, "___", 3) == 0) |
5859 | || discrim_start[-1] == '.') | |
5860 | break; | |
14f9c5c9 AS |
5861 | } |
5862 | ||
5863 | GROW_VECT (result, result_len, discrim_end - discrim_start + 1); | |
5864 | strncpy (result, discrim_start, discrim_end - discrim_start); | |
d2e4a39e | 5865 | result[discrim_end - discrim_start] = '\0'; |
14f9c5c9 AS |
5866 | return result; |
5867 | } | |
5868 | ||
4c4b4cd2 PH |
5869 | /* Scan STR for a subtype-encoded number, beginning at position K. |
5870 | Put the position of the character just past the number scanned in | |
5871 | *NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL. | |
5872 | Return 1 if there was a valid number at the given position, and 0 | |
5873 | otherwise. A "subtype-encoded" number consists of the absolute value | |
5874 | in decimal, followed by the letter 'm' to indicate a negative number. | |
5875 | Assumes 0m does not occur. */ | |
14f9c5c9 AS |
5876 | |
5877 | int | |
d2e4a39e | 5878 | ada_scan_number (const char str[], int k, LONGEST * R, int *new_k) |
14f9c5c9 AS |
5879 | { |
5880 | ULONGEST RU; | |
5881 | ||
d2e4a39e | 5882 | if (!isdigit (str[k])) |
14f9c5c9 AS |
5883 | return 0; |
5884 | ||
4c4b4cd2 | 5885 | /* Do it the hard way so as not to make any assumption about |
14f9c5c9 | 5886 | the relationship of unsigned long (%lu scan format code) and |
4c4b4cd2 | 5887 | LONGEST. */ |
14f9c5c9 AS |
5888 | RU = 0; |
5889 | while (isdigit (str[k])) | |
5890 | { | |
d2e4a39e | 5891 | RU = RU * 10 + (str[k] - '0'); |
14f9c5c9 AS |
5892 | k += 1; |
5893 | } | |
5894 | ||
d2e4a39e | 5895 | if (str[k] == 'm') |
14f9c5c9 AS |
5896 | { |
5897 | if (R != NULL) | |
4c4b4cd2 | 5898 | *R = (-(LONGEST) (RU - 1)) - 1; |
14f9c5c9 AS |
5899 | k += 1; |
5900 | } | |
5901 | else if (R != NULL) | |
5902 | *R = (LONGEST) RU; | |
5903 | ||
4c4b4cd2 | 5904 | /* NOTE on the above: Technically, C does not say what the results of |
14f9c5c9 AS |
5905 | - (LONGEST) RU or (LONGEST) -RU are for RU == largest positive |
5906 | number representable as a LONGEST (although either would probably work | |
5907 | in most implementations). When RU>0, the locution in the then branch | |
4c4b4cd2 | 5908 | above is always equivalent to the negative of RU. */ |
14f9c5c9 AS |
5909 | |
5910 | if (new_k != NULL) | |
5911 | *new_k = k; | |
5912 | return 1; | |
5913 | } | |
5914 | ||
4c4b4cd2 PH |
5915 | /* Assuming that TYPE is a variant part wrapper type (a VARIANTS field), |
5916 | and FIELD_NUM is a valid field number within it, returns 1 iff VAL is | |
5917 | in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */ | |
14f9c5c9 | 5918 | |
d2e4a39e | 5919 | int |
ebf56fd3 | 5920 | ada_in_variant (LONGEST val, struct type *type, int field_num) |
14f9c5c9 | 5921 | { |
d2e4a39e | 5922 | const char *name = TYPE_FIELD_NAME (type, field_num); |
14f9c5c9 AS |
5923 | int p; |
5924 | ||
5925 | p = 0; | |
5926 | while (1) | |
5927 | { | |
d2e4a39e | 5928 | switch (name[p]) |
4c4b4cd2 PH |
5929 | { |
5930 | case '\0': | |
5931 | return 0; | |
5932 | case 'S': | |
5933 | { | |
5934 | LONGEST W; | |
5935 | if (!ada_scan_number (name, p + 1, &W, &p)) | |
5936 | return 0; | |
5937 | if (val == W) | |
5938 | return 1; | |
5939 | break; | |
5940 | } | |
5941 | case 'R': | |
5942 | { | |
5943 | LONGEST L, U; | |
5944 | if (!ada_scan_number (name, p + 1, &L, &p) | |
5945 | || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p)) | |
5946 | return 0; | |
5947 | if (val >= L && val <= U) | |
5948 | return 1; | |
5949 | break; | |
5950 | } | |
5951 | case 'O': | |
5952 | return 1; | |
5953 | default: | |
5954 | return 0; | |
5955 | } | |
5956 | } | |
5957 | } | |
5958 | ||
5959 | /* FIXME: Lots of redundancy below. Try to consolidate. */ | |
5960 | ||
5961 | /* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type | |
5962 | ARG_TYPE, extract and return the value of one of its (non-static) | |
5963 | fields. FIELDNO says which field. Differs from value_primitive_field | |
5964 | only in that it can handle packed values of arbitrary type. */ | |
14f9c5c9 | 5965 | |
4c4b4cd2 | 5966 | static struct value * |
d2e4a39e | 5967 | ada_value_primitive_field (struct value *arg1, int offset, int fieldno, |
4c4b4cd2 | 5968 | struct type *arg_type) |
14f9c5c9 | 5969 | { |
14f9c5c9 AS |
5970 | struct type *type; |
5971 | ||
61ee279c | 5972 | arg_type = ada_check_typedef (arg_type); |
14f9c5c9 AS |
5973 | type = TYPE_FIELD_TYPE (arg_type, fieldno); |
5974 | ||
4c4b4cd2 | 5975 | /* Handle packed fields. */ |
14f9c5c9 AS |
5976 | |
5977 | if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0) | |
5978 | { | |
5979 | int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno); | |
5980 | int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno); | |
d2e4a39e | 5981 | |
0fd88904 | 5982 | return ada_value_primitive_packed_val (arg1, value_contents (arg1), |
4c4b4cd2 PH |
5983 | offset + bit_pos / 8, |
5984 | bit_pos % 8, bit_size, type); | |
14f9c5c9 AS |
5985 | } |
5986 | else | |
5987 | return value_primitive_field (arg1, offset, fieldno, arg_type); | |
5988 | } | |
5989 | ||
52ce6436 PH |
5990 | /* Find field with name NAME in object of type TYPE. If found, |
5991 | set the following for each argument that is non-null: | |
5992 | - *FIELD_TYPE_P to the field's type; | |
5993 | - *BYTE_OFFSET_P to OFFSET + the byte offset of the field within | |
5994 | an object of that type; | |
5995 | - *BIT_OFFSET_P to the bit offset modulo byte size of the field; | |
5996 | - *BIT_SIZE_P to its size in bits if the field is packed, and | |
5997 | 0 otherwise; | |
5998 | If INDEX_P is non-null, increment *INDEX_P by the number of source-visible | |
5999 | fields up to but not including the desired field, or by the total | |
6000 | number of fields if not found. A NULL value of NAME never | |
6001 | matches; the function just counts visible fields in this case. | |
6002 | ||
6003 | Returns 1 if found, 0 otherwise. */ | |
6004 | ||
4c4b4cd2 | 6005 | static int |
76a01679 JB |
6006 | find_struct_field (char *name, struct type *type, int offset, |
6007 | struct type **field_type_p, | |
52ce6436 PH |
6008 | int *byte_offset_p, int *bit_offset_p, int *bit_size_p, |
6009 | int *index_p) | |
4c4b4cd2 PH |
6010 | { |
6011 | int i; | |
6012 | ||
61ee279c | 6013 | type = ada_check_typedef (type); |
76a01679 | 6014 | |
52ce6436 PH |
6015 | if (field_type_p != NULL) |
6016 | *field_type_p = NULL; | |
6017 | if (byte_offset_p != NULL) | |
d5d6fca5 | 6018 | *byte_offset_p = 0; |
52ce6436 PH |
6019 | if (bit_offset_p != NULL) |
6020 | *bit_offset_p = 0; | |
6021 | if (bit_size_p != NULL) | |
6022 | *bit_size_p = 0; | |
6023 | ||
6024 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) | |
4c4b4cd2 PH |
6025 | { |
6026 | int bit_pos = TYPE_FIELD_BITPOS (type, i); | |
6027 | int fld_offset = offset + bit_pos / 8; | |
6028 | char *t_field_name = TYPE_FIELD_NAME (type, i); | |
76a01679 | 6029 | |
4c4b4cd2 PH |
6030 | if (t_field_name == NULL) |
6031 | continue; | |
6032 | ||
52ce6436 | 6033 | else if (name != NULL && field_name_match (t_field_name, name)) |
76a01679 JB |
6034 | { |
6035 | int bit_size = TYPE_FIELD_BITSIZE (type, i); | |
52ce6436 PH |
6036 | if (field_type_p != NULL) |
6037 | *field_type_p = TYPE_FIELD_TYPE (type, i); | |
6038 | if (byte_offset_p != NULL) | |
6039 | *byte_offset_p = fld_offset; | |
6040 | if (bit_offset_p != NULL) | |
6041 | *bit_offset_p = bit_pos % 8; | |
6042 | if (bit_size_p != NULL) | |
6043 | *bit_size_p = bit_size; | |
76a01679 JB |
6044 | return 1; |
6045 | } | |
4c4b4cd2 PH |
6046 | else if (ada_is_wrapper_field (type, i)) |
6047 | { | |
52ce6436 PH |
6048 | if (find_struct_field (name, TYPE_FIELD_TYPE (type, i), fld_offset, |
6049 | field_type_p, byte_offset_p, bit_offset_p, | |
6050 | bit_size_p, index_p)) | |
76a01679 JB |
6051 | return 1; |
6052 | } | |
4c4b4cd2 PH |
6053 | else if (ada_is_variant_part (type, i)) |
6054 | { | |
52ce6436 PH |
6055 | /* PNH: Wait. Do we ever execute this section, or is ARG always of |
6056 | fixed type?? */ | |
4c4b4cd2 | 6057 | int j; |
52ce6436 PH |
6058 | struct type *field_type |
6059 | = ada_check_typedef (TYPE_FIELD_TYPE (type, i)); | |
4c4b4cd2 | 6060 | |
52ce6436 | 6061 | for (j = 0; j < TYPE_NFIELDS (field_type); j += 1) |
4c4b4cd2 | 6062 | { |
76a01679 JB |
6063 | if (find_struct_field (name, TYPE_FIELD_TYPE (field_type, j), |
6064 | fld_offset | |
6065 | + TYPE_FIELD_BITPOS (field_type, j) / 8, | |
6066 | field_type_p, byte_offset_p, | |
52ce6436 | 6067 | bit_offset_p, bit_size_p, index_p)) |
76a01679 | 6068 | return 1; |
4c4b4cd2 PH |
6069 | } |
6070 | } | |
52ce6436 PH |
6071 | else if (index_p != NULL) |
6072 | *index_p += 1; | |
4c4b4cd2 PH |
6073 | } |
6074 | return 0; | |
6075 | } | |
6076 | ||
52ce6436 | 6077 | /* Number of user-visible fields in record type TYPE. */ |
4c4b4cd2 | 6078 | |
52ce6436 PH |
6079 | static int |
6080 | num_visible_fields (struct type *type) | |
6081 | { | |
6082 | int n; | |
6083 | n = 0; | |
6084 | find_struct_field (NULL, type, 0, NULL, NULL, NULL, NULL, &n); | |
6085 | return n; | |
6086 | } | |
14f9c5c9 | 6087 | |
4c4b4cd2 | 6088 | /* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes, |
14f9c5c9 AS |
6089 | and search in it assuming it has (class) type TYPE. |
6090 | If found, return value, else return NULL. | |
6091 | ||
4c4b4cd2 | 6092 | Searches recursively through wrapper fields (e.g., '_parent'). */ |
14f9c5c9 | 6093 | |
4c4b4cd2 | 6094 | static struct value * |
d2e4a39e | 6095 | ada_search_struct_field (char *name, struct value *arg, int offset, |
4c4b4cd2 | 6096 | struct type *type) |
14f9c5c9 AS |
6097 | { |
6098 | int i; | |
61ee279c | 6099 | type = ada_check_typedef (type); |
14f9c5c9 | 6100 | |
52ce6436 | 6101 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) |
14f9c5c9 AS |
6102 | { |
6103 | char *t_field_name = TYPE_FIELD_NAME (type, i); | |
6104 | ||
6105 | if (t_field_name == NULL) | |
4c4b4cd2 | 6106 | continue; |
14f9c5c9 AS |
6107 | |
6108 | else if (field_name_match (t_field_name, name)) | |
4c4b4cd2 | 6109 | return ada_value_primitive_field (arg, offset, i, type); |
14f9c5c9 AS |
6110 | |
6111 | else if (ada_is_wrapper_field (type, i)) | |
4c4b4cd2 | 6112 | { |
06d5cf63 JB |
6113 | struct value *v = /* Do not let indent join lines here. */ |
6114 | ada_search_struct_field (name, arg, | |
6115 | offset + TYPE_FIELD_BITPOS (type, i) / 8, | |
6116 | TYPE_FIELD_TYPE (type, i)); | |
4c4b4cd2 PH |
6117 | if (v != NULL) |
6118 | return v; | |
6119 | } | |
14f9c5c9 AS |
6120 | |
6121 | else if (ada_is_variant_part (type, i)) | |
4c4b4cd2 | 6122 | { |
52ce6436 | 6123 | /* PNH: Do we ever get here? See find_struct_field. */ |
4c4b4cd2 | 6124 | int j; |
61ee279c | 6125 | struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i)); |
4c4b4cd2 PH |
6126 | int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8; |
6127 | ||
52ce6436 | 6128 | for (j = 0; j < TYPE_NFIELDS (field_type); j += 1) |
4c4b4cd2 | 6129 | { |
06d5cf63 JB |
6130 | struct value *v = ada_search_struct_field /* Force line break. */ |
6131 | (name, arg, | |
6132 | var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8, | |
6133 | TYPE_FIELD_TYPE (field_type, j)); | |
4c4b4cd2 PH |
6134 | if (v != NULL) |
6135 | return v; | |
6136 | } | |
6137 | } | |
14f9c5c9 AS |
6138 | } |
6139 | return NULL; | |
6140 | } | |
d2e4a39e | 6141 | |
52ce6436 PH |
6142 | static struct value *ada_index_struct_field_1 (int *, struct value *, |
6143 | int, struct type *); | |
6144 | ||
6145 | ||
6146 | /* Return field #INDEX in ARG, where the index is that returned by | |
6147 | * find_struct_field through its INDEX_P argument. Adjust the address | |
6148 | * of ARG by OFFSET bytes, and search in it assuming it has (class) type TYPE. | |
6149 | * If found, return value, else return NULL. */ | |
6150 | ||
6151 | static struct value * | |
6152 | ada_index_struct_field (int index, struct value *arg, int offset, | |
6153 | struct type *type) | |
6154 | { | |
6155 | return ada_index_struct_field_1 (&index, arg, offset, type); | |
6156 | } | |
6157 | ||
6158 | ||
6159 | /* Auxiliary function for ada_index_struct_field. Like | |
6160 | * ada_index_struct_field, but takes index from *INDEX_P and modifies | |
6161 | * *INDEX_P. */ | |
6162 | ||
6163 | static struct value * | |
6164 | ada_index_struct_field_1 (int *index_p, struct value *arg, int offset, | |
6165 | struct type *type) | |
6166 | { | |
6167 | int i; | |
6168 | type = ada_check_typedef (type); | |
6169 | ||
6170 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) | |
6171 | { | |
6172 | if (TYPE_FIELD_NAME (type, i) == NULL) | |
6173 | continue; | |
6174 | else if (ada_is_wrapper_field (type, i)) | |
6175 | { | |
6176 | struct value *v = /* Do not let indent join lines here. */ | |
6177 | ada_index_struct_field_1 (index_p, arg, | |
6178 | offset + TYPE_FIELD_BITPOS (type, i) / 8, | |
6179 | TYPE_FIELD_TYPE (type, i)); | |
6180 | if (v != NULL) | |
6181 | return v; | |
6182 | } | |
6183 | ||
6184 | else if (ada_is_variant_part (type, i)) | |
6185 | { | |
6186 | /* PNH: Do we ever get here? See ada_search_struct_field, | |
6187 | find_struct_field. */ | |
6188 | error (_("Cannot assign this kind of variant record")); | |
6189 | } | |
6190 | else if (*index_p == 0) | |
6191 | return ada_value_primitive_field (arg, offset, i, type); | |
6192 | else | |
6193 | *index_p -= 1; | |
6194 | } | |
6195 | return NULL; | |
6196 | } | |
6197 | ||
4c4b4cd2 PH |
6198 | /* Given ARG, a value of type (pointer or reference to a)* |
6199 | structure/union, extract the component named NAME from the ultimate | |
6200 | target structure/union and return it as a value with its | |
6201 | appropriate type. If ARG is a pointer or reference and the field | |
6202 | is not packed, returns a reference to the field, otherwise the | |
6203 | value of the field (an lvalue if ARG is an lvalue). | |
14f9c5c9 | 6204 | |
4c4b4cd2 PH |
6205 | The routine searches for NAME among all members of the structure itself |
6206 | and (recursively) among all members of any wrapper members | |
14f9c5c9 AS |
6207 | (e.g., '_parent'). |
6208 | ||
03ee6b2e PH |
6209 | If NO_ERR, then simply return NULL in case of error, rather than |
6210 | calling error. */ | |
14f9c5c9 | 6211 | |
d2e4a39e | 6212 | struct value * |
03ee6b2e | 6213 | ada_value_struct_elt (struct value *arg, char *name, int no_err) |
14f9c5c9 | 6214 | { |
4c4b4cd2 | 6215 | struct type *t, *t1; |
d2e4a39e | 6216 | struct value *v; |
14f9c5c9 | 6217 | |
4c4b4cd2 | 6218 | v = NULL; |
df407dfe | 6219 | t1 = t = ada_check_typedef (value_type (arg)); |
4c4b4cd2 PH |
6220 | if (TYPE_CODE (t) == TYPE_CODE_REF) |
6221 | { | |
6222 | t1 = TYPE_TARGET_TYPE (t); | |
6223 | if (t1 == NULL) | |
03ee6b2e | 6224 | goto BadValue; |
61ee279c | 6225 | t1 = ada_check_typedef (t1); |
4c4b4cd2 | 6226 | if (TYPE_CODE (t1) == TYPE_CODE_PTR) |
76a01679 | 6227 | { |
994b9211 | 6228 | arg = coerce_ref (arg); |
76a01679 JB |
6229 | t = t1; |
6230 | } | |
4c4b4cd2 | 6231 | } |
14f9c5c9 | 6232 | |
4c4b4cd2 PH |
6233 | while (TYPE_CODE (t) == TYPE_CODE_PTR) |
6234 | { | |
6235 | t1 = TYPE_TARGET_TYPE (t); | |
6236 | if (t1 == NULL) | |
03ee6b2e | 6237 | goto BadValue; |
61ee279c | 6238 | t1 = ada_check_typedef (t1); |
4c4b4cd2 | 6239 | if (TYPE_CODE (t1) == TYPE_CODE_PTR) |
76a01679 JB |
6240 | { |
6241 | arg = value_ind (arg); | |
6242 | t = t1; | |
6243 | } | |
4c4b4cd2 | 6244 | else |
76a01679 | 6245 | break; |
4c4b4cd2 | 6246 | } |
14f9c5c9 | 6247 | |
4c4b4cd2 | 6248 | if (TYPE_CODE (t1) != TYPE_CODE_STRUCT && TYPE_CODE (t1) != TYPE_CODE_UNION) |
03ee6b2e | 6249 | goto BadValue; |
14f9c5c9 | 6250 | |
4c4b4cd2 PH |
6251 | if (t1 == t) |
6252 | v = ada_search_struct_field (name, arg, 0, t); | |
6253 | else | |
6254 | { | |
6255 | int bit_offset, bit_size, byte_offset; | |
6256 | struct type *field_type; | |
6257 | CORE_ADDR address; | |
6258 | ||
76a01679 JB |
6259 | if (TYPE_CODE (t) == TYPE_CODE_PTR) |
6260 | address = value_as_address (arg); | |
4c4b4cd2 | 6261 | else |
0fd88904 | 6262 | address = unpack_pointer (t, value_contents (arg)); |
14f9c5c9 | 6263 | |
1ed6ede0 | 6264 | t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL, address, NULL, 1); |
76a01679 JB |
6265 | if (find_struct_field (name, t1, 0, |
6266 | &field_type, &byte_offset, &bit_offset, | |
52ce6436 | 6267 | &bit_size, NULL)) |
76a01679 JB |
6268 | { |
6269 | if (bit_size != 0) | |
6270 | { | |
714e53ab PH |
6271 | if (TYPE_CODE (t) == TYPE_CODE_REF) |
6272 | arg = ada_coerce_ref (arg); | |
6273 | else | |
6274 | arg = ada_value_ind (arg); | |
76a01679 JB |
6275 | v = ada_value_primitive_packed_val (arg, NULL, byte_offset, |
6276 | bit_offset, bit_size, | |
6277 | field_type); | |
6278 | } | |
6279 | else | |
6280 | v = value_from_pointer (lookup_reference_type (field_type), | |
6281 | address + byte_offset); | |
6282 | } | |
6283 | } | |
6284 | ||
03ee6b2e PH |
6285 | if (v != NULL || no_err) |
6286 | return v; | |
6287 | else | |
323e0a4a | 6288 | error (_("There is no member named %s."), name); |
14f9c5c9 | 6289 | |
03ee6b2e PH |
6290 | BadValue: |
6291 | if (no_err) | |
6292 | return NULL; | |
6293 | else | |
6294 | error (_("Attempt to extract a component of a value that is not a record.")); | |
14f9c5c9 AS |
6295 | } |
6296 | ||
6297 | /* Given a type TYPE, look up the type of the component of type named NAME. | |
4c4b4cd2 PH |
6298 | If DISPP is non-null, add its byte displacement from the beginning of a |
6299 | structure (pointed to by a value) of type TYPE to *DISPP (does not | |
14f9c5c9 AS |
6300 | work for packed fields). |
6301 | ||
6302 | Matches any field whose name has NAME as a prefix, possibly | |
4c4b4cd2 | 6303 | followed by "___". |
14f9c5c9 | 6304 | |
4c4b4cd2 PH |
6305 | TYPE can be either a struct or union. If REFOK, TYPE may also |
6306 | be a (pointer or reference)+ to a struct or union, and the | |
6307 | ultimate target type will be searched. | |
14f9c5c9 AS |
6308 | |
6309 | Looks recursively into variant clauses and parent types. | |
6310 | ||
4c4b4cd2 PH |
6311 | If NOERR is nonzero, return NULL if NAME is not suitably defined or |
6312 | TYPE is not a type of the right kind. */ | |
14f9c5c9 | 6313 | |
4c4b4cd2 | 6314 | static struct type * |
76a01679 JB |
6315 | ada_lookup_struct_elt_type (struct type *type, char *name, int refok, |
6316 | int noerr, int *dispp) | |
14f9c5c9 AS |
6317 | { |
6318 | int i; | |
6319 | ||
6320 | if (name == NULL) | |
6321 | goto BadName; | |
6322 | ||
76a01679 | 6323 | if (refok && type != NULL) |
4c4b4cd2 PH |
6324 | while (1) |
6325 | { | |
61ee279c | 6326 | type = ada_check_typedef (type); |
76a01679 JB |
6327 | if (TYPE_CODE (type) != TYPE_CODE_PTR |
6328 | && TYPE_CODE (type) != TYPE_CODE_REF) | |
6329 | break; | |
6330 | type = TYPE_TARGET_TYPE (type); | |
4c4b4cd2 | 6331 | } |
14f9c5c9 | 6332 | |
76a01679 | 6333 | if (type == NULL |
1265e4aa JB |
6334 | || (TYPE_CODE (type) != TYPE_CODE_STRUCT |
6335 | && TYPE_CODE (type) != TYPE_CODE_UNION)) | |
14f9c5c9 | 6336 | { |
4c4b4cd2 | 6337 | if (noerr) |
76a01679 | 6338 | return NULL; |
4c4b4cd2 | 6339 | else |
76a01679 JB |
6340 | { |
6341 | target_terminal_ours (); | |
6342 | gdb_flush (gdb_stdout); | |
323e0a4a AC |
6343 | if (type == NULL) |
6344 | error (_("Type (null) is not a structure or union type")); | |
6345 | else | |
6346 | { | |
6347 | /* XXX: type_sprint */ | |
6348 | fprintf_unfiltered (gdb_stderr, _("Type ")); | |
6349 | type_print (type, "", gdb_stderr, -1); | |
6350 | error (_(" is not a structure or union type")); | |
6351 | } | |
76a01679 | 6352 | } |
14f9c5c9 AS |
6353 | } |
6354 | ||
6355 | type = to_static_fixed_type (type); | |
6356 | ||
6357 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) | |
6358 | { | |
6359 | char *t_field_name = TYPE_FIELD_NAME (type, i); | |
6360 | struct type *t; | |
6361 | int disp; | |
d2e4a39e | 6362 | |
14f9c5c9 | 6363 | if (t_field_name == NULL) |
4c4b4cd2 | 6364 | continue; |
14f9c5c9 AS |
6365 | |
6366 | else if (field_name_match (t_field_name, name)) | |
4c4b4cd2 PH |
6367 | { |
6368 | if (dispp != NULL) | |
6369 | *dispp += TYPE_FIELD_BITPOS (type, i) / 8; | |
61ee279c | 6370 | return ada_check_typedef (TYPE_FIELD_TYPE (type, i)); |
4c4b4cd2 | 6371 | } |
14f9c5c9 AS |
6372 | |
6373 | else if (ada_is_wrapper_field (type, i)) | |
4c4b4cd2 PH |
6374 | { |
6375 | disp = 0; | |
6376 | t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (type, i), name, | |
6377 | 0, 1, &disp); | |
6378 | if (t != NULL) | |
6379 | { | |
6380 | if (dispp != NULL) | |
6381 | *dispp += disp + TYPE_FIELD_BITPOS (type, i) / 8; | |
6382 | return t; | |
6383 | } | |
6384 | } | |
14f9c5c9 AS |
6385 | |
6386 | else if (ada_is_variant_part (type, i)) | |
4c4b4cd2 PH |
6387 | { |
6388 | int j; | |
61ee279c | 6389 | struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i)); |
4c4b4cd2 PH |
6390 | |
6391 | for (j = TYPE_NFIELDS (field_type) - 1; j >= 0; j -= 1) | |
6392 | { | |
b1f33ddd JB |
6393 | /* FIXME pnh 2008/01/26: We check for a field that is |
6394 | NOT wrapped in a struct, since the compiler sometimes | |
6395 | generates these for unchecked variant types. Revisit | |
6396 | if the compiler changes this practice. */ | |
6397 | char *v_field_name = TYPE_FIELD_NAME (field_type, j); | |
4c4b4cd2 | 6398 | disp = 0; |
b1f33ddd JB |
6399 | if (v_field_name != NULL |
6400 | && field_name_match (v_field_name, name)) | |
6401 | t = ada_check_typedef (TYPE_FIELD_TYPE (field_type, j)); | |
6402 | else | |
6403 | t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (field_type, j), | |
6404 | name, 0, 1, &disp); | |
6405 | ||
4c4b4cd2 PH |
6406 | if (t != NULL) |
6407 | { | |
6408 | if (dispp != NULL) | |
6409 | *dispp += disp + TYPE_FIELD_BITPOS (type, i) / 8; | |
6410 | return t; | |
6411 | } | |
6412 | } | |
6413 | } | |
14f9c5c9 AS |
6414 | |
6415 | } | |
6416 | ||
6417 | BadName: | |
d2e4a39e | 6418 | if (!noerr) |
14f9c5c9 AS |
6419 | { |
6420 | target_terminal_ours (); | |
6421 | gdb_flush (gdb_stdout); | |
323e0a4a AC |
6422 | if (name == NULL) |
6423 | { | |
6424 | /* XXX: type_sprint */ | |
6425 | fprintf_unfiltered (gdb_stderr, _("Type ")); | |
6426 | type_print (type, "", gdb_stderr, -1); | |
6427 | error (_(" has no component named <null>")); | |
6428 | } | |
6429 | else | |
6430 | { | |
6431 | /* XXX: type_sprint */ | |
6432 | fprintf_unfiltered (gdb_stderr, _("Type ")); | |
6433 | type_print (type, "", gdb_stderr, -1); | |
6434 | error (_(" has no component named %s"), name); | |
6435 | } | |
14f9c5c9 AS |
6436 | } |
6437 | ||
6438 | return NULL; | |
6439 | } | |
6440 | ||
b1f33ddd JB |
6441 | /* Assuming that VAR_TYPE is the type of a variant part of a record (a union), |
6442 | within a value of type OUTER_TYPE, return true iff VAR_TYPE | |
6443 | represents an unchecked union (that is, the variant part of a | |
6444 | record that is named in an Unchecked_Union pragma). */ | |
6445 | ||
6446 | static int | |
6447 | is_unchecked_variant (struct type *var_type, struct type *outer_type) | |
6448 | { | |
6449 | char *discrim_name = ada_variant_discrim_name (var_type); | |
6450 | return (ada_lookup_struct_elt_type (outer_type, discrim_name, 0, 1, NULL) | |
6451 | == NULL); | |
6452 | } | |
6453 | ||
6454 | ||
14f9c5c9 AS |
6455 | /* Assuming that VAR_TYPE is the type of a variant part of a record (a union), |
6456 | within a value of type OUTER_TYPE that is stored in GDB at | |
4c4b4cd2 PH |
6457 | OUTER_VALADDR, determine which variant clause (field number in VAR_TYPE, |
6458 | numbering from 0) is applicable. Returns -1 if none are. */ | |
14f9c5c9 | 6459 | |
d2e4a39e | 6460 | int |
ebf56fd3 | 6461 | ada_which_variant_applies (struct type *var_type, struct type *outer_type, |
fc1a4b47 | 6462 | const gdb_byte *outer_valaddr) |
14f9c5c9 AS |
6463 | { |
6464 | int others_clause; | |
6465 | int i; | |
d2e4a39e | 6466 | char *discrim_name = ada_variant_discrim_name (var_type); |
0c281816 JB |
6467 | struct value *outer; |
6468 | struct value *discrim; | |
14f9c5c9 AS |
6469 | LONGEST discrim_val; |
6470 | ||
0c281816 JB |
6471 | outer = value_from_contents_and_address (outer_type, outer_valaddr, 0); |
6472 | discrim = ada_value_struct_elt (outer, discrim_name, 1); | |
6473 | if (discrim == NULL) | |
14f9c5c9 | 6474 | return -1; |
0c281816 | 6475 | discrim_val = value_as_long (discrim); |
14f9c5c9 AS |
6476 | |
6477 | others_clause = -1; | |
6478 | for (i = 0; i < TYPE_NFIELDS (var_type); i += 1) | |
6479 | { | |
6480 | if (ada_is_others_clause (var_type, i)) | |
4c4b4cd2 | 6481 | others_clause = i; |
14f9c5c9 | 6482 | else if (ada_in_variant (discrim_val, var_type, i)) |
4c4b4cd2 | 6483 | return i; |
14f9c5c9 AS |
6484 | } |
6485 | ||
6486 | return others_clause; | |
6487 | } | |
d2e4a39e | 6488 | \f |
14f9c5c9 AS |
6489 | |
6490 | ||
4c4b4cd2 | 6491 | /* Dynamic-Sized Records */ |
14f9c5c9 AS |
6492 | |
6493 | /* Strategy: The type ostensibly attached to a value with dynamic size | |
6494 | (i.e., a size that is not statically recorded in the debugging | |
6495 | data) does not accurately reflect the size or layout of the value. | |
6496 | Our strategy is to convert these values to values with accurate, | |
4c4b4cd2 | 6497 | conventional types that are constructed on the fly. */ |
14f9c5c9 AS |
6498 | |
6499 | /* There is a subtle and tricky problem here. In general, we cannot | |
6500 | determine the size of dynamic records without its data. However, | |
6501 | the 'struct value' data structure, which GDB uses to represent | |
6502 | quantities in the inferior process (the target), requires the size | |
6503 | of the type at the time of its allocation in order to reserve space | |
6504 | for GDB's internal copy of the data. That's why the | |
6505 | 'to_fixed_xxx_type' routines take (target) addresses as parameters, | |
4c4b4cd2 | 6506 | rather than struct value*s. |
14f9c5c9 AS |
6507 | |
6508 | However, GDB's internal history variables ($1, $2, etc.) are | |
6509 | struct value*s containing internal copies of the data that are not, in | |
6510 | general, the same as the data at their corresponding addresses in | |
6511 | the target. Fortunately, the types we give to these values are all | |
6512 | conventional, fixed-size types (as per the strategy described | |
6513 | above), so that we don't usually have to perform the | |
6514 | 'to_fixed_xxx_type' conversions to look at their values. | |
6515 | Unfortunately, there is one exception: if one of the internal | |
6516 | history variables is an array whose elements are unconstrained | |
6517 | records, then we will need to create distinct fixed types for each | |
6518 | element selected. */ | |
6519 | ||
6520 | /* The upshot of all of this is that many routines take a (type, host | |
6521 | address, target address) triple as arguments to represent a value. | |
6522 | The host address, if non-null, is supposed to contain an internal | |
6523 | copy of the relevant data; otherwise, the program is to consult the | |
4c4b4cd2 | 6524 | target at the target address. */ |
14f9c5c9 AS |
6525 | |
6526 | /* Assuming that VAL0 represents a pointer value, the result of | |
6527 | dereferencing it. Differs from value_ind in its treatment of | |
4c4b4cd2 | 6528 | dynamic-sized types. */ |
14f9c5c9 | 6529 | |
d2e4a39e AS |
6530 | struct value * |
6531 | ada_value_ind (struct value *val0) | |
14f9c5c9 | 6532 | { |
d2e4a39e | 6533 | struct value *val = unwrap_value (value_ind (val0)); |
4c4b4cd2 | 6534 | return ada_to_fixed_value (val); |
14f9c5c9 AS |
6535 | } |
6536 | ||
6537 | /* The value resulting from dereferencing any "reference to" | |
4c4b4cd2 PH |
6538 | qualifiers on VAL0. */ |
6539 | ||
d2e4a39e AS |
6540 | static struct value * |
6541 | ada_coerce_ref (struct value *val0) | |
6542 | { | |
df407dfe | 6543 | if (TYPE_CODE (value_type (val0)) == TYPE_CODE_REF) |
d2e4a39e AS |
6544 | { |
6545 | struct value *val = val0; | |
994b9211 | 6546 | val = coerce_ref (val); |
d2e4a39e | 6547 | val = unwrap_value (val); |
4c4b4cd2 | 6548 | return ada_to_fixed_value (val); |
d2e4a39e AS |
6549 | } |
6550 | else | |
14f9c5c9 AS |
6551 | return val0; |
6552 | } | |
6553 | ||
6554 | /* Return OFF rounded upward if necessary to a multiple of | |
4c4b4cd2 | 6555 | ALIGNMENT (a power of 2). */ |
14f9c5c9 AS |
6556 | |
6557 | static unsigned int | |
ebf56fd3 | 6558 | align_value (unsigned int off, unsigned int alignment) |
14f9c5c9 AS |
6559 | { |
6560 | return (off + alignment - 1) & ~(alignment - 1); | |
6561 | } | |
6562 | ||
4c4b4cd2 | 6563 | /* Return the bit alignment required for field #F of template type TYPE. */ |
14f9c5c9 AS |
6564 | |
6565 | static unsigned int | |
ebf56fd3 | 6566 | field_alignment (struct type *type, int f) |
14f9c5c9 | 6567 | { |
d2e4a39e | 6568 | const char *name = TYPE_FIELD_NAME (type, f); |
64a1bf19 | 6569 | int len; |
14f9c5c9 AS |
6570 | int align_offset; |
6571 | ||
64a1bf19 JB |
6572 | /* The field name should never be null, unless the debugging information |
6573 | is somehow malformed. In this case, we assume the field does not | |
6574 | require any alignment. */ | |
6575 | if (name == NULL) | |
6576 | return 1; | |
6577 | ||
6578 | len = strlen (name); | |
6579 | ||
4c4b4cd2 PH |
6580 | if (!isdigit (name[len - 1])) |
6581 | return 1; | |
14f9c5c9 | 6582 | |
d2e4a39e | 6583 | if (isdigit (name[len - 2])) |
14f9c5c9 AS |
6584 | align_offset = len - 2; |
6585 | else | |
6586 | align_offset = len - 1; | |
6587 | ||
4c4b4cd2 | 6588 | if (align_offset < 7 || strncmp ("___XV", name + align_offset - 6, 5) != 0) |
14f9c5c9 AS |
6589 | return TARGET_CHAR_BIT; |
6590 | ||
4c4b4cd2 PH |
6591 | return atoi (name + align_offset) * TARGET_CHAR_BIT; |
6592 | } | |
6593 | ||
6594 | /* Find a symbol named NAME. Ignores ambiguity. */ | |
6595 | ||
6596 | struct symbol * | |
6597 | ada_find_any_symbol (const char *name) | |
6598 | { | |
6599 | struct symbol *sym; | |
6600 | ||
6601 | sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN); | |
6602 | if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF) | |
6603 | return sym; | |
6604 | ||
6605 | sym = standard_lookup (name, NULL, STRUCT_DOMAIN); | |
6606 | return sym; | |
14f9c5c9 AS |
6607 | } |
6608 | ||
6609 | /* Find a type named NAME. Ignores ambiguity. */ | |
4c4b4cd2 | 6610 | |
d2e4a39e | 6611 | struct type * |
ebf56fd3 | 6612 | ada_find_any_type (const char *name) |
14f9c5c9 | 6613 | { |
4c4b4cd2 | 6614 | struct symbol *sym = ada_find_any_symbol (name); |
14f9c5c9 | 6615 | |
14f9c5c9 AS |
6616 | if (sym != NULL) |
6617 | return SYMBOL_TYPE (sym); | |
6618 | ||
6619 | return NULL; | |
6620 | } | |
6621 | ||
aeb5907d JB |
6622 | /* Given NAME and an associated BLOCK, search all symbols for |
6623 | NAME suffixed with "___XR", which is the ``renaming'' symbol | |
4c4b4cd2 PH |
6624 | associated to NAME. Return this symbol if found, return |
6625 | NULL otherwise. */ | |
6626 | ||
6627 | struct symbol * | |
6628 | ada_find_renaming_symbol (const char *name, struct block *block) | |
aeb5907d JB |
6629 | { |
6630 | struct symbol *sym; | |
6631 | ||
6632 | sym = find_old_style_renaming_symbol (name, block); | |
6633 | ||
6634 | if (sym != NULL) | |
6635 | return sym; | |
6636 | ||
6637 | /* Not right yet. FIXME pnh 7/20/2007. */ | |
6638 | sym = ada_find_any_symbol (name); | |
6639 | if (sym != NULL && strstr (SYMBOL_LINKAGE_NAME (sym), "___XR") != NULL) | |
6640 | return sym; | |
6641 | else | |
6642 | return NULL; | |
6643 | } | |
6644 | ||
6645 | static struct symbol * | |
6646 | find_old_style_renaming_symbol (const char *name, struct block *block) | |
4c4b4cd2 | 6647 | { |
7f0df278 | 6648 | const struct symbol *function_sym = block_linkage_function (block); |
4c4b4cd2 PH |
6649 | char *rename; |
6650 | ||
6651 | if (function_sym != NULL) | |
6652 | { | |
6653 | /* If the symbol is defined inside a function, NAME is not fully | |
6654 | qualified. This means we need to prepend the function name | |
6655 | as well as adding the ``___XR'' suffix to build the name of | |
6656 | the associated renaming symbol. */ | |
6657 | char *function_name = SYMBOL_LINKAGE_NAME (function_sym); | |
529cad9c PH |
6658 | /* Function names sometimes contain suffixes used |
6659 | for instance to qualify nested subprograms. When building | |
6660 | the XR type name, we need to make sure that this suffix is | |
6661 | not included. So do not include any suffix in the function | |
6662 | name length below. */ | |
6663 | const int function_name_len = ada_name_prefix_len (function_name); | |
76a01679 JB |
6664 | const int rename_len = function_name_len + 2 /* "__" */ |
6665 | + strlen (name) + 6 /* "___XR\0" */ ; | |
4c4b4cd2 | 6666 | |
529cad9c PH |
6667 | /* Strip the suffix if necessary. */ |
6668 | function_name[function_name_len] = '\0'; | |
6669 | ||
4c4b4cd2 PH |
6670 | /* Library-level functions are a special case, as GNAT adds |
6671 | a ``_ada_'' prefix to the function name to avoid namespace | |
aeb5907d | 6672 | pollution. However, the renaming symbols themselves do not |
4c4b4cd2 PH |
6673 | have this prefix, so we need to skip this prefix if present. */ |
6674 | if (function_name_len > 5 /* "_ada_" */ | |
6675 | && strstr (function_name, "_ada_") == function_name) | |
6676 | function_name = function_name + 5; | |
6677 | ||
6678 | rename = (char *) alloca (rename_len * sizeof (char)); | |
6679 | sprintf (rename, "%s__%s___XR", function_name, name); | |
6680 | } | |
6681 | else | |
6682 | { | |
6683 | const int rename_len = strlen (name) + 6; | |
6684 | rename = (char *) alloca (rename_len * sizeof (char)); | |
6685 | sprintf (rename, "%s___XR", name); | |
6686 | } | |
6687 | ||
6688 | return ada_find_any_symbol (rename); | |
6689 | } | |
6690 | ||
14f9c5c9 | 6691 | /* Because of GNAT encoding conventions, several GDB symbols may match a |
4c4b4cd2 | 6692 | given type name. If the type denoted by TYPE0 is to be preferred to |
14f9c5c9 | 6693 | that of TYPE1 for purposes of type printing, return non-zero; |
4c4b4cd2 PH |
6694 | otherwise return 0. */ |
6695 | ||
14f9c5c9 | 6696 | int |
d2e4a39e | 6697 | ada_prefer_type (struct type *type0, struct type *type1) |
14f9c5c9 AS |
6698 | { |
6699 | if (type1 == NULL) | |
6700 | return 1; | |
6701 | else if (type0 == NULL) | |
6702 | return 0; | |
6703 | else if (TYPE_CODE (type1) == TYPE_CODE_VOID) | |
6704 | return 1; | |
6705 | else if (TYPE_CODE (type0) == TYPE_CODE_VOID) | |
6706 | return 0; | |
4c4b4cd2 PH |
6707 | else if (TYPE_NAME (type1) == NULL && TYPE_NAME (type0) != NULL) |
6708 | return 1; | |
14f9c5c9 AS |
6709 | else if (ada_is_packed_array_type (type0)) |
6710 | return 1; | |
4c4b4cd2 PH |
6711 | else if (ada_is_array_descriptor_type (type0) |
6712 | && !ada_is_array_descriptor_type (type1)) | |
14f9c5c9 | 6713 | return 1; |
aeb5907d JB |
6714 | else |
6715 | { | |
6716 | const char *type0_name = type_name_no_tag (type0); | |
6717 | const char *type1_name = type_name_no_tag (type1); | |
6718 | ||
6719 | if (type0_name != NULL && strstr (type0_name, "___XR") != NULL | |
6720 | && (type1_name == NULL || strstr (type1_name, "___XR") == NULL)) | |
6721 | return 1; | |
6722 | } | |
14f9c5c9 AS |
6723 | return 0; |
6724 | } | |
6725 | ||
6726 | /* The name of TYPE, which is either its TYPE_NAME, or, if that is | |
4c4b4cd2 PH |
6727 | null, its TYPE_TAG_NAME. Null if TYPE is null. */ |
6728 | ||
d2e4a39e AS |
6729 | char * |
6730 | ada_type_name (struct type *type) | |
14f9c5c9 | 6731 | { |
d2e4a39e | 6732 | if (type == NULL) |
14f9c5c9 AS |
6733 | return NULL; |
6734 | else if (TYPE_NAME (type) != NULL) | |
6735 | return TYPE_NAME (type); | |
6736 | else | |
6737 | return TYPE_TAG_NAME (type); | |
6738 | } | |
6739 | ||
6740 | /* Find a parallel type to TYPE whose name is formed by appending | |
4c4b4cd2 | 6741 | SUFFIX to the name of TYPE. */ |
14f9c5c9 | 6742 | |
d2e4a39e | 6743 | struct type * |
ebf56fd3 | 6744 | ada_find_parallel_type (struct type *type, const char *suffix) |
14f9c5c9 | 6745 | { |
d2e4a39e | 6746 | static char *name; |
14f9c5c9 | 6747 | static size_t name_len = 0; |
14f9c5c9 | 6748 | int len; |
d2e4a39e AS |
6749 | char *typename = ada_type_name (type); |
6750 | ||
14f9c5c9 AS |
6751 | if (typename == NULL) |
6752 | return NULL; | |
6753 | ||
6754 | len = strlen (typename); | |
6755 | ||
d2e4a39e | 6756 | GROW_VECT (name, name_len, len + strlen (suffix) + 1); |
14f9c5c9 AS |
6757 | |
6758 | strcpy (name, typename); | |
6759 | strcpy (name + len, suffix); | |
6760 | ||
6761 | return ada_find_any_type (name); | |
6762 | } | |
6763 | ||
6764 | ||
6765 | /* If TYPE is a variable-size record type, return the corresponding template | |
4c4b4cd2 | 6766 | type describing its fields. Otherwise, return NULL. */ |
14f9c5c9 | 6767 | |
d2e4a39e AS |
6768 | static struct type * |
6769 | dynamic_template_type (struct type *type) | |
14f9c5c9 | 6770 | { |
61ee279c | 6771 | type = ada_check_typedef (type); |
14f9c5c9 AS |
6772 | |
6773 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT | |
d2e4a39e | 6774 | || ada_type_name (type) == NULL) |
14f9c5c9 | 6775 | return NULL; |
d2e4a39e | 6776 | else |
14f9c5c9 AS |
6777 | { |
6778 | int len = strlen (ada_type_name (type)); | |
4c4b4cd2 PH |
6779 | if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0) |
6780 | return type; | |
14f9c5c9 | 6781 | else |
4c4b4cd2 | 6782 | return ada_find_parallel_type (type, "___XVE"); |
14f9c5c9 AS |
6783 | } |
6784 | } | |
6785 | ||
6786 | /* Assuming that TEMPL_TYPE is a union or struct type, returns | |
4c4b4cd2 | 6787 | non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */ |
14f9c5c9 | 6788 | |
d2e4a39e AS |
6789 | static int |
6790 | is_dynamic_field (struct type *templ_type, int field_num) | |
14f9c5c9 AS |
6791 | { |
6792 | const char *name = TYPE_FIELD_NAME (templ_type, field_num); | |
d2e4a39e | 6793 | return name != NULL |
14f9c5c9 AS |
6794 | && TYPE_CODE (TYPE_FIELD_TYPE (templ_type, field_num)) == TYPE_CODE_PTR |
6795 | && strstr (name, "___XVL") != NULL; | |
6796 | } | |
6797 | ||
4c4b4cd2 PH |
6798 | /* The index of the variant field of TYPE, or -1 if TYPE does not |
6799 | represent a variant record type. */ | |
14f9c5c9 | 6800 | |
d2e4a39e | 6801 | static int |
4c4b4cd2 | 6802 | variant_field_index (struct type *type) |
14f9c5c9 AS |
6803 | { |
6804 | int f; | |
6805 | ||
4c4b4cd2 PH |
6806 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT) |
6807 | return -1; | |
6808 | ||
6809 | for (f = 0; f < TYPE_NFIELDS (type); f += 1) | |
6810 | { | |
6811 | if (ada_is_variant_part (type, f)) | |
6812 | return f; | |
6813 | } | |
6814 | return -1; | |
14f9c5c9 AS |
6815 | } |
6816 | ||
4c4b4cd2 PH |
6817 | /* A record type with no fields. */ |
6818 | ||
d2e4a39e AS |
6819 | static struct type * |
6820 | empty_record (struct objfile *objfile) | |
14f9c5c9 | 6821 | { |
d2e4a39e | 6822 | struct type *type = alloc_type (objfile); |
14f9c5c9 AS |
6823 | TYPE_CODE (type) = TYPE_CODE_STRUCT; |
6824 | TYPE_NFIELDS (type) = 0; | |
6825 | TYPE_FIELDS (type) = NULL; | |
b1f33ddd | 6826 | INIT_CPLUS_SPECIFIC (type); |
14f9c5c9 AS |
6827 | TYPE_NAME (type) = "<empty>"; |
6828 | TYPE_TAG_NAME (type) = NULL; | |
14f9c5c9 AS |
6829 | TYPE_LENGTH (type) = 0; |
6830 | return type; | |
6831 | } | |
6832 | ||
6833 | /* An ordinary record type (with fixed-length fields) that describes | |
4c4b4cd2 PH |
6834 | the value of type TYPE at VALADDR or ADDRESS (see comments at |
6835 | the beginning of this section) VAL according to GNAT conventions. | |
6836 | DVAL0 should describe the (portion of a) record that contains any | |
df407dfe | 6837 | necessary discriminants. It should be NULL if value_type (VAL) is |
14f9c5c9 AS |
6838 | an outer-level type (i.e., as opposed to a branch of a variant.) A |
6839 | variant field (unless unchecked) is replaced by a particular branch | |
4c4b4cd2 | 6840 | of the variant. |
14f9c5c9 | 6841 | |
4c4b4cd2 PH |
6842 | If not KEEP_DYNAMIC_FIELDS, then all fields whose position or |
6843 | length are not statically known are discarded. As a consequence, | |
6844 | VALADDR, ADDRESS and DVAL0 are ignored. | |
6845 | ||
6846 | NOTE: Limitations: For now, we assume that dynamic fields and | |
6847 | variants occupy whole numbers of bytes. However, they need not be | |
6848 | byte-aligned. */ | |
6849 | ||
6850 | struct type * | |
10a2c479 | 6851 | ada_template_to_fixed_record_type_1 (struct type *type, |
fc1a4b47 | 6852 | const gdb_byte *valaddr, |
4c4b4cd2 PH |
6853 | CORE_ADDR address, struct value *dval0, |
6854 | int keep_dynamic_fields) | |
14f9c5c9 | 6855 | { |
d2e4a39e AS |
6856 | struct value *mark = value_mark (); |
6857 | struct value *dval; | |
6858 | struct type *rtype; | |
14f9c5c9 | 6859 | int nfields, bit_len; |
4c4b4cd2 | 6860 | int variant_field; |
14f9c5c9 | 6861 | long off; |
4c4b4cd2 | 6862 | int fld_bit_len, bit_incr; |
14f9c5c9 AS |
6863 | int f; |
6864 | ||
4c4b4cd2 PH |
6865 | /* Compute the number of fields in this record type that are going |
6866 | to be processed: unless keep_dynamic_fields, this includes only | |
6867 | fields whose position and length are static will be processed. */ | |
6868 | if (keep_dynamic_fields) | |
6869 | nfields = TYPE_NFIELDS (type); | |
6870 | else | |
6871 | { | |
6872 | nfields = 0; | |
76a01679 | 6873 | while (nfields < TYPE_NFIELDS (type) |
4c4b4cd2 PH |
6874 | && !ada_is_variant_part (type, nfields) |
6875 | && !is_dynamic_field (type, nfields)) | |
6876 | nfields++; | |
6877 | } | |
6878 | ||
14f9c5c9 AS |
6879 | rtype = alloc_type (TYPE_OBJFILE (type)); |
6880 | TYPE_CODE (rtype) = TYPE_CODE_STRUCT; | |
6881 | INIT_CPLUS_SPECIFIC (rtype); | |
6882 | TYPE_NFIELDS (rtype) = nfields; | |
d2e4a39e | 6883 | TYPE_FIELDS (rtype) = (struct field *) |
14f9c5c9 AS |
6884 | TYPE_ALLOC (rtype, nfields * sizeof (struct field)); |
6885 | memset (TYPE_FIELDS (rtype), 0, sizeof (struct field) * nfields); | |
6886 | TYPE_NAME (rtype) = ada_type_name (type); | |
6887 | TYPE_TAG_NAME (rtype) = NULL; | |
876cecd0 | 6888 | TYPE_FIXED_INSTANCE (rtype) = 1; |
14f9c5c9 | 6889 | |
d2e4a39e AS |
6890 | off = 0; |
6891 | bit_len = 0; | |
4c4b4cd2 PH |
6892 | variant_field = -1; |
6893 | ||
14f9c5c9 AS |
6894 | for (f = 0; f < nfields; f += 1) |
6895 | { | |
6c038f32 PH |
6896 | off = align_value (off, field_alignment (type, f)) |
6897 | + TYPE_FIELD_BITPOS (type, f); | |
14f9c5c9 | 6898 | TYPE_FIELD_BITPOS (rtype, f) = off; |
d2e4a39e | 6899 | TYPE_FIELD_BITSIZE (rtype, f) = 0; |
14f9c5c9 | 6900 | |
d2e4a39e | 6901 | if (ada_is_variant_part (type, f)) |
4c4b4cd2 PH |
6902 | { |
6903 | variant_field = f; | |
6904 | fld_bit_len = bit_incr = 0; | |
6905 | } | |
14f9c5c9 | 6906 | else if (is_dynamic_field (type, f)) |
4c4b4cd2 PH |
6907 | { |
6908 | if (dval0 == NULL) | |
6909 | dval = value_from_contents_and_address (rtype, valaddr, address); | |
6910 | else | |
6911 | dval = dval0; | |
6912 | ||
1ed6ede0 JB |
6913 | /* Get the fixed type of the field. Note that, in this case, we |
6914 | do not want to get the real type out of the tag: if the current | |
6915 | field is the parent part of a tagged record, we will get the | |
6916 | tag of the object. Clearly wrong: the real type of the parent | |
6917 | is not the real type of the child. We would end up in an infinite | |
6918 | loop. */ | |
4c4b4cd2 PH |
6919 | TYPE_FIELD_TYPE (rtype, f) = |
6920 | ada_to_fixed_type | |
6921 | (ada_get_base_type | |
6922 | (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, f))), | |
6923 | cond_offset_host (valaddr, off / TARGET_CHAR_BIT), | |
1ed6ede0 | 6924 | cond_offset_target (address, off / TARGET_CHAR_BIT), dval, 0); |
4c4b4cd2 PH |
6925 | TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f); |
6926 | bit_incr = fld_bit_len = | |
6927 | TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, f)) * TARGET_CHAR_BIT; | |
6928 | } | |
14f9c5c9 | 6929 | else |
4c4b4cd2 PH |
6930 | { |
6931 | TYPE_FIELD_TYPE (rtype, f) = TYPE_FIELD_TYPE (type, f); | |
6932 | TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f); | |
6933 | if (TYPE_FIELD_BITSIZE (type, f) > 0) | |
6934 | bit_incr = fld_bit_len = | |
6935 | TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f); | |
6936 | else | |
6937 | bit_incr = fld_bit_len = | |
6938 | TYPE_LENGTH (TYPE_FIELD_TYPE (type, f)) * TARGET_CHAR_BIT; | |
6939 | } | |
14f9c5c9 | 6940 | if (off + fld_bit_len > bit_len) |
4c4b4cd2 | 6941 | bit_len = off + fld_bit_len; |
14f9c5c9 | 6942 | off += bit_incr; |
4c4b4cd2 PH |
6943 | TYPE_LENGTH (rtype) = |
6944 | align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT; | |
14f9c5c9 | 6945 | } |
4c4b4cd2 PH |
6946 | |
6947 | /* We handle the variant part, if any, at the end because of certain | |
b1f33ddd | 6948 | odd cases in which it is re-ordered so as NOT to be the last field of |
4c4b4cd2 PH |
6949 | the record. This can happen in the presence of representation |
6950 | clauses. */ | |
6951 | if (variant_field >= 0) | |
6952 | { | |
6953 | struct type *branch_type; | |
6954 | ||
6955 | off = TYPE_FIELD_BITPOS (rtype, variant_field); | |
6956 | ||
6957 | if (dval0 == NULL) | |
6958 | dval = value_from_contents_and_address (rtype, valaddr, address); | |
6959 | else | |
6960 | dval = dval0; | |
6961 | ||
6962 | branch_type = | |
6963 | to_fixed_variant_branch_type | |
6964 | (TYPE_FIELD_TYPE (type, variant_field), | |
6965 | cond_offset_host (valaddr, off / TARGET_CHAR_BIT), | |
6966 | cond_offset_target (address, off / TARGET_CHAR_BIT), dval); | |
6967 | if (branch_type == NULL) | |
6968 | { | |
6969 | for (f = variant_field + 1; f < TYPE_NFIELDS (rtype); f += 1) | |
6970 | TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f]; | |
6971 | TYPE_NFIELDS (rtype) -= 1; | |
6972 | } | |
6973 | else | |
6974 | { | |
6975 | TYPE_FIELD_TYPE (rtype, variant_field) = branch_type; | |
6976 | TYPE_FIELD_NAME (rtype, variant_field) = "S"; | |
6977 | fld_bit_len = | |
6978 | TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, variant_field)) * | |
6979 | TARGET_CHAR_BIT; | |
6980 | if (off + fld_bit_len > bit_len) | |
6981 | bit_len = off + fld_bit_len; | |
6982 | TYPE_LENGTH (rtype) = | |
6983 | align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT; | |
6984 | } | |
6985 | } | |
6986 | ||
714e53ab PH |
6987 | /* According to exp_dbug.ads, the size of TYPE for variable-size records |
6988 | should contain the alignment of that record, which should be a strictly | |
6989 | positive value. If null or negative, then something is wrong, most | |
6990 | probably in the debug info. In that case, we don't round up the size | |
6991 | of the resulting type. If this record is not part of another structure, | |
6992 | the current RTYPE length might be good enough for our purposes. */ | |
6993 | if (TYPE_LENGTH (type) <= 0) | |
6994 | { | |
323e0a4a AC |
6995 | if (TYPE_NAME (rtype)) |
6996 | warning (_("Invalid type size for `%s' detected: %d."), | |
6997 | TYPE_NAME (rtype), TYPE_LENGTH (type)); | |
6998 | else | |
6999 | warning (_("Invalid type size for <unnamed> detected: %d."), | |
7000 | TYPE_LENGTH (type)); | |
714e53ab PH |
7001 | } |
7002 | else | |
7003 | { | |
7004 | TYPE_LENGTH (rtype) = align_value (TYPE_LENGTH (rtype), | |
7005 | TYPE_LENGTH (type)); | |
7006 | } | |
14f9c5c9 AS |
7007 | |
7008 | value_free_to_mark (mark); | |
d2e4a39e | 7009 | if (TYPE_LENGTH (rtype) > varsize_limit) |
323e0a4a | 7010 | error (_("record type with dynamic size is larger than varsize-limit")); |
14f9c5c9 AS |
7011 | return rtype; |
7012 | } | |
7013 | ||
4c4b4cd2 PH |
7014 | /* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS |
7015 | of 1. */ | |
14f9c5c9 | 7016 | |
d2e4a39e | 7017 | static struct type * |
fc1a4b47 | 7018 | template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr, |
4c4b4cd2 PH |
7019 | CORE_ADDR address, struct value *dval0) |
7020 | { | |
7021 | return ada_template_to_fixed_record_type_1 (type, valaddr, | |
7022 | address, dval0, 1); | |
7023 | } | |
7024 | ||
7025 | /* An ordinary record type in which ___XVL-convention fields and | |
7026 | ___XVU- and ___XVN-convention field types in TYPE0 are replaced with | |
7027 | static approximations, containing all possible fields. Uses | |
7028 | no runtime values. Useless for use in values, but that's OK, | |
7029 | since the results are used only for type determinations. Works on both | |
7030 | structs and unions. Representation note: to save space, we memorize | |
7031 | the result of this function in the TYPE_TARGET_TYPE of the | |
7032 | template type. */ | |
7033 | ||
7034 | static struct type * | |
7035 | template_to_static_fixed_type (struct type *type0) | |
14f9c5c9 AS |
7036 | { |
7037 | struct type *type; | |
7038 | int nfields; | |
7039 | int f; | |
7040 | ||
4c4b4cd2 PH |
7041 | if (TYPE_TARGET_TYPE (type0) != NULL) |
7042 | return TYPE_TARGET_TYPE (type0); | |
7043 | ||
7044 | nfields = TYPE_NFIELDS (type0); | |
7045 | type = type0; | |
14f9c5c9 AS |
7046 | |
7047 | for (f = 0; f < nfields; f += 1) | |
7048 | { | |
61ee279c | 7049 | struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type0, f)); |
4c4b4cd2 | 7050 | struct type *new_type; |
14f9c5c9 | 7051 | |
4c4b4cd2 PH |
7052 | if (is_dynamic_field (type0, f)) |
7053 | new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type)); | |
14f9c5c9 | 7054 | else |
f192137b | 7055 | new_type = static_unwrap_type (field_type); |
4c4b4cd2 PH |
7056 | if (type == type0 && new_type != field_type) |
7057 | { | |
7058 | TYPE_TARGET_TYPE (type0) = type = alloc_type (TYPE_OBJFILE (type0)); | |
7059 | TYPE_CODE (type) = TYPE_CODE (type0); | |
7060 | INIT_CPLUS_SPECIFIC (type); | |
7061 | TYPE_NFIELDS (type) = nfields; | |
7062 | TYPE_FIELDS (type) = (struct field *) | |
7063 | TYPE_ALLOC (type, nfields * sizeof (struct field)); | |
7064 | memcpy (TYPE_FIELDS (type), TYPE_FIELDS (type0), | |
7065 | sizeof (struct field) * nfields); | |
7066 | TYPE_NAME (type) = ada_type_name (type0); | |
7067 | TYPE_TAG_NAME (type) = NULL; | |
876cecd0 | 7068 | TYPE_FIXED_INSTANCE (type) = 1; |
4c4b4cd2 PH |
7069 | TYPE_LENGTH (type) = 0; |
7070 | } | |
7071 | TYPE_FIELD_TYPE (type, f) = new_type; | |
7072 | TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f); | |
14f9c5c9 | 7073 | } |
14f9c5c9 AS |
7074 | return type; |
7075 | } | |
7076 | ||
4c4b4cd2 | 7077 | /* Given an object of type TYPE whose contents are at VALADDR and |
5823c3ef JB |
7078 | whose address in memory is ADDRESS, returns a revision of TYPE, |
7079 | which should be a non-dynamic-sized record, in which the variant | |
7080 | part, if any, is replaced with the appropriate branch. Looks | |
4c4b4cd2 PH |
7081 | for discriminant values in DVAL0, which can be NULL if the record |
7082 | contains the necessary discriminant values. */ | |
7083 | ||
d2e4a39e | 7084 | static struct type * |
fc1a4b47 | 7085 | to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr, |
4c4b4cd2 | 7086 | CORE_ADDR address, struct value *dval0) |
14f9c5c9 | 7087 | { |
d2e4a39e | 7088 | struct value *mark = value_mark (); |
4c4b4cd2 | 7089 | struct value *dval; |
d2e4a39e | 7090 | struct type *rtype; |
14f9c5c9 AS |
7091 | struct type *branch_type; |
7092 | int nfields = TYPE_NFIELDS (type); | |
4c4b4cd2 | 7093 | int variant_field = variant_field_index (type); |
14f9c5c9 | 7094 | |
4c4b4cd2 | 7095 | if (variant_field == -1) |
14f9c5c9 AS |
7096 | return type; |
7097 | ||
4c4b4cd2 PH |
7098 | if (dval0 == NULL) |
7099 | dval = value_from_contents_and_address (type, valaddr, address); | |
7100 | else | |
7101 | dval = dval0; | |
7102 | ||
14f9c5c9 AS |
7103 | rtype = alloc_type (TYPE_OBJFILE (type)); |
7104 | TYPE_CODE (rtype) = TYPE_CODE_STRUCT; | |
4c4b4cd2 PH |
7105 | INIT_CPLUS_SPECIFIC (rtype); |
7106 | TYPE_NFIELDS (rtype) = nfields; | |
d2e4a39e AS |
7107 | TYPE_FIELDS (rtype) = |
7108 | (struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field)); | |
7109 | memcpy (TYPE_FIELDS (rtype), TYPE_FIELDS (type), | |
4c4b4cd2 | 7110 | sizeof (struct field) * nfields); |
14f9c5c9 AS |
7111 | TYPE_NAME (rtype) = ada_type_name (type); |
7112 | TYPE_TAG_NAME (rtype) = NULL; | |
876cecd0 | 7113 | TYPE_FIXED_INSTANCE (rtype) = 1; |
14f9c5c9 AS |
7114 | TYPE_LENGTH (rtype) = TYPE_LENGTH (type); |
7115 | ||
4c4b4cd2 PH |
7116 | branch_type = to_fixed_variant_branch_type |
7117 | (TYPE_FIELD_TYPE (type, variant_field), | |
d2e4a39e | 7118 | cond_offset_host (valaddr, |
4c4b4cd2 PH |
7119 | TYPE_FIELD_BITPOS (type, variant_field) |
7120 | / TARGET_CHAR_BIT), | |
d2e4a39e | 7121 | cond_offset_target (address, |
4c4b4cd2 PH |
7122 | TYPE_FIELD_BITPOS (type, variant_field) |
7123 | / TARGET_CHAR_BIT), dval); | |
d2e4a39e | 7124 | if (branch_type == NULL) |
14f9c5c9 | 7125 | { |
4c4b4cd2 PH |
7126 | int f; |
7127 | for (f = variant_field + 1; f < nfields; f += 1) | |
7128 | TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f]; | |
14f9c5c9 | 7129 | TYPE_NFIELDS (rtype) -= 1; |
14f9c5c9 AS |
7130 | } |
7131 | else | |
7132 | { | |
4c4b4cd2 PH |
7133 | TYPE_FIELD_TYPE (rtype, variant_field) = branch_type; |
7134 | TYPE_FIELD_NAME (rtype, variant_field) = "S"; | |
7135 | TYPE_FIELD_BITSIZE (rtype, variant_field) = 0; | |
14f9c5c9 | 7136 | TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type); |
14f9c5c9 | 7137 | } |
4c4b4cd2 | 7138 | TYPE_LENGTH (rtype) -= TYPE_LENGTH (TYPE_FIELD_TYPE (type, variant_field)); |
d2e4a39e | 7139 | |
4c4b4cd2 | 7140 | value_free_to_mark (mark); |
14f9c5c9 AS |
7141 | return rtype; |
7142 | } | |
7143 | ||
7144 | /* An ordinary record type (with fixed-length fields) that describes | |
7145 | the value at (TYPE0, VALADDR, ADDRESS) [see explanation at | |
7146 | beginning of this section]. Any necessary discriminants' values | |
4c4b4cd2 PH |
7147 | should be in DVAL, a record value; it may be NULL if the object |
7148 | at ADDR itself contains any necessary discriminant values. | |
7149 | Additionally, VALADDR and ADDRESS may also be NULL if no discriminant | |
7150 | values from the record are needed. Except in the case that DVAL, | |
7151 | VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless | |
7152 | unchecked) is replaced by a particular branch of the variant. | |
7153 | ||
7154 | NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0 | |
7155 | is questionable and may be removed. It can arise during the | |
7156 | processing of an unconstrained-array-of-record type where all the | |
7157 | variant branches have exactly the same size. This is because in | |
7158 | such cases, the compiler does not bother to use the XVS convention | |
7159 | when encoding the record. I am currently dubious of this | |
7160 | shortcut and suspect the compiler should be altered. FIXME. */ | |
14f9c5c9 | 7161 | |
d2e4a39e | 7162 | static struct type * |
fc1a4b47 | 7163 | to_fixed_record_type (struct type *type0, const gdb_byte *valaddr, |
4c4b4cd2 | 7164 | CORE_ADDR address, struct value *dval) |
14f9c5c9 | 7165 | { |
d2e4a39e | 7166 | struct type *templ_type; |
14f9c5c9 | 7167 | |
876cecd0 | 7168 | if (TYPE_FIXED_INSTANCE (type0)) |
4c4b4cd2 PH |
7169 | return type0; |
7170 | ||
d2e4a39e | 7171 | templ_type = dynamic_template_type (type0); |
14f9c5c9 AS |
7172 | |
7173 | if (templ_type != NULL) | |
7174 | return template_to_fixed_record_type (templ_type, valaddr, address, dval); | |
4c4b4cd2 PH |
7175 | else if (variant_field_index (type0) >= 0) |
7176 | { | |
7177 | if (dval == NULL && valaddr == NULL && address == 0) | |
7178 | return type0; | |
7179 | return to_record_with_fixed_variant_part (type0, valaddr, address, | |
7180 | dval); | |
7181 | } | |
14f9c5c9 AS |
7182 | else |
7183 | { | |
876cecd0 | 7184 | TYPE_FIXED_INSTANCE (type0) = 1; |
14f9c5c9 AS |
7185 | return type0; |
7186 | } | |
7187 | ||
7188 | } | |
7189 | ||
7190 | /* An ordinary record type (with fixed-length fields) that describes | |
7191 | the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a | |
7192 | union type. Any necessary discriminants' values should be in DVAL, | |
7193 | a record value. That is, this routine selects the appropriate | |
7194 | branch of the union at ADDR according to the discriminant value | |
b1f33ddd JB |
7195 | indicated in the union's type name. Returns VAR_TYPE0 itself if |
7196 | it represents a variant subject to a pragma Unchecked_Union. */ | |
14f9c5c9 | 7197 | |
d2e4a39e | 7198 | static struct type * |
fc1a4b47 | 7199 | to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr, |
4c4b4cd2 | 7200 | CORE_ADDR address, struct value *dval) |
14f9c5c9 AS |
7201 | { |
7202 | int which; | |
d2e4a39e AS |
7203 | struct type *templ_type; |
7204 | struct type *var_type; | |
14f9c5c9 AS |
7205 | |
7206 | if (TYPE_CODE (var_type0) == TYPE_CODE_PTR) | |
7207 | var_type = TYPE_TARGET_TYPE (var_type0); | |
d2e4a39e | 7208 | else |
14f9c5c9 AS |
7209 | var_type = var_type0; |
7210 | ||
7211 | templ_type = ada_find_parallel_type (var_type, "___XVU"); | |
7212 | ||
7213 | if (templ_type != NULL) | |
7214 | var_type = templ_type; | |
7215 | ||
b1f33ddd JB |
7216 | if (is_unchecked_variant (var_type, value_type (dval))) |
7217 | return var_type0; | |
d2e4a39e AS |
7218 | which = |
7219 | ada_which_variant_applies (var_type, | |
0fd88904 | 7220 | value_type (dval), value_contents (dval)); |
14f9c5c9 AS |
7221 | |
7222 | if (which < 0) | |
7223 | return empty_record (TYPE_OBJFILE (var_type)); | |
7224 | else if (is_dynamic_field (var_type, which)) | |
4c4b4cd2 | 7225 | return to_fixed_record_type |
d2e4a39e AS |
7226 | (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (var_type, which)), |
7227 | valaddr, address, dval); | |
4c4b4cd2 | 7228 | else if (variant_field_index (TYPE_FIELD_TYPE (var_type, which)) >= 0) |
d2e4a39e AS |
7229 | return |
7230 | to_fixed_record_type | |
7231 | (TYPE_FIELD_TYPE (var_type, which), valaddr, address, dval); | |
14f9c5c9 AS |
7232 | else |
7233 | return TYPE_FIELD_TYPE (var_type, which); | |
7234 | } | |
7235 | ||
7236 | /* Assuming that TYPE0 is an array type describing the type of a value | |
7237 | at ADDR, and that DVAL describes a record containing any | |
7238 | discriminants used in TYPE0, returns a type for the value that | |
7239 | contains no dynamic components (that is, no components whose sizes | |
7240 | are determined by run-time quantities). Unless IGNORE_TOO_BIG is | |
7241 | true, gives an error message if the resulting type's size is over | |
4c4b4cd2 | 7242 | varsize_limit. */ |
14f9c5c9 | 7243 | |
d2e4a39e AS |
7244 | static struct type * |
7245 | to_fixed_array_type (struct type *type0, struct value *dval, | |
4c4b4cd2 | 7246 | int ignore_too_big) |
14f9c5c9 | 7247 | { |
d2e4a39e AS |
7248 | struct type *index_type_desc; |
7249 | struct type *result; | |
14f9c5c9 | 7250 | |
4c4b4cd2 | 7251 | if (ada_is_packed_array_type (type0) /* revisit? */ |
876cecd0 | 7252 | || TYPE_FIXED_INSTANCE (type0)) |
4c4b4cd2 | 7253 | return type0; |
14f9c5c9 AS |
7254 | |
7255 | index_type_desc = ada_find_parallel_type (type0, "___XA"); | |
7256 | if (index_type_desc == NULL) | |
7257 | { | |
61ee279c | 7258 | struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0)); |
14f9c5c9 | 7259 | /* NOTE: elt_type---the fixed version of elt_type0---should never |
4c4b4cd2 PH |
7260 | depend on the contents of the array in properly constructed |
7261 | debugging data. */ | |
529cad9c PH |
7262 | /* Create a fixed version of the array element type. |
7263 | We're not providing the address of an element here, | |
e1d5a0d2 | 7264 | and thus the actual object value cannot be inspected to do |
529cad9c PH |
7265 | the conversion. This should not be a problem, since arrays of |
7266 | unconstrained objects are not allowed. In particular, all | |
7267 | the elements of an array of a tagged type should all be of | |
7268 | the same type specified in the debugging info. No need to | |
7269 | consult the object tag. */ | |
1ed6ede0 | 7270 | struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval, 1); |
14f9c5c9 AS |
7271 | |
7272 | if (elt_type0 == elt_type) | |
4c4b4cd2 | 7273 | result = type0; |
14f9c5c9 | 7274 | else |
4c4b4cd2 PH |
7275 | result = create_array_type (alloc_type (TYPE_OBJFILE (type0)), |
7276 | elt_type, TYPE_INDEX_TYPE (type0)); | |
14f9c5c9 AS |
7277 | } |
7278 | else | |
7279 | { | |
7280 | int i; | |
7281 | struct type *elt_type0; | |
7282 | ||
7283 | elt_type0 = type0; | |
7284 | for (i = TYPE_NFIELDS (index_type_desc); i > 0; i -= 1) | |
4c4b4cd2 | 7285 | elt_type0 = TYPE_TARGET_TYPE (elt_type0); |
14f9c5c9 AS |
7286 | |
7287 | /* NOTE: result---the fixed version of elt_type0---should never | |
4c4b4cd2 PH |
7288 | depend on the contents of the array in properly constructed |
7289 | debugging data. */ | |
529cad9c PH |
7290 | /* Create a fixed version of the array element type. |
7291 | We're not providing the address of an element here, | |
e1d5a0d2 | 7292 | and thus the actual object value cannot be inspected to do |
529cad9c PH |
7293 | the conversion. This should not be a problem, since arrays of |
7294 | unconstrained objects are not allowed. In particular, all | |
7295 | the elements of an array of a tagged type should all be of | |
7296 | the same type specified in the debugging info. No need to | |
7297 | consult the object tag. */ | |
1ed6ede0 JB |
7298 | result = |
7299 | ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval, 1); | |
14f9c5c9 | 7300 | for (i = TYPE_NFIELDS (index_type_desc) - 1; i >= 0; i -= 1) |
4c4b4cd2 PH |
7301 | { |
7302 | struct type *range_type = | |
7303 | to_fixed_range_type (TYPE_FIELD_NAME (index_type_desc, i), | |
7304 | dval, TYPE_OBJFILE (type0)); | |
7305 | result = create_array_type (alloc_type (TYPE_OBJFILE (type0)), | |
7306 | result, range_type); | |
7307 | } | |
d2e4a39e | 7308 | if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit) |
323e0a4a | 7309 | error (_("array type with dynamic size is larger than varsize-limit")); |
14f9c5c9 AS |
7310 | } |
7311 | ||
876cecd0 | 7312 | TYPE_FIXED_INSTANCE (result) = 1; |
14f9c5c9 | 7313 | return result; |
d2e4a39e | 7314 | } |
14f9c5c9 AS |
7315 | |
7316 | ||
7317 | /* A standard type (containing no dynamically sized components) | |
7318 | corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS) | |
7319 | DVAL describes a record containing any discriminants used in TYPE0, | |
4c4b4cd2 | 7320 | and may be NULL if there are none, or if the object of type TYPE at |
529cad9c PH |
7321 | ADDRESS or in VALADDR contains these discriminants. |
7322 | ||
1ed6ede0 JB |
7323 | If CHECK_TAG is not null, in the case of tagged types, this function |
7324 | attempts to locate the object's tag and use it to compute the actual | |
7325 | type. However, when ADDRESS is null, we cannot use it to determine the | |
7326 | location of the tag, and therefore compute the tagged type's actual type. | |
7327 | So we return the tagged type without consulting the tag. */ | |
529cad9c | 7328 | |
f192137b JB |
7329 | static struct type * |
7330 | ada_to_fixed_type_1 (struct type *type, const gdb_byte *valaddr, | |
1ed6ede0 | 7331 | CORE_ADDR address, struct value *dval, int check_tag) |
14f9c5c9 | 7332 | { |
61ee279c | 7333 | type = ada_check_typedef (type); |
d2e4a39e AS |
7334 | switch (TYPE_CODE (type)) |
7335 | { | |
7336 | default: | |
14f9c5c9 | 7337 | return type; |
d2e4a39e | 7338 | case TYPE_CODE_STRUCT: |
4c4b4cd2 | 7339 | { |
76a01679 | 7340 | struct type *static_type = to_static_fixed_type (type); |
1ed6ede0 JB |
7341 | struct type *fixed_record_type = |
7342 | to_fixed_record_type (type, valaddr, address, NULL); | |
529cad9c PH |
7343 | /* If STATIC_TYPE is a tagged type and we know the object's address, |
7344 | then we can determine its tag, and compute the object's actual | |
1ed6ede0 JB |
7345 | type from there. Note that we have to use the fixed record |
7346 | type (the parent part of the record may have dynamic fields | |
7347 | and the way the location of _tag is expressed may depend on | |
7348 | them). */ | |
529cad9c | 7349 | |
1ed6ede0 | 7350 | if (check_tag && address != 0 && ada_is_tagged_type (static_type, 0)) |
76a01679 JB |
7351 | { |
7352 | struct type *real_type = | |
1ed6ede0 JB |
7353 | type_from_tag (value_tag_from_contents_and_address |
7354 | (fixed_record_type, | |
7355 | valaddr, | |
7356 | address)); | |
76a01679 | 7357 | if (real_type != NULL) |
1ed6ede0 | 7358 | return to_fixed_record_type (real_type, valaddr, address, NULL); |
76a01679 | 7359 | } |
1ed6ede0 | 7360 | return fixed_record_type; |
4c4b4cd2 | 7361 | } |
d2e4a39e | 7362 | case TYPE_CODE_ARRAY: |
4c4b4cd2 | 7363 | return to_fixed_array_type (type, dval, 1); |
d2e4a39e AS |
7364 | case TYPE_CODE_UNION: |
7365 | if (dval == NULL) | |
4c4b4cd2 | 7366 | return type; |
d2e4a39e | 7367 | else |
4c4b4cd2 | 7368 | return to_fixed_variant_branch_type (type, valaddr, address, dval); |
d2e4a39e | 7369 | } |
14f9c5c9 AS |
7370 | } |
7371 | ||
f192137b JB |
7372 | /* The same as ada_to_fixed_type_1, except that it preserves the type |
7373 | if it is a TYPE_CODE_TYPEDEF of a type that is already fixed. | |
7374 | ada_to_fixed_type_1 would return the type referenced by TYPE. */ | |
7375 | ||
7376 | struct type * | |
7377 | ada_to_fixed_type (struct type *type, const gdb_byte *valaddr, | |
7378 | CORE_ADDR address, struct value *dval, int check_tag) | |
7379 | ||
7380 | { | |
7381 | struct type *fixed_type = | |
7382 | ada_to_fixed_type_1 (type, valaddr, address, dval, check_tag); | |
7383 | ||
7384 | if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF | |
7385 | && TYPE_TARGET_TYPE (type) == fixed_type) | |
7386 | return type; | |
7387 | ||
7388 | return fixed_type; | |
7389 | } | |
7390 | ||
14f9c5c9 | 7391 | /* A standard (static-sized) type corresponding as well as possible to |
4c4b4cd2 | 7392 | TYPE0, but based on no runtime data. */ |
14f9c5c9 | 7393 | |
d2e4a39e AS |
7394 | static struct type * |
7395 | to_static_fixed_type (struct type *type0) | |
14f9c5c9 | 7396 | { |
d2e4a39e | 7397 | struct type *type; |
14f9c5c9 AS |
7398 | |
7399 | if (type0 == NULL) | |
7400 | return NULL; | |
7401 | ||
876cecd0 | 7402 | if (TYPE_FIXED_INSTANCE (type0)) |
4c4b4cd2 PH |
7403 | return type0; |
7404 | ||
61ee279c | 7405 | type0 = ada_check_typedef (type0); |
d2e4a39e | 7406 | |
14f9c5c9 AS |
7407 | switch (TYPE_CODE (type0)) |
7408 | { | |
7409 | default: | |
7410 | return type0; | |
7411 | case TYPE_CODE_STRUCT: | |
7412 | type = dynamic_template_type (type0); | |
d2e4a39e | 7413 | if (type != NULL) |
4c4b4cd2 PH |
7414 | return template_to_static_fixed_type (type); |
7415 | else | |
7416 | return template_to_static_fixed_type (type0); | |
14f9c5c9 AS |
7417 | case TYPE_CODE_UNION: |
7418 | type = ada_find_parallel_type (type0, "___XVU"); | |
7419 | if (type != NULL) | |
4c4b4cd2 PH |
7420 | return template_to_static_fixed_type (type); |
7421 | else | |
7422 | return template_to_static_fixed_type (type0); | |
14f9c5c9 AS |
7423 | } |
7424 | } | |
7425 | ||
4c4b4cd2 PH |
7426 | /* A static approximation of TYPE with all type wrappers removed. */ |
7427 | ||
d2e4a39e AS |
7428 | static struct type * |
7429 | static_unwrap_type (struct type *type) | |
14f9c5c9 AS |
7430 | { |
7431 | if (ada_is_aligner_type (type)) | |
7432 | { | |
61ee279c | 7433 | struct type *type1 = TYPE_FIELD_TYPE (ada_check_typedef (type), 0); |
14f9c5c9 | 7434 | if (ada_type_name (type1) == NULL) |
4c4b4cd2 | 7435 | TYPE_NAME (type1) = ada_type_name (type); |
14f9c5c9 AS |
7436 | |
7437 | return static_unwrap_type (type1); | |
7438 | } | |
d2e4a39e | 7439 | else |
14f9c5c9 | 7440 | { |
d2e4a39e AS |
7441 | struct type *raw_real_type = ada_get_base_type (type); |
7442 | if (raw_real_type == type) | |
4c4b4cd2 | 7443 | return type; |
14f9c5c9 | 7444 | else |
4c4b4cd2 | 7445 | return to_static_fixed_type (raw_real_type); |
14f9c5c9 AS |
7446 | } |
7447 | } | |
7448 | ||
7449 | /* In some cases, incomplete and private types require | |
4c4b4cd2 | 7450 | cross-references that are not resolved as records (for example, |
14f9c5c9 AS |
7451 | type Foo; |
7452 | type FooP is access Foo; | |
7453 | V: FooP; | |
7454 | type Foo is array ...; | |
4c4b4cd2 | 7455 | ). In these cases, since there is no mechanism for producing |
14f9c5c9 AS |
7456 | cross-references to such types, we instead substitute for FooP a |
7457 | stub enumeration type that is nowhere resolved, and whose tag is | |
4c4b4cd2 | 7458 | the name of the actual type. Call these types "non-record stubs". */ |
14f9c5c9 AS |
7459 | |
7460 | /* A type equivalent to TYPE that is not a non-record stub, if one | |
4c4b4cd2 PH |
7461 | exists, otherwise TYPE. */ |
7462 | ||
d2e4a39e | 7463 | struct type * |
61ee279c | 7464 | ada_check_typedef (struct type *type) |
14f9c5c9 | 7465 | { |
727e3d2e JB |
7466 | if (type == NULL) |
7467 | return NULL; | |
7468 | ||
14f9c5c9 AS |
7469 | CHECK_TYPEDEF (type); |
7470 | if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM | |
529cad9c | 7471 | || !TYPE_STUB (type) |
14f9c5c9 AS |
7472 | || TYPE_TAG_NAME (type) == NULL) |
7473 | return type; | |
d2e4a39e | 7474 | else |
14f9c5c9 | 7475 | { |
d2e4a39e AS |
7476 | char *name = TYPE_TAG_NAME (type); |
7477 | struct type *type1 = ada_find_any_type (name); | |
14f9c5c9 AS |
7478 | return (type1 == NULL) ? type : type1; |
7479 | } | |
7480 | } | |
7481 | ||
7482 | /* A value representing the data at VALADDR/ADDRESS as described by | |
7483 | type TYPE0, but with a standard (static-sized) type that correctly | |
7484 | describes it. If VAL0 is not NULL and TYPE0 already is a standard | |
7485 | type, then return VAL0 [this feature is simply to avoid redundant | |
4c4b4cd2 | 7486 | creation of struct values]. */ |
14f9c5c9 | 7487 | |
4c4b4cd2 PH |
7488 | static struct value * |
7489 | ada_to_fixed_value_create (struct type *type0, CORE_ADDR address, | |
7490 | struct value *val0) | |
14f9c5c9 | 7491 | { |
1ed6ede0 | 7492 | struct type *type = ada_to_fixed_type (type0, 0, address, NULL, 1); |
14f9c5c9 AS |
7493 | if (type == type0 && val0 != NULL) |
7494 | return val0; | |
d2e4a39e | 7495 | else |
4c4b4cd2 PH |
7496 | return value_from_contents_and_address (type, 0, address); |
7497 | } | |
7498 | ||
7499 | /* A value representing VAL, but with a standard (static-sized) type | |
7500 | that correctly describes it. Does not necessarily create a new | |
7501 | value. */ | |
7502 | ||
7503 | static struct value * | |
7504 | ada_to_fixed_value (struct value *val) | |
7505 | { | |
df407dfe AC |
7506 | return ada_to_fixed_value_create (value_type (val), |
7507 | VALUE_ADDRESS (val) + value_offset (val), | |
4c4b4cd2 | 7508 | val); |
14f9c5c9 AS |
7509 | } |
7510 | ||
4c4b4cd2 | 7511 | /* A value representing VAL, but with a standard (static-sized) type |
14f9c5c9 AS |
7512 | chosen to approximate the real type of VAL as well as possible, but |
7513 | without consulting any runtime values. For Ada dynamic-sized | |
4c4b4cd2 | 7514 | types, therefore, the type of the result is likely to be inaccurate. */ |
14f9c5c9 | 7515 | |
d2e4a39e AS |
7516 | struct value * |
7517 | ada_to_static_fixed_value (struct value *val) | |
14f9c5c9 | 7518 | { |
d2e4a39e | 7519 | struct type *type = |
df407dfe AC |
7520 | to_static_fixed_type (static_unwrap_type (value_type (val))); |
7521 | if (type == value_type (val)) | |
14f9c5c9 AS |
7522 | return val; |
7523 | else | |
4c4b4cd2 | 7524 | return coerce_unspec_val_to_type (val, type); |
14f9c5c9 | 7525 | } |
d2e4a39e | 7526 | \f |
14f9c5c9 | 7527 | |
14f9c5c9 AS |
7528 | /* Attributes */ |
7529 | ||
4c4b4cd2 PH |
7530 | /* Table mapping attribute numbers to names. |
7531 | NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */ | |
14f9c5c9 | 7532 | |
d2e4a39e | 7533 | static const char *attribute_names[] = { |
14f9c5c9 AS |
7534 | "<?>", |
7535 | ||
d2e4a39e | 7536 | "first", |
14f9c5c9 AS |
7537 | "last", |
7538 | "length", | |
7539 | "image", | |
14f9c5c9 AS |
7540 | "max", |
7541 | "min", | |
4c4b4cd2 PH |
7542 | "modulus", |
7543 | "pos", | |
7544 | "size", | |
7545 | "tag", | |
14f9c5c9 | 7546 | "val", |
14f9c5c9 AS |
7547 | 0 |
7548 | }; | |
7549 | ||
d2e4a39e | 7550 | const char * |
4c4b4cd2 | 7551 | ada_attribute_name (enum exp_opcode n) |
14f9c5c9 | 7552 | { |
4c4b4cd2 PH |
7553 | if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL) |
7554 | return attribute_names[n - OP_ATR_FIRST + 1]; | |
14f9c5c9 AS |
7555 | else |
7556 | return attribute_names[0]; | |
7557 | } | |
7558 | ||
4c4b4cd2 | 7559 | /* Evaluate the 'POS attribute applied to ARG. */ |
14f9c5c9 | 7560 | |
4c4b4cd2 PH |
7561 | static LONGEST |
7562 | pos_atr (struct value *arg) | |
14f9c5c9 | 7563 | { |
24209737 PH |
7564 | struct value *val = coerce_ref (arg); |
7565 | struct type *type = value_type (val); | |
14f9c5c9 | 7566 | |
d2e4a39e | 7567 | if (!discrete_type_p (type)) |
323e0a4a | 7568 | error (_("'POS only defined on discrete types")); |
14f9c5c9 AS |
7569 | |
7570 | if (TYPE_CODE (type) == TYPE_CODE_ENUM) | |
7571 | { | |
7572 | int i; | |
24209737 | 7573 | LONGEST v = value_as_long (val); |
14f9c5c9 | 7574 | |
d2e4a39e | 7575 | for (i = 0; i < TYPE_NFIELDS (type); i += 1) |
4c4b4cd2 PH |
7576 | { |
7577 | if (v == TYPE_FIELD_BITPOS (type, i)) | |
7578 | return i; | |
7579 | } | |
323e0a4a | 7580 | error (_("enumeration value is invalid: can't find 'POS")); |
14f9c5c9 AS |
7581 | } |
7582 | else | |
24209737 | 7583 | return value_as_long (val); |
4c4b4cd2 PH |
7584 | } |
7585 | ||
7586 | static struct value * | |
3cb382c9 | 7587 | value_pos_atr (struct type *type, struct value *arg) |
4c4b4cd2 | 7588 | { |
3cb382c9 | 7589 | return value_from_longest (type, pos_atr (arg)); |
14f9c5c9 AS |
7590 | } |
7591 | ||
4c4b4cd2 | 7592 | /* Evaluate the TYPE'VAL attribute applied to ARG. */ |
14f9c5c9 | 7593 | |
d2e4a39e AS |
7594 | static struct value * |
7595 | value_val_atr (struct type *type, struct value *arg) | |
14f9c5c9 | 7596 | { |
d2e4a39e | 7597 | if (!discrete_type_p (type)) |
323e0a4a | 7598 | error (_("'VAL only defined on discrete types")); |
df407dfe | 7599 | if (!integer_type_p (value_type (arg))) |
323e0a4a | 7600 | error (_("'VAL requires integral argument")); |
14f9c5c9 AS |
7601 | |
7602 | if (TYPE_CODE (type) == TYPE_CODE_ENUM) | |
7603 | { | |
7604 | long pos = value_as_long (arg); | |
7605 | if (pos < 0 || pos >= TYPE_NFIELDS (type)) | |
323e0a4a | 7606 | error (_("argument to 'VAL out of range")); |
d2e4a39e | 7607 | return value_from_longest (type, TYPE_FIELD_BITPOS (type, pos)); |
14f9c5c9 AS |
7608 | } |
7609 | else | |
7610 | return value_from_longest (type, value_as_long (arg)); | |
7611 | } | |
14f9c5c9 | 7612 | \f |
d2e4a39e | 7613 | |
4c4b4cd2 | 7614 | /* Evaluation */ |
14f9c5c9 | 7615 | |
4c4b4cd2 PH |
7616 | /* True if TYPE appears to be an Ada character type. |
7617 | [At the moment, this is true only for Character and Wide_Character; | |
7618 | It is a heuristic test that could stand improvement]. */ | |
14f9c5c9 | 7619 | |
d2e4a39e AS |
7620 | int |
7621 | ada_is_character_type (struct type *type) | |
14f9c5c9 | 7622 | { |
7b9f71f2 JB |
7623 | const char *name; |
7624 | ||
7625 | /* If the type code says it's a character, then assume it really is, | |
7626 | and don't check any further. */ | |
7627 | if (TYPE_CODE (type) == TYPE_CODE_CHAR) | |
7628 | return 1; | |
7629 | ||
7630 | /* Otherwise, assume it's a character type iff it is a discrete type | |
7631 | with a known character type name. */ | |
7632 | name = ada_type_name (type); | |
7633 | return (name != NULL | |
7634 | && (TYPE_CODE (type) == TYPE_CODE_INT | |
7635 | || TYPE_CODE (type) == TYPE_CODE_RANGE) | |
7636 | && (strcmp (name, "character") == 0 | |
7637 | || strcmp (name, "wide_character") == 0 | |
5a517ebd | 7638 | || strcmp (name, "wide_wide_character") == 0 |
7b9f71f2 | 7639 | || strcmp (name, "unsigned char") == 0)); |
14f9c5c9 AS |
7640 | } |
7641 | ||
4c4b4cd2 | 7642 | /* True if TYPE appears to be an Ada string type. */ |
14f9c5c9 AS |
7643 | |
7644 | int | |
ebf56fd3 | 7645 | ada_is_string_type (struct type *type) |
14f9c5c9 | 7646 | { |
61ee279c | 7647 | type = ada_check_typedef (type); |
d2e4a39e | 7648 | if (type != NULL |
14f9c5c9 | 7649 | && TYPE_CODE (type) != TYPE_CODE_PTR |
76a01679 JB |
7650 | && (ada_is_simple_array_type (type) |
7651 | || ada_is_array_descriptor_type (type)) | |
14f9c5c9 AS |
7652 | && ada_array_arity (type) == 1) |
7653 | { | |
7654 | struct type *elttype = ada_array_element_type (type, 1); | |
7655 | ||
7656 | return ada_is_character_type (elttype); | |
7657 | } | |
d2e4a39e | 7658 | else |
14f9c5c9 AS |
7659 | return 0; |
7660 | } | |
7661 | ||
7662 | ||
7663 | /* True if TYPE is a struct type introduced by the compiler to force the | |
7664 | alignment of a value. Such types have a single field with a | |
4c4b4cd2 | 7665 | distinctive name. */ |
14f9c5c9 AS |
7666 | |
7667 | int | |
ebf56fd3 | 7668 | ada_is_aligner_type (struct type *type) |
14f9c5c9 | 7669 | { |
61ee279c | 7670 | type = ada_check_typedef (type); |
714e53ab PH |
7671 | |
7672 | /* If we can find a parallel XVS type, then the XVS type should | |
7673 | be used instead of this type. And hence, this is not an aligner | |
7674 | type. */ | |
7675 | if (ada_find_parallel_type (type, "___XVS") != NULL) | |
7676 | return 0; | |
7677 | ||
14f9c5c9 | 7678 | return (TYPE_CODE (type) == TYPE_CODE_STRUCT |
4c4b4cd2 PH |
7679 | && TYPE_NFIELDS (type) == 1 |
7680 | && strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0); | |
14f9c5c9 AS |
7681 | } |
7682 | ||
7683 | /* If there is an ___XVS-convention type parallel to SUBTYPE, return | |
4c4b4cd2 | 7684 | the parallel type. */ |
14f9c5c9 | 7685 | |
d2e4a39e AS |
7686 | struct type * |
7687 | ada_get_base_type (struct type *raw_type) | |
14f9c5c9 | 7688 | { |
d2e4a39e AS |
7689 | struct type *real_type_namer; |
7690 | struct type *raw_real_type; | |
14f9c5c9 AS |
7691 | |
7692 | if (raw_type == NULL || TYPE_CODE (raw_type) != TYPE_CODE_STRUCT) | |
7693 | return raw_type; | |
7694 | ||
7695 | real_type_namer = ada_find_parallel_type (raw_type, "___XVS"); | |
d2e4a39e | 7696 | if (real_type_namer == NULL |
14f9c5c9 AS |
7697 | || TYPE_CODE (real_type_namer) != TYPE_CODE_STRUCT |
7698 | || TYPE_NFIELDS (real_type_namer) != 1) | |
7699 | return raw_type; | |
7700 | ||
7701 | raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0)); | |
d2e4a39e | 7702 | if (raw_real_type == NULL) |
14f9c5c9 AS |
7703 | return raw_type; |
7704 | else | |
7705 | return raw_real_type; | |
d2e4a39e | 7706 | } |
14f9c5c9 | 7707 | |
4c4b4cd2 | 7708 | /* The type of value designated by TYPE, with all aligners removed. */ |
14f9c5c9 | 7709 | |
d2e4a39e AS |
7710 | struct type * |
7711 | ada_aligned_type (struct type *type) | |
14f9c5c9 AS |
7712 | { |
7713 | if (ada_is_aligner_type (type)) | |
7714 | return ada_aligned_type (TYPE_FIELD_TYPE (type, 0)); | |
7715 | else | |
7716 | return ada_get_base_type (type); | |
7717 | } | |
7718 | ||
7719 | ||
7720 | /* The address of the aligned value in an object at address VALADDR | |
4c4b4cd2 | 7721 | having type TYPE. Assumes ada_is_aligner_type (TYPE). */ |
14f9c5c9 | 7722 | |
fc1a4b47 AC |
7723 | const gdb_byte * |
7724 | ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr) | |
14f9c5c9 | 7725 | { |
d2e4a39e | 7726 | if (ada_is_aligner_type (type)) |
14f9c5c9 | 7727 | return ada_aligned_value_addr (TYPE_FIELD_TYPE (type, 0), |
4c4b4cd2 PH |
7728 | valaddr + |
7729 | TYPE_FIELD_BITPOS (type, | |
7730 | 0) / TARGET_CHAR_BIT); | |
14f9c5c9 AS |
7731 | else |
7732 | return valaddr; | |
7733 | } | |
7734 | ||
4c4b4cd2 PH |
7735 | |
7736 | ||
14f9c5c9 | 7737 | /* The printed representation of an enumeration literal with encoded |
4c4b4cd2 | 7738 | name NAME. The value is good to the next call of ada_enum_name. */ |
d2e4a39e AS |
7739 | const char * |
7740 | ada_enum_name (const char *name) | |
14f9c5c9 | 7741 | { |
4c4b4cd2 PH |
7742 | static char *result; |
7743 | static size_t result_len = 0; | |
d2e4a39e | 7744 | char *tmp; |
14f9c5c9 | 7745 | |
4c4b4cd2 PH |
7746 | /* First, unqualify the enumeration name: |
7747 | 1. Search for the last '.' character. If we find one, then skip | |
76a01679 JB |
7748 | all the preceeding characters, the unqualified name starts |
7749 | right after that dot. | |
4c4b4cd2 | 7750 | 2. Otherwise, we may be debugging on a target where the compiler |
76a01679 JB |
7751 | translates dots into "__". Search forward for double underscores, |
7752 | but stop searching when we hit an overloading suffix, which is | |
7753 | of the form "__" followed by digits. */ | |
4c4b4cd2 | 7754 | |
c3e5cd34 PH |
7755 | tmp = strrchr (name, '.'); |
7756 | if (tmp != NULL) | |
4c4b4cd2 PH |
7757 | name = tmp + 1; |
7758 | else | |
14f9c5c9 | 7759 | { |
4c4b4cd2 PH |
7760 | while ((tmp = strstr (name, "__")) != NULL) |
7761 | { | |
7762 | if (isdigit (tmp[2])) | |
7763 | break; | |
7764 | else | |
7765 | name = tmp + 2; | |
7766 | } | |
14f9c5c9 AS |
7767 | } |
7768 | ||
7769 | if (name[0] == 'Q') | |
7770 | { | |
14f9c5c9 AS |
7771 | int v; |
7772 | if (name[1] == 'U' || name[1] == 'W') | |
4c4b4cd2 PH |
7773 | { |
7774 | if (sscanf (name + 2, "%x", &v) != 1) | |
7775 | return name; | |
7776 | } | |
14f9c5c9 | 7777 | else |
4c4b4cd2 | 7778 | return name; |
14f9c5c9 | 7779 | |
4c4b4cd2 | 7780 | GROW_VECT (result, result_len, 16); |
14f9c5c9 | 7781 | if (isascii (v) && isprint (v)) |
4c4b4cd2 | 7782 | sprintf (result, "'%c'", v); |
14f9c5c9 | 7783 | else if (name[1] == 'U') |
4c4b4cd2 | 7784 | sprintf (result, "[\"%02x\"]", v); |
14f9c5c9 | 7785 | else |
4c4b4cd2 | 7786 | sprintf (result, "[\"%04x\"]", v); |
14f9c5c9 AS |
7787 | |
7788 | return result; | |
7789 | } | |
d2e4a39e | 7790 | else |
4c4b4cd2 | 7791 | { |
c3e5cd34 PH |
7792 | tmp = strstr (name, "__"); |
7793 | if (tmp == NULL) | |
7794 | tmp = strstr (name, "$"); | |
7795 | if (tmp != NULL) | |
4c4b4cd2 PH |
7796 | { |
7797 | GROW_VECT (result, result_len, tmp - name + 1); | |
7798 | strncpy (result, name, tmp - name); | |
7799 | result[tmp - name] = '\0'; | |
7800 | return result; | |
7801 | } | |
7802 | ||
7803 | return name; | |
7804 | } | |
14f9c5c9 AS |
7805 | } |
7806 | ||
d2e4a39e | 7807 | static struct value * |
ebf56fd3 | 7808 | evaluate_subexp (struct type *expect_type, struct expression *exp, int *pos, |
4c4b4cd2 | 7809 | enum noside noside) |
14f9c5c9 | 7810 | { |
76a01679 | 7811 | return (*exp->language_defn->la_exp_desc->evaluate_exp) |
4c4b4cd2 | 7812 | (expect_type, exp, pos, noside); |
14f9c5c9 AS |
7813 | } |
7814 | ||
7815 | /* Evaluate the subexpression of EXP starting at *POS as for | |
7816 | evaluate_type, updating *POS to point just past the evaluated | |
4c4b4cd2 | 7817 | expression. */ |
14f9c5c9 | 7818 | |
d2e4a39e AS |
7819 | static struct value * |
7820 | evaluate_subexp_type (struct expression *exp, int *pos) | |
14f9c5c9 | 7821 | { |
4c4b4cd2 | 7822 | return (*exp->language_defn->la_exp_desc->evaluate_exp) |
14f9c5c9 AS |
7823 | (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS); |
7824 | } | |
7825 | ||
7826 | /* If VAL is wrapped in an aligner or subtype wrapper, return the | |
4c4b4cd2 | 7827 | value it wraps. */ |
14f9c5c9 | 7828 | |
d2e4a39e AS |
7829 | static struct value * |
7830 | unwrap_value (struct value *val) | |
14f9c5c9 | 7831 | { |
df407dfe | 7832 | struct type *type = ada_check_typedef (value_type (val)); |
14f9c5c9 AS |
7833 | if (ada_is_aligner_type (type)) |
7834 | { | |
de4d072f | 7835 | struct value *v = ada_value_struct_elt (val, "F", 0); |
df407dfe | 7836 | struct type *val_type = ada_check_typedef (value_type (v)); |
14f9c5c9 | 7837 | if (ada_type_name (val_type) == NULL) |
4c4b4cd2 | 7838 | TYPE_NAME (val_type) = ada_type_name (type); |
14f9c5c9 AS |
7839 | |
7840 | return unwrap_value (v); | |
7841 | } | |
d2e4a39e | 7842 | else |
14f9c5c9 | 7843 | { |
d2e4a39e | 7844 | struct type *raw_real_type = |
61ee279c | 7845 | ada_check_typedef (ada_get_base_type (type)); |
d2e4a39e | 7846 | |
14f9c5c9 | 7847 | if (type == raw_real_type) |
4c4b4cd2 | 7848 | return val; |
14f9c5c9 | 7849 | |
d2e4a39e | 7850 | return |
4c4b4cd2 PH |
7851 | coerce_unspec_val_to_type |
7852 | (val, ada_to_fixed_type (raw_real_type, 0, | |
df407dfe | 7853 | VALUE_ADDRESS (val) + value_offset (val), |
1ed6ede0 | 7854 | NULL, 1)); |
14f9c5c9 AS |
7855 | } |
7856 | } | |
d2e4a39e AS |
7857 | |
7858 | static struct value * | |
7859 | cast_to_fixed (struct type *type, struct value *arg) | |
14f9c5c9 AS |
7860 | { |
7861 | LONGEST val; | |
7862 | ||
df407dfe | 7863 | if (type == value_type (arg)) |
14f9c5c9 | 7864 | return arg; |
df407dfe | 7865 | else if (ada_is_fixed_point_type (value_type (arg))) |
d2e4a39e | 7866 | val = ada_float_to_fixed (type, |
df407dfe | 7867 | ada_fixed_to_float (value_type (arg), |
4c4b4cd2 | 7868 | value_as_long (arg))); |
d2e4a39e | 7869 | else |
14f9c5c9 | 7870 | { |
a53b7a21 | 7871 | DOUBLEST argd = value_as_double (arg); |
14f9c5c9 AS |
7872 | val = ada_float_to_fixed (type, argd); |
7873 | } | |
7874 | ||
7875 | return value_from_longest (type, val); | |
7876 | } | |
7877 | ||
d2e4a39e | 7878 | static struct value * |
a53b7a21 | 7879 | cast_from_fixed (struct type *type, struct value *arg) |
14f9c5c9 | 7880 | { |
df407dfe | 7881 | DOUBLEST val = ada_fixed_to_float (value_type (arg), |
4c4b4cd2 | 7882 | value_as_long (arg)); |
a53b7a21 | 7883 | return value_from_double (type, val); |
14f9c5c9 AS |
7884 | } |
7885 | ||
4c4b4cd2 PH |
7886 | /* Coerce VAL as necessary for assignment to an lval of type TYPE, and |
7887 | return the converted value. */ | |
7888 | ||
d2e4a39e AS |
7889 | static struct value * |
7890 | coerce_for_assign (struct type *type, struct value *val) | |
14f9c5c9 | 7891 | { |
df407dfe | 7892 | struct type *type2 = value_type (val); |
14f9c5c9 AS |
7893 | if (type == type2) |
7894 | return val; | |
7895 | ||
61ee279c PH |
7896 | type2 = ada_check_typedef (type2); |
7897 | type = ada_check_typedef (type); | |
14f9c5c9 | 7898 | |
d2e4a39e AS |
7899 | if (TYPE_CODE (type2) == TYPE_CODE_PTR |
7900 | && TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
14f9c5c9 AS |
7901 | { |
7902 | val = ada_value_ind (val); | |
df407dfe | 7903 | type2 = value_type (val); |
14f9c5c9 AS |
7904 | } |
7905 | ||
d2e4a39e | 7906 | if (TYPE_CODE (type2) == TYPE_CODE_ARRAY |
14f9c5c9 AS |
7907 | && TYPE_CODE (type) == TYPE_CODE_ARRAY) |
7908 | { | |
7909 | if (TYPE_LENGTH (type2) != TYPE_LENGTH (type) | |
4c4b4cd2 PH |
7910 | || TYPE_LENGTH (TYPE_TARGET_TYPE (type2)) |
7911 | != TYPE_LENGTH (TYPE_TARGET_TYPE (type2))) | |
323e0a4a | 7912 | error (_("Incompatible types in assignment")); |
04624583 | 7913 | deprecated_set_value_type (val, type); |
14f9c5c9 | 7914 | } |
d2e4a39e | 7915 | return val; |
14f9c5c9 AS |
7916 | } |
7917 | ||
4c4b4cd2 PH |
7918 | static struct value * |
7919 | ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op) | |
7920 | { | |
7921 | struct value *val; | |
7922 | struct type *type1, *type2; | |
7923 | LONGEST v, v1, v2; | |
7924 | ||
994b9211 AC |
7925 | arg1 = coerce_ref (arg1); |
7926 | arg2 = coerce_ref (arg2); | |
df407dfe AC |
7927 | type1 = base_type (ada_check_typedef (value_type (arg1))); |
7928 | type2 = base_type (ada_check_typedef (value_type (arg2))); | |
4c4b4cd2 | 7929 | |
76a01679 JB |
7930 | if (TYPE_CODE (type1) != TYPE_CODE_INT |
7931 | || TYPE_CODE (type2) != TYPE_CODE_INT) | |
4c4b4cd2 PH |
7932 | return value_binop (arg1, arg2, op); |
7933 | ||
76a01679 | 7934 | switch (op) |
4c4b4cd2 PH |
7935 | { |
7936 | case BINOP_MOD: | |
7937 | case BINOP_DIV: | |
7938 | case BINOP_REM: | |
7939 | break; | |
7940 | default: | |
7941 | return value_binop (arg1, arg2, op); | |
7942 | } | |
7943 | ||
7944 | v2 = value_as_long (arg2); | |
7945 | if (v2 == 0) | |
323e0a4a | 7946 | error (_("second operand of %s must not be zero."), op_string (op)); |
4c4b4cd2 PH |
7947 | |
7948 | if (TYPE_UNSIGNED (type1) || op == BINOP_MOD) | |
7949 | return value_binop (arg1, arg2, op); | |
7950 | ||
7951 | v1 = value_as_long (arg1); | |
7952 | switch (op) | |
7953 | { | |
7954 | case BINOP_DIV: | |
7955 | v = v1 / v2; | |
76a01679 JB |
7956 | if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0) |
7957 | v += v > 0 ? -1 : 1; | |
4c4b4cd2 PH |
7958 | break; |
7959 | case BINOP_REM: | |
7960 | v = v1 % v2; | |
76a01679 JB |
7961 | if (v * v1 < 0) |
7962 | v -= v2; | |
4c4b4cd2 PH |
7963 | break; |
7964 | default: | |
7965 | /* Should not reach this point. */ | |
7966 | v = 0; | |
7967 | } | |
7968 | ||
7969 | val = allocate_value (type1); | |
990a07ab | 7970 | store_unsigned_integer (value_contents_raw (val), |
df407dfe | 7971 | TYPE_LENGTH (value_type (val)), v); |
4c4b4cd2 PH |
7972 | return val; |
7973 | } | |
7974 | ||
7975 | static int | |
7976 | ada_value_equal (struct value *arg1, struct value *arg2) | |
7977 | { | |
df407dfe AC |
7978 | if (ada_is_direct_array_type (value_type (arg1)) |
7979 | || ada_is_direct_array_type (value_type (arg2))) | |
4c4b4cd2 | 7980 | { |
f58b38bf JB |
7981 | /* Automatically dereference any array reference before |
7982 | we attempt to perform the comparison. */ | |
7983 | arg1 = ada_coerce_ref (arg1); | |
7984 | arg2 = ada_coerce_ref (arg2); | |
7985 | ||
4c4b4cd2 PH |
7986 | arg1 = ada_coerce_to_simple_array (arg1); |
7987 | arg2 = ada_coerce_to_simple_array (arg2); | |
df407dfe AC |
7988 | if (TYPE_CODE (value_type (arg1)) != TYPE_CODE_ARRAY |
7989 | || TYPE_CODE (value_type (arg2)) != TYPE_CODE_ARRAY) | |
323e0a4a | 7990 | error (_("Attempt to compare array with non-array")); |
4c4b4cd2 | 7991 | /* FIXME: The following works only for types whose |
76a01679 JB |
7992 | representations use all bits (no padding or undefined bits) |
7993 | and do not have user-defined equality. */ | |
7994 | return | |
df407dfe | 7995 | TYPE_LENGTH (value_type (arg1)) == TYPE_LENGTH (value_type (arg2)) |
0fd88904 | 7996 | && memcmp (value_contents (arg1), value_contents (arg2), |
df407dfe | 7997 | TYPE_LENGTH (value_type (arg1))) == 0; |
4c4b4cd2 PH |
7998 | } |
7999 | return value_equal (arg1, arg2); | |
8000 | } | |
8001 | ||
52ce6436 PH |
8002 | /* Total number of component associations in the aggregate starting at |
8003 | index PC in EXP. Assumes that index PC is the start of an | |
8004 | OP_AGGREGATE. */ | |
8005 | ||
8006 | static int | |
8007 | num_component_specs (struct expression *exp, int pc) | |
8008 | { | |
8009 | int n, m, i; | |
8010 | m = exp->elts[pc + 1].longconst; | |
8011 | pc += 3; | |
8012 | n = 0; | |
8013 | for (i = 0; i < m; i += 1) | |
8014 | { | |
8015 | switch (exp->elts[pc].opcode) | |
8016 | { | |
8017 | default: | |
8018 | n += 1; | |
8019 | break; | |
8020 | case OP_CHOICES: | |
8021 | n += exp->elts[pc + 1].longconst; | |
8022 | break; | |
8023 | } | |
8024 | ada_evaluate_subexp (NULL, exp, &pc, EVAL_SKIP); | |
8025 | } | |
8026 | return n; | |
8027 | } | |
8028 | ||
8029 | /* Assign the result of evaluating EXP starting at *POS to the INDEXth | |
8030 | component of LHS (a simple array or a record), updating *POS past | |
8031 | the expression, assuming that LHS is contained in CONTAINER. Does | |
8032 | not modify the inferior's memory, nor does it modify LHS (unless | |
8033 | LHS == CONTAINER). */ | |
8034 | ||
8035 | static void | |
8036 | assign_component (struct value *container, struct value *lhs, LONGEST index, | |
8037 | struct expression *exp, int *pos) | |
8038 | { | |
8039 | struct value *mark = value_mark (); | |
8040 | struct value *elt; | |
8041 | if (TYPE_CODE (value_type (lhs)) == TYPE_CODE_ARRAY) | |
8042 | { | |
6d84d3d8 | 8043 | struct value *index_val = value_from_longest (builtin_type_int32, index); |
52ce6436 PH |
8044 | elt = unwrap_value (ada_value_subscript (lhs, 1, &index_val)); |
8045 | } | |
8046 | else | |
8047 | { | |
8048 | elt = ada_index_struct_field (index, lhs, 0, value_type (lhs)); | |
8049 | elt = ada_to_fixed_value (unwrap_value (elt)); | |
8050 | } | |
8051 | ||
8052 | if (exp->elts[*pos].opcode == OP_AGGREGATE) | |
8053 | assign_aggregate (container, elt, exp, pos, EVAL_NORMAL); | |
8054 | else | |
8055 | value_assign_to_component (container, elt, | |
8056 | ada_evaluate_subexp (NULL, exp, pos, | |
8057 | EVAL_NORMAL)); | |
8058 | ||
8059 | value_free_to_mark (mark); | |
8060 | } | |
8061 | ||
8062 | /* Assuming that LHS represents an lvalue having a record or array | |
8063 | type, and EXP->ELTS[*POS] is an OP_AGGREGATE, evaluate an assignment | |
8064 | of that aggregate's value to LHS, advancing *POS past the | |
8065 | aggregate. NOSIDE is as for evaluate_subexp. CONTAINER is an | |
8066 | lvalue containing LHS (possibly LHS itself). Does not modify | |
8067 | the inferior's memory, nor does it modify the contents of | |
8068 | LHS (unless == CONTAINER). Returns the modified CONTAINER. */ | |
8069 | ||
8070 | static struct value * | |
8071 | assign_aggregate (struct value *container, | |
8072 | struct value *lhs, struct expression *exp, | |
8073 | int *pos, enum noside noside) | |
8074 | { | |
8075 | struct type *lhs_type; | |
8076 | int n = exp->elts[*pos+1].longconst; | |
8077 | LONGEST low_index, high_index; | |
8078 | int num_specs; | |
8079 | LONGEST *indices; | |
8080 | int max_indices, num_indices; | |
8081 | int is_array_aggregate; | |
8082 | int i; | |
8083 | struct value *mark = value_mark (); | |
8084 | ||
8085 | *pos += 3; | |
8086 | if (noside != EVAL_NORMAL) | |
8087 | { | |
8088 | int i; | |
8089 | for (i = 0; i < n; i += 1) | |
8090 | ada_evaluate_subexp (NULL, exp, pos, noside); | |
8091 | return container; | |
8092 | } | |
8093 | ||
8094 | container = ada_coerce_ref (container); | |
8095 | if (ada_is_direct_array_type (value_type (container))) | |
8096 | container = ada_coerce_to_simple_array (container); | |
8097 | lhs = ada_coerce_ref (lhs); | |
8098 | if (!deprecated_value_modifiable (lhs)) | |
8099 | error (_("Left operand of assignment is not a modifiable lvalue.")); | |
8100 | ||
8101 | lhs_type = value_type (lhs); | |
8102 | if (ada_is_direct_array_type (lhs_type)) | |
8103 | { | |
8104 | lhs = ada_coerce_to_simple_array (lhs); | |
8105 | lhs_type = value_type (lhs); | |
8106 | low_index = TYPE_ARRAY_LOWER_BOUND_VALUE (lhs_type); | |
8107 | high_index = TYPE_ARRAY_UPPER_BOUND_VALUE (lhs_type); | |
8108 | is_array_aggregate = 1; | |
8109 | } | |
8110 | else if (TYPE_CODE (lhs_type) == TYPE_CODE_STRUCT) | |
8111 | { | |
8112 | low_index = 0; | |
8113 | high_index = num_visible_fields (lhs_type) - 1; | |
8114 | is_array_aggregate = 0; | |
8115 | } | |
8116 | else | |
8117 | error (_("Left-hand side must be array or record.")); | |
8118 | ||
8119 | num_specs = num_component_specs (exp, *pos - 3); | |
8120 | max_indices = 4 * num_specs + 4; | |
8121 | indices = alloca (max_indices * sizeof (indices[0])); | |
8122 | indices[0] = indices[1] = low_index - 1; | |
8123 | indices[2] = indices[3] = high_index + 1; | |
8124 | num_indices = 4; | |
8125 | ||
8126 | for (i = 0; i < n; i += 1) | |
8127 | { | |
8128 | switch (exp->elts[*pos].opcode) | |
8129 | { | |
8130 | case OP_CHOICES: | |
8131 | aggregate_assign_from_choices (container, lhs, exp, pos, indices, | |
8132 | &num_indices, max_indices, | |
8133 | low_index, high_index); | |
8134 | break; | |
8135 | case OP_POSITIONAL: | |
8136 | aggregate_assign_positional (container, lhs, exp, pos, indices, | |
8137 | &num_indices, max_indices, | |
8138 | low_index, high_index); | |
8139 | break; | |
8140 | case OP_OTHERS: | |
8141 | if (i != n-1) | |
8142 | error (_("Misplaced 'others' clause")); | |
8143 | aggregate_assign_others (container, lhs, exp, pos, indices, | |
8144 | num_indices, low_index, high_index); | |
8145 | break; | |
8146 | default: | |
8147 | error (_("Internal error: bad aggregate clause")); | |
8148 | } | |
8149 | } | |
8150 | ||
8151 | return container; | |
8152 | } | |
8153 | ||
8154 | /* Assign into the component of LHS indexed by the OP_POSITIONAL | |
8155 | construct at *POS, updating *POS past the construct, given that | |
8156 | the positions are relative to lower bound LOW, where HIGH is the | |
8157 | upper bound. Record the position in INDICES[0 .. MAX_INDICES-1] | |
8158 | updating *NUM_INDICES as needed. CONTAINER is as for | |
8159 | assign_aggregate. */ | |
8160 | static void | |
8161 | aggregate_assign_positional (struct value *container, | |
8162 | struct value *lhs, struct expression *exp, | |
8163 | int *pos, LONGEST *indices, int *num_indices, | |
8164 | int max_indices, LONGEST low, LONGEST high) | |
8165 | { | |
8166 | LONGEST ind = longest_to_int (exp->elts[*pos + 1].longconst) + low; | |
8167 | ||
8168 | if (ind - 1 == high) | |
e1d5a0d2 | 8169 | warning (_("Extra components in aggregate ignored.")); |
52ce6436 PH |
8170 | if (ind <= high) |
8171 | { | |
8172 | add_component_interval (ind, ind, indices, num_indices, max_indices); | |
8173 | *pos += 3; | |
8174 | assign_component (container, lhs, ind, exp, pos); | |
8175 | } | |
8176 | else | |
8177 | ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP); | |
8178 | } | |
8179 | ||
8180 | /* Assign into the components of LHS indexed by the OP_CHOICES | |
8181 | construct at *POS, updating *POS past the construct, given that | |
8182 | the allowable indices are LOW..HIGH. Record the indices assigned | |
8183 | to in INDICES[0 .. MAX_INDICES-1], updating *NUM_INDICES as | |
8184 | needed. CONTAINER is as for assign_aggregate. */ | |
8185 | static void | |
8186 | aggregate_assign_from_choices (struct value *container, | |
8187 | struct value *lhs, struct expression *exp, | |
8188 | int *pos, LONGEST *indices, int *num_indices, | |
8189 | int max_indices, LONGEST low, LONGEST high) | |
8190 | { | |
8191 | int j; | |
8192 | int n_choices = longest_to_int (exp->elts[*pos+1].longconst); | |
8193 | int choice_pos, expr_pc; | |
8194 | int is_array = ada_is_direct_array_type (value_type (lhs)); | |
8195 | ||
8196 | choice_pos = *pos += 3; | |
8197 | ||
8198 | for (j = 0; j < n_choices; j += 1) | |
8199 | ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP); | |
8200 | expr_pc = *pos; | |
8201 | ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP); | |
8202 | ||
8203 | for (j = 0; j < n_choices; j += 1) | |
8204 | { | |
8205 | LONGEST lower, upper; | |
8206 | enum exp_opcode op = exp->elts[choice_pos].opcode; | |
8207 | if (op == OP_DISCRETE_RANGE) | |
8208 | { | |
8209 | choice_pos += 1; | |
8210 | lower = value_as_long (ada_evaluate_subexp (NULL, exp, pos, | |
8211 | EVAL_NORMAL)); | |
8212 | upper = value_as_long (ada_evaluate_subexp (NULL, exp, pos, | |
8213 | EVAL_NORMAL)); | |
8214 | } | |
8215 | else if (is_array) | |
8216 | { | |
8217 | lower = value_as_long (ada_evaluate_subexp (NULL, exp, &choice_pos, | |
8218 | EVAL_NORMAL)); | |
8219 | upper = lower; | |
8220 | } | |
8221 | else | |
8222 | { | |
8223 | int ind; | |
8224 | char *name; | |
8225 | switch (op) | |
8226 | { | |
8227 | case OP_NAME: | |
8228 | name = &exp->elts[choice_pos + 2].string; | |
8229 | break; | |
8230 | case OP_VAR_VALUE: | |
8231 | name = SYMBOL_NATURAL_NAME (exp->elts[choice_pos + 2].symbol); | |
8232 | break; | |
8233 | default: | |
8234 | error (_("Invalid record component association.")); | |
8235 | } | |
8236 | ada_evaluate_subexp (NULL, exp, &choice_pos, EVAL_SKIP); | |
8237 | ind = 0; | |
8238 | if (! find_struct_field (name, value_type (lhs), 0, | |
8239 | NULL, NULL, NULL, NULL, &ind)) | |
8240 | error (_("Unknown component name: %s."), name); | |
8241 | lower = upper = ind; | |
8242 | } | |
8243 | ||
8244 | if (lower <= upper && (lower < low || upper > high)) | |
8245 | error (_("Index in component association out of bounds.")); | |
8246 | ||
8247 | add_component_interval (lower, upper, indices, num_indices, | |
8248 | max_indices); | |
8249 | while (lower <= upper) | |
8250 | { | |
8251 | int pos1; | |
8252 | pos1 = expr_pc; | |
8253 | assign_component (container, lhs, lower, exp, &pos1); | |
8254 | lower += 1; | |
8255 | } | |
8256 | } | |
8257 | } | |
8258 | ||
8259 | /* Assign the value of the expression in the OP_OTHERS construct in | |
8260 | EXP at *POS into the components of LHS indexed from LOW .. HIGH that | |
8261 | have not been previously assigned. The index intervals already assigned | |
8262 | are in INDICES[0 .. NUM_INDICES-1]. Updates *POS to after the | |
8263 | OP_OTHERS clause. CONTAINER is as for assign_aggregate*/ | |
8264 | static void | |
8265 | aggregate_assign_others (struct value *container, | |
8266 | struct value *lhs, struct expression *exp, | |
8267 | int *pos, LONGEST *indices, int num_indices, | |
8268 | LONGEST low, LONGEST high) | |
8269 | { | |
8270 | int i; | |
8271 | int expr_pc = *pos+1; | |
8272 | ||
8273 | for (i = 0; i < num_indices - 2; i += 2) | |
8274 | { | |
8275 | LONGEST ind; | |
8276 | for (ind = indices[i + 1] + 1; ind < indices[i + 2]; ind += 1) | |
8277 | { | |
8278 | int pos; | |
8279 | pos = expr_pc; | |
8280 | assign_component (container, lhs, ind, exp, &pos); | |
8281 | } | |
8282 | } | |
8283 | ada_evaluate_subexp (NULL, exp, pos, EVAL_SKIP); | |
8284 | } | |
8285 | ||
8286 | /* Add the interval [LOW .. HIGH] to the sorted set of intervals | |
8287 | [ INDICES[0] .. INDICES[1] ],..., [ INDICES[*SIZE-2] .. INDICES[*SIZE-1] ], | |
8288 | modifying *SIZE as needed. It is an error if *SIZE exceeds | |
8289 | MAX_SIZE. The resulting intervals do not overlap. */ | |
8290 | static void | |
8291 | add_component_interval (LONGEST low, LONGEST high, | |
8292 | LONGEST* indices, int *size, int max_size) | |
8293 | { | |
8294 | int i, j; | |
8295 | for (i = 0; i < *size; i += 2) { | |
8296 | if (high >= indices[i] && low <= indices[i + 1]) | |
8297 | { | |
8298 | int kh; | |
8299 | for (kh = i + 2; kh < *size; kh += 2) | |
8300 | if (high < indices[kh]) | |
8301 | break; | |
8302 | if (low < indices[i]) | |
8303 | indices[i] = low; | |
8304 | indices[i + 1] = indices[kh - 1]; | |
8305 | if (high > indices[i + 1]) | |
8306 | indices[i + 1] = high; | |
8307 | memcpy (indices + i + 2, indices + kh, *size - kh); | |
8308 | *size -= kh - i - 2; | |
8309 | return; | |
8310 | } | |
8311 | else if (high < indices[i]) | |
8312 | break; | |
8313 | } | |
8314 | ||
8315 | if (*size == max_size) | |
8316 | error (_("Internal error: miscounted aggregate components.")); | |
8317 | *size += 2; | |
8318 | for (j = *size-1; j >= i+2; j -= 1) | |
8319 | indices[j] = indices[j - 2]; | |
8320 | indices[i] = low; | |
8321 | indices[i + 1] = high; | |
8322 | } | |
8323 | ||
6e48bd2c JB |
8324 | /* Perform and Ada cast of ARG2 to type TYPE if the type of ARG2 |
8325 | is different. */ | |
8326 | ||
8327 | static struct value * | |
8328 | ada_value_cast (struct type *type, struct value *arg2, enum noside noside) | |
8329 | { | |
8330 | if (type == ada_check_typedef (value_type (arg2))) | |
8331 | return arg2; | |
8332 | ||
8333 | if (ada_is_fixed_point_type (type)) | |
8334 | return (cast_to_fixed (type, arg2)); | |
8335 | ||
8336 | if (ada_is_fixed_point_type (value_type (arg2))) | |
a53b7a21 | 8337 | return cast_from_fixed (type, arg2); |
6e48bd2c JB |
8338 | |
8339 | return value_cast (type, arg2); | |
8340 | } | |
8341 | ||
52ce6436 | 8342 | static struct value * |
ebf56fd3 | 8343 | ada_evaluate_subexp (struct type *expect_type, struct expression *exp, |
4c4b4cd2 | 8344 | int *pos, enum noside noside) |
14f9c5c9 AS |
8345 | { |
8346 | enum exp_opcode op; | |
14f9c5c9 AS |
8347 | int tem, tem2, tem3; |
8348 | int pc; | |
8349 | struct value *arg1 = NULL, *arg2 = NULL, *arg3; | |
8350 | struct type *type; | |
52ce6436 | 8351 | int nargs, oplen; |
d2e4a39e | 8352 | struct value **argvec; |
14f9c5c9 | 8353 | |
d2e4a39e AS |
8354 | pc = *pos; |
8355 | *pos += 1; | |
14f9c5c9 AS |
8356 | op = exp->elts[pc].opcode; |
8357 | ||
d2e4a39e | 8358 | switch (op) |
14f9c5c9 AS |
8359 | { |
8360 | default: | |
8361 | *pos -= 1; | |
6e48bd2c JB |
8362 | arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside); |
8363 | arg1 = unwrap_value (arg1); | |
8364 | ||
8365 | /* If evaluating an OP_DOUBLE and an EXPECT_TYPE was provided, | |
8366 | then we need to perform the conversion manually, because | |
8367 | evaluate_subexp_standard doesn't do it. This conversion is | |
8368 | necessary in Ada because the different kinds of float/fixed | |
8369 | types in Ada have different representations. | |
8370 | ||
8371 | Similarly, we need to perform the conversion from OP_LONG | |
8372 | ourselves. */ | |
8373 | if ((op == OP_DOUBLE || op == OP_LONG) && expect_type != NULL) | |
8374 | arg1 = ada_value_cast (expect_type, arg1, noside); | |
8375 | ||
8376 | return arg1; | |
4c4b4cd2 PH |
8377 | |
8378 | case OP_STRING: | |
8379 | { | |
76a01679 JB |
8380 | struct value *result; |
8381 | *pos -= 1; | |
8382 | result = evaluate_subexp_standard (expect_type, exp, pos, noside); | |
8383 | /* The result type will have code OP_STRING, bashed there from | |
8384 | OP_ARRAY. Bash it back. */ | |
df407dfe AC |
8385 | if (TYPE_CODE (value_type (result)) == TYPE_CODE_STRING) |
8386 | TYPE_CODE (value_type (result)) = TYPE_CODE_ARRAY; | |
76a01679 | 8387 | return result; |
4c4b4cd2 | 8388 | } |
14f9c5c9 AS |
8389 | |
8390 | case UNOP_CAST: | |
8391 | (*pos) += 2; | |
8392 | type = exp->elts[pc + 1].type; | |
8393 | arg1 = evaluate_subexp (type, exp, pos, noside); | |
8394 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8395 | goto nosideret; |
6e48bd2c | 8396 | arg1 = ada_value_cast (type, arg1, noside); |
14f9c5c9 AS |
8397 | return arg1; |
8398 | ||
4c4b4cd2 PH |
8399 | case UNOP_QUAL: |
8400 | (*pos) += 2; | |
8401 | type = exp->elts[pc + 1].type; | |
8402 | return ada_evaluate_subexp (type, exp, pos, noside); | |
8403 | ||
14f9c5c9 AS |
8404 | case BINOP_ASSIGN: |
8405 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
52ce6436 PH |
8406 | if (exp->elts[*pos].opcode == OP_AGGREGATE) |
8407 | { | |
8408 | arg1 = assign_aggregate (arg1, arg1, exp, pos, noside); | |
8409 | if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS) | |
8410 | return arg1; | |
8411 | return ada_value_assign (arg1, arg1); | |
8412 | } | |
003f3813 JB |
8413 | /* Force the evaluation of the rhs ARG2 to the type of the lhs ARG1, |
8414 | except if the lhs of our assignment is a convenience variable. | |
8415 | In the case of assigning to a convenience variable, the lhs | |
8416 | should be exactly the result of the evaluation of the rhs. */ | |
8417 | type = value_type (arg1); | |
8418 | if (VALUE_LVAL (arg1) == lval_internalvar) | |
8419 | type = NULL; | |
8420 | arg2 = evaluate_subexp (type, exp, pos, noside); | |
14f9c5c9 | 8421 | if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS) |
4c4b4cd2 | 8422 | return arg1; |
df407dfe AC |
8423 | if (ada_is_fixed_point_type (value_type (arg1))) |
8424 | arg2 = cast_to_fixed (value_type (arg1), arg2); | |
8425 | else if (ada_is_fixed_point_type (value_type (arg2))) | |
76a01679 | 8426 | error |
323e0a4a | 8427 | (_("Fixed-point values must be assigned to fixed-point variables")); |
d2e4a39e | 8428 | else |
df407dfe | 8429 | arg2 = coerce_for_assign (value_type (arg1), arg2); |
4c4b4cd2 | 8430 | return ada_value_assign (arg1, arg2); |
14f9c5c9 AS |
8431 | |
8432 | case BINOP_ADD: | |
8433 | arg1 = evaluate_subexp_with_coercion (exp, pos, noside); | |
8434 | arg2 = evaluate_subexp_with_coercion (exp, pos, noside); | |
8435 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8436 | goto nosideret; |
2ac8a782 JB |
8437 | if (TYPE_CODE (value_type (arg1)) == TYPE_CODE_PTR) |
8438 | return (value_from_longest | |
8439 | (value_type (arg1), | |
8440 | value_as_long (arg1) + value_as_long (arg2))); | |
df407dfe AC |
8441 | if ((ada_is_fixed_point_type (value_type (arg1)) |
8442 | || ada_is_fixed_point_type (value_type (arg2))) | |
8443 | && value_type (arg1) != value_type (arg2)) | |
323e0a4a | 8444 | error (_("Operands of fixed-point addition must have the same type")); |
b7789565 JB |
8445 | /* Do the addition, and cast the result to the type of the first |
8446 | argument. We cannot cast the result to a reference type, so if | |
8447 | ARG1 is a reference type, find its underlying type. */ | |
8448 | type = value_type (arg1); | |
8449 | while (TYPE_CODE (type) == TYPE_CODE_REF) | |
8450 | type = TYPE_TARGET_TYPE (type); | |
f44316fa | 8451 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); |
89eef114 | 8452 | return value_cast (type, value_binop (arg1, arg2, BINOP_ADD)); |
14f9c5c9 AS |
8453 | |
8454 | case BINOP_SUB: | |
8455 | arg1 = evaluate_subexp_with_coercion (exp, pos, noside); | |
8456 | arg2 = evaluate_subexp_with_coercion (exp, pos, noside); | |
8457 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 8458 | goto nosideret; |
2ac8a782 JB |
8459 | if (TYPE_CODE (value_type (arg1)) == TYPE_CODE_PTR) |
8460 | return (value_from_longest | |
8461 | (value_type (arg1), | |
8462 | value_as_long (arg1) - value_as_long (arg2))); | |
df407dfe AC |
8463 | if ((ada_is_fixed_point_type (value_type (arg1)) |
8464 | || ada_is_fixed_point_type (value_type (arg2))) | |
8465 | && value_type (arg1) != value_type (arg2)) | |
323e0a4a | 8466 | error (_("Operands of fixed-point subtraction must have the same type")); |
b7789565 JB |
8467 | /* Do the substraction, and cast the result to the type of the first |
8468 | argument. We cannot cast the result to a reference type, so if | |
8469 | ARG1 is a reference type, find its underlying type. */ | |
8470 | type = value_type (arg1); | |
8471 | while (TYPE_CODE (type) == TYPE_CODE_REF) | |
8472 | type = TYPE_TARGET_TYPE (type); | |
f44316fa | 8473 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); |
89eef114 | 8474 | return value_cast (type, value_binop (arg1, arg2, BINOP_SUB)); |
14f9c5c9 AS |
8475 | |
8476 | case BINOP_MUL: | |
8477 | case BINOP_DIV: | |
8478 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8479 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8480 | if (noside == EVAL_SKIP) | |
4c4b4cd2 PH |
8481 | goto nosideret; |
8482 | else if (noside == EVAL_AVOID_SIDE_EFFECTS | |
76a01679 | 8483 | && (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD)) |
df407dfe | 8484 | return value_zero (value_type (arg1), not_lval); |
14f9c5c9 | 8485 | else |
4c4b4cd2 | 8486 | { |
a53b7a21 | 8487 | type = builtin_type (exp->gdbarch)->builtin_double; |
df407dfe | 8488 | if (ada_is_fixed_point_type (value_type (arg1))) |
a53b7a21 | 8489 | arg1 = cast_from_fixed (type, arg1); |
df407dfe | 8490 | if (ada_is_fixed_point_type (value_type (arg2))) |
a53b7a21 | 8491 | arg2 = cast_from_fixed (type, arg2); |
f44316fa | 8492 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); |
4c4b4cd2 PH |
8493 | return ada_value_binop (arg1, arg2, op); |
8494 | } | |
8495 | ||
8496 | case BINOP_REM: | |
8497 | case BINOP_MOD: | |
8498 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8499 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8500 | if (noside == EVAL_SKIP) | |
76a01679 | 8501 | goto nosideret; |
4c4b4cd2 | 8502 | else if (noside == EVAL_AVOID_SIDE_EFFECTS |
76a01679 | 8503 | && (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD)) |
df407dfe | 8504 | return value_zero (value_type (arg1), not_lval); |
14f9c5c9 | 8505 | else |
f44316fa UW |
8506 | { |
8507 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); | |
8508 | return ada_value_binop (arg1, arg2, op); | |
8509 | } | |
14f9c5c9 | 8510 | |
4c4b4cd2 PH |
8511 | case BINOP_EQUAL: |
8512 | case BINOP_NOTEQUAL: | |
14f9c5c9 | 8513 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
df407dfe | 8514 | arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside); |
14f9c5c9 | 8515 | if (noside == EVAL_SKIP) |
76a01679 | 8516 | goto nosideret; |
4c4b4cd2 | 8517 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
76a01679 | 8518 | tem = 0; |
4c4b4cd2 | 8519 | else |
f44316fa UW |
8520 | { |
8521 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); | |
8522 | tem = ada_value_equal (arg1, arg2); | |
8523 | } | |
4c4b4cd2 | 8524 | if (op == BINOP_NOTEQUAL) |
76a01679 | 8525 | tem = !tem; |
fbb06eb1 UW |
8526 | type = language_bool_type (exp->language_defn, exp->gdbarch); |
8527 | return value_from_longest (type, (LONGEST) tem); | |
4c4b4cd2 PH |
8528 | |
8529 | case UNOP_NEG: | |
8530 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8531 | if (noside == EVAL_SKIP) | |
8532 | goto nosideret; | |
df407dfe AC |
8533 | else if (ada_is_fixed_point_type (value_type (arg1))) |
8534 | return value_cast (value_type (arg1), value_neg (arg1)); | |
14f9c5c9 | 8535 | else |
f44316fa UW |
8536 | { |
8537 | unop_promote (exp->language_defn, exp->gdbarch, &arg1); | |
8538 | return value_neg (arg1); | |
8539 | } | |
4c4b4cd2 | 8540 | |
2330c6c6 JB |
8541 | case BINOP_LOGICAL_AND: |
8542 | case BINOP_LOGICAL_OR: | |
8543 | case UNOP_LOGICAL_NOT: | |
000d5124 JB |
8544 | { |
8545 | struct value *val; | |
8546 | ||
8547 | *pos -= 1; | |
8548 | val = evaluate_subexp_standard (expect_type, exp, pos, noside); | |
fbb06eb1 UW |
8549 | type = language_bool_type (exp->language_defn, exp->gdbarch); |
8550 | return value_cast (type, val); | |
000d5124 | 8551 | } |
2330c6c6 JB |
8552 | |
8553 | case BINOP_BITWISE_AND: | |
8554 | case BINOP_BITWISE_IOR: | |
8555 | case BINOP_BITWISE_XOR: | |
000d5124 JB |
8556 | { |
8557 | struct value *val; | |
8558 | ||
8559 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS); | |
8560 | *pos = pc; | |
8561 | val = evaluate_subexp_standard (expect_type, exp, pos, noside); | |
8562 | ||
8563 | return value_cast (value_type (arg1), val); | |
8564 | } | |
2330c6c6 | 8565 | |
14f9c5c9 AS |
8566 | case OP_VAR_VALUE: |
8567 | *pos -= 1; | |
6799def4 | 8568 | |
14f9c5c9 | 8569 | if (noside == EVAL_SKIP) |
4c4b4cd2 PH |
8570 | { |
8571 | *pos += 4; | |
8572 | goto nosideret; | |
8573 | } | |
8574 | else if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN) | |
76a01679 JB |
8575 | /* Only encountered when an unresolved symbol occurs in a |
8576 | context other than a function call, in which case, it is | |
52ce6436 | 8577 | invalid. */ |
323e0a4a | 8578 | error (_("Unexpected unresolved symbol, %s, during evaluation"), |
4c4b4cd2 | 8579 | SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol)); |
14f9c5c9 | 8580 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
4c4b4cd2 | 8581 | { |
0c1f74cf JB |
8582 | type = static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol)); |
8583 | if (ada_is_tagged_type (type, 0)) | |
8584 | { | |
8585 | /* Tagged types are a little special in the fact that the real | |
8586 | type is dynamic and can only be determined by inspecting the | |
8587 | object's tag. This means that we need to get the object's | |
8588 | value first (EVAL_NORMAL) and then extract the actual object | |
8589 | type from its tag. | |
8590 | ||
8591 | Note that we cannot skip the final step where we extract | |
8592 | the object type from its tag, because the EVAL_NORMAL phase | |
8593 | results in dynamic components being resolved into fixed ones. | |
8594 | This can cause problems when trying to print the type | |
8595 | description of tagged types whose parent has a dynamic size: | |
8596 | We use the type name of the "_parent" component in order | |
8597 | to print the name of the ancestor type in the type description. | |
8598 | If that component had a dynamic size, the resolution into | |
8599 | a fixed type would result in the loss of that type name, | |
8600 | thus preventing us from printing the name of the ancestor | |
8601 | type in the type description. */ | |
8602 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_NORMAL); | |
8603 | return value_zero (type_from_tag (ada_value_tag (arg1)), not_lval); | |
8604 | } | |
8605 | ||
4c4b4cd2 PH |
8606 | *pos += 4; |
8607 | return value_zero | |
8608 | (to_static_fixed_type | |
8609 | (static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol))), | |
8610 | not_lval); | |
8611 | } | |
d2e4a39e | 8612 | else |
4c4b4cd2 PH |
8613 | { |
8614 | arg1 = | |
8615 | unwrap_value (evaluate_subexp_standard | |
8616 | (expect_type, exp, pos, noside)); | |
8617 | return ada_to_fixed_value (arg1); | |
8618 | } | |
8619 | ||
8620 | case OP_FUNCALL: | |
8621 | (*pos) += 2; | |
8622 | ||
8623 | /* Allocate arg vector, including space for the function to be | |
8624 | called in argvec[0] and a terminating NULL. */ | |
8625 | nargs = longest_to_int (exp->elts[pc + 1].longconst); | |
8626 | argvec = | |
8627 | (struct value **) alloca (sizeof (struct value *) * (nargs + 2)); | |
8628 | ||
8629 | if (exp->elts[*pos].opcode == OP_VAR_VALUE | |
76a01679 | 8630 | && SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN) |
323e0a4a | 8631 | error (_("Unexpected unresolved symbol, %s, during evaluation"), |
4c4b4cd2 PH |
8632 | SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol)); |
8633 | else | |
8634 | { | |
8635 | for (tem = 0; tem <= nargs; tem += 1) | |
8636 | argvec[tem] = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8637 | argvec[tem] = 0; | |
8638 | ||
8639 | if (noside == EVAL_SKIP) | |
8640 | goto nosideret; | |
8641 | } | |
8642 | ||
df407dfe | 8643 | if (ada_is_packed_array_type (desc_base_type (value_type (argvec[0])))) |
4c4b4cd2 | 8644 | argvec[0] = ada_coerce_to_simple_array (argvec[0]); |
df407dfe AC |
8645 | else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_REF |
8646 | || (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_ARRAY | |
76a01679 | 8647 | && VALUE_LVAL (argvec[0]) == lval_memory)) |
4c4b4cd2 PH |
8648 | argvec[0] = value_addr (argvec[0]); |
8649 | ||
df407dfe | 8650 | type = ada_check_typedef (value_type (argvec[0])); |
4c4b4cd2 PH |
8651 | if (TYPE_CODE (type) == TYPE_CODE_PTR) |
8652 | { | |
61ee279c | 8653 | switch (TYPE_CODE (ada_check_typedef (TYPE_TARGET_TYPE (type)))) |
4c4b4cd2 PH |
8654 | { |
8655 | case TYPE_CODE_FUNC: | |
61ee279c | 8656 | type = ada_check_typedef (TYPE_TARGET_TYPE (type)); |
4c4b4cd2 PH |
8657 | break; |
8658 | case TYPE_CODE_ARRAY: | |
8659 | break; | |
8660 | case TYPE_CODE_STRUCT: | |
8661 | if (noside != EVAL_AVOID_SIDE_EFFECTS) | |
8662 | argvec[0] = ada_value_ind (argvec[0]); | |
61ee279c | 8663 | type = ada_check_typedef (TYPE_TARGET_TYPE (type)); |
4c4b4cd2 PH |
8664 | break; |
8665 | default: | |
323e0a4a | 8666 | error (_("cannot subscript or call something of type `%s'"), |
df407dfe | 8667 | ada_type_name (value_type (argvec[0]))); |
4c4b4cd2 PH |
8668 | break; |
8669 | } | |
8670 | } | |
8671 | ||
8672 | switch (TYPE_CODE (type)) | |
8673 | { | |
8674 | case TYPE_CODE_FUNC: | |
8675 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8676 | return allocate_value (TYPE_TARGET_TYPE (type)); | |
8677 | return call_function_by_hand (argvec[0], nargs, argvec + 1); | |
8678 | case TYPE_CODE_STRUCT: | |
8679 | { | |
8680 | int arity; | |
8681 | ||
4c4b4cd2 PH |
8682 | arity = ada_array_arity (type); |
8683 | type = ada_array_element_type (type, nargs); | |
8684 | if (type == NULL) | |
323e0a4a | 8685 | error (_("cannot subscript or call a record")); |
4c4b4cd2 | 8686 | if (arity != nargs) |
323e0a4a | 8687 | error (_("wrong number of subscripts; expecting %d"), arity); |
4c4b4cd2 | 8688 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
0a07e705 | 8689 | return value_zero (ada_aligned_type (type), lval_memory); |
4c4b4cd2 PH |
8690 | return |
8691 | unwrap_value (ada_value_subscript | |
8692 | (argvec[0], nargs, argvec + 1)); | |
8693 | } | |
8694 | case TYPE_CODE_ARRAY: | |
8695 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8696 | { | |
8697 | type = ada_array_element_type (type, nargs); | |
8698 | if (type == NULL) | |
323e0a4a | 8699 | error (_("element type of array unknown")); |
4c4b4cd2 | 8700 | else |
0a07e705 | 8701 | return value_zero (ada_aligned_type (type), lval_memory); |
4c4b4cd2 PH |
8702 | } |
8703 | return | |
8704 | unwrap_value (ada_value_subscript | |
8705 | (ada_coerce_to_simple_array (argvec[0]), | |
8706 | nargs, argvec + 1)); | |
8707 | case TYPE_CODE_PTR: /* Pointer to array */ | |
8708 | type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1); | |
8709 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8710 | { | |
8711 | type = ada_array_element_type (type, nargs); | |
8712 | if (type == NULL) | |
323e0a4a | 8713 | error (_("element type of array unknown")); |
4c4b4cd2 | 8714 | else |
0a07e705 | 8715 | return value_zero (ada_aligned_type (type), lval_memory); |
4c4b4cd2 PH |
8716 | } |
8717 | return | |
8718 | unwrap_value (ada_value_ptr_subscript (argvec[0], type, | |
8719 | nargs, argvec + 1)); | |
8720 | ||
8721 | default: | |
e1d5a0d2 PH |
8722 | error (_("Attempt to index or call something other than an " |
8723 | "array or function")); | |
4c4b4cd2 PH |
8724 | } |
8725 | ||
8726 | case TERNOP_SLICE: | |
8727 | { | |
8728 | struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8729 | struct value *low_bound_val = | |
8730 | evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
714e53ab PH |
8731 | struct value *high_bound_val = |
8732 | evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8733 | LONGEST low_bound; | |
8734 | LONGEST high_bound; | |
994b9211 AC |
8735 | low_bound_val = coerce_ref (low_bound_val); |
8736 | high_bound_val = coerce_ref (high_bound_val); | |
714e53ab PH |
8737 | low_bound = pos_atr (low_bound_val); |
8738 | high_bound = pos_atr (high_bound_val); | |
963a6417 | 8739 | |
4c4b4cd2 PH |
8740 | if (noside == EVAL_SKIP) |
8741 | goto nosideret; | |
8742 | ||
4c4b4cd2 PH |
8743 | /* If this is a reference to an aligner type, then remove all |
8744 | the aligners. */ | |
df407dfe AC |
8745 | if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF |
8746 | && ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array)))) | |
8747 | TYPE_TARGET_TYPE (value_type (array)) = | |
8748 | ada_aligned_type (TYPE_TARGET_TYPE (value_type (array))); | |
4c4b4cd2 | 8749 | |
df407dfe | 8750 | if (ada_is_packed_array_type (value_type (array))) |
323e0a4a | 8751 | error (_("cannot slice a packed array")); |
4c4b4cd2 PH |
8752 | |
8753 | /* If this is a reference to an array or an array lvalue, | |
8754 | convert to a pointer. */ | |
df407dfe AC |
8755 | if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF |
8756 | || (TYPE_CODE (value_type (array)) == TYPE_CODE_ARRAY | |
4c4b4cd2 PH |
8757 | && VALUE_LVAL (array) == lval_memory)) |
8758 | array = value_addr (array); | |
8759 | ||
1265e4aa | 8760 | if (noside == EVAL_AVOID_SIDE_EFFECTS |
61ee279c | 8761 | && ada_is_array_descriptor_type (ada_check_typedef |
df407dfe | 8762 | (value_type (array)))) |
0b5d8877 | 8763 | return empty_array (ada_type_of_array (array, 0), low_bound); |
4c4b4cd2 PH |
8764 | |
8765 | array = ada_coerce_to_simple_array_ptr (array); | |
8766 | ||
714e53ab PH |
8767 | /* If we have more than one level of pointer indirection, |
8768 | dereference the value until we get only one level. */ | |
df407dfe AC |
8769 | while (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR |
8770 | && (TYPE_CODE (TYPE_TARGET_TYPE (value_type (array))) | |
714e53ab PH |
8771 | == TYPE_CODE_PTR)) |
8772 | array = value_ind (array); | |
8773 | ||
8774 | /* Make sure we really do have an array type before going further, | |
8775 | to avoid a SEGV when trying to get the index type or the target | |
8776 | type later down the road if the debug info generated by | |
8777 | the compiler is incorrect or incomplete. */ | |
df407dfe | 8778 | if (!ada_is_simple_array_type (value_type (array))) |
323e0a4a | 8779 | error (_("cannot take slice of non-array")); |
714e53ab | 8780 | |
df407dfe | 8781 | if (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR) |
4c4b4cd2 | 8782 | { |
0b5d8877 | 8783 | if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS) |
df407dfe | 8784 | return empty_array (TYPE_TARGET_TYPE (value_type (array)), |
4c4b4cd2 PH |
8785 | low_bound); |
8786 | else | |
8787 | { | |
8788 | struct type *arr_type0 = | |
df407dfe | 8789 | to_fixed_array_type (TYPE_TARGET_TYPE (value_type (array)), |
4c4b4cd2 | 8790 | NULL, 1); |
0b5d8877 | 8791 | return ada_value_slice_ptr (array, arr_type0, |
529cad9c PH |
8792 | longest_to_int (low_bound), |
8793 | longest_to_int (high_bound)); | |
4c4b4cd2 PH |
8794 | } |
8795 | } | |
8796 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8797 | return array; | |
8798 | else if (high_bound < low_bound) | |
df407dfe | 8799 | return empty_array (value_type (array), low_bound); |
4c4b4cd2 | 8800 | else |
529cad9c PH |
8801 | return ada_value_slice (array, longest_to_int (low_bound), |
8802 | longest_to_int (high_bound)); | |
4c4b4cd2 | 8803 | } |
14f9c5c9 | 8804 | |
4c4b4cd2 PH |
8805 | case UNOP_IN_RANGE: |
8806 | (*pos) += 2; | |
8807 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8808 | type = exp->elts[pc + 1].type; | |
14f9c5c9 | 8809 | |
14f9c5c9 | 8810 | if (noside == EVAL_SKIP) |
4c4b4cd2 | 8811 | goto nosideret; |
14f9c5c9 | 8812 | |
4c4b4cd2 PH |
8813 | switch (TYPE_CODE (type)) |
8814 | { | |
8815 | default: | |
e1d5a0d2 PH |
8816 | lim_warning (_("Membership test incompletely implemented; " |
8817 | "always returns true")); | |
fbb06eb1 UW |
8818 | type = language_bool_type (exp->language_defn, exp->gdbarch); |
8819 | return value_from_longest (type, (LONGEST) 1); | |
4c4b4cd2 PH |
8820 | |
8821 | case TYPE_CODE_RANGE: | |
030b4912 UW |
8822 | arg2 = value_from_longest (type, TYPE_LOW_BOUND (type)); |
8823 | arg3 = value_from_longest (type, TYPE_HIGH_BOUND (type)); | |
f44316fa UW |
8824 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); |
8825 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3); | |
fbb06eb1 UW |
8826 | type = language_bool_type (exp->language_defn, exp->gdbarch); |
8827 | return | |
8828 | value_from_longest (type, | |
4c4b4cd2 PH |
8829 | (value_less (arg1, arg3) |
8830 | || value_equal (arg1, arg3)) | |
8831 | && (value_less (arg2, arg1) | |
8832 | || value_equal (arg2, arg1))); | |
8833 | } | |
8834 | ||
8835 | case BINOP_IN_BOUNDS: | |
14f9c5c9 | 8836 | (*pos) += 2; |
4c4b4cd2 PH |
8837 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
8838 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
14f9c5c9 | 8839 | |
4c4b4cd2 PH |
8840 | if (noside == EVAL_SKIP) |
8841 | goto nosideret; | |
14f9c5c9 | 8842 | |
4c4b4cd2 | 8843 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
fbb06eb1 UW |
8844 | { |
8845 | type = language_bool_type (exp->language_defn, exp->gdbarch); | |
8846 | return value_zero (type, not_lval); | |
8847 | } | |
14f9c5c9 | 8848 | |
4c4b4cd2 | 8849 | tem = longest_to_int (exp->elts[pc + 1].longconst); |
14f9c5c9 | 8850 | |
df407dfe | 8851 | if (tem < 1 || tem > ada_array_arity (value_type (arg2))) |
323e0a4a | 8852 | error (_("invalid dimension number to 'range")); |
14f9c5c9 | 8853 | |
4c4b4cd2 PH |
8854 | arg3 = ada_array_bound (arg2, tem, 1); |
8855 | arg2 = ada_array_bound (arg2, tem, 0); | |
d2e4a39e | 8856 | |
f44316fa UW |
8857 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); |
8858 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3); | |
fbb06eb1 | 8859 | type = language_bool_type (exp->language_defn, exp->gdbarch); |
4c4b4cd2 | 8860 | return |
fbb06eb1 | 8861 | value_from_longest (type, |
4c4b4cd2 PH |
8862 | (value_less (arg1, arg3) |
8863 | || value_equal (arg1, arg3)) | |
8864 | && (value_less (arg2, arg1) | |
8865 | || value_equal (arg2, arg1))); | |
8866 | ||
8867 | case TERNOP_IN_RANGE: | |
8868 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8869 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8870 | arg3 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8871 | ||
8872 | if (noside == EVAL_SKIP) | |
8873 | goto nosideret; | |
8874 | ||
f44316fa UW |
8875 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); |
8876 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg3); | |
fbb06eb1 | 8877 | type = language_bool_type (exp->language_defn, exp->gdbarch); |
4c4b4cd2 | 8878 | return |
fbb06eb1 | 8879 | value_from_longest (type, |
4c4b4cd2 PH |
8880 | (value_less (arg1, arg3) |
8881 | || value_equal (arg1, arg3)) | |
8882 | && (value_less (arg2, arg1) | |
8883 | || value_equal (arg2, arg1))); | |
8884 | ||
8885 | case OP_ATR_FIRST: | |
8886 | case OP_ATR_LAST: | |
8887 | case OP_ATR_LENGTH: | |
8888 | { | |
76a01679 JB |
8889 | struct type *type_arg; |
8890 | if (exp->elts[*pos].opcode == OP_TYPE) | |
8891 | { | |
8892 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
8893 | arg1 = NULL; | |
8894 | type_arg = exp->elts[pc + 2].type; | |
8895 | } | |
8896 | else | |
8897 | { | |
8898 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
8899 | type_arg = NULL; | |
8900 | } | |
8901 | ||
8902 | if (exp->elts[*pos].opcode != OP_LONG) | |
323e0a4a | 8903 | error (_("Invalid operand to '%s"), ada_attribute_name (op)); |
76a01679 JB |
8904 | tem = longest_to_int (exp->elts[*pos + 2].longconst); |
8905 | *pos += 4; | |
8906 | ||
8907 | if (noside == EVAL_SKIP) | |
8908 | goto nosideret; | |
8909 | ||
8910 | if (type_arg == NULL) | |
8911 | { | |
8912 | arg1 = ada_coerce_ref (arg1); | |
8913 | ||
df407dfe | 8914 | if (ada_is_packed_array_type (value_type (arg1))) |
76a01679 JB |
8915 | arg1 = ada_coerce_to_simple_array (arg1); |
8916 | ||
df407dfe | 8917 | if (tem < 1 || tem > ada_array_arity (value_type (arg1))) |
323e0a4a | 8918 | error (_("invalid dimension number to '%s"), |
76a01679 JB |
8919 | ada_attribute_name (op)); |
8920 | ||
8921 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
8922 | { | |
df407dfe | 8923 | type = ada_index_type (value_type (arg1), tem); |
76a01679 JB |
8924 | if (type == NULL) |
8925 | error | |
323e0a4a | 8926 | (_("attempt to take bound of something that is not an array")); |
76a01679 JB |
8927 | return allocate_value (type); |
8928 | } | |
8929 | ||
8930 | switch (op) | |
8931 | { | |
8932 | default: /* Should never happen. */ | |
323e0a4a | 8933 | error (_("unexpected attribute encountered")); |
76a01679 JB |
8934 | case OP_ATR_FIRST: |
8935 | return ada_array_bound (arg1, tem, 0); | |
8936 | case OP_ATR_LAST: | |
8937 | return ada_array_bound (arg1, tem, 1); | |
8938 | case OP_ATR_LENGTH: | |
8939 | return ada_array_length (arg1, tem); | |
8940 | } | |
8941 | } | |
8942 | else if (discrete_type_p (type_arg)) | |
8943 | { | |
8944 | struct type *range_type; | |
8945 | char *name = ada_type_name (type_arg); | |
8946 | range_type = NULL; | |
8947 | if (name != NULL && TYPE_CODE (type_arg) != TYPE_CODE_ENUM) | |
8948 | range_type = | |
8949 | to_fixed_range_type (name, NULL, TYPE_OBJFILE (type_arg)); | |
8950 | if (range_type == NULL) | |
8951 | range_type = type_arg; | |
8952 | switch (op) | |
8953 | { | |
8954 | default: | |
323e0a4a | 8955 | error (_("unexpected attribute encountered")); |
76a01679 | 8956 | case OP_ATR_FIRST: |
690cc4eb PH |
8957 | return value_from_longest |
8958 | (range_type, discrete_type_low_bound (range_type)); | |
76a01679 | 8959 | case OP_ATR_LAST: |
690cc4eb PH |
8960 | return value_from_longest |
8961 | (range_type, discrete_type_high_bound (range_type)); | |
76a01679 | 8962 | case OP_ATR_LENGTH: |
323e0a4a | 8963 | error (_("the 'length attribute applies only to array types")); |
76a01679 JB |
8964 | } |
8965 | } | |
8966 | else if (TYPE_CODE (type_arg) == TYPE_CODE_FLT) | |
323e0a4a | 8967 | error (_("unimplemented type attribute")); |
76a01679 JB |
8968 | else |
8969 | { | |
8970 | LONGEST low, high; | |
8971 | ||
8972 | if (ada_is_packed_array_type (type_arg)) | |
8973 | type_arg = decode_packed_array_type (type_arg); | |
8974 | ||
8975 | if (tem < 1 || tem > ada_array_arity (type_arg)) | |
323e0a4a | 8976 | error (_("invalid dimension number to '%s"), |
76a01679 JB |
8977 | ada_attribute_name (op)); |
8978 | ||
8979 | type = ada_index_type (type_arg, tem); | |
8980 | if (type == NULL) | |
8981 | error | |
323e0a4a | 8982 | (_("attempt to take bound of something that is not an array")); |
76a01679 JB |
8983 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
8984 | return allocate_value (type); | |
8985 | ||
8986 | switch (op) | |
8987 | { | |
8988 | default: | |
323e0a4a | 8989 | error (_("unexpected attribute encountered")); |
76a01679 JB |
8990 | case OP_ATR_FIRST: |
8991 | low = ada_array_bound_from_type (type_arg, tem, 0, &type); | |
8992 | return value_from_longest (type, low); | |
8993 | case OP_ATR_LAST: | |
8994 | high = ada_array_bound_from_type (type_arg, tem, 1, &type); | |
8995 | return value_from_longest (type, high); | |
8996 | case OP_ATR_LENGTH: | |
8997 | low = ada_array_bound_from_type (type_arg, tem, 0, &type); | |
8998 | high = ada_array_bound_from_type (type_arg, tem, 1, NULL); | |
8999 | return value_from_longest (type, high - low + 1); | |
9000 | } | |
9001 | } | |
14f9c5c9 AS |
9002 | } |
9003 | ||
4c4b4cd2 PH |
9004 | case OP_ATR_TAG: |
9005 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
9006 | if (noside == EVAL_SKIP) | |
76a01679 | 9007 | goto nosideret; |
4c4b4cd2 PH |
9008 | |
9009 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
76a01679 | 9010 | return value_zero (ada_tag_type (arg1), not_lval); |
4c4b4cd2 PH |
9011 | |
9012 | return ada_value_tag (arg1); | |
9013 | ||
9014 | case OP_ATR_MIN: | |
9015 | case OP_ATR_MAX: | |
9016 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
14f9c5c9 AS |
9017 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
9018 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
9019 | if (noside == EVAL_SKIP) | |
76a01679 | 9020 | goto nosideret; |
d2e4a39e | 9021 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
df407dfe | 9022 | return value_zero (value_type (arg1), not_lval); |
14f9c5c9 | 9023 | else |
f44316fa UW |
9024 | { |
9025 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); | |
9026 | return value_binop (arg1, arg2, | |
9027 | op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX); | |
9028 | } | |
14f9c5c9 | 9029 | |
4c4b4cd2 PH |
9030 | case OP_ATR_MODULUS: |
9031 | { | |
76a01679 JB |
9032 | struct type *type_arg = exp->elts[pc + 2].type; |
9033 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
4c4b4cd2 | 9034 | |
76a01679 JB |
9035 | if (noside == EVAL_SKIP) |
9036 | goto nosideret; | |
4c4b4cd2 | 9037 | |
76a01679 | 9038 | if (!ada_is_modular_type (type_arg)) |
323e0a4a | 9039 | error (_("'modulus must be applied to modular type")); |
4c4b4cd2 | 9040 | |
76a01679 JB |
9041 | return value_from_longest (TYPE_TARGET_TYPE (type_arg), |
9042 | ada_modulus (type_arg)); | |
4c4b4cd2 PH |
9043 | } |
9044 | ||
9045 | ||
9046 | case OP_ATR_POS: | |
9047 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
14f9c5c9 AS |
9048 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
9049 | if (noside == EVAL_SKIP) | |
76a01679 | 9050 | goto nosideret; |
3cb382c9 UW |
9051 | type = builtin_type (exp->gdbarch)->builtin_int; |
9052 | if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
9053 | return value_zero (type, not_lval); | |
14f9c5c9 | 9054 | else |
3cb382c9 | 9055 | return value_pos_atr (type, arg1); |
14f9c5c9 | 9056 | |
4c4b4cd2 PH |
9057 | case OP_ATR_SIZE: |
9058 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
9059 | if (noside == EVAL_SKIP) | |
76a01679 | 9060 | goto nosideret; |
4c4b4cd2 | 9061 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
6d2e05aa | 9062 | return value_zero (builtin_type_int32, not_lval); |
4c4b4cd2 | 9063 | else |
6d2e05aa | 9064 | return value_from_longest (builtin_type_int32, |
76a01679 | 9065 | TARGET_CHAR_BIT |
df407dfe | 9066 | * TYPE_LENGTH (value_type (arg1))); |
4c4b4cd2 PH |
9067 | |
9068 | case OP_ATR_VAL: | |
9069 | evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP); | |
14f9c5c9 | 9070 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
4c4b4cd2 | 9071 | type = exp->elts[pc + 2].type; |
14f9c5c9 | 9072 | if (noside == EVAL_SKIP) |
76a01679 | 9073 | goto nosideret; |
4c4b4cd2 | 9074 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
76a01679 | 9075 | return value_zero (type, not_lval); |
4c4b4cd2 | 9076 | else |
76a01679 | 9077 | return value_val_atr (type, arg1); |
4c4b4cd2 PH |
9078 | |
9079 | case BINOP_EXP: | |
9080 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
9081 | arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
9082 | if (noside == EVAL_SKIP) | |
9083 | goto nosideret; | |
9084 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) | |
df407dfe | 9085 | return value_zero (value_type (arg1), not_lval); |
4c4b4cd2 | 9086 | else |
f44316fa UW |
9087 | { |
9088 | /* For integer exponentiation operations, | |
9089 | only promote the first argument. */ | |
9090 | if (is_integral_type (value_type (arg2))) | |
9091 | unop_promote (exp->language_defn, exp->gdbarch, &arg1); | |
9092 | else | |
9093 | binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2); | |
9094 | ||
9095 | return value_binop (arg1, arg2, op); | |
9096 | } | |
4c4b4cd2 PH |
9097 | |
9098 | case UNOP_PLUS: | |
9099 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
9100 | if (noside == EVAL_SKIP) | |
9101 | goto nosideret; | |
9102 | else | |
9103 | return arg1; | |
9104 | ||
9105 | case UNOP_ABS: | |
9106 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
9107 | if (noside == EVAL_SKIP) | |
9108 | goto nosideret; | |
f44316fa | 9109 | unop_promote (exp->language_defn, exp->gdbarch, &arg1); |
df407dfe | 9110 | if (value_less (arg1, value_zero (value_type (arg1), not_lval))) |
4c4b4cd2 | 9111 | return value_neg (arg1); |
14f9c5c9 | 9112 | else |
4c4b4cd2 | 9113 | return arg1; |
14f9c5c9 AS |
9114 | |
9115 | case UNOP_IND: | |
6b0d7253 | 9116 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); |
14f9c5c9 | 9117 | if (noside == EVAL_SKIP) |
4c4b4cd2 | 9118 | goto nosideret; |
df407dfe | 9119 | type = ada_check_typedef (value_type (arg1)); |
14f9c5c9 | 9120 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
4c4b4cd2 PH |
9121 | { |
9122 | if (ada_is_array_descriptor_type (type)) | |
9123 | /* GDB allows dereferencing GNAT array descriptors. */ | |
9124 | { | |
9125 | struct type *arrType = ada_type_of_array (arg1, 0); | |
9126 | if (arrType == NULL) | |
323e0a4a | 9127 | error (_("Attempt to dereference null array pointer.")); |
00a4c844 | 9128 | return value_at_lazy (arrType, 0); |
4c4b4cd2 PH |
9129 | } |
9130 | else if (TYPE_CODE (type) == TYPE_CODE_PTR | |
9131 | || TYPE_CODE (type) == TYPE_CODE_REF | |
9132 | /* In C you can dereference an array to get the 1st elt. */ | |
9133 | || TYPE_CODE (type) == TYPE_CODE_ARRAY) | |
714e53ab PH |
9134 | { |
9135 | type = to_static_fixed_type | |
9136 | (ada_aligned_type | |
9137 | (ada_check_typedef (TYPE_TARGET_TYPE (type)))); | |
9138 | check_size (type); | |
9139 | return value_zero (type, lval_memory); | |
9140 | } | |
4c4b4cd2 | 9141 | else if (TYPE_CODE (type) == TYPE_CODE_INT) |
6b0d7253 JB |
9142 | { |
9143 | /* GDB allows dereferencing an int. */ | |
9144 | if (expect_type == NULL) | |
9145 | return value_zero (builtin_type (exp->gdbarch)->builtin_int, | |
9146 | lval_memory); | |
9147 | else | |
9148 | { | |
9149 | expect_type = | |
9150 | to_static_fixed_type (ada_aligned_type (expect_type)); | |
9151 | return value_zero (expect_type, lval_memory); | |
9152 | } | |
9153 | } | |
4c4b4cd2 | 9154 | else |
323e0a4a | 9155 | error (_("Attempt to take contents of a non-pointer value.")); |
4c4b4cd2 | 9156 | } |
76a01679 | 9157 | arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */ |
df407dfe | 9158 | type = ada_check_typedef (value_type (arg1)); |
d2e4a39e | 9159 | |
6b0d7253 JB |
9160 | if (TYPE_CODE (type) == TYPE_CODE_INT && expect_type != NULL) |
9161 | /* GDB allows dereferencing an int. We give it the expected | |
9162 | type (which will be set in the case of a coercion or | |
9163 | qualification). */ | |
9164 | return ada_value_ind (value_cast (lookup_pointer_type (expect_type), | |
9165 | arg1)); | |
9166 | ||
4c4b4cd2 PH |
9167 | if (ada_is_array_descriptor_type (type)) |
9168 | /* GDB allows dereferencing GNAT array descriptors. */ | |
9169 | return ada_coerce_to_simple_array (arg1); | |
14f9c5c9 | 9170 | else |
4c4b4cd2 | 9171 | return ada_value_ind (arg1); |
14f9c5c9 AS |
9172 | |
9173 | case STRUCTOP_STRUCT: | |
9174 | tem = longest_to_int (exp->elts[pc + 1].longconst); | |
9175 | (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1); | |
9176 | arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside); | |
9177 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 9178 | goto nosideret; |
14f9c5c9 | 9179 | if (noside == EVAL_AVOID_SIDE_EFFECTS) |
76a01679 | 9180 | { |
df407dfe | 9181 | struct type *type1 = value_type (arg1); |
76a01679 JB |
9182 | if (ada_is_tagged_type (type1, 1)) |
9183 | { | |
9184 | type = ada_lookup_struct_elt_type (type1, | |
9185 | &exp->elts[pc + 2].string, | |
9186 | 1, 1, NULL); | |
9187 | if (type == NULL) | |
9188 | /* In this case, we assume that the field COULD exist | |
9189 | in some extension of the type. Return an object of | |
9190 | "type" void, which will match any formal | |
9191 | (see ada_type_match). */ | |
9192 | return value_zero (builtin_type_void, lval_memory); | |
9193 | } | |
9194 | else | |
9195 | type = | |
9196 | ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1, | |
9197 | 0, NULL); | |
9198 | ||
9199 | return value_zero (ada_aligned_type (type), lval_memory); | |
9200 | } | |
14f9c5c9 | 9201 | else |
76a01679 JB |
9202 | return |
9203 | ada_to_fixed_value (unwrap_value | |
9204 | (ada_value_struct_elt | |
03ee6b2e | 9205 | (arg1, &exp->elts[pc + 2].string, 0))); |
14f9c5c9 | 9206 | case OP_TYPE: |
4c4b4cd2 PH |
9207 | /* The value is not supposed to be used. This is here to make it |
9208 | easier to accommodate expressions that contain types. */ | |
14f9c5c9 AS |
9209 | (*pos) += 2; |
9210 | if (noside == EVAL_SKIP) | |
4c4b4cd2 | 9211 | goto nosideret; |
14f9c5c9 | 9212 | else if (noside == EVAL_AVOID_SIDE_EFFECTS) |
a6cfbe68 | 9213 | return allocate_value (exp->elts[pc + 1].type); |
14f9c5c9 | 9214 | else |
323e0a4a | 9215 | error (_("Attempt to use a type name as an expression")); |
52ce6436 PH |
9216 | |
9217 | case OP_AGGREGATE: | |
9218 | case OP_CHOICES: | |
9219 | case OP_OTHERS: | |
9220 | case OP_DISCRETE_RANGE: | |
9221 | case OP_POSITIONAL: | |
9222 | case OP_NAME: | |
9223 | if (noside == EVAL_NORMAL) | |
9224 | switch (op) | |
9225 | { | |
9226 | case OP_NAME: | |
9227 | error (_("Undefined name, ambiguous name, or renaming used in " | |
e1d5a0d2 | 9228 | "component association: %s."), &exp->elts[pc+2].string); |
52ce6436 PH |
9229 | case OP_AGGREGATE: |
9230 | error (_("Aggregates only allowed on the right of an assignment")); | |
9231 | default: | |
e1d5a0d2 | 9232 | internal_error (__FILE__, __LINE__, _("aggregate apparently mangled")); |
52ce6436 PH |
9233 | } |
9234 | ||
9235 | ada_forward_operator_length (exp, pc, &oplen, &nargs); | |
9236 | *pos += oplen - 1; | |
9237 | for (tem = 0; tem < nargs; tem += 1) | |
9238 | ada_evaluate_subexp (NULL, exp, pos, noside); | |
9239 | goto nosideret; | |
14f9c5c9 AS |
9240 | } |
9241 | ||
9242 | nosideret: | |
cb18ec49 | 9243 | return value_from_longest (builtin_type_int8, (LONGEST) 1); |
14f9c5c9 | 9244 | } |
14f9c5c9 | 9245 | \f |
d2e4a39e | 9246 | |
4c4b4cd2 | 9247 | /* Fixed point */ |
14f9c5c9 AS |
9248 | |
9249 | /* If TYPE encodes an Ada fixed-point type, return the suffix of the | |
9250 | type name that encodes the 'small and 'delta information. | |
4c4b4cd2 | 9251 | Otherwise, return NULL. */ |
14f9c5c9 | 9252 | |
d2e4a39e | 9253 | static const char * |
ebf56fd3 | 9254 | fixed_type_info (struct type *type) |
14f9c5c9 | 9255 | { |
d2e4a39e | 9256 | const char *name = ada_type_name (type); |
14f9c5c9 AS |
9257 | enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : TYPE_CODE (type); |
9258 | ||
d2e4a39e AS |
9259 | if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL) |
9260 | { | |
14f9c5c9 AS |
9261 | const char *tail = strstr (name, "___XF_"); |
9262 | if (tail == NULL) | |
4c4b4cd2 | 9263 | return NULL; |
d2e4a39e | 9264 | else |
4c4b4cd2 | 9265 | return tail + 5; |
14f9c5c9 AS |
9266 | } |
9267 | else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type) | |
9268 | return fixed_type_info (TYPE_TARGET_TYPE (type)); | |
9269 | else | |
9270 | return NULL; | |
9271 | } | |
9272 | ||
4c4b4cd2 | 9273 | /* Returns non-zero iff TYPE represents an Ada fixed-point type. */ |
14f9c5c9 AS |
9274 | |
9275 | int | |
ebf56fd3 | 9276 | ada_is_fixed_point_type (struct type *type) |
14f9c5c9 AS |
9277 | { |
9278 | return fixed_type_info (type) != NULL; | |
9279 | } | |
9280 | ||
4c4b4cd2 PH |
9281 | /* Return non-zero iff TYPE represents a System.Address type. */ |
9282 | ||
9283 | int | |
9284 | ada_is_system_address_type (struct type *type) | |
9285 | { | |
9286 | return (TYPE_NAME (type) | |
9287 | && strcmp (TYPE_NAME (type), "system__address") == 0); | |
9288 | } | |
9289 | ||
14f9c5c9 AS |
9290 | /* Assuming that TYPE is the representation of an Ada fixed-point |
9291 | type, return its delta, or -1 if the type is malformed and the | |
4c4b4cd2 | 9292 | delta cannot be determined. */ |
14f9c5c9 AS |
9293 | |
9294 | DOUBLEST | |
ebf56fd3 | 9295 | ada_delta (struct type *type) |
14f9c5c9 AS |
9296 | { |
9297 | const char *encoding = fixed_type_info (type); | |
9298 | long num, den; | |
9299 | ||
9300 | if (sscanf (encoding, "_%ld_%ld", &num, &den) < 2) | |
9301 | return -1.0; | |
d2e4a39e | 9302 | else |
14f9c5c9 AS |
9303 | return (DOUBLEST) num / (DOUBLEST) den; |
9304 | } | |
9305 | ||
9306 | /* Assuming that ada_is_fixed_point_type (TYPE), return the scaling | |
4c4b4cd2 | 9307 | factor ('SMALL value) associated with the type. */ |
14f9c5c9 AS |
9308 | |
9309 | static DOUBLEST | |
ebf56fd3 | 9310 | scaling_factor (struct type *type) |
14f9c5c9 AS |
9311 | { |
9312 | const char *encoding = fixed_type_info (type); | |
9313 | unsigned long num0, den0, num1, den1; | |
9314 | int n; | |
d2e4a39e | 9315 | |
14f9c5c9 AS |
9316 | n = sscanf (encoding, "_%lu_%lu_%lu_%lu", &num0, &den0, &num1, &den1); |
9317 | ||
9318 | if (n < 2) | |
9319 | return 1.0; | |
9320 | else if (n == 4) | |
9321 | return (DOUBLEST) num1 / (DOUBLEST) den1; | |
d2e4a39e | 9322 | else |
14f9c5c9 AS |
9323 | return (DOUBLEST) num0 / (DOUBLEST) den0; |
9324 | } | |
9325 | ||
9326 | ||
9327 | /* Assuming that X is the representation of a value of fixed-point | |
4c4b4cd2 | 9328 | type TYPE, return its floating-point equivalent. */ |
14f9c5c9 AS |
9329 | |
9330 | DOUBLEST | |
ebf56fd3 | 9331 | ada_fixed_to_float (struct type *type, LONGEST x) |
14f9c5c9 | 9332 | { |
d2e4a39e | 9333 | return (DOUBLEST) x *scaling_factor (type); |
14f9c5c9 AS |
9334 | } |
9335 | ||
4c4b4cd2 PH |
9336 | /* The representation of a fixed-point value of type TYPE |
9337 | corresponding to the value X. */ | |
14f9c5c9 AS |
9338 | |
9339 | LONGEST | |
ebf56fd3 | 9340 | ada_float_to_fixed (struct type *type, DOUBLEST x) |
14f9c5c9 AS |
9341 | { |
9342 | return (LONGEST) (x / scaling_factor (type) + 0.5); | |
9343 | } | |
9344 | ||
9345 | ||
4c4b4cd2 | 9346 | /* VAX floating formats */ |
14f9c5c9 AS |
9347 | |
9348 | /* Non-zero iff TYPE represents one of the special VAX floating-point | |
4c4b4cd2 PH |
9349 | types. */ |
9350 | ||
14f9c5c9 | 9351 | int |
d2e4a39e | 9352 | ada_is_vax_floating_type (struct type *type) |
14f9c5c9 | 9353 | { |
d2e4a39e | 9354 | int name_len = |
14f9c5c9 | 9355 | (ada_type_name (type) == NULL) ? 0 : strlen (ada_type_name (type)); |
d2e4a39e | 9356 | return |
14f9c5c9 | 9357 | name_len > 6 |
d2e4a39e | 9358 | && (TYPE_CODE (type) == TYPE_CODE_INT |
4c4b4cd2 PH |
9359 | || TYPE_CODE (type) == TYPE_CODE_RANGE) |
9360 | && strncmp (ada_type_name (type) + name_len - 6, "___XF", 5) == 0; | |
14f9c5c9 AS |
9361 | } |
9362 | ||
9363 | /* The type of special VAX floating-point type this is, assuming | |
4c4b4cd2 PH |
9364 | ada_is_vax_floating_point. */ |
9365 | ||
14f9c5c9 | 9366 | int |
d2e4a39e | 9367 | ada_vax_float_type_suffix (struct type *type) |
14f9c5c9 | 9368 | { |
d2e4a39e | 9369 | return ada_type_name (type)[strlen (ada_type_name (type)) - 1]; |
14f9c5c9 AS |
9370 | } |
9371 | ||
4c4b4cd2 | 9372 | /* A value representing the special debugging function that outputs |
14f9c5c9 | 9373 | VAX floating-point values of the type represented by TYPE. Assumes |
4c4b4cd2 PH |
9374 | ada_is_vax_floating_type (TYPE). */ |
9375 | ||
d2e4a39e AS |
9376 | struct value * |
9377 | ada_vax_float_print_function (struct type *type) | |
9378 | { | |
9379 | switch (ada_vax_float_type_suffix (type)) | |
9380 | { | |
9381 | case 'F': | |
9382 | return get_var_value ("DEBUG_STRING_F", 0); | |
9383 | case 'D': | |
9384 | return get_var_value ("DEBUG_STRING_D", 0); | |
9385 | case 'G': | |
9386 | return get_var_value ("DEBUG_STRING_G", 0); | |
9387 | default: | |
323e0a4a | 9388 | error (_("invalid VAX floating-point type")); |
d2e4a39e | 9389 | } |
14f9c5c9 | 9390 | } |
14f9c5c9 | 9391 | \f |
d2e4a39e | 9392 | |
4c4b4cd2 | 9393 | /* Range types */ |
14f9c5c9 AS |
9394 | |
9395 | /* Scan STR beginning at position K for a discriminant name, and | |
9396 | return the value of that discriminant field of DVAL in *PX. If | |
9397 | PNEW_K is not null, put the position of the character beyond the | |
9398 | name scanned in *PNEW_K. Return 1 if successful; return 0 and do | |
4c4b4cd2 | 9399 | not alter *PX and *PNEW_K if unsuccessful. */ |
14f9c5c9 AS |
9400 | |
9401 | static int | |
07d8f827 | 9402 | scan_discrim_bound (char *str, int k, struct value *dval, LONGEST * px, |
76a01679 | 9403 | int *pnew_k) |
14f9c5c9 AS |
9404 | { |
9405 | static char *bound_buffer = NULL; | |
9406 | static size_t bound_buffer_len = 0; | |
9407 | char *bound; | |
9408 | char *pend; | |
d2e4a39e | 9409 | struct value *bound_val; |
14f9c5c9 AS |
9410 | |
9411 | if (dval == NULL || str == NULL || str[k] == '\0') | |
9412 | return 0; | |
9413 | ||
d2e4a39e | 9414 | pend = strstr (str + k, "__"); |
14f9c5c9 AS |
9415 | if (pend == NULL) |
9416 | { | |
d2e4a39e | 9417 | bound = str + k; |
14f9c5c9 AS |
9418 | k += strlen (bound); |
9419 | } | |
d2e4a39e | 9420 | else |
14f9c5c9 | 9421 | { |
d2e4a39e | 9422 | GROW_VECT (bound_buffer, bound_buffer_len, pend - (str + k) + 1); |
14f9c5c9 | 9423 | bound = bound_buffer; |
d2e4a39e AS |
9424 | strncpy (bound_buffer, str + k, pend - (str + k)); |
9425 | bound[pend - (str + k)] = '\0'; | |
9426 | k = pend - str; | |
14f9c5c9 | 9427 | } |
d2e4a39e | 9428 | |
df407dfe | 9429 | bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval)); |
14f9c5c9 AS |
9430 | if (bound_val == NULL) |
9431 | return 0; | |
9432 | ||
9433 | *px = value_as_long (bound_val); | |
9434 | if (pnew_k != NULL) | |
9435 | *pnew_k = k; | |
9436 | return 1; | |
9437 | } | |
9438 | ||
9439 | /* Value of variable named NAME in the current environment. If | |
9440 | no such variable found, then if ERR_MSG is null, returns 0, and | |
4c4b4cd2 PH |
9441 | otherwise causes an error with message ERR_MSG. */ |
9442 | ||
d2e4a39e AS |
9443 | static struct value * |
9444 | get_var_value (char *name, char *err_msg) | |
14f9c5c9 | 9445 | { |
4c4b4cd2 | 9446 | struct ada_symbol_info *syms; |
14f9c5c9 AS |
9447 | int nsyms; |
9448 | ||
4c4b4cd2 PH |
9449 | nsyms = ada_lookup_symbol_list (name, get_selected_block (0), VAR_DOMAIN, |
9450 | &syms); | |
14f9c5c9 AS |
9451 | |
9452 | if (nsyms != 1) | |
9453 | { | |
9454 | if (err_msg == NULL) | |
4c4b4cd2 | 9455 | return 0; |
14f9c5c9 | 9456 | else |
8a3fe4f8 | 9457 | error (("%s"), err_msg); |
14f9c5c9 AS |
9458 | } |
9459 | ||
4c4b4cd2 | 9460 | return value_of_variable (syms[0].sym, syms[0].block); |
14f9c5c9 | 9461 | } |
d2e4a39e | 9462 | |
14f9c5c9 | 9463 | /* Value of integer variable named NAME in the current environment. If |
4c4b4cd2 PH |
9464 | no such variable found, returns 0, and sets *FLAG to 0. If |
9465 | successful, sets *FLAG to 1. */ | |
9466 | ||
14f9c5c9 | 9467 | LONGEST |
4c4b4cd2 | 9468 | get_int_var_value (char *name, int *flag) |
14f9c5c9 | 9469 | { |
4c4b4cd2 | 9470 | struct value *var_val = get_var_value (name, 0); |
d2e4a39e | 9471 | |
14f9c5c9 AS |
9472 | if (var_val == 0) |
9473 | { | |
9474 | if (flag != NULL) | |
4c4b4cd2 | 9475 | *flag = 0; |
14f9c5c9 AS |
9476 | return 0; |
9477 | } | |
9478 | else | |
9479 | { | |
9480 | if (flag != NULL) | |
4c4b4cd2 | 9481 | *flag = 1; |
14f9c5c9 AS |
9482 | return value_as_long (var_val); |
9483 | } | |
9484 | } | |
d2e4a39e | 9485 | |
14f9c5c9 AS |
9486 | |
9487 | /* Return a range type whose base type is that of the range type named | |
9488 | NAME in the current environment, and whose bounds are calculated | |
4c4b4cd2 | 9489 | from NAME according to the GNAT range encoding conventions. |
14f9c5c9 AS |
9490 | Extract discriminant values, if needed, from DVAL. If a new type |
9491 | must be created, allocate in OBJFILE's space. The bounds | |
9492 | information, in general, is encoded in NAME, the base type given in | |
4c4b4cd2 | 9493 | the named range type. */ |
14f9c5c9 | 9494 | |
d2e4a39e | 9495 | static struct type * |
ebf56fd3 | 9496 | to_fixed_range_type (char *name, struct value *dval, struct objfile *objfile) |
14f9c5c9 AS |
9497 | { |
9498 | struct type *raw_type = ada_find_any_type (name); | |
9499 | struct type *base_type; | |
d2e4a39e | 9500 | char *subtype_info; |
14f9c5c9 AS |
9501 | |
9502 | if (raw_type == NULL) | |
6d84d3d8 | 9503 | base_type = builtin_type_int32; |
14f9c5c9 AS |
9504 | else if (TYPE_CODE (raw_type) == TYPE_CODE_RANGE) |
9505 | base_type = TYPE_TARGET_TYPE (raw_type); | |
9506 | else | |
9507 | base_type = raw_type; | |
9508 | ||
9509 | subtype_info = strstr (name, "___XD"); | |
9510 | if (subtype_info == NULL) | |
690cc4eb PH |
9511 | { |
9512 | LONGEST L = discrete_type_low_bound (raw_type); | |
9513 | LONGEST U = discrete_type_high_bound (raw_type); | |
9514 | if (L < INT_MIN || U > INT_MAX) | |
9515 | return raw_type; | |
9516 | else | |
9517 | return create_range_type (alloc_type (objfile), raw_type, | |
9518 | discrete_type_low_bound (raw_type), | |
9519 | discrete_type_high_bound (raw_type)); | |
9520 | } | |
14f9c5c9 AS |
9521 | else |
9522 | { | |
9523 | static char *name_buf = NULL; | |
9524 | static size_t name_len = 0; | |
9525 | int prefix_len = subtype_info - name; | |
9526 | LONGEST L, U; | |
9527 | struct type *type; | |
9528 | char *bounds_str; | |
9529 | int n; | |
9530 | ||
9531 | GROW_VECT (name_buf, name_len, prefix_len + 5); | |
9532 | strncpy (name_buf, name, prefix_len); | |
9533 | name_buf[prefix_len] = '\0'; | |
9534 | ||
9535 | subtype_info += 5; | |
9536 | bounds_str = strchr (subtype_info, '_'); | |
9537 | n = 1; | |
9538 | ||
d2e4a39e | 9539 | if (*subtype_info == 'L') |
4c4b4cd2 PH |
9540 | { |
9541 | if (!ada_scan_number (bounds_str, n, &L, &n) | |
9542 | && !scan_discrim_bound (bounds_str, n, dval, &L, &n)) | |
9543 | return raw_type; | |
9544 | if (bounds_str[n] == '_') | |
9545 | n += 2; | |
9546 | else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */ | |
9547 | n += 1; | |
9548 | subtype_info += 1; | |
9549 | } | |
d2e4a39e | 9550 | else |
4c4b4cd2 PH |
9551 | { |
9552 | int ok; | |
9553 | strcpy (name_buf + prefix_len, "___L"); | |
9554 | L = get_int_var_value (name_buf, &ok); | |
9555 | if (!ok) | |
9556 | { | |
323e0a4a | 9557 | lim_warning (_("Unknown lower bound, using 1.")); |
4c4b4cd2 PH |
9558 | L = 1; |
9559 | } | |
9560 | } | |
14f9c5c9 | 9561 | |
d2e4a39e | 9562 | if (*subtype_info == 'U') |
4c4b4cd2 PH |
9563 | { |
9564 | if (!ada_scan_number (bounds_str, n, &U, &n) | |
9565 | && !scan_discrim_bound (bounds_str, n, dval, &U, &n)) | |
9566 | return raw_type; | |
9567 | } | |
d2e4a39e | 9568 | else |
4c4b4cd2 PH |
9569 | { |
9570 | int ok; | |
9571 | strcpy (name_buf + prefix_len, "___U"); | |
9572 | U = get_int_var_value (name_buf, &ok); | |
9573 | if (!ok) | |
9574 | { | |
323e0a4a | 9575 | lim_warning (_("Unknown upper bound, using %ld."), (long) L); |
4c4b4cd2 PH |
9576 | U = L; |
9577 | } | |
9578 | } | |
14f9c5c9 | 9579 | |
d2e4a39e | 9580 | if (objfile == NULL) |
4c4b4cd2 | 9581 | objfile = TYPE_OBJFILE (base_type); |
14f9c5c9 | 9582 | type = create_range_type (alloc_type (objfile), base_type, L, U); |
d2e4a39e | 9583 | TYPE_NAME (type) = name; |
14f9c5c9 AS |
9584 | return type; |
9585 | } | |
9586 | } | |
9587 | ||
4c4b4cd2 PH |
9588 | /* True iff NAME is the name of a range type. */ |
9589 | ||
14f9c5c9 | 9590 | int |
d2e4a39e | 9591 | ada_is_range_type_name (const char *name) |
14f9c5c9 AS |
9592 | { |
9593 | return (name != NULL && strstr (name, "___XD")); | |
d2e4a39e | 9594 | } |
14f9c5c9 | 9595 | \f |
d2e4a39e | 9596 | |
4c4b4cd2 PH |
9597 | /* Modular types */ |
9598 | ||
9599 | /* True iff TYPE is an Ada modular type. */ | |
14f9c5c9 | 9600 | |
14f9c5c9 | 9601 | int |
d2e4a39e | 9602 | ada_is_modular_type (struct type *type) |
14f9c5c9 | 9603 | { |
4c4b4cd2 | 9604 | struct type *subranged_type = base_type (type); |
14f9c5c9 AS |
9605 | |
9606 | return (subranged_type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE | |
690cc4eb | 9607 | && TYPE_CODE (subranged_type) == TYPE_CODE_INT |
4c4b4cd2 | 9608 | && TYPE_UNSIGNED (subranged_type)); |
14f9c5c9 AS |
9609 | } |
9610 | ||
4c4b4cd2 PH |
9611 | /* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */ |
9612 | ||
61ee279c | 9613 | ULONGEST |
d2e4a39e | 9614 | ada_modulus (struct type * type) |
14f9c5c9 | 9615 | { |
d37209fd | 9616 | return (ULONGEST) (unsigned int) TYPE_HIGH_BOUND (type) + 1; |
14f9c5c9 | 9617 | } |
d2e4a39e | 9618 | \f |
f7f9143b JB |
9619 | |
9620 | /* Ada exception catchpoint support: | |
9621 | --------------------------------- | |
9622 | ||
9623 | We support 3 kinds of exception catchpoints: | |
9624 | . catchpoints on Ada exceptions | |
9625 | . catchpoints on unhandled Ada exceptions | |
9626 | . catchpoints on failed assertions | |
9627 | ||
9628 | Exceptions raised during failed assertions, or unhandled exceptions | |
9629 | could perfectly be caught with the general catchpoint on Ada exceptions. | |
9630 | However, we can easily differentiate these two special cases, and having | |
9631 | the option to distinguish these two cases from the rest can be useful | |
9632 | to zero-in on certain situations. | |
9633 | ||
9634 | Exception catchpoints are a specialized form of breakpoint, | |
9635 | since they rely on inserting breakpoints inside known routines | |
9636 | of the GNAT runtime. The implementation therefore uses a standard | |
9637 | breakpoint structure of the BP_BREAKPOINT type, but with its own set | |
9638 | of breakpoint_ops. | |
9639 | ||
0259addd JB |
9640 | Support in the runtime for exception catchpoints have been changed |
9641 | a few times already, and these changes affect the implementation | |
9642 | of these catchpoints. In order to be able to support several | |
9643 | variants of the runtime, we use a sniffer that will determine | |
9644 | the runtime variant used by the program being debugged. | |
9645 | ||
f7f9143b JB |
9646 | At this time, we do not support the use of conditions on Ada exception |
9647 | catchpoints. The COND and COND_STRING fields are therefore set | |
9648 | to NULL (most of the time, see below). | |
9649 | ||
9650 | Conditions where EXP_STRING, COND, and COND_STRING are used: | |
9651 | ||
9652 | When a user specifies the name of a specific exception in the case | |
9653 | of catchpoints on Ada exceptions, we store the name of that exception | |
9654 | in the EXP_STRING. We then translate this request into an actual | |
9655 | condition stored in COND_STRING, and then parse it into an expression | |
9656 | stored in COND. */ | |
9657 | ||
9658 | /* The different types of catchpoints that we introduced for catching | |
9659 | Ada exceptions. */ | |
9660 | ||
9661 | enum exception_catchpoint_kind | |
9662 | { | |
9663 | ex_catch_exception, | |
9664 | ex_catch_exception_unhandled, | |
9665 | ex_catch_assert | |
9666 | }; | |
9667 | ||
3d0b0fa3 JB |
9668 | /* Ada's standard exceptions. */ |
9669 | ||
9670 | static char *standard_exc[] = { | |
9671 | "constraint_error", | |
9672 | "program_error", | |
9673 | "storage_error", | |
9674 | "tasking_error" | |
9675 | }; | |
9676 | ||
0259addd JB |
9677 | typedef CORE_ADDR (ada_unhandled_exception_name_addr_ftype) (void); |
9678 | ||
9679 | /* A structure that describes how to support exception catchpoints | |
9680 | for a given executable. */ | |
9681 | ||
9682 | struct exception_support_info | |
9683 | { | |
9684 | /* The name of the symbol to break on in order to insert | |
9685 | a catchpoint on exceptions. */ | |
9686 | const char *catch_exception_sym; | |
9687 | ||
9688 | /* The name of the symbol to break on in order to insert | |
9689 | a catchpoint on unhandled exceptions. */ | |
9690 | const char *catch_exception_unhandled_sym; | |
9691 | ||
9692 | /* The name of the symbol to break on in order to insert | |
9693 | a catchpoint on failed assertions. */ | |
9694 | const char *catch_assert_sym; | |
9695 | ||
9696 | /* Assuming that the inferior just triggered an unhandled exception | |
9697 | catchpoint, this function is responsible for returning the address | |
9698 | in inferior memory where the name of that exception is stored. | |
9699 | Return zero if the address could not be computed. */ | |
9700 | ada_unhandled_exception_name_addr_ftype *unhandled_exception_name_addr; | |
9701 | }; | |
9702 | ||
9703 | static CORE_ADDR ada_unhandled_exception_name_addr (void); | |
9704 | static CORE_ADDR ada_unhandled_exception_name_addr_from_raise (void); | |
9705 | ||
9706 | /* The following exception support info structure describes how to | |
9707 | implement exception catchpoints with the latest version of the | |
9708 | Ada runtime (as of 2007-03-06). */ | |
9709 | ||
9710 | static const struct exception_support_info default_exception_support_info = | |
9711 | { | |
9712 | "__gnat_debug_raise_exception", /* catch_exception_sym */ | |
9713 | "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */ | |
9714 | "__gnat_debug_raise_assert_failure", /* catch_assert_sym */ | |
9715 | ada_unhandled_exception_name_addr | |
9716 | }; | |
9717 | ||
9718 | /* The following exception support info structure describes how to | |
9719 | implement exception catchpoints with a slightly older version | |
9720 | of the Ada runtime. */ | |
9721 | ||
9722 | static const struct exception_support_info exception_support_info_fallback = | |
9723 | { | |
9724 | "__gnat_raise_nodefer_with_msg", /* catch_exception_sym */ | |
9725 | "__gnat_unhandled_exception", /* catch_exception_unhandled_sym */ | |
9726 | "system__assertions__raise_assert_failure", /* catch_assert_sym */ | |
9727 | ada_unhandled_exception_name_addr_from_raise | |
9728 | }; | |
9729 | ||
9730 | /* For each executable, we sniff which exception info structure to use | |
9731 | and cache it in the following global variable. */ | |
9732 | ||
9733 | static const struct exception_support_info *exception_info = NULL; | |
9734 | ||
9735 | /* Inspect the Ada runtime and determine which exception info structure | |
9736 | should be used to provide support for exception catchpoints. | |
9737 | ||
9738 | This function will always set exception_info, or raise an error. */ | |
9739 | ||
9740 | static void | |
9741 | ada_exception_support_info_sniffer (void) | |
9742 | { | |
9743 | struct symbol *sym; | |
9744 | ||
9745 | /* If the exception info is already known, then no need to recompute it. */ | |
9746 | if (exception_info != NULL) | |
9747 | return; | |
9748 | ||
9749 | /* Check the latest (default) exception support info. */ | |
9750 | sym = standard_lookup (default_exception_support_info.catch_exception_sym, | |
9751 | NULL, VAR_DOMAIN); | |
9752 | if (sym != NULL) | |
9753 | { | |
9754 | exception_info = &default_exception_support_info; | |
9755 | return; | |
9756 | } | |
9757 | ||
9758 | /* Try our fallback exception suport info. */ | |
9759 | sym = standard_lookup (exception_support_info_fallback.catch_exception_sym, | |
9760 | NULL, VAR_DOMAIN); | |
9761 | if (sym != NULL) | |
9762 | { | |
9763 | exception_info = &exception_support_info_fallback; | |
9764 | return; | |
9765 | } | |
9766 | ||
9767 | /* Sometimes, it is normal for us to not be able to find the routine | |
9768 | we are looking for. This happens when the program is linked with | |
9769 | the shared version of the GNAT runtime, and the program has not been | |
9770 | started yet. Inform the user of these two possible causes if | |
9771 | applicable. */ | |
9772 | ||
9773 | if (ada_update_initial_language (language_unknown, NULL) != language_ada) | |
9774 | error (_("Unable to insert catchpoint. Is this an Ada main program?")); | |
9775 | ||
9776 | /* If the symbol does not exist, then check that the program is | |
9777 | already started, to make sure that shared libraries have been | |
9778 | loaded. If it is not started, this may mean that the symbol is | |
9779 | in a shared library. */ | |
9780 | ||
9781 | if (ptid_get_pid (inferior_ptid) == 0) | |
9782 | error (_("Unable to insert catchpoint. Try to start the program first.")); | |
9783 | ||
9784 | /* At this point, we know that we are debugging an Ada program and | |
9785 | that the inferior has been started, but we still are not able to | |
9786 | find the run-time symbols. That can mean that we are in | |
9787 | configurable run time mode, or that a-except as been optimized | |
9788 | out by the linker... In any case, at this point it is not worth | |
9789 | supporting this feature. */ | |
9790 | ||
9791 | error (_("Cannot insert catchpoints in this configuration.")); | |
9792 | } | |
9793 | ||
9794 | /* An observer of "executable_changed" events. | |
9795 | Its role is to clear certain cached values that need to be recomputed | |
9796 | each time a new executable is loaded by GDB. */ | |
9797 | ||
9798 | static void | |
781b42b0 | 9799 | ada_executable_changed_observer (void) |
0259addd JB |
9800 | { |
9801 | /* If the executable changed, then it is possible that the Ada runtime | |
9802 | is different. So we need to invalidate the exception support info | |
9803 | cache. */ | |
9804 | exception_info = NULL; | |
9805 | } | |
9806 | ||
f7f9143b JB |
9807 | /* Return the name of the function at PC, NULL if could not find it. |
9808 | This function only checks the debugging information, not the symbol | |
9809 | table. */ | |
9810 | ||
9811 | static char * | |
9812 | function_name_from_pc (CORE_ADDR pc) | |
9813 | { | |
9814 | char *func_name; | |
9815 | ||
9816 | if (!find_pc_partial_function (pc, &func_name, NULL, NULL)) | |
9817 | return NULL; | |
9818 | ||
9819 | return func_name; | |
9820 | } | |
9821 | ||
9822 | /* True iff FRAME is very likely to be that of a function that is | |
9823 | part of the runtime system. This is all very heuristic, but is | |
9824 | intended to be used as advice as to what frames are uninteresting | |
9825 | to most users. */ | |
9826 | ||
9827 | static int | |
9828 | is_known_support_routine (struct frame_info *frame) | |
9829 | { | |
4ed6b5be | 9830 | struct symtab_and_line sal; |
f7f9143b JB |
9831 | char *func_name; |
9832 | int i; | |
f7f9143b | 9833 | |
4ed6b5be JB |
9834 | /* If this code does not have any debugging information (no symtab), |
9835 | This cannot be any user code. */ | |
f7f9143b | 9836 | |
4ed6b5be | 9837 | find_frame_sal (frame, &sal); |
f7f9143b JB |
9838 | if (sal.symtab == NULL) |
9839 | return 1; | |
9840 | ||
4ed6b5be JB |
9841 | /* If there is a symtab, but the associated source file cannot be |
9842 | located, then assume this is not user code: Selecting a frame | |
9843 | for which we cannot display the code would not be very helpful | |
9844 | for the user. This should also take care of case such as VxWorks | |
9845 | where the kernel has some debugging info provided for a few units. */ | |
f7f9143b | 9846 | |
9bbc9174 | 9847 | if (symtab_to_fullname (sal.symtab) == NULL) |
f7f9143b JB |
9848 | return 1; |
9849 | ||
4ed6b5be JB |
9850 | /* Check the unit filename againt the Ada runtime file naming. |
9851 | We also check the name of the objfile against the name of some | |
9852 | known system libraries that sometimes come with debugging info | |
9853 | too. */ | |
9854 | ||
f7f9143b JB |
9855 | for (i = 0; known_runtime_file_name_patterns[i] != NULL; i += 1) |
9856 | { | |
9857 | re_comp (known_runtime_file_name_patterns[i]); | |
9858 | if (re_exec (sal.symtab->filename)) | |
9859 | return 1; | |
4ed6b5be JB |
9860 | if (sal.symtab->objfile != NULL |
9861 | && re_exec (sal.symtab->objfile->name)) | |
9862 | return 1; | |
f7f9143b JB |
9863 | } |
9864 | ||
4ed6b5be | 9865 | /* Check whether the function is a GNAT-generated entity. */ |
f7f9143b | 9866 | |
4ed6b5be | 9867 | func_name = function_name_from_pc (get_frame_address_in_block (frame)); |
f7f9143b JB |
9868 | if (func_name == NULL) |
9869 | return 1; | |
9870 | ||
9871 | for (i = 0; known_auxiliary_function_name_patterns[i] != NULL; i += 1) | |
9872 | { | |
9873 | re_comp (known_auxiliary_function_name_patterns[i]); | |
9874 | if (re_exec (func_name)) | |
9875 | return 1; | |
9876 | } | |
9877 | ||
9878 | return 0; | |
9879 | } | |
9880 | ||
9881 | /* Find the first frame that contains debugging information and that is not | |
9882 | part of the Ada run-time, starting from FI and moving upward. */ | |
9883 | ||
9884 | static void | |
9885 | ada_find_printable_frame (struct frame_info *fi) | |
9886 | { | |
9887 | for (; fi != NULL; fi = get_prev_frame (fi)) | |
9888 | { | |
9889 | if (!is_known_support_routine (fi)) | |
9890 | { | |
9891 | select_frame (fi); | |
9892 | break; | |
9893 | } | |
9894 | } | |
9895 | ||
9896 | } | |
9897 | ||
9898 | /* Assuming that the inferior just triggered an unhandled exception | |
9899 | catchpoint, return the address in inferior memory where the name | |
9900 | of the exception is stored. | |
9901 | ||
9902 | Return zero if the address could not be computed. */ | |
9903 | ||
9904 | static CORE_ADDR | |
9905 | ada_unhandled_exception_name_addr (void) | |
0259addd JB |
9906 | { |
9907 | return parse_and_eval_address ("e.full_name"); | |
9908 | } | |
9909 | ||
9910 | /* Same as ada_unhandled_exception_name_addr, except that this function | |
9911 | should be used when the inferior uses an older version of the runtime, | |
9912 | where the exception name needs to be extracted from a specific frame | |
9913 | several frames up in the callstack. */ | |
9914 | ||
9915 | static CORE_ADDR | |
9916 | ada_unhandled_exception_name_addr_from_raise (void) | |
f7f9143b JB |
9917 | { |
9918 | int frame_level; | |
9919 | struct frame_info *fi; | |
9920 | ||
9921 | /* To determine the name of this exception, we need to select | |
9922 | the frame corresponding to RAISE_SYM_NAME. This frame is | |
9923 | at least 3 levels up, so we simply skip the first 3 frames | |
9924 | without checking the name of their associated function. */ | |
9925 | fi = get_current_frame (); | |
9926 | for (frame_level = 0; frame_level < 3; frame_level += 1) | |
9927 | if (fi != NULL) | |
9928 | fi = get_prev_frame (fi); | |
9929 | ||
9930 | while (fi != NULL) | |
9931 | { | |
9932 | const char *func_name = | |
9933 | function_name_from_pc (get_frame_address_in_block (fi)); | |
9934 | if (func_name != NULL | |
0259addd | 9935 | && strcmp (func_name, exception_info->catch_exception_sym) == 0) |
f7f9143b JB |
9936 | break; /* We found the frame we were looking for... */ |
9937 | fi = get_prev_frame (fi); | |
9938 | } | |
9939 | ||
9940 | if (fi == NULL) | |
9941 | return 0; | |
9942 | ||
9943 | select_frame (fi); | |
9944 | return parse_and_eval_address ("id.full_name"); | |
9945 | } | |
9946 | ||
9947 | /* Assuming the inferior just triggered an Ada exception catchpoint | |
9948 | (of any type), return the address in inferior memory where the name | |
9949 | of the exception is stored, if applicable. | |
9950 | ||
9951 | Return zero if the address could not be computed, or if not relevant. */ | |
9952 | ||
9953 | static CORE_ADDR | |
9954 | ada_exception_name_addr_1 (enum exception_catchpoint_kind ex, | |
9955 | struct breakpoint *b) | |
9956 | { | |
9957 | switch (ex) | |
9958 | { | |
9959 | case ex_catch_exception: | |
9960 | return (parse_and_eval_address ("e.full_name")); | |
9961 | break; | |
9962 | ||
9963 | case ex_catch_exception_unhandled: | |
0259addd | 9964 | return exception_info->unhandled_exception_name_addr (); |
f7f9143b JB |
9965 | break; |
9966 | ||
9967 | case ex_catch_assert: | |
9968 | return 0; /* Exception name is not relevant in this case. */ | |
9969 | break; | |
9970 | ||
9971 | default: | |
9972 | internal_error (__FILE__, __LINE__, _("unexpected catchpoint type")); | |
9973 | break; | |
9974 | } | |
9975 | ||
9976 | return 0; /* Should never be reached. */ | |
9977 | } | |
9978 | ||
9979 | /* Same as ada_exception_name_addr_1, except that it intercepts and contains | |
9980 | any error that ada_exception_name_addr_1 might cause to be thrown. | |
9981 | When an error is intercepted, a warning with the error message is printed, | |
9982 | and zero is returned. */ | |
9983 | ||
9984 | static CORE_ADDR | |
9985 | ada_exception_name_addr (enum exception_catchpoint_kind ex, | |
9986 | struct breakpoint *b) | |
9987 | { | |
9988 | struct gdb_exception e; | |
9989 | CORE_ADDR result = 0; | |
9990 | ||
9991 | TRY_CATCH (e, RETURN_MASK_ERROR) | |
9992 | { | |
9993 | result = ada_exception_name_addr_1 (ex, b); | |
9994 | } | |
9995 | ||
9996 | if (e.reason < 0) | |
9997 | { | |
9998 | warning (_("failed to get exception name: %s"), e.message); | |
9999 | return 0; | |
10000 | } | |
10001 | ||
10002 | return result; | |
10003 | } | |
10004 | ||
10005 | /* Implement the PRINT_IT method in the breakpoint_ops structure | |
10006 | for all exception catchpoint kinds. */ | |
10007 | ||
10008 | static enum print_stop_action | |
10009 | print_it_exception (enum exception_catchpoint_kind ex, struct breakpoint *b) | |
10010 | { | |
10011 | const CORE_ADDR addr = ada_exception_name_addr (ex, b); | |
10012 | char exception_name[256]; | |
10013 | ||
10014 | if (addr != 0) | |
10015 | { | |
10016 | read_memory (addr, exception_name, sizeof (exception_name) - 1); | |
10017 | exception_name [sizeof (exception_name) - 1] = '\0'; | |
10018 | } | |
10019 | ||
10020 | ada_find_printable_frame (get_current_frame ()); | |
10021 | ||
10022 | annotate_catchpoint (b->number); | |
10023 | switch (ex) | |
10024 | { | |
10025 | case ex_catch_exception: | |
10026 | if (addr != 0) | |
10027 | printf_filtered (_("\nCatchpoint %d, %s at "), | |
10028 | b->number, exception_name); | |
10029 | else | |
10030 | printf_filtered (_("\nCatchpoint %d, exception at "), b->number); | |
10031 | break; | |
10032 | case ex_catch_exception_unhandled: | |
10033 | if (addr != 0) | |
10034 | printf_filtered (_("\nCatchpoint %d, unhandled %s at "), | |
10035 | b->number, exception_name); | |
10036 | else | |
10037 | printf_filtered (_("\nCatchpoint %d, unhandled exception at "), | |
10038 | b->number); | |
10039 | break; | |
10040 | case ex_catch_assert: | |
10041 | printf_filtered (_("\nCatchpoint %d, failed assertion at "), | |
10042 | b->number); | |
10043 | break; | |
10044 | } | |
10045 | ||
10046 | return PRINT_SRC_AND_LOC; | |
10047 | } | |
10048 | ||
10049 | /* Implement the PRINT_ONE method in the breakpoint_ops structure | |
10050 | for all exception catchpoint kinds. */ | |
10051 | ||
10052 | static void | |
10053 | print_one_exception (enum exception_catchpoint_kind ex, | |
10054 | struct breakpoint *b, CORE_ADDR *last_addr) | |
10055 | { | |
10056 | if (addressprint) | |
10057 | { | |
10058 | annotate_field (4); | |
10059 | ui_out_field_core_addr (uiout, "addr", b->loc->address); | |
10060 | } | |
10061 | ||
10062 | annotate_field (5); | |
10063 | *last_addr = b->loc->address; | |
10064 | switch (ex) | |
10065 | { | |
10066 | case ex_catch_exception: | |
10067 | if (b->exp_string != NULL) | |
10068 | { | |
10069 | char *msg = xstrprintf (_("`%s' Ada exception"), b->exp_string); | |
10070 | ||
10071 | ui_out_field_string (uiout, "what", msg); | |
10072 | xfree (msg); | |
10073 | } | |
10074 | else | |
10075 | ui_out_field_string (uiout, "what", "all Ada exceptions"); | |
10076 | ||
10077 | break; | |
10078 | ||
10079 | case ex_catch_exception_unhandled: | |
10080 | ui_out_field_string (uiout, "what", "unhandled Ada exceptions"); | |
10081 | break; | |
10082 | ||
10083 | case ex_catch_assert: | |
10084 | ui_out_field_string (uiout, "what", "failed Ada assertions"); | |
10085 | break; | |
10086 | ||
10087 | default: | |
10088 | internal_error (__FILE__, __LINE__, _("unexpected catchpoint type")); | |
10089 | break; | |
10090 | } | |
10091 | } | |
10092 | ||
10093 | /* Implement the PRINT_MENTION method in the breakpoint_ops structure | |
10094 | for all exception catchpoint kinds. */ | |
10095 | ||
10096 | static void | |
10097 | print_mention_exception (enum exception_catchpoint_kind ex, | |
10098 | struct breakpoint *b) | |
10099 | { | |
10100 | switch (ex) | |
10101 | { | |
10102 | case ex_catch_exception: | |
10103 | if (b->exp_string != NULL) | |
10104 | printf_filtered (_("Catchpoint %d: `%s' Ada exception"), | |
10105 | b->number, b->exp_string); | |
10106 | else | |
10107 | printf_filtered (_("Catchpoint %d: all Ada exceptions"), b->number); | |
10108 | ||
10109 | break; | |
10110 | ||
10111 | case ex_catch_exception_unhandled: | |
10112 | printf_filtered (_("Catchpoint %d: unhandled Ada exceptions"), | |
10113 | b->number); | |
10114 | break; | |
10115 | ||
10116 | case ex_catch_assert: | |
10117 | printf_filtered (_("Catchpoint %d: failed Ada assertions"), b->number); | |
10118 | break; | |
10119 | ||
10120 | default: | |
10121 | internal_error (__FILE__, __LINE__, _("unexpected catchpoint type")); | |
10122 | break; | |
10123 | } | |
10124 | } | |
10125 | ||
10126 | /* Virtual table for "catch exception" breakpoints. */ | |
10127 | ||
10128 | static enum print_stop_action | |
10129 | print_it_catch_exception (struct breakpoint *b) | |
10130 | { | |
10131 | return print_it_exception (ex_catch_exception, b); | |
10132 | } | |
10133 | ||
10134 | static void | |
10135 | print_one_catch_exception (struct breakpoint *b, CORE_ADDR *last_addr) | |
10136 | { | |
10137 | print_one_exception (ex_catch_exception, b, last_addr); | |
10138 | } | |
10139 | ||
10140 | static void | |
10141 | print_mention_catch_exception (struct breakpoint *b) | |
10142 | { | |
10143 | print_mention_exception (ex_catch_exception, b); | |
10144 | } | |
10145 | ||
10146 | static struct breakpoint_ops catch_exception_breakpoint_ops = | |
10147 | { | |
10148 | print_it_catch_exception, | |
10149 | print_one_catch_exception, | |
10150 | print_mention_catch_exception | |
10151 | }; | |
10152 | ||
10153 | /* Virtual table for "catch exception unhandled" breakpoints. */ | |
10154 | ||
10155 | static enum print_stop_action | |
10156 | print_it_catch_exception_unhandled (struct breakpoint *b) | |
10157 | { | |
10158 | return print_it_exception (ex_catch_exception_unhandled, b); | |
10159 | } | |
10160 | ||
10161 | static void | |
10162 | print_one_catch_exception_unhandled (struct breakpoint *b, CORE_ADDR *last_addr) | |
10163 | { | |
10164 | print_one_exception (ex_catch_exception_unhandled, b, last_addr); | |
10165 | } | |
10166 | ||
10167 | static void | |
10168 | print_mention_catch_exception_unhandled (struct breakpoint *b) | |
10169 | { | |
10170 | print_mention_exception (ex_catch_exception_unhandled, b); | |
10171 | } | |
10172 | ||
10173 | static struct breakpoint_ops catch_exception_unhandled_breakpoint_ops = { | |
10174 | print_it_catch_exception_unhandled, | |
10175 | print_one_catch_exception_unhandled, | |
10176 | print_mention_catch_exception_unhandled | |
10177 | }; | |
10178 | ||
10179 | /* Virtual table for "catch assert" breakpoints. */ | |
10180 | ||
10181 | static enum print_stop_action | |
10182 | print_it_catch_assert (struct breakpoint *b) | |
10183 | { | |
10184 | return print_it_exception (ex_catch_assert, b); | |
10185 | } | |
10186 | ||
10187 | static void | |
10188 | print_one_catch_assert (struct breakpoint *b, CORE_ADDR *last_addr) | |
10189 | { | |
10190 | print_one_exception (ex_catch_assert, b, last_addr); | |
10191 | } | |
10192 | ||
10193 | static void | |
10194 | print_mention_catch_assert (struct breakpoint *b) | |
10195 | { | |
10196 | print_mention_exception (ex_catch_assert, b); | |
10197 | } | |
10198 | ||
10199 | static struct breakpoint_ops catch_assert_breakpoint_ops = { | |
10200 | print_it_catch_assert, | |
10201 | print_one_catch_assert, | |
10202 | print_mention_catch_assert | |
10203 | }; | |
10204 | ||
10205 | /* Return non-zero if B is an Ada exception catchpoint. */ | |
10206 | ||
10207 | int | |
10208 | ada_exception_catchpoint_p (struct breakpoint *b) | |
10209 | { | |
10210 | return (b->ops == &catch_exception_breakpoint_ops | |
10211 | || b->ops == &catch_exception_unhandled_breakpoint_ops | |
10212 | || b->ops == &catch_assert_breakpoint_ops); | |
10213 | } | |
10214 | ||
f7f9143b JB |
10215 | /* Return a newly allocated copy of the first space-separated token |
10216 | in ARGSP, and then adjust ARGSP to point immediately after that | |
10217 | token. | |
10218 | ||
10219 | Return NULL if ARGPS does not contain any more tokens. */ | |
10220 | ||
10221 | static char * | |
10222 | ada_get_next_arg (char **argsp) | |
10223 | { | |
10224 | char *args = *argsp; | |
10225 | char *end; | |
10226 | char *result; | |
10227 | ||
10228 | /* Skip any leading white space. */ | |
10229 | ||
10230 | while (isspace (*args)) | |
10231 | args++; | |
10232 | ||
10233 | if (args[0] == '\0') | |
10234 | return NULL; /* No more arguments. */ | |
10235 | ||
10236 | /* Find the end of the current argument. */ | |
10237 | ||
10238 | end = args; | |
10239 | while (*end != '\0' && !isspace (*end)) | |
10240 | end++; | |
10241 | ||
10242 | /* Adjust ARGSP to point to the start of the next argument. */ | |
10243 | ||
10244 | *argsp = end; | |
10245 | ||
10246 | /* Make a copy of the current argument and return it. */ | |
10247 | ||
10248 | result = xmalloc (end - args + 1); | |
10249 | strncpy (result, args, end - args); | |
10250 | result[end - args] = '\0'; | |
10251 | ||
10252 | return result; | |
10253 | } | |
10254 | ||
10255 | /* Split the arguments specified in a "catch exception" command. | |
10256 | Set EX to the appropriate catchpoint type. | |
10257 | Set EXP_STRING to the name of the specific exception if | |
10258 | specified by the user. */ | |
10259 | ||
10260 | static void | |
10261 | catch_ada_exception_command_split (char *args, | |
10262 | enum exception_catchpoint_kind *ex, | |
10263 | char **exp_string) | |
10264 | { | |
10265 | struct cleanup *old_chain = make_cleanup (null_cleanup, NULL); | |
10266 | char *exception_name; | |
10267 | ||
10268 | exception_name = ada_get_next_arg (&args); | |
10269 | make_cleanup (xfree, exception_name); | |
10270 | ||
10271 | /* Check that we do not have any more arguments. Anything else | |
10272 | is unexpected. */ | |
10273 | ||
10274 | while (isspace (*args)) | |
10275 | args++; | |
10276 | ||
10277 | if (args[0] != '\0') | |
10278 | error (_("Junk at end of expression")); | |
10279 | ||
10280 | discard_cleanups (old_chain); | |
10281 | ||
10282 | if (exception_name == NULL) | |
10283 | { | |
10284 | /* Catch all exceptions. */ | |
10285 | *ex = ex_catch_exception; | |
10286 | *exp_string = NULL; | |
10287 | } | |
10288 | else if (strcmp (exception_name, "unhandled") == 0) | |
10289 | { | |
10290 | /* Catch unhandled exceptions. */ | |
10291 | *ex = ex_catch_exception_unhandled; | |
10292 | *exp_string = NULL; | |
10293 | } | |
10294 | else | |
10295 | { | |
10296 | /* Catch a specific exception. */ | |
10297 | *ex = ex_catch_exception; | |
10298 | *exp_string = exception_name; | |
10299 | } | |
10300 | } | |
10301 | ||
10302 | /* Return the name of the symbol on which we should break in order to | |
10303 | implement a catchpoint of the EX kind. */ | |
10304 | ||
10305 | static const char * | |
10306 | ada_exception_sym_name (enum exception_catchpoint_kind ex) | |
10307 | { | |
0259addd JB |
10308 | gdb_assert (exception_info != NULL); |
10309 | ||
f7f9143b JB |
10310 | switch (ex) |
10311 | { | |
10312 | case ex_catch_exception: | |
0259addd | 10313 | return (exception_info->catch_exception_sym); |
f7f9143b JB |
10314 | break; |
10315 | case ex_catch_exception_unhandled: | |
0259addd | 10316 | return (exception_info->catch_exception_unhandled_sym); |
f7f9143b JB |
10317 | break; |
10318 | case ex_catch_assert: | |
0259addd | 10319 | return (exception_info->catch_assert_sym); |
f7f9143b JB |
10320 | break; |
10321 | default: | |
10322 | internal_error (__FILE__, __LINE__, | |
10323 | _("unexpected catchpoint kind (%d)"), ex); | |
10324 | } | |
10325 | } | |
10326 | ||
10327 | /* Return the breakpoint ops "virtual table" used for catchpoints | |
10328 | of the EX kind. */ | |
10329 | ||
10330 | static struct breakpoint_ops * | |
4b9eee8c | 10331 | ada_exception_breakpoint_ops (enum exception_catchpoint_kind ex) |
f7f9143b JB |
10332 | { |
10333 | switch (ex) | |
10334 | { | |
10335 | case ex_catch_exception: | |
10336 | return (&catch_exception_breakpoint_ops); | |
10337 | break; | |
10338 | case ex_catch_exception_unhandled: | |
10339 | return (&catch_exception_unhandled_breakpoint_ops); | |
10340 | break; | |
10341 | case ex_catch_assert: | |
10342 | return (&catch_assert_breakpoint_ops); | |
10343 | break; | |
10344 | default: | |
10345 | internal_error (__FILE__, __LINE__, | |
10346 | _("unexpected catchpoint kind (%d)"), ex); | |
10347 | } | |
10348 | } | |
10349 | ||
10350 | /* Return the condition that will be used to match the current exception | |
10351 | being raised with the exception that the user wants to catch. This | |
10352 | assumes that this condition is used when the inferior just triggered | |
10353 | an exception catchpoint. | |
10354 | ||
10355 | The string returned is a newly allocated string that needs to be | |
10356 | deallocated later. */ | |
10357 | ||
10358 | static char * | |
10359 | ada_exception_catchpoint_cond_string (const char *exp_string) | |
10360 | { | |
3d0b0fa3 JB |
10361 | int i; |
10362 | ||
10363 | /* The standard exceptions are a special case. They are defined in | |
10364 | runtime units that have been compiled without debugging info; if | |
10365 | EXP_STRING is the not-fully-qualified name of a standard | |
10366 | exception (e.g. "constraint_error") then, during the evaluation | |
10367 | of the condition expression, the symbol lookup on this name would | |
10368 | *not* return this standard exception. The catchpoint condition | |
10369 | may then be set only on user-defined exceptions which have the | |
10370 | same not-fully-qualified name (e.g. my_package.constraint_error). | |
10371 | ||
10372 | To avoid this unexcepted behavior, these standard exceptions are | |
10373 | systematically prefixed by "standard". This means that "catch | |
10374 | exception constraint_error" is rewritten into "catch exception | |
10375 | standard.constraint_error". | |
10376 | ||
10377 | If an exception named contraint_error is defined in another package of | |
10378 | the inferior program, then the only way to specify this exception as a | |
10379 | breakpoint condition is to use its fully-qualified named: | |
10380 | e.g. my_package.constraint_error. */ | |
10381 | ||
10382 | for (i = 0; i < sizeof (standard_exc) / sizeof (char *); i++) | |
10383 | { | |
10384 | if (strcmp (standard_exc [i], exp_string) == 0) | |
10385 | { | |
10386 | return xstrprintf ("long_integer (e) = long_integer (&standard.%s)", | |
10387 | exp_string); | |
10388 | } | |
10389 | } | |
f7f9143b JB |
10390 | return xstrprintf ("long_integer (e) = long_integer (&%s)", exp_string); |
10391 | } | |
10392 | ||
10393 | /* Return the expression corresponding to COND_STRING evaluated at SAL. */ | |
10394 | ||
10395 | static struct expression * | |
10396 | ada_parse_catchpoint_condition (char *cond_string, | |
10397 | struct symtab_and_line sal) | |
10398 | { | |
10399 | return (parse_exp_1 (&cond_string, block_for_pc (sal.pc), 0)); | |
10400 | } | |
10401 | ||
10402 | /* Return the symtab_and_line that should be used to insert an exception | |
10403 | catchpoint of the TYPE kind. | |
10404 | ||
10405 | EX_STRING should contain the name of a specific exception | |
10406 | that the catchpoint should catch, or NULL otherwise. | |
10407 | ||
10408 | The idea behind all the remaining parameters is that their names match | |
10409 | the name of certain fields in the breakpoint structure that are used to | |
10410 | handle exception catchpoints. This function returns the value to which | |
10411 | these fields should be set, depending on the type of catchpoint we need | |
10412 | to create. | |
10413 | ||
10414 | If COND and COND_STRING are both non-NULL, any value they might | |
10415 | hold will be free'ed, and then replaced by newly allocated ones. | |
10416 | These parameters are left untouched otherwise. */ | |
10417 | ||
10418 | static struct symtab_and_line | |
10419 | ada_exception_sal (enum exception_catchpoint_kind ex, char *exp_string, | |
10420 | char **addr_string, char **cond_string, | |
10421 | struct expression **cond, struct breakpoint_ops **ops) | |
10422 | { | |
10423 | const char *sym_name; | |
10424 | struct symbol *sym; | |
10425 | struct symtab_and_line sal; | |
10426 | ||
0259addd JB |
10427 | /* First, find out which exception support info to use. */ |
10428 | ada_exception_support_info_sniffer (); | |
10429 | ||
10430 | /* Then lookup the function on which we will break in order to catch | |
f7f9143b JB |
10431 | the Ada exceptions requested by the user. */ |
10432 | ||
10433 | sym_name = ada_exception_sym_name (ex); | |
10434 | sym = standard_lookup (sym_name, NULL, VAR_DOMAIN); | |
10435 | ||
10436 | /* The symbol we're looking up is provided by a unit in the GNAT runtime | |
10437 | that should be compiled with debugging information. As a result, we | |
10438 | expect to find that symbol in the symtabs. If we don't find it, then | |
10439 | the target most likely does not support Ada exceptions, or we cannot | |
10440 | insert exception breakpoints yet, because the GNAT runtime hasn't been | |
10441 | loaded yet. */ | |
10442 | ||
10443 | /* brobecker/2006-12-26: It is conceivable that the runtime was compiled | |
10444 | in such a way that no debugging information is produced for the symbol | |
10445 | we are looking for. In this case, we could search the minimal symbols | |
10446 | as a fall-back mechanism. This would still be operating in degraded | |
10447 | mode, however, as we would still be missing the debugging information | |
10448 | that is needed in order to extract the name of the exception being | |
10449 | raised (this name is printed in the catchpoint message, and is also | |
10450 | used when trying to catch a specific exception). We do not handle | |
10451 | this case for now. */ | |
10452 | ||
10453 | if (sym == NULL) | |
0259addd | 10454 | error (_("Unable to break on '%s' in this configuration."), sym_name); |
f7f9143b JB |
10455 | |
10456 | /* Make sure that the symbol we found corresponds to a function. */ | |
10457 | if (SYMBOL_CLASS (sym) != LOC_BLOCK) | |
10458 | error (_("Symbol \"%s\" is not a function (class = %d)"), | |
10459 | sym_name, SYMBOL_CLASS (sym)); | |
10460 | ||
10461 | sal = find_function_start_sal (sym, 1); | |
10462 | ||
10463 | /* Set ADDR_STRING. */ | |
10464 | ||
10465 | *addr_string = xstrdup (sym_name); | |
10466 | ||
10467 | /* Set the COND and COND_STRING (if not NULL). */ | |
10468 | ||
10469 | if (cond_string != NULL && cond != NULL) | |
10470 | { | |
10471 | if (*cond_string != NULL) | |
10472 | { | |
10473 | xfree (*cond_string); | |
10474 | *cond_string = NULL; | |
10475 | } | |
10476 | if (*cond != NULL) | |
10477 | { | |
10478 | xfree (*cond); | |
10479 | *cond = NULL; | |
10480 | } | |
10481 | if (exp_string != NULL) | |
10482 | { | |
10483 | *cond_string = ada_exception_catchpoint_cond_string (exp_string); | |
10484 | *cond = ada_parse_catchpoint_condition (*cond_string, sal); | |
10485 | } | |
10486 | } | |
10487 | ||
10488 | /* Set OPS. */ | |
4b9eee8c | 10489 | *ops = ada_exception_breakpoint_ops (ex); |
f7f9143b JB |
10490 | |
10491 | return sal; | |
10492 | } | |
10493 | ||
10494 | /* Parse the arguments (ARGS) of the "catch exception" command. | |
10495 | ||
10496 | Set TYPE to the appropriate exception catchpoint type. | |
10497 | If the user asked the catchpoint to catch only a specific | |
10498 | exception, then save the exception name in ADDR_STRING. | |
10499 | ||
10500 | See ada_exception_sal for a description of all the remaining | |
10501 | function arguments of this function. */ | |
10502 | ||
10503 | struct symtab_and_line | |
10504 | ada_decode_exception_location (char *args, char **addr_string, | |
10505 | char **exp_string, char **cond_string, | |
10506 | struct expression **cond, | |
10507 | struct breakpoint_ops **ops) | |
10508 | { | |
10509 | enum exception_catchpoint_kind ex; | |
10510 | ||
10511 | catch_ada_exception_command_split (args, &ex, exp_string); | |
10512 | return ada_exception_sal (ex, *exp_string, addr_string, cond_string, | |
10513 | cond, ops); | |
10514 | } | |
10515 | ||
10516 | struct symtab_and_line | |
10517 | ada_decode_assert_location (char *args, char **addr_string, | |
10518 | struct breakpoint_ops **ops) | |
10519 | { | |
10520 | /* Check that no argument where provided at the end of the command. */ | |
10521 | ||
10522 | if (args != NULL) | |
10523 | { | |
10524 | while (isspace (*args)) | |
10525 | args++; | |
10526 | if (*args != '\0') | |
10527 | error (_("Junk at end of arguments.")); | |
10528 | } | |
10529 | ||
10530 | return ada_exception_sal (ex_catch_assert, NULL, addr_string, NULL, NULL, | |
10531 | ops); | |
10532 | } | |
10533 | ||
4c4b4cd2 PH |
10534 | /* Operators */ |
10535 | /* Information about operators given special treatment in functions | |
10536 | below. */ | |
10537 | /* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */ | |
10538 | ||
10539 | #define ADA_OPERATORS \ | |
10540 | OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \ | |
10541 | OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \ | |
10542 | OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \ | |
10543 | OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \ | |
10544 | OP_DEFN (OP_ATR_LAST, 1, 2, 0) \ | |
10545 | OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \ | |
10546 | OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \ | |
10547 | OP_DEFN (OP_ATR_MAX, 1, 3, 0) \ | |
10548 | OP_DEFN (OP_ATR_MIN, 1, 3, 0) \ | |
10549 | OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \ | |
10550 | OP_DEFN (OP_ATR_POS, 1, 2, 0) \ | |
10551 | OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \ | |
10552 | OP_DEFN (OP_ATR_TAG, 1, 1, 0) \ | |
10553 | OP_DEFN (OP_ATR_VAL, 1, 2, 0) \ | |
10554 | OP_DEFN (UNOP_QUAL, 3, 1, 0) \ | |
52ce6436 PH |
10555 | OP_DEFN (UNOP_IN_RANGE, 3, 1, 0) \ |
10556 | OP_DEFN (OP_OTHERS, 1, 1, 0) \ | |
10557 | OP_DEFN (OP_POSITIONAL, 3, 1, 0) \ | |
10558 | OP_DEFN (OP_DISCRETE_RANGE, 1, 2, 0) | |
4c4b4cd2 PH |
10559 | |
10560 | static void | |
10561 | ada_operator_length (struct expression *exp, int pc, int *oplenp, int *argsp) | |
10562 | { | |
10563 | switch (exp->elts[pc - 1].opcode) | |
10564 | { | |
76a01679 | 10565 | default: |
4c4b4cd2 PH |
10566 | operator_length_standard (exp, pc, oplenp, argsp); |
10567 | break; | |
10568 | ||
10569 | #define OP_DEFN(op, len, args, binop) \ | |
10570 | case op: *oplenp = len; *argsp = args; break; | |
10571 | ADA_OPERATORS; | |
10572 | #undef OP_DEFN | |
52ce6436 PH |
10573 | |
10574 | case OP_AGGREGATE: | |
10575 | *oplenp = 3; | |
10576 | *argsp = longest_to_int (exp->elts[pc - 2].longconst); | |
10577 | break; | |
10578 | ||
10579 | case OP_CHOICES: | |
10580 | *oplenp = 3; | |
10581 | *argsp = longest_to_int (exp->elts[pc - 2].longconst) + 1; | |
10582 | break; | |
4c4b4cd2 PH |
10583 | } |
10584 | } | |
10585 | ||
10586 | static char * | |
10587 | ada_op_name (enum exp_opcode opcode) | |
10588 | { | |
10589 | switch (opcode) | |
10590 | { | |
76a01679 | 10591 | default: |
4c4b4cd2 | 10592 | return op_name_standard (opcode); |
52ce6436 | 10593 | |
4c4b4cd2 PH |
10594 | #define OP_DEFN(op, len, args, binop) case op: return #op; |
10595 | ADA_OPERATORS; | |
10596 | #undef OP_DEFN | |
52ce6436 PH |
10597 | |
10598 | case OP_AGGREGATE: | |
10599 | return "OP_AGGREGATE"; | |
10600 | case OP_CHOICES: | |
10601 | return "OP_CHOICES"; | |
10602 | case OP_NAME: | |
10603 | return "OP_NAME"; | |
4c4b4cd2 PH |
10604 | } |
10605 | } | |
10606 | ||
10607 | /* As for operator_length, but assumes PC is pointing at the first | |
10608 | element of the operator, and gives meaningful results only for the | |
52ce6436 | 10609 | Ada-specific operators, returning 0 for *OPLENP and *ARGSP otherwise. */ |
4c4b4cd2 PH |
10610 | |
10611 | static void | |
76a01679 JB |
10612 | ada_forward_operator_length (struct expression *exp, int pc, |
10613 | int *oplenp, int *argsp) | |
4c4b4cd2 | 10614 | { |
76a01679 | 10615 | switch (exp->elts[pc].opcode) |
4c4b4cd2 PH |
10616 | { |
10617 | default: | |
10618 | *oplenp = *argsp = 0; | |
10619 | break; | |
52ce6436 | 10620 | |
4c4b4cd2 PH |
10621 | #define OP_DEFN(op, len, args, binop) \ |
10622 | case op: *oplenp = len; *argsp = args; break; | |
10623 | ADA_OPERATORS; | |
10624 | #undef OP_DEFN | |
52ce6436 PH |
10625 | |
10626 | case OP_AGGREGATE: | |
10627 | *oplenp = 3; | |
10628 | *argsp = longest_to_int (exp->elts[pc + 1].longconst); | |
10629 | break; | |
10630 | ||
10631 | case OP_CHOICES: | |
10632 | *oplenp = 3; | |
10633 | *argsp = longest_to_int (exp->elts[pc + 1].longconst) + 1; | |
10634 | break; | |
10635 | ||
10636 | case OP_STRING: | |
10637 | case OP_NAME: | |
10638 | { | |
10639 | int len = longest_to_int (exp->elts[pc + 1].longconst); | |
10640 | *oplenp = 4 + BYTES_TO_EXP_ELEM (len + 1); | |
10641 | *argsp = 0; | |
10642 | break; | |
10643 | } | |
4c4b4cd2 PH |
10644 | } |
10645 | } | |
10646 | ||
10647 | static int | |
10648 | ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt) | |
10649 | { | |
10650 | enum exp_opcode op = exp->elts[elt].opcode; | |
10651 | int oplen, nargs; | |
10652 | int pc = elt; | |
10653 | int i; | |
76a01679 | 10654 | |
4c4b4cd2 PH |
10655 | ada_forward_operator_length (exp, elt, &oplen, &nargs); |
10656 | ||
76a01679 | 10657 | switch (op) |
4c4b4cd2 | 10658 | { |
76a01679 | 10659 | /* Ada attributes ('Foo). */ |
4c4b4cd2 PH |
10660 | case OP_ATR_FIRST: |
10661 | case OP_ATR_LAST: | |
10662 | case OP_ATR_LENGTH: | |
10663 | case OP_ATR_IMAGE: | |
10664 | case OP_ATR_MAX: | |
10665 | case OP_ATR_MIN: | |
10666 | case OP_ATR_MODULUS: | |
10667 | case OP_ATR_POS: | |
10668 | case OP_ATR_SIZE: | |
10669 | case OP_ATR_TAG: | |
10670 | case OP_ATR_VAL: | |
10671 | break; | |
10672 | ||
10673 | case UNOP_IN_RANGE: | |
10674 | case UNOP_QUAL: | |
323e0a4a AC |
10675 | /* XXX: gdb_sprint_host_address, type_sprint */ |
10676 | fprintf_filtered (stream, _("Type @")); | |
4c4b4cd2 PH |
10677 | gdb_print_host_address (exp->elts[pc + 1].type, stream); |
10678 | fprintf_filtered (stream, " ("); | |
10679 | type_print (exp->elts[pc + 1].type, NULL, stream, 0); | |
10680 | fprintf_filtered (stream, ")"); | |
10681 | break; | |
10682 | case BINOP_IN_BOUNDS: | |
52ce6436 PH |
10683 | fprintf_filtered (stream, " (%d)", |
10684 | longest_to_int (exp->elts[pc + 2].longconst)); | |
4c4b4cd2 PH |
10685 | break; |
10686 | case TERNOP_IN_RANGE: | |
10687 | break; | |
10688 | ||
52ce6436 PH |
10689 | case OP_AGGREGATE: |
10690 | case OP_OTHERS: | |
10691 | case OP_DISCRETE_RANGE: | |
10692 | case OP_POSITIONAL: | |
10693 | case OP_CHOICES: | |
10694 | break; | |
10695 | ||
10696 | case OP_NAME: | |
10697 | case OP_STRING: | |
10698 | { | |
10699 | char *name = &exp->elts[elt + 2].string; | |
10700 | int len = longest_to_int (exp->elts[elt + 1].longconst); | |
10701 | fprintf_filtered (stream, "Text: `%.*s'", len, name); | |
10702 | break; | |
10703 | } | |
10704 | ||
4c4b4cd2 PH |
10705 | default: |
10706 | return dump_subexp_body_standard (exp, stream, elt); | |
10707 | } | |
10708 | ||
10709 | elt += oplen; | |
10710 | for (i = 0; i < nargs; i += 1) | |
10711 | elt = dump_subexp (exp, stream, elt); | |
10712 | ||
10713 | return elt; | |
10714 | } | |
10715 | ||
10716 | /* The Ada extension of print_subexp (q.v.). */ | |
10717 | ||
76a01679 JB |
10718 | static void |
10719 | ada_print_subexp (struct expression *exp, int *pos, | |
10720 | struct ui_file *stream, enum precedence prec) | |
4c4b4cd2 | 10721 | { |
52ce6436 | 10722 | int oplen, nargs, i; |
4c4b4cd2 PH |
10723 | int pc = *pos; |
10724 | enum exp_opcode op = exp->elts[pc].opcode; | |
10725 | ||
10726 | ada_forward_operator_length (exp, pc, &oplen, &nargs); | |
10727 | ||
52ce6436 | 10728 | *pos += oplen; |
4c4b4cd2 PH |
10729 | switch (op) |
10730 | { | |
10731 | default: | |
52ce6436 | 10732 | *pos -= oplen; |
4c4b4cd2 PH |
10733 | print_subexp_standard (exp, pos, stream, prec); |
10734 | return; | |
10735 | ||
10736 | case OP_VAR_VALUE: | |
4c4b4cd2 PH |
10737 | fputs_filtered (SYMBOL_NATURAL_NAME (exp->elts[pc + 2].symbol), stream); |
10738 | return; | |
10739 | ||
10740 | case BINOP_IN_BOUNDS: | |
323e0a4a | 10741 | /* XXX: sprint_subexp */ |
4c4b4cd2 | 10742 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
0b48a291 | 10743 | fputs_filtered (" in ", stream); |
4c4b4cd2 | 10744 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
0b48a291 | 10745 | fputs_filtered ("'range", stream); |
4c4b4cd2 | 10746 | if (exp->elts[pc + 1].longconst > 1) |
76a01679 JB |
10747 | fprintf_filtered (stream, "(%ld)", |
10748 | (long) exp->elts[pc + 1].longconst); | |
4c4b4cd2 PH |
10749 | return; |
10750 | ||
10751 | case TERNOP_IN_RANGE: | |
4c4b4cd2 | 10752 | if (prec >= PREC_EQUAL) |
76a01679 | 10753 | fputs_filtered ("(", stream); |
323e0a4a | 10754 | /* XXX: sprint_subexp */ |
4c4b4cd2 | 10755 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
0b48a291 | 10756 | fputs_filtered (" in ", stream); |
4c4b4cd2 PH |
10757 | print_subexp (exp, pos, stream, PREC_EQUAL); |
10758 | fputs_filtered (" .. ", stream); | |
10759 | print_subexp (exp, pos, stream, PREC_EQUAL); | |
10760 | if (prec >= PREC_EQUAL) | |
76a01679 JB |
10761 | fputs_filtered (")", stream); |
10762 | return; | |
4c4b4cd2 PH |
10763 | |
10764 | case OP_ATR_FIRST: | |
10765 | case OP_ATR_LAST: | |
10766 | case OP_ATR_LENGTH: | |
10767 | case OP_ATR_IMAGE: | |
10768 | case OP_ATR_MAX: | |
10769 | case OP_ATR_MIN: | |
10770 | case OP_ATR_MODULUS: | |
10771 | case OP_ATR_POS: | |
10772 | case OP_ATR_SIZE: | |
10773 | case OP_ATR_TAG: | |
10774 | case OP_ATR_VAL: | |
4c4b4cd2 | 10775 | if (exp->elts[*pos].opcode == OP_TYPE) |
76a01679 JB |
10776 | { |
10777 | if (TYPE_CODE (exp->elts[*pos + 1].type) != TYPE_CODE_VOID) | |
10778 | LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0); | |
10779 | *pos += 3; | |
10780 | } | |
4c4b4cd2 | 10781 | else |
76a01679 | 10782 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
4c4b4cd2 PH |
10783 | fprintf_filtered (stream, "'%s", ada_attribute_name (op)); |
10784 | if (nargs > 1) | |
76a01679 JB |
10785 | { |
10786 | int tem; | |
10787 | for (tem = 1; tem < nargs; tem += 1) | |
10788 | { | |
10789 | fputs_filtered ((tem == 1) ? " (" : ", ", stream); | |
10790 | print_subexp (exp, pos, stream, PREC_ABOVE_COMMA); | |
10791 | } | |
10792 | fputs_filtered (")", stream); | |
10793 | } | |
4c4b4cd2 | 10794 | return; |
14f9c5c9 | 10795 | |
4c4b4cd2 | 10796 | case UNOP_QUAL: |
4c4b4cd2 PH |
10797 | type_print (exp->elts[pc + 1].type, "", stream, 0); |
10798 | fputs_filtered ("'(", stream); | |
10799 | print_subexp (exp, pos, stream, PREC_PREFIX); | |
10800 | fputs_filtered (")", stream); | |
10801 | return; | |
14f9c5c9 | 10802 | |
4c4b4cd2 | 10803 | case UNOP_IN_RANGE: |
323e0a4a | 10804 | /* XXX: sprint_subexp */ |
4c4b4cd2 | 10805 | print_subexp (exp, pos, stream, PREC_SUFFIX); |
0b48a291 | 10806 | fputs_filtered (" in ", stream); |
4c4b4cd2 PH |
10807 | LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0); |
10808 | return; | |
52ce6436 PH |
10809 | |
10810 | case OP_DISCRETE_RANGE: | |
10811 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10812 | fputs_filtered ("..", stream); | |
10813 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10814 | return; | |
10815 | ||
10816 | case OP_OTHERS: | |
10817 | fputs_filtered ("others => ", stream); | |
10818 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10819 | return; | |
10820 | ||
10821 | case OP_CHOICES: | |
10822 | for (i = 0; i < nargs-1; i += 1) | |
10823 | { | |
10824 | if (i > 0) | |
10825 | fputs_filtered ("|", stream); | |
10826 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10827 | } | |
10828 | fputs_filtered (" => ", stream); | |
10829 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10830 | return; | |
10831 | ||
10832 | case OP_POSITIONAL: | |
10833 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10834 | return; | |
10835 | ||
10836 | case OP_AGGREGATE: | |
10837 | fputs_filtered ("(", stream); | |
10838 | for (i = 0; i < nargs; i += 1) | |
10839 | { | |
10840 | if (i > 0) | |
10841 | fputs_filtered (", ", stream); | |
10842 | print_subexp (exp, pos, stream, PREC_SUFFIX); | |
10843 | } | |
10844 | fputs_filtered (")", stream); | |
10845 | return; | |
4c4b4cd2 PH |
10846 | } |
10847 | } | |
14f9c5c9 AS |
10848 | |
10849 | /* Table mapping opcodes into strings for printing operators | |
10850 | and precedences of the operators. */ | |
10851 | ||
d2e4a39e AS |
10852 | static const struct op_print ada_op_print_tab[] = { |
10853 | {":=", BINOP_ASSIGN, PREC_ASSIGN, 1}, | |
10854 | {"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0}, | |
10855 | {"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0}, | |
10856 | {"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0}, | |
10857 | {"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0}, | |
10858 | {"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0}, | |
10859 | {"=", BINOP_EQUAL, PREC_EQUAL, 0}, | |
10860 | {"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0}, | |
10861 | {"<=", BINOP_LEQ, PREC_ORDER, 0}, | |
10862 | {">=", BINOP_GEQ, PREC_ORDER, 0}, | |
10863 | {">", BINOP_GTR, PREC_ORDER, 0}, | |
10864 | {"<", BINOP_LESS, PREC_ORDER, 0}, | |
10865 | {">>", BINOP_RSH, PREC_SHIFT, 0}, | |
10866 | {"<<", BINOP_LSH, PREC_SHIFT, 0}, | |
10867 | {"+", BINOP_ADD, PREC_ADD, 0}, | |
10868 | {"-", BINOP_SUB, PREC_ADD, 0}, | |
10869 | {"&", BINOP_CONCAT, PREC_ADD, 0}, | |
10870 | {"*", BINOP_MUL, PREC_MUL, 0}, | |
10871 | {"/", BINOP_DIV, PREC_MUL, 0}, | |
10872 | {"rem", BINOP_REM, PREC_MUL, 0}, | |
10873 | {"mod", BINOP_MOD, PREC_MUL, 0}, | |
10874 | {"**", BINOP_EXP, PREC_REPEAT, 0}, | |
10875 | {"@", BINOP_REPEAT, PREC_REPEAT, 0}, | |
10876 | {"-", UNOP_NEG, PREC_PREFIX, 0}, | |
10877 | {"+", UNOP_PLUS, PREC_PREFIX, 0}, | |
10878 | {"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0}, | |
10879 | {"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0}, | |
10880 | {"abs ", UNOP_ABS, PREC_PREFIX, 0}, | |
4c4b4cd2 PH |
10881 | {".all", UNOP_IND, PREC_SUFFIX, 1}, |
10882 | {"'access", UNOP_ADDR, PREC_SUFFIX, 1}, | |
10883 | {"'size", OP_ATR_SIZE, PREC_SUFFIX, 1}, | |
d2e4a39e | 10884 | {NULL, 0, 0, 0} |
14f9c5c9 AS |
10885 | }; |
10886 | \f | |
72d5681a PH |
10887 | enum ada_primitive_types { |
10888 | ada_primitive_type_int, | |
10889 | ada_primitive_type_long, | |
10890 | ada_primitive_type_short, | |
10891 | ada_primitive_type_char, | |
10892 | ada_primitive_type_float, | |
10893 | ada_primitive_type_double, | |
10894 | ada_primitive_type_void, | |
10895 | ada_primitive_type_long_long, | |
10896 | ada_primitive_type_long_double, | |
10897 | ada_primitive_type_natural, | |
10898 | ada_primitive_type_positive, | |
10899 | ada_primitive_type_system_address, | |
10900 | nr_ada_primitive_types | |
10901 | }; | |
6c038f32 PH |
10902 | |
10903 | static void | |
d4a9a881 | 10904 | ada_language_arch_info (struct gdbarch *gdbarch, |
72d5681a PH |
10905 | struct language_arch_info *lai) |
10906 | { | |
d4a9a881 | 10907 | const struct builtin_type *builtin = builtin_type (gdbarch); |
72d5681a | 10908 | lai->primitive_type_vector |
d4a9a881 | 10909 | = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_ada_primitive_types + 1, |
72d5681a PH |
10910 | struct type *); |
10911 | lai->primitive_type_vector [ada_primitive_type_int] = | |
9a76efb6 | 10912 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10913 | gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10914 | 0, "integer", (struct objfile *) NULL); |
72d5681a | 10915 | lai->primitive_type_vector [ada_primitive_type_long] = |
9a76efb6 | 10916 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10917 | gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10918 | 0, "long_integer", (struct objfile *) NULL); |
72d5681a | 10919 | lai->primitive_type_vector [ada_primitive_type_short] = |
9a76efb6 | 10920 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10921 | gdbarch_short_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10922 | 0, "short_integer", (struct objfile *) NULL); |
61ee279c PH |
10923 | lai->string_char_type = |
10924 | lai->primitive_type_vector [ada_primitive_type_char] = | |
6c038f32 PH |
10925 | init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT, |
10926 | 0, "character", (struct objfile *) NULL); | |
72d5681a | 10927 | lai->primitive_type_vector [ada_primitive_type_float] = |
ea06eb3d | 10928 | init_type (TYPE_CODE_FLT, |
d4a9a881 | 10929 | gdbarch_float_bit (gdbarch)/ TARGET_CHAR_BIT, |
6c038f32 | 10930 | 0, "float", (struct objfile *) NULL); |
72d5681a | 10931 | lai->primitive_type_vector [ada_primitive_type_double] = |
ea06eb3d | 10932 | init_type (TYPE_CODE_FLT, |
d4a9a881 | 10933 | gdbarch_double_bit (gdbarch) / TARGET_CHAR_BIT, |
6c038f32 | 10934 | 0, "long_float", (struct objfile *) NULL); |
72d5681a | 10935 | lai->primitive_type_vector [ada_primitive_type_long_long] = |
9a76efb6 | 10936 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10937 | gdbarch_long_long_bit (gdbarch) / TARGET_CHAR_BIT, |
6c038f32 | 10938 | 0, "long_long_integer", (struct objfile *) NULL); |
72d5681a | 10939 | lai->primitive_type_vector [ada_primitive_type_long_double] = |
ea06eb3d | 10940 | init_type (TYPE_CODE_FLT, |
d4a9a881 | 10941 | gdbarch_double_bit (gdbarch) / TARGET_CHAR_BIT, |
6c038f32 | 10942 | 0, "long_long_float", (struct objfile *) NULL); |
72d5681a | 10943 | lai->primitive_type_vector [ada_primitive_type_natural] = |
9a76efb6 | 10944 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10945 | gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10946 | 0, "natural", (struct objfile *) NULL); |
72d5681a | 10947 | lai->primitive_type_vector [ada_primitive_type_positive] = |
9a76efb6 | 10948 | init_type (TYPE_CODE_INT, |
d4a9a881 | 10949 | gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT, |
9a76efb6 | 10950 | 0, "positive", (struct objfile *) NULL); |
72d5681a | 10951 | lai->primitive_type_vector [ada_primitive_type_void] = builtin->builtin_void; |
6c038f32 | 10952 | |
72d5681a | 10953 | lai->primitive_type_vector [ada_primitive_type_system_address] = |
6c038f32 PH |
10954 | lookup_pointer_type (init_type (TYPE_CODE_VOID, 1, 0, "void", |
10955 | (struct objfile *) NULL)); | |
72d5681a PH |
10956 | TYPE_NAME (lai->primitive_type_vector [ada_primitive_type_system_address]) |
10957 | = "system__address"; | |
fbb06eb1 UW |
10958 | |
10959 | lai->bool_type_symbol = "boolean"; | |
10960 | lai->bool_type_default = builtin->builtin_bool; | |
6c038f32 | 10961 | } |
6c038f32 PH |
10962 | \f |
10963 | /* Language vector */ | |
10964 | ||
10965 | /* Not really used, but needed in the ada_language_defn. */ | |
10966 | ||
10967 | static void | |
10968 | emit_char (int c, struct ui_file *stream, int quoter) | |
10969 | { | |
10970 | ada_emit_char (c, stream, quoter, 1); | |
10971 | } | |
10972 | ||
10973 | static int | |
10974 | parse (void) | |
10975 | { | |
10976 | warnings_issued = 0; | |
10977 | return ada_parse (); | |
10978 | } | |
10979 | ||
10980 | static const struct exp_descriptor ada_exp_descriptor = { | |
10981 | ada_print_subexp, | |
10982 | ada_operator_length, | |
10983 | ada_op_name, | |
10984 | ada_dump_subexp_body, | |
10985 | ada_evaluate_subexp | |
10986 | }; | |
10987 | ||
10988 | const struct language_defn ada_language_defn = { | |
10989 | "ada", /* Language name */ | |
10990 | language_ada, | |
6c038f32 PH |
10991 | range_check_off, |
10992 | type_check_off, | |
10993 | case_sensitive_on, /* Yes, Ada is case-insensitive, but | |
10994 | that's not quite what this means. */ | |
6c038f32 | 10995 | array_row_major, |
9a044a89 | 10996 | macro_expansion_no, |
6c038f32 PH |
10997 | &ada_exp_descriptor, |
10998 | parse, | |
10999 | ada_error, | |
11000 | resolve, | |
11001 | ada_printchar, /* Print a character constant */ | |
11002 | ada_printstr, /* Function to print string constant */ | |
11003 | emit_char, /* Function to print single char (not used) */ | |
6c038f32 | 11004 | ada_print_type, /* Print a type using appropriate syntax */ |
5c6ce71d | 11005 | default_print_typedef, /* Print a typedef using appropriate syntax */ |
6c038f32 PH |
11006 | ada_val_print, /* Print a value using appropriate syntax */ |
11007 | ada_value_print, /* Print a top-level value */ | |
11008 | NULL, /* Language specific skip_trampoline */ | |
2b2d9e11 | 11009 | NULL, /* name_of_this */ |
6c038f32 PH |
11010 | ada_lookup_symbol_nonlocal, /* Looking up non-local symbols. */ |
11011 | basic_lookup_transparent_type, /* lookup_transparent_type */ | |
11012 | ada_la_decode, /* Language specific symbol demangler */ | |
11013 | NULL, /* Language specific class_name_from_physname */ | |
11014 | ada_op_print_tab, /* expression operators for printing */ | |
11015 | 0, /* c-style arrays */ | |
11016 | 1, /* String lower bound */ | |
6c038f32 | 11017 | ada_get_gdb_completer_word_break_characters, |
41d27058 | 11018 | ada_make_symbol_completion_list, |
72d5681a | 11019 | ada_language_arch_info, |
e79af960 | 11020 | ada_print_array_index, |
41f1b697 | 11021 | default_pass_by_reference, |
6c038f32 PH |
11022 | LANG_MAGIC |
11023 | }; | |
11024 | ||
d2e4a39e | 11025 | void |
6c038f32 | 11026 | _initialize_ada_language (void) |
14f9c5c9 | 11027 | { |
6c038f32 PH |
11028 | add_language (&ada_language_defn); |
11029 | ||
11030 | varsize_limit = 65536; | |
6c038f32 PH |
11031 | |
11032 | obstack_init (&symbol_list_obstack); | |
11033 | ||
11034 | decoded_names_store = htab_create_alloc | |
11035 | (256, htab_hash_string, (int (*)(const void *, const void *)) streq, | |
11036 | NULL, xcalloc, xfree); | |
6b69afc4 JB |
11037 | |
11038 | observer_attach_executable_changed (ada_executable_changed_observer); | |
14f9c5c9 | 11039 | } |