]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/tree.c
gengtype.c: Don't use UNION_INIT_ZERO.
[thirdparty/gcc.git] / gcc / cp / tree.c
CommitLineData
8d08fdba 1/* Language-dependent node constructors for parse phase of GNU compiler.
06ceef4e 2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
dbbf88d1 3 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
8d08fdba
MS
4 Hacked by Michael Tiemann (tiemann@cygnus.com)
5
f5adbb8d 6This file is part of GCC.
8d08fdba 7
f5adbb8d 8GCC is free software; you can redistribute it and/or modify
8d08fdba
MS
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2, or (at your option)
11any later version.
12
f5adbb8d 13GCC is distributed in the hope that it will be useful,
8d08fdba
MS
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
f5adbb8d 19along with GCC; see the file COPYING. If not, write to
e9fa0c7c
RK
20the Free Software Foundation, 59 Temple Place - Suite 330,
21Boston, MA 02111-1307, USA. */
8d08fdba
MS
22
23#include "config.h"
8d052bc7 24#include "system.h"
4977bab6
ZW
25#include "coretypes.h"
26#include "tm.h"
8d08fdba
MS
27#include "tree.h"
28#include "cp-tree.h"
29#include "flags.h"
11ad4784 30#include "real.h"
28cbf42c 31#include "rtl.h"
12027a89 32#include "toplev.h"
46e8c075
MM
33#include "insn-config.h"
34#include "integrate.h"
25af8512 35#include "tree-inline.h"
8a3c9180 36#include "target.h"
12027a89 37
b57b79f7
NN
38static tree bot_manip (tree *, int *, void *);
39static tree bot_replace (tree *, int *, void *);
40static tree build_cplus_array_type_1 (tree, tree);
41static int list_hash_eq (const void *, const void *);
42static hashval_t list_hash_pieces (tree, tree, tree);
43static hashval_t list_hash (const void *);
44static cp_lvalue_kind lvalue_p_1 (tree, int, int);
45static tree no_linkage_helper (tree *, int *, void *);
46static tree mark_local_for_remap_r (tree *, int *, void *);
47static tree cp_unsave_r (tree *, int *, void *);
48static tree build_target_expr (tree, tree);
49static tree count_trees_r (tree *, int *, void *);
50static tree verify_stmt_tree_r (tree *, int *, void *);
51static tree find_tree_r (tree *, int *, void *);
52
53static tree handle_java_interface_attribute (tree *, tree, tree, int, bool *);
54static tree handle_com_interface_attribute (tree *, tree, tree, int, bool *);
55static tree handle_init_priority_attribute (tree *, tree, tree, int, bool *);
91d231cb 56
27b8d0cd
MM
57/* If REF is an lvalue, returns the kind of lvalue that REF is.
58 Otherwise, returns clk_none. If TREAT_CLASS_RVALUES_AS_LVALUES is
838dfd8a 59 nonzero, rvalues of class type are considered lvalues. */
8d08fdba 60
27b8d0cd 61static cp_lvalue_kind
b57b79f7
NN
62lvalue_p_1 (tree ref,
63 int treat_class_rvalues_as_lvalues,
64 int allow_cast_as_lvalue)
8ccc31eb 65{
27b8d0cd
MM
66 cp_lvalue_kind op1_lvalue_kind = clk_none;
67 cp_lvalue_kind op2_lvalue_kind = clk_none;
68
8ccc31eb 69 if (TREE_CODE (TREE_TYPE (ref)) == REFERENCE_TYPE)
27b8d0cd 70 return clk_ordinary;
8ccc31eb 71
394fd776 72 if (ref == current_class_ptr)
27b8d0cd 73 return clk_none;
8ccc31eb
MS
74
75 switch (TREE_CODE (ref))
76 {
77 /* preincrements and predecrements are valid lvals, provided
e92cc029 78 what they refer to are valid lvals. */
8ccc31eb
MS
79 case PREINCREMENT_EXPR:
80 case PREDECREMENT_EXPR:
8ccc31eb 81 case SAVE_EXPR:
c7ae64f2
JM
82 case UNSAVE_EXPR:
83 case TRY_CATCH_EXPR:
84 case WITH_CLEANUP_EXPR:
69851283
MM
85 case REALPART_EXPR:
86 case IMAGPART_EXPR:
87 return lvalue_p_1 (TREE_OPERAND (ref, 0),
13d3f0b6
MA
88 treat_class_rvalues_as_lvalues,
89 allow_cast_as_lvalue);
90
91 case NOP_EXPR:
4e8dca1c 92 if (allow_cast_as_lvalue)
13d3f0b6
MA
93 return lvalue_p_1 (TREE_OPERAND (ref, 0),
94 treat_class_rvalues_as_lvalues,
95 allow_cast_as_lvalue);
96 else
97 return clk_none;
8ccc31eb 98
27b8d0cd
MM
99 case COMPONENT_REF:
100 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 0),
13d3f0b6
MA
101 treat_class_rvalues_as_lvalues,
102 allow_cast_as_lvalue);
27b8d0cd
MM
103 if (op1_lvalue_kind
104 /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
105 situations. */
106 && TREE_CODE (TREE_OPERAND (ref, 1)) == FIELD_DECL
807625cf 107 && DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
27b8d0cd
MM
108 {
109 /* Clear the ordinary bit. If this object was a class
110 rvalue we want to preserve that information. */
111 op1_lvalue_kind &= ~clk_ordinary;
112 /* The lvalue is for a btifield. */
113 op1_lvalue_kind |= clk_bitfield;
114 }
115 return op1_lvalue_kind;
116
8ccc31eb 117 case STRING_CST:
27b8d0cd 118 return clk_ordinary;
8ccc31eb
MS
119
120 case VAR_DECL:
121 if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
122 && DECL_LANG_SPECIFIC (ref)
123 && DECL_IN_AGGR_P (ref))
27b8d0cd 124 return clk_none;
8ccc31eb
MS
125 case INDIRECT_REF:
126 case ARRAY_REF:
127 case PARM_DECL:
128 case RESULT_DECL:
59e76fc6 129 if (TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE)
27b8d0cd 130 return clk_ordinary;
8ccc31eb
MS
131 break;
132
8ccc31eb
MS
133 /* A currently unresolved scope ref. */
134 case SCOPE_REF:
a98facb0 135 abort ();
8ccc31eb
MS
136 case OFFSET_REF:
137 if (TREE_CODE (TREE_OPERAND (ref, 1)) == FUNCTION_DECL)
27b8d0cd
MM
138 return clk_ordinary;
139 /* Fall through. */
140 case MAX_EXPR:
141 case MIN_EXPR:
142 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 0),
13d3f0b6
MA
143 treat_class_rvalues_as_lvalues,
144 allow_cast_as_lvalue);
27b8d0cd 145 op2_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 1),
13d3f0b6
MA
146 treat_class_rvalues_as_lvalues,
147 allow_cast_as_lvalue);
8ccc31eb
MS
148 break;
149
150 case COND_EXPR:
27b8d0cd 151 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 1),
13d3f0b6
MA
152 treat_class_rvalues_as_lvalues,
153 allow_cast_as_lvalue);
27b8d0cd 154 op2_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 2),
13d3f0b6
MA
155 treat_class_rvalues_as_lvalues,
156 allow_cast_as_lvalue);
27b8d0cd 157 break;
8ccc31eb
MS
158
159 case MODIFY_EXPR:
27b8d0cd 160 return clk_ordinary;
8ccc31eb
MS
161
162 case COMPOUND_EXPR:
69851283 163 return lvalue_p_1 (TREE_OPERAND (ref, 1),
13d3f0b6
MA
164 treat_class_rvalues_as_lvalues,
165 allow_cast_as_lvalue);
69851283
MM
166
167 case TARGET_EXPR:
27b8d0cd 168 return treat_class_rvalues_as_lvalues ? clk_class : clk_none;
69851283
MM
169
170 case CALL_EXPR:
356955cf 171 case VA_ARG_EXPR:
4e8dca1c
JM
172 /* Any class-valued call would be wrapped in a TARGET_EXPR. */
173 return clk_none;
69851283
MM
174
175 case FUNCTION_DECL:
176 /* All functions (except non-static-member functions) are
177 lvalues. */
27b8d0cd
MM
178 return (DECL_NONSTATIC_MEMBER_FUNCTION_P (ref)
179 ? clk_none : clk_ordinary);
7f85441b
KG
180
181 default:
182 break;
8ccc31eb
MS
183 }
184
27b8d0cd
MM
185 /* If one operand is not an lvalue at all, then this expression is
186 not an lvalue. */
187 if (!op1_lvalue_kind || !op2_lvalue_kind)
188 return clk_none;
189
190 /* Otherwise, it's an lvalue, and it has all the odd properties
191 contributed by either operand. */
192 op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
193 /* It's not an ordinary lvalue if it involves either a bit-field or
194 a class rvalue. */
195 if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
196 op1_lvalue_kind &= ~clk_ordinary;
197 return op1_lvalue_kind;
8ccc31eb
MS
198}
199
27b8d0cd
MM
200/* If REF is an lvalue, returns the kind of lvalue that REF is.
201 Otherwise, returns clk_none. Lvalues can be assigned, unless they
202 have TREE_READONLY, or unless they are FUNCTION_DECLs. Lvalues can
203 have their address taken, unless they have DECL_REGISTER. */
69851283 204
27b8d0cd 205cp_lvalue_kind
b57b79f7 206real_lvalue_p (tree ref)
69851283 207{
13d3f0b6 208 return lvalue_p_1 (ref, /*treat_class_rvalues_as_lvalues=*/ 0, /*cast*/ 1);
69851283
MM
209}
210
aa6e8ed3
MM
211/* Returns the kind of lvalue that REF is, in the sense of
212 [basic.lval]. This function should really be named lvalue_p; it
213 computes the C++ definition of lvalue. */
214
215cp_lvalue_kind
216real_non_cast_lvalue_p (tree ref)
217{
218 return lvalue_p_1 (ref,
219 /*treat_class_rvalues_as_lvalues=*/0,
220 /*allow_cast_as_lvalue=*/0);
221}
222
27b8d0cd
MM
223/* This differs from real_lvalue_p in that class rvalues are
224 considered lvalues. */
69851283 225
8d08fdba 226int
b57b79f7 227lvalue_p (tree ref)
8d08fdba 228{
27b8d0cd 229 return
13d3f0b6 230 (lvalue_p_1 (ref, /*class rvalue ok*/ 1, /*cast*/ 1) != clk_none);
8d08fdba
MS
231}
232
6c6e776d 233int
b57b79f7 234non_cast_lvalue_p (tree ref)
6c6e776d
MA
235{
236 return
237 (lvalue_p_1 (ref, /*class rvalue ok*/ 1, /*cast*/ 0) != clk_none);
238}
239
8d08fdba
MS
240/* Return nonzero if REF is an lvalue valid for this language;
241 otherwise, print an error message and return zero. */
242
243int
b57b79f7 244lvalue_or_else (tree ref, const char* string)
8d08fdba 245{
13d3f0b6
MA
246 int ret = lvalue_p_1 (ref, /* class rvalue ok */ 1, /* cast ok */ 1);
247 int win = (ret != clk_none);
248 if (! win)
249 error ("non-lvalue in %s", string);
250 return win;
251}
252
253int
b57b79f7 254non_cast_lvalue_or_else (tree ref, const char* string)
13d3f0b6
MA
255{
256 int ret = lvalue_p_1 (ref, /* class rvalue ok */ 1, /* cast ok */ 0);
257 int win = (ret != clk_none);
8d08fdba 258 if (! win)
8251199e 259 error ("non-lvalue in %s", string);
8d08fdba
MS
260 return win;
261}
262
c506ca22
MM
263/* Build a TARGET_EXPR, initializing the DECL with the VALUE. */
264
265static tree
b57b79f7 266build_target_expr (tree decl, tree value)
c506ca22
MM
267{
268 tree t;
269
270 t = build (TARGET_EXPR, TREE_TYPE (decl), decl, value,
c88770e9 271 cxx_maybe_build_cleanup (decl), NULL_TREE);
c506ca22
MM
272 /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
273 ignore the TARGET_EXPR. If there really turn out to be no
274 side-effects, then the optimizer should be able to get rid of
275 whatever code is generated anyhow. */
276 TREE_SIDE_EFFECTS (t) = 1;
277
278 return t;
279}
280
8d08fdba
MS
281/* INIT is a CALL_EXPR which needs info about its target.
282 TYPE is the type that this initialization should appear to have.
283
284 Build an encapsulation of the initialization to perform
285 and return it so that it can be processed by language-independent
2ee887f2 286 and language-specific expression expanders. */
e92cc029 287
8d08fdba 288tree
b57b79f7 289build_cplus_new (tree type, tree init)
8d08fdba 290{
e1376b00 291 tree fn;
e8abc66f
MS
292 tree slot;
293 tree rval;
4977bab6 294 int is_ctor;
e8abc66f 295
27b8d0cd
MM
296 /* Make sure that we're not trying to create an instance of an
297 abstract class. */
5bb2f1e7 298 abstract_virtuals_error (NULL_TREE, type);
27b8d0cd 299
02531345 300 if (TREE_CODE (init) != CALL_EXPR && TREE_CODE (init) != AGGR_INIT_EXPR)
06126ca2 301 return convert (type, init);
c11b6f21 302
4977bab6
ZW
303 fn = TREE_OPERAND (init, 0);
304 is_ctor = (TREE_CODE (fn) == ADDR_EXPR
305 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
306 && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
307
e8abc66f 308 slot = build (VAR_DECL, type);
aa36c081 309 DECL_ARTIFICIAL (slot) = 1;
46e8c075 310 DECL_CONTEXT (slot) = current_function_decl;
e8abc66f 311 layout_decl (slot, 0);
e1376b00
MM
312
313 /* We split the CALL_EXPR into its function and its arguments here.
314 Then, in expand_expr, we put them back together. The reason for
315 this is that this expression might be a default argument
316 expression. In that case, we need a new temporary every time the
317 expression is used. That's what break_out_target_exprs does; it
318 replaces every AGGR_INIT_EXPR with a copy that uses a fresh
319 temporary slot. Then, expand_expr builds up a call-expression
320 using the new slot. */
4977bab6
ZW
321
322 /* If we don't need to use a constructor to create an object of this
323 type, don't mess with AGGR_INIT_EXPR. */
324 if (is_ctor || TREE_ADDRESSABLE (type))
325 {
326 rval = build (AGGR_INIT_EXPR, type, fn, TREE_OPERAND (init, 1), slot);
327 TREE_SIDE_EFFECTS (rval) = 1;
328 AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
329 }
330 else
331 rval = init;
332
9d85d30c 333 rval = build_target_expr (slot, rval);
8d08fdba 334
8d08fdba
MS
335 return rval;
336}
337
ab93b543 338/* Build a TARGET_EXPR using INIT to initialize a new temporary of the
c506ca22 339 indicated TYPE. */
aa36c081
JM
340
341tree
b57b79f7 342build_target_expr_with_type (tree init, tree type)
aa36c081
JM
343{
344 tree slot;
345 tree rval;
346
5062dbd5
JM
347 if (TREE_CODE (init) == TARGET_EXPR)
348 return init;
349
c506ca22 350 slot = build (VAR_DECL, type);
aa36c081 351 DECL_ARTIFICIAL (slot) = 1;
c506ca22 352 DECL_CONTEXT (slot) = current_function_decl;
aa36c081 353 layout_decl (slot, 0);
9d85d30c 354 rval = build_target_expr (slot, init);
aa36c081
JM
355
356 return rval;
357}
358
c506ca22
MM
359/* Like build_target_expr_with_type, but use the type of INIT. */
360
361tree
b57b79f7 362get_target_expr (tree init)
c506ca22
MM
363{
364 return build_target_expr_with_type (init, TREE_TYPE (init));
365}
366
8d08fdba
MS
367/* Recursively perform a preorder search EXP for CALL_EXPRs, making
368 copies where they are found. Returns a deep copy all nodes transitively
369 containing CALL_EXPRs. */
370
371tree
b57b79f7 372break_out_calls (tree exp)
8d08fdba 373{
a703fb38 374 register tree t1, t2 = NULL_TREE;
8d08fdba
MS
375 register enum tree_code code;
376 register int changed = 0;
377 register int i;
378
379 if (exp == NULL_TREE)
380 return exp;
381
382 code = TREE_CODE (exp);
383
384 if (code == CALL_EXPR)
385 return copy_node (exp);
386
e92cc029 387 /* Don't try and defeat a save_expr, as it should only be done once. */
8d08fdba
MS
388 if (code == SAVE_EXPR)
389 return exp;
390
391 switch (TREE_CODE_CLASS (code))
392 {
393 default:
394 abort ();
395
396 case 'c': /* a constant */
397 case 't': /* a type node */
398 case 'x': /* something random, like an identifier or an ERROR_MARK. */
399 return exp;
400
401 case 'd': /* A decl node */
8d08fdba
MS
402 return exp;
403
404 case 'b': /* A block node */
405 {
406 /* Don't know how to handle these correctly yet. Must do a
407 break_out_calls on all DECL_INITIAL values for local variables,
408 and also break_out_calls on all sub-blocks and sub-statements. */
409 abort ();
410 }
411 return exp;
412
413 case 'e': /* an expression */
414 case 'r': /* a reference */
415 case 's': /* an expression with side effects */
8d5e6e25 416 for (i = TREE_CODE_LENGTH (code) - 1; i >= 0; i--)
8d08fdba
MS
417 {
418 t1 = break_out_calls (TREE_OPERAND (exp, i));
419 if (t1 != TREE_OPERAND (exp, i))
420 {
421 exp = copy_node (exp);
422 TREE_OPERAND (exp, i) = t1;
423 }
424 }
425 return exp;
426
427 case '<': /* a comparison expression */
428 case '2': /* a binary arithmetic expression */
429 t2 = break_out_calls (TREE_OPERAND (exp, 1));
430 if (t2 != TREE_OPERAND (exp, 1))
431 changed = 1;
432 case '1': /* a unary arithmetic expression */
433 t1 = break_out_calls (TREE_OPERAND (exp, 0));
434 if (t1 != TREE_OPERAND (exp, 0))
435 changed = 1;
436 if (changed)
437 {
8d5e6e25 438 if (TREE_CODE_LENGTH (code) == 1)
8d08fdba
MS
439 return build1 (code, TREE_TYPE (exp), t1);
440 else
441 return build (code, TREE_TYPE (exp), t1, t2);
442 }
443 return exp;
444 }
445
446}
447\f
8d08fdba
MS
448/* Construct, lay out and return the type of methods belonging to class
449 BASETYPE and whose arguments are described by ARGTYPES and whose values
450 are described by RETTYPE. If each type exists already, reuse it. */
e92cc029 451
8d08fdba 452tree
b57b79f7 453build_cplus_method_type (tree basetype, tree rettype, tree argtypes)
8d08fdba
MS
454{
455 register tree t;
456 tree ptype;
457 int hashcode;
458
459 /* Make a node of the sort we want. */
460 t = make_node (METHOD_TYPE);
461
462 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
463 TREE_TYPE (t) = rettype;
6eabb241 464 ptype = build_pointer_type (basetype);
863adfc0 465
8d08fdba 466 /* The actual arglist for this function includes a "hidden" argument
454fa7a7 467 which is "this". Put it into the list of argument types. */
8d08fdba
MS
468 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
469 TYPE_ARG_TYPES (t) = argtypes;
470 TREE_SIDE_EFFECTS (argtypes) = 1; /* Mark first argtype as "artificial". */
471
472 /* If we already have such a type, use the old one and free this one.
473 Note that it also frees up the above cons cell if found. */
558475f0
MM
474 hashcode = TYPE_HASH (basetype) + TYPE_HASH (rettype) +
475 type_hash_list (argtypes);
476
8d08fdba
MS
477 t = type_hash_canon (hashcode, t);
478
d0f062fb 479 if (!COMPLETE_TYPE_P (t))
8d08fdba
MS
480 layout_type (t);
481
482 return t;
483}
484
bd6dd845 485static tree
b57b79f7 486build_cplus_array_type_1 (tree elt_type, tree index_type)
8d08fdba 487{
8d08fdba
MS
488 tree t;
489
adecb3f4
MM
490 if (elt_type == error_mark_node || index_type == error_mark_node)
491 return error_mark_node;
492
a49cfba8
JM
493 /* Don't do the minimal thing just because processing_template_decl is
494 set; we want to give string constants the right type immediately, so
495 we don't have to fix them up at instantiation time. */
496 if ((processing_template_decl
497 && index_type && TYPE_MAX_VALUE (index_type)
498 && TREE_CODE (TYPE_MAX_VALUE (index_type)) != INTEGER_CST)
7bdbfa05 499 || uses_template_parms (elt_type)
e6237031 500 || (index_type && uses_template_parms (index_type)))
5566b478
MS
501 {
502 t = make_node (ARRAY_TYPE);
503 TREE_TYPE (t) = elt_type;
504 TYPE_DOMAIN (t) = index_type;
505 }
506 else
80661759 507 t = build_array_type (elt_type, index_type);
8d08fdba
MS
508
509 /* Push these needs up so that initialization takes place
510 more easily. */
db3626d1
MM
511 TYPE_NEEDS_CONSTRUCTING (t)
512 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (elt_type));
834c6dff
MM
513 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
514 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (elt_type));
8d08fdba
MS
515 return t;
516}
e349ee73
MS
517
518tree
b57b79f7 519build_cplus_array_type (tree elt_type, tree index_type)
e349ee73
MS
520{
521 tree t;
89d684bb 522 int type_quals = cp_type_quals (elt_type);
0abc082a
JM
523 int cv_quals = type_quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE);
524 int other_quals = type_quals & ~(TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE);
91063b51 525
0abc082a
JM
526 if (cv_quals)
527 elt_type = cp_build_qualified_type (elt_type, other_quals);
e349ee73
MS
528
529 t = build_cplus_array_type_1 (elt_type, index_type);
530
0abc082a
JM
531 if (cv_quals)
532 t = cp_build_qualified_type (t, cv_quals);
e349ee73
MS
533
534 return t;
535}
8d08fdba 536\f
adecb3f4
MM
537/* Make a variant of TYPE, qualified with the TYPE_QUALS. Handles
538 arrays correctly. In particular, if TYPE is an array of T's, and
c2ea3a40 539 TYPE_QUALS is non-empty, returns an array of qualified T's.
4f2b0fb2
NS
540
541 FLAGS determines how to deal with illformed qualifications. If
542 tf_ignore_bad_quals is set, then bad qualifications are dropped
543 (this is permitted if TYPE was introduced via a typedef or template
544 type parameter). If bad qualifications are dropped and tf_warning
545 is set, then a warning is issued for non-const qualifications. If
546 tf_ignore_bad_quals is not set and tf_error is not set, we
547 return error_mark_node. Otherwise, we issue an error, and ignore
548 the qualifications.
549
550 Qualification of a reference type is valid when the reference came
551 via a typedef or template type argument. [dcl.ref] No such
552 dispensation is provided for qualifying a function type. [dcl.fct]
553 DR 295 queries this and the proposed resolution brings it into line
554 with qualifiying a reference. We implement the DR. We also behave
555 in a similar manner for restricting non-pointer types. */
556
f376e137 557tree
b57b79f7
NN
558cp_build_qualified_type_real (tree type,
559 int type_quals,
560 tsubst_flags_t complain)
f376e137 561{
2adeacc9 562 tree result;
4f2b0fb2 563 int bad_quals = TYPE_UNQUALIFIED;
171d2f50
NS
564 /* We keep bad function qualifiers separate, so that we can decide
565 whether to implement DR 295 or not. DR 295 break existing code,
566 unfortunately. Remove this variable to implement the defect
567 report. */
568 int bad_func_quals = TYPE_UNQUALIFIED;
2adeacc9 569
e76a2646
MS
570 if (type == error_mark_node)
571 return type;
e271912d 572
89d684bb 573 if (type_quals == cp_type_quals (type))
e271912d
JM
574 return type;
575
4f2b0fb2
NS
576 /* A reference, fucntion or method type shall not be cv qualified.
577 [dcl.ref], [dct.fct] */
578 if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
579 && (TREE_CODE (type) == REFERENCE_TYPE
580 || TREE_CODE (type) == FUNCTION_TYPE
581 || TREE_CODE (type) == METHOD_TYPE))
582 {
583 bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
171d2f50
NS
584 if (TREE_CODE (type) != REFERENCE_TYPE)
585 bad_func_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
4f2b0fb2
NS
586 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
587 }
588
589 /* A restrict-qualified type must be a pointer (or reference)
91063b51
MM
590 to object or incomplete type. */
591 if ((type_quals & TYPE_QUAL_RESTRICT)
adecb3f4 592 && TREE_CODE (type) != TEMPLATE_TYPE_PARM
4f2b0fb2
NS
593 && TREE_CODE (type) != TYPENAME_TYPE
594 && !POINTER_TYPE_P (type))
91063b51 595 {
4f2b0fb2 596 bad_quals |= TYPE_QUAL_RESTRICT;
91063b51
MM
597 type_quals &= ~TYPE_QUAL_RESTRICT;
598 }
599
4f2b0fb2
NS
600 if (bad_quals == TYPE_UNQUALIFIED)
601 /*OK*/;
602 else if (!(complain & (tf_error | tf_ignore_bad_quals)))
603 return error_mark_node;
171d2f50
NS
604 else if (bad_func_quals && !(complain & tf_error))
605 return error_mark_node;
4f2b0fb2 606 else
77700469 607 {
4f2b0fb2
NS
608 if (complain & tf_ignore_bad_quals)
609 /* We're not going to warn about constifying things that can't
610 be constified. */
611 bad_quals &= ~TYPE_QUAL_CONST;
171d2f50 612 bad_quals |= bad_func_quals;
4f2b0fb2
NS
613 if (bad_quals)
614 {
615 tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
616
171d2f50
NS
617 if (!(complain & tf_ignore_bad_quals)
618 || bad_func_quals)
4f2b0fb2
NS
619 error ("`%V' qualifiers cannot be applied to `%T'",
620 bad_type, type);
4f2b0fb2 621 }
77700469 622 }
4f2b0fb2
NS
623
624 if (TREE_CODE (type) == ARRAY_TYPE)
f376e137 625 {
db3626d1
MM
626 /* In C++, the qualification really applies to the array element
627 type. Obtain the appropriately qualified element type. */
628 tree t;
629 tree element_type
630 = cp_build_qualified_type_real (TREE_TYPE (type),
631 type_quals,
632 complain);
633
634 if (element_type == error_mark_node)
adecb3f4 635 return error_mark_node;
f376e137 636
29fae15c
MM
637 /* See if we already have an identically qualified type. */
638 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
639 if (cp_type_quals (t) == type_quals
640 && TYPE_NAME (t) == TYPE_NAME (type)
641 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type))
642 break;
643
644 if (!t)
645 {
646 /* Make a new array type, just like the old one, but with the
647 appropriately qualified element type. */
648 t = build_type_copy (type);
649 TREE_TYPE (t) = element_type;
650 }
f376e137 651
db3626d1 652 /* Even if we already had this variant, we update
834c6dff 653 TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
db3626d1
MM
654 they changed since the variant was originally created.
655
656 This seems hokey; if there is some way to use a previous
657 variant *without* coming through here,
658 TYPE_NEEDS_CONSTRUCTING will never be updated. */
659 TYPE_NEEDS_CONSTRUCTING (t)
660 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
834c6dff
MM
661 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
662 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
db3626d1 663 return t;
f376e137 664 }
2adeacc9
MM
665 else if (TYPE_PTRMEMFUNC_P (type))
666 {
667 /* For a pointer-to-member type, we can't just return a
668 cv-qualified version of the RECORD_TYPE. If we do, we
4f2b0fb2 669 haven't changed the field that contains the actual pointer to
2adeacc9
MM
670 a method, and so TYPE_PTRMEMFUNC_FN_TYPE will be wrong. */
671 tree t;
672
673 t = TYPE_PTRMEMFUNC_FN_TYPE (type);
674 t = cp_build_qualified_type_real (t, type_quals, complain);
46cbda4a 675 return build_ptrmemfunc_type (t);
2adeacc9 676 }
4f2b0fb2 677
2adeacc9
MM
678 /* Retrieve (or create) the appropriately qualified variant. */
679 result = build_qualified_type (type, type_quals);
680
681 /* If this was a pointer-to-method type, and we just made a copy,
3cfab7ec
GK
682 then we need to unshare the record that holds the cached
683 pointer-to-member-function type, because these will be distinct
684 between the unqualified and qualified types. */
2adeacc9
MM
685 if (result != type
686 && TREE_CODE (type) == POINTER_TYPE
687 && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE)
3cfab7ec 688 TYPE_LANG_SPECIFIC (result) = NULL;
2adeacc9
MM
689
690 return result;
f376e137 691}
53929c47
JM
692
693/* Returns the canonical version of TYPE. In other words, if TYPE is
694 a typedef, returns the underlying type. The cv-qualification of
695 the type returned matches the type input; they will always be
696 compatible types. */
697
698tree
b57b79f7 699canonical_type_variant (tree t)
53929c47 700{
89d684bb 701 return cp_build_qualified_type (TYPE_MAIN_VARIANT (t), cp_type_quals (t));
53929c47 702}
f376e137 703\f
dbbf88d1
NS
704/* Makes new binfos for the indirect bases under BINFO. T is the most
705 derived TYPE. PREV is the previous binfo, whose TREE_CHAIN we make
706 point to this binfo. We return the last BINFO created.
9a71c18b 707
dbbf88d1
NS
708 The CLASSTYPE_VBASECLASSES list of T is constructed in reverse
709 order (pre-order, depth-first, right-to-left). You must nreverse it.
710
711 The BINFO_INHERITANCE of a virtual base class points to the binfo
712 og the most derived type.
713
714 The binfo's TREE_CHAIN is set to inheritance graph order, but bases
715 for non-class types are not included (i.e. those which are
716 dependent bases in non-instantiated templates). */
717
718tree
b57b79f7 719copy_base_binfos (tree binfo, tree t, tree prev)
9a71c18b 720{
dfbcd65a 721 tree binfos = BINFO_BASETYPES (binfo);
dbbf88d1 722 int n, ix;
9a71c18b 723
dbbf88d1
NS
724 if (prev)
725 TREE_CHAIN (prev) = binfo;
726 prev = binfo;
727
dfbcd65a 728 if (binfos == NULL_TREE)
dbbf88d1 729 return prev;
9a71c18b 730
dbbf88d1
NS
731 n = TREE_VEC_LENGTH (binfos);
732
733 /* Now copy the structure beneath BINFO. */
734 for (ix = 0; ix != n; ix++)
dfbcd65a 735 {
dbbf88d1
NS
736 tree base_binfo = TREE_VEC_ELT (binfos, ix);
737 tree new_binfo = NULL_TREE;
738
739 if (!CLASS_TYPE_P (BINFO_TYPE (base_binfo)))
740 {
741 my_friendly_assert (binfo == TYPE_BINFO (t), 20030204);
742
743 new_binfo = base_binfo;
744 TREE_CHAIN (prev) = new_binfo;
745 prev = new_binfo;
746 BINFO_INHERITANCE_CHAIN (new_binfo) = binfo;
747 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
748 }
749 else if (TREE_VIA_VIRTUAL (base_binfo))
750 {
751 new_binfo = purpose_member (BINFO_TYPE (base_binfo),
752 CLASSTYPE_VBASECLASSES (t));
753 if (new_binfo)
754 new_binfo = TREE_VALUE (new_binfo);
755 }
756
757 if (!new_binfo)
758 {
759 new_binfo = make_binfo (BINFO_OFFSET (base_binfo),
760 base_binfo, NULL_TREE,
761 BINFO_VIRTUALS (base_binfo));
762 prev = copy_base_binfos (new_binfo, t, prev);
763 if (TREE_VIA_VIRTUAL (base_binfo))
764 {
765 CLASSTYPE_VBASECLASSES (t)
766 = tree_cons (BINFO_TYPE (new_binfo), new_binfo,
767 CLASSTYPE_VBASECLASSES (t));
768 TREE_VIA_VIRTUAL (new_binfo) = 1;
769 BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
770 }
771 else
772 BINFO_INHERITANCE_CHAIN (new_binfo) = binfo;
773 }
774 TREE_VEC_ELT (binfos, ix) = new_binfo;
9a71c18b 775 }
dbbf88d1
NS
776
777 return prev;
9a71c18b
JM
778}
779
8d08fdba
MS
780\f
781/* Hashing of lists so that we don't make duplicates.
782 The entry point is `list_hash_canon'. */
783
8d08fdba
MS
784/* Now here is the hash table. When recording a list, it is added
785 to the slot whose index is the hash code mod the table size.
786 Note that the hash table is used for several kinds of lists.
787 While all these live in the same table, they are completely independent,
788 and the hash code is computed differently for each of these. */
789
e2500fed 790static GTY ((param_is (union tree_node))) htab_t list_hash_table;
9ccb25d5
MM
791
792struct list_proxy
793{
794 tree purpose;
795 tree value;
796 tree chain;
797};
798
799/* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
800 for a node we are thinking about adding). */
801
802static int
b57b79f7 803list_hash_eq (const void* entry, const void* data)
9ccb25d5
MM
804{
805 tree t = (tree) entry;
806 struct list_proxy *proxy = (struct list_proxy *) data;
807
808 return (TREE_VALUE (t) == proxy->value
809 && TREE_PURPOSE (t) == proxy->purpose
810 && TREE_CHAIN (t) == proxy->chain);
811}
8d08fdba
MS
812
813/* Compute a hash code for a list (chain of TREE_LIST nodes
814 with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
815 TREE_COMMON slots), by adding the hash codes of the individual entries. */
816
9ccb25d5 817static hashval_t
b57b79f7 818list_hash_pieces (tree purpose, tree value, tree chain)
8d08fdba 819{
9ccb25d5
MM
820 hashval_t hashcode = 0;
821
37c46b43
MS
822 if (chain)
823 hashcode += TYPE_HASH (chain);
9ccb25d5 824
37c46b43
MS
825 if (value)
826 hashcode += TYPE_HASH (value);
8d08fdba
MS
827 else
828 hashcode += 1007;
37c46b43
MS
829 if (purpose)
830 hashcode += TYPE_HASH (purpose);
8d08fdba
MS
831 else
832 hashcode += 1009;
833 return hashcode;
834}
835
9ccb25d5 836/* Hash an already existing TREE_LIST. */
8d08fdba 837
9ccb25d5 838static hashval_t
b57b79f7 839list_hash (const void* p)
8d08fdba 840{
9ccb25d5
MM
841 tree t = (tree) p;
842 return list_hash_pieces (TREE_PURPOSE (t),
843 TREE_VALUE (t),
844 TREE_CHAIN (t));
8d08fdba
MS
845}
846
51632249
JM
847/* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
848 object for an identical list if one already exists. Otherwise, build a
849 new one, and record it as the canonical object. */
8d08fdba 850
8d08fdba 851tree
b57b79f7 852hash_tree_cons (tree purpose, tree value, tree chain)
8d08fdba 853{
a703fb38 854 int hashcode = 0;
9ccb25d5
MM
855 PTR* slot;
856 struct list_proxy proxy;
857
858 /* Hash the list node. */
859 hashcode = list_hash_pieces (purpose, value, chain);
860 /* Create a proxy for the TREE_LIST we would like to create. We
861 don't actually create it so as to avoid creating garbage. */
862 proxy.purpose = purpose;
863 proxy.value = value;
864 proxy.chain = chain;
865 /* See if it is already in the table. */
866 slot = htab_find_slot_with_hash (list_hash_table, &proxy, hashcode,
867 INSERT);
868 /* If not, create a new node. */
869 if (!*slot)
870 *slot = (PTR) tree_cons (purpose, value, chain);
871 return *slot;
8d08fdba
MS
872}
873
874/* Constructor for hashed lists. */
e92cc029 875
8d08fdba 876tree
b57b79f7 877hash_tree_chain (tree value, tree chain)
8d08fdba 878{
51632249 879 return hash_tree_cons (NULL_TREE, value, chain);
8d08fdba
MS
880}
881
882/* Similar, but used for concatenating two lists. */
e92cc029 883
8d08fdba 884tree
b57b79f7 885hash_chainon (tree list1, tree list2)
8d08fdba
MS
886{
887 if (list2 == 0)
888 return list1;
889 if (list1 == 0)
890 return list2;
891 if (TREE_CHAIN (list1) == NULL_TREE)
892 return hash_tree_chain (TREE_VALUE (list1), list2);
893 return hash_tree_chain (TREE_VALUE (list1),
894 hash_chainon (TREE_CHAIN (list1), list2));
895}
8d08fdba
MS
896\f
897/* Build an association between TYPE and some parameters:
898
899 OFFSET is the offset added to `this' to convert it to a pointer
900 of type `TYPE *'
901
8926095f
MS
902 BINFO is the base binfo to use, if we are deriving from one. This
903 is necessary, as we want specialized parent binfos from base
904 classes, so that the VTABLE_NAMEs of bases are for the most derived
38e01259 905 type, instead of the simple type.
8926095f 906
8d08fdba
MS
907 VTABLE is the virtual function table with which to initialize
908 sub-objects of type TYPE.
909
ca107ded 910 VIRTUALS are the virtual functions sitting in VTABLE. */
8d08fdba
MS
911
912tree
b57b79f7 913make_binfo (tree offset, tree binfo, tree vtable, tree virtuals)
8d08fdba 914{
1824b90d 915 tree new_binfo = make_tree_vec (BINFO_LANG_ELTS);
8926095f 916 tree type;
8d08fdba 917
8926095f 918 if (TREE_CODE (binfo) == TREE_VEC)
dbbf88d1
NS
919 {
920 type = BINFO_TYPE (binfo);
921 BINFO_DEPENDENT_BASE_P (new_binfo) = BINFO_DEPENDENT_BASE_P (binfo);
922 }
8926095f
MS
923 else
924 {
925 type = binfo;
dbbf88d1
NS
926 binfo = NULL_TREE;
927 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
8926095f 928 }
8d08fdba 929
8926095f
MS
930 TREE_TYPE (new_binfo) = TYPE_MAIN_VARIANT (type);
931 BINFO_OFFSET (new_binfo) = offset;
932 BINFO_VTABLE (new_binfo) = vtable;
933 BINFO_VIRTUALS (new_binfo) = virtuals;
8d08fdba 934
dbbf88d1
NS
935 if (binfo && !BINFO_DEPENDENT_BASE_P (binfo)
936 && BINFO_BASETYPES (binfo) != NULL_TREE)
8d08fdba 937 {
dbbf88d1
NS
938 BINFO_BASETYPES (new_binfo) = copy_node (BINFO_BASETYPES (binfo));
939 /* We do not need to copy the accesses, as they are read only. */
940 BINFO_BASEACCESSES (new_binfo) = BINFO_BASEACCESSES (binfo);
8d08fdba 941 }
dbbf88d1 942 return new_binfo;
8d08fdba
MS
943}
944
8d08fdba 945void
b57b79f7 946debug_binfo (tree elem)
8d08fdba 947{
fed3cef0 948 HOST_WIDE_INT n;
8d08fdba
MS
949 tree virtuals;
950
90ff44cf
KG
951 fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
952 "\nvtable type:\n",
953 TYPE_NAME_STRING (BINFO_TYPE (elem)),
fed3cef0 954 TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
8d08fdba
MS
955 debug_tree (BINFO_TYPE (elem));
956 if (BINFO_VTABLE (elem))
fed3cef0 957 fprintf (stderr, "vtable decl \"%s\"\n",
c35cce41 958 IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
8d08fdba
MS
959 else
960 fprintf (stderr, "no vtable decl yet\n");
961 fprintf (stderr, "virtuals:\n");
da3d4dfa 962 virtuals = BINFO_VIRTUALS (elem);
1f84ec23 963 n = 0;
f30432d7 964
8d08fdba
MS
965 while (virtuals)
966 {
83f2ccf4 967 tree fndecl = TREE_VALUE (virtuals);
71e89f27 968 fprintf (stderr, "%s [%ld =? %ld]\n",
8d08fdba 969 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
71e89f27 970 (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
f30432d7 971 ++n;
8d08fdba 972 virtuals = TREE_CHAIN (virtuals);
8d08fdba
MS
973 }
974}
975
8d08fdba 976int
b57b79f7 977count_functions (tree t)
8d08fdba 978{
2c73f9f5 979 int i;
8d08fdba
MS
980 if (TREE_CODE (t) == FUNCTION_DECL)
981 return 1;
2c73f9f5
ML
982 else if (TREE_CODE (t) == OVERLOAD)
983 {
6a87d634 984 for (i = 0; t; t = OVL_CHAIN (t))
2c73f9f5
ML
985 i++;
986 return i;
987 }
8d08fdba 988
a98facb0 989 abort ();
0d16d68e 990 return 0;
8d08fdba
MS
991}
992
8d08fdba 993int
b57b79f7 994is_overloaded_fn (tree x)
8d08fdba 995{
4bb0968f 996 /* A baselink is also considered an overloaded function. */
05e0b2f4
JM
997 if (TREE_CODE (x) == OFFSET_REF)
998 x = TREE_OPERAND (x, 1);
4bb0968f 999 if (BASELINK_P (x))
da15dae6 1000 x = BASELINK_FUNCTIONS (x);
06ab59df
MM
1001 return (TREE_CODE (x) == FUNCTION_DECL
1002 || TREE_CODE (x) == TEMPLATE_ID_EXPR
1003 || DECL_FUNCTION_TEMPLATE_P (x)
2c73f9f5 1004 || TREE_CODE (x) == OVERLOAD);
8d08fdba
MS
1005}
1006
8926095f 1007int
b57b79f7 1008really_overloaded_fn (tree x)
8926095f 1009{
4bb0968f 1010 /* A baselink is also considered an overloaded function. */
05e0b2f4
JM
1011 if (TREE_CODE (x) == OFFSET_REF)
1012 x = TREE_OPERAND (x, 1);
4bb0968f 1013 if (BASELINK_P (x))
da15dae6 1014 x = BASELINK_FUNCTIONS (x);
5a9a1961
NS
1015
1016 return ((TREE_CODE (x) == OVERLOAD && OVL_CHAIN (x))
1017 || DECL_FUNCTION_TEMPLATE_P (OVL_CURRENT (x))
1018 || TREE_CODE (x) == TEMPLATE_ID_EXPR);
8926095f
MS
1019}
1020
8d08fdba 1021tree
b57b79f7 1022get_first_fn (tree from)
8d08fdba 1023{
06ab59df 1024 my_friendly_assert (is_overloaded_fn (from), 9);
c6002625 1025 /* A baselink is also considered an overloaded function. */
4bb0968f 1026 if (BASELINK_P (from))
da15dae6 1027 from = BASELINK_FUNCTIONS (from);
2c73f9f5
ML
1028 return OVL_CURRENT (from);
1029}
8d08fdba 1030
8d7f862c
JM
1031/* Returns nonzero if T is a ->* or .* expression that refers to a
1032 member function. */
1033
1034int
b57b79f7 1035bound_pmf_p (tree t)
8d7f862c
JM
1036{
1037 return (TREE_CODE (t) == OFFSET_REF
1038 && TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (t, 1))));
1039}
1040
c6002625 1041/* Return a new OVL node, concatenating it with the old one. */
2c73f9f5
ML
1042
1043tree
b57b79f7 1044ovl_cons (tree decl, tree chain)
2c73f9f5
ML
1045{
1046 tree result = make_node (OVERLOAD);
1047 TREE_TYPE (result) = unknown_type_node;
1048 OVL_FUNCTION (result) = decl;
1049 TREE_CHAIN (result) = chain;
1050
1051 return result;
1052}
1053
2c73f9f5
ML
1054/* Build a new overloaded function. If this is the first one,
1055 just return it; otherwise, ovl_cons the _DECLs */
1056
1057tree
b57b79f7 1058build_overload (tree decl, tree chain)
2c73f9f5 1059{
161c12b0 1060 if (! chain && TREE_CODE (decl) != TEMPLATE_DECL)
2c73f9f5 1061 return decl;
161c12b0 1062 if (chain && TREE_CODE (chain) != OVERLOAD)
2c73f9f5
ML
1063 chain = ovl_cons (chain, NULL_TREE);
1064 return ovl_cons (decl, chain);
1065}
1066
8d08fdba 1067int
b57b79f7 1068is_aggr_type_2 (tree t1, tree t2)
8d08fdba
MS
1069{
1070 if (TREE_CODE (t1) != TREE_CODE (t2))
1071 return 0;
1072 return IS_AGGR_TYPE (t1) && IS_AGGR_TYPE (t2);
1073}
8d08fdba
MS
1074\f
1075#define PRINT_RING_SIZE 4
1076
e1def31b 1077const char *
b57b79f7 1078cxx_printable_name (tree decl, int v)
8d08fdba
MS
1079{
1080 static tree decl_ring[PRINT_RING_SIZE];
1081 static char *print_ring[PRINT_RING_SIZE];
1082 static int ring_counter;
1083 int i;
1084
1085 /* Only cache functions. */
2ba25f50
MS
1086 if (v < 2
1087 || TREE_CODE (decl) != FUNCTION_DECL
8d08fdba 1088 || DECL_LANG_SPECIFIC (decl) == 0)
2ba25f50 1089 return lang_decl_name (decl, v);
8d08fdba
MS
1090
1091 /* See if this print name is lying around. */
1092 for (i = 0; i < PRINT_RING_SIZE; i++)
1093 if (decl_ring[i] == decl)
1094 /* yes, so return it. */
1095 return print_ring[i];
1096
1097 if (++ring_counter == PRINT_RING_SIZE)
1098 ring_counter = 0;
1099
1100 if (current_function_decl != NULL_TREE)
1101 {
1102 if (decl_ring[ring_counter] == current_function_decl)
1103 ring_counter += 1;
1104 if (ring_counter == PRINT_RING_SIZE)
1105 ring_counter = 0;
1106 if (decl_ring[ring_counter] == current_function_decl)
a98facb0 1107 abort ();
8d08fdba
MS
1108 }
1109
1110 if (print_ring[ring_counter])
1111 free (print_ring[ring_counter]);
1112
2ba25f50
MS
1113 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v));
1114 decl_ring[ring_counter] = decl;
8d08fdba
MS
1115 return print_ring[ring_counter];
1116}
1117\f
f30432d7 1118/* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
8d08fdba 1119 listed in RAISES. */
e92cc029 1120
8d08fdba 1121tree
b57b79f7 1122build_exception_variant (tree type, tree raises)
8d08fdba 1123{
8d08fdba 1124 tree v = TYPE_MAIN_VARIANT (type);
91063b51 1125 int type_quals = TYPE_QUALS (type);
8d08fdba 1126
45537677 1127 for (; v; v = TYPE_NEXT_VARIANT (v))
4cc1d462
NS
1128 if (TYPE_QUALS (v) == type_quals
1129 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (v), 1))
1130 return v;
8d08fdba
MS
1131
1132 /* Need to build a new variant. */
45537677 1133 v = build_type_copy (type);
8d08fdba
MS
1134 TYPE_RAISES_EXCEPTIONS (v) = raises;
1135 return v;
1136}
1137
dac65501
KL
1138/* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
1139 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
1899c3a4 1140 arguments. */
73b0fce8
KL
1141
1142tree
b57b79f7 1143bind_template_template_parm (tree t, tree newargs)
73b0fce8 1144{
1899c3a4 1145 tree decl = TYPE_NAME (t);
6b9b6b15
JM
1146 tree t2;
1147
dac65501
KL
1148 t2 = make_aggr_type (BOUND_TEMPLATE_TEMPLATE_PARM);
1149 decl = build_decl (TYPE_DECL, DECL_NAME (decl), NULL_TREE);
1899c3a4 1150
dac65501
KL
1151 /* These nodes have to be created to reflect new TYPE_DECL and template
1152 arguments. */
1153 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
1154 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
1155 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
1156 = tree_cons (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t),
1157 newargs, NULL_TREE);
6b9b6b15 1158
1899c3a4
KL
1159 TREE_TYPE (decl) = t2;
1160 TYPE_NAME (t2) = decl;
1161 TYPE_STUB_DECL (t2) = decl;
dac65501 1162 TYPE_SIZE (t2) = 0;
73b0fce8 1163
73b0fce8
KL
1164 return t2;
1165}
1166
bf3428d0 1167/* Called from count_trees via walk_tree. */
297a5329
JM
1168
1169static tree
b57b79f7
NN
1170count_trees_r (tree* tp ATTRIBUTE_UNUSED ,
1171 int* walk_subtrees ATTRIBUTE_UNUSED ,
1172 void* data)
297a5329 1173{
bf3428d0 1174 ++ *((int*) data);
297a5329
JM
1175 return NULL_TREE;
1176}
1177
1178/* Debugging function for measuring the rough complexity of a tree
1179 representation. */
1180
1181int
b57b79f7 1182count_trees (tree t)
297a5329 1183{
bf3428d0 1184 int n_trees = 0;
ee94fce6 1185 walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
297a5329
JM
1186 return n_trees;
1187}
1188
b2244c65
MM
1189/* Called from verify_stmt_tree via walk_tree. */
1190
1191static tree
b57b79f7
NN
1192verify_stmt_tree_r (tree* tp,
1193 int* walk_subtrees ATTRIBUTE_UNUSED ,
1194 void* data)
b2244c65
MM
1195{
1196 tree t = *tp;
1197 htab_t *statements = (htab_t *) data;
1198 void **slot;
1199
009ed910 1200 if (!STATEMENT_CODE_P (TREE_CODE (t)))
b2244c65
MM
1201 return NULL_TREE;
1202
1203 /* If this statement is already present in the hash table, then
1204 there is a circularity in the statement tree. */
1205 if (htab_find (*statements, t))
a98facb0 1206 abort ();
b2244c65
MM
1207
1208 slot = htab_find_slot (*statements, t, INSERT);
1209 *slot = t;
1210
1211 return NULL_TREE;
1212}
1213
1214/* Debugging function to check that the statement T has not been
1215 corrupted. For now, this function simply checks that T contains no
1216 circularities. */
1217
1218void
b57b79f7 1219verify_stmt_tree (tree t)
b2244c65
MM
1220{
1221 htab_t statements;
1222 statements = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
ee94fce6 1223 walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
b2244c65
MM
1224 htab_delete (statements);
1225}
1226
1227/* Called from find_tree via walk_tree. */
1228
1229static tree
b57b79f7
NN
1230find_tree_r (tree* tp,
1231 int* walk_subtrees ATTRIBUTE_UNUSED ,
1232 void* data)
b2244c65
MM
1233{
1234 if (*tp == (tree) data)
1235 return (tree) data;
1236
1237 return NULL_TREE;
1238}
1239
1240/* Returns X if X appears in the tree structure rooted at T. */
1241
1242tree
b57b79f7 1243find_tree (tree t, tree x)
b2244c65 1244{
ee94fce6 1245 return walk_tree_without_duplicates (&t, find_tree_r, x);
b2244c65
MM
1246}
1247
8dfaeb63 1248/* Passed to walk_tree. Checks for the use of types with no linkage. */
50a6dbd7
JM
1249
1250static tree
b57b79f7
NN
1251no_linkage_helper (tree* tp,
1252 int* walk_subtrees ATTRIBUTE_UNUSED ,
1253 void* data ATTRIBUTE_UNUSED )
50a6dbd7 1254{
b3ab27f3
MM
1255 tree t = *tp;
1256
50a6dbd7 1257 if (TYPE_P (t)
221c7a7f 1258 && (CLASS_TYPE_P (t) || TREE_CODE (t) == ENUMERAL_TYPE)
50a6dbd7 1259 && (decl_function_context (TYPE_MAIN_DECL (t))
1951a1b6 1260 || TYPE_ANONYMOUS_P (t)))
50a6dbd7
JM
1261 return t;
1262 return NULL_TREE;
1263}
1264
1265/* Check if the type T depends on a type with no linkage and if so, return
1266 it. */
1267
1268tree
b57b79f7 1269no_linkage_check (tree t)
50a6dbd7 1270{
2adeacc9
MM
1271 /* There's no point in checking linkage on template functions; we
1272 can't know their complete types. */
1273 if (processing_template_decl)
1274 return NULL_TREE;
1275
ee94fce6 1276 t = walk_tree_without_duplicates (&t, no_linkage_helper, NULL);
50a6dbd7
JM
1277 if (t != error_mark_node)
1278 return t;
1279 return NULL_TREE;
1280}
1281
5566b478
MS
1282#ifdef GATHER_STATISTICS
1283extern int depth_reached;
1284#endif
1285
8d08fdba 1286void
b57b79f7 1287cxx_print_statistics (void)
8d08fdba 1288{
8d08fdba
MS
1289 print_search_statistics ();
1290 print_class_statistics ();
5566b478
MS
1291#ifdef GATHER_STATISTICS
1292 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
1293 depth_reached);
1294#endif
8d08fdba
MS
1295}
1296
e92cc029
MS
1297/* Return, as an INTEGER_CST node, the number of elements for TYPE
1298 (which is an ARRAY_TYPE). This counts only elements of the top
1299 array. */
8d08fdba
MS
1300
1301tree
b57b79f7 1302array_type_nelts_top (tree type)
8d08fdba 1303{
eae89e04 1304 return fold (build (PLUS_EXPR, sizetype,
8d08fdba
MS
1305 array_type_nelts (type),
1306 integer_one_node));
1307}
1308
e92cc029
MS
1309/* Return, as an INTEGER_CST node, the number of elements for TYPE
1310 (which is an ARRAY_TYPE). This one is a recursive count of all
1311 ARRAY_TYPEs that are clumped together. */
8d08fdba
MS
1312
1313tree
b57b79f7 1314array_type_nelts_total (tree type)
8d08fdba
MS
1315{
1316 tree sz = array_type_nelts_top (type);
1317 type = TREE_TYPE (type);
1318 while (TREE_CODE (type) == ARRAY_TYPE)
1319 {
1320 tree n = array_type_nelts_top (type);
eae89e04 1321 sz = fold (build (MULT_EXPR, sizetype, sz, n));
8d08fdba
MS
1322 type = TREE_TYPE (type);
1323 }
1324 return sz;
1325}
878cd289 1326
b3ab27f3
MM
1327/* Called from break_out_target_exprs via mapcar. */
1328
1329static tree
b57b79f7 1330bot_manip (tree* tp, int* walk_subtrees, void* data)
878cd289 1331{
8dfaeb63
MM
1332 splay_tree target_remap = ((splay_tree) data);
1333 tree t = *tp;
1334
495d26d6 1335 if (TREE_CONSTANT (t))
8dfaeb63 1336 {
495d26d6
JM
1337 /* There can't be any TARGET_EXPRs or their slot variables below
1338 this point. We used to check !TREE_SIDE_EFFECTS, but then we
1339 failed to copy an ADDR_EXPR of the slot VAR_DECL. */
8dfaeb63
MM
1340 *walk_subtrees = 0;
1341 return NULL_TREE;
1342 }
495d26d6 1343 if (TREE_CODE (t) == TARGET_EXPR)
73aad9b9 1344 {
b3ab27f3
MM
1345 tree u;
1346
02531345 1347 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
73aad9b9
JM
1348 {
1349 mark_used (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 1), 0), 0));
b3ab27f3 1350 u = build_cplus_new
73aad9b9
JM
1351 (TREE_TYPE (t), break_out_target_exprs (TREE_OPERAND (t, 1)));
1352 }
b3ab27f3
MM
1353 else
1354 {
495d26d6
JM
1355 u = build_target_expr_with_type
1356 (break_out_target_exprs (TREE_OPERAND (t, 1)), TREE_TYPE (t));
b3ab27f3
MM
1357 }
1358
1359 /* Map the old variable to the new one. */
1360 splay_tree_insert (target_remap,
1361 (splay_tree_key) TREE_OPERAND (t, 0),
1362 (splay_tree_value) TREE_OPERAND (u, 0));
8dfaeb63
MM
1363
1364 /* Replace the old expression with the new version. */
1365 *tp = u;
1366 /* We don't have to go below this point; the recursive call to
1367 break_out_target_exprs will have handled anything below this
1368 point. */
1369 *walk_subtrees = 0;
1370 return NULL_TREE;
73aad9b9
JM
1371 }
1372 else if (TREE_CODE (t) == CALL_EXPR)
1373 mark_used (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
1374
8dfaeb63
MM
1375 /* Make a copy of this node. */
1376 return copy_tree_r (tp, walk_subtrees, NULL);
878cd289
MS
1377}
1378
8dfaeb63
MM
1379/* Replace all remapped VAR_DECLs in T with their new equivalents.
1380 DATA is really a splay-tree mapping old variables to new
1381 variables. */
b3ab27f3
MM
1382
1383static tree
b57b79f7
NN
1384bot_replace (tree* t,
1385 int* walk_subtrees ATTRIBUTE_UNUSED ,
1386 void* data)
b3ab27f3 1387{
8dfaeb63
MM
1388 splay_tree target_remap = ((splay_tree) data);
1389
b3ab27f3
MM
1390 if (TREE_CODE (*t) == VAR_DECL)
1391 {
1392 splay_tree_node n = splay_tree_lookup (target_remap,
1393 (splay_tree_key) *t);
1394 if (n)
1395 *t = (tree) n->value;
1396 }
1397
1398 return NULL_TREE;
1399}
1400
8dfaeb63
MM
1401/* When we parse a default argument expression, we may create
1402 temporary variables via TARGET_EXPRs. When we actually use the
1403 default-argument expression, we make a copy of the expression, but
1404 we must replace the temporaries with appropriate local versions. */
e92cc029 1405
878cd289 1406tree
b57b79f7 1407break_out_target_exprs (tree t)
878cd289 1408{
8dfaeb63
MM
1409 static int target_remap_count;
1410 static splay_tree target_remap;
1411
b3ab27f3
MM
1412 if (!target_remap_count++)
1413 target_remap = splay_tree_new (splay_tree_compare_pointers,
1414 /*splay_tree_delete_key_fn=*/NULL,
1415 /*splay_tree_delete_value_fn=*/NULL);
ee94fce6
MM
1416 walk_tree (&t, bot_manip, target_remap, NULL);
1417 walk_tree (&t, bot_replace, target_remap, NULL);
b3ab27f3
MM
1418
1419 if (!--target_remap_count)
1420 {
1421 splay_tree_delete (target_remap);
1422 target_remap = NULL;
1423 }
1424
1425 return t;
878cd289 1426}
f30432d7 1427
5566b478
MS
1428/* Obstack used for allocating nodes in template function and variable
1429 definitions. */
1430
a09ba2e0
MM
1431/* Similar to `build_nt', except that we set TREE_COMPLEXITY to be the
1432 current line number. */
5566b478
MS
1433
1434tree
e34d07f2 1435build_min_nt (enum tree_code code, ...)
5566b478 1436{
5566b478
MS
1437 register tree t;
1438 register int length;
1439 register int i;
e34d07f2 1440 va_list p;
5566b478 1441
e34d07f2 1442 va_start (p, code);
5566b478 1443
5566b478 1444 t = make_node (code);
8d5e6e25 1445 length = TREE_CODE_LENGTH (code);
d479d37f 1446 TREE_COMPLEXITY (t) = input_line;
5566b478
MS
1447
1448 for (i = 0; i < length; i++)
1449 {
1450 tree x = va_arg (p, tree);
2a1e9fdd 1451 TREE_OPERAND (t, i) = x;
5566b478
MS
1452 }
1453
e34d07f2 1454 va_end (p);
5566b478
MS
1455 return t;
1456}
1457
a09ba2e0
MM
1458/* Similar to `build', except we set TREE_COMPLEXITY to the current
1459 line-number. */
5566b478
MS
1460
1461tree
e34d07f2 1462build_min (enum tree_code code, tree tt, ...)
5566b478 1463{
5566b478
MS
1464 register tree t;
1465 register int length;
1466 register int i;
e34d07f2 1467 va_list p;
5566b478 1468
e34d07f2 1469 va_start (p, tt);
5566b478 1470
5566b478 1471 t = make_node (code);
8d5e6e25 1472 length = TREE_CODE_LENGTH (code);
2a1e9fdd 1473 TREE_TYPE (t) = tt;
d479d37f 1474 TREE_COMPLEXITY (t) = input_line;
5566b478
MS
1475
1476 for (i = 0; i < length; i++)
1477 {
1478 tree x = va_arg (p, tree);
2a1e9fdd 1479 TREE_OPERAND (t, i) = x;
5566b478
MS
1480 }
1481
e34d07f2 1482 va_end (p);
5566b478
MS
1483 return t;
1484}
1485
a68ad5bd
MM
1486/* Returns an INTEGER_CST (of type `int') corresponding to I.
1487 Multiple calls with the same value of I may or may not yield the
1488 same node; therefore, callers should never modify the node
1489 returned. */
1490
41ab2ae2
NS
1491static GTY(()) tree shared_int_cache[256];
1492
a68ad5bd 1493tree
b57b79f7 1494build_shared_int_cst (int i)
a68ad5bd 1495{
a68ad5bd
MM
1496 if (i >= 256)
1497 return build_int_2 (i, 0);
1498
41ab2ae2
NS
1499 if (!shared_int_cache[i])
1500 shared_int_cache[i] = build_int_2 (i, 0);
a68ad5bd 1501
41ab2ae2 1502 return shared_int_cache[i];
a68ad5bd
MM
1503}
1504
5566b478 1505tree
b57b79f7 1506get_type_decl (tree t)
5566b478 1507{
5566b478
MS
1508 if (TREE_CODE (t) == TYPE_DECL)
1509 return t;
2f939d94 1510 if (TYPE_P (t))
5566b478 1511 return TYPE_STUB_DECL (t);
1bc0793e
NS
1512 if (t == error_mark_node)
1513 return t;
5566b478 1514
a98facb0 1515 abort ();
4e1e2064
MH
1516
1517 /* Stop compiler from complaining control reaches end of non-void function. */
1518 return 0;
5566b478
MS
1519}
1520
5566b478 1521/* Return first vector element whose BINFO_TYPE is ELEM.
934c6b13 1522 Return 0 if ELEM is not in VEC. VEC may be NULL_TREE. */
5566b478
MS
1523
1524tree
b57b79f7 1525vec_binfo_member (tree elem, tree vec)
5566b478
MS
1526{
1527 int i;
934c6b13
MS
1528
1529 if (vec)
1530 for (i = 0; i < TREE_VEC_LENGTH (vec); ++i)
3bfdc719 1531 if (same_type_p (elem, BINFO_TYPE (TREE_VEC_ELT (vec, i))))
934c6b13
MS
1532 return TREE_VEC_ELT (vec, i);
1533
5566b478
MS
1534 return NULL_TREE;
1535}
e76a2646 1536
700466c2
JM
1537/* Returns the namespace that contains DECL, whether directly or
1538 indirectly. */
1539
1540tree
b57b79f7 1541decl_namespace_context (tree decl)
700466c2
JM
1542{
1543 while (1)
1544 {
1545 if (TREE_CODE (decl) == NAMESPACE_DECL)
1546 return decl;
1547 else if (TYPE_P (decl))
1548 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
1549 else
1550 decl = CP_DECL_CONTEXT (decl);
1551 }
1552}
1553
67d743fe
MS
1554/* Return truthvalue of whether T1 is the same tree structure as T2.
1555 Return 1 if they are the same.
1556 Return 0 if they are understandably different.
1557 Return -1 if either contains tree structure not understood by
1558 this function. */
1559
1560int
b57b79f7 1561cp_tree_equal (tree t1, tree t2)
67d743fe
MS
1562{
1563 register enum tree_code code1, code2;
1564 int cmp;
1565
1566 if (t1 == t2)
1567 return 1;
1568 if (t1 == 0 || t2 == 0)
1569 return 0;
1570
1571 code1 = TREE_CODE (t1);
1572 code2 = TREE_CODE (t2);
1573
1574 if (code1 == NOP_EXPR || code1 == CONVERT_EXPR || code1 == NON_LVALUE_EXPR)
a703fb38
KG
1575 {
1576 if (code2 == NOP_EXPR || code2 == CONVERT_EXPR || code2 == NON_LVALUE_EXPR)
1577 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1578 else
1579 return cp_tree_equal (TREE_OPERAND (t1, 0), t2);
1580 }
67d743fe
MS
1581 else if (code2 == NOP_EXPR || code2 == CONVERT_EXPR
1582 || code2 == NON_LVALUE_EXPR)
1583 return cp_tree_equal (t1, TREE_OPERAND (t2, 0));
1584
1585 if (code1 != code2)
1586 return 0;
1587
1588 switch (code1)
1589 {
1590 case INTEGER_CST:
1591 return TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
1592 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2);
1593
1594 case REAL_CST:
1595 return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
1596
1597 case STRING_CST:
1598 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
da61dec9 1599 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
67d743fe
MS
1600 TREE_STRING_LENGTH (t1));
1601
1602 case CONSTRUCTOR:
7dd4bdf5
MM
1603 /* We need to do this when determining whether or not two
1604 non-type pointer to member function template arguments
1605 are the same. */
3bfdc719 1606 if (!(same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
7dd4bdf5
MM
1607 /* The first operand is RTL. */
1608 && TREE_OPERAND (t1, 0) == TREE_OPERAND (t2, 0)))
1609 return 0;
1610 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1611
1612 case TREE_LIST:
1613 cmp = cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2));
1614 if (cmp <= 0)
1615 return cmp;
1616 cmp = cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2));
1617 if (cmp <= 0)
1618 return cmp;
1619 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
67d743fe
MS
1620
1621 case SAVE_EXPR:
1622 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1623
1624 case CALL_EXPR:
1625 cmp = cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1626 if (cmp <= 0)
1627 return cmp;
1628 return simple_cst_list_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1629
1630 case TARGET_EXPR:
1631 /* Special case: if either target is an unallocated VAR_DECL,
1632 it means that it's going to be unified with whatever the
1633 TARGET_EXPR is really supposed to initialize, so treat it
1634 as being equivalent to anything. */
1635 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
1636 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
19e7881c 1637 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
67d743fe
MS
1638 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
1639 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
19e7881c 1640 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
67d743fe
MS
1641 cmp = 1;
1642 else
1643 cmp = cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1644 if (cmp <= 0)
1645 return cmp;
1646 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1647
1648 case WITH_CLEANUP_EXPR:
1649 cmp = cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1650 if (cmp <= 0)
1651 return cmp;
6ad7895a 1652 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
67d743fe
MS
1653
1654 case COMPONENT_REF:
1655 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
1656 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1657 return 0;
1658
1659 case VAR_DECL:
1660 case PARM_DECL:
1661 case CONST_DECL:
1662 case FUNCTION_DECL:
1663 return 0;
1664
f84b4be9 1665 case TEMPLATE_PARM_INDEX:
31758337
NS
1666 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
1667 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
1668 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
1669 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
67d743fe
MS
1670
1671 case SIZEOF_EXPR:
abff8e06 1672 case ALIGNOF_EXPR:
67d743fe
MS
1673 if (TREE_CODE (TREE_OPERAND (t1, 0)) != TREE_CODE (TREE_OPERAND (t2, 0)))
1674 return 0;
2f939d94 1675 if (TYPE_P (TREE_OPERAND (t1, 0)))
3bfdc719 1676 return same_type_p (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
67d743fe 1677 break;
7f85441b 1678
61a127b3
MM
1679 case PTRMEM_CST:
1680 /* Two pointer-to-members are the same if they point to the same
1681 field or function in the same class. */
1682 return (PTRMEM_CST_MEMBER (t1) == PTRMEM_CST_MEMBER (t2)
3bfdc719 1683 && same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2)));
61a127b3 1684
7f85441b
KG
1685 default:
1686 break;
67d743fe
MS
1687 }
1688
1689 switch (TREE_CODE_CLASS (code1))
1690 {
67d743fe
MS
1691 case '1':
1692 case '2':
1693 case '<':
1694 case 'e':
1695 case 'r':
1696 case 's':
aa1826e2
NS
1697 {
1698 int i;
1699
1700 cmp = 1;
1701 for (i = 0; i < TREE_CODE_LENGTH (code1); ++i)
1702 {
1703 cmp = cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
1704 if (cmp <= 0)
1705 return cmp;
1706 }
1707 return cmp;
1708 }
1709
1710 case 't':
1711 return same_type_p (t1, t2) ? 1 : 0;
67d743fe
MS
1712 }
1713
1714 return -1;
1715}
73aad9b9 1716
e2500fed
GK
1717/* Build a wrapper around a 'struct z_candidate' so we can use it as a
1718 tree. */
5ffe581d
JM
1719
1720tree
b57b79f7 1721build_zc_wrapper (struct z_candidate* ptr)
5ffe581d
JM
1722{
1723 tree t = make_node (WRAPPER);
e2500fed 1724 WRAPPER_ZC (t) = ptr;
5ffe581d
JM
1725 return t;
1726}
1727
d11ad92e
MS
1728/* The type of ARG when used as an lvalue. */
1729
1730tree
b57b79f7 1731lvalue_type (tree arg)
d11ad92e 1732{
2c73f9f5
ML
1733 tree type = TREE_TYPE (arg);
1734 if (TREE_CODE (arg) == OVERLOAD)
1735 type = unknown_type_node;
8cd4c175 1736 return type;
d11ad92e
MS
1737}
1738
1739/* The type of ARG for printing error messages; denote lvalues with
1740 reference types. */
1741
1742tree
b57b79f7 1743error_type (tree arg)
d11ad92e
MS
1744{
1745 tree type = TREE_TYPE (arg);
1746 if (TREE_CODE (type) == ARRAY_TYPE)
1747 ;
1748 else if (real_lvalue_p (arg))
1749 type = build_reference_type (lvalue_type (arg));
1750 else if (IS_AGGR_TYPE (type))
1751 type = lvalue_type (arg);
1752
1753 return type;
1754}
eb66be0e
MS
1755
1756/* Does FUNCTION use a variable-length argument list? */
1757
1758int
b57b79f7 1759varargs_function_p (tree function)
eb66be0e
MS
1760{
1761 tree parm = TYPE_ARG_TYPES (TREE_TYPE (function));
1762 for (; parm; parm = TREE_CHAIN (parm))
1763 if (TREE_VALUE (parm) == void_type_node)
1764 return 0;
1765 return 1;
1766}
f94ae2f5
JM
1767
1768/* Returns 1 if decl is a member of a class. */
1769
1770int
b57b79f7 1771member_p (tree decl)
f94ae2f5 1772{
2f939d94
TP
1773 const tree ctx = DECL_CONTEXT (decl);
1774 return (ctx && TYPE_P (ctx));
f94ae2f5 1775}
51924768
JM
1776
1777/* Create a placeholder for member access where we don't actually have an
1778 object that the access is against. */
1779
1780tree
b57b79f7 1781build_dummy_object (tree type)
51924768 1782{
44689c12 1783 tree decl = build1 (NOP_EXPR, build_pointer_type (type), void_zero_node);
3e411c3f 1784 return build_indirect_ref (decl, NULL);
51924768
JM
1785}
1786
1787/* We've gotten a reference to a member of TYPE. Return *this if appropriate,
1788 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
1789 binfo path from current_class_type to TYPE, or 0. */
1790
1791tree
b57b79f7 1792maybe_dummy_object (tree type, tree* binfop)
51924768
JM
1793{
1794 tree decl, context;
2db1ab2d
NS
1795 tree binfo;
1796
51924768 1797 if (current_class_type
2db1ab2d
NS
1798 && (binfo = lookup_base (current_class_type, type,
1799 ba_ignore | ba_quiet, NULL)))
51924768
JM
1800 context = current_class_type;
1801 else
1802 {
1803 /* Reference from a nested class member function. */
1804 context = type;
2db1ab2d 1805 binfo = TYPE_BINFO (type);
51924768
JM
1806 }
1807
2db1ab2d
NS
1808 if (binfop)
1809 *binfop = binfo;
1810
a29e1034 1811 if (current_class_ref && context == current_class_type
3ebf5204
NS
1812 /* Kludge: Make sure that current_class_type is actually
1813 correct. It might not be if we're in the middle of
c6002625 1814 tsubst_default_argument. */
a29e1034
JM
1815 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref)),
1816 current_class_type))
51924768
JM
1817 decl = current_class_ref;
1818 else
1819 decl = build_dummy_object (context);
1820
1821 return decl;
1822}
1823
1824/* Returns 1 if OB is a placeholder object, or a pointer to one. */
1825
1826int
b57b79f7 1827is_dummy_object (tree ob)
51924768
JM
1828{
1829 if (TREE_CODE (ob) == INDIRECT_REF)
1830 ob = TREE_OPERAND (ob, 0);
1831 return (TREE_CODE (ob) == NOP_EXPR
44689c12 1832 && TREE_OPERAND (ob, 0) == void_zero_node);
51924768 1833}
5524676d
JM
1834
1835/* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
1836
1837int
b57b79f7 1838pod_type_p (tree t)
5524676d 1839{
38da6039 1840 t = strip_array_types (t);
5524676d 1841
17bbb839
MM
1842 if (t == error_mark_node)
1843 return 1;
52fb2769
NS
1844 if (INTEGRAL_TYPE_P (t))
1845 return 1; /* integral, character or enumeral type */
1846 if (FLOAT_TYPE_P (t))
5524676d 1847 return 1;
52fb2769
NS
1848 if (TYPE_PTR_P (t))
1849 return 1; /* pointer to non-member */
1850 if (TYPE_PTRMEM_P (t))
1851 return 1; /* pointer to member object */
1852 if (TYPE_PTRMEMFUNC_P (t))
1853 return 1; /* pointer to member function */
1854
1855 if (! CLASS_TYPE_P (t))
1856 return 0; /* other non-class type (reference or function) */
1857 if (CLASSTYPE_NON_POD_P (t))
5524676d 1858 return 0;
5524676d
JM
1859 return 1;
1860}
e5dc5fb2 1861
94e6e4c4
AO
1862/* Returns 1 iff zero initialization of type T means actually storing
1863 zeros in it. */
1864
1865int
b57b79f7 1866zero_init_p (tree t)
94e6e4c4
AO
1867{
1868 t = strip_array_types (t);
1869
17bbb839
MM
1870 if (t == error_mark_node)
1871 return 1;
1872
94e6e4c4
AO
1873 /* NULL pointers to data members are initialized with -1. */
1874 if (TYPE_PTRMEM_P (t))
1875 return 0;
1876
1877 /* Classes that contain types that can't be zero-initialized, cannot
1878 be zero-initialized themselves. */
1879 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
1880 return 0;
1881
1882 return 1;
1883}
1884
91d231cb 1885/* Table of valid C++ attributes. */
349ae713 1886const struct attribute_spec cxx_attribute_table[] =
e5dc5fb2 1887{
91d231cb
JM
1888 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
1889 { "java_interface", 0, 0, false, false, false, handle_java_interface_attribute },
1890 { "com_interface", 0, 0, false, false, false, handle_com_interface_attribute },
1891 { "init_priority", 1, 1, true, false, false, handle_init_priority_attribute },
1892 { NULL, 0, 0, false, false, false, NULL }
1893};
1894
1895/* Handle a "java_interface" attribute; arguments as in
1896 struct attribute_spec.handler. */
1897static tree
b57b79f7
NN
1898handle_java_interface_attribute (tree* node,
1899 tree name,
1900 tree args ATTRIBUTE_UNUSED ,
1901 int flags,
1902 bool* no_add_attrs)
91d231cb
JM
1903{
1904 if (DECL_P (*node)
1905 || !CLASS_TYPE_P (*node)
1906 || !TYPE_FOR_JAVA (*node))
60c87482 1907 {
91d231cb
JM
1908 error ("`%s' attribute can only be applied to Java class definitions",
1909 IDENTIFIER_POINTER (name));
1910 *no_add_attrs = true;
1911 return NULL_TREE;
60c87482 1912 }
91d231cb
JM
1913 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
1914 *node = build_type_copy (*node);
1915 TYPE_JAVA_INTERFACE (*node) = 1;
e5dc5fb2 1916
91d231cb
JM
1917 return NULL_TREE;
1918}
1919
1920/* Handle a "com_interface" attribute; arguments as in
1921 struct attribute_spec.handler. */
1922static tree
b57b79f7
NN
1923handle_com_interface_attribute (tree* node,
1924 tree name,
1925 tree args ATTRIBUTE_UNUSED ,
1926 int flags ATTRIBUTE_UNUSED ,
1927 bool* no_add_attrs)
91d231cb
JM
1928{
1929 static int warned;
1930
1931 *no_add_attrs = true;
1932
1933 if (DECL_P (*node)
1934 || !CLASS_TYPE_P (*node)
1935 || *node != TYPE_MAIN_VARIANT (*node))
e5dc5fb2 1936 {
91d231cb
JM
1937 warning ("`%s' attribute can only be applied to class definitions",
1938 IDENTIFIER_POINTER (name));
1939 return NULL_TREE;
1940 }
e5dc5fb2 1941
91d231cb
JM
1942 if (!warned++)
1943 warning ("`%s' is obsolete; g++ vtables are now COM-compatible by default",
1944 IDENTIFIER_POINTER (name));
1945
1946 return NULL_TREE;
1947}
1948
1949/* Handle an "init_priority" attribute; arguments as in
1950 struct attribute_spec.handler. */
1951static tree
b57b79f7
NN
1952handle_init_priority_attribute (tree* node,
1953 tree name,
1954 tree args,
1955 int flags ATTRIBUTE_UNUSED ,
1956 bool* no_add_attrs)
91d231cb
JM
1957{
1958 tree initp_expr = TREE_VALUE (args);
1959 tree decl = *node;
1960 tree type = TREE_TYPE (decl);
1961 int pri;
1962
1963 STRIP_NOPS (initp_expr);
e5dc5fb2 1964
91d231cb
JM
1965 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
1966 {
1967 error ("requested init_priority is not an integer constant");
1968 *no_add_attrs = true;
1969 return NULL_TREE;
1970 }
e5dc5fb2 1971
91d231cb 1972 pri = TREE_INT_CST_LOW (initp_expr);
e5dc5fb2 1973
91d231cb
JM
1974 type = strip_array_types (type);
1975
1976 if (decl == NULL_TREE
1977 || TREE_CODE (decl) != VAR_DECL
1978 || !TREE_STATIC (decl)
1979 || DECL_EXTERNAL (decl)
1980 || (TREE_CODE (type) != RECORD_TYPE
1981 && TREE_CODE (type) != UNION_TYPE)
1982 /* Static objects in functions are initialized the
1983 first time control passes through that
1984 function. This is not precise enough to pin down an
c6002625 1985 init_priority value, so don't allow it. */
91d231cb
JM
1986 || current_function_decl)
1987 {
1988 error ("can only use `%s' attribute on file-scope definitions of objects of class type",
1989 IDENTIFIER_POINTER (name));
1990 *no_add_attrs = true;
1991 return NULL_TREE;
1992 }
e5dc5fb2 1993
91d231cb
JM
1994 if (pri > MAX_INIT_PRIORITY || pri <= 0)
1995 {
1996 error ("requested init_priority is out of range");
1997 *no_add_attrs = true;
1998 return NULL_TREE;
1999 }
e5dc5fb2 2000
91d231cb
JM
2001 /* Check for init_priorities that are reserved for
2002 language and runtime support implementations.*/
2003 if (pri <= MAX_RESERVED_INIT_PRIORITY)
2004 {
2005 warning
2006 ("requested init_priority is reserved for internal use");
e5dc5fb2
JM
2007 }
2008
91d231cb
JM
2009 if (SUPPORTS_INIT_PRIORITY)
2010 {
2011 DECL_INIT_PRIORITY (decl) = pri;
2012 return NULL_TREE;
2013 }
2014 else
2015 {
2016 error ("`%s' attribute is not supported on this platform",
2017 IDENTIFIER_POINTER (name));
2018 *no_add_attrs = true;
2019 return NULL_TREE;
2020 }
e5dc5fb2 2021}
87533b37
MM
2022
2023/* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
2024 thing pointed to by the constant. */
2025
2026tree
b57b79f7 2027make_ptrmem_cst (tree type, tree member)
87533b37
MM
2028{
2029 tree ptrmem_cst = make_node (PTRMEM_CST);
2030 /* If would seem a great convenience if make_node would set
2031 TREE_CONSTANT for things of class `c', but it does not. */
2032 TREE_CONSTANT (ptrmem_cst) = 1;
2033 TREE_TYPE (ptrmem_cst) = type;
2034 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
2035 return ptrmem_cst;
2036}
2037
25af8512
AO
2038/* Apply FUNC to all language-specific sub-trees of TP in a pre-order
2039 traversal. Called from walk_tree(). */
2040
19551f29 2041tree
b57b79f7
NN
2042cp_walk_subtrees (tree* tp,
2043 int* walk_subtrees_p,
2044 walk_tree_fn func,
2045 void* data,
2046 void* htab)
25af8512
AO
2047{
2048 enum tree_code code = TREE_CODE (*tp);
2049 tree result;
2050
2051#define WALK_SUBTREE(NODE) \
2052 do \
2053 { \
2054 result = walk_tree (&(NODE), func, data, htab); \
2055 if (result) \
2056 return result; \
2057 } \
2058 while (0)
2059
2060 /* Not one of the easy cases. We must explicitly go through the
2061 children. */
2062 switch (code)
2063 {
2064 case DEFAULT_ARG:
2065 case TEMPLATE_TEMPLATE_PARM:
2066 case BOUND_TEMPLATE_TEMPLATE_PARM:
b8c6534b 2067 case UNBOUND_CLASS_TEMPLATE:
25af8512
AO
2068 case TEMPLATE_PARM_INDEX:
2069 case TEMPLATE_TYPE_PARM:
2070 case TYPENAME_TYPE:
2071 case TYPEOF_TYPE:
5dae1114 2072 case BASELINK:
25af8512
AO
2073 /* None of thse have subtrees other than those already walked
2074 above. */
2075 *walk_subtrees_p = 0;
2076 break;
2077
2078 case PTRMEM_CST:
2079 WALK_SUBTREE (TREE_TYPE (*tp));
2080 *walk_subtrees_p = 0;
2081 break;
2082
2083 case TREE_LIST:
5dae1114 2084 WALK_SUBTREE (TREE_PURPOSE (*tp));
25af8512
AO
2085 break;
2086
2087 case OVERLOAD:
2088 WALK_SUBTREE (OVL_FUNCTION (*tp));
2089 WALK_SUBTREE (OVL_CHAIN (*tp));
2090 *walk_subtrees_p = 0;
2091 break;
2092
2093 case RECORD_TYPE:
2094 if (TYPE_PTRMEMFUNC_P (*tp))
2095 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (*tp));
2096 break;
2097
2098 default:
2099 break;
2100 }
2101
2102 /* We didn't find what we were looking for. */
2103 return NULL_TREE;
2104
2105#undef WALK_SUBTREE
2106}
2107
2108/* Decide whether there are language-specific reasons to not inline a
2109 function as a tree. */
2110
19551f29 2111int
b57b79f7 2112cp_cannot_inline_tree_fn (tree* fnp)
25af8512
AO
2113{
2114 tree fn = *fnp;
2115
2116 /* We can inline a template instantiation only if it's fully
2117 instantiated. */
2118 if (DECL_TEMPLATE_INFO (fn)
2119 && TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (fn)))
2120 {
a5512a2f
MM
2121 /* Don't instantiate functions that are not going to be
2122 inlined. */
2123 if (!DECL_INLINE (DECL_TEMPLATE_RESULT
2124 (template_for_substitution (fn))))
2125 return 1;
25af8512 2126 fn = *fnp = instantiate_decl (fn, /*defer_ok=*/0);
fd852454
RH
2127 if (TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (fn)))
2128 return 1;
25af8512
AO
2129 }
2130
d58b7c2d
MM
2131 if (flag_really_no_inline
2132 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL)
2133 return 1;
2134
8a3c9180
RH
2135 /* Don't auto-inline anything that might not be bound within
2136 this unit of translation. */
2137 if (!DECL_DECLARED_INLINE_P (fn) && !(*targetm.binds_local_p) (fn))
2138 {
2139 DECL_UNINLINABLE (fn) = 1;
2140 return 1;
2141 }
2142
25af8512
AO
2143 if (varargs_function_p (fn))
2144 {
2145 DECL_UNINLINABLE (fn) = 1;
2146 return 1;
2147 }
2148
2149 if (! function_attribute_inlinable_p (fn))
2150 {
2151 DECL_UNINLINABLE (fn) = 1;
2152 return 1;
2153 }
2154
2155 return 0;
2156}
2157
2158/* Add any pending functions other than the current function (already
2159 handled by the caller), that thus cannot be inlined, to FNS_P, then
2160 return the latest function added to the array, PREV_FN. */
2161
19551f29 2162tree
b57b79f7 2163cp_add_pending_fn_decls (void* fns_p, tree prev_fn)
25af8512
AO
2164{
2165 varray_type *fnsp = (varray_type *)fns_p;
2166 struct saved_scope *s;
2167
2168 for (s = scope_chain; s; s = s->prev)
2169 if (s->function_decl && s->function_decl != prev_fn)
2170 {
2171 VARRAY_PUSH_TREE (*fnsp, s->function_decl);
2172 prev_fn = s->function_decl;
2173 }
2174
2175 return prev_fn;
2176}
2177
2178/* Determine whether a tree node is an OVERLOAD node. Used to decide
2179 whether to copy a node or to preserve its chain when inlining a
2180 function. */
2181
19551f29 2182int
b57b79f7 2183cp_is_overload_p (tree t)
25af8512
AO
2184{
2185 return TREE_CODE (t) == OVERLOAD;
2186}
2187
2188/* Determine whether VAR is a declaration of an automatic variable in
2189 function FN. */
2190
19551f29 2191int
b57b79f7 2192cp_auto_var_in_fn_p (tree var, tree fn)
25af8512
AO
2193{
2194 return (DECL_P (var) && DECL_CONTEXT (var) == fn
2195 && nonstatic_local_decl_p (var));
2196}
2197
2198/* Tell whether a declaration is needed for the RESULT of a function
2199 FN being inlined into CALLER or if the top node of target_exprs is
2200 to be used. */
2201
19551f29 2202tree
b57b79f7
NN
2203cp_copy_res_decl_for_inlining (tree result,
2204 tree fn,
2205 tree caller,
2206 void* decl_map_,
2207 int* need_decl,
2208 tree return_slot_addr)
25af8512
AO
2209{
2210 splay_tree decl_map = (splay_tree)decl_map_;
25af8512 2211 tree var;
25af8512 2212
4977bab6
ZW
2213 /* If FN returns an aggregate then the caller will always pass the
2214 address of the return slot explicitly. If we were just to
25af8512
AO
2215 create a new VAR_DECL here, then the result of this function
2216 would be copied (bitwise) into the variable initialized by the
2217 TARGET_EXPR. That's incorrect, so we must transform any
2218 references to the RESULT into references to the target. */
4977bab6
ZW
2219
2220 /* We should have an explicit return slot iff the return type is
2221 TREE_ADDRESSABLE. See simplify_aggr_init_expr. */
2222 if (TREE_ADDRESSABLE (TREE_TYPE (result))
2223 != (return_slot_addr != NULL_TREE))
2224 abort ();
2225
2226 *need_decl = !return_slot_addr;
2227 if (return_slot_addr)
25af8512 2228 {
4977bab6 2229 var = build_indirect_ref (return_slot_addr, "");
25af8512
AO
2230 if (! same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (var),
2231 TREE_TYPE (result)))
2232 abort ();
2233 }
2234 /* Otherwise, make an appropriate copy. */
2235 else
2236 var = copy_decl_for_inlining (result, fn, caller);
2237
2238 if (DECL_SAVED_FUNCTION_DATA (fn))
2239 {
2240 tree nrv = DECL_SAVED_FUNCTION_DATA (fn)->x_return_value;
2241 if (nrv)
2242 {
2243 /* We have a named return value; copy the name and source
2244 position so we can get reasonable debugging information, and
2245 register the return variable as its equivalent. */
4e8dca1c
JM
2246 if (TREE_CODE (var) == VAR_DECL)
2247 {
2248 DECL_NAME (var) = DECL_NAME (nrv);
2249 DECL_SOURCE_LOCATION (var) = DECL_SOURCE_LOCATION (nrv);
2250 DECL_ABSTRACT_ORIGIN (var) = DECL_ORIGIN (nrv);
2251 /* Don't lose initialization info. */
2252 DECL_INITIAL (var) = DECL_INITIAL (nrv);
2253 /* Don't forget that it needs to go in the stack. */
2254 TREE_ADDRESSABLE (var) = TREE_ADDRESSABLE (nrv);
2255 }
34902e16 2256
25af8512
AO
2257 splay_tree_insert (decl_map,
2258 (splay_tree_key) nrv,
2259 (splay_tree_value) var);
2260 }
2261 }
2262
2263 return var;
2264}
2265
838dfd8a 2266/* Record that we're about to start inlining FN, and return nonzero if
742a37d5
JM
2267 that's OK. Used for lang_hooks.tree_inlining.start_inlining. */
2268
2269int
b57b79f7 2270cp_start_inlining (tree fn)
742a37d5
JM
2271{
2272 if (DECL_TEMPLATE_INSTANTIATION (fn))
2273 return push_tinst_level (fn);
2274 else
2275 return 1;
2276}
2277
2278/* Record that we're done inlining FN. Used for
2279 lang_hooks.tree_inlining.end_inlining. */
2280
2281void
b57b79f7 2282cp_end_inlining (tree fn ATTRIBUTE_UNUSED )
742a37d5
JM
2283{
2284 if (DECL_TEMPLATE_INSTANTIATION (fn))
2285 pop_tinst_level ();
2286}
2287
87e3dbc9
MM
2288/* Initialize tree.c. */
2289
0a818f84 2290void
b57b79f7 2291init_tree (void)
0a818f84 2292{
e2500fed 2293 list_hash_table = htab_create_ggc (31, list_hash, list_hash_eq, NULL);
0a818f84
GRK
2294}
2295
46e8c075
MM
2296/* Called via walk_tree. If *TP points to a DECL_STMT for a local
2297 declaration, copies the declaration and enters it in the splay_tree
2298 pointed to by DATA (which is really a `splay_tree *'). */
2299
2300static tree
b57b79f7
NN
2301mark_local_for_remap_r (tree* tp,
2302 int* walk_subtrees ATTRIBUTE_UNUSED ,
2303 void* data)
46e8c075
MM
2304{
2305 tree t = *tp;
2306 splay_tree st = (splay_tree) data;
ec47ccca 2307 tree decl;
46e8c075 2308
ec47ccca
MM
2309
2310 if (TREE_CODE (t) == DECL_STMT
2311 && nonstatic_local_decl_p (DECL_STMT_DECL (t)))
2312 decl = DECL_STMT_DECL (t);
2313 else if (TREE_CODE (t) == LABEL_STMT)
2314 decl = LABEL_STMT_LABEL (t);
2315 else if (TREE_CODE (t) == TARGET_EXPR
2316 && nonstatic_local_decl_p (TREE_OPERAND (t, 0)))
2317 decl = TREE_OPERAND (t, 0);
fab701da
MM
2318 else if (TREE_CODE (t) == CASE_LABEL)
2319 decl = CASE_LABEL_DECL (t);
ec47ccca
MM
2320 else
2321 decl = NULL_TREE;
2322
2323 if (decl)
46e8c075 2324 {
46e8c075
MM
2325 tree copy;
2326
46e8c075
MM
2327 /* Make a copy. */
2328 copy = copy_decl_for_inlining (decl,
2329 DECL_CONTEXT (decl),
2330 DECL_CONTEXT (decl));
2331
2332 /* Remember the copy. */
2333 splay_tree_insert (st,
2334 (splay_tree_key) decl,
2335 (splay_tree_value) copy);
0a818f84
GRK
2336 }
2337
46e8c075
MM
2338 return NULL_TREE;
2339}
2340
2341/* Called via walk_tree when an expression is unsaved. Using the
ec47ccca 2342 splay_tree pointed to by ST (which is really a `splay_tree'),
46e8c075
MM
2343 remaps all local declarations to appropriate replacements. */
2344
2345static tree
b57b79f7
NN
2346cp_unsave_r (tree* tp,
2347 int* walk_subtrees,
2348 void* data)
46e8c075
MM
2349{
2350 splay_tree st = (splay_tree) data;
2351 splay_tree_node n;
2352
2353 /* Only a local declaration (variable or label). */
2354 if (nonstatic_local_decl_p (*tp))
2355 {
2356 /* Lookup the declaration. */
2357 n = splay_tree_lookup (st, (splay_tree_key) *tp);
2358
2359 /* If it's there, remap it. */
2360 if (n)
2361 *tp = (tree) n->value;
2362 }
2363 else if (TREE_CODE (*tp) == SAVE_EXPR)
d7d5e42f 2364 remap_save_expr (tp, st, current_function_decl, walk_subtrees);
0a818f84 2365 else
46e8c075
MM
2366 {
2367 copy_tree_r (tp, walk_subtrees, NULL);
2368
2369 /* Do whatever unsaving is required. */
2370 unsave_expr_1 (*tp);
2371 }
2372
2373 /* Keep iterating. */
2374 return NULL_TREE;
0a818f84
GRK
2375}
2376
24965e7a 2377/* Called whenever an expression needs to be unsaved. */
46e8c075 2378
24965e7a 2379tree
b57b79f7 2380cxx_unsave_expr_now (tree tp)
46e8c075
MM
2381{
2382 splay_tree st;
2383
2384 /* Create a splay-tree to map old local variable declarations to new
2385 ones. */
2386 st = splay_tree_new (splay_tree_compare_pointers, NULL, NULL);
2387
2388 /* Walk the tree once figuring out what needs to be remapped. */
24965e7a 2389 walk_tree (&tp, mark_local_for_remap_r, st, NULL);
46e8c075
MM
2390
2391 /* Walk the tree again, copying, remapping, and unsaving. */
24965e7a 2392 walk_tree (&tp, cp_unsave_r, st, NULL);
46e8c075
MM
2393
2394 /* Clean up. */
2395 splay_tree_delete (st);
24965e7a
NB
2396
2397 return tp;
46e8c075 2398}
872f37f9
MM
2399
2400/* Returns the kind of special function that DECL (a FUNCTION_DECL)
50ad9642
MM
2401 is. Note that sfk_none is zero, so this function can be used as a
2402 predicate to test whether or not DECL is a special function. */
872f37f9
MM
2403
2404special_function_kind
b57b79f7 2405special_function_p (tree decl)
872f37f9
MM
2406{
2407 /* Rather than doing all this stuff with magic names, we should
2408 probably have a field of type `special_function_kind' in
2409 DECL_LANG_SPECIFIC. */
2410 if (DECL_COPY_CONSTRUCTOR_P (decl))
2411 return sfk_copy_constructor;
2412 if (DECL_CONSTRUCTOR_P (decl))
2413 return sfk_constructor;
596ea4e5 2414 if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
872f37f9
MM
2415 return sfk_assignment_operator;
2416 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2417 return sfk_destructor;
2418 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
2419 return sfk_complete_destructor;
2420 if (DECL_BASE_DESTRUCTOR_P (decl))
2421 return sfk_base_destructor;
2422 if (DECL_DELETING_DESTRUCTOR_P (decl))
2423 return sfk_deleting_destructor;
2424 if (DECL_CONV_FN_P (decl))
2425 return sfk_conversion;
2426
2427 return sfk_none;
2428}
7b019c19 2429
50ad9642
MM
2430/* Returns true if and only if NODE is a name, i.e., a node created
2431 by the parser when processing an id-expression. */
2432
2433bool
2434name_p (tree node)
2435{
2436 if (TREE_CODE (node) == TEMPLATE_ID_EXPR)
2437 node = TREE_OPERAND (node, 0);
2438 return (/* An ordinary unqualified name. */
2439 TREE_CODE (node) == IDENTIFIER_NODE
2440 /* A destructor name. */
2441 || TREE_CODE (node) == BIT_NOT_EXPR
2442 /* A qualified name. */
2443 || TREE_CODE (node) == SCOPE_REF);
2444}
2445
838dfd8a 2446/* Returns nonzero if TYPE is a character type, including wchar_t. */
7b019c19
MM
2447
2448int
b57b79f7 2449char_type_p (tree type)
7b019c19
MM
2450{
2451 return (same_type_p (type, char_type_node)
2452 || same_type_p (type, unsigned_char_type_node)
2453 || same_type_p (type, signed_char_type_node)
2454 || same_type_p (type, wchar_type_node));
2455}
ad50e811
MM
2456
2457/* Returns the kind of linkage associated with the indicated DECL. Th
2458 value returned is as specified by the language standard; it is
2459 independent of implementation details regarding template
2460 instantiation, etc. For example, it is possible that a declaration
2461 to which this function assigns external linkage would not show up
2462 as a global symbol when you run `nm' on the resulting object file. */
2463
2464linkage_kind
b57b79f7 2465decl_linkage (tree decl)
ad50e811
MM
2466{
2467 /* This function doesn't attempt to calculate the linkage from first
2468 principles as given in [basic.link]. Instead, it makes use of
2469 the fact that we have already set TREE_PUBLIC appropriately, and
2470 then handles a few special cases. Ideally, we would calculate
2471 linkage first, and then transform that into a concrete
2472 implementation. */
2473
2474 /* Things that don't have names have no linkage. */
2475 if (!DECL_NAME (decl))
2476 return lk_none;
2477
2478 /* Things that are TREE_PUBLIC have external linkage. */
2479 if (TREE_PUBLIC (decl))
2480 return lk_external;
2481
2482 /* Some things that are not TREE_PUBLIC have external linkage, too.
2483 For example, on targets that don't have weak symbols, we make all
2484 template instantiations have internal linkage (in the object
2485 file), but the symbols should still be treated as having external
2486 linkage from the point of view of the language. */
2487 if (DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
2488 return lk_external;
2489
2490 /* Things in local scope do not have linkage, if they don't have
2491 TREE_PUBLIC set. */
2492 if (decl_function_context (decl))
2493 return lk_none;
2494
2495 /* Everything else has internal linkage. */
2496 return lk_internal;
2497}
6f30f1f1
JM
2498\f
2499/* EXP is an expression that we want to pre-evaluate. Returns via INITP an
2500 expression to perform the pre-evaluation, and returns directly an
2501 expression to use the precalculated result. */
2502
2503tree
b57b79f7 2504stabilize_expr (tree exp, tree* initp)
6f30f1f1
JM
2505{
2506 tree init_expr;
2507
2508 if (!TREE_SIDE_EFFECTS (exp))
2509 {
2510 init_expr = void_zero_node;
2511 }
2512 else if (!real_lvalue_p (exp)
2513 || !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (exp)))
2514 {
2515 init_expr = get_target_expr (exp);
2516 exp = TARGET_EXPR_SLOT (init_expr);
2517 }
2518 else
2519 {
2520 exp = build_unary_op (ADDR_EXPR, exp, 1);
2521 init_expr = get_target_expr (exp);
2522 exp = TARGET_EXPR_SLOT (init_expr);
2523 exp = build_indirect_ref (exp, 0);
2524 }
2525
2526 *initp = init_expr;
2527 return exp;
2528}
e2500fed
GK
2529\f
2530#if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
2531/* Complain that some language-specific thing hanging off a tree
2532 node has been accessed improperly. */
2533
2534void
b57b79f7 2535lang_check_failed (const char* file, int line, const char* function)
e2500fed
GK
2536{
2537 internal_error ("lang_* check: failed in %s, at %s:%d",
2538 function, trim_filename (file), line);
2539}
2540#endif /* ENABLE_TREE_CHECKING */
2541
2542#include "gt-cp-tree.h"