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