OSDN Git Service

* error.c (dump_simple_decl): Use DECL_CLASS_SCOPE_P and/or
[pf3gnuchains/gcc-fork.git] / gcc / cp / cp-tree.h
1 /* Definitions for C++ parsing and type checking.
2    Copyright (C) 1987, 93, 94, 95, 1996 Free Software Foundation, Inc.
3    Hacked by Michael Tiemann (tiemann@cygnus.com)
4
5 This file is part of GNU CC.
6
7 GNU CC 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 2, or (at your option)
10 any later version.
11
12 GNU CC 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 GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 #ifndef _CP_TREE_H
23 #define _CP_TREE_H
24
25 #include "gansidecl.h"
26
27 /* Language-dependent contents of an identifier.  */
28
29 struct lang_identifier
30 {
31   struct tree_identifier ignore;
32   tree namespace_bindings, local_value;
33   tree class_value;
34   tree class_template_info;
35   struct lang_id2 *x;
36 };
37
38 struct lang_id2
39 {
40   tree label_value, implicit_decl;
41   tree type_desc, as_list, error_locus;
42 };
43
44 typedef struct 
45 {
46   tree t;
47   int new_type_flag;
48 } flagged_type_tree;
49
50 typedef struct 
51 {
52   char common[sizeof (struct tree_common)];
53   struct rtx_def *rtl;  /* Unused, but required to match up with what
54                            the middle-end expects.  */
55   HOST_WIDE_INT index;
56   HOST_WIDE_INT level;
57   HOST_WIDE_INT orig_level;
58   tree decl;
59 } template_parm_index;
60
61 /* For a binding between a name and an entity, defines the scope
62    where the binding is declared. Currently always points to a
63    namespace declaration.  */
64 #define BINDING_SCOPE(NODE)    (((struct tree_binding*)NODE)->scope)
65 /* This is the declaration bound to the name. Possible values:
66    variable, overloaded function, namespace, template, enumerator.  */
67 #define BINDING_VALUE(NODE)    (((struct tree_binding*)NODE)->value)
68 /* If name is bound to a type, this is the type (struct, union, enum).  */
69 #define BINDING_TYPE(NODE)     TREE_TYPE(NODE)
70 #define IDENTIFIER_GLOBAL_VALUE(NODE) \
71   namespace_binding (NODE, global_namespace)
72 #define SET_IDENTIFIER_GLOBAL_VALUE(NODE, VAL) \
73   set_namespace_binding (NODE, global_namespace, VAL)
74 #define IDENTIFIER_NAMESPACE_VALUE(NODE) \
75   namespace_binding (NODE, current_namespace)
76 #define SET_IDENTIFIER_NAMESPACE_VALUE(NODE, VAL) \
77   set_namespace_binding (NODE, current_namespace, VAL)
78
79 struct tree_binding
80 {
81   char common[sizeof (struct tree_common)];
82   tree scope;
83   tree value;
84 };
85
86 /* The overloaded FUNCTION_DECL. */
87 #define OVL_FUNCTION(NODE)   (((struct tree_overload*)NODE)->function)
88 #define OVL_CHAIN(NODE)      TREE_CHAIN(NODE)
89 /* Polymorphic access to FUNCTION and CHAIN. */
90 #define OVL_CURRENT(NODE)     \
91   ((TREE_CODE(NODE)==OVERLOAD) ? OVL_FUNCTION(NODE) : NODE)
92 #define OVL_NEXT(NODE)        \
93   ((TREE_CODE(NODE)==OVERLOAD) ? TREE_CHAIN(NODE) : NULL_TREE)
94 /* If set, this was imported in a using declaration.
95    This is not to confuse with being used somewhere, which
96    is not important for this node. */
97 #define OVL_USED(NODE)        TREE_USED(NODE)
98
99 struct tree_overload
100 {
101   char common[sizeof (struct tree_common)];
102   tree function;
103 };
104
105 #define WRAPPER_PTR(NODE) (((struct tree_wrapper*)NODE)->u.ptr)
106 #define WRAPPER_INT(NODE) (((struct tree_wrapper*)NODE)->u.i)
107
108 struct tree_wrapper
109 {
110   char common[sizeof (struct tree_common)];
111   union {
112     void *ptr;
113     int i;
114   } u;
115 };
116
117 /* To identify to the debug emitters if it should pay attention to the
118    flag `-Wtemplate-debugging'.  */
119 #define HAVE_TEMPLATES 1
120
121 /* Macros for access to language-specific slots in an identifier.  */
122
123 #define IDENTIFIER_NAMESPACE_BINDINGS(NODE)     \
124   (((struct lang_identifier *)(NODE))->namespace_bindings)
125 #define IDENTIFIER_CLASS_VALUE(NODE)    \
126   (((struct lang_identifier *)(NODE))->class_value)
127 #define IDENTIFIER_LOCAL_VALUE(NODE)    \
128   (((struct lang_identifier *)(NODE))->local_value)
129 #define IDENTIFIER_TEMPLATE(NODE)       \
130   (((struct lang_identifier *)(NODE))->class_template_info)
131
132 /* TREE_TYPE only indicates on local and class scope the current
133    type. For namespace scope, the presence of a type in any namespace
134    is indicated with global_type_node, and the real type behind must
135    be found through lookup. */
136 #define IDENTIFIER_TYPE_VALUE(NODE) (identifier_type_value(NODE))
137 #define REAL_IDENTIFIER_TYPE_VALUE(NODE) (TREE_TYPE (NODE))
138 #define SET_IDENTIFIER_TYPE_VALUE(NODE,TYPE) (TREE_TYPE (NODE) = TYPE)
139 #define IDENTIFIER_HAS_TYPE_VALUE(NODE) (IDENTIFIER_TYPE_VALUE (NODE) ? 1 : 0)
140
141 #define LANG_ID_FIELD(NAME,NODE) \
142   (((struct lang_identifier *)(NODE))->x \
143    ? ((struct lang_identifier *)(NODE))->x->NAME : 0)
144 #define SET_LANG_ID(NODE,VALUE,NAME) \
145   (((struct lang_identifier *)(NODE))->x == 0                               \
146    ? ((struct lang_identifier *)(NODE))->x                                  \
147       = (struct lang_id2 *)perm_calloc (1, sizeof (struct lang_id2)) : 0,   \
148    ((struct lang_identifier *)(NODE))->x->NAME = (VALUE))
149
150 #define IDENTIFIER_LABEL_VALUE(NODE)        LANG_ID_FIELD(label_value, NODE)
151 #define SET_IDENTIFIER_LABEL_VALUE(NODE,VALUE)   \
152         SET_LANG_ID(NODE, VALUE, label_value)
153
154 #define IDENTIFIER_IMPLICIT_DECL(NODE)      LANG_ID_FIELD(implicit_decl, NODE)
155 #define SET_IDENTIFIER_IMPLICIT_DECL(NODE,VALUE) \
156         SET_LANG_ID(NODE, VALUE, implicit_decl)
157
158 #define IDENTIFIER_AS_DESC(NODE)            LANG_ID_FIELD(type_desc, NODE)
159 #define SET_IDENTIFIER_AS_DESC(NODE,DESC)       \
160         SET_LANG_ID(NODE, DESC, type_desc)
161
162 #define IDENTIFIER_AS_LIST(NODE)            LANG_ID_FIELD(as_list, NODE)
163 #define SET_IDENTIFIER_AS_LIST(NODE,LIST)       \
164         SET_LANG_ID(NODE, LIST, as_list)
165
166 #define IDENTIFIER_ERROR_LOCUS(NODE)        LANG_ID_FIELD(error_locus, NODE)
167 #define SET_IDENTIFIER_ERROR_LOCUS(NODE,VALUE)  \
168         SET_LANG_ID(NODE, VALUE, error_locus)
169
170
171 #define IDENTIFIER_VIRTUAL_P(NODE) TREE_LANG_FLAG_1(NODE)
172
173 /* Nonzero if this identifier is the prefix for a mangled C++ operator name.  */
174 #define IDENTIFIER_OPNAME_P(NODE) TREE_LANG_FLAG_2(NODE)
175
176 #define IDENTIFIER_TYPENAME_P(NODE)     \
177   (! strncmp (IDENTIFIER_POINTER (NODE),                        \
178               IDENTIFIER_POINTER (ansi_opname[(int) TYPE_EXPR]),        \
179               IDENTIFIER_LENGTH (ansi_opname[(int) TYPE_EXPR])))
180
181 /* Nonzero means reject anything that ANSI standard C forbids.  */
182 extern int pedantic;
183
184 /* In a RECORD_TYPE or UNION_TYPE, nonzero if any component is read-only.  */
185 #define C_TYPE_FIELDS_READONLY(type) TYPE_LANG_FLAG_0 (type)
186
187 /* Record in each node resulting from a binary operator
188    what operator was specified for it.  */
189 #define C_EXP_ORIGINAL_CODE(exp) ((enum tree_code) TREE_COMPLEXITY (exp))
190
191 /* Store a value in that field.  */
192 #define C_SET_EXP_ORIGINAL_CODE(exp, code) \
193   (TREE_COMPLEXITY (exp) = (int)(code))
194 \f
195 /* If non-zero, a VAR_DECL whose cleanup will cause a throw to the
196    next exception handler.  */
197 extern tree exception_throw_decl;
198
199 extern tree double_type_node, long_double_type_node, float_type_node;
200 extern tree char_type_node, unsigned_char_type_node, signed_char_type_node;
201 extern tree ptrdiff_type_node;
202
203 extern tree short_integer_type_node, short_unsigned_type_node;
204 extern tree long_integer_type_node, long_unsigned_type_node;
205 extern tree long_long_integer_type_node, long_long_unsigned_type_node;
206 extern tree unsigned_type_node;
207 extern tree string_type_node, char_array_type_node, int_array_type_node;
208 extern tree wchar_array_type_node;
209 extern tree wchar_type_node, signed_wchar_type_node, unsigned_wchar_type_node;
210
211 extern tree complex_integer_type_node;
212 extern tree complex_float_type_node;
213 extern tree complex_double_type_node;
214 extern tree complex_long_double_type_node;
215
216 extern tree intQI_type_node, unsigned_intQI_type_node;
217 extern tree intHI_type_node, unsigned_intHI_type_node;
218 extern tree intSI_type_node, unsigned_intSI_type_node;
219 extern tree intDI_type_node, unsigned_intDI_type_node;
220 extern tree intTI_type_node, unsigned_intTI_type_node;
221
222 extern int current_function_returns_value;
223 extern int current_function_returns_null;
224 extern tree current_function_return_value;
225
226 extern tree current_namespace;
227 extern tree global_namespace;
228
229 extern tree ridpointers[];
230 extern tree ansi_opname[];
231 extern tree ansi_assopname[];
232
233 /* Nonzero means `$' can be in an identifier.  */
234
235 extern int dollars_in_ident;
236
237 /* Nonzero means allow type mismatches in conditional expressions;
238    just make their values `void'.   */
239
240 extern int flag_cond_mismatch;
241
242 /* Nonzero means don't recognize the keyword `asm'.  */
243
244 extern int flag_no_asm;
245
246 /* For cross referencing.  */
247
248 extern int flag_gnu_xref;
249
250 /* For environments where you can use GNU binutils (as, ld in particular).  */
251
252 extern int flag_gnu_binutils;
253
254 /* Nonzero means ignore `#ident' directives.  */
255
256 extern int flag_no_ident;
257
258 /* Nonzero means warn about implicit declarations.  */
259
260 extern int warn_implicit;
261
262 /* Nonzero means warn when all ctors or dtors are private, and the class
263    has no friends.  */
264
265 extern int warn_ctor_dtor_privacy;
266
267 /* Nonzero means warn about function definitions that default the return type
268    or that use a null return and have a return-type other than void.  */
269
270 extern int warn_return_type;
271
272 /* Nonzero means give string constants the type `const char *'
273    to get extra warnings from them.  These warnings will be too numerous
274    to be useful, except in thoroughly ANSIfied programs.  */
275
276 extern int warn_write_strings;
277
278 /* Nonzero means warn about sizeof(function) or addition/subtraction
279    of function pointers.  */
280
281 extern int warn_pointer_arith;
282
283 /* Nonzero means warn about suggesting putting in ()'s.  */
284
285 extern int warn_parentheses;
286
287 /* Nonzero means warn about multiple (redundant) decls for the same single
288    variable or function.  */
289
290 extern int warn_redundant_decls;
291
292 /* Warn if initializer is not completely bracketed.  */
293
294 extern int warn_missing_braces;
295
296 /* Warn about comparison of signed and unsigned values.  */
297
298 extern int warn_sign_compare;
299
300 /* Warn about a subscript that has type char.  */
301
302 extern int warn_char_subscripts;
303
304 /* Nonzero means warn about pointer casts that can drop a type qualifier
305    from the pointer target type.  */
306
307 extern int warn_cast_qual;
308
309 /* Warn about *printf or *scanf format/argument anomalies.  */
310
311 extern int warn_format;
312
313 /* Nonzero means warn about non virtual destructors in classes that have
314    virtual functions.  */
315
316 extern int warn_nonvdtor;
317
318 /* Non-zero means warn when we convert a pointer to member function
319    into a pointer to (void or function).  */
320
321 extern int warn_pmf2ptr;
322
323 /* Nonzero means warn about violation of some Effective C++ style rules.  */
324
325 extern int warn_ecpp;
326
327 /* Nonzero means warn where overload resolution chooses a promotion from
328    unsigned to signed over a conversion to an unsigned of the same size.  */
329
330 extern int warn_sign_promo;
331
332 /* Non-zero means warn when a function is declared extern and later inline.  */
333
334 extern int warn_extern_inline;
335
336 /* Non-zero means warn when an old-style cast is used.  */
337
338 extern int warn_old_style_cast;
339
340 /* Nonzero means to treat bitfields as unsigned unless they say `signed'.  */
341
342 extern int flag_signed_bitfields;
343
344 /* 3 means write out only virtuals function tables `defined'
345    in this implementation file.
346    2 means write out only specific virtual function tables
347    and give them (C) public access.
348    1 means write out virtual function tables and give them
349    (C) public access.
350    0 means write out virtual function tables and give them
351    (C) static access (default).
352    -1 means declare virtual function tables extern.  */
353
354 extern int write_virtuals;
355
356 /* True for more efficient but incompatible (not fully tested)
357    vtable implementation (using thunks).
358    0 is old behavior; 1 is new behavior.  */
359 extern int flag_vtable_thunks;
360
361 /* INTERFACE_ONLY nonzero means that we are in an "interface"
362    section of the compiler.  INTERFACE_UNKNOWN nonzero means
363    we cannot trust the value of INTERFACE_ONLY.  If INTERFACE_UNKNOWN
364    is zero and INTERFACE_ONLY is zero, it means that we are responsible
365    for exporting definitions that others might need.  */
366 extern int interface_only, interface_unknown;
367
368 /* Nonzero means we should attempt to elide constructors when possible.  */
369
370 extern int flag_elide_constructors;
371
372 /* Nonzero means enable obscure ANSI features and disable GNU extensions
373    that might cause ANSI-compliant code to be miscompiled.  */
374
375 extern int flag_ansi;
376
377 /* Nonzero means recognize and handle signature language constructs.  */
378
379 extern int flag_handle_signatures;
380
381 /* Nonzero means that member functions defined in class scope are
382    inline by default.  */
383
384 extern int flag_default_inline;
385
386 /* The name-mangling scheme to use.  Versions of gcc before 2.8 use
387    version 0.  */
388 extern int name_mangling_version;
389
390 /* Nonzero means that guiding declarations are allowed.  */
391 extern int flag_guiding_decls;
392
393 /* Nonzero if squashed mangling is to be performed. 
394    This uses the B and K codes to reference previously seen class types 
395    and class qualifiers.       */
396 extern int flag_do_squangling;
397
398 \f
399 /* C++ language-specific tree codes.  */
400 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) SYM,
401 enum cplus_tree_code {
402   __DUMMY = LAST_AND_UNUSED_TREE_CODE,
403 #include "cp-tree.def"
404   LAST_CPLUS_TREE_CODE
405 };
406 #undef DEFTREECODE
407
408 enum languages { lang_c, lang_cplusplus, lang_java };
409
410 /* Macros to make error reporting functions' lives easier.  */
411 #define TYPE_IDENTIFIER(NODE) (DECL_NAME (TYPE_NAME (NODE)))
412 #define TYPE_NAME_STRING(NODE) (IDENTIFIER_POINTER (TYPE_IDENTIFIER (NODE)))
413 #define TYPE_NAME_LENGTH(NODE) (IDENTIFIER_LENGTH (TYPE_IDENTIFIER (NODE)))
414
415 #define TYPE_ASSEMBLER_NAME_STRING(NODE) (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (TYPE_NAME  (NODE))))
416 #define TYPE_ASSEMBLER_NAME_LENGTH(NODE) (IDENTIFIER_LENGTH (DECL_ASSEMBLER_NAME (TYPE_NAME (NODE))))
417
418 /* The _DECL for this _TYPE.  */
419 #define TYPE_MAIN_DECL(NODE) (TYPE_STUB_DECL (TYPE_MAIN_VARIANT (NODE)))
420
421 #define IS_AGGR_TYPE(t)         (TYPE_LANG_FLAG_5 (t))
422 #define IS_AGGR_TYPE_CODE(t)    (t == RECORD_TYPE || t == UNION_TYPE)
423 #define IS_AGGR_TYPE_2(TYPE1,TYPE2) \
424   (TREE_CODE (TYPE1) == TREE_CODE (TYPE2)       \
425    && IS_AGGR_TYPE (TYPE1)&IS_AGGR_TYPE (TYPE2))
426 #define IS_OVERLOAD_TYPE(t) \
427   (IS_AGGR_TYPE (t) || TREE_CODE (t) == ENUMERAL_TYPE)
428
429 /* In a *_TYPE, nonzero means a built-in type.  */
430 #define TYPE_BUILT_IN(NODE) TYPE_LANG_FLAG_6(NODE)
431
432 #define DELTA_FROM_VTABLE_ENTRY(ENTRY) \
433   (!flag_vtable_thunks ? \
434      TREE_VALUE (CONSTRUCTOR_ELTS (ENTRY)) \
435    : TREE_CODE (TREE_OPERAND ((ENTRY), 0)) != THUNK_DECL ? integer_zero_node \
436    : build_int_2 (THUNK_DELTA (TREE_OPERAND ((ENTRY), 0)), 0))
437
438 /* Virtual function addresses can be gotten from a virtual function
439    table entry using this macro.  */
440 #define FNADDR_FROM_VTABLE_ENTRY(ENTRY) \
441   (!flag_vtable_thunks ? \
442      TREE_VALUE (TREE_CHAIN (TREE_CHAIN (CONSTRUCTOR_ELTS (ENTRY)))) \
443    : TREE_CODE (TREE_OPERAND ((ENTRY), 0)) != THUNK_DECL ? (ENTRY) \
444    : DECL_INITIAL (TREE_OPERAND ((ENTRY), 0)))
445 #define SET_FNADDR_FROM_VTABLE_ENTRY(ENTRY,VALUE) \
446   (TREE_VALUE (TREE_CHAIN (TREE_CHAIN (CONSTRUCTOR_ELTS (ENTRY)))) = (VALUE))
447 #define FUNCTION_ARG_CHAIN(NODE) (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (NODE))))
448 #define PROMOTES_TO_AGGR_TYPE(NODE,CODE)        \
449   (((CODE) == TREE_CODE (NODE)                  \
450        && IS_AGGR_TYPE (TREE_TYPE (NODE)))      \
451    || IS_AGGR_TYPE (NODE))
452
453 /* Nonzero iff TYPE is uniquely derived from PARENT.  Under MI, PARENT can
454    be an ambiguous base class of TYPE, and this macro will be false.  */
455 #define UNIQUELY_DERIVED_FROM_P(PARENT, TYPE) (get_base_distance (PARENT, TYPE, 0, (tree *)0) >= 0)
456 #define ACCESSIBLY_DERIVED_FROM_P(PARENT, TYPE) (get_base_distance (PARENT, TYPE, -1, (tree *)0) >= 0)
457 #define ACCESSIBLY_UNIQUELY_DERIVED_P(PARENT, TYPE) (get_base_distance (PARENT, TYPE, 1, (tree *)0) >= 0)
458 #define DERIVED_FROM_P(PARENT, TYPE) (get_base_distance (PARENT, TYPE, 0, (tree *)0) != -1)
459 \f
460 /* Statistics show that while the GNU C++ compiler may generate
461    thousands of different types during a compilation run, it
462    generates relatively few (tens) of classtypes.  Because of this,
463    it is not costly to store a generous amount of information
464    in classtype nodes.  This struct must fill out to a multiple of 4 bytes.  */
465 struct lang_type
466 {
467   struct
468     {
469       unsigned has_type_conversion : 1;
470       unsigned has_init_ref : 1;
471       unsigned has_assignment : 1;
472       unsigned has_default_ctor : 1;
473       unsigned uses_multiple_inheritance : 1;
474       unsigned const_needs_init : 1;
475       unsigned ref_needs_init : 1;
476       unsigned has_const_assign_ref : 1;
477
478       unsigned has_nonpublic_ctor : 2;
479       unsigned has_nonpublic_assign_ref : 2;
480       unsigned vtable_needs_writing : 1;
481       unsigned has_assign_ref : 1;
482       unsigned gets_new : 2;
483
484       unsigned gets_delete : 2;
485       unsigned has_call_overloaded : 1;
486       unsigned has_array_ref_overloaded : 1;
487       unsigned has_arrow_overloaded : 1;
488       unsigned local_typedecls : 1;
489       unsigned interface_only : 1;
490       unsigned interface_unknown : 1;
491
492       unsigned needs_virtual_reinit : 1;
493       unsigned vec_delete_takes_size : 1;
494       unsigned declared_class : 1;
495       unsigned being_defined : 1;
496       unsigned redefined : 1;
497       unsigned marked : 1;
498       unsigned marked2 : 1;
499       unsigned marked3 : 1;
500
501       unsigned marked4 : 1;
502       unsigned marked5 : 1;
503       unsigned marked6 : 1;
504       unsigned debug_requested : 1;
505       unsigned use_template : 2;
506       unsigned got_semicolon : 1;
507       unsigned ptrmemfunc_flag : 1;
508
509       unsigned is_signature : 1;
510       unsigned is_signature_pointer : 1;
511       unsigned is_signature_reference : 1;
512       unsigned has_opaque_typedecls : 1;
513       unsigned sigtable_has_been_generated : 1;
514       unsigned was_anonymous : 1;
515       unsigned has_real_assignment : 1;
516       unsigned has_real_assign_ref : 1;
517
518       unsigned has_const_init_ref : 1;
519       unsigned has_complex_init_ref : 1;
520       unsigned has_complex_assign_ref : 1;
521       unsigned has_abstract_assign_ref : 1;
522       unsigned non_aggregate : 1;
523
524       /* The MIPS compiler gets it wrong if this struct also
525          does not fill out to a multiple of 4 bytes.  Add a
526          member `dummy' with new bits if you go over the edge.  */
527       unsigned dummy : 11;
528     } type_flags;
529
530 #ifdef MI_MATRIX
531   int cid;
532 #endif
533   int n_ancestors;
534   int n_vancestors;
535   int vsize;
536   int max_depth;
537   int vfield_parent;
538
539   union tree_node *baselink_vec;
540   union tree_node *vfields;
541   union tree_node *vbases;
542
543   union tree_node *tags;
544   char *memoized_table_entry;
545
546   union tree_node *search_slot;
547
548   unsigned char align;
549   /* Room for another three unsigned chars.  */
550
551   union tree_node *size;
552
553   union tree_node *base_init_list;
554   union tree_node *abstract_virtuals;
555   union tree_node *as_list;
556   union tree_node *id_as_list;
557   union tree_node *binfo_as_list;
558   union tree_node *friend_classes;
559
560 #ifdef MI_MATRIX
561   char *mi_matrix;
562 #endif
563
564   union tree_node *rtti;
565
566   union tree_node *methods;
567
568   union tree_node *signature;
569   union tree_node *signature_pointer_to;
570   union tree_node *signature_reference_to;
571
572   union tree_node *template_info;
573
574   int linenum;
575 };
576
577 #define CLASSTYPE_SOURCE_LINE(NODE) (TYPE_LANG_SPECIFIC(NODE)->linenum)
578
579 /* Indicates whether or not (and how) a template was expanded for this class.
580      0=no information yet/non-template class
581      1=implicit template instantiation
582      2=explicit template specialization
583      3=explicit template instantiation  */
584 #define CLASSTYPE_USE_TEMPLATE(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.use_template)
585
586 /* Fields used for storing information before the class is defined.
587    After the class is defined, these fields hold other information.  */
588
589 /* List of friends which were defined inline in this class definition.  */
590 #define CLASSTYPE_INLINE_FRIENDS(NODE) (TYPE_NONCOPIED_PARTS (NODE))
591
592 /* Nonzero for _CLASSTYPE means that the _CLASSTYPE either has
593    a special meaning for the assignment operator ("operator="),
594    or one of its fields (or base members) has a special meaning
595    defined.  */
596 #define TYPE_HAS_ASSIGNMENT(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_assignment)
597 #define TYPE_HAS_REAL_ASSIGNMENT(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_real_assignment)
598
599 /* Returns the canonical version of TYPE.  In other words, if TYPE is
600    a typedef, returns the underlying type.  The cv-qualification of
601    the type returned matches the type input; they will always be
602    compatible types.  */
603 #define CANONICAL_TYPE_VARIANT(NODE)                                    \
604   (cp_build_type_variant (TYPE_MAIN_VARIANT (NODE),                     \
605                           TYPE_READONLY (NODE), TYPE_VOLATILE (NODE)))
606
607 /* Nonzero for _CLASSTYPE means that operator new and delete are defined,
608    respectively.  */
609 #define TYPE_GETS_NEW(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.gets_new)
610 #define TYPE_GETS_DELETE(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.gets_delete)
611 #define TYPE_GETS_REG_DELETE(NODE) (TYPE_GETS_DELETE (NODE) & 1)
612
613 /* Nonzero for _CLASSTYPE means that operator vec delete is defined and
614    takes the optional size_t argument.  */
615 #define TYPE_VEC_DELETE_TAKES_SIZE(NODE) \
616   (TYPE_LANG_SPECIFIC(NODE)->type_flags.vec_delete_takes_size)
617 #define TYPE_VEC_NEW_USES_COOKIE(NODE) \
618   (TYPE_NEEDS_DESTRUCTOR (NODE) \
619    || (TYPE_LANG_SPECIFIC (NODE) && TYPE_VEC_DELETE_TAKES_SIZE (NODE)))
620
621 /* Nonzero for TREE_LIST or _TYPE node means that this node is class-local.  */
622 #define TREE_NONLOCAL_FLAG(NODE) (TREE_LANG_FLAG_0 (NODE))
623
624 /* Nonzero means that this _CLASSTYPE node defines ways of converting
625    itself to other types.  */
626 #define TYPE_HAS_CONVERSION(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_type_conversion)
627
628 /* Nonzero means that this _CLASSTYPE node overloads operator=(X&).  */
629 #define TYPE_HAS_ASSIGN_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_assign_ref)
630 #define TYPE_HAS_CONST_ASSIGN_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_const_assign_ref)
631
632 /* Nonzero means that this _CLASSTYPE node has an X(X&) constructor.  */
633 #define TYPE_HAS_INIT_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_init_ref)
634 #define TYPE_HAS_CONST_INIT_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_const_init_ref)
635
636 /* Nonzero means that this type is being defined.  I.e., the left brace
637    starting the definition of this type has been seen.  */
638 #define TYPE_BEING_DEFINED(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.being_defined)
639 /* Nonzero means that this type has been redefined.  In this case, if
640    convenient, don't reprocess any methods that appear in its redefinition.  */
641 #define TYPE_REDEFINED(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.redefined)
642
643 /* Nonzero means that this type is a signature.  */
644 # define IS_SIGNATURE(NODE) (TYPE_LANG_SPECIFIC(NODE)?TYPE_LANG_SPECIFIC(NODE)->type_flags.is_signature:0)
645 # define SET_SIGNATURE(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.is_signature=1)
646 # define CLEAR_SIGNATURE(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.is_signature=0)
647
648 /* Nonzero means that this type is a signature pointer type.  */
649 # define IS_SIGNATURE_POINTER(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.is_signature_pointer)
650
651 /* Nonzero means that this type is a signature reference type.  */
652 # define IS_SIGNATURE_REFERENCE(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.is_signature_reference)
653
654 /* Nonzero means that this signature contains opaque type declarations.  */
655 #define SIGNATURE_HAS_OPAQUE_TYPEDECLS(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_opaque_typedecls)
656
657 /* Nonzero means that a signature table has been generated
658    for this signature.  */
659 #define SIGTABLE_HAS_BEEN_GENERATED(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.sigtable_has_been_generated)
660
661 /* If NODE is a class, this is the signature type that contains NODE's
662    signature after it has been computed using sigof().  */
663 #define CLASSTYPE_SIGNATURE(NODE) (TYPE_LANG_SPECIFIC(NODE)->signature)
664
665 /* If NODE is a signature pointer or signature reference, this is the
666    signature type the pointer/reference points to.  */
667 #define SIGNATURE_TYPE(NODE) (TYPE_LANG_SPECIFIC(NODE)->signature)
668
669 /* If NODE is a signature, this is a vector of all methods defined
670    in the signature or in its base types together with their default
671    implementations.  */
672 #define SIGNATURE_METHOD_VEC(NODE) (TYPE_LANG_SPECIFIC(NODE)->signature)
673
674 /* If NODE is a signature, this is the _TYPE node that contains NODE's
675    signature pointer type.  */
676 #define SIGNATURE_POINTER_TO(NODE) (TYPE_LANG_SPECIFIC(NODE)->signature_pointer_to)
677
678 /* If NODE is a signature, this is the _TYPE node that contains NODE's
679    signature reference type.  */
680 #define SIGNATURE_REFERENCE_TO(NODE) (TYPE_LANG_SPECIFIC(NODE)->signature_reference_to)
681
682 /* The is the VAR_DECL that contains NODE's rtti.  */
683 #define CLASSTYPE_RTTI(NODE) (TYPE_LANG_SPECIFIC(NODE)->rtti)
684
685 /* Nonzero means that this _CLASSTYPE node overloads operator().  */
686 #define TYPE_OVERLOADS_CALL_EXPR(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_call_overloaded)
687
688 /* Nonzero means that this _CLASSTYPE node overloads operator[].  */
689 #define TYPE_OVERLOADS_ARRAY_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_array_ref_overloaded)
690
691 /* Nonzero means that this _CLASSTYPE node overloads operator->.  */
692 #define TYPE_OVERLOADS_ARROW(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_arrow_overloaded)
693
694 /* Nonzero means that this _CLASSTYPE (or one of its ancestors) uses
695    multiple inheritance.  If this is 0 for the root of a type
696    hierarchy, then we can use more efficient search techniques.  */
697 #define TYPE_USES_MULTIPLE_INHERITANCE(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.uses_multiple_inheritance)
698
699 /* Nonzero means that this _CLASSTYPE (or one of its ancestors) uses
700    virtual base classes.  If this is 0 for the root of a type
701    hierarchy, then we can use more efficient search techniques.  */
702 #define TYPE_USES_VIRTUAL_BASECLASSES(NODE) (TREE_LANG_FLAG_3(NODE))
703
704 /* List of lists of member functions defined in this class.  */
705 #define CLASSTYPE_METHOD_VEC(NODE) (TYPE_LANG_SPECIFIC(NODE)->methods)
706
707 /* The first type conversion operator in the class (the others can be
708    searched with TREE_CHAIN), or the first non-constructor function if
709    there are no type conversion operators.  */
710 #define CLASSTYPE_FIRST_CONVERSION(NODE) \
711   TREE_VEC_LENGTH (CLASSTYPE_METHOD_VEC (NODE)) > 2 \
712     ? TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (NODE), 2) \
713     : NULL_TREE;
714
715 /* Pointer from any member function to the head of the list of
716    member functions of the type that member function belongs to.  */
717 #define CLASSTYPE_BASELINK_VEC(NODE) (TYPE_LANG_SPECIFIC(NODE)->baselink_vec)
718
719 /* Mark bits for depth-first and breath-first searches.  */
720 #define CLASSTYPE_MARKED(NODE)  (TYPE_LANG_SPECIFIC(NODE)->type_flags.marked)
721 #define CLASSTYPE_MARKED2(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.marked2)
722 #define CLASSTYPE_MARKED3(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.marked3)
723 #define CLASSTYPE_MARKED4(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.marked4)
724 #define CLASSTYPE_MARKED5(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.marked5)
725 #define CLASSTYPE_MARKED6(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.marked6)
726 /* Macros to modify the above flags */
727 #define SET_CLASSTYPE_MARKED(NODE)      (CLASSTYPE_MARKED(NODE) = 1)
728 #define CLEAR_CLASSTYPE_MARKED(NODE)    (CLASSTYPE_MARKED(NODE) = 0)
729 #define SET_CLASSTYPE_MARKED2(NODE)     (CLASSTYPE_MARKED2(NODE) = 1)
730 #define CLEAR_CLASSTYPE_MARKED2(NODE)   (CLASSTYPE_MARKED2(NODE) = 0)
731 #define SET_CLASSTYPE_MARKED3(NODE)     (CLASSTYPE_MARKED3(NODE) = 1)
732 #define CLEAR_CLASSTYPE_MARKED3(NODE)   (CLASSTYPE_MARKED3(NODE) = 0)
733 #define SET_CLASSTYPE_MARKED4(NODE)     (CLASSTYPE_MARKED4(NODE) = 1)
734 #define CLEAR_CLASSTYPE_MARKED4(NODE)   (CLASSTYPE_MARKED4(NODE) = 0)
735 #define SET_CLASSTYPE_MARKED5(NODE)     (CLASSTYPE_MARKED5(NODE) = 1)
736 #define CLEAR_CLASSTYPE_MARKED5(NODE)   (CLASSTYPE_MARKED5(NODE) = 0)
737 #define SET_CLASSTYPE_MARKED6(NODE)     (CLASSTYPE_MARKED6(NODE) = 1)
738 #define CLEAR_CLASSTYPE_MARKED6(NODE)   (CLASSTYPE_MARKED6(NODE) = 0)
739
740 #define CLASSTYPE_TAGS(NODE)            (TYPE_LANG_SPECIFIC(NODE)->tags)
741
742 /* If this class has any bases, this is the number of the base class from
743    which our VFIELD is based, -1 otherwise.  If this class has no base
744    classes, this is not used.
745    In D : B1, B2, PARENT would be 0, if D's vtable came from B1,
746    1, if D's vtable came from B2.  */
747 #define CLASSTYPE_VFIELD_PARENT(NODE)   (TYPE_LANG_SPECIFIC(NODE)->vfield_parent)
748
749 /* Remove when done merging.  */
750 #define CLASSTYPE_VFIELD(NODE) TYPE_VFIELD(NODE)
751
752 /* The number of virtual functions defined for this
753    _CLASSTYPE node.  */
754 #define CLASSTYPE_VSIZE(NODE) (TYPE_LANG_SPECIFIC(NODE)->vsize)
755 /* The virtual base classes that this type uses.  */
756 #define CLASSTYPE_VBASECLASSES(NODE) (TYPE_LANG_SPECIFIC(NODE)->vbases)
757 /* The virtual function pointer fields that this type contains.  */
758 #define CLASSTYPE_VFIELDS(NODE) (TYPE_LANG_SPECIFIC(NODE)->vfields)
759
760 /* Number of baseclasses defined for this type.
761    0 means no base classes.  */
762 #define CLASSTYPE_N_BASECLASSES(NODE) \
763   (TYPE_BINFO_BASETYPES (NODE) ? TREE_VEC_LENGTH (TYPE_BINFO_BASETYPES(NODE)) : 0)
764
765 /* Memoize the number of super classes (base classes) tha this node
766    has.  That way we can know immediately (albeit conservatively how
767    large a multiple-inheritance matrix we need to build to find
768    derivation information.  */
769 #define CLASSTYPE_N_SUPERCLASSES(NODE) (TYPE_LANG_SPECIFIC(NODE)->n_ancestors)
770 #define CLASSTYPE_N_VBASECLASSES(NODE) (TYPE_LANG_SPECIFIC(NODE)->n_vancestors)
771
772 /* Record how deep the inheritance is for this class so `void*' conversions
773    are less favorable than a conversion to the most base type.  */
774 #define CLASSTYPE_MAX_DEPTH(NODE) (TYPE_LANG_SPECIFIC(NODE)->max_depth)
775
776 /* Used for keeping search-specific information.  Any search routine
777    which uses this must define what exactly this slot is used for.  */
778 #define CLASSTYPE_SEARCH_SLOT(NODE) (TYPE_LANG_SPECIFIC(NODE)->search_slot)
779
780 /* Entry for keeping memoization tables for this type to
781    hopefully speed up search routines.  Since it is a pointer,
782    it can mean almost anything.  */
783 #define CLASSTYPE_MTABLE_ENTRY(NODE) (TYPE_LANG_SPECIFIC(NODE)->memoized_table_entry)
784
785 /* These are the size, mode and alignment of the type without its
786    virtual base classes, for when we use this type as a base itself.  */
787 #define CLASSTYPE_SIZE(NODE) (TYPE_LANG_SPECIFIC(NODE)->size)
788 #define CLASSTYPE_ALIGN(NODE) (TYPE_LANG_SPECIFIC(NODE)->align)
789
790 /* A cons list of structure elements which either have constructors
791    to be called, or virtual function table pointers which
792    need initializing.  Depending on what is being initialized,
793    the TREE_PURPOSE and TREE_VALUE fields have different meanings:
794
795    Member initialization: <FIELD_DECL, TYPE>
796    Base class construction: <NULL_TREE, BASETYPE>
797    Base class initialization: <BASE_INITIALIZATION, THESE_INITIALIZATIONS>
798    Whole type: <MEMBER_INIT, BASE_INIT>.  */
799 #define CLASSTYPE_BASE_INIT_LIST(NODE) (TYPE_LANG_SPECIFIC(NODE)->base_init_list)
800
801 /* A cons list of virtual functions which cannot be inherited by
802    derived classes.  When deriving from this type, the derived
803    class must provide its own definition for each of these functions.  */
804 #define CLASSTYPE_ABSTRACT_VIRTUALS(NODE) (TYPE_LANG_SPECIFIC(NODE)->abstract_virtuals)
805
806 /* Nonzero means that this aggr type has been `closed' by a semicolon.  */
807 #define CLASSTYPE_GOT_SEMICOLON(NODE) (TYPE_LANG_SPECIFIC (NODE)->type_flags.got_semicolon)
808
809 /* Nonzero means that the main virtual function table pointer needs to be
810    set because base constructors have placed the wrong value there.
811    If this is zero, it means that they placed the right value there,
812    and there is no need to change it.  */
813 #define CLASSTYPE_NEEDS_VIRTUAL_REINIT(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.needs_virtual_reinit)
814
815 /* Nonzero means that if this type has virtual functions, that
816    the virtual function table will be written out.  */
817 #define CLASSTYPE_VTABLE_NEEDS_WRITING(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.vtable_needs_writing)
818
819 /* Nonzero means that this type defines its own local type declarations.  */
820 #define CLASSTYPE_LOCAL_TYPEDECLS(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.local_typedecls)
821
822 /* Nonzero means that this type has an X() constructor.  */
823 #define TYPE_HAS_DEFAULT_CONSTRUCTOR(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_default_ctor)
824
825 /* Nonzero means the type declared a ctor as private or protected.  We
826    use this to make sure we don't try to generate a copy ctor for a 
827    class that has a member of type NODE.  */
828 #define TYPE_HAS_NONPUBLIC_CTOR(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_nonpublic_ctor)
829
830 /* Ditto, for operator=.  */
831 #define TYPE_HAS_NONPUBLIC_ASSIGN_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_nonpublic_assign_ref)
832
833 /* Many routines need to cons up a list of basetypes for access
834    checking.  This field contains a TREE_LIST node whose TREE_VALUE
835    is the main variant of the type, and whose TREE_VIA_PUBLIC
836    and TREE_VIA_VIRTUAL bits are correctly set.  */
837 #define CLASSTYPE_AS_LIST(NODE) (TYPE_LANG_SPECIFIC(NODE)->as_list)
838 /* Same, but cache a list whose value is the name of this type.  */
839 #define CLASSTYPE_ID_AS_LIST(NODE) (TYPE_LANG_SPECIFIC(NODE)->id_as_list)
840 /* Same, but cache a list whose value is the binfo of this type.  */
841 #define CLASSTYPE_BINFO_AS_LIST(NODE) (TYPE_LANG_SPECIFIC(NODE)->binfo_as_list)
842
843 /* A list of class types with which this type is a friend.  */
844 #define CLASSTYPE_FRIEND_CLASSES(NODE) (TYPE_LANG_SPECIFIC(NODE)->friend_classes)
845
846 #ifdef MI_MATRIX
847 /* Keep an inheritance lattice around so we can quickly tell whether
848    a type is derived from another or not.  */
849 #define CLASSTYPE_MI_MATRIX(NODE) (TYPE_LANG_SPECIFIC(NODE)->mi_matrix)
850 #endif
851
852 /* Say whether this node was declared as a "class" or a "struct".  */
853 #define CLASSTYPE_DECLARED_CLASS(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.declared_class)
854
855 /* Nonzero if this class has const members which have no specified initialization.  */
856 #define CLASSTYPE_READONLY_FIELDS_NEED_INIT(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.const_needs_init)
857
858 /* Nonzero if this class has ref members which have no specified initialization.  */
859 #define CLASSTYPE_REF_FIELDS_NEED_INIT(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.ref_needs_init)
860
861 /* Nonzero if this class is included from a header file which employs
862    `#pragma interface', and it is not included in its implementation file.  */
863 #define CLASSTYPE_INTERFACE_ONLY(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.interface_only)
864
865 /* Same as above, but for classes whose purpose we do not know.  */
866 #define CLASSTYPE_INTERFACE_UNKNOWN(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.interface_unknown)
867 #define CLASSTYPE_INTERFACE_KNOWN(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.interface_unknown == 0)
868 #define SET_CLASSTYPE_INTERFACE_UNKNOWN_X(NODE,X) (TYPE_LANG_SPECIFIC(NODE)->type_flags.interface_unknown = !!(X))
869 #define SET_CLASSTYPE_INTERFACE_UNKNOWN(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.interface_unknown = 1)
870 #define SET_CLASSTYPE_INTERFACE_KNOWN(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.interface_unknown = 0)
871
872 /* Nonzero if a _DECL node requires us to output debug info for this class.  */
873 #define CLASSTYPE_DEBUG_REQUESTED(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.debug_requested)
874 \f
875 /* Additional macros for inheritance information.  */
876
877 /* When following an binfo-specific chain, this is the cumulative
878    via-public flag.  */
879 #define BINFO_VIA_PUBLIC(NODE) TREE_LANG_FLAG_5 (NODE)
880
881 #ifdef MI_MATRIX
882 /* When building a matrix to determine by a single lookup
883    whether one class is derived from another or not,
884    this field is the index of the class in the table.  */
885 #define CLASSTYPE_CID(NODE) (TYPE_LANG_SPECIFIC(NODE)->cid)
886 #define BINFO_CID(NODE) CLASSTYPE_CID(BINFO_TYPE(NODE))
887 #endif
888
889 /* Nonzero means marked by DFS or BFS search, including searches
890    by `get_binfo' and `get_base_distance'.  */
891 #define BINFO_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?CLASSTYPE_MARKED(BINFO_TYPE(NODE)):TREE_LANG_FLAG_0(NODE))
892 /* Macros needed because of C compilers that don't allow conditional
893    expressions to be lvalues.  Grr!  */
894 #define SET_BINFO_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?SET_CLASSTYPE_MARKED(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_0(NODE)=1))
895 #define CLEAR_BINFO_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?CLEAR_CLASSTYPE_MARKED(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_0(NODE)=0))
896
897 /* Nonzero means marked in building initialization list.  */
898 #define BINFO_BASEINIT_MARKED(NODE) CLASSTYPE_MARKED2 (BINFO_TYPE (NODE))
899 /* Modifier macros */
900 #define SET_BINFO_BASEINIT_MARKED(NODE) SET_CLASSTYPE_MARKED2 (BINFO_TYPE (NODE))
901 #define CLEAR_BINFO_BASEINIT_MARKED(NODE) CLEAR_CLASSTYPE_MARKED2 (BINFO_TYPE (NODE))
902
903 /* Nonzero means marked in search through virtual inheritance hierarchy.  */
904 #define BINFO_VBASE_MARKED(NODE) CLASSTYPE_MARKED2 (BINFO_TYPE (NODE))
905 /* Modifier macros */
906 #define SET_BINFO_VBASE_MARKED(NODE) SET_CLASSTYPE_MARKED2 (BINFO_TYPE (NODE))
907 #define CLEAR_BINFO_VBASE_MARKED(NODE) CLEAR_CLASSTYPE_MARKED2 (BINFO_TYPE (NODE))
908
909 /* Nonzero means marked in search for members or member functions.  */
910 #define BINFO_FIELDS_MARKED(NODE) \
911   (TREE_VIA_VIRTUAL(NODE)?CLASSTYPE_MARKED2 (BINFO_TYPE (NODE)):TREE_LANG_FLAG_2(NODE))
912 #define SET_BINFO_FIELDS_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?SET_CLASSTYPE_MARKED2(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_2(NODE)=1))
913 #define CLEAR_BINFO_FIELDS_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?CLEAR_CLASSTYPE_MARKED2(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_2(NODE)=0))
914
915 /* Nonzero means that this class is on a path leading to a new vtable.  */
916 #define BINFO_VTABLE_PATH_MARKED(NODE) \
917   (TREE_VIA_VIRTUAL(NODE)?CLASSTYPE_MARKED3(BINFO_TYPE(NODE)):TREE_LANG_FLAG_3(NODE))
918 #define SET_BINFO_VTABLE_PATH_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?SET_CLASSTYPE_MARKED3(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_3(NODE)=1))
919 #define CLEAR_BINFO_VTABLE_PATH_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?CLEAR_CLASSTYPE_MARKED3(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_3(NODE)=0))
920
921 /* Nonzero means that this class has a new vtable.  */
922 #define BINFO_NEW_VTABLE_MARKED(NODE) \
923   (TREE_VIA_VIRTUAL(NODE)?CLASSTYPE_MARKED4(BINFO_TYPE(NODE)):TREE_LANG_FLAG_4(NODE))
924 #define SET_BINFO_NEW_VTABLE_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?SET_CLASSTYPE_MARKED4(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_4(NODE)=1))
925 #define CLEAR_BINFO_NEW_VTABLE_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?CLEAR_CLASSTYPE_MARKED4(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_4(NODE)=0))
926
927 /* Nonzero means this class has initialized its virtual baseclasses.  */
928 #define BINFO_VBASE_INIT_MARKED(NODE) \
929   (TREE_VIA_VIRTUAL(NODE)?CLASSTYPE_MARKED5(BINFO_TYPE(NODE)):TREE_LANG_FLAG_5(NODE))
930 #define SET_BINFO_VBASE_INIT_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?SET_CLASSTYPE_MARKED5(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_5(NODE)=1))
931 #define CLEAR_BINFO_VBASE_INIT_MARKED(NODE) (TREE_VIA_VIRTUAL(NODE)?CLEAR_CLASSTYPE_MARKED5(BINFO_TYPE(NODE)):(TREE_LANG_FLAG_5(NODE)=0))
932 \f
933 /* Accessor macros for the vfield slots in structures.  */
934
935 /* Get the assoc info that caused this vfield to exist.  */
936 #define VF_BINFO_VALUE(NODE) TREE_PURPOSE (NODE)
937
938 /* Get that same information as a _TYPE.  */
939 #define VF_BASETYPE_VALUE(NODE) TREE_VALUE (NODE)
940
941 /* Get the value of the top-most type dominating the non-`normal' vfields.  */
942 #define VF_DERIVED_VALUE(NODE) (VF_BINFO_VALUE (NODE) ? BINFO_TYPE (VF_BINFO_VALUE (NODE)) : NULL_TREE)
943
944 /* Get the value of the top-most type that's `normal' for the vfield.  */
945 #define VF_NORMAL_VALUE(NODE) TREE_TYPE (NODE)
946 \f
947 /* Nonzero for TREE_LIST node means that this list of things
948    is a list of parameters, as opposed to a list of expressions.  */
949 #define TREE_PARMLIST(NODE) ((NODE)->common.unsigned_flag) /* overloaded! */
950
951 /* For FUNCTION_TYPE or METHOD_TYPE, a list of the exceptions that
952    this type can raise.  */
953 #define TYPE_RAISES_EXCEPTIONS(NODE) TYPE_NONCOPIED_PARTS (NODE)
954
955 /* The binding level associated with the namespace.  */
956 #define NAMESPACE_LEVEL(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.level)
957 \f
958 struct lang_decl_flags
959 {
960 #ifdef ONLY_INT_FIELDS
961   int language : 8;
962 #else
963   enum languages language : 8;
964 #endif
965
966   unsigned operator_attr : 1;
967   unsigned constructor_attr : 1;
968   unsigned returns_first_arg : 1;
969   unsigned preserves_first_arg : 1;
970   unsigned friend_attr : 1;
971   unsigned static_function : 1;
972   unsigned const_memfunc : 1;
973   unsigned volatile_memfunc : 1;
974
975   unsigned abstract_virtual : 1;
976   unsigned permanent_attr : 1 ;
977   unsigned constructor_for_vbase_attr : 1;
978   unsigned mutable_flag : 1;
979   unsigned is_default_implementation : 1;
980   unsigned saved_inline : 1;
981   unsigned use_template : 2;
982
983   unsigned nonconverting : 1;
984   unsigned declared_inline : 1;
985   unsigned not_really_extern : 1;
986   unsigned comdat : 1;
987   unsigned needs_final_overrider : 1;
988   unsigned dummy : 3;
989
990   tree access;
991   tree context;
992   tree memfunc_pointer_to;
993   tree template_info;
994   struct binding_level *level;
995 };
996
997 struct lang_decl
998 {
999   struct lang_decl_flags decl_flags;
1000
1001   tree main_decl_variant;
1002   struct pending_inline *pending_inline_info;
1003 };
1004
1005 /* Non-zero if NODE is a _DECL with TREE_READONLY set.  */
1006 #define TREE_READONLY_DECL_P(NODE) \
1007   (TREE_READONLY (NODE) && TREE_CODE_CLASS (TREE_CODE (NODE)) == 'd')
1008
1009 /* Non-zero iff DECL is memory-based.  The DECL_RTL of
1010    certain const variables might be a CONST_INT, or a REG
1011    in some cases.  We cannot use `memory_operand' as a test
1012    here because on most RISC machines, a variable's address
1013    is not, by itself, a legitimate address.  */
1014 #define DECL_IN_MEMORY_P(NODE) \
1015   (DECL_RTL (NODE) != NULL_RTX && GET_CODE (DECL_RTL (NODE)) == MEM)
1016
1017 /* For FUNCTION_DECLs: return the language in which this decl
1018    was declared.  */
1019 #define DECL_LANGUAGE(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.language)
1020
1021 /* For FUNCTION_DECLs: nonzero means that this function is a constructor.  */
1022 #define DECL_CONSTRUCTOR_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.constructor_attr)
1023 /* For FUNCTION_DECLs: nonzero means that this function is a constructor
1024    for an object with virtual baseclasses.  */
1025 #define DECL_CONSTRUCTOR_FOR_VBASE_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.constructor_for_vbase_attr)
1026
1027 /* For FUNCTION_DECLs: nonzero means that this function is a default
1028    implementation of a signature method.  */
1029 #define IS_DEFAULT_IMPLEMENTATION(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.is_default_implementation)
1030
1031 /* For FUNCTION_DECLs: nonzero means that the constructor
1032    is known to return a non-zero `this' unchanged.  */
1033 #define DECL_RETURNS_FIRST_ARG(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.returns_first_arg)
1034
1035 /* Nonzero for FUNCTION_DECL means that this constructor is known to
1036    not make any assignment to `this', and therefore can be trusted
1037    to return it unchanged.  Otherwise, we must re-assign `current_class_ptr'
1038    after performing base initializations.  */
1039 #define DECL_PRESERVES_THIS(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.preserves_first_arg)
1040
1041 /* Nonzero for _DECL means that this decl appears in (or will appear
1042    in) as a member in a RECORD_TYPE or UNION_TYPE node.  It is also for
1043    detecting circularity in case members are multiply defined.  In the
1044    case of a VAR_DECL, it is also used to determine how program storage
1045    should be allocated.  */
1046 #define DECL_IN_AGGR_P(NODE) (DECL_LANG_FLAG_3(NODE))
1047
1048 /* Nonzero for FUNCTION_DECL means that this decl is just a
1049    friend declaration, and should not be added to the list of
1050    member functions for this class.  */
1051 #define DECL_FRIEND_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.friend_attr)
1052
1053 /* Nonzero for FUNCTION_DECL means that this decl is a static
1054    member function.  */
1055 #define DECL_STATIC_FUNCTION_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.static_function)
1056
1057 /* Nonzero for a class member means that it is shared between all objects
1058    of that class.  */
1059 #define SHARED_MEMBER_P(NODE) \
1060   (TREE_CODE (NODE) == VAR_DECL || TREE_CODE (NODE) == TYPE_DECL \
1061    || TREE_CODE (NODE) == CONST_DECL)
1062                                 
1063 /* Nonzero for FUNCTION_DECL means that this decl is a non-static
1064    member function.  */
1065 #define DECL_NONSTATIC_MEMBER_FUNCTION_P(NODE) \
1066   (TREE_CODE (TREE_TYPE (NODE)) == METHOD_TYPE)
1067
1068 /* Nonzero for FUNCTION_DECL means that this decl is a member function
1069    (static or non-static).  */
1070 #define DECL_FUNCTION_MEMBER_P(NODE) \
1071  (DECL_NONSTATIC_MEMBER_FUNCTION_P (NODE) || DECL_STATIC_FUNCTION_P (NODE))
1072
1073 /* Nonzero for FUNCTION_DECL means that this member function
1074    has `this' as const X *const.  */
1075 #define DECL_CONST_MEMFUNC_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.const_memfunc)
1076
1077 /* Nonzero for FUNCTION_DECL means that this member function
1078    has `this' as volatile X *const.  */
1079 #define DECL_VOLATILE_MEMFUNC_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.volatile_memfunc)
1080
1081 /* Nonzero for _DECL means that this member object type
1082    is mutable.  */
1083 #define DECL_MUTABLE_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.mutable_flag)
1084
1085 /* Nonzero for _DECL means that this constructor is a non-converting
1086    constructor.  */
1087 #define DECL_NONCONVERTING_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.nonconverting)
1088
1089 /* Nonzero for FUNCTION_DECL means that this member function
1090    exists as part of an abstract class's interface.  */
1091 #define DECL_ABSTRACT_VIRTUAL_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.abstract_virtual)
1092
1093 /* Nonzero for FUNCTION_DECL means that this member function
1094    must be overridden by derived classes.  */
1095 #define DECL_NEEDS_FINAL_OVERRIDER_P(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.needs_final_overrider)
1096
1097 /* Nonzero if allocated on permanent_obstack.  */
1098 #define LANG_DECL_PERMANENT(LANGDECL) ((LANGDECL)->decl_flags.permanent_attr)
1099
1100 /* The _TYPE context in which this _DECL appears.  This field holds the
1101    class where a virtual function instance is actually defined, and the
1102    lexical scope of a friend function defined in a class body. */
1103 #define DECL_CLASS_CONTEXT(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.context)
1104 #define DECL_REAL_CONTEXT(NODE) \
1105   ((TREE_CODE (NODE) == FUNCTION_DECL && DECL_FUNCTION_MEMBER_P (NODE)) \
1106    ? DECL_CLASS_CONTEXT (NODE) : DECL_CONTEXT (NODE))
1107
1108 /* 1 iff NODE has namespace scope, including the global namespace.  */
1109 #define DECL_NAMESPACE_SCOPE_P(NODE) \
1110   (DECL_CONTEXT (NODE) == NULL_TREE \
1111    || TREE_CODE (DECL_CONTEXT (NODE)) == NAMESPACE_DECL)
1112
1113 /* 1 iff NODE is a class member.  */
1114 #define DECL_CLASS_SCOPE_P(NODE) \
1115   (DECL_CONTEXT (NODE) \
1116    && TREE_CODE_CLASS (TREE_CODE (DECL_CONTEXT (NODE))) == 't')
1117
1118 /* For a NAMESPACE_DECL: the list of using namespace directives
1119    The PURPOSE is the used namespace, the value is the namespace
1120    that is the common ancestor. */
1121 #define DECL_NAMESPACE_USING(NODE) DECL_VINDEX(NODE)
1122
1123 /* In a NAMESPACE_DECL, the DECL_INITIAL is used to record all users
1124    of a namespace, to record the transitive closure of using namespace. */
1125 #define DECL_NAMESPACE_USERS(NODE) DECL_INITIAL (NODE)
1126
1127 /* In a TREE_LIST concatenating using directives, indicate indirekt
1128    directives  */
1129 #define TREE_INDIRECT_USING(NODE) ((NODE)->common.lang_flag_0)
1130
1131 /* In a VAR_DECL for a variable declared in a for statement,
1132    this is the shadowed (local) variable.  */
1133 #define DECL_SHADOWED_FOR_VAR(NODE) DECL_RESULT(NODE)
1134
1135 /* Points back to the decl which caused this lang_decl to be allocated.  */
1136 #define DECL_MAIN_VARIANT(NODE) (DECL_LANG_SPECIFIC(NODE)->main_decl_variant)
1137
1138 /* For a FUNCTION_DECL: if this function was declared inline inside of
1139    a class declaration, this is where the text for the function is
1140    squirreled away.  */
1141 #define DECL_PENDING_INLINE_INFO(NODE) (DECL_LANG_SPECIFIC(NODE)->pending_inline_info)
1142
1143 /* True if on the saved_inlines (see decl2.c) list.  */
1144 #define DECL_SAVED_INLINE(DECL) \
1145   (DECL_LANG_SPECIFIC(DECL)->decl_flags.saved_inline)
1146
1147 /* For a FUNCTION_DECL: if this function was declared inside a signature
1148    declaration, this is the corresponding member function pointer that was
1149    created for it.  */
1150 #define DECL_MEMFUNC_POINTER_TO(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.memfunc_pointer_to)
1151
1152 /* For a FIELD_DECL: this points to the signature member function from
1153    which this signature member function pointer was created.  */
1154 #define DECL_MEMFUNC_POINTING_TO(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.memfunc_pointer_to)
1155
1156 /* For a VAR_DECL or FUNCTION_DECL: template-specific information.  */
1157 #define DECL_TEMPLATE_INFO(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.template_info)
1158 #define CLASSTYPE_TEMPLATE_INFO(NODE) (TYPE_LANG_SPECIFIC(NODE)->template_info)
1159 #define TI_TEMPLATE(NODE) (TREE_PURPOSE (NODE))
1160 #define TI_ARGS(NODE) (TREE_VALUE (NODE))
1161 #define TI_SPEC_INFO(NODE) (TREE_CHAIN (NODE))
1162 #define TI_USES_TEMPLATE_PARMS(NODE) TREE_LANG_FLAG_0 (NODE)
1163 #define TI_PENDING_TEMPLATE_FLAG(NODE) TREE_LANG_FLAG_1 (NODE)
1164 /* TI_PENDING_SPECIALIZATION_FLAG on a template-info node indicates
1165    that the template is a specialization of a member template, but
1166    that we don't yet know which one.  */
1167 #define TI_PENDING_SPECIALIZATION_FLAG(NODE) TREE_LANG_FLAG_1 (NODE)
1168 #define DECL_TI_TEMPLATE(NODE)      TI_TEMPLATE (DECL_TEMPLATE_INFO (NODE))
1169 #define DECL_TI_ARGS(NODE)          TI_ARGS (DECL_TEMPLATE_INFO (NODE))
1170 #define CLASSTYPE_TI_TEMPLATE(NODE) TI_TEMPLATE (CLASSTYPE_TEMPLATE_INFO (NODE))
1171 #define CLASSTYPE_TI_ARGS(NODE)     TI_ARGS (CLASSTYPE_TEMPLATE_INFO (NODE))
1172 #define CLASSTYPE_TI_SPEC_INFO(NODE) TI_SPEC_INFO (CLASSTYPE_TEMPLATE_INFO (NODE))
1173 #define INNERMOST_TEMPLATE_PARMS(NODE)  TREE_VALUE(NODE)
1174
1175 #define TEMPLATE_PARMS_FOR_INLINE(NODE) TREE_LANG_FLAG_1 (NODE)
1176
1177 #define DECL_SAVED_TREE(NODE)           DECL_MEMFUNC_POINTER_TO (NODE)
1178 #define COMPOUND_STMT_NO_SCOPE(NODE)    TREE_LANG_FLAG_0 (NODE)
1179 #define NEW_EXPR_USE_GLOBAL(NODE)       TREE_LANG_FLAG_0 (NODE)
1180 #define DELETE_EXPR_USE_GLOBAL(NODE)    TREE_LANG_FLAG_0 (NODE)
1181 #define DELETE_EXPR_USE_VEC(NODE)       TREE_LANG_FLAG_1 (NODE)
1182 #define LOOKUP_EXPR_GLOBAL(NODE)        TREE_LANG_FLAG_0 (NODE)
1183
1184 /* The TYPE_MAIN_DECL for a class template type is a TYPE_DECL, not a
1185    TEMPLATE_DECL.  This macro determines whether or not a given class
1186    type is really a template type, as opposed to an instantiation or
1187    specialization of one.  */
1188 #define CLASSTYPE_IS_TEMPLATE(NODE)  \
1189   (CLASSTYPE_TEMPLATE_INFO (NODE)    \
1190    && !CLASSTYPE_USE_TEMPLATE (NODE) \
1191    && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (NODE)))
1192
1193 #define TYPENAME_TYPE_FULLNAME(NODE)    CLASSTYPE_SIZE (NODE)
1194
1195 /* Nonzero in INT_CST means that this int is negative by dint of
1196    using a twos-complement negated operand.  */
1197 #define TREE_NEGATED_INT(NODE) (TREE_LANG_FLAG_0 (NODE))
1198
1199 #if 0                           /* UNUSED */
1200 /* Nonzero in any kind of _EXPR or _REF node means that it is a call
1201    to a storage allocation routine.  If, later, alternate storage
1202    is found to hold the object, this call can be ignored.  */
1203 #define TREE_CALLS_NEW(NODE) (TREE_LANG_FLAG_1 (NODE))
1204 #endif
1205
1206 /* Nonzero in any kind of _TYPE that uses multiple inheritance
1207    or virtual baseclasses.  */
1208 #define TYPE_USES_COMPLEX_INHERITANCE(NODE) (TREE_LANG_FLAG_1 (NODE))
1209
1210 #if 0                           /* UNUSED */
1211 /* Nonzero in IDENTIFIER_NODE means that this name is not the name the user
1212    gave; it's a DECL_NESTED_TYPENAME.  Someone may want to set this on
1213    mangled function names, too, but it isn't currently.  */
1214 #define TREE_MANGLED(NODE) (TREE_LANG_FLAG_0 (NODE))
1215 #endif
1216
1217 #if 0                           /* UNUSED */
1218 /* Nonzero in IDENTIFIER_NODE means that this name is overloaded, and
1219    should be looked up in a non-standard way.  */
1220 #define DECL_OVERLOADED(NODE) (FOO)
1221 #endif
1222
1223 /* Nonzero if this (non-TYPE)_DECL has its virtual attribute set.
1224    For a FUNCTION_DECL, this is when the function is a virtual function.
1225    For a VAR_DECL, this is when the variable is a virtual function table.
1226    For a FIELD_DECL, when the field is the field for the virtual function table.
1227    For an IDENTIFIER_NODE, nonzero if any function with this name
1228    has been declared virtual.
1229
1230    For a _TYPE if it uses virtual functions (or is derived from
1231    one that does).  */
1232 #define TYPE_VIRTUAL_P(NODE) (TREE_LANG_FLAG_2 (NODE))
1233
1234 extern int flag_new_for_scope;
1235
1236 /* This flag is true of a local VAR_DECL if it was declared in a for
1237    statement, but we are no longer in the scope of the for.  */
1238 #define DECL_DEAD_FOR_LOCAL(NODE) DECL_LANG_FLAG_7 (NODE)
1239
1240 /* This flag is set on a VAR_DECL that is a DECL_DEAD_FOR_LOCAL
1241    if we already emitted a warning about using it.  */
1242 #define DECL_ERROR_REPORTED(NODE) DECL_LANG_FLAG_0 (NODE)
1243
1244 /* This _DECL represents a compiler-generated entity.  */
1245 #define SET_DECL_ARTIFICIAL(NODE) (DECL_ARTIFICIAL (NODE) = 1)
1246
1247 /* Record whether a typedef for type `int' was actually `signed int'.  */
1248 #define C_TYPEDEF_EXPLICITLY_SIGNED(exp) DECL_LANG_FLAG_1 ((exp))
1249
1250 /* Nonzero if the type T promotes to itself.
1251    ANSI C states explicitly the list of types that promote;
1252    in particular, short promotes to int even if they have the same width.  */
1253 #define C_PROMOTING_INTEGER_TYPE_P(t)                           \
1254   (TREE_CODE ((t)) == INTEGER_TYPE                              \
1255    && (TYPE_MAIN_VARIANT (t) == char_type_node                  \
1256        || TYPE_MAIN_VARIANT (t) == signed_char_type_node        \
1257        || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node      \
1258        || TYPE_MAIN_VARIANT (t) == short_integer_type_node      \
1259        || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node))
1260
1261 #define INTEGRAL_CODE_P(CODE) \
1262   (CODE == INTEGER_TYPE || CODE == ENUMERAL_TYPE || CODE == BOOLEAN_TYPE)
1263 #define ARITHMETIC_TYPE_P(TYPE) (INTEGRAL_TYPE_P (TYPE) || FLOAT_TYPE_P (TYPE))
1264
1265 /* Mark which labels are explicitly declared.
1266    These may be shadowed, and may be referenced from nested functions.  */
1267 #define C_DECLARED_LABEL_FLAG(label) TREE_LANG_FLAG_1 (label)
1268
1269 /* Record whether a type or decl was written with nonconstant size.
1270    Note that TYPE_SIZE may have simplified to a constant.  */
1271 #define C_TYPE_VARIABLE_SIZE(type) TREE_LANG_FLAG_4 (type)
1272 #define C_DECL_VARIABLE_SIZE(type) DECL_LANG_FLAG_8 (type)
1273
1274 /* Nonzero for _TYPE means that the _TYPE defines
1275    at least one constructor.  */
1276 #define TYPE_HAS_CONSTRUCTOR(NODE) (TYPE_LANG_FLAG_1(NODE))
1277
1278 /* When appearing in an INDIRECT_REF, it means that the tree structure
1279    underneath is actually a call to a constructor.  This is needed
1280    when the constructor must initialize local storage (which can
1281    be automatically destroyed), rather than allowing it to allocate
1282    space from the heap.
1283
1284    When appearing in a SAVE_EXPR, it means that underneath
1285    is a call to a constructor.
1286
1287    When appearing in a CONSTRUCTOR, it means that it was
1288    a GNU C constructor expression.
1289
1290    When appearing in a FIELD_DECL, it means that this field
1291    has been duly initialized in its constructor.  */
1292 #define TREE_HAS_CONSTRUCTOR(NODE) (TREE_LANG_FLAG_4(NODE))
1293
1294 #define EMPTY_CONSTRUCTOR_P(NODE) (TREE_CODE (NODE) == CONSTRUCTOR \
1295                                    && CONSTRUCTOR_ELTS (NODE) == NULL_TREE)
1296
1297 #if 0
1298 /* Indicates that a NON_LVALUE_EXPR came from a C++ reference.
1299    Used to generate more helpful error message in case somebody
1300    tries to take its address.  */
1301 #define TREE_REFERENCE_EXPR(NODE) (TREE_LANG_FLAG_3(NODE))
1302 #endif
1303
1304 /* Nonzero for _TYPE means that the _TYPE defines a destructor.  */
1305 #define TYPE_HAS_DESTRUCTOR(NODE) (TYPE_LANG_FLAG_2(NODE))
1306
1307 #if 0
1308 /* Nonzero for _TYPE node means that creating an object of this type
1309    will involve a call to a constructor.  This can apply to objects
1310    of ARRAY_TYPE if the type of the elements needs a constructor.  */
1311 #define TYPE_NEEDS_CONSTRUCTING(NODE) (TYPE_LANG_FLAG_3(NODE))
1312 #endif
1313
1314 /* Nonzero means that an object of this type can not be initialized using
1315    an initializer list.  */
1316 #define CLASSTYPE_NON_AGGREGATE(NODE) \
1317   (TYPE_LANG_SPECIFIC (NODE)->type_flags.non_aggregate)
1318 #define TYPE_NON_AGGREGATE_CLASS(NODE) \
1319   (IS_AGGR_TYPE (NODE) && CLASSTYPE_NON_AGGREGATE (NODE))
1320
1321 /* Nonzero if there is a user-defined X::op=(x&) for this class.  */
1322 #define TYPE_HAS_REAL_ASSIGN_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_real_assign_ref)
1323 #define TYPE_HAS_COMPLEX_ASSIGN_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_complex_assign_ref)
1324 #define TYPE_HAS_ABSTRACT_ASSIGN_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_abstract_assign_ref)
1325 #define TYPE_HAS_COMPLEX_INIT_REF(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.has_complex_init_ref)
1326
1327 /* Nonzero for _TYPE node means that destroying an object of this type
1328    will involve a call to a destructor.  This can apply to objects
1329    of ARRAY_TYPE is the type of the elements needs a destructor.  */
1330 #define TYPE_NEEDS_DESTRUCTOR(NODE) (TYPE_LANG_FLAG_4(NODE))
1331
1332 /* Nonzero for class type means that initialization of this type can use
1333    a bitwise copy.  */
1334 #define TYPE_HAS_TRIVIAL_INIT_REF(NODE) \
1335   (TYPE_HAS_INIT_REF (NODE) && ! TYPE_HAS_COMPLEX_INIT_REF (NODE))
1336
1337 /* Nonzero for class type means that assignment of this type can use
1338    a bitwise copy.  */
1339 #define TYPE_HAS_TRIVIAL_ASSIGN_REF(NODE) \
1340   (TYPE_HAS_ASSIGN_REF (NODE) && ! TYPE_HAS_COMPLEX_ASSIGN_REF (NODE))
1341
1342 #define TYPE_PTRMEM_P(NODE)                                     \
1343   (TREE_CODE (NODE) == POINTER_TYPE                             \
1344    && TREE_CODE (TREE_TYPE (NODE)) == OFFSET_TYPE)
1345 #define TYPE_PTR_P(NODE)                                \
1346   (TREE_CODE (NODE) == POINTER_TYPE                     \
1347    && TREE_CODE (TREE_TYPE (NODE)) != OFFSET_TYPE)
1348 #define TYPE_PTROB_P(NODE)                                              \
1349   (TYPE_PTR_P (NODE) && TREE_CODE (TREE_TYPE (NODE)) != FUNCTION_TYPE   \
1350    && TREE_CODE (TREE_TYPE (NODE)) != VOID_TYPE)
1351 #define TYPE_PTROBV_P(NODE)                                             \
1352   (TYPE_PTR_P (NODE) && TREE_CODE (TREE_TYPE (NODE)) != FUNCTION_TYPE)
1353 #define TYPE_PTRFN_P(NODE)                              \
1354   (TREE_CODE (NODE) == POINTER_TYPE                     \
1355    && TREE_CODE (TREE_TYPE (NODE)) == FUNCTION_TYPE)
1356
1357 /* Nonzero for _TYPE node means that this type is a pointer to member
1358    function type.  */
1359 #define TYPE_PTRMEMFUNC_P(NODE) (TREE_CODE(NODE) == RECORD_TYPE && TYPE_LANG_SPECIFIC(NODE)->type_flags.ptrmemfunc_flag)
1360 #define TYPE_PTRMEMFUNC_FLAG(NODE) (TYPE_LANG_SPECIFIC(NODE)->type_flags.ptrmemfunc_flag)
1361 /* Get the POINTER_TYPE to the METHOD_TYPE associated with this
1362    pointer to member function.  TYPE_PTRMEMFUNC_P _must_ be true,
1363    before using this macro.  */
1364 #define TYPE_PTRMEMFUNC_FN_TYPE(NODE) (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (TREE_CHAIN (TREE_CHAIN (TYPE_FIELDS (NODE)))))))
1365 /* These are use to manipulate the canonical RECORD_TYPE from the
1366    hashed POINTER_TYPE, and can only be used on the POINTER_TYPE.  */
1367 #define TYPE_GET_PTRMEMFUNC_TYPE(NODE) ((tree)TYPE_LANG_SPECIFIC(NODE))
1368 #define TYPE_SET_PTRMEMFUNC_TYPE(NODE, VALUE) (TYPE_LANG_SPECIFIC(NODE) = ((struct lang_type *)(void*)(VALUE)))
1369 /* These are to get the delta2 and pfn fields from a TYPE_PTRMEMFUNC_P.  */
1370 #define DELTA2_FROM_PTRMEMFUNC(NODE) (build_component_ref (build_component_ref ((NODE), pfn_or_delta2_identifier, NULL_TREE, 0), delta2_identifier, NULL_TREE, 0))
1371 #define PFN_FROM_PTRMEMFUNC(NODE) (build_component_ref (build_component_ref ((NODE), pfn_or_delta2_identifier, NULL_TREE, 0), pfn_identifier, NULL_TREE, 0))
1372
1373 /* Nonzero for VAR_DECL and FUNCTION_DECL node means that `extern' was
1374    specified in its declaration.  */
1375 #define DECL_THIS_EXTERN(NODE) (DECL_LANG_FLAG_2(NODE))
1376
1377 /* Nonzero for VAR_DECL and FUNCTION_DECL node means that `static' was
1378    specified in its declaration.  */
1379 #define DECL_THIS_STATIC(NODE) (DECL_LANG_FLAG_6(NODE))
1380
1381 /* Nonzero for SAVE_EXPR if used to initialize a PARM_DECL.  */
1382 #define PARM_DECL_EXPR(NODE) (TREE_LANG_FLAG_2(NODE))
1383
1384 /* Nonzero in FUNCTION_DECL means it is really an operator.
1385    Just used to communicate formatting information to dbxout.c.  */
1386 #define DECL_OPERATOR(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.operator_attr)
1387
1388 #define ANON_UNION_P(NODE) (DECL_NAME (NODE) == 0)
1389
1390 #define UNKNOWN_TYPE LANG_TYPE
1391
1392 /* Define fields and accessors for nodes representing declared names.  */
1393
1394 #if 0
1395 /* C++: A derived class may be able to directly use the virtual
1396    function table of a base class.  When it does so, it may
1397    still have a decl node used to access the virtual function
1398    table (so that variables of this type can initialize their
1399    virtual function table pointers by name).  When such thievery
1400    is committed, know exactly which base class's virtual function
1401    table is the one being stolen.  This effectively computes the
1402    transitive closure.  */
1403 #define DECL_VPARENT(NODE) ((NODE)->decl.arguments)
1404 #endif
1405
1406 #define TYPE_WAS_ANONYMOUS(NODE) (TYPE_LANG_SPECIFIC (NODE)->type_flags.was_anonymous)
1407
1408 /* C++: all of these are overloaded!  These apply only to TYPE_DECLs.  */
1409
1410 /* The format of each node in the DECL_FRIENDLIST is as follows:
1411
1412    The TREE_PURPOSE will be the name of a function, i.e., an
1413    IDENTIFIER_NODE.  The TREE_VALUE will be itself a TREE_LIST, the
1414    list of functions with that name which are friends.  The
1415    TREE_PURPOSE of each node in this sublist will be error_mark_node,
1416    if the function was declared a friend individually, in which case
1417    the TREE_VALUE will be the function_decl.  If, however, all
1418    functions with a given name in a class were declared to be friends,
1419    the TREE_PUROSE will be the class type, and the TREE_VALUE will be
1420    NULL_TREE.  */
1421 #define DECL_FRIENDLIST(NODE)           (DECL_INITIAL (NODE))
1422
1423 /* The DECL_ACCESS is used to record under which context
1424    special access rules apply.  */
1425 #define DECL_ACCESS(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.access)
1426
1427 /* C++: all of these are overloaded!
1428    These apply to PARM_DECLs and VAR_DECLs.  */
1429 #define DECL_REFERENCE_SLOT(NODE) ((tree)(NODE)->decl.arguments)
1430 #define SET_DECL_REFERENCE_SLOT(NODE,VAL) ((NODE)->decl.arguments=VAL)
1431
1432 /* Accessor macros for C++ template decl nodes.  */
1433
1434 /* The DECL_TEMPLATE_PARMS are a list.  The TREE_PURPOSE of each node
1435    indicates the level of the template parameters, with 1 being the
1436    outermost set of template parameters.  The TREE_VALUE is a vector,
1437    whose elements are the template parameters at each level.  Each
1438    element in the vector is a TREE_LIST, whose TREE_VALUE is a
1439    PARM_DECL (if the parameter is a non-type parameter), or a
1440    TYPE_DECL (if the parameter is a type parameter).  The TREE_PURPOSE
1441    is the default value, if any.  The TEMPLATE_PARM_INDEX for the
1442    parameter is avilable as the DECL_INITIAL (for a PARM_DECL) or as
1443    the TREE_TYPE (for a TYPE_DECL).  */
1444 #define DECL_TEMPLATE_PARMS(NODE)       DECL_ARGUMENTS(NODE)
1445 #define DECL_INNERMOST_TEMPLATE_PARMS(NODE) \
1446    INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (NODE))
1447 #define DECL_NTPARMS(NODE) \
1448    TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (NODE))
1449 /* For class templates.  */
1450 #define DECL_TEMPLATE_SPECIALIZATIONS(NODE)     DECL_SIZE(NODE)
1451 /* For function, method, class-data templates.  */
1452 #define DECL_TEMPLATE_RESULT(NODE)      DECL_RESULT(NODE)
1453 #define DECL_TEMPLATE_INSTANTIATIONS(NODE) DECL_VINDEX(NODE)
1454 #define DECL_TEMPLATE_INJECT(NODE)      DECL_INITIAL(NODE)
1455
1456 /* Nonzero for TEMPLATE_DECL nodes that represents template template
1457    parameters */
1458 #define DECL_TEMPLATE_TEMPLATE_PARM_P(NODE) \
1459   (TREE_CODE (NODE) == TEMPLATE_DECL && TREE_TYPE (NODE) \
1460    && TREE_CODE (TREE_TYPE (NODE)) == TEMPLATE_TEMPLATE_PARM)
1461
1462 #define DECL_FUNCTION_TEMPLATE_P(NODE)  \
1463   (TREE_CODE (NODE) == TEMPLATE_DECL \
1464    && TREE_CODE (DECL_TEMPLATE_RESULT (NODE)) == FUNCTION_DECL)
1465
1466 /* Nonzero for a DECL that represents a template class.  */
1467 #define DECL_CLASS_TEMPLATE_P(NODE) \
1468   (TREE_CODE (NODE) == TEMPLATE_DECL \
1469    && TREE_CODE (DECL_TEMPLATE_RESULT (NODE)) == TYPE_DECL \
1470    && !DECL_TEMPLATE_TEMPLATE_PARM_P (NODE))
1471
1472 /* A `primary' template is one that has its own template header.  A
1473    member function of a class template is a template, but not primary.
1474    A member template is primary.  Friend templates are primary, too.  */
1475
1476 /* Returns the primary template corresponding to these parameters.  */
1477 #define DECL_PRIMARY_TEMPLATE(NODE) \
1478   (TREE_TYPE (DECL_INNERMOST_TEMPLATE_PARMS (NODE)))
1479
1480 /* Returns non-zero if NODE is a primary template.  */
1481 #define PRIMARY_TEMPLATE_P(NODE) (DECL_PRIMARY_TEMPLATE (NODE) == NODE)
1482
1483 #define CLASSTYPE_TEMPLATE_LEVEL(NODE) \
1484   (TREE_INT_CST_HIGH (TREE_PURPOSE (CLASSTYPE_TI_TEMPLATE (NODE))))
1485
1486 /* Indicates whether or not (and how) a template was expanded for this
1487    FUNCTION_DECL or VAR_DECL.
1488      0=normal declaration, e.g. int min (int, int);
1489      1=implicit template instantiation
1490      2=explicit template specialization, e.g. int min<int> (int, int);
1491      3=explicit template instantiation, e.g. template int min<int> (int, int);  */
1492 #define DECL_USE_TEMPLATE(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.use_template)
1493
1494 #define DECL_TEMPLATE_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) & 1)
1495 #define CLASSTYPE_TEMPLATE_INSTANTIATION(NODE) \
1496   (CLASSTYPE_USE_TEMPLATE (NODE) & 1)
1497
1498 #define DECL_TEMPLATE_SPECIALIZATION(NODE) (DECL_USE_TEMPLATE (NODE) == 2)
1499 #define SET_DECL_TEMPLATE_SPECIALIZATION(NODE) (DECL_USE_TEMPLATE (NODE) = 2)
1500 #define CLASSTYPE_TEMPLATE_SPECIALIZATION(NODE) \
1501   (CLASSTYPE_USE_TEMPLATE (NODE) == 2)
1502 #define SET_CLASSTYPE_TEMPLATE_SPECIALIZATION(NODE) \
1503   (CLASSTYPE_USE_TEMPLATE (NODE) = 2)
1504
1505 #define DECL_IMPLICIT_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) == 1)
1506 #define SET_DECL_IMPLICIT_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) = 1)
1507 #define CLASSTYPE_IMPLICIT_INSTANTIATION(NODE) \
1508   (CLASSTYPE_USE_TEMPLATE(NODE) == 1)
1509 #define SET_CLASSTYPE_IMPLICIT_INSTANTIATION(NODE) \
1510   (CLASSTYPE_USE_TEMPLATE(NODE) = 1)
1511
1512 #define DECL_EXPLICIT_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) == 3)
1513 #define SET_DECL_EXPLICIT_INSTANTIATION(NODE) (DECL_USE_TEMPLATE (NODE) = 3)
1514 #define CLASSTYPE_EXPLICIT_INSTANTIATION(NODE) \
1515   (CLASSTYPE_USE_TEMPLATE(NODE) == 3)
1516 #define SET_CLASSTYPE_EXPLICIT_INSTANTIATION(NODE) \
1517   (CLASSTYPE_USE_TEMPLATE(NODE) = 3)
1518
1519 /* This function may be a guiding decl for a template.  */
1520 #define DECL_MAYBE_TEMPLATE(NODE) DECL_LANG_FLAG_4 (NODE)
1521 /* We know what we're doing with this decl now.  */
1522 #define DECL_INTERFACE_KNOWN(NODE) DECL_LANG_FLAG_5 (NODE)
1523
1524 /* This function was declared inline.  This flag controls the linkage
1525    semantics of 'inline'; whether or not the function is inlined is
1526    controlled by DECL_INLINE.  */
1527 #define DECL_THIS_INLINE(NODE) \
1528   (DECL_LANG_SPECIFIC (NODE)->decl_flags.declared_inline)
1529
1530 /* DECL_EXTERNAL must be set on a decl until the decl is actually emitted,
1531    so that assemble_external will work properly.  So we have this flag to
1532    tell us whether the decl is really not external.  */
1533 #define DECL_NOT_REALLY_EXTERN(NODE) \
1534   (DECL_LANG_SPECIFIC (NODE)->decl_flags.not_really_extern)
1535
1536 #define DECL_REALLY_EXTERN(NODE) \
1537   (DECL_EXTERNAL (NODE) && ! DECL_NOT_REALLY_EXTERN (NODE))
1538
1539 /* Used to tell cp_finish_decl that it should approximate comdat linkage
1540    as best it can for this decl.  */
1541 #define DECL_COMDAT(NODE) (DECL_LANG_SPECIFIC (NODE)->decl_flags.comdat)
1542
1543 #define THUNK_DELTA(DECL) ((DECL)->decl.frame_size.i)
1544
1545 /* ...and for unexpanded-parameterized-type nodes.  */
1546 #define UPT_TEMPLATE(NODE)      TREE_PURPOSE(TYPE_VALUES(NODE))
1547 #define UPT_PARMS(NODE)         TREE_VALUE(TYPE_VALUES(NODE))
1548
1549 /* An un-parsed default argument looks like an identifier.  */
1550 #define DEFARG_LENGTH(NODE)     IDENTIFIER_LENGTH(NODE)
1551 #define DEFARG_POINTER(NODE)    IDENTIFIER_POINTER(NODE)
1552
1553 #define builtin_function(NAME, TYPE, CODE, LIBNAME) \
1554   define_function (NAME, TYPE, CODE, (void (*) PROTO((tree)))pushdecl, LIBNAME)
1555
1556 /* These macros provide convenient access to the various _STMT nodes
1557    created when parsing template declarations.  */
1558 #define IF_COND(NODE)           TREE_OPERAND (NODE, 0)
1559 #define THEN_CLAUSE(NODE)       TREE_OPERAND (NODE, 1)
1560 #define ELSE_CLAUSE(NODE)       TREE_OPERAND (NODE, 2)
1561 #define WHILE_COND(NODE)        TREE_OPERAND (NODE, 0)
1562 #define WHILE_BODY(NODE)        TREE_OPERAND (NODE, 1)
1563 #define DO_COND(NODE)           TREE_OPERAND (NODE, 0)
1564 #define DO_BODY(NODE)           TREE_OPERAND (NODE, 1)
1565 #define RETURN_EXPR(NODE)       TREE_OPERAND (NODE, 0)
1566 #define EXPR_STMT_EXPR(NODE)    TREE_OPERAND (NODE, 0)
1567 #define FOR_INIT_STMT(NODE)     TREE_OPERAND (NODE, 0)
1568 #define FOR_COND(NODE)          TREE_OPERAND (NODE, 1)
1569 #define FOR_EXPR(NODE)          TREE_OPERAND (NODE, 2)
1570 #define FOR_BODY(NODE)          TREE_OPERAND (NODE, 3)
1571 #define SWITCH_COND(NODE)       TREE_OPERAND (NODE, 0)
1572 #define SWITCH_BODY(NODE)       TREE_OPERAND (NODE, 1)
1573 #define CASE_LOW(NODE)          TREE_OPERAND (NODE, 0)
1574 #define CASE_HIGH(NODE)         TREE_OPERAND (NODE, 1)
1575 #define GOTO_DESTINATION(NODE)  TREE_OPERAND (NODE, 0)
1576 #define TRY_STMTS(NODE)         TREE_OPERAND (NODE, 0)
1577 #define TRY_HANDLERS(NODE)      TREE_OPERAND (NODE, 1)
1578 #define HANDLER_PARMS(NODE)     TREE_OPERAND (NODE, 0)
1579 #define HANDLER_BODY(NODE)      TREE_OPERAND (NODE, 1)
1580 #define COMPOUND_BODY(NODE)     TREE_OPERAND (NODE, 0)
1581 #define ASM_CV_QUAL(NODE)       TREE_OPERAND (NODE, 0)
1582 #define ASM_STRING(NODE)        TREE_OPERAND (NODE, 1)
1583 #define ASM_OUTPUTS(NODE)       TREE_OPERAND (NODE, 2)
1584 #define ASM_INPUTS(NODE)        TREE_OPERAND (NODE, 3)
1585 #define ASM_CLOBBERS(NODE)      TREE_OPERAND (NODE, 4)
1586
1587 /* An enumeration of the kind of tags that C++ accepts.  */
1588 enum tag_types { record_type, class_type, union_type, enum_type,
1589                    signature_type };
1590
1591 /* Zero means prototype weakly, as in ANSI C (no args means nothing).
1592    Each language context defines how this variable should be set.  */
1593 extern int strict_prototype;
1594 extern int strict_prototypes_lang_c, strict_prototypes_lang_cplusplus;
1595
1596 /* Non-zero means that if a label exists, and no other identifier
1597    applies, use the value of the label.  */
1598 extern int flag_labels_ok;
1599
1600 /* Non-zero means to collect statistics which might be expensive
1601    and to print them when we are done.  */
1602 extern int flag_detailed_statistics;
1603
1604 /* Non-zero means warn in function declared in derived class has the
1605    same name as a virtual in the base class, but fails to match the
1606    type signature of any virtual function in the base class.  */
1607 extern int warn_overloaded_virtual;
1608
1609 /* in c-common.c */
1610 extern void declare_function_name               PROTO((void));
1611 extern void decl_attributes                     PROTO((tree, tree, tree));
1612 extern void init_function_format_info           PROTO((void));
1613 extern void record_function_format              PROTO((tree, tree, int, int, int));
1614 extern void check_function_format               PROTO((tree, tree, tree));
1615 /* Print an error message for invalid operands to arith operation CODE.
1616    NOP_EXPR is used as a special case (see truthvalue_conversion).  */
1617 extern void binary_op_error                     PROTO((enum tree_code));
1618 extern tree cp_build_type_variant                PROTO((tree, int, int));
1619 extern void c_expand_expr_stmt                  PROTO((tree));
1620 /* Validate the expression after `case' and apply default promotions.  */
1621 extern tree check_case_value                    PROTO((tree));
1622 /* Concatenate a list of STRING_CST nodes into one STRING_CST.  */
1623 extern tree combine_strings                     PROTO((tree));
1624 extern void constant_expression_warning         PROTO((tree));
1625 extern tree convert_and_check                   PROTO((tree, tree));
1626 extern void overflow_warning                    PROTO((tree));
1627 extern void unsigned_conversion_warning         PROTO((tree, tree));
1628 /* Read the rest of the current #-directive line.  */
1629 extern char *get_directive_line                 PROTO((FILE *));
1630 /* Subroutine of build_binary_op, used for comparison operations.
1631    See if the operands have both been converted from subword integer types
1632    and, if so, perhaps change them both back to their original type.  */
1633 extern tree shorten_compare                     PROTO((tree *, tree *, tree *, enum tree_code *));
1634 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
1635    or validate its data type for an `if' or `while' statement or ?..: exp.  */
1636 extern tree truthvalue_conversion               PROTO((tree));
1637 extern tree type_for_mode                       PROTO((enum machine_mode, int));
1638 extern tree type_for_size                       PROTO((unsigned, int));
1639
1640 /* in decl{2}.c */
1641 extern tree void_list_node;
1642 extern tree void_zero_node;
1643 extern tree default_function_type;
1644 extern tree vtable_entry_type;
1645 extern tree sigtable_entry_type;
1646 extern tree __t_desc_type_node;
1647 #if 0
1648 extern tree __tp_desc_type_node;
1649 #endif
1650 extern tree __access_mode_type_node;
1651 extern tree __bltn_desc_type_node, __user_desc_type_node;
1652 extern tree __class_desc_type_node, __attr_desc_type_node;
1653 extern tree __ptr_desc_type_node, __func_desc_type_node;
1654 extern tree __ptmf_desc_type_node, __ptmd_desc_type_node;
1655 extern tree type_info_type_node;
1656 extern tree class_star_type_node;
1657 extern tree this_identifier;
1658 extern tree ctor_identifier, dtor_identifier;
1659 extern tree pfn_identifier;
1660 extern tree index_identifier;
1661 extern tree delta_identifier;
1662 extern tree delta2_identifier;
1663 extern tree pfn_or_delta2_identifier;
1664 extern tree tag_identifier;
1665 extern tree vt_off_identifier;
1666
1667 /* A node that is a list (length 1) of error_mark_nodes.  */
1668 extern tree error_mark_list;
1669
1670 extern tree ptr_type_node;
1671 extern tree class_type_node, record_type_node, union_type_node, enum_type_node;
1672 extern tree unknown_type_node;
1673 extern tree opaque_type_node, signature_type_node;
1674
1675 /* Node for "pointer to (virtual) function".
1676    This may be distinct from ptr_type_node so gdb can distinguish them.  */
1677 #define vfunc_ptr_type_node \
1678   (flag_vtable_thunks ? vtable_entry_type : ptr_type_node)
1679
1680 /* Array type `(void *)[]' */
1681 extern tree vtbl_type_node;
1682 extern tree delta_type_node;
1683 extern tree std_node;
1684
1685 extern tree long_long_integer_type_node, long_long_unsigned_type_node;
1686 /* For building calls to `delete'.  */
1687 extern tree integer_two_node, integer_three_node;
1688 extern tree boolean_type_node, boolean_true_node, boolean_false_node;
1689
1690 extern tree null_node;
1691
1692 /* in pt.c  */
1693
1694 /* These values are used for the `STRICT' parameter to type_unfication and
1695    fn_type_unification.  Their meanings are described with the
1696    documentation for fn_type_unification.  */
1697
1698 typedef enum unification_kind_t {
1699   DEDUCE_CALL,
1700   DEDUCE_CONV,
1701   DEDUCE_EXACT
1702 } unification_kind_t;
1703
1704 extern tree current_template_parms;
1705 extern HOST_WIDE_INT processing_template_decl;
1706 extern tree last_tree;
1707
1708 /* The template currently being instantiated, and where the instantiation
1709    was triggered.  */
1710 struct tinst_level
1711 {
1712   tree decl;
1713   int line;
1714   char *file;
1715   struct tinst_level *next;
1716 };
1717
1718 extern int minimal_parse_mode;
1719
1720 /* in class.c */
1721 extern tree current_class_name;
1722 extern tree current_class_type;
1723 extern tree current_class_ptr;
1724 extern tree previous_class_type;
1725 extern tree current_class_ref;
1726 extern int current_class_depth;
1727
1728 extern tree current_lang_name;
1729 extern tree lang_name_cplusplus, lang_name_c, lang_name_java;
1730
1731 /* Points to the name of that function. May not be the DECL_NAME
1732    of CURRENT_FUNCTION_DECL due to overloading */
1733 extern tree original_function_name;
1734
1735 /* in init.c  */
1736 extern tree global_base_init_list;
1737 extern tree current_base_init_list, current_member_init_list;
1738
1739 extern int current_function_just_assigned_this;
1740 extern int current_function_parms_stored;
1741 \f
1742 /* Here's where we control how name mangling takes place.  */
1743
1744 #define OPERATOR_ASSIGN_FORMAT "__a%s"
1745 #define OPERATOR_FORMAT "__%s"
1746 #define OPERATOR_TYPENAME_FORMAT "__op"
1747 #define OPERATOR_TYPENAME_P(ID_NODE) \
1748   (IDENTIFIER_POINTER (ID_NODE)[0] == '_'       \
1749    && IDENTIFIER_POINTER (ID_NODE)[1] == '_'    \
1750    && IDENTIFIER_POINTER (ID_NODE)[2] == 'o'    \
1751    && IDENTIFIER_POINTER (ID_NODE)[3] == 'p')
1752
1753
1754 /* Cannot use '$' up front, because this confuses gdb
1755    (names beginning with '$' are gdb-local identifiers).
1756
1757    Note that all forms in which the '$' is significant are long enough
1758    for direct indexing (meaning that if we know there is a '$'
1759    at a particular location, we can index into the string at
1760    any other location that provides distinguishing characters).  */
1761
1762 /* Define NO_DOLLAR_IN_LABEL in your favorite tm file if your assembler
1763    doesn't allow '$' in symbol names.  */
1764 #ifndef NO_DOLLAR_IN_LABEL
1765
1766 #define JOINER '$'
1767
1768 #define VPTR_NAME "$v"
1769 #define THROW_NAME "$eh_throw"
1770 #define DESTRUCTOR_DECL_PREFIX "_$_"
1771 #define AUTO_VTABLE_NAME "__vtbl$me__"
1772 #define AUTO_TEMP_NAME "_$tmp_"
1773 #define AUTO_TEMP_FORMAT "_$tmp_%d"
1774 #define VTABLE_BASE "$vb"
1775 #define VTABLE_NAME_FORMAT (flag_vtable_thunks ? "__vt_%s" : "_vt$%s")
1776 #define VFIELD_BASE "$vf"
1777 #define VFIELD_NAME "_vptr$"
1778 #define VFIELD_NAME_FORMAT "_vptr$%s"
1779 #define VBASE_NAME "_vb$"
1780 #define VBASE_NAME_FORMAT "_vb$%s"
1781 #define STATIC_NAME_FORMAT "_%s$%s"
1782 #define ANON_AGGRNAME_FORMAT "$_%d"
1783
1784 #else /* NO_DOLLAR_IN_LABEL */
1785
1786 #ifndef NO_DOT_IN_LABEL
1787
1788 #define JOINER '.'
1789
1790 #define VPTR_NAME ".v"
1791 #define THROW_NAME ".eh_throw"
1792 #define DESTRUCTOR_DECL_PREFIX "_._"
1793 #define AUTO_VTABLE_NAME "__vtbl.me__"
1794 #define AUTO_TEMP_NAME "_.tmp_"
1795 #define AUTO_TEMP_FORMAT "_.tmp_%d"
1796 #define VTABLE_BASE ".vb"
1797 #define VTABLE_NAME_FORMAT (flag_vtable_thunks ? "__vt_%s" : "_vt.%s")
1798 #define VFIELD_BASE ".vf"
1799 #define VFIELD_NAME "_vptr."
1800 #define VFIELD_NAME_FORMAT "_vptr.%s"
1801 #define VBASE_NAME "_vb."
1802 #define VBASE_NAME_FORMAT "_vb.%s"
1803 #define STATIC_NAME_FORMAT "_%s.%s"
1804
1805 #define ANON_AGGRNAME_FORMAT "._%d"
1806
1807 #else /* NO_DOT_IN_LABEL */
1808
1809 #define VPTR_NAME "__vptr"
1810 #define VPTR_NAME_P(ID_NODE) \
1811   (!strncmp (IDENTIFIER_POINTER (ID_NODE), VPTR_NAME, sizeof (VPTR_NAME) - 1))
1812 #define THROW_NAME "__eh_throw"
1813 #define DESTRUCTOR_DECL_PREFIX "__destr_"
1814 #define DESTRUCTOR_NAME_P(ID_NODE) \
1815   (!strncmp (IDENTIFIER_POINTER (ID_NODE), DESTRUCTOR_DECL_PREFIX, \
1816              sizeof (DESTRUCTOR_DECL_PREFIX) - 1))
1817 #define IN_CHARGE_NAME "__in_chrg"
1818 #define AUTO_VTABLE_NAME "__vtbl_me__"
1819 #define AUTO_TEMP_NAME "__tmp_"
1820 #define TEMP_NAME_P(ID_NODE) \
1821   (!strncmp (IDENTIFIER_POINTER (ID_NODE), AUTO_TEMP_NAME, \
1822              sizeof (AUTO_TEMP_NAME) - 1))
1823 #define AUTO_TEMP_FORMAT "__tmp_%d"
1824 #define VTABLE_BASE "__vtb"
1825 #define VTABLE_NAME "__vt_"
1826 #define VTABLE_NAME_FORMAT (flag_vtable_thunks ? "__vt_%s" : "_vt_%s")
1827 #define VTABLE_NAME_P(ID_NODE) \
1828   (!strncmp (IDENTIFIER_POINTER (ID_NODE), VTABLE_NAME, \
1829              sizeof (VTABLE_NAME) - 1))
1830 #define VFIELD_BASE "__vfb"
1831 #define VFIELD_NAME "__vptr_"
1832 #define VFIELD_NAME_P(ID_NODE) \
1833   (!strncmp (IDENTIFIER_POINTER (ID_NODE), VFIELD_NAME, \
1834             sizeof (VFIELD_NAME) - 1))
1835 #define VFIELD_NAME_FORMAT "_vptr_%s"
1836 #define VBASE_NAME "__vb_"
1837 #define VBASE_NAME_P(ID_NODE) \
1838   (!strncmp (IDENTIFIER_POINTER (ID_NODE), VBASE_NAME, \
1839              sizeof (VBASE_NAME) - 1))
1840 #define VBASE_NAME_FORMAT "__vb_%s"
1841 #define STATIC_NAME_FORMAT "__static_%s_%s"
1842
1843 #define ANON_AGGRNAME_PREFIX "__anon_"
1844 #define ANON_AGGRNAME_P(ID_NODE) \
1845   (!strncmp (IDENTIFIER_POINTER (ID_NODE), ANON_AGGRNAME_PREFIX, \
1846              sizeof (ANON_AGGRNAME_PREFIX) - 1))
1847 #define ANON_AGGRNAME_FORMAT "__anon_%d"
1848 #define ANON_PARMNAME_FORMAT "__%d"
1849 #define ANON_PARMNAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[0] == '_' \
1850                                   && IDENTIFIER_POINTER (ID_NODE)[1] == '_' \
1851                                   && IDENTIFIER_POINTER (ID_NODE)[2] <= '9')
1852
1853 #endif  /* NO_DOT_IN_LABEL */
1854 #endif  /* NO_DOLLAR_IN_LABEL */
1855
1856 #define THIS_NAME "this"
1857 #define DESTRUCTOR_NAME_FORMAT "~%s"
1858 #define FILE_FUNCTION_PREFIX_LEN 9
1859 #define CTOR_NAME "__ct"
1860 #define DTOR_NAME "__dt"
1861
1862 #define IN_CHARGE_NAME "__in_chrg"
1863
1864 #define VTBL_PTR_TYPE           "__vtbl_ptr_type"
1865 #define VTABLE_DELTA_NAME       "__delta"
1866 #define VTABLE_INDEX_NAME       "__index"
1867 #define VTABLE_PFN_NAME         "__pfn"
1868 #define VTABLE_DELTA2_NAME      "__delta2"
1869
1870 #define SIGNATURE_FIELD_NAME    "__s_"
1871 #define SIGNATURE_FIELD_NAME_FORMAT "__s_%s"
1872 #define SIGNATURE_OPTR_NAME     "__optr"
1873 #define SIGNATURE_SPTR_NAME     "__sptr"
1874 #define SIGNATURE_POINTER_NAME  "__sp_"
1875 #define SIGNATURE_POINTER_NAME_FORMAT "__%s%ssp_%s"
1876 #define SIGNATURE_REFERENCE_NAME "__sr_"
1877 #define SIGNATURE_REFERENCE_NAME_FORMAT "__%s%ssr_%s"
1878
1879 #define SIGTABLE_PTR_TYPE       "__sigtbl_ptr_type"
1880 #define SIGTABLE_NAME_FORMAT    "__st_%s_%s"
1881 #define SIGTABLE_NAME_FORMAT_LONG "__st_%s_%s_%d"
1882 #define SIGTABLE_TAG_NAME       "__tag"
1883 #define SIGTABLE_VB_OFF_NAME    "__vb_off"
1884 #define SIGTABLE_VT_OFF_NAME    "__vt_off"
1885 #define EXCEPTION_CLEANUP_NAME  "exception cleanup"
1886
1887 #define THIS_NAME_P(ID_NODE) (strcmp(IDENTIFIER_POINTER (ID_NODE), "this") == 0)
1888
1889 #if !defined(NO_DOLLAR_IN_LABEL) || !defined(NO_DOT_IN_LABEL)
1890
1891 #define VPTR_NAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[0] == JOINER \
1892                               && IDENTIFIER_POINTER (ID_NODE)[1] == 'v')
1893 #define DESTRUCTOR_NAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[1] == JOINER \
1894                                     && IDENTIFIER_POINTER (ID_NODE)[2] == '_') 
1895
1896 #define VTABLE_NAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[1] == 'v' \
1897   && IDENTIFIER_POINTER (ID_NODE)[2] == 't' \
1898   && IDENTIFIER_POINTER (ID_NODE)[3] == JOINER)
1899
1900 #define VBASE_NAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[1] == 'v' \
1901   && IDENTIFIER_POINTER (ID_NODE)[2] == 'b' \
1902   && IDENTIFIER_POINTER (ID_NODE)[3] == JOINER)
1903
1904 #define TEMP_NAME_P(ID_NODE) (!strncmp (IDENTIFIER_POINTER (ID_NODE), AUTO_TEMP_NAME, sizeof (AUTO_TEMP_NAME)-1))
1905 #define VFIELD_NAME_P(ID_NODE) (!strncmp (IDENTIFIER_POINTER (ID_NODE), VFIELD_NAME, sizeof(VFIELD_NAME)-1))
1906
1907 /* For anonymous aggregate types, we need some sort of name to
1908    hold on to.  In practice, this should not appear, but it should
1909    not be harmful if it does.  */
1910 #define ANON_AGGRNAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[0] == JOINER \
1911                                   && IDENTIFIER_POINTER (ID_NODE)[1] == '_')
1912 #define ANON_PARMNAME_FORMAT "_%d"
1913 #define ANON_PARMNAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[0] == '_' \
1914                                   && IDENTIFIER_POINTER (ID_NODE)[1] <= '9')
1915 #endif /* !defined(NO_DOLLAR_IN_LABEL) || !defined(NO_DOT_IN_LABEL) */
1916 \f
1917 /* Define the sets of attributes that member functions and baseclasses
1918    can have.  These are sensible combinations of {public,private,protected}
1919    cross {virtual,non-virtual}.  */
1920
1921 /* in class.c.  */
1922 extern tree access_default_node; /* 0 */
1923 extern tree access_public_node; /* 1 */
1924 extern tree access_protected_node; /* 2 */
1925 extern tree access_private_node; /* 3 */
1926 extern tree access_default_virtual_node; /* 4 */
1927 extern tree access_public_virtual_node; /* 5 */
1928 extern tree access_protected_virtual_node; /* 6 */
1929 extern tree access_private_virtual_node; /* 7 */
1930
1931 /* Things for handling inline functions.  */
1932
1933 struct pending_inline
1934 {
1935   struct pending_inline *next;  /* pointer to next in chain */
1936   int lineno;                   /* line number we got the text from */
1937   char *filename;               /* name of file we were processing */
1938   tree fndecl;                  /* FUNCTION_DECL that brought us here */
1939   int token;                    /* token we were scanning */
1940   int token_value;              /* value of token we were scanning (YYSTYPE) */
1941
1942   char *buf;                    /* pointer to character stream */
1943   int len;                      /* length of stream */
1944   unsigned int can_free : 1;    /* free this after we're done with it? */
1945   unsigned int deja_vu : 1;     /* set iff we don't want to see it again.  */
1946   unsigned int interface : 2;   /* 0=interface 1=unknown 2=implementation */
1947 };
1948
1949 /* in method.c */
1950 extern struct pending_inline *pending_inlines;
1951
1952 /* 1 for -fall-virtual: make every member function (except
1953    constructors) lay down in the virtual function table.
1954    Calls can then either go through the virtual function table or not,
1955    depending on whether we know what function will actually be called.  */
1956
1957 extern int flag_all_virtual;
1958
1959 /* Positive values means that we cannot make optimizing assumptions about
1960    `this'.  Negative values means we know `this' to be of static type.  */
1961
1962 extern int flag_this_is_variable;
1963
1964 /* Controls whether enums and ints freely convert.
1965    1 means with complete freedom.
1966    0 means enums can convert to ints, but not vice-versa.  */
1967
1968 extern int flag_int_enum_equivalence;
1969
1970 /* Nonzero means generate 'rtti' that give run-time type information.  */
1971
1972 extern int flag_rtti;
1973
1974 /* Nonzero means do emit exported implementations of functions even if
1975    they can be inlined.  */
1976
1977 extern int flag_implement_inlines;
1978
1979 /* Nonzero means templates obey #pragma interface and implementation.  */
1980
1981 extern int flag_external_templates;
1982
1983 /* Nonzero means templates are emitted where they are instantiated.  */
1984
1985 extern int flag_alt_external_templates;
1986
1987 /* Nonzero means implicit template instantiations are emitted.  */
1988
1989 extern int flag_implicit_templates;
1990
1991 /* Nonzero if we want to emit defined symbols with common-like linkage as
1992    weak symbols where possible, in order to conform to C++ semantics.
1993    Otherwise, emit them as local symbols.  */
1994
1995 extern int flag_weak;
1996
1997 /* Nonzero to enable experimental ABI changes.  */
1998
1999 extern int flag_new_abi;
2000
2001 /* Nonzero to not ignore namespace std. */
2002
2003 extern int flag_honor_std;
2004
2005 /* Nonzero if we're done parsing and into end-of-file activities.  */
2006
2007 extern int at_eof;
2008
2009 enum overload_flags { NO_SPECIAL = 0, DTOR_FLAG, OP_FLAG, TYPENAME_FLAG };
2010
2011 /* The following two can be derived from the previous one */
2012 extern tree current_class_name; /* IDENTIFIER_NODE: name of current class */
2013 extern tree current_class_type; /* _TYPE: the type of the current class */
2014
2015 /* Some macros for char-based bitfields.  */
2016 #define B_SET(a,x) (a[x>>3] |= (1 << (x&7)))
2017 #define B_CLR(a,x) (a[x>>3] &= ~(1 << (x&7)))
2018 #define B_TST(a,x) (a[x>>3] & (1 << (x&7)))
2019
2020 /* These are uses as bits in flags passed to build_method_call
2021    to control its error reporting behavior.
2022
2023    LOOKUP_PROTECT means flag access violations.
2024    LOOKUP_COMPLAIN mean complain if no suitable member function
2025      matching the arguments is found.
2026    LOOKUP_NORMAL is just a combination of these two.
2027    LOOKUP_NONVIRTUAL means make a direct call to the member function found
2028    LOOKUP_GLOBAL means search through the space of overloaded functions,
2029      as well as the space of member functions.
2030    LOOKUP_HAS_IN_CHARGE means that the "in charge" variable is already
2031      in the parameter list.
2032    LOOKUP_ONLYCONVERTING means that non-conversion constructors are not tried.
2033    DIRECT_BIND means that if a temporary is created, it should be created so
2034      that it lives as long as the current variable bindings; otherwise it
2035      only lives until the end of the complete-expression.
2036    LOOKUP_SPECULATIVELY means return NULL_TREE if we cannot find what we are
2037      after.  Note, LOOKUP_COMPLAIN is checked and error messages printed
2038      before LOOKUP_SPECULATIVELY is checked.
2039    LOOKUP_NO_CONVERSION means that user-defined conversions are not
2040      permitted.  Built-in conversions are permitted.
2041    LOOKUP_DESTRUCTOR means explicit call to destructor.
2042    LOOKUP_NO_TEMP_BIND means temporaries will not be bound to references.  */
2043
2044 #define LOOKUP_PROTECT (1)
2045 #define LOOKUP_COMPLAIN (2)
2046 #define LOOKUP_NORMAL (3)
2047 /* #define LOOKUP_UNUSED (4) */
2048 #define LOOKUP_NONVIRTUAL (8)
2049 #define LOOKUP_GLOBAL (16)
2050 #define LOOKUP_HAS_IN_CHARGE (32)
2051 #define LOOKUP_SPECULATIVELY (64)
2052 #define LOOKUP_ONLYCONVERTING (128)
2053 #define DIRECT_BIND (256)
2054 #define LOOKUP_NO_CONVERSION (512)
2055 #define LOOKUP_DESTRUCTOR (512)
2056 #define LOOKUP_NO_TEMP_BIND (1024)
2057
2058 /* These flags are used by the conversion code.
2059    CONV_IMPLICIT   :  Perform implicit conversions (standard and user-defined).
2060    CONV_STATIC     :  Perform the explicit conversions for static_cast.
2061    CONV_CONST      :  Perform the explicit conversions for const_cast.
2062    CONV_REINTERPRET:  Perform the explicit conversions for reinterpret_cast.
2063    CONV_PRIVATE    :  Perform upcasts to private bases.
2064    CONV_FORCE_TEMP :  Require a new temporary when converting to the same
2065                       aggregate type.  */
2066
2067 #define CONV_IMPLICIT    1
2068 #define CONV_STATIC      2
2069 #define CONV_CONST       4
2070 #define CONV_REINTERPRET 8
2071 #define CONV_PRIVATE     16
2072 /* #define CONV_NONCONVERTING 32 */
2073 #define CONV_FORCE_TEMP  64
2074 #define CONV_STATIC_CAST (CONV_IMPLICIT | CONV_STATIC | CONV_FORCE_TEMP)
2075 #define CONV_OLD_CONVERT (CONV_IMPLICIT | CONV_STATIC | CONV_CONST \
2076                           | CONV_REINTERPRET)
2077 #define CONV_C_CAST      (CONV_IMPLICIT | CONV_STATIC | CONV_CONST \
2078                           | CONV_REINTERPRET | CONV_PRIVATE | CONV_FORCE_TEMP)
2079
2080 /* Used by build_expr_type_conversion to indicate which types are
2081    acceptable as arguments to the expression under consideration.  */
2082
2083 #define WANT_INT        1 /* integer types, including bool */
2084 #define WANT_FLOAT      2 /* floating point types */
2085 #define WANT_ENUM       4 /* enumerated types */
2086 #define WANT_POINTER    8 /* pointer types */
2087 #define WANT_NULL      16 /* null pointer constant */
2088
2089 #define WANT_ARITH      (WANT_INT | WANT_FLOAT)
2090
2091 #define FRIEND_NAME(LIST) (TREE_PURPOSE (LIST))
2092 #define FRIEND_DECLS(LIST) (TREE_VALUE (LIST))
2093
2094 /* These macros are used to access a TEMPLATE_PARM_INDEX.  */
2095 #define TEMPLATE_PARM_IDX(NODE) (((template_parm_index*) NODE)->index)
2096 #define TEMPLATE_PARM_LEVEL(NODE) (((template_parm_index*) NODE)->level)
2097 #define TEMPLATE_PARM_DESCENDANTS(NODE) (TREE_CHAIN (NODE))
2098 #define TEMPLATE_PARM_ORIG_LEVEL(NODE) (((template_parm_index*) NODE)->orig_level)
2099 #define TEMPLATE_PARM_DECL(NODE) (((template_parm_index*) NODE)->decl)
2100
2101 /* These macros are for accessing the fields of TEMPLATE_TYPE_PARM 
2102    and TEMPLATE_TEMPLATE_PARM nodes.  */
2103 #define TEMPLATE_TYPE_PARM_INDEX(NODE) (TYPE_FIELDS (NODE))
2104 #define TEMPLATE_TYPE_IDX(NODE) \
2105   (TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (NODE)))
2106 #define TEMPLATE_TYPE_LEVEL(NODE) \
2107   (TEMPLATE_PARM_LEVEL (TEMPLATE_TYPE_PARM_INDEX (NODE)))
2108 #define TEMPLATE_TYPE_ORIG_LEVEL(NODE) \
2109   (TEMPLATE_PARM_ORIG_LEVEL (TEMPLATE_TYPE_PARM_INDEX (NODE)))
2110 #define TEMPLATE_TYPE_DECL(NODE) \
2111   (TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (NODE)))
2112
2113 /* in lex.c  */
2114 /* Indexed by TREE_CODE, these tables give C-looking names to
2115    operators represented by TREE_CODES.  For example,
2116    opname_tab[(int) MINUS_EXPR] == "-".  */
2117 extern char **opname_tab, **assignop_tab;
2118 \f
2119 /* in call.c */
2120 extern int get_arglist_len_in_bytes             PROTO((tree));
2121
2122 extern tree build_vfield_ref                    PROTO((tree, tree));
2123 extern tree resolve_scope_to_name               PROTO((tree, tree));
2124 extern tree build_scoped_method_call            PROTO((tree, tree, tree, tree));
2125 extern tree build_addr_func                     PROTO((tree));
2126 extern tree build_call                          PROTO((tree, tree, tree));
2127 extern tree build_method_call                   PROTO((tree, tree, tree, tree, int));
2128 extern int null_ptr_cst_p                       PROTO((tree));
2129 extern tree type_decays_to                      PROTO((tree));
2130 extern tree build_user_type_conversion          PROTO((tree, tree, int));
2131 extern tree build_new_function_call             PROTO((tree, tree));
2132 extern tree build_new_op                        PROTO((enum tree_code, int, tree, tree, tree));
2133 extern tree build_op_new_call                   PROTO((enum tree_code, tree, tree, int));
2134 extern tree build_op_delete_call                PROTO((enum tree_code, tree, tree, int));
2135 extern int can_convert                          PROTO((tree, tree));
2136 extern int can_convert_arg                      PROTO((tree, tree, tree));
2137 extern void enforce_access                      PROTO((tree, tree));
2138
2139 /* in class.c */
2140 extern tree build_vbase_path                    PROTO((enum tree_code, tree, tree, tree, int));
2141 extern tree build_vtbl_ref                      PROTO((tree, tree));
2142 extern tree build_vfn_ref                       PROTO((tree *, tree, tree));
2143 extern void add_method                          PROTO((tree, tree *, tree));
2144 extern tree get_vfield_offset                   PROTO((tree));
2145 extern void duplicate_tag_error                 PROTO((tree));
2146 extern tree finish_struct                       PROTO((tree, tree, tree, int));
2147 extern tree finish_struct_1                     PROTO((tree, int));
2148 extern tree finish_struct_methods               PROTO((tree, tree, int));
2149 extern int resolves_to_fixed_type_p             PROTO((tree, int *));
2150 extern void init_class_processing               PROTO((void));
2151 extern void pushclass                           PROTO((tree, int));
2152 extern void popclass                            PROTO((int));
2153 extern void push_nested_class                   PROTO((tree, int));
2154 extern void pop_nested_class                    PROTO((int));
2155 extern void push_lang_context                   PROTO((tree));
2156 extern void pop_lang_context                    PROTO((void));
2157 extern tree instantiate_type                    PROTO((tree, tree, int));
2158 extern void print_class_statistics              PROTO((void));
2159 extern void maybe_push_cache_obstack            PROTO((void));
2160 extern unsigned HOST_WIDE_INT skip_rtti_stuff   PROTO((tree *));
2161 extern tree build_self_reference                PROTO((void));
2162 extern void warn_hidden                         PROTO((tree));
2163
2164 /* in cvt.c */
2165 extern tree convert_to_reference                PROTO((tree, tree, int, int, tree));
2166 extern tree convert_from_reference              PROTO((tree));
2167 extern tree convert_pointer_to_real             PROTO((tree, tree));
2168 extern tree convert_pointer_to                  PROTO((tree, tree));
2169 extern tree ocp_convert                         PROTO((tree, tree, int, int));
2170 extern tree cp_convert                          PROTO((tree, tree));
2171 extern tree convert                             PROTO((tree, tree));
2172 extern tree convert_force                       PROTO((tree, tree, int));
2173 extern tree build_type_conversion               PROTO((enum tree_code, tree, tree, int));
2174 extern tree build_expr_type_conversion          PROTO((int, tree, int));
2175 extern tree type_promotes_to                    PROTO((tree));
2176 extern tree perform_qualification_conversions   PROTO((tree, tree));
2177
2178 /* decl.c */
2179 /* resume_binding_level */
2180 extern int global_bindings_p                    PROTO((void));
2181 extern int toplevel_bindings_p                  PROTO((void));
2182 extern void keep_next_level                     PROTO((void));
2183 extern int kept_level_p                         PROTO((void));
2184 extern void declare_parm_level                  PROTO((void));
2185 extern void declare_pseudo_global_level         PROTO((void));
2186 extern int pseudo_global_level_p                PROTO((void));
2187 extern void set_class_shadows                   PROTO((tree));
2188 extern void pushlevel                           PROTO((int));
2189 extern void note_level_for_for                  PROTO((void));
2190 extern void pushlevel_temporary                 PROTO((int));
2191 extern tree poplevel                            PROTO((int, int, int));
2192 extern void resume_level                        PROTO((struct binding_level *));
2193 extern void delete_block                        PROTO((tree));
2194 extern void insert_block                        PROTO((tree));
2195 extern void add_block_current_level             PROTO((tree));
2196 extern void set_block                           PROTO((tree));
2197 extern void pushlevel_class                     PROTO((void));
2198 extern tree poplevel_class                      PROTO((int));
2199 extern void print_binding_stack                 PROTO((void));
2200 extern void print_binding_level                 PROTO((struct binding_level *));
2201 extern void push_namespace                      PROTO((tree));
2202 extern void pop_namespace                       PROTO((void));
2203 extern void maybe_push_to_top_level             PROTO((int));
2204 extern void push_to_top_level                   PROTO((void));
2205 extern void pop_from_top_level                  PROTO((void));
2206 extern tree identifier_type_value               PROTO((tree));
2207 extern void set_identifier_type_value           PROTO((tree, tree));
2208 extern void pop_everything                      PROTO((void));
2209 extern void pushtag                             PROTO((tree, tree, int));
2210 extern tree make_anon_name                      PROTO((void));
2211 extern void clear_anon_tags                     PROTO((void));
2212 extern int decls_match                          PROTO((tree, tree));
2213 extern int duplicate_decls                      PROTO((tree, tree));
2214 extern tree pushdecl                            PROTO((tree));
2215 extern tree pushdecl_top_level                  PROTO((tree));
2216 extern tree pushdecl_class_level                PROTO((tree));
2217 #if 0
2218 extern void pushdecl_nonclass_level             PROTO((tree));
2219 #endif
2220 extern tree pushdecl_namespace_level            PROTO((tree));
2221 extern tree push_using_decl                     PROTO((tree, tree));
2222 extern void push_class_level_binding            PROTO((tree, tree));
2223 extern tree implicitly_declare                  PROTO((tree));
2224 extern tree lookup_label                        PROTO((tree));
2225 extern tree shadow_label                        PROTO((tree));
2226 extern tree define_label                        PROTO((char *, int, tree));
2227 extern void push_switch                         PROTO((void));
2228 extern void pop_switch                          PROTO((void));
2229 extern void define_case_label                   PROTO((tree));
2230 extern tree getdecls                            PROTO((void));
2231 extern tree gettags                             PROTO((void));
2232 #if 0
2233 extern void set_current_level_tags_transparency PROTO((int));
2234 #endif
2235 extern tree binding_for_name                    PROTO((tree, tree));
2236 extern tree namespace_binding                   PROTO((tree, tree));
2237 extern void set_namespace_binding               PROTO((tree, tree, tree));
2238 extern tree lookup_namespace_name               PROTO((tree, tree));
2239 extern tree make_typename_type                  PROTO((tree, tree));
2240 extern tree lookup_name_nonclass                PROTO((tree));
2241 extern tree lookup_function_nonclass            PROTO((tree, tree));
2242 extern tree lookup_name                         PROTO((tree, int));
2243 extern tree lookup_name_current_level           PROTO((tree));
2244 extern int  lookup_using_namespace              PROTO((tree,tree,tree,tree));
2245 extern int  qualified_lookup_using_namespace    PROTO((tree,tree,tree));
2246 extern tree auto_function                       PROTO((tree, tree, enum built_in_function));
2247 extern void init_decl_processing                PROTO((void));
2248 extern int init_type_desc                       PROTO((void));
2249 extern tree define_function
2250         PROTO((char *, tree, enum built_in_function,
2251                void (*) (tree), char *));
2252 extern void shadow_tag                          PROTO((tree));
2253 extern tree groktypename                        PROTO((tree));
2254 extern tree start_decl                          PROTO((tree, tree, int, tree, tree));
2255 extern void start_decl_1                        PROTO((tree));
2256 extern void cp_finish_decl                      PROTO((tree, tree, tree, int, int));
2257 extern void finish_decl                         PROTO((tree, tree, tree));
2258 extern void expand_static_init                  PROTO((tree, tree));
2259 extern int complete_array_type                  PROTO((tree, tree, int));
2260 extern tree build_ptrmemfunc_type               PROTO((tree));
2261 /* the grokdeclarator prototype is in decl.h */
2262 extern int parmlist_is_exprlist                 PROTO((tree));
2263 extern int copy_args_p                          PROTO((tree));
2264 extern int grok_ctor_properties                 PROTO((tree, tree));
2265 extern void grok_op_properties                  PROTO((tree, int, int));
2266 extern tree xref_tag                            PROTO((tree, tree, tree, int));
2267 extern tree xref_tag_from_type                  PROTO((tree, tree, int));
2268 extern void xref_basetypes                      PROTO((tree, tree, tree, tree));
2269 extern tree start_enum                          PROTO((tree));
2270 extern tree finish_enum                         PROTO((tree, tree));
2271 extern tree build_enumerator                    PROTO((tree, tree));
2272 extern tree grok_enum_decls                     PROTO((tree));
2273 extern int start_function                       PROTO((tree, tree, tree, int));
2274 extern void expand_start_early_try_stmts        PROTO((void));
2275 extern void store_parm_decls                    PROTO((void));
2276 extern void store_return_init                   PROTO((tree, tree));
2277 extern void finish_function                     PROTO((int, int, int));
2278 extern tree start_method                        PROTO((tree, tree));
2279 extern tree finish_method                       PROTO((tree));
2280 extern void hack_incomplete_structures          PROTO((tree));
2281 extern tree maybe_build_cleanup_and_delete      PROTO((tree));
2282 extern tree maybe_build_cleanup                 PROTO((tree));
2283 extern void cplus_expand_expr_stmt              PROTO((tree));
2284 extern void finish_stmt                         PROTO((void));
2285 extern int id_in_current_class                  PROTO((tree));
2286 extern void push_cp_function_context            PROTO((tree));
2287 extern void pop_cp_function_context             PROTO((tree));
2288 extern int in_function_p                        PROTO((void));
2289 extern void replace_defarg                      PROTO((tree, tree));
2290 extern void print_other_binding_stack           PROTO((struct binding_level *));
2291 extern void revert_static_member_fn             PROTO((tree*, tree*, tree*));
2292 extern void cat_namespace_levels                PROTO((void));
2293
2294 /* in decl2.c */
2295 extern int flag_assume_nonnull_objects;
2296 extern int lang_decode_option                   PROTO((char *));
2297 extern tree grok_method_quals                   PROTO((tree, tree, tree));
2298 extern void warn_if_unknown_interface           PROTO((tree));
2299 extern tree grok_x_components                   PROTO((tree, tree));
2300 extern void grokclassfn                         PROTO((tree, tree, tree, enum overload_flags, tree));
2301 extern tree grok_alignof                        PROTO((tree));
2302 extern tree grok_array_decl                     PROTO((tree, tree));
2303 extern tree delete_sanity                       PROTO((tree, tree, int, int));
2304 extern tree check_classfn                       PROTO((tree, tree));
2305 extern void check_member_template               PROTO((tree));
2306 extern tree grokfield                           PROTO((tree, tree, tree, tree, tree));
2307 extern tree grokbitfield                        PROTO((tree, tree, tree));
2308 extern tree groktypefield                       PROTO((tree, tree));
2309 extern tree grokoptypename                      PROTO((tree, tree));
2310 extern int copy_assignment_arg_p                PROTO((tree, int));
2311 extern void cplus_decl_attributes               PROTO((tree, tree, tree)); 
2312 extern tree constructor_name_full               PROTO((tree));
2313 extern tree constructor_name                    PROTO((tree));
2314 extern void setup_vtbl_ptr                      PROTO((void));
2315 extern void mark_inline_for_output              PROTO((tree));
2316 extern void clear_temp_name                     PROTO((void));
2317 extern tree get_temp_name                       PROTO((tree, int));
2318 extern tree get_temp_regvar                     PROTO((tree, tree));
2319 extern void finish_anon_union                   PROTO((tree));
2320 extern tree finish_table                        PROTO((tree, tree, tree, int));
2321 extern void finish_builtin_type                 PROTO((tree, char *, tree *, int, tree));
2322 extern tree coerce_new_type                     PROTO((tree));
2323 extern tree coerce_delete_type                  PROTO((tree));
2324 extern void comdat_linkage                      PROTO((tree));
2325 extern void import_export_vtable                PROTO((tree, tree, int));
2326 extern int finish_prevtable_vardecl             PROTO((tree, tree));
2327 extern int walk_vtables                         PROTO((void (*)(tree, tree),
2328                                                        int (*)(tree, tree)));
2329 extern void walk_sigtables                      PROTO((void (*)(tree, tree),
2330                                                        void (*)(tree, tree)));
2331 extern void import_export_decl                  PROTO((tree));
2332 extern tree build_cleanup                       PROTO((tree));
2333 extern void finish_file                         PROTO((void));
2334 extern tree reparse_absdcl_as_expr              PROTO((tree, tree));
2335 extern tree reparse_absdcl_as_casts             PROTO((tree, tree));
2336 extern tree build_expr_from_tree                PROTO((tree));
2337 extern tree reparse_decl_as_expr                PROTO((tree, tree));
2338 extern tree finish_decl_parsing                 PROTO((tree));
2339 extern tree check_cp_case_value                 PROTO((tree));
2340 extern void set_decl_namespace                  PROTO((tree, tree));
2341 extern tree current_decl_namespace              PROTO((void));
2342 extern void push_decl_namespace                 PROTO((tree));
2343 extern void pop_decl_namespace                  PROTO((void));
2344 extern void do_namespace_alias                  PROTO((tree, tree));
2345 extern void do_toplevel_using_decl              PROTO((tree));
2346 extern tree do_class_using_decl                 PROTO((tree));
2347 extern void do_using_directive                  PROTO((tree));
2348 extern void check_default_args                  PROTO((tree));
2349 extern void mark_used                           PROTO((tree));
2350 extern tree handle_class_head                   PROTO((tree, tree, tree));
2351 extern tree lookup_arg_dependent                PROTO((tree, tree, tree));
2352
2353 /* in errfn.c */
2354 extern void cp_error                            ();
2355 extern void cp_error_at                         ();
2356 extern void cp_warning                          ();
2357 extern void cp_warning_at                       ();
2358 extern void cp_pedwarn                          ();
2359 extern void cp_pedwarn_at                       ();
2360 extern void cp_compiler_error                   ();
2361 extern void cp_sprintf                          ();
2362
2363 /* in error.c */
2364 extern void init_error                          PROTO((void));
2365 extern char *fndecl_as_string                   PROTO((tree, int));
2366 extern char *type_as_string                     PROTO((tree, int));
2367 extern char *type_as_string_real                PROTO((tree, int, int));
2368 extern char *args_as_string                     PROTO((tree, int));
2369 extern char *decl_as_string                     PROTO((tree, int));
2370 extern char *expr_as_string                     PROTO((tree, int));
2371 extern char *code_as_string                     PROTO((enum tree_code, int));
2372 extern char *language_as_string                 PROTO((enum languages, int));
2373 extern char *parm_as_string                     PROTO((int, int));
2374 extern char *op_as_string                       PROTO((enum tree_code, int));
2375 extern char *assop_as_string                    PROTO((enum tree_code, int));
2376 extern char *cv_as_string                       PROTO((tree, int));
2377 extern char *lang_decl_name                     PROTO((tree, int));
2378 extern char *cp_file_of                         PROTO((tree));
2379 extern int cp_line_of                           PROTO((tree));
2380
2381 /* in except.c */
2382 extern void init_exception_processing           PROTO((void));
2383 extern void expand_start_catch_block            PROTO((tree, tree));
2384 extern void expand_end_catch_block              PROTO((void));
2385 extern void expand_builtin_throw                PROTO((void));
2386 extern void expand_start_eh_spec                PROTO((void));
2387 extern void expand_exception_blocks             PROTO((void));
2388 extern tree start_anon_func                     PROTO((void));
2389 extern void end_anon_func                       PROTO((void));
2390 extern void expand_throw                        PROTO((tree));
2391 extern tree build_throw                         PROTO((tree));
2392
2393 /* in expr.c */
2394 extern void init_cplus_expand                   PROTO((void));
2395 extern void fixup_result_decl                   PROTO((tree, struct rtx_def *));
2396 extern int extract_init                         PROTO((tree, tree));
2397 extern void do_case                             PROTO((tree, tree));
2398
2399 /* friend.c */
2400 extern int is_friend                            PROTO((tree, tree));
2401 extern void make_friend_class                   PROTO((tree, tree));
2402 extern tree do_friend                           PROTO((tree, tree, tree, tree, enum overload_flags, tree, int));
2403
2404 /* in init.c */
2405 extern void init_init_processing                PROTO((void));
2406 extern void expand_direct_vtbls_init            PROTO((tree, tree, int, int, tree));
2407 extern void emit_base_init                      PROTO((tree, int));
2408 extern void check_base_init                     PROTO((tree));
2409 extern void do_member_init                      PROTO((tree, tree, tree));
2410 extern void expand_member_init                  PROTO((tree, tree, tree));
2411 extern void expand_aggr_init                    PROTO((tree, tree, int, int));
2412 extern int is_aggr_typedef                      PROTO((tree, int));
2413 extern int is_aggr_type                         PROTO((tree, int));
2414 extern tree get_aggr_from_typedef               PROTO((tree, int));
2415 extern tree get_type_value                      PROTO((tree));
2416 extern tree build_member_call                   PROTO((tree, tree, tree));
2417 extern tree build_offset_ref                    PROTO((tree, tree));
2418 extern tree resolve_offset_ref                  PROTO((tree));
2419 extern tree decl_constant_value                 PROTO((tree));
2420 extern tree build_new                           PROTO((tree, tree, tree, int));
2421 extern tree build_new_1                         PROTO((tree));
2422 extern tree expand_vec_init                     PROTO((tree, tree, tree, tree, int));
2423 extern tree build_x_delete                      PROTO((tree, tree, int, tree));
2424 extern tree build_delete                        PROTO((tree, tree, tree, int, int));
2425 extern tree build_vbase_delete                  PROTO((tree, tree));
2426 extern tree build_vec_delete                    PROTO((tree, tree, tree, tree, int));
2427
2428 /* in input.c */
2429
2430 /* in lex.c */
2431 extern tree make_pointer_declarator             PROTO((tree, tree));
2432 extern tree make_reference_declarator           PROTO((tree, tree));
2433 extern tree make_call_declarator                PROTO((tree, tree, tree, tree));
2434 extern void set_quals_and_spec                  PROTO((tree, tree, tree));
2435 extern char *operator_name_string               PROTO((tree));
2436 extern void lang_init                           PROTO((void));
2437 extern void lang_finish                         PROTO((void));
2438 extern void init_filename_times                 PROTO((void));
2439 #if 0
2440 extern void reinit_lang_specific                PROTO((void));
2441 #endif
2442 extern void reinit_parse_for_function           PROTO((void));
2443 extern void print_parse_statistics              PROTO((void));
2444 extern void extract_interface_info              PROTO((void));
2445 extern void do_pending_inlines                  PROTO((void));
2446 extern void process_next_inline                 PROTO((tree));
2447 extern struct pending_input *save_pending_input PROTO((void));
2448 extern void restore_pending_input               PROTO((struct pending_input *));
2449 extern void yyungetc                            PROTO((int, int));
2450 extern void reinit_parse_for_method             PROTO((int, tree));
2451 extern void reinit_parse_for_block              PROTO((int, struct obstack *));
2452 extern tree cons_up_default_function            PROTO((tree, tree, int));
2453 extern void check_for_missing_semicolon         PROTO((tree));
2454 extern void note_got_semicolon                  PROTO((tree));
2455 extern void note_list_got_semicolon             PROTO((tree));
2456 extern void do_pending_lang_change              PROTO((void));
2457 extern int identifier_type                      PROTO((tree));
2458 extern void see_typename                        PROTO((void));
2459 extern tree do_identifier                       PROTO((tree, int));
2460 extern tree do_scoped_id                        PROTO((tree, int));
2461 extern tree identifier_typedecl_value           PROTO((tree));
2462 extern int real_yylex                           PROTO((void));
2463 extern int is_rid                               PROTO((tree));
2464 extern tree build_lang_decl                     PROTO((enum tree_code, tree, tree));
2465 extern tree build_lang_field_decl               PROTO((enum tree_code, tree, tree));
2466 extern void copy_lang_decl                      PROTO((tree));
2467 extern tree make_lang_type                      PROTO((enum tree_code));
2468 extern void dump_time_statistics                PROTO((void));
2469 /* extern void compiler_error                   PROTO((char *, HOST_WIDE_INT, HOST_WIDE_INT)); */
2470 extern void yyerror                             PROTO((char *));
2471 extern void clear_inline_text_obstack           PROTO((void));
2472 extern void maybe_snarf_defarg                  PROTO((void));
2473 extern tree snarf_defarg                        PROTO((void));
2474 extern void add_defarg_fn                       PROTO((tree));
2475 extern void do_pending_defargs                  PROTO((void));
2476 extern int identifier_type                      PROTO((tree));
2477 extern void yyhook                              PROTO((int));
2478
2479 /* in method.c */
2480 extern void init_method                         PROTO((void));
2481 extern void do_inline_function_hair             PROTO((tree, tree));
2482 extern char *build_overload_name                PROTO((tree, int, int));
2483 extern tree build_static_name                   PROTO((tree, tree));
2484 extern tree build_decl_overload                 PROTO((tree, tree, int));
2485 extern tree build_template_decl_overload        PROTO((tree, tree, tree, tree, tree, int));
2486 extern tree build_typename_overload             PROTO((tree));
2487 extern tree build_overload_with_type            PROTO((tree, tree));
2488 extern tree build_opfncall                      PROTO((enum tree_code, int, tree, tree, tree));
2489 extern tree hack_identifier                     PROTO((tree, tree));
2490 extern tree make_thunk                          PROTO((tree, int));
2491 extern void emit_thunk                          PROTO((tree));
2492 extern void synthesize_method                   PROTO((tree));
2493 extern tree get_id_2                            PROTO((char *, tree));
2494
2495 /* in pt.c */
2496 extern tree innermost_args                      PROTO ((tree, int));
2497 extern tree tsubst                              PROTO ((tree, tree, tree));
2498 extern tree tsubst_expr                         PROTO ((tree, tree, tree));
2499 extern tree tsubst_copy                         PROTO ((tree, tree, tree));
2500 extern tree tsubst_chain                        PROTO((tree, tree));
2501 extern void maybe_begin_member_template_processing PROTO((tree));
2502 extern void maybe_end_member_template_processing PROTO((tree));
2503 extern tree finish_member_template_decl         PROTO((tree, tree));
2504 extern void begin_template_parm_list            PROTO((void));
2505 extern void begin_specialization                PROTO((void));
2506 extern void reset_specialization                PROTO((void));
2507 extern void end_specialization                  PROTO((void));
2508 extern void begin_explicit_instantiation        PROTO((void));
2509 extern void end_explicit_instantiation          PROTO((void));
2510 extern tree determine_specialization            PROTO((tree, tree, tree *, int, int));
2511 extern tree check_explicit_specialization        PROTO((tree, tree, int, int));
2512 extern tree process_template_parm               PROTO((tree, tree));
2513 extern tree end_template_parm_list              PROTO((tree));
2514 extern void end_template_decl                   PROTO((void));
2515 extern tree current_template_args               PROTO((void));
2516 extern tree push_template_decl                  PROTO((tree));
2517 extern tree push_template_decl_real             PROTO((tree, int));
2518 extern void redeclare_class_template            PROTO((tree, tree));
2519 extern tree lookup_template_class               PROTO((tree, tree, tree, tree));
2520 extern tree lookup_template_function            PROTO((tree, tree));
2521 extern int uses_template_parms                  PROTO((tree));
2522 extern tree instantiate_class_template          PROTO((tree));
2523 extern tree instantiate_template                PROTO((tree, tree));
2524 extern void overload_template_name              PROTO((tree));
2525 extern int fn_type_unification                  PROTO((tree, tree, tree, tree, tree, unification_kind_t, tree));
2526 extern int type_unification                     PROTO((tree, tree, tree, tree, tree, unification_kind_t, int));
2527 struct tinst_level *tinst_for_decl              PROTO((void));
2528 extern void mark_decl_instantiated              PROTO((tree, int));
2529 extern int more_specialized                     PROTO((tree, tree, tree));
2530 extern void mark_class_instantiated             PROTO((tree, int));
2531 extern void do_decl_instantiation               PROTO((tree, tree, tree));
2532 extern void do_type_instantiation               PROTO((tree, tree));
2533 extern tree instantiate_decl                    PROTO((tree));
2534 extern tree lookup_nested_type_by_name          PROTO((tree, tree));
2535 extern tree do_poplevel                         PROTO((void));
2536 extern tree get_bindings                        PROTO((tree, tree, tree));
2537 /* CONT ... */
2538 extern void add_tree                            PROTO((tree));
2539 extern void begin_tree                          PROTO((void));
2540 extern void end_tree                            PROTO((void));
2541 extern void add_maybe_template                  PROTO((tree, tree));
2542 extern void pop_tinst_level                     PROTO((void));
2543 extern tree most_specialized                    PROTO((tree, tree, tree));
2544 extern tree most_specialized_class              PROTO((tree, tree, tree));
2545 extern int more_specialized_class               PROTO((tree, tree));
2546 extern void do_pushlevel                        PROTO((void));
2547 extern int is_member_template                   PROTO((tree));
2548 extern int comp_template_parms                  PROTO((tree, tree));
2549 extern int template_class_depth                 PROTO((tree));
2550 extern int is_specialization_of                 PROTO((tree, tree));
2551 extern int comp_template_args                   PROTO((tree, tree));
2552
2553 extern int processing_specialization;
2554 extern int processing_explicit_instantiation;
2555
2556 /* in repo.c */
2557 extern void repo_template_used                  PROTO((tree));
2558 extern void repo_template_instantiated          PROTO((tree, int));
2559 extern void init_repo                           PROTO((char*));
2560 extern void finish_repo                         PROTO((void));
2561
2562 /* in rtti.c */
2563 extern void init_rtti_processing                PROTO((void));
2564 extern tree get_tinfo_fn_dynamic                PROTO((tree));
2565 extern tree build_typeid                        PROTO((tree));
2566 extern tree build_x_typeid                      PROTO((tree));
2567 extern tree get_tinfo_fn                        PROTO((tree));
2568 extern tree get_typeid                          PROTO((tree));
2569 extern tree build_dynamic_cast                  PROTO((tree, tree));
2570 extern void synthesize_tinfo_fn                 PROTO((tree));
2571
2572 /* in search.c */
2573 extern void push_memoized_context               PROTO((tree, int));
2574 extern void pop_memoized_context                PROTO((int));
2575 extern tree get_vbase                           PROTO((tree, tree));
2576 extern tree get_binfo                           PROTO((tree, tree, int));
2577 extern int get_base_distance                    PROTO((tree, tree, int, tree *));
2578 extern tree compute_access                      PROTO((tree, tree));
2579 extern tree lookup_field                        PROTO((tree, tree, int, int));
2580 extern tree lookup_nested_field                 PROTO((tree, int));
2581 extern tree lookup_fnfields                     PROTO((tree, tree, int));
2582 extern tree lookup_nested_tag                   PROTO((tree, tree));
2583 extern tree get_matching_virtual                PROTO((tree, tree, int));
2584 extern tree get_abstract_virtuals               PROTO((tree));
2585 extern tree get_baselinks                       PROTO((tree, tree, tree));
2586 extern tree next_baselink                       PROTO((tree));
2587 extern tree init_vbase_pointers                 PROTO((tree, tree));
2588 extern void expand_indirect_vtbls_init          PROTO((tree, tree, tree));
2589 extern void clear_search_slots                  PROTO((tree));
2590 extern tree get_vbase_types                     PROTO((tree));
2591 extern void build_mi_matrix                     PROTO((tree));
2592 extern void free_mi_matrix                      PROTO((void));
2593 extern void build_mi_virtuals                   PROTO((int, int));
2594 extern void add_mi_virtuals                     PROTO((int, tree));
2595 extern void report_ambiguous_mi_virtuals        PROTO((int, tree));
2596 extern void note_debug_info_needed              PROTO((tree));
2597 extern void push_class_decls                    PROTO((tree));
2598 extern void pop_class_decls                     PROTO((void));
2599 extern void unuse_fields                        PROTO((tree));
2600 extern void unmark_finished_struct              PROTO((tree));
2601 extern void print_search_statistics             PROTO((void));
2602 extern void init_search_processing              PROTO((void));
2603 extern void reinit_search_statistics            PROTO((void));
2604 extern tree current_scope                       PROTO((void));
2605 extern tree lookup_conversions                  PROTO((tree));
2606 extern tree get_template_base                   PROTO((tree, tree));
2607
2608 /* in semantics.c */
2609 extern void finish_expr_stmt                    PROTO((tree));
2610 extern tree begin_if_stmt                       PROTO((void));
2611 extern void finish_if_stmt_cond                 PROTO((tree, tree));
2612 extern tree finish_then_clause                  PROTO((tree));
2613 extern void begin_else_clause                   PROTO((void));
2614 extern void finish_else_clause                  PROTO((tree));
2615 extern void finish_if_stmt                      PROTO((void));
2616 extern tree begin_while_stmt                    PROTO((void));
2617 extern void finish_while_stmt_cond              PROTO((tree, tree));
2618 extern void finish_while_stmt                   PROTO((tree));
2619 extern tree begin_do_stmt                       PROTO((void));
2620 extern void finish_do_body                      PROTO((tree));
2621 extern void finish_do_stmt                      PROTO((tree, tree));
2622 extern void finish_return_stmt                  PROTO((tree));
2623 extern tree begin_for_stmt                      PROTO((void));
2624 extern void finish_for_init_stmt                PROTO((tree));
2625 extern void finish_for_cond                     PROTO((tree, tree));
2626 extern void finish_for_expr                     PROTO((tree, tree));
2627 extern void finish_for_stmt                     PROTO((tree, tree));
2628 extern void finish_break_stmt                   PROTO((void));
2629 extern void finish_continue_stmt                PROTO((void));
2630 extern void begin_switch_stmt                   PROTO((void));
2631 extern tree finish_switch_cond                  PROTO((tree));
2632 extern void finish_switch_stmt                  PROTO((tree, tree));
2633 extern void finish_case_label                   PROTO((tree, tree));
2634 extern void finish_goto_stmt                    PROTO((tree));
2635 extern tree begin_try_block                     PROTO((void));
2636 extern void finish_try_block                    PROTO((tree));
2637 extern void finish_handler_sequence             PROTO((tree));
2638 extern tree begin_handler                       PROTO((void));
2639 extern void finish_handler_parms                PROTO((tree));
2640 extern void finish_handler                      PROTO((tree));
2641 extern tree begin_compound_stmt                 PROTO((int));
2642 extern tree finish_compound_stmt                PROTO((int, tree));
2643 extern void finish_asm_stmt                     PROTO((tree, tree, tree, tree, tree));
2644 extern tree finish_parenthesized_expr           PROTO((tree));
2645 extern tree begin_stmt_expr                     PROTO((void));
2646 extern tree finish_stmt_expr                    PROTO((tree, tree));
2647 extern tree finish_call_expr                    PROTO((tree, tree));
2648 extern tree finish_increment_expr               PROTO((tree, enum tree_code));
2649 extern tree finish_this_expr                    PROTO((void));
2650 extern tree finish_object_call_expr             PROTO((tree, tree, tree));
2651 extern tree finish_qualified_object_call_expr   PROTO((tree, tree, tree));
2652 extern tree finish_pseudo_destructor_call_expr  PROTO((tree, tree, tree));
2653 extern tree finish_globally_qualified_member_call_expr PROTO ((tree, tree));
2654 extern tree finish_label_address_expr           PROTO((tree));
2655 extern tree finish_unary_op_expr                PROTO((enum tree_code, tree));
2656 extern tree finish_id_expr                      PROTO((tree));
2657 extern int  begin_new_placement                 PROTO((void));
2658 extern tree finish_new_placement                PROTO((tree, int));
2659 extern int begin_function_definition            PROTO((tree, tree));
2660 extern tree begin_constructor_declarator        PROTO((tree, tree));
2661 extern tree finish_declarator                   PROTO((tree, tree, tree, tree, int));
2662 extern void finish_translation_unit             PROTO((void));
2663 extern tree finish_template_type_parm           PROTO((tree, tree));
2664 extern tree finish_template_template_parm       PROTO((tree, tree));
2665 extern tree finish_parmlist                     PROTO((tree, int));
2666 extern tree begin_class_definition              PROTO((tree));
2667 extern tree finish_class_definition             PROTO((tree, tree, tree, int));
2668 extern void finish_default_args                 PROTO((void));
2669 extern void begin_inline_definitions            PROTO((void));
2670
2671 /* in sig.c */
2672 extern tree build_signature_pointer_type        PROTO((tree, int, int));
2673 extern tree build_signature_reference_type      PROTO((tree, int, int));
2674 extern tree build_signature_pointer_constructor PROTO((tree, tree));
2675 extern tree build_signature_method_call         PROTO((tree, tree));
2676 extern tree build_optr_ref                      PROTO((tree));
2677 extern void append_signature_fields             PROTO((tree));
2678
2679 /* in spew.c */
2680 extern void init_spew                           PROTO((void));
2681 extern int peekyylex                            PROTO((void));
2682 extern int yylex                                PROTO((void));
2683 extern tree arbitrate_lookup                    PROTO((tree, tree, tree));
2684
2685 /* in tree.c */
2686 extern int real_lvalue_p                        PROTO((tree));
2687 extern tree build_min                           PVPROTO((enum tree_code, tree, ...));
2688 extern tree build_min_nt                        PVPROTO((enum tree_code, ...));
2689 extern tree min_tree_cons                       PROTO((tree, tree, tree));
2690 extern int lvalue_p                             PROTO((tree));
2691 extern int lvalue_or_else                       PROTO((tree, char *));
2692 extern tree build_cplus_new                     PROTO((tree, tree));
2693 extern tree get_target_expr                     PROTO((tree));
2694 extern tree break_out_cleanups                  PROTO((tree));
2695 extern tree break_out_calls                     PROTO((tree));
2696 extern tree build_cplus_method_type             PROTO((tree, tree, tree));
2697 extern tree build_cplus_staticfn_type           PROTO((tree, tree, tree));
2698 extern tree build_cplus_array_type              PROTO((tree, tree));
2699 extern int layout_basetypes                     PROTO((tree, int));
2700 extern tree build_vbase_pointer_fields          PROTO((tree));
2701 extern tree build_base_fields                   PROTO((tree));
2702 extern tree hash_tree_cons                      PROTO((int, int, int, tree, tree, tree));
2703 extern tree hash_tree_chain                     PROTO((tree, tree));
2704 extern tree hash_chainon                        PROTO((tree, tree));
2705 extern tree get_decl_list                       PROTO((tree));
2706 extern tree make_binfo                          PROTO((tree, tree, tree, tree, tree));
2707 extern tree binfo_value                         PROTO((tree, tree));
2708 extern tree reverse_path                        PROTO((tree));
2709 extern int count_functions                      PROTO((tree));
2710 extern int is_overloaded_fn                     PROTO((tree));
2711 extern tree get_first_fn                        PROTO((tree));
2712 extern tree binding_init                        PROTO((struct tree_binding*));
2713 extern tree ovl_cons                            PROTO((tree, tree));
2714 extern tree scratch_ovl_cons                    PROTO((tree, tree));
2715 extern int ovl_member                           PROTO((tree, tree));
2716 extern tree build_overload                      PROTO((tree, tree));
2717 extern tree fnaddr_from_vtable_entry            PROTO((tree));
2718 extern tree function_arg_chain                  PROTO((tree));
2719 extern int promotes_to_aggr_type                PROTO((tree, enum tree_code));
2720 extern int is_aggr_type_2                       PROTO((tree, tree));
2721 extern char *lang_printable_name                PROTO((tree, int));
2722 extern tree build_exception_variant             PROTO((tree, tree));
2723 extern tree copy_template_template_parm         PROTO((tree));
2724 extern tree copy_to_permanent                   PROTO((tree));
2725 extern void print_lang_statistics               PROTO((void));
2726 extern void __eprintf
2727         PROTO((const char *, const char *, unsigned, const char *));
2728 extern tree array_type_nelts_total              PROTO((tree));
2729 extern tree array_type_nelts_top                PROTO((tree));
2730 extern tree break_out_target_exprs              PROTO((tree));
2731 extern tree get_type_decl                       PROTO((tree));
2732 extern tree vec_binfo_member                    PROTO((tree, tree));
2733 extern tree hack_decl_function_context          PROTO((tree));
2734 extern tree lvalue_type                         PROTO((tree));
2735 extern tree error_type                          PROTO((tree));
2736 extern tree make_temp_vec                       PROTO((int));
2737 extern tree build_ptr_wrapper                   PROTO((void *));
2738 extern tree build_expr_ptr_wrapper              PROTO((void *));
2739 extern tree build_int_wrapper                   PROTO((int));
2740 extern int varargs_function_p                   PROTO((tree));
2741 extern int really_overloaded_fn                 PROTO((tree));
2742 extern int cp_tree_equal                        PROTO((tree, tree));
2743 extern int can_free                             PROTO((struct obstack *, tree));
2744 extern tree mapcar                              PROTO((tree, tree (*) (tree)));
2745 extern void debug_binfo                         PROTO((tree));
2746 extern void push_expression_obstack             PROTO((void));
2747 #define scratchalloc expralloc
2748 #define scratch_tree_cons expr_tree_cons
2749 #define build_scratch_list build_expr_list
2750 #define make_scratch_vec make_temp_vec
2751 #define push_scratch_obstack push_expression_obstack
2752
2753 /* in typeck.c */
2754 extern tree condition_conversion                PROTO((tree));
2755 extern tree target_type                         PROTO((tree));
2756 extern tree require_complete_type               PROTO((tree));
2757 extern tree complete_type                       PROTO((tree));
2758 extern int type_unknown_p                       PROTO((tree));
2759 extern int fntype_p                             PROTO((tree));
2760 extern tree require_instantiated_type           PROTO((tree, tree, tree));
2761 extern tree commonparms                         PROTO((tree, tree));
2762 extern tree common_type                         PROTO((tree, tree));
2763 extern int compexcepttypes                      PROTO((tree, tree));
2764 extern int comptypes                            PROTO((tree, tree, int));
2765 extern int comp_target_types                    PROTO((tree, tree, int));
2766 extern int compparms                            PROTO((tree, tree, int));
2767 extern int comp_target_types                    PROTO((tree, tree, int));
2768 extern int self_promoting_args_p                PROTO((tree));
2769 extern tree unsigned_type                       PROTO((tree));
2770 extern tree signed_type                         PROTO((tree));
2771 extern tree signed_or_unsigned_type             PROTO((int, tree));
2772 extern tree expr_sizeof                         PROTO((tree));
2773 extern tree c_sizeof                            PROTO((tree));
2774 extern tree c_sizeof_nowarn                     PROTO((tree));
2775 extern tree c_alignof                           PROTO((tree));
2776 extern tree inline_conversion                   PROTO((tree));
2777 extern tree decay_conversion                    PROTO((tree));
2778 extern tree default_conversion                  PROTO((tree));
2779 extern tree build_object_ref                    PROTO((tree, tree, tree));
2780 extern tree build_component_ref_1               PROTO((tree, tree, int));
2781 extern tree build_component_ref                 PROTO((tree, tree, tree, int));
2782 extern tree build_x_component_ref               PROTO((tree, tree, tree, int));
2783 extern tree build_x_indirect_ref                PROTO((tree, char *));
2784 extern tree build_indirect_ref                  PROTO((tree, char *));
2785 extern tree build_array_ref                     PROTO((tree, tree));
2786 extern tree build_x_function_call               PROTO((tree, tree, tree));
2787 extern tree get_member_function_from_ptrfunc    PROTO((tree *, tree));
2788 extern tree build_function_call_real            PROTO((tree, tree, int, int));
2789 extern tree build_function_call                 PROTO((tree, tree));
2790 extern tree build_function_call_maybe           PROTO((tree, tree));
2791 extern tree convert_arguments                   PROTO((tree, tree, tree, tree, int));
2792 extern tree build_x_binary_op                   PROTO((enum tree_code, tree, tree));
2793 extern tree build_binary_op                     PROTO((enum tree_code, tree, tree, int));
2794 extern tree build_binary_op_nodefault           PROTO((enum tree_code, tree, tree, enum tree_code));
2795 extern tree build_component_addr                PROTO((tree, tree, char *));
2796 extern tree build_x_unary_op                    PROTO((enum tree_code, tree));
2797 extern tree build_unary_op                      PROTO((enum tree_code, tree, int));
2798 extern tree unary_complex_lvalue                PROTO((enum tree_code, tree));
2799 extern int mark_addressable                     PROTO((tree));
2800 extern tree build_x_conditional_expr            PROTO((tree, tree, tree));
2801 extern tree build_conditional_expr              PROTO((tree, tree, tree));
2802 extern tree build_x_compound_expr               PROTO((tree));
2803 extern tree build_compound_expr                 PROTO((tree));
2804 extern tree build_static_cast                   PROTO((tree, tree));
2805 extern tree build_reinterpret_cast              PROTO((tree, tree));
2806 extern tree build_const_cast                    PROTO((tree, tree));
2807 extern tree build_c_cast                        PROTO((tree, tree));
2808 extern tree build_x_modify_expr                 PROTO((tree, enum tree_code, tree));
2809 extern tree build_modify_expr                   PROTO((tree, enum tree_code, tree));
2810 extern int language_lvalue_valid                PROTO((tree));
2811 extern void warn_for_assignment                 PROTO((char *, char *, char *, tree, int, int));
2812 extern tree convert_for_initialization          PROTO((tree, tree, tree, int, char *, tree, int));
2813 extern void c_expand_asm_operands               PROTO((tree, tree, tree, tree, int, char *, int));
2814 extern void c_expand_return                     PROTO((tree));
2815 extern tree c_expand_start_case                 PROTO((tree));
2816 extern int comp_ptr_ttypes                      PROTO((tree, tree));
2817 extern int ptr_reasonably_similar               PROTO((tree, tree));
2818 extern tree build_ptrmemfunc                    PROTO((tree, tree, int));
2819
2820 /* in typeck2.c */
2821 extern tree error_not_base_type                 PROTO((tree, tree));
2822 extern tree binfo_or_else                       PROTO((tree, tree));
2823 extern void readonly_error                      PROTO((tree, char *, int));
2824 extern void abstract_virtuals_error             PROTO((tree, tree));
2825 extern void signature_error                     PROTO((tree, tree));
2826 extern void incomplete_type_error               PROTO((tree, tree));
2827 extern void my_friendly_abort                   PROTO((int));
2828 extern void my_friendly_assert                  PROTO((int, int));
2829 extern tree store_init_value                    PROTO((tree, tree));
2830 extern tree digest_init                         PROTO((tree, tree, tree *));
2831 extern tree build_scoped_ref                    PROTO((tree, tree));
2832 extern tree build_x_arrow                       PROTO((tree));
2833 extern tree build_m_component_ref               PROTO((tree, tree));
2834 extern tree build_functional_cast               PROTO((tree, tree));
2835 extern char *enum_name_string                   PROTO((tree, tree));
2836 extern void report_case_error                   PROTO((int, tree, tree, tree));
2837 extern void check_for_new_type                  PROTO((char *,flagged_type_tree));
2838 extern tree initializer_constant_valid_p        PROTO((tree, tree));
2839
2840 /* in xref.c */
2841 extern void GNU_xref_begin                      PROTO((char *));
2842 extern void GNU_xref_end                        PROTO((int));
2843 extern void GNU_xref_file                       PROTO((char *));
2844 extern void GNU_xref_start_scope                PROTO((HOST_WIDE_INT));
2845 extern void GNU_xref_end_scope                  PROTO((HOST_WIDE_INT, HOST_WIDE_INT, int, int));
2846 extern void GNU_xref_ref                        PROTO((tree, char *));
2847 extern void GNU_xref_decl                       PROTO((tree, tree));
2848 extern void GNU_xref_call                       PROTO((tree, char *));
2849 extern void GNU_xref_function                   PROTO((tree, tree));
2850 extern void GNU_xref_assign                     PROTO((tree));
2851 extern void GNU_xref_hier                       PROTO((char *, char *, int, int, int));
2852 extern void GNU_xref_member                     PROTO((tree, tree));
2853
2854 /* -- end of C++ */
2855
2856 #endif /* not _CP_TREE_H */