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