Commit | Line | Data |
---|---|---|
14f9c5c9 AS |
1 | /* Ada language support definitions for GDB, the GNU debugger. |
2 | Copyright 1992, 1997 Free Software Foundation, Inc. | |
3 | ||
4 | This file is part of GDB. | |
5 | ||
6 | This program is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2 of the License, or | |
9 | (at your option) any later version. | |
10 | ||
11 | This program is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with this program; if not, write to the Free Software | |
18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | ||
20 | #if !defined (ADA_LANG_H) | |
21 | #define ADA_LANG_H 1 | |
22 | ||
da3331ec AC |
23 | struct partial_symbol; |
24 | ||
14f9c5c9 AS |
25 | #include "value.h" |
26 | #include "gdbtypes.h" | |
27 | ||
fe898f56 DC |
28 | struct block; |
29 | ||
b276f1bb AC |
30 | /* A macro to reorder the bytes of an address depending on the |
31 | endiannes of the target. */ | |
32 | #define EXTRACT_ADDRESS(x) ((void *) extract_unsigned_integer (&(x), sizeof (x))) | |
14f9c5c9 AS |
33 | /* A macro to reorder the bytes of an int depending on the endiannes |
34 | of the target */ | |
35 | #define EXTRACT_INT(x) ((int) extract_signed_integer (&(x), sizeof (x))) | |
36 | ||
37 | /* Chain of cleanups for arguments of OP_UNRESOLVED_VALUE names. Created in | |
38 | yyparse and freed in ada_resolve. */ | |
d2e4a39e | 39 | extern struct cleanup *unresolved_names; |
14f9c5c9 AS |
40 | |
41 | /* Corresponding mangled/demangled names and opcodes for Ada user-definable | |
42 | operators. */ | |
d2e4a39e AS |
43 | struct ada_opname_map |
44 | { | |
45 | const char *mangled; | |
46 | const char *demangled; | |
14f9c5c9 AS |
47 | enum exp_opcode op; |
48 | }; | |
49 | ||
50 | /* Table of Ada operators in mangled and demangled forms. */ | |
51 | /* Defined in ada-lang.c */ | |
52 | extern const struct ada_opname_map ada_opname_table[]; | |
53 | ||
54 | /* The maximum number of tasks known to the Ada runtime */ | |
55 | extern const int MAX_NUMBER_OF_KNOWN_TASKS; | |
56 | ||
57 | /* Identifiers for Ada attributes that need special processing. Be sure | |
58 | to update the table attribute_names in ada-lang.c whenever you change this. | |
59 | */ | |
60 | ||
d2e4a39e AS |
61 | enum ada_attribute |
62 | { | |
14f9c5c9 AS |
63 | /* Invalid attribute for error checking. */ |
64 | ATR_INVALID, | |
65 | ||
66 | ATR_FIRST, | |
67 | ATR_LAST, | |
68 | ATR_LENGTH, | |
69 | ATR_IMAGE, | |
70 | ATR_IMG, | |
71 | ATR_MAX, | |
72 | ATR_MIN, | |
73 | ATR_MODULUS, | |
74 | ATR_POS, | |
75 | ATR_SIZE, | |
76 | ATR_TAG, | |
77 | ATR_VAL, | |
78 | ||
79 | /* Dummy last attribute. */ | |
80 | ATR_END | |
81 | }; | |
82 | ||
d2e4a39e AS |
83 | enum task_states |
84 | { | |
14f9c5c9 AS |
85 | Unactivated, |
86 | Runnable, | |
87 | Terminated, | |
88 | Activator_Sleep, | |
89 | Acceptor_Sleep, | |
90 | Entry_Caller_Sleep, | |
91 | Async_Select_Sleep, | |
92 | Delay_Sleep, | |
93 | Master_Completion_Sleep, | |
94 | Master_Phase_2_Sleep | |
95 | }; | |
96 | ||
97 | extern char *ada_task_states[]; | |
98 | ||
d2e4a39e AS |
99 | typedef struct |
100 | { | |
14f9c5c9 AS |
101 | char *P_ARRAY; |
102 | int *P_BOUNDS; | |
d2e4a39e AS |
103 | } |
104 | fat_string; | |
14f9c5c9 | 105 | |
d2e4a39e AS |
106 | typedef struct entry_call |
107 | { | |
14f9c5c9 | 108 | void *self; |
d2e4a39e AS |
109 | } |
110 | *entry_call_link; | |
14f9c5c9 AS |
111 | |
112 | struct task_fields | |
113 | { | |
114 | int entry_num; | |
115 | #if (defined (VXWORKS_TARGET) || !defined (i386)) \ | |
116 | && !(defined (VXWORKS_TARGET) && defined (M68K_TARGET)) | |
117 | int pad1; | |
118 | #endif | |
119 | char state; | |
120 | #if (defined (VXWORKS_TARGET) && defined (M68K_TARGET)) | |
121 | char pad_8bits; | |
122 | #endif | |
123 | void *parent; | |
124 | int priority; | |
125 | int current_priority; | |
126 | fat_string image; | |
127 | entry_call_link call; | |
128 | #if (defined (sun) && defined (__SVR4)) && !defined (VXWORKS_TARGET) | |
129 | int pad2; | |
130 | unsigned thread; | |
131 | unsigned lwp; | |
132 | #else | |
133 | void *thread; | |
134 | void *lwp; | |
135 | #endif | |
136 | } | |
137 | #if (defined (VXWORKS_TARGET) && defined (M68K_TARGET)) | |
138 | __attribute__ ((packed)) | |
139 | #endif | |
d2e4a39e | 140 | ; |
14f9c5c9 AS |
141 | |
142 | struct task_entry | |
143 | { | |
144 | void *task_id; | |
145 | int task_num; | |
146 | int known_tasks_index; | |
147 | struct task_entry *next_task; | |
148 | void *thread; | |
149 | void *lwp; | |
150 | int stack_per; | |
151 | }; | |
152 | ||
d2e4a39e AS |
153 | extern struct type *builtin_type_ada_int; |
154 | extern struct type *builtin_type_ada_short; | |
155 | extern struct type *builtin_type_ada_long; | |
156 | extern struct type *builtin_type_ada_long_long; | |
157 | extern struct type *builtin_type_ada_char; | |
158 | extern struct type *builtin_type_ada_float; | |
159 | extern struct type *builtin_type_ada_double; | |
160 | extern struct type *builtin_type_ada_long_double; | |
161 | extern struct type *builtin_type_ada_natural; | |
162 | extern struct type *builtin_type_ada_positive; | |
163 | extern struct type *builtin_type_ada_system_address; | |
14f9c5c9 AS |
164 | |
165 | /* Assuming V points to an array of S objects, make sure that it contains at | |
166 | least M objects, updating V and S as necessary. */ | |
167 | ||
168 | #define GROW_VECT(v, s, m) \ | |
169 | if ((s) < (m)) grow_vect ((void**) &(v), &(s), (m), sizeof(*(v))); | |
170 | ||
d2e4a39e | 171 | extern void grow_vect (void **, size_t *, size_t, int); |
14f9c5c9 AS |
172 | |
173 | extern int ada_parse (void); /* Defined in ada-exp.y */ | |
174 | ||
175 | extern void ada_error (char *); /* Defined in ada-exp.y */ | |
176 | ||
d2e4a39e AS |
177 | /* Defined in ada-typeprint.c */ |
178 | extern void ada_print_type (struct type *, char *, struct ui_file *, int, | |
179 | int); | |
14f9c5c9 | 180 | |
d2e4a39e AS |
181 | extern int ada_val_print (struct type *, char *, int, CORE_ADDR, |
182 | struct ui_file *, int, int, int, | |
183 | enum val_prettyprint); | |
14f9c5c9 | 184 | |
d2e4a39e | 185 | extern int ada_value_print (struct value *, struct ui_file *, int, |
14f9c5c9 AS |
186 | enum val_prettyprint); |
187 | ||
188 | /* Defined in ada-lang.c */ | |
189 | ||
d2e4a39e AS |
190 | extern struct value *value_from_contents_and_address (struct type *, char *, |
191 | CORE_ADDR); | |
14f9c5c9 AS |
192 | |
193 | extern void ada_emit_char (int, struct ui_file *, int, int); | |
194 | ||
d2e4a39e | 195 | extern void ada_printchar (int, struct ui_file *); |
14f9c5c9 | 196 | |
d2e4a39e | 197 | extern void ada_printstr (struct ui_file *, char *, unsigned int, int, int); |
14f9c5c9 | 198 | |
d2e4a39e AS |
199 | extern void ada_convert_actuals (struct value *, int, struct value **, |
200 | CORE_ADDR *); | |
14f9c5c9 | 201 | |
d2e4a39e AS |
202 | extern struct value *ada_value_subscript (struct value *, int, |
203 | struct value **); | |
14f9c5c9 | 204 | |
d2e4a39e | 205 | extern struct type *ada_array_element_type (struct type *, int); |
14f9c5c9 | 206 | |
d2e4a39e | 207 | extern int ada_array_arity (struct type *); |
14f9c5c9 | 208 | |
d2e4a39e | 209 | struct type *ada_type_of_array (struct value *, int); |
14f9c5c9 | 210 | |
d2e4a39e | 211 | extern struct value *ada_coerce_to_simple_array (struct value *); |
14f9c5c9 | 212 | |
d2e4a39e | 213 | extern struct value *ada_coerce_to_simple_array_ptr (struct value *); |
14f9c5c9 | 214 | |
d2e4a39e | 215 | extern int ada_is_simple_array (struct type *); |
14f9c5c9 | 216 | |
d2e4a39e | 217 | extern int ada_is_array_descriptor (struct type *); |
14f9c5c9 | 218 | |
d2e4a39e | 219 | extern int ada_is_bogus_array_descriptor (struct type *); |
14f9c5c9 | 220 | |
d2e4a39e | 221 | extern struct type *ada_index_type (struct type *, int); |
14f9c5c9 | 222 | |
d2e4a39e | 223 | extern struct value *ada_array_bound (struct value *, int, int); |
14f9c5c9 | 224 | |
d2e4a39e | 225 | extern int ada_lookup_symbol_list (const char *, struct block *, |
176620f1 | 226 | domain_enum, struct symbol ***, |
d2e4a39e | 227 | struct block ***); |
14f9c5c9 | 228 | |
d2e4a39e | 229 | extern char *ada_fold_name (const char *); |
14f9c5c9 | 230 | |
d2e4a39e | 231 | extern struct symbol *ada_lookup_symbol (const char *, struct block *, |
176620f1 | 232 | domain_enum); |
14f9c5c9 | 233 | |
d2e4a39e | 234 | extern struct minimal_symbol *ada_lookup_minimal_symbol (const char *); |
14f9c5c9 | 235 | |
d2e4a39e | 236 | extern void ada_resolve (struct expression **, struct type *); |
14f9c5c9 | 237 | |
d2e4a39e AS |
238 | extern int ada_resolve_function (struct symbol **, struct block **, int, |
239 | struct value **, int, const char *, | |
240 | struct type *); | |
14f9c5c9 | 241 | |
d2e4a39e | 242 | extern void ada_fill_in_ada_prototype (struct symbol *); |
14f9c5c9 | 243 | |
d2e4a39e | 244 | extern int user_select_syms (struct symbol **, struct block **, int, int); |
14f9c5c9 | 245 | |
d2e4a39e | 246 | extern int get_selections (int *, int, int, int, char *); |
14f9c5c9 | 247 | |
d2e4a39e | 248 | extern char *ada_start_decode_line_1 (char *); |
14f9c5c9 | 249 | |
d2e4a39e AS |
250 | extern struct symtabs_and_lines ada_finish_decode_line_1 (char **, |
251 | struct symtab *, | |
252 | int, char ***); | |
14f9c5c9 | 253 | |
d2e4a39e | 254 | extern int ada_scan_number (const char *, int, LONGEST *, int *); |
14f9c5c9 | 255 | |
d2e4a39e | 256 | extern struct type *ada_parent_type (struct type *); |
14f9c5c9 | 257 | |
d2e4a39e | 258 | extern int ada_is_ignored_field (struct type *, int); |
14f9c5c9 | 259 | |
d2e4a39e | 260 | extern int ada_is_packed_array_type (struct type *); |
14f9c5c9 | 261 | |
d2e4a39e AS |
262 | extern struct value *ada_value_primitive_packed_val (struct value *, char *, |
263 | long, int, int, | |
264 | struct type *); | |
14f9c5c9 | 265 | |
d2e4a39e | 266 | extern struct type *ada_coerce_to_simple_array_type (struct type *); |
14f9c5c9 | 267 | |
d2e4a39e | 268 | extern int ada_is_character_type (struct type *); |
14f9c5c9 | 269 | |
d2e4a39e | 270 | extern int ada_is_string_type (struct type *); |
14f9c5c9 | 271 | |
d2e4a39e | 272 | extern int ada_is_tagged_type (struct type *); |
14f9c5c9 | 273 | |
d2e4a39e | 274 | extern struct type *ada_tag_type (struct value *); |
14f9c5c9 | 275 | |
d2e4a39e | 276 | extern struct value *ada_value_tag (struct value *); |
14f9c5c9 | 277 | |
d2e4a39e | 278 | extern int ada_is_parent_field (struct type *, int); |
14f9c5c9 | 279 | |
d2e4a39e | 280 | extern int ada_is_wrapper_field (struct type *, int); |
14f9c5c9 | 281 | |
d2e4a39e | 282 | extern int ada_is_variant_part (struct type *, int); |
14f9c5c9 | 283 | |
d2e4a39e | 284 | extern struct type *ada_variant_discrim_type (struct type *, struct type *); |
14f9c5c9 | 285 | |
d2e4a39e | 286 | extern int ada_is_others_clause (struct type *, int); |
14f9c5c9 | 287 | |
d2e4a39e | 288 | extern int ada_in_variant (LONGEST, struct type *, int); |
14f9c5c9 | 289 | |
d2e4a39e | 290 | extern char *ada_variant_discrim_name (struct type *); |
14f9c5c9 | 291 | |
d2e4a39e AS |
292 | extern struct type *ada_lookup_struct_elt_type (struct type *, char *, int, |
293 | int *); | |
14f9c5c9 | 294 | |
d2e4a39e | 295 | extern struct value *ada_value_struct_elt (struct value *, char *, char *); |
14f9c5c9 | 296 | |
d2e4a39e AS |
297 | extern struct value *ada_search_struct_field (char *, struct value *, int, |
298 | struct type *); | |
14f9c5c9 | 299 | |
d2e4a39e | 300 | extern int ada_is_aligner_type (struct type *); |
14f9c5c9 | 301 | |
d2e4a39e | 302 | extern struct type *ada_aligned_type (struct type *); |
14f9c5c9 | 303 | |
d2e4a39e | 304 | extern char *ada_aligned_value_addr (struct type *, char *); |
14f9c5c9 | 305 | |
d2e4a39e | 306 | extern const char *ada_attribute_name (int); |
14f9c5c9 | 307 | |
d2e4a39e | 308 | extern int ada_is_fixed_point_type (struct type *); |
14f9c5c9 | 309 | |
d2e4a39e | 310 | extern DOUBLEST ada_delta (struct type *); |
14f9c5c9 AS |
311 | |
312 | extern DOUBLEST ada_fixed_to_float (struct type *, LONGEST); | |
313 | ||
d2e4a39e | 314 | extern LONGEST ada_float_to_fixed (struct type *, DOUBLEST); |
14f9c5c9 | 315 | |
d2e4a39e | 316 | extern int ada_is_vax_floating_type (struct type *); |
14f9c5c9 | 317 | |
d2e4a39e | 318 | extern int ada_vax_float_type_suffix (struct type *); |
14f9c5c9 | 319 | |
d2e4a39e | 320 | extern struct value *ada_vax_float_print_function (struct type *); |
14f9c5c9 | 321 | |
d2e4a39e | 322 | extern struct type *ada_system_address_type (void); |
14f9c5c9 | 323 | |
d2e4a39e | 324 | extern int ada_which_variant_applies (struct type *, struct type *, char *); |
14f9c5c9 | 325 | |
d2e4a39e AS |
326 | extern struct value *ada_to_fixed_value (struct type *, char *, CORE_ADDR, |
327 | struct value *); | |
14f9c5c9 | 328 | |
d2e4a39e AS |
329 | extern struct type *ada_to_fixed_type (struct type *, char *, CORE_ADDR, |
330 | struct value *); | |
14f9c5c9 | 331 | |
d2e4a39e | 332 | extern int ada_name_prefix_len (const char *); |
14f9c5c9 | 333 | |
d2e4a39e | 334 | extern char *ada_type_name (struct type *); |
14f9c5c9 | 335 | |
d2e4a39e AS |
336 | extern struct type *ada_find_parallel_type (struct type *, |
337 | const char *suffix); | |
14f9c5c9 | 338 | |
d2e4a39e | 339 | extern LONGEST get_int_var_value (char *, char *, int *); |
14f9c5c9 | 340 | |
d2e4a39e | 341 | extern struct type *ada_find_any_type (const char *name); |
14f9c5c9 | 342 | |
d2e4a39e | 343 | extern int ada_prefer_type (struct type *, struct type *); |
14f9c5c9 | 344 | |
d2e4a39e | 345 | extern struct type *ada_get_base_type (struct type *); |
14f9c5c9 | 346 | |
d2e4a39e | 347 | extern struct type *ada_completed_type (struct type *); |
14f9c5c9 | 348 | |
d2e4a39e | 349 | extern char *ada_mangle (const char *); |
14f9c5c9 | 350 | |
d2e4a39e | 351 | extern const char *ada_enum_name (const char *); |
14f9c5c9 | 352 | |
d2e4a39e | 353 | extern int ada_is_modular_type (struct type *); |
14f9c5c9 | 354 | |
d2e4a39e | 355 | extern LONGEST ada_modulus (struct type *); |
14f9c5c9 | 356 | |
d2e4a39e | 357 | extern struct value *ada_value_ind (struct value *); |
14f9c5c9 | 358 | |
d2e4a39e | 359 | extern void ada_print_scalar (struct type *, LONGEST, struct ui_file *); |
14f9c5c9 | 360 | |
d2e4a39e | 361 | extern int ada_is_range_type_name (const char *); |
14f9c5c9 | 362 | |
d2e4a39e | 363 | extern const char *ada_renaming_type (struct type *); |
14f9c5c9 | 364 | |
d2e4a39e | 365 | extern int ada_is_object_renaming (struct symbol *); |
14f9c5c9 | 366 | |
d2e4a39e | 367 | extern const char *ada_simple_renamed_entity (struct symbol *); |
14f9c5c9 | 368 | |
d2e4a39e | 369 | extern char *ada_breakpoint_rewrite (char *, int *); |
14f9c5c9 AS |
370 | |
371 | /* Tasking-related: ada-tasks.c */ | |
372 | ||
373 | extern int valid_task_id (int); | |
374 | ||
d2e4a39e | 375 | extern int get_current_task (void); |
14f9c5c9 AS |
376 | |
377 | extern void init_task_list (void); | |
378 | ||
d2e4a39e | 379 | extern void *get_self_id (void); |
14f9c5c9 AS |
380 | |
381 | extern int get_current_task (void); | |
382 | ||
d2e4a39e | 383 | extern int get_entry_number (void *); |
14f9c5c9 AS |
384 | |
385 | extern void ada_report_exception_break (struct breakpoint *); | |
386 | ||
d2e4a39e | 387 | extern int ada_maybe_exception_partial_symbol (struct partial_symbol *sym); |
14f9c5c9 | 388 | |
d2e4a39e | 389 | extern int ada_is_exception_sym (struct symbol *sym); |
14f9c5c9 AS |
390 | |
391 | ||
392 | #endif |