OSDN Git Service

Update Copyright years for files modified in 2010.
[pf3gnuchains/gcc-fork.git] / gcc / objc / objc-act.h
1 /* Declarations for objc-act.c.
2    Copyright (C) 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009,
3    2010 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3.  If not see
19 <http://www.gnu.org/licenses/>.  */
20
21
22 #ifndef GCC_OBJC_ACT_H
23 #define GCC_OBJC_ACT_H
24
25 /*** Language hooks ***/
26
27 bool objc_init (void);
28 const char *objc_printable_name (tree, int);
29 tree objc_fold_obj_type_ref (tree, tree);
30 int objc_gimplify_expr (tree *, gimple_seq *, gimple_seq *);
31 tree objc_eh_runtime_type (tree);
32 tree objc_eh_personality (void);
33
34 /* NB: The remaining public functions are prototyped in c-common.h, for the
35    benefit of stub-objc.c and objc-act.c.  */
36
37 /* Objective-C structures */
38
39 #define CLASS_LANG_SLOT_ELTS            7
40 #define PROTOCOL_LANG_SLOT_ELTS         7
41 #define OBJC_INFO_SLOT_ELTS             2
42
43 /* KEYWORD_DECL */
44 #define KEYWORD_KEY_NAME(DECL) ((DECL)->decl_minimal.name)
45 #define KEYWORD_ARG_NAME(DECL) ((DECL)->decl_non_common.arguments)
46
47 /* INSTANCE_METHOD_DECL, CLASS_METHOD_DECL */
48 #define METHOD_SEL_NAME(DECL) ((DECL)->decl_minimal.name)
49 #define METHOD_SEL_ARGS(DECL) ((DECL)->decl_non_common.arguments)
50 #define METHOD_ADD_ARGS(DECL) ((DECL)->decl_non_common.result)
51 #define METHOD_ADD_ARGS_ELLIPSIS_P(DECL) ((DECL)->decl_common.lang_flag_0)
52 #define METHOD_DEFINITION(DECL) ((DECL)->decl_common.initial)
53 #define METHOD_ENCODING(DECL) ((DECL)->decl_minimal.context)
54 #define METHOD_TYPE_ATTRIBUTES(DECL) ((DECL)->decl_common.abstract_origin)
55 #define METHOD_PROPERTY_CONTEXT(DECL) ((DECL)->decl_common.size_unit)
56
57
58 /* PROPERTY_DECL.  A PROPERTY_DECL repesents a @property declaration
59    (when attached to the list of properties of an interface) or a
60    @synthesize or @dynamic declaration (when attached to the list of
61    properties of an implementation).  */
62
63 /* TREE_TYPE is the type (int, float, etc) of the property.  */
64
65 /* DECL_ARTIFICIAL is set to 1 if the PROPERTY_DECL is an artificial
66    property declaration created when the dot-syntax object.component
67    is used with no actual @property matching the component, but a
68    valid getter/setter.  */
69
70 /* PROPERTY_NAME is the name of the property.  */
71 #define PROPERTY_NAME(DECL) DECL_NAME(DECL)
72
73 /* PROPERTY_GETTER_NAME is the identifier of the getter method.  */
74 #define PROPERTY_GETTER_NAME(DECL) ((DECL)->decl_non_common.arguments)
75
76 /* PROPERTY_SETTER_NAME is the identifier of the setter method.  */
77 #define PROPERTY_SETTER_NAME(DECL) ((DECL)->decl_non_common.result)
78
79 /* PROPERTY_READONLY can be 0 or 1.  */
80 #define PROPERTY_READONLY(DECL) DECL_LANG_FLAG_0 (DECL)
81
82 /* PROPERTY_NONATOMIC can be 0 or 1.  */
83 #define PROPERTY_NONATOMIC(DECL) DECL_LANG_FLAG_1 (DECL)
84
85 typedef enum objc_property_assign_semantics {
86   OBJC_PROPERTY_ASSIGN = 1,
87   OBJC_PROPERTY_RETAIN = 2,
88   OBJC_PROPERTY_COPY = 3
89 } objc_property_assign_semantics;
90
91 /* PROPERTY_ASSIGN_SEMANTICS can be OBJC_PROPERTY_ASSIGN,
92    OBJC_PROPERTY_RETAIN or OBJC_PROPERTY_COPY.  We need an integer to
93    store it, so we hijack the alignment, that properties don't
94    have.  */
95 #define PROPERTY_ASSIGN_SEMANTICS(DECL) ((DECL)->decl_common.align)
96
97 /* PROPERTY_IVAR_NAME is the identifier of the instance variable.
98    This is set only if the PROPERTY_DECL represents a @synthesize;
99    otherwise, it is set to TREE_NULL.  */
100 #define PROPERTY_IVAR_NAME(DECL) ((DECL)->decl_common.initial)
101
102 /* PROPERTY_DYNAMIC can be 0 or 1.  This is 1 if the PROPERTY_DECL
103    represents a @dynamic; otherwise, it is set to 0.  */
104 #define PROPERTY_DYNAMIC(DECL) DECL_LANG_FLAG_2 (DECL)
105
106 /* PROPERTY_HAS_NO_GETTER can be 0 or 1.  Normally it is 0, but if
107    this is an artificial PROPERTY_DECL that we generate even without a
108    getter, it is set to 1.  */
109 #define PROPERTY_HAS_NO_GETTER(DECL) DECL_LANG_FLAG_3 (DECL)
110
111 /* PROPERTY_HAS_NO_SETTER can be 0 or 1.  Normally it is 0, but if
112    this is an artificial PROPERTY_DECL that we generate even without a
113    setter, it is set to 1.  */
114 #define PROPERTY_HAS_NO_SETTER(DECL) DECL_LANG_FLAG_4 (DECL)
115
116 /* PROPERTY_OPTIONAL can be 0 or 1.  Normally it is 0, but if this is
117    a property declared as @optional in a @protocol, then it is set to
118    1.  */
119 #define PROPERTY_OPTIONAL(DECL) DECL_LANG_FLAG_5 (DECL)
120
121 /* PROPERTY_REF.  A PROPERTY_REF represents an 'object.property'
122    expression.  It is normally used for property access, but when
123    the Objective-C 2.0 "dot-syntax" (object.component) is used
124    with no matching property, a PROPERTY_REF is still created to
125    represent it, with an artificial PROPERTY_DECL.  */
126
127 /* PROPERTY_REF_OBJECT is the object whose property we are
128    accessing.  */
129 #define PROPERTY_REF_OBJECT(NODE) TREE_OPERAND (PROPERTY_REF_CHECK (NODE), 0)
130
131 /* PROPERTY_REF_PROPERTY_DECL is the PROPERTY_DECL for the property
132    used in the expression.  From it, you can get the property type,
133    and the getter/setter names.  This PROPERTY_DECL could be artificial
134    if we are processing an 'object.component' syntax with no matching 
135    declared property.  */
136 #define PROPERTY_REF_PROPERTY_DECL(NODE) TREE_OPERAND (PROPERTY_REF_CHECK (NODE), 1)
137
138 /* PROPERTY_REF_GETTER_CALL is the getter call expression, ready to
139    use at gimplify time if needed.  Generating the getter call
140    requires modifying the selector table, and, in the case of
141    self/super, requires the context to be generated correctly.  The
142    gimplify stage is too late to do these things, so we generate the
143    getter call earlier instead, and keep it here in case we need to
144    use it.  */
145 #define PROPERTY_REF_GETTER_CALL(NODE) TREE_OPERAND (PROPERTY_REF_CHECK (NODE), 2)
146
147 /* PROPERTY_REF_DEPRECATED_GETTER is normally set to NULL_TREE.  If
148    the property getter is deprecated, it is set to the method
149    prototype for it, which is used to generate the deprecation warning
150    when the getter is used.  */
151 #define PROPERTY_REF_DEPRECATED_GETTER(NODE) TREE_OPERAND (PROPERTY_REF_CHECK (NODE), 3)
152
153 /* CLASS_INTERFACE_TYPE, CLASS_IMPLEMENTATION_TYPE,
154    CATEGORY_INTERFACE_TYPE, CATEGORY_IMPLEMENTATION_TYPE,
155    PROTOCOL_INTERFACE_TYPE */
156 /* CLASS_NAME is the name of the class.  */
157 #define CLASS_NAME(CLASS) ((CLASS)->type.name)
158 /* CLASS_SUPER_NAME is the name of the superclass, or, in the case of
159    categories, it is the name of the category itself.  */
160 #define CLASS_SUPER_NAME(CLASS) (TYPE_CHECK (CLASS)->type.context)
161 #define CLASS_IVARS(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 0)
162 #define CLASS_RAW_IVARS(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 1)
163 #define CLASS_NST_METHODS(CLASS) ((CLASS)->type.minval)
164 #define CLASS_CLS_METHODS(CLASS) ((CLASS)->type.maxval)
165 #define CLASS_STATIC_TEMPLATE(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 2)
166 #define CLASS_CATEGORY_LIST(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 3)
167 #define CLASS_PROTOCOL_LIST(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 4)
168 #define TOTAL_CLASS_RAW_IVARS(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 5)
169
170 #define PROTOCOL_NAME(CLASS) ((CLASS)->type.name)
171 #define PROTOCOL_LIST(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 0)
172 #define PROTOCOL_NST_METHODS(CLASS) ((CLASS)->type.minval)
173 #define PROTOCOL_CLS_METHODS(CLASS) ((CLASS)->type.maxval)
174 #define PROTOCOL_FORWARD_DECL(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 1)
175 #define PROTOCOL_DEFINED(CLASS) TREE_USED (CLASS)
176 #define PROTOCOL_OPTIONAL_CLS_METHODS(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 2)
177 #define PROTOCOL_OPTIONAL_NST_METHODS(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 3)
178
179
180 /* For CATEGORY_INTERFACE_TYPE, CLASS_INTERFACE_TYPE or PROTOCOL_INTERFACE_TYPE */
181 #define CLASS_PROPERTY_DECL(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 6)
182 /* For CLASS_IMPLEMENTATION_TYPE or CATEGORY_IMPLEMENTATION_TYPE. */
183 #define IMPL_PROPERTY_DECL(CLASS) TREE_VEC_ELT (TYPE_LANG_SLOT_1 (CLASS), 6)
184
185 /* TREE_DEPRECATED is used for a CLASS_INTERFACE_TYPE or PROTOCOL_INTERFACE_TYPE.  */
186
187 /* TYPE_ATTRIBUTES is used for a CLASS_INTERFACE_TYPE or PROTOCOL_INTERFACE_TYPE.  */
188
189 /* ObjC-specific information pertaining to RECORD_TYPEs are stored in
190    the LANG_SPECIFIC structures, which may itself need allocating first.  */
191
192 /* The following three macros must be overridden (in objcp/objcp-decl.h)
193    for Objective-C++.  */
194 #define TYPE_OBJC_INFO(TYPE) TYPE_LANG_SPECIFIC (TYPE)->objc_info
195 #define SIZEOF_OBJC_TYPE_LANG_SPECIFIC sizeof (struct lang_type)
196 #define ALLOC_OBJC_TYPE_LANG_SPECIFIC(NODE)                             \
197   do {                                                                  \
198     TYPE_LANG_SPECIFIC (NODE)                                           \
199       = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));        \
200   } while (0)
201
202 #define TYPE_HAS_OBJC_INFO(TYPE)                                \
203         (TYPE_LANG_SPECIFIC (TYPE) && TYPE_OBJC_INFO (TYPE))
204 #define TYPE_OBJC_INTERFACE(TYPE) TREE_VEC_ELT (TYPE_OBJC_INFO (TYPE), 0)
205 #define TYPE_OBJC_PROTOCOL_LIST(TYPE) TREE_VEC_ELT (TYPE_OBJC_INFO (TYPE), 1)
206
207
208 #define INIT_TYPE_OBJC_INFO(TYPE)                               \
209         do                                                      \
210           {                                                     \
211             if (!TYPE_LANG_SPECIFIC (TYPE))                     \
212               ALLOC_OBJC_TYPE_LANG_SPECIFIC(TYPE);              \
213             if (!TYPE_OBJC_INFO (TYPE))                         \
214               TYPE_OBJC_INFO (TYPE)                             \
215                 = make_tree_vec (OBJC_INFO_SLOT_ELTS);          \
216           }                                                     \
217         while (0)
218 #define DUP_TYPE_OBJC_INFO(DST, SRC)                            \
219         do                                                      \
220           {                                                     \
221             ALLOC_OBJC_TYPE_LANG_SPECIFIC(DST);                 \
222             if (TYPE_LANG_SPECIFIC (SRC))                       \
223               memcpy (TYPE_LANG_SPECIFIC (DST),                 \
224                       TYPE_LANG_SPECIFIC (SRC),                 \
225                       SIZEOF_OBJC_TYPE_LANG_SPECIFIC);          \
226             TYPE_OBJC_INFO (DST)                                \
227               = make_tree_vec (OBJC_INFO_SLOT_ELTS);            \
228           }                                                     \
229         while (0)
230
231 #define TYPED_OBJECT(TYPE)                                      \
232         (TREE_CODE (TYPE) == RECORD_TYPE                        \
233          && TYPE_HAS_OBJC_INFO (TYPE)                           \
234          && TYPE_OBJC_INTERFACE (TYPE))
235 #define OBJC_TYPE_NAME(TYPE) TYPE_NAME(TYPE)
236 #define OBJC_SET_TYPE_NAME(TYPE, NAME) (TYPE_NAME (TYPE) = NAME)
237
238 /* Hash tables to manage the global pool of method prototypes.  */
239
240 typedef struct hashed_entry     *hash;
241 typedef struct hashed_attribute *attr;
242
243 struct GTY(()) hashed_attribute {
244   attr next;
245   tree value;
246 };
247 struct GTY(()) hashed_entry {
248   attr list;
249   hash next;
250   tree key;
251 };
252
253 extern GTY ((length ("SIZEHASHTABLE"))) hash *nst_method_hash_list;
254 extern GTY ((length ("SIZEHASHTABLE"))) hash *cls_method_hash_list;
255
256 extern GTY ((length ("SIZEHASHTABLE"))) hash *cls_name_hash_list;
257 extern GTY ((length ("SIZEHASHTABLE"))) hash *als_name_hash_list;
258
259 #define SIZEHASHTABLE           257
260
261 /* An array of all the local variables in the current function that
262    need to be marked as volatile.  */
263 extern GTY(()) VEC(tree,gc) *local_variables_to_volatilize;
264
265 /* Objective-C/Objective-C++ @implementation list.  */
266
267 struct GTY(()) imp_entry {
268   struct imp_entry *next;
269   tree imp_context;
270   tree imp_template;
271   tree class_decl;              /* _OBJC_CLASS_<my_name>; */
272   tree meta_decl;               /* _OBJC_METACLASS_<my_name>; */
273   BOOL_BITFIELD has_cxx_cdtors : 1;
274 };
275
276 extern GTY(()) struct imp_entry *imp_list;
277 extern GTY(()) int imp_count;   /* `@implementation' */
278 extern GTY(()) int cat_count;   /* `@category' */
279
280 extern GTY(()) objc_ivar_visibility_kind objc_ivar_visibility;
281
282 /* Objective-C/Objective-C++ global tree enumeration.  */
283
284 enum objc_tree_index
285 {
286     OCTI_STATIC_NST,
287     OCTI_STATIC_NST_DECL,
288     OCTI_SELF_ID,
289     OCTI_UCMD_ID,
290
291     OCTI_SELF_DECL,
292     OCTI_UMSG_DECL,
293     OCTI_UMSG_FAST_DECL,
294     OCTI_UMSG_SUPER_DECL,
295     OCTI_UMSG_STRET_DECL,
296     OCTI_UMSG_SUPER_STRET_DECL,
297     OCTI_GET_CLASS_DECL,
298     OCTI_GET_MCLASS_DECL,
299     OCTI_SUPER_TYPE,
300     OCTI_SEL_TYPE,
301     OCTI_ID_TYPE,
302     OCTI_CLS_TYPE,
303     OCTI_NST_TYPE,
304     OCTI_PROTO_TYPE,
305
306     OCTI_INTF_CHAIN,
307     OCTI_PROTO_CHAIN,
308     OCTI_IMPL_CHAIN,
309     OCTI_CLS_REF_CHAIN,
310     OCTI_SEL_REF_CHAIN,
311     OCTI_IVAR_CHAIN,
312     OCTI_CLS_NAMES_CHAIN,
313     OCTI_METH_VAR_NAMES_CHAIN,
314     OCTI_METH_VAR_TYPES_CHAIN,
315
316     OCTI_SYMBOLS_DECL,
317     OCTI_NST_VAR_DECL,
318     OCTI_CLS_VAR_DECL,
319     OCTI_NST_METH_DECL,
320     OCTI_CLS_METH_DECL,
321     OCTI_CLS_DECL,
322     OCTI_MCLS_DECL,
323     OCTI_SEL_TABLE_DECL,
324     OCTI_MODULES_DECL,
325     OCTI_GNU_INIT_DECL,
326
327     OCTI_INTF_CTX,
328     OCTI_IMPL_CTX,
329     OCTI_METH_CTX,
330     OCTI_IVAR_CTX,
331
332     OCTI_IMPL_TEMPL,
333     OCTI_CLS_TEMPL,
334     OCTI_CAT_TEMPL,
335     OCTI_UPRIV_REC,
336     OCTI_PROTO_TEMPL,
337     OCTI_SEL_TEMPL,
338     OCTI_UCLS_SUPER_REF,
339     OCTI_UUCLS_SUPER_REF,
340     OCTI_METH_TEMPL,
341     OCTI_IVAR_TEMPL,
342     OCTI_METH_LIST_TEMPL,
343     OCTI_METH_PROTO_LIST_TEMPL,
344     OCTI_IVAR_LIST_TEMPL,
345     OCTI_SYMTAB_TEMPL,
346     OCTI_MODULE_TEMPL,
347     OCTI_SUPER_TEMPL,
348     OCTI_OBJ_REF,
349     OCTI_CLS_REF,
350     OCTI_METH_PROTO_TEMPL,
351     OCTI_FUNCTION1_TEMPL,
352     OCTI_FUNCTION2_TEMPL,
353
354     OCTI_OBJ_ID,
355     OCTI_CLS_ID,
356     OCTI_ID_NAME,
357     OCTI_CLASS_NAME,
358     OCTI_CNST_STR_ID,
359     OCTI_CNST_STR_TYPE,
360     OCTI_CNST_STR_GLOB_ID,
361     OCTI_STRING_CLASS_DECL,
362     OCTI_INTERNAL_CNST_STR_TYPE,
363     OCTI_SUPER_DECL,
364     OCTI_UMSG_NONNIL_DECL,
365     OCTI_UMSG_NONNIL_STRET_DECL,
366     OCTI_STORAGE_CLS,
367     OCTI_EXCEPTION_EXTRACT_DECL,
368     OCTI_EXCEPTION_TRY_ENTER_DECL,
369     OCTI_EXCEPTION_TRY_EXIT_DECL,
370     OCTI_EXCEPTION_MATCH_DECL,
371     OCTI_EXCEPTION_THROW_DECL,
372     OCTI_SYNC_ENTER_DECL,
373     OCTI_SYNC_EXIT_DECL,
374     OCTI_SETJMP_DECL,
375     OCTI_EXCDATA_TEMPL,
376     OCTI_STACK_EXCEPTION_DATA_DECL,
377     OCTI_LOCAL_EXCEPTION_DECL,
378     OCTI_RETHROW_EXCEPTION_DECL,
379     OCTI_EVAL_ONCE_DECL,
380     OCTI_CATCH_TYPE,
381     OCTI_EXECCLASS_DECL,
382
383     OCTI_ASSIGN_IVAR_DECL,
384     OCTI_ASSIGN_IVAR_FAST_DECL,
385     OCTI_ASSIGN_GLOBAL_DECL,
386     OCTI_ASSIGN_STRONGCAST_DECL,
387
388     OCTI_FAST_ENUM_STATE_TEMP,
389     OCTI_ENUM_MUTATION_DECL,
390
391     OCTI_GET_PROPERTY_DECL,
392     OCTI_SET_PROPERTY_DECL,
393     OCTI_COPY_STRUCT_DECL,
394     OCTI_GET_PROPERTY_STRUCT_DECL,
395     OCTI_SET_PROPERTY_STRUCT_DECL,
396
397     OCTI_MAX
398 };
399
400 extern GTY(()) tree objc_global_trees[OCTI_MAX];
401
402 /* List of classes with list of their static instances.  */
403 #define objc_static_instances   objc_global_trees[OCTI_STATIC_NST]
404
405 /* The declaration of the array administrating the static instances.  */
406 #define static_instances_decl   objc_global_trees[OCTI_STATIC_NST_DECL]
407
408 /* Some commonly used instances of "identifier_node".  */
409
410 #define self_id                 objc_global_trees[OCTI_SELF_ID]
411 #define ucmd_id                 objc_global_trees[OCTI_UCMD_ID]
412
413 #define self_decl               objc_global_trees[OCTI_SELF_DECL]
414 #define umsg_decl               objc_global_trees[OCTI_UMSG_DECL]
415 #define umsg_fast_decl          objc_global_trees[OCTI_UMSG_FAST_DECL]
416 #define umsg_super_decl         objc_global_trees[OCTI_UMSG_SUPER_DECL]
417 #define umsg_stret_decl         objc_global_trees[OCTI_UMSG_STRET_DECL]
418 #define umsg_super_stret_decl   objc_global_trees[OCTI_UMSG_SUPER_STRET_DECL]
419 #define objc_get_class_decl     objc_global_trees[OCTI_GET_CLASS_DECL]
420 #define objc_get_meta_class_decl                        \
421                                 objc_global_trees[OCTI_GET_MCLASS_DECL]
422
423 #define objc_super_type         objc_global_trees[OCTI_SUPER_TYPE]
424 #define objc_selector_type              objc_global_trees[OCTI_SEL_TYPE]
425 #define objc_object_type        objc_global_trees[OCTI_ID_TYPE]
426 #define objc_class_type         objc_global_trees[OCTI_CLS_TYPE]
427 #define objc_instance_type      objc_global_trees[OCTI_NST_TYPE]
428 #define objc_protocol_type      objc_global_trees[OCTI_PROTO_TYPE]
429
430 /* Type checking macros.  */
431
432 #define IS_ID(TYPE)                                                     \
433         (TREE_CODE (TYPE) == POINTER_TYPE                               \
434          && (TYPE_MAIN_VARIANT (TREE_TYPE (TYPE))                       \
435              == TREE_TYPE (objc_object_type)))
436 #define IS_CLASS(TYPE)                                                  \
437         (TREE_CODE (TYPE) == POINTER_TYPE                               \
438          && (TYPE_MAIN_VARIANT (TREE_TYPE (TYPE))                       \
439              == TREE_TYPE (objc_class_type)))
440 #define IS_PROTOCOL_QUALIFIED_UNTYPED(TYPE)                             \
441         ((IS_ID (TYPE) || IS_CLASS (TYPE))                              \
442          && TYPE_HAS_OBJC_INFO (TREE_TYPE (TYPE))                       \
443          && TYPE_OBJC_PROTOCOL_LIST (TREE_TYPE (TYPE)))
444 #define IS_SUPER(TYPE)                                                  \
445         (TREE_CODE (TYPE) == POINTER_TYPE                               \
446          && TREE_TYPE (TYPE) == objc_super_template)
447
448 #define interface_chain         objc_global_trees[OCTI_INTF_CHAIN]
449 #define protocol_chain          objc_global_trees[OCTI_PROTO_CHAIN]
450 #define implemented_classes     objc_global_trees[OCTI_IMPL_CHAIN]
451
452 /* Chains to manage selectors that are referenced and defined in the
453    module.  */
454
455 #define cls_ref_chain           objc_global_trees[OCTI_CLS_REF_CHAIN]   /* Classes referenced.  */
456 #define sel_ref_chain           objc_global_trees[OCTI_SEL_REF_CHAIN]   /* Selectors referenced.  */
457 #define objc_ivar_chain         objc_global_trees[OCTI_IVAR_CHAIN]
458
459 /* Chains to manage uniquing of strings.  */
460
461 #define class_names_chain       objc_global_trees[OCTI_CLS_NAMES_CHAIN]
462 #define meth_var_names_chain    objc_global_trees[OCTI_METH_VAR_NAMES_CHAIN]
463 #define meth_var_types_chain    objc_global_trees[OCTI_METH_VAR_TYPES_CHAIN]
464
465
466 /* Backend data declarations.  */
467
468 #define UOBJC_SYMBOLS_decl              objc_global_trees[OCTI_SYMBOLS_DECL]
469 #define UOBJC_INSTANCE_VARIABLES_decl   objc_global_trees[OCTI_NST_VAR_DECL]
470 #define UOBJC_CLASS_VARIABLES_decl      objc_global_trees[OCTI_CLS_VAR_DECL]
471 #define UOBJC_INSTANCE_METHODS_decl     objc_global_trees[OCTI_NST_METH_DECL]
472 #define UOBJC_CLASS_METHODS_decl        objc_global_trees[OCTI_CLS_METH_DECL]
473 #define UOBJC_CLASS_decl                objc_global_trees[OCTI_CLS_DECL]
474 #define UOBJC_METACLASS_decl            objc_global_trees[OCTI_MCLS_DECL]
475 #define UOBJC_SELECTOR_TABLE_decl       objc_global_trees[OCTI_SEL_TABLE_DECL]
476 #define UOBJC_MODULES_decl              objc_global_trees[OCTI_MODULES_DECL]
477 #define GNU_INIT_decl                   objc_global_trees[OCTI_GNU_INIT_DECL]
478
479 /* The following are used when compiling a class implementation.
480    implementation_template will normally be an interface, however if
481    none exists this will be equal to objc_implementation_context...it is
482    set in start_class.  */
483
484 #define objc_interface_context          objc_global_trees[OCTI_INTF_CTX]
485 #define objc_implementation_context     objc_global_trees[OCTI_IMPL_CTX]
486 #define objc_method_context             objc_global_trees[OCTI_METH_CTX]
487 #define objc_ivar_context               objc_global_trees[OCTI_IVAR_CTX]
488
489 #define implementation_template objc_global_trees[OCTI_IMPL_TEMPL]
490 #define objc_class_template     objc_global_trees[OCTI_CLS_TEMPL]
491 #define objc_category_template  objc_global_trees[OCTI_CAT_TEMPL]
492 #define uprivate_record         objc_global_trees[OCTI_UPRIV_REC]
493 #define objc_protocol_template  objc_global_trees[OCTI_PROTO_TEMPL]
494 #define objc_selector_template  objc_global_trees[OCTI_SEL_TEMPL]
495 #define ucls_super_ref          objc_global_trees[OCTI_UCLS_SUPER_REF]
496 #define uucls_super_ref         objc_global_trees[OCTI_UUCLS_SUPER_REF]
497
498 #define umsg_nonnil_decl        objc_global_trees[OCTI_UMSG_NONNIL_DECL]
499 #define umsg_nonnil_stret_decl  objc_global_trees[OCTI_UMSG_NONNIL_STRET_DECL]
500 #define objc_storage_class      objc_global_trees[OCTI_STORAGE_CLS]
501 #define objc_exception_extract_decl             \
502                                 objc_global_trees[OCTI_EXCEPTION_EXTRACT_DECL]
503 #define objc_exception_try_enter_decl           \
504                                 objc_global_trees[OCTI_EXCEPTION_TRY_ENTER_DECL]
505 #define objc_exception_try_exit_decl            \
506                                 objc_global_trees[OCTI_EXCEPTION_TRY_EXIT_DECL]
507 #define objc_exception_match_decl               \
508                                 objc_global_trees[OCTI_EXCEPTION_MATCH_DECL]
509 #define objc_exception_throw_decl               \
510                                 objc_global_trees[OCTI_EXCEPTION_THROW_DECL]
511 #define objc_sync_enter_decl    objc_global_trees[OCTI_SYNC_ENTER_DECL]
512 #define objc_sync_exit_decl     objc_global_trees[OCTI_SYNC_EXIT_DECL]
513 #define objc_exception_data_template            \
514                                 objc_global_trees[OCTI_EXCDATA_TEMPL]
515 #define objc_setjmp_decl        objc_global_trees[OCTI_SETJMP_DECL]
516 #define objc_stack_exception_data               \
517                                 objc_global_trees[OCTI_STACK_EXCEPTION_DATA_DECL]
518 #define objc_caught_exception   objc_global_trees[OCTI_LOCAL_EXCEPTION_DECL]    
519 #define objc_rethrow_exception  objc_global_trees[OCTI_RETHROW_EXCEPTION_DECL]  
520 #define objc_eval_once          objc_global_trees[OCTI_EVAL_ONCE_DECL]  
521 #define objc_catch_type         objc_global_trees[OCTI_CATCH_TYPE]
522
523 #define execclass_decl          objc_global_trees[OCTI_EXECCLASS_DECL]
524
525 #define objc_assign_ivar_decl   objc_global_trees[OCTI_ASSIGN_IVAR_DECL]
526 #define objc_assign_ivar_fast_decl              \
527                                 objc_global_trees[OCTI_ASSIGN_IVAR_FAST_DECL]
528 #define objc_assign_global_decl objc_global_trees[OCTI_ASSIGN_GLOBAL_DECL]
529 #define objc_assign_strong_cast_decl            \
530                                 objc_global_trees[OCTI_ASSIGN_STRONGCAST_DECL]
531
532 #define objc_method_template    objc_global_trees[OCTI_METH_TEMPL]
533 #define objc_ivar_template      objc_global_trees[OCTI_IVAR_TEMPL]
534 #define objc_method_list_ptr    objc_global_trees[OCTI_METH_LIST_TEMPL]
535 #define objc_method_proto_list_ptr              \
536                                 objc_global_trees[OCTI_METH_PROTO_LIST_TEMPL]
537 #define objc_ivar_list_ptr      objc_global_trees[OCTI_IVAR_LIST_TEMPL]
538 #define objc_symtab_template    objc_global_trees[OCTI_SYMTAB_TEMPL]
539 #define objc_module_template    objc_global_trees[OCTI_MODULE_TEMPL]
540 #define objc_super_template     objc_global_trees[OCTI_SUPER_TEMPL]
541 #define objc_object_reference   objc_global_trees[OCTI_OBJ_REF]
542 #define objc_class_reference    objc_global_trees[OCTI_CLS_REF]
543 #define objc_method_prototype_template          \
544                                 objc_global_trees[OCTI_METH_PROTO_TEMPL]
545 #define function1_template      objc_global_trees[OCTI_FUNCTION1_TEMPL]
546 #define function2_template      objc_global_trees[OCTI_FUNCTION2_TEMPL]
547
548 #define objc_object_id          objc_global_trees[OCTI_OBJ_ID]
549 #define objc_class_id           objc_global_trees[OCTI_CLS_ID]
550 #define objc_object_name                objc_global_trees[OCTI_ID_NAME]
551 #define objc_class_name         objc_global_trees[OCTI_CLASS_NAME]
552 #define constant_string_id      objc_global_trees[OCTI_CNST_STR_ID]
553 #define constant_string_type    objc_global_trees[OCTI_CNST_STR_TYPE]
554 #define constant_string_global_id               \
555                                 objc_global_trees[OCTI_CNST_STR_GLOB_ID]
556 #define string_class_decl       objc_global_trees[OCTI_STRING_CLASS_DECL]
557 #define internal_const_str_type objc_global_trees[OCTI_INTERNAL_CNST_STR_TYPE]
558 #define UOBJC_SUPER_decl        objc_global_trees[OCTI_SUPER_DECL]
559 #define objc_fast_enumeration_state_template    \
560                                 objc_global_trees[OCTI_FAST_ENUM_STATE_TEMP]
561 #define objc_enumeration_mutation_decl          \
562                                 objc_global_trees[OCTI_ENUM_MUTATION_DECL]
563
564 /* Declarations of functions used when synthesizing property
565    accessors.  */
566 #define objc_getProperty_decl       objc_global_trees[OCTI_GET_PROPERTY_DECL]
567 #define objc_setProperty_decl       objc_global_trees[OCTI_SET_PROPERTY_DECL]
568 #define objc_copyStruct_decl        objc_global_trees[OCTI_COPY_STRUCT_DECL]
569 #define objc_getPropertyStruct_decl objc_global_trees[OCTI_GET_PROPERTY_STRUCT_DECL]
570 #define objc_setPropertyStruct_decl objc_global_trees[OCTI_SET_PROPERTY_STRUCT_DECL]
571
572
573 #endif /* GCC_OBJC_ACT_H */