OSDN Git Service

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