* decl2.c, init.c, typeck.c: Fix comment typos.
[official-gcc.git] / gcc / cp / tree.c
blob15ee56c7c870da81be2e95de7d0b4bd44c6eb30a
1 /* Language-dependent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 Hacked by Michael Tiemann (tiemann@cygnus.com)
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "cp-tree.h"
29 #include "flags.h"
30 #include "real.h"
31 #include "rtl.h"
32 #include "toplev.h"
33 #include "insn-config.h"
34 #include "integrate.h"
35 #include "tree-inline.h"
36 #include "debug.h"
37 #include "target.h"
39 static tree bot_manip (tree *, int *, void *);
40 static tree bot_replace (tree *, int *, void *);
41 static tree build_cplus_array_type_1 (tree, tree);
42 static int list_hash_eq (const void *, const void *);
43 static hashval_t list_hash_pieces (tree, tree, tree);
44 static hashval_t list_hash (const void *);
45 static cp_lvalue_kind lvalue_p_1 (tree, int);
46 static tree build_target_expr (tree, tree);
47 static tree count_trees_r (tree *, int *, void *);
48 static tree verify_stmt_tree_r (tree *, int *, void *);
49 static tree find_tree_r (tree *, int *, void *);
50 static tree build_local_temp (tree);
52 static tree handle_java_interface_attribute (tree *, tree, tree, int, bool *);
53 static tree handle_com_interface_attribute (tree *, tree, tree, int, bool *);
54 static tree handle_init_priority_attribute (tree *, tree, tree, int, bool *);
56 /* If REF is an lvalue, returns the kind of lvalue that REF is.
57 Otherwise, returns clk_none. If TREAT_CLASS_RVALUES_AS_LVALUES is
58 nonzero, rvalues of class type are considered lvalues. */
60 static cp_lvalue_kind
61 lvalue_p_1 (tree ref,
62 int treat_class_rvalues_as_lvalues)
64 cp_lvalue_kind op1_lvalue_kind = clk_none;
65 cp_lvalue_kind op2_lvalue_kind = clk_none;
67 if (TREE_CODE (TREE_TYPE (ref)) == REFERENCE_TYPE)
68 return clk_ordinary;
70 if (ref == current_class_ptr)
71 return clk_none;
73 switch (TREE_CODE (ref))
75 /* preincrements and predecrements are valid lvals, provided
76 what they refer to are valid lvals. */
77 case PREINCREMENT_EXPR:
78 case PREDECREMENT_EXPR:
79 case SAVE_EXPR:
80 case TRY_CATCH_EXPR:
81 case WITH_CLEANUP_EXPR:
82 case REALPART_EXPR:
83 case IMAGPART_EXPR:
84 return lvalue_p_1 (TREE_OPERAND (ref, 0),
85 treat_class_rvalues_as_lvalues);
87 case COMPONENT_REF:
88 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 0),
89 treat_class_rvalues_as_lvalues);
90 /* In an expression of the form "X.Y", the packed-ness of the
91 expression does not depend on "X". */
92 op1_lvalue_kind &= ~clk_packed;
93 /* Look at the member designator. */
94 if (!op1_lvalue_kind
95 /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
96 situations. */
97 || TREE_CODE (TREE_OPERAND (ref, 1)) != FIELD_DECL)
99 else if (DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
101 /* Clear the ordinary bit. If this object was a class
102 rvalue we want to preserve that information. */
103 op1_lvalue_kind &= ~clk_ordinary;
104 /* The lvalue is for a bitfield. */
105 op1_lvalue_kind |= clk_bitfield;
107 else if (DECL_PACKED (TREE_OPERAND (ref, 1)))
108 op1_lvalue_kind |= clk_packed;
110 return op1_lvalue_kind;
112 case STRING_CST:
113 return clk_ordinary;
115 case CONST_DECL:
116 case VAR_DECL:
117 if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
118 && DECL_LANG_SPECIFIC (ref)
119 && DECL_IN_AGGR_P (ref))
120 return clk_none;
121 case INDIRECT_REF:
122 case ARRAY_REF:
123 case PARM_DECL:
124 case RESULT_DECL:
125 if (TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE)
126 return clk_ordinary;
127 break;
129 /* A currently unresolved scope ref. */
130 case SCOPE_REF:
131 gcc_unreachable ();
132 case MAX_EXPR:
133 case MIN_EXPR:
134 /* Disallow <? and >? as lvalues if either argument side-effects. */
135 if (TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 0))
136 || TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 1)))
137 return clk_none;
138 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 0),
139 treat_class_rvalues_as_lvalues);
140 op2_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 1),
141 treat_class_rvalues_as_lvalues);
142 break;
144 case COND_EXPR:
145 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 1),
146 treat_class_rvalues_as_lvalues);
147 op2_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 2),
148 treat_class_rvalues_as_lvalues);
149 break;
151 case MODIFY_EXPR:
152 return clk_ordinary;
154 case COMPOUND_EXPR:
155 return lvalue_p_1 (TREE_OPERAND (ref, 1),
156 treat_class_rvalues_as_lvalues);
158 case TARGET_EXPR:
159 return treat_class_rvalues_as_lvalues ? clk_class : clk_none;
161 case VA_ARG_EXPR:
162 return (treat_class_rvalues_as_lvalues
163 && CLASS_TYPE_P (TREE_TYPE (ref))
164 ? clk_class : clk_none);
166 case CALL_EXPR:
167 /* Any class-valued call would be wrapped in a TARGET_EXPR. */
168 return clk_none;
170 case FUNCTION_DECL:
171 /* All functions (except non-static-member functions) are
172 lvalues. */
173 return (DECL_NONSTATIC_MEMBER_FUNCTION_P (ref)
174 ? clk_none : clk_ordinary);
176 case NON_DEPENDENT_EXPR:
177 /* We must consider NON_DEPENDENT_EXPRs to be lvalues so that
178 things like "&E" where "E" is an expression with a
179 non-dependent type work. It is safe to be lenient because an
180 error will be issued when the template is instantiated if "E"
181 is not an lvalue. */
182 return clk_ordinary;
184 default:
185 break;
188 /* If one operand is not an lvalue at all, then this expression is
189 not an lvalue. */
190 if (!op1_lvalue_kind || !op2_lvalue_kind)
191 return clk_none;
193 /* Otherwise, it's an lvalue, and it has all the odd properties
194 contributed by either operand. */
195 op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
196 /* It's not an ordinary lvalue if it involves either a bit-field or
197 a class rvalue. */
198 if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
199 op1_lvalue_kind &= ~clk_ordinary;
200 return op1_lvalue_kind;
203 /* Returns the kind of lvalue that REF is, in the sense of
204 [basic.lval]. This function should really be named lvalue_p; it
205 computes the C++ definition of lvalue. */
207 cp_lvalue_kind
208 real_lvalue_p (tree ref)
210 return lvalue_p_1 (ref,
211 /*treat_class_rvalues_as_lvalues=*/0);
214 /* This differs from real_lvalue_p in that class rvalues are
215 considered lvalues. */
218 lvalue_p (tree ref)
220 return
221 (lvalue_p_1 (ref, /*class rvalue ok*/ 1) != clk_none);
224 /* Test whether DECL is a builtin that may appear in a
225 constant-expression. */
227 bool
228 builtin_valid_in_constant_expr_p (tree decl)
230 /* At present BUILT_IN_CONSTANT_P is the only builtin we're allowing
231 in constant-expressions. We may want to add other builtins later. */
232 return DECL_IS_BUILTIN_CONSTANT_P (decl);
235 /* Build a TARGET_EXPR, initializing the DECL with the VALUE. */
237 static tree
238 build_target_expr (tree decl, tree value)
240 tree t;
242 t = build4 (TARGET_EXPR, TREE_TYPE (decl), decl, value,
243 cxx_maybe_build_cleanup (decl), NULL_TREE);
244 /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
245 ignore the TARGET_EXPR. If there really turn out to be no
246 side-effects, then the optimizer should be able to get rid of
247 whatever code is generated anyhow. */
248 TREE_SIDE_EFFECTS (t) = 1;
250 return t;
253 /* Return an undeclared local temporary of type TYPE for use in building a
254 TARGET_EXPR. */
256 static tree
257 build_local_temp (tree type)
259 tree slot = build_decl (VAR_DECL, NULL_TREE, type);
260 DECL_ARTIFICIAL (slot) = 1;
261 DECL_IGNORED_P (slot) = 1;
262 DECL_CONTEXT (slot) = current_function_decl;
263 layout_decl (slot, 0);
264 return slot;
267 /* INIT is a CALL_EXPR which needs info about its target.
268 TYPE is the type that this initialization should appear to have.
270 Build an encapsulation of the initialization to perform
271 and return it so that it can be processed by language-independent
272 and language-specific expression expanders. */
274 tree
275 build_cplus_new (tree type, tree init)
277 tree fn;
278 tree slot;
279 tree rval;
280 int is_ctor;
282 /* Make sure that we're not trying to create an instance of an
283 abstract class. */
284 abstract_virtuals_error (NULL_TREE, type);
286 if (TREE_CODE (init) != CALL_EXPR && TREE_CODE (init) != AGGR_INIT_EXPR)
287 return convert (type, init);
289 fn = TREE_OPERAND (init, 0);
290 is_ctor = (TREE_CODE (fn) == ADDR_EXPR
291 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
292 && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
294 slot = build_local_temp (type);
296 /* We split the CALL_EXPR into its function and its arguments here.
297 Then, in expand_expr, we put them back together. The reason for
298 this is that this expression might be a default argument
299 expression. In that case, we need a new temporary every time the
300 expression is used. That's what break_out_target_exprs does; it
301 replaces every AGGR_INIT_EXPR with a copy that uses a fresh
302 temporary slot. Then, expand_expr builds up a call-expression
303 using the new slot. */
305 /* If we don't need to use a constructor to create an object of this
306 type, don't mess with AGGR_INIT_EXPR. */
307 if (is_ctor || TREE_ADDRESSABLE (type))
309 rval = build3 (AGGR_INIT_EXPR, void_type_node, fn,
310 TREE_OPERAND (init, 1), slot);
311 TREE_SIDE_EFFECTS (rval) = 1;
312 AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
314 else
315 rval = init;
317 rval = build_target_expr (slot, rval);
319 return rval;
322 /* Build a TARGET_EXPR using INIT to initialize a new temporary of the
323 indicated TYPE. */
325 tree
326 build_target_expr_with_type (tree init, tree type)
328 tree slot;
330 gcc_assert (!VOID_TYPE_P (type));
332 if (TREE_CODE (init) == TARGET_EXPR)
333 return init;
334 else if (CLASS_TYPE_P (type) && !TYPE_HAS_TRIVIAL_INIT_REF (type)
335 && TREE_CODE (init) != COND_EXPR
336 && TREE_CODE (init) != CONSTRUCTOR
337 && TREE_CODE (init) != VA_ARG_EXPR)
338 /* We need to build up a copy constructor call. COND_EXPR is a special
339 case because we already have copies on the arms and we don't want
340 another one here. A CONSTRUCTOR is aggregate initialization, which
341 is handled separately. A VA_ARG_EXPR is magic creation of an
342 aggregate; there's no additional work to be done. */
343 return force_rvalue (init);
345 slot = build_local_temp (type);
346 return build_target_expr (slot, init);
349 /* Like the above function, but without the checking. This function should
350 only be used by code which is deliberately trying to subvert the type
351 system, such as call_builtin_trap. */
353 tree
354 force_target_expr (tree type, tree init)
356 tree slot;
358 gcc_assert (!VOID_TYPE_P (type));
360 slot = build_local_temp (type);
361 return build_target_expr (slot, init);
364 /* Like build_target_expr_with_type, but use the type of INIT. */
366 tree
367 get_target_expr (tree init)
369 return build_target_expr_with_type (init, TREE_TYPE (init));
372 /* EXPR is being used in an rvalue context. Return a version of EXPR
373 that is marked as an rvalue. */
375 tree
376 rvalue (tree expr)
378 tree type;
379 if (real_lvalue_p (expr))
381 type = TREE_TYPE (expr);
382 /* [basic.lval]
384 Non-class rvalues always have cv-unqualified types. */
385 if (!CLASS_TYPE_P (type))
386 type = TYPE_MAIN_VARIANT (type);
387 expr = build1 (NON_LVALUE_EXPR, type, expr);
389 return expr;
393 static tree
394 build_cplus_array_type_1 (tree elt_type, tree index_type)
396 tree t;
398 if (elt_type == error_mark_node || index_type == error_mark_node)
399 return error_mark_node;
401 if (dependent_type_p (elt_type)
402 || (index_type
403 && value_dependent_expression_p (TYPE_MAX_VALUE (index_type))))
405 t = make_node (ARRAY_TYPE);
406 TREE_TYPE (t) = elt_type;
407 TYPE_DOMAIN (t) = index_type;
409 else
410 t = build_array_type (elt_type, index_type);
412 /* Push these needs up so that initialization takes place
413 more easily. */
414 TYPE_NEEDS_CONSTRUCTING (t)
415 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (elt_type));
416 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
417 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (elt_type));
418 return t;
421 tree
422 build_cplus_array_type (tree elt_type, tree index_type)
424 tree t;
425 int type_quals = cp_type_quals (elt_type);
427 if (type_quals != TYPE_UNQUALIFIED)
428 elt_type = cp_build_qualified_type (elt_type, TYPE_UNQUALIFIED);
430 t = build_cplus_array_type_1 (elt_type, index_type);
432 if (type_quals != TYPE_UNQUALIFIED)
433 t = cp_build_qualified_type (t, type_quals);
435 return t;
438 /* Make a variant of TYPE, qualified with the TYPE_QUALS. Handles
439 arrays correctly. In particular, if TYPE is an array of T's, and
440 TYPE_QUALS is non-empty, returns an array of qualified T's.
442 FLAGS determines how to deal with illformed qualifications. If
443 tf_ignore_bad_quals is set, then bad qualifications are dropped
444 (this is permitted if TYPE was introduced via a typedef or template
445 type parameter). If bad qualifications are dropped and tf_warning
446 is set, then a warning is issued for non-const qualifications. If
447 tf_ignore_bad_quals is not set and tf_error is not set, we
448 return error_mark_node. Otherwise, we issue an error, and ignore
449 the qualifications.
451 Qualification of a reference type is valid when the reference came
452 via a typedef or template type argument. [dcl.ref] No such
453 dispensation is provided for qualifying a function type. [dcl.fct]
454 DR 295 queries this and the proposed resolution brings it into line
455 with qualifying a reference. We implement the DR. We also behave
456 in a similar manner for restricting non-pointer types. */
458 tree
459 cp_build_qualified_type_real (tree type,
460 int type_quals,
461 tsubst_flags_t complain)
463 tree result;
464 int bad_quals = TYPE_UNQUALIFIED;
466 if (type == error_mark_node)
467 return type;
469 if (type_quals == cp_type_quals (type))
470 return type;
472 if (TREE_CODE (type) == ARRAY_TYPE)
474 /* In C++, the qualification really applies to the array element
475 type. Obtain the appropriately qualified element type. */
476 tree t;
477 tree element_type
478 = cp_build_qualified_type_real (TREE_TYPE (type),
479 type_quals,
480 complain);
482 if (element_type == error_mark_node)
483 return error_mark_node;
485 /* See if we already have an identically qualified type. */
486 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
487 if (cp_type_quals (t) == type_quals
488 && TYPE_NAME (t) == TYPE_NAME (type)
489 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type))
490 break;
492 if (!t)
494 /* Make a new array type, just like the old one, but with the
495 appropriately qualified element type. */
496 t = build_variant_type_copy (type);
497 TREE_TYPE (t) = element_type;
500 /* Even if we already had this variant, we update
501 TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
502 they changed since the variant was originally created.
504 This seems hokey; if there is some way to use a previous
505 variant *without* coming through here,
506 TYPE_NEEDS_CONSTRUCTING will never be updated. */
507 TYPE_NEEDS_CONSTRUCTING (t)
508 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
509 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
510 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
511 return t;
513 else if (TYPE_PTRMEMFUNC_P (type))
515 /* For a pointer-to-member type, we can't just return a
516 cv-qualified version of the RECORD_TYPE. If we do, we
517 haven't changed the field that contains the actual pointer to
518 a method, and so TYPE_PTRMEMFUNC_FN_TYPE will be wrong. */
519 tree t;
521 t = TYPE_PTRMEMFUNC_FN_TYPE (type);
522 t = cp_build_qualified_type_real (t, type_quals, complain);
523 return build_ptrmemfunc_type (t);
526 /* A reference or method type shall not be cv qualified.
527 [dcl.ref], [dct.fct] */
528 if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
529 && (TREE_CODE (type) == REFERENCE_TYPE
530 || TREE_CODE (type) == METHOD_TYPE))
532 bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
533 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
536 /* A restrict-qualified type must be a pointer (or reference)
537 to object or incomplete type, or a function type. */
538 if ((type_quals & TYPE_QUAL_RESTRICT)
539 && TREE_CODE (type) != TEMPLATE_TYPE_PARM
540 && TREE_CODE (type) != TYPENAME_TYPE
541 && TREE_CODE (type) != FUNCTION_TYPE
542 && !POINTER_TYPE_P (type))
544 bad_quals |= TYPE_QUAL_RESTRICT;
545 type_quals &= ~TYPE_QUAL_RESTRICT;
548 if (bad_quals == TYPE_UNQUALIFIED)
549 /*OK*/;
550 else if (!(complain & (tf_error | tf_ignore_bad_quals)))
551 return error_mark_node;
552 else
554 if (complain & tf_ignore_bad_quals)
555 /* We're not going to warn about constifying things that can't
556 be constified. */
557 bad_quals &= ~TYPE_QUAL_CONST;
558 if (bad_quals)
560 tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
562 if (!(complain & tf_ignore_bad_quals))
563 error ("%qV qualifiers cannot be applied to %qT",
564 bad_type, type);
568 /* Retrieve (or create) the appropriately qualified variant. */
569 result = build_qualified_type (type, type_quals);
571 /* If this was a pointer-to-method type, and we just made a copy,
572 then we need to unshare the record that holds the cached
573 pointer-to-member-function type, because these will be distinct
574 between the unqualified and qualified types. */
575 if (result != type
576 && TREE_CODE (type) == POINTER_TYPE
577 && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE)
578 TYPE_LANG_SPECIFIC (result) = NULL;
580 return result;
583 /* Returns the canonical version of TYPE. In other words, if TYPE is
584 a typedef, returns the underlying type. The cv-qualification of
585 the type returned matches the type input; they will always be
586 compatible types. */
588 tree
589 canonical_type_variant (tree t)
591 return cp_build_qualified_type (TYPE_MAIN_VARIANT (t), cp_type_quals (t));
594 /* Makes a copy of BINFO and TYPE, which is to be inherited into a
595 graph dominated by T. If BINFO is NULL, TYPE is a dependent base,
596 and we do a shallow copy. If BINFO is non-NULL, we do a deep copy.
597 VIRT indicates whether TYPE is inherited virtually or not.
598 IGO_PREV points at the previous binfo of the inheritance graph
599 order chain. The newly copied binfo's TREE_CHAIN forms this
600 ordering.
602 The CLASSTYPE_VBASECLASSES vector of T is constructed in the
603 correct order. That is in the order the bases themselves should be
604 constructed in.
606 The BINFO_INHERITANCE of a virtual base class points to the binfo
607 of the most derived type. ??? We could probably change this so that
608 BINFO_INHERITANCE becomes synonymous with BINFO_PRIMARY, and hence
609 remove a field. They currently can only differ for primary virtual
610 virtual bases. */
612 tree
613 copy_binfo (tree binfo, tree type, tree t, tree *igo_prev, int virt)
615 tree new_binfo;
617 if (virt)
619 /* See if we've already made this virtual base. */
620 new_binfo = binfo_for_vbase (type, t);
621 if (new_binfo)
622 return new_binfo;
625 new_binfo = make_tree_binfo (binfo ? BINFO_N_BASE_BINFOS (binfo) : 0);
626 BINFO_TYPE (new_binfo) = type;
628 /* Chain it into the inheritance graph. */
629 TREE_CHAIN (*igo_prev) = new_binfo;
630 *igo_prev = new_binfo;
632 if (binfo)
634 int ix;
635 tree base_binfo;
637 gcc_assert (!BINFO_DEPENDENT_BASE_P (binfo));
638 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), type));
640 BINFO_OFFSET (new_binfo) = BINFO_OFFSET (binfo);
641 BINFO_VIRTUALS (new_binfo) = BINFO_VIRTUALS (binfo);
643 /* We do not need to copy the accesses, as they are read only. */
644 BINFO_BASE_ACCESSES (new_binfo) = BINFO_BASE_ACCESSES (binfo);
646 /* Recursively copy base binfos of BINFO. */
647 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
649 tree new_base_binfo;
651 gcc_assert (!BINFO_DEPENDENT_BASE_P (base_binfo));
652 new_base_binfo = copy_binfo (base_binfo, BINFO_TYPE (base_binfo),
653 t, igo_prev,
654 BINFO_VIRTUAL_P (base_binfo));
656 if (!BINFO_INHERITANCE_CHAIN (new_base_binfo))
657 BINFO_INHERITANCE_CHAIN (new_base_binfo) = new_binfo;
658 BINFO_BASE_APPEND (new_binfo, new_base_binfo);
661 else
662 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
664 if (virt)
666 /* Push it onto the list after any virtual bases it contains
667 will have been pushed. */
668 VEC_quick_push (tree, CLASSTYPE_VBASECLASSES (t), new_binfo);
669 BINFO_VIRTUAL_P (new_binfo) = 1;
670 BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
673 return new_binfo;
676 /* Hashing of lists so that we don't make duplicates.
677 The entry point is `list_hash_canon'. */
679 /* Now here is the hash table. When recording a list, it is added
680 to the slot whose index is the hash code mod the table size.
681 Note that the hash table is used for several kinds of lists.
682 While all these live in the same table, they are completely independent,
683 and the hash code is computed differently for each of these. */
685 static GTY ((param_is (union tree_node))) htab_t list_hash_table;
687 struct list_proxy
689 tree purpose;
690 tree value;
691 tree chain;
694 /* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
695 for a node we are thinking about adding). */
697 static int
698 list_hash_eq (const void* entry, const void* data)
700 tree t = (tree) entry;
701 struct list_proxy *proxy = (struct list_proxy *) data;
703 return (TREE_VALUE (t) == proxy->value
704 && TREE_PURPOSE (t) == proxy->purpose
705 && TREE_CHAIN (t) == proxy->chain);
708 /* Compute a hash code for a list (chain of TREE_LIST nodes
709 with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
710 TREE_COMMON slots), by adding the hash codes of the individual entries. */
712 static hashval_t
713 list_hash_pieces (tree purpose, tree value, tree chain)
715 hashval_t hashcode = 0;
717 if (chain)
718 hashcode += TREE_HASH (chain);
720 if (value)
721 hashcode += TREE_HASH (value);
722 else
723 hashcode += 1007;
724 if (purpose)
725 hashcode += TREE_HASH (purpose);
726 else
727 hashcode += 1009;
728 return hashcode;
731 /* Hash an already existing TREE_LIST. */
733 static hashval_t
734 list_hash (const void* p)
736 tree t = (tree) p;
737 return list_hash_pieces (TREE_PURPOSE (t),
738 TREE_VALUE (t),
739 TREE_CHAIN (t));
742 /* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
743 object for an identical list if one already exists. Otherwise, build a
744 new one, and record it as the canonical object. */
746 tree
747 hash_tree_cons (tree purpose, tree value, tree chain)
749 int hashcode = 0;
750 void **slot;
751 struct list_proxy proxy;
753 /* Hash the list node. */
754 hashcode = list_hash_pieces (purpose, value, chain);
755 /* Create a proxy for the TREE_LIST we would like to create. We
756 don't actually create it so as to avoid creating garbage. */
757 proxy.purpose = purpose;
758 proxy.value = value;
759 proxy.chain = chain;
760 /* See if it is already in the table. */
761 slot = htab_find_slot_with_hash (list_hash_table, &proxy, hashcode,
762 INSERT);
763 /* If not, create a new node. */
764 if (!*slot)
765 *slot = tree_cons (purpose, value, chain);
766 return *slot;
769 /* Constructor for hashed lists. */
771 tree
772 hash_tree_chain (tree value, tree chain)
774 return hash_tree_cons (NULL_TREE, value, chain);
777 void
778 debug_binfo (tree elem)
780 HOST_WIDE_INT n;
781 tree virtuals;
783 fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
784 "\nvtable type:\n",
785 TYPE_NAME_STRING (BINFO_TYPE (elem)),
786 TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
787 debug_tree (BINFO_TYPE (elem));
788 if (BINFO_VTABLE (elem))
789 fprintf (stderr, "vtable decl \"%s\"\n",
790 IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
791 else
792 fprintf (stderr, "no vtable decl yet\n");
793 fprintf (stderr, "virtuals:\n");
794 virtuals = BINFO_VIRTUALS (elem);
795 n = 0;
797 while (virtuals)
799 tree fndecl = TREE_VALUE (virtuals);
800 fprintf (stderr, "%s [%ld =? %ld]\n",
801 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
802 (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
803 ++n;
804 virtuals = TREE_CHAIN (virtuals);
808 /* Build a representation for the qualified name SCOPE::NAME. TYPE is
809 the type of the result expression, if known, or NULL_TREE if the
810 resulting expression is type-dependent. If TEMPLATE_P is true,
811 NAME is known to be a template because the user explicitly used the
812 "template" keyword after the "::".
814 All SCOPE_REFs should be built by use of this function. */
816 tree
817 build_qualified_name (tree type, tree scope, tree name, bool template_p)
819 tree t;
820 t = build2 (SCOPE_REF, type, scope, name);
821 QUALIFIED_NAME_IS_TEMPLATE (t) = template_p;
822 return t;
826 is_overloaded_fn (tree x)
828 /* A baselink is also considered an overloaded function. */
829 if (TREE_CODE (x) == OFFSET_REF)
830 x = TREE_OPERAND (x, 1);
831 if (BASELINK_P (x))
832 x = BASELINK_FUNCTIONS (x);
833 return (TREE_CODE (x) == FUNCTION_DECL
834 || TREE_CODE (x) == TEMPLATE_ID_EXPR
835 || DECL_FUNCTION_TEMPLATE_P (x)
836 || TREE_CODE (x) == OVERLOAD);
840 really_overloaded_fn (tree x)
842 /* A baselink is also considered an overloaded function. */
843 if (TREE_CODE (x) == OFFSET_REF)
844 x = TREE_OPERAND (x, 1);
845 if (BASELINK_P (x))
846 x = BASELINK_FUNCTIONS (x);
848 return ((TREE_CODE (x) == OVERLOAD && OVL_CHAIN (x))
849 || DECL_FUNCTION_TEMPLATE_P (OVL_CURRENT (x))
850 || TREE_CODE (x) == TEMPLATE_ID_EXPR);
853 tree
854 get_first_fn (tree from)
856 gcc_assert (is_overloaded_fn (from));
857 /* A baselink is also considered an overloaded function. */
858 if (BASELINK_P (from))
859 from = BASELINK_FUNCTIONS (from);
860 return OVL_CURRENT (from);
863 /* Return a new OVL node, concatenating it with the old one. */
865 tree
866 ovl_cons (tree decl, tree chain)
868 tree result = make_node (OVERLOAD);
869 TREE_TYPE (result) = unknown_type_node;
870 OVL_FUNCTION (result) = decl;
871 TREE_CHAIN (result) = chain;
873 return result;
876 /* Build a new overloaded function. If this is the first one,
877 just return it; otherwise, ovl_cons the _DECLs */
879 tree
880 build_overload (tree decl, tree chain)
882 if (! chain && TREE_CODE (decl) != TEMPLATE_DECL)
883 return decl;
884 if (chain && TREE_CODE (chain) != OVERLOAD)
885 chain = ovl_cons (chain, NULL_TREE);
886 return ovl_cons (decl, chain);
890 #define PRINT_RING_SIZE 4
892 const char *
893 cxx_printable_name (tree decl, int v)
895 static tree decl_ring[PRINT_RING_SIZE];
896 static char *print_ring[PRINT_RING_SIZE];
897 static int ring_counter;
898 int i;
900 /* Only cache functions. */
901 if (v < 2
902 || TREE_CODE (decl) != FUNCTION_DECL
903 || DECL_LANG_SPECIFIC (decl) == 0)
904 return lang_decl_name (decl, v);
906 /* See if this print name is lying around. */
907 for (i = 0; i < PRINT_RING_SIZE; i++)
908 if (decl_ring[i] == decl)
909 /* yes, so return it. */
910 return print_ring[i];
912 if (++ring_counter == PRINT_RING_SIZE)
913 ring_counter = 0;
915 if (current_function_decl != NULL_TREE)
917 if (decl_ring[ring_counter] == current_function_decl)
918 ring_counter += 1;
919 if (ring_counter == PRINT_RING_SIZE)
920 ring_counter = 0;
921 gcc_assert (decl_ring[ring_counter] != current_function_decl);
924 if (print_ring[ring_counter])
925 free (print_ring[ring_counter]);
927 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v));
928 decl_ring[ring_counter] = decl;
929 return print_ring[ring_counter];
932 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
933 listed in RAISES. */
935 tree
936 build_exception_variant (tree type, tree raises)
938 tree v = TYPE_MAIN_VARIANT (type);
939 int type_quals = TYPE_QUALS (type);
941 for (; v; v = TYPE_NEXT_VARIANT (v))
942 if (check_qualified_type (v, type, type_quals)
943 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (v), 1))
944 return v;
946 /* Need to build a new variant. */
947 v = build_variant_type_copy (type);
948 TYPE_RAISES_EXCEPTIONS (v) = raises;
949 return v;
952 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
953 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
954 arguments. */
956 tree
957 bind_template_template_parm (tree t, tree newargs)
959 tree decl = TYPE_NAME (t);
960 tree t2;
962 t2 = make_aggr_type (BOUND_TEMPLATE_TEMPLATE_PARM);
963 decl = build_decl (TYPE_DECL, DECL_NAME (decl), NULL_TREE);
965 /* These nodes have to be created to reflect new TYPE_DECL and template
966 arguments. */
967 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
968 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
969 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
970 = tree_cons (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t),
971 newargs, NULL_TREE);
973 TREE_TYPE (decl) = t2;
974 TYPE_NAME (t2) = decl;
975 TYPE_STUB_DECL (t2) = decl;
976 TYPE_SIZE (t2) = 0;
978 return t2;
981 /* Called from count_trees via walk_tree. */
983 static tree
984 count_trees_r (tree *tp, int *walk_subtrees, void *data)
986 ++*((int *) data);
988 if (TYPE_P (*tp))
989 *walk_subtrees = 0;
991 return NULL_TREE;
994 /* Debugging function for measuring the rough complexity of a tree
995 representation. */
998 count_trees (tree t)
1000 int n_trees = 0;
1001 walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
1002 return n_trees;
1005 /* Called from verify_stmt_tree via walk_tree. */
1007 static tree
1008 verify_stmt_tree_r (tree* tp,
1009 int* walk_subtrees ATTRIBUTE_UNUSED ,
1010 void* data)
1012 tree t = *tp;
1013 htab_t *statements = (htab_t *) data;
1014 void **slot;
1016 if (!STATEMENT_CODE_P (TREE_CODE (t)))
1017 return NULL_TREE;
1019 /* If this statement is already present in the hash table, then
1020 there is a circularity in the statement tree. */
1021 gcc_assert (!htab_find (*statements, t));
1023 slot = htab_find_slot (*statements, t, INSERT);
1024 *slot = t;
1026 return NULL_TREE;
1029 /* Debugging function to check that the statement T has not been
1030 corrupted. For now, this function simply checks that T contains no
1031 circularities. */
1033 void
1034 verify_stmt_tree (tree t)
1036 htab_t statements;
1037 statements = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
1038 walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
1039 htab_delete (statements);
1042 /* Called from find_tree via walk_tree. */
1044 static tree
1045 find_tree_r (tree* tp,
1046 int* walk_subtrees ATTRIBUTE_UNUSED ,
1047 void* data)
1049 if (*tp == (tree) data)
1050 return (tree) data;
1052 return NULL_TREE;
1055 /* Returns X if X appears in the tree structure rooted at T. */
1057 tree
1058 find_tree (tree t, tree x)
1060 return walk_tree_without_duplicates (&t, find_tree_r, x);
1063 /* Check if the type T depends on a type with no linkage and if so, return
1064 it. If RELAXED_P then do not consider a class type declared within
1065 a TREE_PUBLIC function to have no linkage. */
1067 tree
1068 no_linkage_check (tree t, bool relaxed_p)
1070 tree r;
1072 /* There's no point in checking linkage on template functions; we
1073 can't know their complete types. */
1074 if (processing_template_decl)
1075 return NULL_TREE;
1077 switch (TREE_CODE (t))
1079 tree fn;
1081 case RECORD_TYPE:
1082 if (TYPE_PTRMEMFUNC_P (t))
1083 goto ptrmem;
1084 /* Fall through. */
1085 case UNION_TYPE:
1086 if (!CLASS_TYPE_P (t))
1087 return NULL_TREE;
1088 /* Fall through. */
1089 case ENUMERAL_TYPE:
1090 if (TYPE_ANONYMOUS_P (t))
1091 return t;
1092 fn = decl_function_context (TYPE_MAIN_DECL (t));
1093 if (fn && (!relaxed_p || !TREE_PUBLIC (fn)))
1094 return t;
1095 return NULL_TREE;
1097 case ARRAY_TYPE:
1098 case POINTER_TYPE:
1099 case REFERENCE_TYPE:
1100 return no_linkage_check (TREE_TYPE (t), relaxed_p);
1102 case OFFSET_TYPE:
1103 ptrmem:
1104 r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
1105 relaxed_p);
1106 if (r)
1107 return r;
1108 return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
1110 case METHOD_TYPE:
1111 r = no_linkage_check (TYPE_METHOD_BASETYPE (t), relaxed_p);
1112 if (r)
1113 return r;
1114 /* Fall through. */
1115 case FUNCTION_TYPE:
1117 tree parm;
1118 for (parm = TYPE_ARG_TYPES (t);
1119 parm && parm != void_list_node;
1120 parm = TREE_CHAIN (parm))
1122 r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
1123 if (r)
1124 return r;
1126 return no_linkage_check (TREE_TYPE (t), relaxed_p);
1129 default:
1130 return NULL_TREE;
1134 #ifdef GATHER_STATISTICS
1135 extern int depth_reached;
1136 #endif
1138 void
1139 cxx_print_statistics (void)
1141 print_search_statistics ();
1142 print_class_statistics ();
1143 #ifdef GATHER_STATISTICS
1144 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
1145 depth_reached);
1146 #endif
1149 /* Return, as an INTEGER_CST node, the number of elements for TYPE
1150 (which is an ARRAY_TYPE). This counts only elements of the top
1151 array. */
1153 tree
1154 array_type_nelts_top (tree type)
1156 return fold_build2 (PLUS_EXPR, sizetype,
1157 array_type_nelts (type),
1158 integer_one_node);
1161 /* Return, as an INTEGER_CST node, the number of elements for TYPE
1162 (which is an ARRAY_TYPE). This one is a recursive count of all
1163 ARRAY_TYPEs that are clumped together. */
1165 tree
1166 array_type_nelts_total (tree type)
1168 tree sz = array_type_nelts_top (type);
1169 type = TREE_TYPE (type);
1170 while (TREE_CODE (type) == ARRAY_TYPE)
1172 tree n = array_type_nelts_top (type);
1173 sz = fold_build2 (MULT_EXPR, sizetype, sz, n);
1174 type = TREE_TYPE (type);
1176 return sz;
1179 /* Called from break_out_target_exprs via mapcar. */
1181 static tree
1182 bot_manip (tree* tp, int* walk_subtrees, void* data)
1184 splay_tree target_remap = ((splay_tree) data);
1185 tree t = *tp;
1187 if (!TYPE_P (t) && TREE_CONSTANT (t))
1189 /* There can't be any TARGET_EXPRs or their slot variables below
1190 this point. We used to check !TREE_SIDE_EFFECTS, but then we
1191 failed to copy an ADDR_EXPR of the slot VAR_DECL. */
1192 *walk_subtrees = 0;
1193 return NULL_TREE;
1195 if (TREE_CODE (t) == TARGET_EXPR)
1197 tree u;
1199 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
1201 mark_used (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 1), 0), 0));
1202 u = build_cplus_new
1203 (TREE_TYPE (t), break_out_target_exprs (TREE_OPERAND (t, 1)));
1205 else
1207 u = build_target_expr_with_type
1208 (break_out_target_exprs (TREE_OPERAND (t, 1)), TREE_TYPE (t));
1211 /* Map the old variable to the new one. */
1212 splay_tree_insert (target_remap,
1213 (splay_tree_key) TREE_OPERAND (t, 0),
1214 (splay_tree_value) TREE_OPERAND (u, 0));
1216 /* Replace the old expression with the new version. */
1217 *tp = u;
1218 /* We don't have to go below this point; the recursive call to
1219 break_out_target_exprs will have handled anything below this
1220 point. */
1221 *walk_subtrees = 0;
1222 return NULL_TREE;
1224 else if (TREE_CODE (t) == CALL_EXPR)
1225 mark_used (TREE_OPERAND (TREE_OPERAND (t, 0), 0));
1227 /* Make a copy of this node. */
1228 return copy_tree_r (tp, walk_subtrees, NULL);
1231 /* Replace all remapped VAR_DECLs in T with their new equivalents.
1232 DATA is really a splay-tree mapping old variables to new
1233 variables. */
1235 static tree
1236 bot_replace (tree* t,
1237 int* walk_subtrees ATTRIBUTE_UNUSED ,
1238 void* data)
1240 splay_tree target_remap = ((splay_tree) data);
1242 if (TREE_CODE (*t) == VAR_DECL)
1244 splay_tree_node n = splay_tree_lookup (target_remap,
1245 (splay_tree_key) *t);
1246 if (n)
1247 *t = (tree) n->value;
1250 return NULL_TREE;
1253 /* When we parse a default argument expression, we may create
1254 temporary variables via TARGET_EXPRs. When we actually use the
1255 default-argument expression, we make a copy of the expression, but
1256 we must replace the temporaries with appropriate local versions. */
1258 tree
1259 break_out_target_exprs (tree t)
1261 static int target_remap_count;
1262 static splay_tree target_remap;
1264 if (!target_remap_count++)
1265 target_remap = splay_tree_new (splay_tree_compare_pointers,
1266 /*splay_tree_delete_key_fn=*/NULL,
1267 /*splay_tree_delete_value_fn=*/NULL);
1268 walk_tree (&t, bot_manip, target_remap, NULL);
1269 walk_tree (&t, bot_replace, target_remap, NULL);
1271 if (!--target_remap_count)
1273 splay_tree_delete (target_remap);
1274 target_remap = NULL;
1277 return t;
1280 /* Similar to `build_nt', but for template definitions of dependent
1281 expressions */
1283 tree
1284 build_min_nt (enum tree_code code, ...)
1286 tree t;
1287 int length;
1288 int i;
1289 va_list p;
1291 va_start (p, code);
1293 t = make_node (code);
1294 length = TREE_CODE_LENGTH (code);
1296 for (i = 0; i < length; i++)
1298 tree x = va_arg (p, tree);
1299 TREE_OPERAND (t, i) = x;
1302 va_end (p);
1303 return t;
1306 /* Similar to `build', but for template definitions. */
1308 tree
1309 build_min (enum tree_code code, tree tt, ...)
1311 tree t;
1312 int length;
1313 int i;
1314 va_list p;
1316 va_start (p, tt);
1318 t = make_node (code);
1319 length = TREE_CODE_LENGTH (code);
1320 TREE_TYPE (t) = tt;
1322 for (i = 0; i < length; i++)
1324 tree x = va_arg (p, tree);
1325 TREE_OPERAND (t, i) = x;
1326 if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
1327 TREE_SIDE_EFFECTS (t) = 1;
1330 va_end (p);
1331 return t;
1334 /* Similar to `build', but for template definitions of non-dependent
1335 expressions. NON_DEP is the non-dependent expression that has been
1336 built. */
1338 tree
1339 build_min_non_dep (enum tree_code code, tree non_dep, ...)
1341 tree t;
1342 int length;
1343 int i;
1344 va_list p;
1346 va_start (p, non_dep);
1348 t = make_node (code);
1349 length = TREE_CODE_LENGTH (code);
1350 TREE_TYPE (t) = TREE_TYPE (non_dep);
1351 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
1353 for (i = 0; i < length; i++)
1355 tree x = va_arg (p, tree);
1356 TREE_OPERAND (t, i) = x;
1359 if (code == COMPOUND_EXPR && TREE_CODE (non_dep) != COMPOUND_EXPR)
1360 /* This should not be considered a COMPOUND_EXPR, because it
1361 resolves to an overload. */
1362 COMPOUND_EXPR_OVERLOADED (t) = 1;
1364 va_end (p);
1365 return t;
1368 tree
1369 get_type_decl (tree t)
1371 if (TREE_CODE (t) == TYPE_DECL)
1372 return t;
1373 if (TYPE_P (t))
1374 return TYPE_STUB_DECL (t);
1375 gcc_assert (t == error_mark_node);
1376 return t;
1379 /* Returns the namespace that contains DECL, whether directly or
1380 indirectly. */
1382 tree
1383 decl_namespace_context (tree decl)
1385 while (1)
1387 if (TREE_CODE (decl) == NAMESPACE_DECL)
1388 return decl;
1389 else if (TYPE_P (decl))
1390 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
1391 else
1392 decl = CP_DECL_CONTEXT (decl);
1396 /* Return truthvalue of whether T1 is the same tree structure as T2.
1397 Return 1 if they are the same. Return 0 if they are different. */
1399 bool
1400 cp_tree_equal (tree t1, tree t2)
1402 enum tree_code code1, code2;
1404 if (t1 == t2)
1405 return true;
1406 if (!t1 || !t2)
1407 return false;
1409 for (code1 = TREE_CODE (t1);
1410 code1 == NOP_EXPR || code1 == CONVERT_EXPR
1411 || code1 == NON_LVALUE_EXPR;
1412 code1 = TREE_CODE (t1))
1413 t1 = TREE_OPERAND (t1, 0);
1414 for (code2 = TREE_CODE (t2);
1415 code2 == NOP_EXPR || code2 == CONVERT_EXPR
1416 || code1 == NON_LVALUE_EXPR;
1417 code2 = TREE_CODE (t2))
1418 t2 = TREE_OPERAND (t2, 0);
1420 /* They might have become equal now. */
1421 if (t1 == t2)
1422 return true;
1424 if (code1 != code2)
1425 return false;
1427 switch (code1)
1429 case INTEGER_CST:
1430 return TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
1431 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2);
1433 case REAL_CST:
1434 return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
1436 case STRING_CST:
1437 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
1438 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
1439 TREE_STRING_LENGTH (t1));
1441 case CONSTRUCTOR:
1442 /* We need to do this when determining whether or not two
1443 non-type pointer to member function template arguments
1444 are the same. */
1445 if (!(same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
1446 /* The first operand is RTL. */
1447 && TREE_OPERAND (t1, 0) == TREE_OPERAND (t2, 0)))
1448 return false;
1449 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1451 case TREE_LIST:
1452 if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
1453 return false;
1454 if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
1455 return false;
1456 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
1458 case SAVE_EXPR:
1459 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1461 case CALL_EXPR:
1462 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
1463 return false;
1464 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1466 case TARGET_EXPR:
1468 tree o1 = TREE_OPERAND (t1, 0);
1469 tree o2 = TREE_OPERAND (t2, 0);
1471 /* Special case: if either target is an unallocated VAR_DECL,
1472 it means that it's going to be unified with whatever the
1473 TARGET_EXPR is really supposed to initialize, so treat it
1474 as being equivalent to anything. */
1475 if (TREE_CODE (o1) == VAR_DECL && DECL_NAME (o1) == NULL_TREE
1476 && !DECL_RTL_SET_P (o1))
1477 /*Nop*/;
1478 else if (TREE_CODE (o2) == VAR_DECL && DECL_NAME (o2) == NULL_TREE
1479 && !DECL_RTL_SET_P (o2))
1480 /*Nop*/;
1481 else if (!cp_tree_equal (o1, o2))
1482 return false;
1484 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
1487 case WITH_CLEANUP_EXPR:
1488 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
1489 return false;
1490 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
1492 case COMPONENT_REF:
1493 if (TREE_OPERAND (t1, 1) != TREE_OPERAND (t2, 1))
1494 return false;
1495 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
1497 case VAR_DECL:
1498 case PARM_DECL:
1499 case CONST_DECL:
1500 case FUNCTION_DECL:
1501 case TEMPLATE_DECL:
1502 case IDENTIFIER_NODE:
1503 case SSA_NAME:
1504 return false;
1506 case BASELINK:
1507 return (BASELINK_BINFO (t1) == BASELINK_BINFO (t2)
1508 && BASELINK_ACCESS_BINFO (t1) == BASELINK_ACCESS_BINFO (t2)
1509 && cp_tree_equal (BASELINK_FUNCTIONS (t1),
1510 BASELINK_FUNCTIONS (t2)));
1512 case TEMPLATE_PARM_INDEX:
1513 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
1514 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
1515 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
1516 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
1518 case TEMPLATE_ID_EXPR:
1520 unsigned ix;
1521 tree vec1, vec2;
1523 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
1524 return false;
1525 vec1 = TREE_OPERAND (t1, 1);
1526 vec2 = TREE_OPERAND (t2, 1);
1528 if (!vec1 || !vec2)
1529 return !vec1 && !vec2;
1531 if (TREE_VEC_LENGTH (vec1) != TREE_VEC_LENGTH (vec2))
1532 return false;
1534 for (ix = TREE_VEC_LENGTH (vec1); ix--;)
1535 if (!cp_tree_equal (TREE_VEC_ELT (vec1, ix),
1536 TREE_VEC_ELT (vec2, ix)))
1537 return false;
1539 return true;
1542 case SIZEOF_EXPR:
1543 case ALIGNOF_EXPR:
1545 tree o1 = TREE_OPERAND (t1, 0);
1546 tree o2 = TREE_OPERAND (t2, 0);
1548 if (TREE_CODE (o1) != TREE_CODE (o2))
1549 return false;
1550 if (TYPE_P (o1))
1551 return same_type_p (o1, o2);
1552 else
1553 return cp_tree_equal (o1, o2);
1556 case PTRMEM_CST:
1557 /* Two pointer-to-members are the same if they point to the same
1558 field or function in the same class. */
1559 if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
1560 return false;
1562 return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
1564 case OVERLOAD:
1565 if (OVL_FUNCTION (t1) != OVL_FUNCTION (t2))
1566 return false;
1567 return cp_tree_equal (OVL_CHAIN (t1), OVL_CHAIN (t2));
1569 default:
1570 break;
1573 switch (TREE_CODE_CLASS (code1))
1575 case tcc_unary:
1576 case tcc_binary:
1577 case tcc_comparison:
1578 case tcc_expression:
1579 case tcc_reference:
1580 case tcc_statement:
1582 int i;
1584 for (i = 0; i < TREE_CODE_LENGTH (code1); ++i)
1585 if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
1586 return false;
1588 return true;
1591 case tcc_type:
1592 return same_type_p (t1, t2);
1593 default:
1594 gcc_unreachable ();
1596 /* We can get here with --disable-checking. */
1597 return false;
1600 /* The type of ARG when used as an lvalue. */
1602 tree
1603 lvalue_type (tree arg)
1605 tree type = TREE_TYPE (arg);
1606 return type;
1609 /* The type of ARG for printing error messages; denote lvalues with
1610 reference types. */
1612 tree
1613 error_type (tree arg)
1615 tree type = TREE_TYPE (arg);
1617 if (TREE_CODE (type) == ARRAY_TYPE)
1619 else if (TREE_CODE (type) == ERROR_MARK)
1621 else if (real_lvalue_p (arg))
1622 type = build_reference_type (lvalue_type (arg));
1623 else if (IS_AGGR_TYPE (type))
1624 type = lvalue_type (arg);
1626 return type;
1629 /* Does FUNCTION use a variable-length argument list? */
1632 varargs_function_p (tree function)
1634 tree parm = TYPE_ARG_TYPES (TREE_TYPE (function));
1635 for (; parm; parm = TREE_CHAIN (parm))
1636 if (TREE_VALUE (parm) == void_type_node)
1637 return 0;
1638 return 1;
1641 /* Returns 1 if decl is a member of a class. */
1644 member_p (tree decl)
1646 const tree ctx = DECL_CONTEXT (decl);
1647 return (ctx && TYPE_P (ctx));
1650 /* Create a placeholder for member access where we don't actually have an
1651 object that the access is against. */
1653 tree
1654 build_dummy_object (tree type)
1656 tree decl = build1 (NOP_EXPR, build_pointer_type (type), void_zero_node);
1657 return build_indirect_ref (decl, NULL);
1660 /* We've gotten a reference to a member of TYPE. Return *this if appropriate,
1661 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
1662 binfo path from current_class_type to TYPE, or 0. */
1664 tree
1665 maybe_dummy_object (tree type, tree* binfop)
1667 tree decl, context;
1668 tree binfo;
1670 if (current_class_type
1671 && (binfo = lookup_base (current_class_type, type,
1672 ba_unique | ba_quiet, NULL)))
1673 context = current_class_type;
1674 else
1676 /* Reference from a nested class member function. */
1677 context = type;
1678 binfo = TYPE_BINFO (type);
1681 if (binfop)
1682 *binfop = binfo;
1684 if (current_class_ref && context == current_class_type
1685 /* Kludge: Make sure that current_class_type is actually
1686 correct. It might not be if we're in the middle of
1687 tsubst_default_argument. */
1688 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref)),
1689 current_class_type))
1690 decl = current_class_ref;
1691 else
1692 decl = build_dummy_object (context);
1694 return decl;
1697 /* Returns 1 if OB is a placeholder object, or a pointer to one. */
1700 is_dummy_object (tree ob)
1702 if (TREE_CODE (ob) == INDIRECT_REF)
1703 ob = TREE_OPERAND (ob, 0);
1704 return (TREE_CODE (ob) == NOP_EXPR
1705 && TREE_OPERAND (ob, 0) == void_zero_node);
1708 /* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
1711 pod_type_p (tree t)
1713 t = strip_array_types (t);
1715 if (t == error_mark_node)
1716 return 1;
1717 if (INTEGRAL_TYPE_P (t))
1718 return 1; /* integral, character or enumeral type */
1719 if (FLOAT_TYPE_P (t))
1720 return 1;
1721 if (TYPE_PTR_P (t))
1722 return 1; /* pointer to non-member */
1723 if (TYPE_PTR_TO_MEMBER_P (t))
1724 return 1; /* pointer to member */
1726 if (TREE_CODE (t) == VECTOR_TYPE)
1727 return 1; /* vectors are (small) arrays of scalars */
1729 if (! CLASS_TYPE_P (t))
1730 return 0; /* other non-class type (reference or function) */
1731 if (CLASSTYPE_NON_POD_P (t))
1732 return 0;
1733 return 1;
1736 /* Returns 1 iff zero initialization of type T means actually storing
1737 zeros in it. */
1740 zero_init_p (tree t)
1742 t = strip_array_types (t);
1744 if (t == error_mark_node)
1745 return 1;
1747 /* NULL pointers to data members are initialized with -1. */
1748 if (TYPE_PTRMEM_P (t))
1749 return 0;
1751 /* Classes that contain types that can't be zero-initialized, cannot
1752 be zero-initialized themselves. */
1753 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
1754 return 0;
1756 return 1;
1759 /* Table of valid C++ attributes. */
1760 const struct attribute_spec cxx_attribute_table[] =
1762 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
1763 { "java_interface", 0, 0, false, false, false, handle_java_interface_attribute },
1764 { "com_interface", 0, 0, false, false, false, handle_com_interface_attribute },
1765 { "init_priority", 1, 1, true, false, false, handle_init_priority_attribute },
1766 { NULL, 0, 0, false, false, false, NULL }
1769 /* Handle a "java_interface" attribute; arguments as in
1770 struct attribute_spec.handler. */
1771 static tree
1772 handle_java_interface_attribute (tree* node,
1773 tree name,
1774 tree args ATTRIBUTE_UNUSED ,
1775 int flags,
1776 bool* no_add_attrs)
1778 if (DECL_P (*node)
1779 || !CLASS_TYPE_P (*node)
1780 || !TYPE_FOR_JAVA (*node))
1782 error ("%qE attribute can only be applied to Java class definitions",
1783 name);
1784 *no_add_attrs = true;
1785 return NULL_TREE;
1787 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
1788 *node = build_variant_type_copy (*node);
1789 TYPE_JAVA_INTERFACE (*node) = 1;
1791 return NULL_TREE;
1794 /* Handle a "com_interface" attribute; arguments as in
1795 struct attribute_spec.handler. */
1796 static tree
1797 handle_com_interface_attribute (tree* node,
1798 tree name,
1799 tree args ATTRIBUTE_UNUSED ,
1800 int flags ATTRIBUTE_UNUSED ,
1801 bool* no_add_attrs)
1803 static int warned;
1805 *no_add_attrs = true;
1807 if (DECL_P (*node)
1808 || !CLASS_TYPE_P (*node)
1809 || *node != TYPE_MAIN_VARIANT (*node))
1811 warning (OPT_Wattributes, "%qE attribute can only be applied "
1812 "to class definitions", name);
1813 return NULL_TREE;
1816 if (!warned++)
1817 warning (0, "%qE is obsolete; g++ vtables are now COM-compatible by default",
1818 name);
1820 return NULL_TREE;
1823 /* Handle an "init_priority" attribute; arguments as in
1824 struct attribute_spec.handler. */
1825 static tree
1826 handle_init_priority_attribute (tree* node,
1827 tree name,
1828 tree args,
1829 int flags ATTRIBUTE_UNUSED ,
1830 bool* no_add_attrs)
1832 tree initp_expr = TREE_VALUE (args);
1833 tree decl = *node;
1834 tree type = TREE_TYPE (decl);
1835 int pri;
1837 STRIP_NOPS (initp_expr);
1839 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
1841 error ("requested init_priority is not an integer constant");
1842 *no_add_attrs = true;
1843 return NULL_TREE;
1846 pri = TREE_INT_CST_LOW (initp_expr);
1848 type = strip_array_types (type);
1850 if (decl == NULL_TREE
1851 || TREE_CODE (decl) != VAR_DECL
1852 || !TREE_STATIC (decl)
1853 || DECL_EXTERNAL (decl)
1854 || (TREE_CODE (type) != RECORD_TYPE
1855 && TREE_CODE (type) != UNION_TYPE)
1856 /* Static objects in functions are initialized the
1857 first time control passes through that
1858 function. This is not precise enough to pin down an
1859 init_priority value, so don't allow it. */
1860 || current_function_decl)
1862 error ("can only use %qE attribute on file-scope definitions "
1863 "of objects of class type", name);
1864 *no_add_attrs = true;
1865 return NULL_TREE;
1868 if (pri > MAX_INIT_PRIORITY || pri <= 0)
1870 error ("requested init_priority is out of range");
1871 *no_add_attrs = true;
1872 return NULL_TREE;
1875 /* Check for init_priorities that are reserved for
1876 language and runtime support implementations.*/
1877 if (pri <= MAX_RESERVED_INIT_PRIORITY)
1879 warning
1880 (0, "requested init_priority is reserved for internal use");
1883 if (SUPPORTS_INIT_PRIORITY)
1885 SET_DECL_INIT_PRIORITY (decl, pri);
1886 DECL_HAS_INIT_PRIORITY_P (decl) = 1;
1887 return NULL_TREE;
1889 else
1891 error ("%qE attribute is not supported on this platform", name);
1892 *no_add_attrs = true;
1893 return NULL_TREE;
1897 /* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
1898 thing pointed to by the constant. */
1900 tree
1901 make_ptrmem_cst (tree type, tree member)
1903 tree ptrmem_cst = make_node (PTRMEM_CST);
1904 TREE_TYPE (ptrmem_cst) = type;
1905 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
1906 return ptrmem_cst;
1909 /* Build a variant of TYPE that has the indicated ATTRIBUTES. May
1910 return an existing type of an appropriate type already exists. */
1912 tree
1913 cp_build_type_attribute_variant (tree type, tree attributes)
1915 tree new_type;
1917 new_type = build_type_attribute_variant (type, attributes);
1918 if (TREE_CODE (new_type) == FUNCTION_TYPE
1919 && (TYPE_RAISES_EXCEPTIONS (new_type)
1920 != TYPE_RAISES_EXCEPTIONS (type)))
1921 new_type = build_exception_variant (new_type,
1922 TYPE_RAISES_EXCEPTIONS (type));
1923 return new_type;
1926 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
1927 traversal. Called from walk_tree. */
1929 tree
1930 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
1931 void *data, struct pointer_set_t *pset)
1933 enum tree_code code = TREE_CODE (*tp);
1934 location_t save_locus;
1935 tree result;
1937 #define WALK_SUBTREE(NODE) \
1938 do \
1940 result = walk_tree (&(NODE), func, data, pset); \
1941 if (result) goto out; \
1943 while (0)
1945 /* Set input_location here so we get the right instantiation context
1946 if we call instantiate_decl from inlinable_function_p. */
1947 save_locus = input_location;
1948 if (EXPR_HAS_LOCATION (*tp))
1949 input_location = EXPR_LOCATION (*tp);
1951 /* Not one of the easy cases. We must explicitly go through the
1952 children. */
1953 result = NULL_TREE;
1954 switch (code)
1956 case DEFAULT_ARG:
1957 case TEMPLATE_TEMPLATE_PARM:
1958 case BOUND_TEMPLATE_TEMPLATE_PARM:
1959 case UNBOUND_CLASS_TEMPLATE:
1960 case TEMPLATE_PARM_INDEX:
1961 case TEMPLATE_TYPE_PARM:
1962 case TYPENAME_TYPE:
1963 case TYPEOF_TYPE:
1964 case BASELINK:
1965 /* None of these have subtrees other than those already walked
1966 above. */
1967 *walk_subtrees_p = 0;
1968 break;
1970 case TINST_LEVEL:
1971 WALK_SUBTREE (TINST_DECL (*tp));
1972 *walk_subtrees_p = 0;
1973 break;
1975 case PTRMEM_CST:
1976 WALK_SUBTREE (TREE_TYPE (*tp));
1977 *walk_subtrees_p = 0;
1978 break;
1980 case TREE_LIST:
1981 WALK_SUBTREE (TREE_PURPOSE (*tp));
1982 break;
1984 case OVERLOAD:
1985 WALK_SUBTREE (OVL_FUNCTION (*tp));
1986 WALK_SUBTREE (OVL_CHAIN (*tp));
1987 *walk_subtrees_p = 0;
1988 break;
1990 case RECORD_TYPE:
1991 if (TYPE_PTRMEMFUNC_P (*tp))
1992 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (*tp));
1993 break;
1995 default:
1996 input_location = save_locus;
1997 return NULL_TREE;
2000 /* We didn't find what we were looking for. */
2001 out:
2002 input_location = save_locus;
2003 return result;
2005 #undef WALK_SUBTREE
2008 /* Decide whether there are language-specific reasons to not inline a
2009 function as a tree. */
2012 cp_cannot_inline_tree_fn (tree* fnp)
2014 tree fn = *fnp;
2016 /* We can inline a template instantiation only if it's fully
2017 instantiated. */
2018 if (DECL_TEMPLATE_INFO (fn)
2019 && TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (fn)))
2021 /* Don't instantiate functions that are not going to be
2022 inlined. */
2023 if (!DECL_INLINE (DECL_TEMPLATE_RESULT
2024 (template_for_substitution (fn))))
2025 return 1;
2027 fn = *fnp = instantiate_decl (fn, /*defer_ok=*/0, /*undefined_ok=*/0);
2029 if (TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (fn)))
2030 return 1;
2033 if (flag_really_no_inline
2034 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL)
2035 return 1;
2037 /* Don't auto-inline anything that might not be bound within
2038 this unit of translation.
2039 Exclude comdat functions from this rule. While they can be bound
2040 to the other unit, they all must be the same. This is especially
2041 important so templates can inline. */
2042 if (!DECL_DECLARED_INLINE_P (fn) && !(*targetm.binds_local_p) (fn)
2043 && !DECL_COMDAT (fn))
2045 DECL_UNINLINABLE (fn) = 1;
2046 return 1;
2049 if (varargs_function_p (fn))
2051 DECL_UNINLINABLE (fn) = 1;
2052 return 1;
2055 if (! function_attribute_inlinable_p (fn))
2057 DECL_UNINLINABLE (fn) = 1;
2058 return 1;
2061 return 0;
2064 /* Add any pending functions other than the current function (already
2065 handled by the caller), that thus cannot be inlined, to FNS_P, then
2066 return the latest function added to the array, PREV_FN. */
2068 tree
2069 cp_add_pending_fn_decls (void* fns_p, tree prev_fn)
2071 varray_type *fnsp = (varray_type *)fns_p;
2072 struct saved_scope *s;
2074 for (s = scope_chain; s; s = s->prev)
2075 if (s->function_decl && s->function_decl != prev_fn)
2077 VARRAY_PUSH_TREE (*fnsp, s->function_decl);
2078 prev_fn = s->function_decl;
2081 return prev_fn;
2084 /* Determine whether VAR is a declaration of an automatic variable in
2085 function FN. */
2088 cp_auto_var_in_fn_p (tree var, tree fn)
2090 return (DECL_P (var) && DECL_CONTEXT (var) == fn
2091 && nonstatic_local_decl_p (var));
2094 /* Initialize tree.c. */
2096 void
2097 init_tree (void)
2099 list_hash_table = htab_create_ggc (31, list_hash, list_hash_eq, NULL);
2102 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
2103 is. Note that sfk_none is zero, so this function can be used as a
2104 predicate to test whether or not DECL is a special function. */
2106 special_function_kind
2107 special_function_p (tree decl)
2109 /* Rather than doing all this stuff with magic names, we should
2110 probably have a field of type `special_function_kind' in
2111 DECL_LANG_SPECIFIC. */
2112 if (DECL_COPY_CONSTRUCTOR_P (decl))
2113 return sfk_copy_constructor;
2114 if (DECL_CONSTRUCTOR_P (decl))
2115 return sfk_constructor;
2116 if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
2117 return sfk_assignment_operator;
2118 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2119 return sfk_destructor;
2120 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
2121 return sfk_complete_destructor;
2122 if (DECL_BASE_DESTRUCTOR_P (decl))
2123 return sfk_base_destructor;
2124 if (DECL_DELETING_DESTRUCTOR_P (decl))
2125 return sfk_deleting_destructor;
2126 if (DECL_CONV_FN_P (decl))
2127 return sfk_conversion;
2129 return sfk_none;
2132 /* Returns nonzero if TYPE is a character type, including wchar_t. */
2135 char_type_p (tree type)
2137 return (same_type_p (type, char_type_node)
2138 || same_type_p (type, unsigned_char_type_node)
2139 || same_type_p (type, signed_char_type_node)
2140 || same_type_p (type, wchar_type_node));
2143 /* Returns the kind of linkage associated with the indicated DECL. Th
2144 value returned is as specified by the language standard; it is
2145 independent of implementation details regarding template
2146 instantiation, etc. For example, it is possible that a declaration
2147 to which this function assigns external linkage would not show up
2148 as a global symbol when you run `nm' on the resulting object file. */
2150 linkage_kind
2151 decl_linkage (tree decl)
2153 /* This function doesn't attempt to calculate the linkage from first
2154 principles as given in [basic.link]. Instead, it makes use of
2155 the fact that we have already set TREE_PUBLIC appropriately, and
2156 then handles a few special cases. Ideally, we would calculate
2157 linkage first, and then transform that into a concrete
2158 implementation. */
2160 /* Things that don't have names have no linkage. */
2161 if (!DECL_NAME (decl))
2162 return lk_none;
2164 /* Things that are TREE_PUBLIC have external linkage. */
2165 if (TREE_PUBLIC (decl))
2166 return lk_external;
2168 /* Linkage of a CONST_DECL depends on the linkage of the enumeration
2169 type. */
2170 if (TREE_CODE (decl) == CONST_DECL)
2171 return decl_linkage (TYPE_NAME (TREE_TYPE (decl)));
2173 /* Some things that are not TREE_PUBLIC have external linkage, too.
2174 For example, on targets that don't have weak symbols, we make all
2175 template instantiations have internal linkage (in the object
2176 file), but the symbols should still be treated as having external
2177 linkage from the point of view of the language. */
2178 if (TREE_CODE (decl) != TYPE_DECL && DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
2179 return lk_external;
2181 /* Things in local scope do not have linkage, if they don't have
2182 TREE_PUBLIC set. */
2183 if (decl_function_context (decl))
2184 return lk_none;
2186 /* Everything else has internal linkage. */
2187 return lk_internal;
2190 /* EXP is an expression that we want to pre-evaluate. Returns via INITP an
2191 expression to perform the pre-evaluation, and returns directly an
2192 expression to use the precalculated result. */
2194 tree
2195 stabilize_expr (tree exp, tree* initp)
2197 tree init_expr;
2199 if (!TREE_SIDE_EFFECTS (exp))
2201 init_expr = NULL_TREE;
2203 else if (!real_lvalue_p (exp)
2204 || !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (exp)))
2206 init_expr = get_target_expr (exp);
2207 exp = TARGET_EXPR_SLOT (init_expr);
2209 else
2211 exp = build_unary_op (ADDR_EXPR, exp, 1);
2212 init_expr = get_target_expr (exp);
2213 exp = TARGET_EXPR_SLOT (init_expr);
2214 exp = build_indirect_ref (exp, 0);
2217 *initp = init_expr;
2218 return exp;
2221 /* Add NEW, an expression whose value we don't care about, after the
2222 similar expression ORIG. */
2224 tree
2225 add_stmt_to_compound (tree orig, tree new)
2227 if (!new || !TREE_SIDE_EFFECTS (new))
2228 return orig;
2229 if (!orig || !TREE_SIDE_EFFECTS (orig))
2230 return new;
2231 return build2 (COMPOUND_EXPR, void_type_node, orig, new);
2234 /* Like stabilize_expr, but for a call whose args we want to
2235 pre-evaluate. */
2237 void
2238 stabilize_call (tree call, tree *initp)
2240 tree inits = NULL_TREE;
2241 tree t;
2243 if (call == error_mark_node)
2244 return;
2246 gcc_assert (TREE_CODE (call) == CALL_EXPR
2247 || TREE_CODE (call) == AGGR_INIT_EXPR);
2249 for (t = TREE_OPERAND (call, 1); t; t = TREE_CHAIN (t))
2250 if (TREE_SIDE_EFFECTS (TREE_VALUE (t)))
2252 tree init;
2253 TREE_VALUE (t) = stabilize_expr (TREE_VALUE (t), &init);
2254 inits = add_stmt_to_compound (inits, init);
2257 *initp = inits;
2260 /* Like stabilize_expr, but for an initialization. If we are initializing
2261 an object of class type, we don't want to introduce an extra temporary,
2262 so we look past the TARGET_EXPR and stabilize the arguments of the call
2263 instead. */
2265 bool
2266 stabilize_init (tree init, tree *initp)
2268 tree t = init;
2270 if (t == error_mark_node)
2271 return true;
2273 if (TREE_CODE (t) == INIT_EXPR
2274 && TREE_CODE (TREE_OPERAND (t, 1)) != TARGET_EXPR)
2275 TREE_OPERAND (t, 1) = stabilize_expr (TREE_OPERAND (t, 1), initp);
2276 else
2278 if (TREE_CODE (t) == INIT_EXPR)
2279 t = TREE_OPERAND (t, 1);
2280 if (TREE_CODE (t) == TARGET_EXPR)
2281 t = TARGET_EXPR_INITIAL (t);
2282 if (TREE_CODE (t) == COMPOUND_EXPR)
2283 t = expr_last (t);
2284 if (TREE_CODE (t) == CONSTRUCTOR
2285 && EMPTY_CONSTRUCTOR_P (t))
2287 /* Default-initialization. */
2288 *initp = NULL_TREE;
2289 return true;
2292 /* If the initializer is a COND_EXPR, we can't preevaluate
2293 anything. */
2294 if (TREE_CODE (t) == COND_EXPR)
2295 return false;
2297 /* The TARGET_EXPR might be initializing via bitwise copy from
2298 another variable; leave that alone. */
2299 if (TREE_SIDE_EFFECTS (t))
2300 stabilize_call (t, initp);
2303 return true;
2306 /* Like "fold", but should be used whenever we might be processing the
2307 body of a template. */
2309 tree
2310 fold_if_not_in_template (tree expr)
2312 /* In the body of a template, there is never any need to call
2313 "fold". We will call fold later when actually instantiating the
2314 template. Integral constant expressions in templates will be
2315 evaluated via fold_non_dependent_expr, as necessary. */
2316 if (processing_template_decl)
2317 return expr;
2319 /* Fold C++ front-end specific tree codes. */
2320 if (TREE_CODE (expr) == UNARY_PLUS_EXPR)
2321 return fold_convert (TREE_TYPE (expr), TREE_OPERAND (expr, 0));
2323 return fold (expr);
2327 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
2328 /* Complain that some language-specific thing hanging off a tree
2329 node has been accessed improperly. */
2331 void
2332 lang_check_failed (const char* file, int line, const char* function)
2334 internal_error ("lang_* check: failed in %s, at %s:%d",
2335 function, trim_filename (file), line);
2337 #endif /* ENABLE_TREE_CHECKING */
2339 #include "gt-cp-tree.h"