OSDN Git Service

* objc/Make-lang.in: Update copyright.
[pf3gnuchains/gcc-fork.git] / gcc / objc / objc-act.h
1 /* Declarations for objc-act.c.
2    Copyright (C) 1990, 2000, 2001 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC 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, or (at your option)
9 any later version.
10
11 GNU CC 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 GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 #ifndef GCC_OBJC_ACT_H
22 #define GCC_OBJC_ACT_H
23
24 /*** Public Interface (procedures) ***/
25
26 const char *objc_init                           PARAMS ((const char *));
27 int objc_decode_option                          PARAMS ((int, char **));
28
29 /* used by yyparse */
30
31 void finish_file                                PARAMS ((void));
32 tree start_class                                PARAMS ((enum tree_code, tree, tree, tree));
33 tree continue_class                             PARAMS ((tree));
34 void finish_class                               PARAMS ((tree));
35 void start_method_def                           PARAMS ((tree));
36 void continue_method_def                        PARAMS ((void));
37 void finish_method_def                          PARAMS ((void));
38 tree start_protocol                             PARAMS ((enum tree_code, tree, tree));
39 void finish_protocol                            PARAMS ((tree));
40 void add_objc_decls                             PARAMS ((void));
41
42 tree is_ivar                                    PARAMS ((tree, tree));
43 int is_private                                  PARAMS ((tree));
44 int is_public                                   PARAMS ((tree, tree));
45 tree add_instance_variable                      PARAMS ((tree, int, tree, tree, tree));
46 tree add_class_method                           PARAMS ((tree, tree));
47 tree add_instance_method                        PARAMS ((tree, tree));
48 tree get_super_receiver                         PARAMS ((void));
49 tree get_class_ivars                            PARAMS ((tree));
50 tree get_class_reference                        PARAMS ((tree));
51 tree get_static_reference                       PARAMS ((tree, tree));
52 tree get_object_reference                       PARAMS ((tree));
53 tree build_message_expr                         PARAMS ((tree));
54 tree finish_message_expr                        PARAMS ((tree, tree, tree));
55 tree build_selector_expr                        PARAMS ((tree));
56 tree build_ivar_reference                       PARAMS ((tree));
57 tree build_keyword_decl                         PARAMS ((tree, tree, tree));
58 tree build_method_decl                          PARAMS ((enum tree_code, tree, tree, tree));
59 tree build_protocol_expr                        PARAMS ((tree));
60 tree build_objc_string_object                   PARAMS ((tree));
61
62 void objc_declare_alias                         PARAMS ((tree, tree));
63 void objc_declare_class                         PARAMS ((tree));
64 void objc_declare_protocols                     PARAMS ((tree));
65
66 extern int objc_receiver_context;
67
68 /* the following routines are used to implement statically typed objects */
69
70 int objc_comptypes                              PARAMS ((tree, tree, int));
71 void objc_check_decl                            PARAMS ((tree));
72
73 /* NeXT extensions */
74
75 tree build_encode_expr                          PARAMS ((tree));
76
77 /* Objective-C structures */
78
79 /* KEYWORD_DECL */
80 #define KEYWORD_KEY_NAME(DECL) ((DECL)->decl.name)
81 #define KEYWORD_ARG_NAME(DECL) ((DECL)->decl.arguments)
82
83 /* INSTANCE_METHOD_DECL, CLASS_METHOD_DECL */
84 #define METHOD_SEL_NAME(DECL) ((DECL)->decl.name)
85 #define METHOD_SEL_ARGS(DECL) ((DECL)->decl.arguments)
86 #define METHOD_ADD_ARGS(DECL) ((DECL)->decl.result)
87 #define METHOD_DEFINITION(DECL) ((DECL)->decl.initial)
88 #define METHOD_ENCODING(DECL) ((DECL)->decl.context)
89
90 /* CLASS_INTERFACE_TYPE, CLASS_IMPLEMENTATION_TYPE,
91    CATEGORY_INTERFACE_TYPE, CATEGORY_IMPLEMENTATION_TYPE,
92    PROTOCOL_INTERFACE_TYPE */
93 #define CLASS_NAME(CLASS) ((CLASS)->type.name)
94 #define CLASS_SUPER_NAME(CLASS) ((CLASS)->type.context)
95 #define CLASS_IVARS(CLASS) TREE_VEC_ELT (TYPE_BINFO (CLASS), 0)
96 #define CLASS_RAW_IVARS(CLASS) TREE_VEC_ELT (TYPE_BINFO (CLASS), 1)
97 #define CLASS_NST_METHODS(CLASS) ((CLASS)->type.minval)
98 #define CLASS_CLS_METHODS(CLASS) ((CLASS)->type.maxval)
99 #define CLASS_STATIC_TEMPLATE(CLASS) TREE_VEC_ELT (TYPE_BINFO (CLASS), 2)
100 #define CLASS_CATEGORY_LIST(CLASS) TREE_VEC_ELT (TYPE_BINFO (CLASS), 3)
101 #define CLASS_PROTOCOL_LIST(CLASS) TREE_VEC_ELT (TYPE_BINFO (CLASS), 4)
102 #define PROTOCOL_NAME(CLASS) ((CLASS)->type.name)
103 #define PROTOCOL_LIST(CLASS) TREE_VEC_ELT (TYPE_BINFO (CLASS), 0)
104 #define PROTOCOL_NST_METHODS(CLASS) ((CLASS)->type.minval)
105 #define PROTOCOL_CLS_METHODS(CLASS) ((CLASS)->type.maxval)
106 #define PROTOCOL_FORWARD_DECL(CLASS) TREE_VEC_ELT (TYPE_BINFO (CLASS), 1)
107 #define PROTOCOL_DEFINED(CLASS) TREE_USED (CLASS)
108 #define TYPE_PROTOCOL_LIST(TYPE) ((TYPE)->type.context)
109
110 /* Set by `continue_class' and checked by `is_public'.  */
111
112 #define TREE_STATIC_TEMPLATE(record_type) (TREE_PUBLIC (record_type))
113 #define TYPED_OBJECT(type) \
114        (TREE_CODE (type) == RECORD_TYPE && TREE_STATIC_TEMPLATE (type))
115
116 /* Define the Objective-C or Objective-C++ language-specific tree codes.  */
117
118 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) SYM,
119 enum objc_tree_code {
120 #ifdef OBJCPLUS
121   LAST_BASE_TREE_CODE = LAST_CPLUS_TREE_CODE,
122 #else
123   LAST_BASE_TREE_CODE = LAST_C_TREE_CODE,
124 #endif
125 #include "objc-tree.def"
126   LAST_OBJC_TREE_CODE
127 };
128 #undef DEFTREECODE
129
130 /* Hash tables to manage the global pool of method prototypes.  */
131
132 typedef struct hashed_entry     *hash;
133 typedef struct hashed_attribute *attr;
134
135 struct hashed_attribute
136 {
137   attr next;
138   tree value;
139 };
140 struct hashed_entry
141 {
142   attr list;
143   hash next;
144   tree key;
145 };
146
147 extern hash *nst_method_hash_list;
148 extern hash *cls_method_hash_list;
149
150 #define HASH_ALLOC_LIST_SIZE    170
151 #define ATTR_ALLOC_LIST_SIZE    170
152 #define SIZEHASHTABLE           257
153
154 /* Objective-C/Objective-C++ @implementation list.  */
155
156 struct imp_entry
157 {
158   struct imp_entry *next;
159   tree imp_context;
160   tree imp_template;
161   tree class_decl;              /* _OBJC_CLASS_<my_name>; */
162   tree meta_decl;               /* _OBJC_METACLASS_<my_name>; */
163 };
164
165 extern struct imp_entry *imp_list;
166 extern int imp_count;   /* `@implementation' */
167 extern int cat_count;   /* `@category' */
168
169 /* Objective-C/Objective-C++ global tree enumeration.  */
170
171 enum objc_tree_index
172 {
173     OCTI_STATIC_NST,
174     OCTI_STATIC_NST_DECL,
175     OCTI_SELF_ID,
176     OCTI_UCMD_ID,
177     OCTI_UNUSED_LIST,
178     OCTI_ELLIPSIS_NODE,
179
180     OCTI_SELF_DECL,
181     OCTI_UMSG_DECL,
182     OCTI_UMSG_SUPER_DECL,
183     OCTI_GET_CLASS_DECL,
184     OCTI_GET_MCLASS_DECL,
185     OCTI_SUPER_TYPE,
186     OCTI_SEL_TYPE,
187     OCTI_ID_TYPE,
188     OCTI_CLS_TYPE,
189     OCTI_NST_TYPE,
190     OCTI_PROTO_TYPE,
191
192     OCTI_CLS_CHAIN,
193     OCTI_ALIAS_CHAIN,
194     OCTI_INTF_CHAIN,
195     OCTI_PROTO_CHAIN,
196     OCTI_IMPL_CHAIN,
197     OCTI_CLS_REF_CHAIN,
198     OCTI_SEL_REF_CHAIN,
199     OCTI_IVAR_CHAIN,
200     OCTI_CLS_NAMES_CHAIN,
201     OCTI_METH_VAR_NAMES_CHAIN,
202     OCTI_METH_VAR_TYPES_CHAIN,
203
204     OCTI_SYMBOLS_DECL,
205     OCTI_NST_VAR_DECL,
206     OCTI_CLS_VAR_DECL,
207     OCTI_NST_METH_DECL,
208     OCTI_CLS_METH_DECL,
209     OCTI_CLS_DECL,
210     OCTI_MCLS_DECL,
211     OCTI_SEL_TABLE_DECL,
212     OCTI_MODULES_DECL,
213     OCTI_STRG_DECL,
214
215     OCTI_INTF_CTX,
216     OCTI_IMPL_CTX,
217     OCTI_METH_CTX,
218     OCTI_IVAR_CTX,
219
220     OCTI_IMPL_TEMPL,
221     OCTI_CLS_TEMPL,
222     OCTI_CAT_TEMPL,
223     OCTI_UPRIV_REC,
224     OCTI_PROTO_TEMPL,
225     OCTI_SEL_TEMPL,
226     OCTI_UCLS_SUPER_REF,
227     OCTI_UUCLS_SUPER_REF,
228     OCTI_METH_TEMPL,
229     OCTI_IVAR_TEMPL,
230     OCTI_SYMTAB_TEMPL,
231     OCTI_MODULE_TEMPL,
232     OCTI_SUPER_TEMPL,
233     OCTI_OBJ_REF,
234     OCTI_METH_PROTO_TEMPL,
235     OCTI_FUNCTION1_TEMPL,
236     OCTI_FUNCTION2_TEMPL,
237
238     OCTI_OBJ_ID,
239     OCTI_CLS_ID,
240     OCTI_ID_ID,
241     OCTI_CNST_STR_ID,
242     OCTI_CNST_STR_TYPE,
243     OCTI_CNST_STR_GLOB_ID,
244     OCTI_STRING_CLASS_DECL,
245     OCTI_SUPER_DECL,
246     
247     OCTI_MAX
248 };
249
250 extern tree objc_global_trees[OCTI_MAX];
251
252 /* List of classes with list of their static instances.  */
253 #define objc_static_instances   objc_global_trees[OCTI_STATIC_NST]
254
255 /* The declaration of the array administrating the static instances.  */
256 #define static_instances_decl   objc_global_trees[OCTI_STATIC_NST_DECL]
257
258 /* Some commonly used instances of "identifier_node".  */
259
260 #define self_id                 objc_global_trees[OCTI_SELF_ID]
261 #define ucmd_id                 objc_global_trees[OCTI_UCMD_ID]
262 #define unused_list             objc_global_trees[OCTI_UNUSED_LIST]
263 #define objc_ellipsis_node      objc_global_trees[OCTI_ELLIPSIS_NODE]
264
265 #define self_decl               objc_global_trees[OCTI_SELF_DECL]
266 #define umsg_decl               objc_global_trees[OCTI_UMSG_DECL]
267 #define umsg_super_decl         objc_global_trees[OCTI_UMSG_SUPER_DECL]
268 #define objc_get_class_decl     objc_global_trees[OCTI_GET_CLASS_DECL]
269 #define objc_get_meta_class_decl                        \
270                                 objc_global_trees[OCTI_GET_MCLASS_DECL]
271
272 #define super_type              objc_global_trees[OCTI_SUPER_TYPE]
273 #define selector_type           objc_global_trees[OCTI_SEL_TYPE]
274 #define id_type                 objc_global_trees[OCTI_ID_TYPE]
275 #define objc_class_type         objc_global_trees[OCTI_CLS_TYPE]
276 #define instance_type           objc_global_trees[OCTI_NST_TYPE]
277 #define protocol_type           objc_global_trees[OCTI_PROTO_TYPE]
278
279 /* Type checking macros.  */
280
281 #define IS_ID(TYPE) \
282   (TYPE_MAIN_VARIANT (TYPE) == TYPE_MAIN_VARIANT (id_type))
283 #define IS_PROTOCOL_QUALIFIED_ID(TYPE) \
284   (IS_ID (TYPE) && TYPE_PROTOCOL_LIST (TYPE))
285 #define IS_SUPER(TYPE) \
286   (super_type && TYPE_MAIN_VARIANT (TYPE) == TYPE_MAIN_VARIANT (super_type))
287
288 #define class_chain             objc_global_trees[OCTI_CLS_CHAIN]
289 #define alias_chain             objc_global_trees[OCTI_ALIAS_CHAIN]
290 #define interface_chain         objc_global_trees[OCTI_INTF_CHAIN]
291 #define protocol_chain          objc_global_trees[OCTI_PROTO_CHAIN]
292 #define implemented_classes     objc_global_trees[OCTI_IMPL_CHAIN]
293
294 /* Chains to manage selectors that are referenced and defined in the
295    module.  */
296
297 #define cls_ref_chain           objc_global_trees[OCTI_CLS_REF_CHAIN]   /* Classes referenced.  */
298 #define sel_ref_chain           objc_global_trees[OCTI_SEL_REF_CHAIN]   /* Selectors referenced.  */
299 #define objc_ivar_chain         objc_global_trees[OCTI_IVAR_CHAIN]
300
301 /* Chains to manage uniquing of strings.  */
302
303 #define class_names_chain       objc_global_trees[OCTI_CLS_NAMES_CHAIN]
304 #define meth_var_names_chain    objc_global_trees[OCTI_METH_VAR_NAMES_CHAIN]
305 #define meth_var_types_chain    objc_global_trees[OCTI_METH_VAR_TYPES_CHAIN]
306
307
308 /* Backend data declarations.  */
309
310 #define UOBJC_SYMBOLS_decl              objc_global_trees[OCTI_SYMBOLS_DECL]
311 #define UOBJC_INSTANCE_VARIABLES_decl   objc_global_trees[OCTI_NST_VAR_DECL]
312 #define UOBJC_CLASS_VARIABLES_decl      objc_global_trees[OCTI_CLS_VAR_DECL]
313 #define UOBJC_INSTANCE_METHODS_decl     objc_global_trees[OCTI_NST_METH_DECL]
314 #define UOBJC_CLASS_METHODS_decl        objc_global_trees[OCTI_CLS_METH_DECL]
315 #define UOBJC_CLASS_decl                objc_global_trees[OCTI_CLS_DECL]
316 #define UOBJC_METACLASS_decl            objc_global_trees[OCTI_MCLS_DECL]
317 #define UOBJC_SELECTOR_TABLE_decl       objc_global_trees[OCTI_SEL_TABLE_DECL]
318 #define UOBJC_MODULES_decl              objc_global_trees[OCTI_MODULES_DECL]
319 #define UOBJC_STRINGS_decl              objc_global_trees[OCTI_STRG_DECL]
320
321 /* The following are used when compiling a class implementation.
322    implementation_template will normally be an interface, however if
323    none exists this will be equal to objc_implementation_context...it is
324    set in start_class.  */
325
326 #define objc_interface_context          objc_global_trees[OCTI_INTF_CTX]
327 #define objc_implementation_context     objc_global_trees[OCTI_IMPL_CTX]
328 #define objc_method_context             objc_global_trees[OCTI_METH_CTX]
329 #define objc_ivar_context               objc_global_trees[OCTI_IVAR_CTX]
330
331 #define implementation_template objc_global_trees[OCTI_IMPL_TEMPL]
332 #define objc_class_template     objc_global_trees[OCTI_CLS_TEMPL]
333 #define objc_category_template  objc_global_trees[OCTI_CAT_TEMPL]
334 #define uprivate_record         objc_global_trees[OCTI_UPRIV_REC]
335 #define objc_protocol_template  objc_global_trees[OCTI_PROTO_TEMPL]
336 #define objc_selector_template  objc_global_trees[OCTI_SEL_TEMPL]
337 #define ucls_super_ref          objc_global_trees[OCTI_UCLS_SUPER_REF]
338 #define uucls_super_ref         objc_global_trees[OCTI_UUCLS_SUPER_REF]
339
340 #define objc_method_template    objc_global_trees[OCTI_METH_TEMPL]
341 #define objc_ivar_template      objc_global_trees[OCTI_IVAR_TEMPL]
342 #define objc_symtab_template    objc_global_trees[OCTI_SYMTAB_TEMPL]
343 #define objc_module_template    objc_global_trees[OCTI_MODULE_TEMPL]
344 #define objc_super_template     objc_global_trees[OCTI_SUPER_TEMPL]
345 #define objc_object_reference   objc_global_trees[OCTI_OBJ_REF]
346 #define objc_method_prototype_template          \
347                                 objc_global_trees[OCTI_METH_PROTO_TEMPL]
348 #define function1_template      objc_global_trees[OCTI_FUNCTION1_TEMPL]
349 #define function2_template      objc_global_trees[OCTI_FUNCTION2_TEMPL]
350                                 
351 #define objc_object_id          objc_global_trees[OCTI_OBJ_ID]
352 #define objc_class_id           objc_global_trees[OCTI_CLS_ID]
353 #define objc_id_id              objc_global_trees[OCTI_ID_ID]
354 #define constant_string_id      objc_global_trees[OCTI_CNST_STR_ID]
355 #define constant_string_type    objc_global_trees[OCTI_CNST_STR_TYPE]
356 #define constant_string_global_id               \
357                                 objc_global_trees[OCTI_CNST_STR_GLOB_ID]
358 #define string_class_decl       objc_global_trees[OCTI_STRING_CLASS_DECL]
359 #define UOBJC_SUPER_decl        objc_global_trees[OCTI_SUPER_DECL]
360
361 #endif /* GCC_OBJC_ACT_H */