2010-07-27 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc/alias-decl.git] / gcc / cp / tree.c
blob450b9e89433ecd4b879360ac727899fee430ac1d
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, 2007, 2008, 2009
4 Free Software Foundation, Inc.
5 Hacked by Michael Tiemann (tiemann@cygnus.com)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
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 "toplev.h"
31 #include "tree-inline.h"
32 #include "debug.h"
33 #include "convert.h"
34 #include "cgraph.h"
35 #include "splay-tree.h"
36 #include "gimple.h" /* gimple_has_body_p */
38 static tree bot_manip (tree *, int *, void *);
39 static tree bot_replace (tree *, int *, void *);
40 static int list_hash_eq (const void *, const void *);
41 static hashval_t list_hash_pieces (tree, tree, tree);
42 static hashval_t list_hash (const void *);
43 static cp_lvalue_kind lvalue_p_1 (const_tree);
44 static tree build_target_expr (tree, tree);
45 static tree count_trees_r (tree *, int *, void *);
46 static tree verify_stmt_tree_r (tree *, int *, void *);
47 static tree build_local_temp (tree);
49 static tree handle_java_interface_attribute (tree *, tree, tree, int, bool *);
50 static tree handle_com_interface_attribute (tree *, tree, tree, int, bool *);
51 static tree handle_init_priority_attribute (tree *, tree, tree, int, bool *);
53 /* If REF is an lvalue, returns the kind of lvalue that REF is.
54 Otherwise, returns clk_none. */
56 static cp_lvalue_kind
57 lvalue_p_1 (const_tree ref)
59 cp_lvalue_kind op1_lvalue_kind = clk_none;
60 cp_lvalue_kind op2_lvalue_kind = clk_none;
62 /* Expressions of reference type are sometimes wrapped in
63 INDIRECT_REFs. INDIRECT_REFs are just internal compiler
64 representation, not part of the language, so we have to look
65 through them. */
66 if (TREE_CODE (ref) == INDIRECT_REF
67 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref, 0)))
68 == REFERENCE_TYPE)
69 return lvalue_p_1 (TREE_OPERAND (ref, 0));
71 if (TREE_CODE (TREE_TYPE (ref)) == REFERENCE_TYPE)
73 /* unnamed rvalue references are rvalues */
74 if (TYPE_REF_IS_RVALUE (TREE_TYPE (ref))
75 && TREE_CODE (ref) != PARM_DECL
76 && TREE_CODE (ref) != VAR_DECL
77 && TREE_CODE (ref) != COMPONENT_REF)
78 return clk_rvalueref;
80 /* lvalue references and named rvalue references are lvalues. */
81 return clk_ordinary;
84 if (ref == current_class_ptr)
85 return clk_none;
87 switch (TREE_CODE (ref))
89 case SAVE_EXPR:
90 return clk_none;
91 /* preincrements and predecrements are valid lvals, provided
92 what they refer to are valid lvals. */
93 case PREINCREMENT_EXPR:
94 case PREDECREMENT_EXPR:
95 case TRY_CATCH_EXPR:
96 case WITH_CLEANUP_EXPR:
97 case REALPART_EXPR:
98 case IMAGPART_EXPR:
99 return lvalue_p_1 (TREE_OPERAND (ref, 0));
101 case COMPONENT_REF:
102 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 0));
103 /* Look at the member designator. */
104 if (!op1_lvalue_kind)
106 else if (is_overloaded_fn (TREE_OPERAND (ref, 1)))
107 /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
108 situations. If we're seeing a COMPONENT_REF, it's a non-static
109 member, so it isn't an lvalue. */
110 op1_lvalue_kind = clk_none;
111 else if (TREE_CODE (TREE_OPERAND (ref, 1)) != FIELD_DECL)
112 /* This can be IDENTIFIER_NODE in a template. */;
113 else if (DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
115 /* Clear the ordinary bit. If this object was a class
116 rvalue we want to preserve that information. */
117 op1_lvalue_kind &= ~clk_ordinary;
118 /* The lvalue is for a bitfield. */
119 op1_lvalue_kind |= clk_bitfield;
121 else if (DECL_PACKED (TREE_OPERAND (ref, 1)))
122 op1_lvalue_kind |= clk_packed;
124 return op1_lvalue_kind;
126 case STRING_CST:
127 case COMPOUND_LITERAL_EXPR:
128 return clk_ordinary;
130 case CONST_DECL:
131 /* CONST_DECL without TREE_STATIC are enumeration values and
132 thus not lvalues. With TREE_STATIC they are used by ObjC++
133 in objc_build_string_object and need to be considered as
134 lvalues. */
135 if (! TREE_STATIC (ref))
136 return clk_none;
137 case VAR_DECL:
138 if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
139 && DECL_LANG_SPECIFIC (ref)
140 && DECL_IN_AGGR_P (ref))
141 return clk_none;
142 case INDIRECT_REF:
143 case ARRAY_REF:
144 case PARM_DECL:
145 case RESULT_DECL:
146 if (TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE)
147 return clk_ordinary;
148 break;
150 /* A currently unresolved scope ref. */
151 case SCOPE_REF:
152 gcc_unreachable ();
153 case MAX_EXPR:
154 case MIN_EXPR:
155 /* Disallow <? and >? as lvalues if either argument side-effects. */
156 if (TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 0))
157 || TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 1)))
158 return clk_none;
159 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 0));
160 op2_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 1));
161 break;
163 case COND_EXPR:
164 op1_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 1)
165 ? TREE_OPERAND (ref, 1)
166 : TREE_OPERAND (ref, 0));
167 op2_lvalue_kind = lvalue_p_1 (TREE_OPERAND (ref, 2));
168 break;
170 case MODIFY_EXPR:
171 return clk_ordinary;
173 case COMPOUND_EXPR:
174 return lvalue_p_1 (TREE_OPERAND (ref, 1));
176 case TARGET_EXPR:
177 return clk_class;
179 case VA_ARG_EXPR:
180 return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none);
182 case CALL_EXPR:
183 /* Any class-valued call would be wrapped in a TARGET_EXPR. */
184 return clk_none;
186 case FUNCTION_DECL:
187 /* All functions (except non-static-member functions) are
188 lvalues. */
189 return (DECL_NONSTATIC_MEMBER_FUNCTION_P (ref)
190 ? clk_none : clk_ordinary);
192 case BASELINK:
193 /* We now represent a reference to a single static member function
194 with a BASELINK. */
195 /* This CONST_CAST is okay because BASELINK_FUNCTIONS returns
196 its argument unmodified and we assign it to a const_tree. */
197 return lvalue_p_1 (BASELINK_FUNCTIONS (CONST_CAST_TREE (ref)));
199 case NON_DEPENDENT_EXPR:
200 /* We must consider NON_DEPENDENT_EXPRs to be lvalues so that
201 things like "&E" where "E" is an expression with a
202 non-dependent type work. It is safe to be lenient because an
203 error will be issued when the template is instantiated if "E"
204 is not an lvalue. */
205 return clk_ordinary;
207 default:
208 break;
211 /* If one operand is not an lvalue at all, then this expression is
212 not an lvalue. */
213 if (!op1_lvalue_kind || !op2_lvalue_kind)
214 return clk_none;
216 /* Otherwise, it's an lvalue, and it has all the odd properties
217 contributed by either operand. */
218 op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
219 /* It's not an ordinary lvalue if it involves any other kind. */
220 if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
221 op1_lvalue_kind &= ~clk_ordinary;
222 /* It can't be both a pseudo-lvalue and a non-addressable lvalue.
223 A COND_EXPR of those should be wrapped in a TARGET_EXPR. */
224 if ((op1_lvalue_kind & (clk_rvalueref|clk_class))
225 && (op1_lvalue_kind & (clk_bitfield|clk_packed)))
226 op1_lvalue_kind = clk_none;
227 return op1_lvalue_kind;
230 /* Returns the kind of lvalue that REF is, in the sense of
231 [basic.lval]. This function should really be named lvalue_p; it
232 computes the C++ definition of lvalue. */
234 cp_lvalue_kind
235 real_lvalue_p (tree ref)
237 cp_lvalue_kind kind = lvalue_p_1 (ref);
238 if (kind & (clk_rvalueref|clk_class))
239 return clk_none;
240 else
241 return kind;
244 /* This differs from real_lvalue_p in that class rvalues are considered
245 lvalues. */
247 bool
248 lvalue_p (const_tree ref)
250 return (lvalue_p_1 (ref) != clk_none);
253 /* This differs from real_lvalue_p in that rvalues formed by dereferencing
254 rvalue references are considered rvalues. */
256 bool
257 lvalue_or_rvalue_with_address_p (const_tree ref)
259 cp_lvalue_kind kind = lvalue_p_1 (ref);
260 if (kind & clk_class)
261 return false;
262 else
263 return (kind != clk_none);
266 /* Test whether DECL is a builtin that may appear in a
267 constant-expression. */
269 bool
270 builtin_valid_in_constant_expr_p (const_tree decl)
272 /* At present BUILT_IN_CONSTANT_P is the only builtin we're allowing
273 in constant-expressions. We may want to add other builtins later. */
274 return DECL_IS_BUILTIN_CONSTANT_P (decl);
277 /* Build a TARGET_EXPR, initializing the DECL with the VALUE. */
279 static tree
280 build_target_expr (tree decl, tree value)
282 tree t;
284 #ifdef ENABLE_CHECKING
285 gcc_assert (VOID_TYPE_P (TREE_TYPE (value))
286 || TREE_TYPE (decl) == TREE_TYPE (value)
287 || useless_type_conversion_p (TREE_TYPE (decl),
288 TREE_TYPE (value)));
289 #endif
291 t = build4 (TARGET_EXPR, TREE_TYPE (decl), decl, value,
292 cxx_maybe_build_cleanup (decl), NULL_TREE);
293 /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
294 ignore the TARGET_EXPR. If there really turn out to be no
295 side-effects, then the optimizer should be able to get rid of
296 whatever code is generated anyhow. */
297 TREE_SIDE_EFFECTS (t) = 1;
299 return t;
302 /* Return an undeclared local temporary of type TYPE for use in building a
303 TARGET_EXPR. */
305 static tree
306 build_local_temp (tree type)
308 tree slot = build_decl (input_location,
309 VAR_DECL, NULL_TREE, type);
310 DECL_ARTIFICIAL (slot) = 1;
311 DECL_IGNORED_P (slot) = 1;
312 DECL_CONTEXT (slot) = current_function_decl;
313 layout_decl (slot, 0);
314 return slot;
317 /* Set various status flags when building an AGGR_INIT_EXPR object T. */
319 static void
320 process_aggr_init_operands (tree t)
322 bool side_effects;
324 side_effects = TREE_SIDE_EFFECTS (t);
325 if (!side_effects)
327 int i, n;
328 n = TREE_OPERAND_LENGTH (t);
329 for (i = 1; i < n; i++)
331 tree op = TREE_OPERAND (t, i);
332 if (op && TREE_SIDE_EFFECTS (op))
334 side_effects = 1;
335 break;
339 TREE_SIDE_EFFECTS (t) = side_effects;
342 /* Build an AGGR_INIT_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE,
343 FN, and SLOT. NARGS is the number of call arguments which are specified
344 as a tree array ARGS. */
346 static tree
347 build_aggr_init_array (tree return_type, tree fn, tree slot, int nargs,
348 tree *args)
350 tree t;
351 int i;
353 t = build_vl_exp (AGGR_INIT_EXPR, nargs + 3);
354 TREE_TYPE (t) = return_type;
355 AGGR_INIT_EXPR_FN (t) = fn;
356 AGGR_INIT_EXPR_SLOT (t) = slot;
357 for (i = 0; i < nargs; i++)
358 AGGR_INIT_EXPR_ARG (t, i) = args[i];
359 process_aggr_init_operands (t);
360 return t;
363 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
364 target. TYPE is the type to be initialized.
366 Build an AGGR_INIT_EXPR to represent the initialization. This function
367 differs from build_cplus_new in that an AGGR_INIT_EXPR can only be used
368 to initialize another object, whereas a TARGET_EXPR can either
369 initialize another object or create its own temporary object, and as a
370 result building up a TARGET_EXPR requires that the type's destructor be
371 callable. */
373 tree
374 build_aggr_init_expr (tree type, tree init)
376 tree fn;
377 tree slot;
378 tree rval;
379 int is_ctor;
381 /* Make sure that we're not trying to create an instance of an
382 abstract class. */
383 abstract_virtuals_error (NULL_TREE, type);
385 if (TREE_CODE (init) == CALL_EXPR)
386 fn = CALL_EXPR_FN (init);
387 else if (TREE_CODE (init) == AGGR_INIT_EXPR)
388 fn = AGGR_INIT_EXPR_FN (init);
389 else
390 return convert (type, init);
392 is_ctor = (TREE_CODE (fn) == ADDR_EXPR
393 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
394 && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
396 /* We split the CALL_EXPR into its function and its arguments here.
397 Then, in expand_expr, we put them back together. The reason for
398 this is that this expression might be a default argument
399 expression. In that case, we need a new temporary every time the
400 expression is used. That's what break_out_target_exprs does; it
401 replaces every AGGR_INIT_EXPR with a copy that uses a fresh
402 temporary slot. Then, expand_expr builds up a call-expression
403 using the new slot. */
405 /* If we don't need to use a constructor to create an object of this
406 type, don't mess with AGGR_INIT_EXPR. */
407 if (is_ctor || TREE_ADDRESSABLE (type))
409 slot = build_local_temp (type);
411 if (TREE_CODE(init) == CALL_EXPR)
412 rval = build_aggr_init_array (void_type_node, fn, slot,
413 call_expr_nargs (init),
414 CALL_EXPR_ARGP (init));
415 else
416 rval = build_aggr_init_array (void_type_node, fn, slot,
417 aggr_init_expr_nargs (init),
418 AGGR_INIT_EXPR_ARGP (init));
419 TREE_SIDE_EFFECTS (rval) = 1;
420 AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
421 TREE_NOTHROW (rval) = TREE_NOTHROW (init);
423 else
424 rval = init;
426 return rval;
429 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
430 target. TYPE is the type that this initialization should appear to
431 have.
433 Build an encapsulation of the initialization to perform
434 and return it so that it can be processed by language-independent
435 and language-specific expression expanders. */
437 tree
438 build_cplus_new (tree type, tree init)
440 tree rval = build_aggr_init_expr (type, init);
441 tree slot;
443 if (TREE_CODE (rval) == AGGR_INIT_EXPR)
444 slot = AGGR_INIT_EXPR_SLOT (rval);
445 else if (TREE_CODE (rval) == CALL_EXPR)
446 slot = build_local_temp (type);
447 else
448 return rval;
450 rval = build_target_expr (slot, rval);
451 TARGET_EXPR_IMPLICIT_P (rval) = 1;
453 return rval;
456 /* Return a TARGET_EXPR which expresses the direct-initialization of one
457 array from another. */
459 tree
460 build_array_copy (tree init)
462 tree type = TREE_TYPE (init);
463 tree slot = build_local_temp (type);
464 init = build2 (VEC_INIT_EXPR, type, slot, init);
465 SET_EXPR_LOCATION (init, input_location);
466 init = build_target_expr (slot, init);
467 TARGET_EXPR_IMPLICIT_P (init) = 1;
469 return init;
472 /* Build a TARGET_EXPR using INIT to initialize a new temporary of the
473 indicated TYPE. */
475 tree
476 build_target_expr_with_type (tree init, tree type)
478 gcc_assert (!VOID_TYPE_P (type));
480 if (TREE_CODE (init) == TARGET_EXPR)
481 return init;
482 else if (CLASS_TYPE_P (type) && type_has_nontrivial_copy_init (type)
483 && !VOID_TYPE_P (TREE_TYPE (init))
484 && TREE_CODE (init) != COND_EXPR
485 && TREE_CODE (init) != CONSTRUCTOR
486 && TREE_CODE (init) != VA_ARG_EXPR)
487 /* We need to build up a copy constructor call. A void initializer
488 means we're being called from bot_manip. COND_EXPR is a special
489 case because we already have copies on the arms and we don't want
490 another one here. A CONSTRUCTOR is aggregate initialization, which
491 is handled separately. A VA_ARG_EXPR is magic creation of an
492 aggregate; there's no additional work to be done. */
493 return force_rvalue (init);
495 return force_target_expr (type, init);
498 /* Like the above function, but without the checking. This function should
499 only be used by code which is deliberately trying to subvert the type
500 system, such as call_builtin_trap. Or build_over_call, to avoid
501 infinite recursion. */
503 tree
504 force_target_expr (tree type, tree init)
506 tree slot;
508 gcc_assert (!VOID_TYPE_P (type));
510 slot = build_local_temp (type);
511 return build_target_expr (slot, init);
514 /* Like build_target_expr_with_type, but use the type of INIT. */
516 tree
517 get_target_expr (tree init)
519 if (TREE_CODE (init) == AGGR_INIT_EXPR)
520 return build_target_expr (AGGR_INIT_EXPR_SLOT (init), init);
521 else
522 return build_target_expr_with_type (init, TREE_TYPE (init));
525 /* If EXPR is a bitfield reference, convert it to the declared type of
526 the bitfield, and return the resulting expression. Otherwise,
527 return EXPR itself. */
529 tree
530 convert_bitfield_to_declared_type (tree expr)
532 tree bitfield_type;
534 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
535 if (bitfield_type)
536 expr = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type),
537 expr);
538 return expr;
541 /* EXPR is being used in an rvalue context. Return a version of EXPR
542 that is marked as an rvalue. */
544 tree
545 rvalue (tree expr)
547 tree type;
549 if (error_operand_p (expr))
550 return expr;
552 expr = mark_rvalue_use (expr);
554 /* [basic.lval]
556 Non-class rvalues always have cv-unqualified types. */
557 type = TREE_TYPE (expr);
558 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
559 type = cv_unqualified (type);
561 /* We need to do this for rvalue refs as well to get the right answer
562 from decltype; see c++/36628. */
563 if (!processing_template_decl && lvalue_or_rvalue_with_address_p (expr))
564 expr = build1 (NON_LVALUE_EXPR, type, expr);
565 else if (type != TREE_TYPE (expr))
566 expr = build_nop (type, expr);
568 return expr;
572 /* Hash an ARRAY_TYPE. K is really of type `tree'. */
574 static hashval_t
575 cplus_array_hash (const void* k)
577 hashval_t hash;
578 const_tree const t = (const_tree) k;
580 hash = TYPE_UID (TREE_TYPE (t));
581 if (TYPE_DOMAIN (t))
582 hash ^= TYPE_UID (TYPE_DOMAIN (t));
583 return hash;
586 typedef struct cplus_array_info {
587 tree type;
588 tree domain;
589 } cplus_array_info;
591 /* Compare two ARRAY_TYPEs. K1 is really of type `tree', K2 is really
592 of type `cplus_array_info*'. */
594 static int
595 cplus_array_compare (const void * k1, const void * k2)
597 const_tree const t1 = (const_tree) k1;
598 const cplus_array_info *const t2 = (const cplus_array_info*) k2;
600 return (TREE_TYPE (t1) == t2->type && TYPE_DOMAIN (t1) == t2->domain);
603 /* Hash table containing dependent array types, which are unsuitable for
604 the language-independent type hash table. */
605 static GTY ((param_is (union tree_node))) htab_t cplus_array_htab;
607 /* Like build_array_type, but handle special C++ semantics. */
609 tree
610 build_cplus_array_type (tree elt_type, tree index_type)
612 tree t;
614 if (elt_type == error_mark_node || index_type == error_mark_node)
615 return error_mark_node;
617 if (processing_template_decl
618 && (dependent_type_p (elt_type)
619 || (index_type && !TREE_CONSTANT (TYPE_MAX_VALUE (index_type)))))
621 void **e;
622 cplus_array_info cai;
623 hashval_t hash;
625 if (cplus_array_htab == NULL)
626 cplus_array_htab = htab_create_ggc (61, &cplus_array_hash,
627 &cplus_array_compare, NULL);
629 hash = TYPE_UID (elt_type);
630 if (index_type)
631 hash ^= TYPE_UID (index_type);
632 cai.type = elt_type;
633 cai.domain = index_type;
635 e = htab_find_slot_with_hash (cplus_array_htab, &cai, hash, INSERT);
636 if (*e)
637 /* We have found the type: we're done. */
638 return (tree) *e;
639 else
641 /* Build a new array type. */
642 t = cxx_make_type (ARRAY_TYPE);
643 TREE_TYPE (t) = elt_type;
644 TYPE_DOMAIN (t) = index_type;
646 /* Store it in the hash table. */
647 *e = t;
649 /* Set the canonical type for this new node. */
650 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
651 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
652 SET_TYPE_STRUCTURAL_EQUALITY (t);
653 else if (TYPE_CANONICAL (elt_type) != elt_type
654 || (index_type
655 && TYPE_CANONICAL (index_type) != index_type))
656 TYPE_CANONICAL (t)
657 = build_cplus_array_type
658 (TYPE_CANONICAL (elt_type),
659 index_type ? TYPE_CANONICAL (index_type) : index_type);
660 else
661 TYPE_CANONICAL (t) = t;
664 else
665 t = build_array_type (elt_type, index_type);
667 /* We want TYPE_MAIN_VARIANT of an array to strip cv-quals from the
668 element type as well, so fix it up if needed. */
669 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
671 tree m = build_cplus_array_type (TYPE_MAIN_VARIANT (elt_type),
672 index_type);
673 if (TYPE_MAIN_VARIANT (t) != m)
675 TYPE_MAIN_VARIANT (t) = m;
676 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
677 TYPE_NEXT_VARIANT (m) = t;
681 /* Push these needs up so that initialization takes place
682 more easily. */
683 TYPE_NEEDS_CONSTRUCTING (t)
684 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (elt_type));
685 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
686 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (elt_type));
687 return t;
690 /* Return an ARRAY_TYPE with element type ELT and length N. */
692 tree
693 build_array_of_n_type (tree elt, int n)
695 return build_cplus_array_type (elt, build_index_type (size_int (n - 1)));
698 /* Return a reference type node referring to TO_TYPE. If RVAL is
699 true, return an rvalue reference type, otherwise return an lvalue
700 reference type. If a type node exists, reuse it, otherwise create
701 a new one. */
702 tree
703 cp_build_reference_type (tree to_type, bool rval)
705 tree lvalue_ref, t;
706 lvalue_ref = build_reference_type (to_type);
707 if (!rval)
708 return lvalue_ref;
710 /* This code to create rvalue reference types is based on and tied
711 to the code creating lvalue reference types in the middle-end
712 functions build_reference_type_for_mode and build_reference_type.
714 It works by putting the rvalue reference type nodes after the
715 lvalue reference nodes in the TYPE_NEXT_REF_TO linked list, so
716 they will effectively be ignored by the middle end. */
718 for (t = lvalue_ref; (t = TYPE_NEXT_REF_TO (t)); )
719 if (TYPE_REF_IS_RVALUE (t))
720 return t;
722 t = build_distinct_type_copy (lvalue_ref);
724 TYPE_REF_IS_RVALUE (t) = true;
725 TYPE_NEXT_REF_TO (t) = TYPE_NEXT_REF_TO (lvalue_ref);
726 TYPE_NEXT_REF_TO (lvalue_ref) = t;
728 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
729 SET_TYPE_STRUCTURAL_EQUALITY (t);
730 else if (TYPE_CANONICAL (to_type) != to_type)
731 TYPE_CANONICAL (t)
732 = cp_build_reference_type (TYPE_CANONICAL (to_type), rval);
733 else
734 TYPE_CANONICAL (t) = t;
736 layout_type (t);
738 return t;
742 /* Returns EXPR cast to rvalue reference type, like std::move. */
744 tree
745 move (tree expr)
747 tree type = TREE_TYPE (expr);
748 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
749 type = cp_build_reference_type (type, /*rval*/true);
750 return build_static_cast (type, expr, tf_warning_or_error);
753 /* Used by the C++ front end to build qualified array types. However,
754 the C version of this function does not properly maintain canonical
755 types (which are not used in C). */
756 tree
757 c_build_qualified_type (tree type, int type_quals)
759 return cp_build_qualified_type (type, type_quals);
763 /* Make a variant of TYPE, qualified with the TYPE_QUALS. Handles
764 arrays correctly. In particular, if TYPE is an array of T's, and
765 TYPE_QUALS is non-empty, returns an array of qualified T's.
767 FLAGS determines how to deal with ill-formed qualifications. If
768 tf_ignore_bad_quals is set, then bad qualifications are dropped
769 (this is permitted if TYPE was introduced via a typedef or template
770 type parameter). If bad qualifications are dropped and tf_warning
771 is set, then a warning is issued for non-const qualifications. If
772 tf_ignore_bad_quals is not set and tf_error is not set, we
773 return error_mark_node. Otherwise, we issue an error, and ignore
774 the qualifications.
776 Qualification of a reference type is valid when the reference came
777 via a typedef or template type argument. [dcl.ref] No such
778 dispensation is provided for qualifying a function type. [dcl.fct]
779 DR 295 queries this and the proposed resolution brings it into line
780 with qualifying a reference. We implement the DR. We also behave
781 in a similar manner for restricting non-pointer types. */
783 tree
784 cp_build_qualified_type_real (tree type,
785 int type_quals,
786 tsubst_flags_t complain)
788 tree result;
789 int bad_quals = TYPE_UNQUALIFIED;
791 if (type == error_mark_node)
792 return type;
794 if (type_quals == cp_type_quals (type))
795 return type;
797 if (TREE_CODE (type) == ARRAY_TYPE)
799 /* In C++, the qualification really applies to the array element
800 type. Obtain the appropriately qualified element type. */
801 tree t;
802 tree element_type
803 = cp_build_qualified_type_real (TREE_TYPE (type),
804 type_quals,
805 complain);
807 if (element_type == error_mark_node)
808 return error_mark_node;
810 /* See if we already have an identically qualified type. Tests
811 should be equivalent to those in check_qualified_type. */
812 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
813 if (cp_type_quals (t) == type_quals
814 && TYPE_NAME (t) == TYPE_NAME (type)
815 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
816 && attribute_list_equal (TYPE_ATTRIBUTES (t),
817 TYPE_ATTRIBUTES (type)))
818 break;
820 if (!t)
822 t = build_cplus_array_type (element_type, TYPE_DOMAIN (type));
824 /* Keep the typedef name. */
825 if (TYPE_NAME (t) != TYPE_NAME (type))
827 t = build_variant_type_copy (t);
828 TYPE_NAME (t) = TYPE_NAME (type);
832 /* Even if we already had this variant, we update
833 TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
834 they changed since the variant was originally created.
836 This seems hokey; if there is some way to use a previous
837 variant *without* coming through here,
838 TYPE_NEEDS_CONSTRUCTING will never be updated. */
839 TYPE_NEEDS_CONSTRUCTING (t)
840 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
841 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
842 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
843 return t;
845 else if (TYPE_PTRMEMFUNC_P (type))
847 /* For a pointer-to-member type, we can't just return a
848 cv-qualified version of the RECORD_TYPE. If we do, we
849 haven't changed the field that contains the actual pointer to
850 a method, and so TYPE_PTRMEMFUNC_FN_TYPE will be wrong. */
851 tree t;
853 t = TYPE_PTRMEMFUNC_FN_TYPE (type);
854 t = cp_build_qualified_type_real (t, type_quals, complain);
855 return build_ptrmemfunc_type (t);
857 else if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
859 tree t = PACK_EXPANSION_PATTERN (type);
861 t = cp_build_qualified_type_real (t, type_quals, complain);
862 return make_pack_expansion (t);
865 /* A reference or method type shall not be cv-qualified.
866 [dcl.ref], [dcl.fct]. This used to be an error, but as of DR 295
867 (in CD1) we always ignore extra cv-quals on functions. */
868 if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
869 && (TREE_CODE (type) == REFERENCE_TYPE
870 || TREE_CODE (type) == FUNCTION_TYPE
871 || TREE_CODE (type) == METHOD_TYPE))
873 if (TREE_CODE (type) == REFERENCE_TYPE)
874 bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
875 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
878 /* But preserve any function-cv-quals on a FUNCTION_TYPE. */
879 if (TREE_CODE (type) == FUNCTION_TYPE)
880 type_quals |= type_memfn_quals (type);
882 /* A restrict-qualified type must be a pointer (or reference)
883 to object or incomplete type. */
884 if ((type_quals & TYPE_QUAL_RESTRICT)
885 && TREE_CODE (type) != TEMPLATE_TYPE_PARM
886 && TREE_CODE (type) != TYPENAME_TYPE
887 && !POINTER_TYPE_P (type))
889 bad_quals |= TYPE_QUAL_RESTRICT;
890 type_quals &= ~TYPE_QUAL_RESTRICT;
893 if (bad_quals == TYPE_UNQUALIFIED
894 || (complain & tf_ignore_bad_quals))
895 /*OK*/;
896 else if (!(complain & tf_error))
897 return error_mark_node;
898 else
900 tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
901 error ("%qV qualifiers cannot be applied to %qT",
902 bad_type, type);
905 /* Retrieve (or create) the appropriately qualified variant. */
906 result = build_qualified_type (type, type_quals);
908 /* If this was a pointer-to-method type, and we just made a copy,
909 then we need to unshare the record that holds the cached
910 pointer-to-member-function type, because these will be distinct
911 between the unqualified and qualified types. */
912 if (result != type
913 && TREE_CODE (type) == POINTER_TYPE
914 && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE
915 && TYPE_LANG_SPECIFIC (result) == TYPE_LANG_SPECIFIC (type))
916 TYPE_LANG_SPECIFIC (result) = NULL;
918 /* We may also have ended up building a new copy of the canonical
919 type of a pointer-to-method type, which could have the same
920 sharing problem described above. */
921 if (TYPE_CANONICAL (result) != TYPE_CANONICAL (type)
922 && TREE_CODE (type) == POINTER_TYPE
923 && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE
924 && (TYPE_LANG_SPECIFIC (TYPE_CANONICAL (result))
925 == TYPE_LANG_SPECIFIC (TYPE_CANONICAL (type))))
926 TYPE_LANG_SPECIFIC (TYPE_CANONICAL (result)) = NULL;
928 return result;
931 /* Return TYPE with const and volatile removed. */
933 tree
934 cv_unqualified (tree type)
936 int quals;
938 if (type == error_mark_node)
939 return type;
941 quals = cp_type_quals (type);
942 quals &= ~(TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE);
943 return cp_build_qualified_type (type, quals);
946 /* Builds a qualified variant of T that is not a typedef variant.
947 E.g. consider the following declarations:
948 typedef const int ConstInt;
949 typedef ConstInt* PtrConstInt;
950 If T is PtrConstInt, this function returns a type representing
951 const int*.
952 In other words, if T is a typedef, the function returns the underlying type.
953 The cv-qualification and attributes of the type returned match the
954 input type.
955 They will always be compatible types.
956 The returned type is built so that all of its subtypes
957 recursively have their typedefs stripped as well.
959 This is different from just returning TYPE_CANONICAL (T)
960 Because of several reasons:
961 * If T is a type that needs structural equality
962 its TYPE_CANONICAL (T) will be NULL.
963 * TYPE_CANONICAL (T) desn't carry type attributes
964 and looses template parameter names. */
966 tree
967 strip_typedefs (tree t)
969 tree result = NULL, type = NULL, t0 = NULL;
971 if (!t || t == error_mark_node || t == TYPE_CANONICAL (t))
972 return t;
974 gcc_assert (TYPE_P (t));
976 switch (TREE_CODE (t))
978 case POINTER_TYPE:
979 type = strip_typedefs (TREE_TYPE (t));
980 result = build_pointer_type (type);
981 break;
982 case REFERENCE_TYPE:
983 type = strip_typedefs (TREE_TYPE (t));
984 result = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
985 break;
986 case OFFSET_TYPE:
987 t0 = strip_typedefs (TYPE_OFFSET_BASETYPE (t));
988 type = strip_typedefs (TREE_TYPE (t));
989 result = build_offset_type (t0, type);
990 break;
991 case RECORD_TYPE:
992 if (TYPE_PTRMEMFUNC_P (t))
994 t0 = strip_typedefs (TYPE_PTRMEMFUNC_FN_TYPE (t));
995 result = build_ptrmemfunc_type (t0);
997 break;
998 case ARRAY_TYPE:
999 type = strip_typedefs (TREE_TYPE (t));
1000 t0 = strip_typedefs (TYPE_DOMAIN (t));;
1001 result = build_cplus_array_type (type, t0);
1002 break;
1003 case FUNCTION_TYPE:
1004 case METHOD_TYPE:
1006 tree arg_types = NULL, arg_node, arg_type;
1007 for (arg_node = TYPE_ARG_TYPES (t);
1008 arg_node;
1009 arg_node = TREE_CHAIN (arg_node))
1011 if (arg_node == void_list_node)
1012 break;
1013 arg_type = strip_typedefs (TREE_VALUE (arg_node));
1014 gcc_assert (arg_type);
1016 arg_types =
1017 tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types);
1020 if (arg_types)
1021 arg_types = nreverse (arg_types);
1023 /* A list of parameters not ending with an ellipsis
1024 must end with void_list_node. */
1025 if (arg_node)
1026 arg_types = chainon (arg_types, void_list_node);
1028 type = strip_typedefs (TREE_TYPE (t));
1029 if (TREE_CODE (t) == METHOD_TYPE)
1031 tree class_type = TREE_TYPE (TREE_VALUE (arg_types));
1032 gcc_assert (class_type);
1033 result =
1034 build_method_type_directly (class_type, type,
1035 TREE_CHAIN (arg_types));
1037 else
1039 result = build_function_type (type,
1040 arg_types);
1041 result = apply_memfn_quals (result, type_memfn_quals (t));
1044 if (TYPE_RAISES_EXCEPTIONS (t))
1045 result = build_exception_variant (result,
1046 TYPE_RAISES_EXCEPTIONS (t));
1048 break;
1049 default:
1050 break;
1053 if (!result)
1054 result = TYPE_MAIN_VARIANT (t);
1055 if (TYPE_ATTRIBUTES (t))
1056 result = cp_build_type_attribute_variant (result, TYPE_ATTRIBUTES (t));
1057 return cp_build_qualified_type (result, cp_type_quals (t));
1060 /* Setup a TYPE_DECL node as a typedef representation.
1061 See comments of set_underlying_type in c-common.c. */
1063 void
1064 cp_set_underlying_type (tree t)
1066 set_underlying_type (t);
1067 /* If T is a template type parm, make it require structural equality.
1068 This is useful when comparing two template type parms,
1069 because it forces the comparison of the template parameters of their
1070 decls. */
1071 if (TREE_CODE (TREE_TYPE (t)) == TEMPLATE_TYPE_PARM)
1072 SET_TYPE_STRUCTURAL_EQUALITY (TREE_TYPE (t));
1076 /* Makes a copy of BINFO and TYPE, which is to be inherited into a
1077 graph dominated by T. If BINFO is NULL, TYPE is a dependent base,
1078 and we do a shallow copy. If BINFO is non-NULL, we do a deep copy.
1079 VIRT indicates whether TYPE is inherited virtually or not.
1080 IGO_PREV points at the previous binfo of the inheritance graph
1081 order chain. The newly copied binfo's TREE_CHAIN forms this
1082 ordering.
1084 The CLASSTYPE_VBASECLASSES vector of T is constructed in the
1085 correct order. That is in the order the bases themselves should be
1086 constructed in.
1088 The BINFO_INHERITANCE of a virtual base class points to the binfo
1089 of the most derived type. ??? We could probably change this so that
1090 BINFO_INHERITANCE becomes synonymous with BINFO_PRIMARY, and hence
1091 remove a field. They currently can only differ for primary virtual
1092 virtual bases. */
1094 tree
1095 copy_binfo (tree binfo, tree type, tree t, tree *igo_prev, int virt)
1097 tree new_binfo;
1099 if (virt)
1101 /* See if we've already made this virtual base. */
1102 new_binfo = binfo_for_vbase (type, t);
1103 if (new_binfo)
1104 return new_binfo;
1107 new_binfo = make_tree_binfo (binfo ? BINFO_N_BASE_BINFOS (binfo) : 0);
1108 BINFO_TYPE (new_binfo) = type;
1110 /* Chain it into the inheritance graph. */
1111 TREE_CHAIN (*igo_prev) = new_binfo;
1112 *igo_prev = new_binfo;
1114 if (binfo)
1116 int ix;
1117 tree base_binfo;
1119 gcc_assert (!BINFO_DEPENDENT_BASE_P (binfo));
1120 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), type));
1122 BINFO_OFFSET (new_binfo) = BINFO_OFFSET (binfo);
1123 BINFO_VIRTUALS (new_binfo) = BINFO_VIRTUALS (binfo);
1125 /* We do not need to copy the accesses, as they are read only. */
1126 BINFO_BASE_ACCESSES (new_binfo) = BINFO_BASE_ACCESSES (binfo);
1128 /* Recursively copy base binfos of BINFO. */
1129 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1131 tree new_base_binfo;
1133 gcc_assert (!BINFO_DEPENDENT_BASE_P (base_binfo));
1134 new_base_binfo = copy_binfo (base_binfo, BINFO_TYPE (base_binfo),
1135 t, igo_prev,
1136 BINFO_VIRTUAL_P (base_binfo));
1138 if (!BINFO_INHERITANCE_CHAIN (new_base_binfo))
1139 BINFO_INHERITANCE_CHAIN (new_base_binfo) = new_binfo;
1140 BINFO_BASE_APPEND (new_binfo, new_base_binfo);
1143 else
1144 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
1146 if (virt)
1148 /* Push it onto the list after any virtual bases it contains
1149 will have been pushed. */
1150 VEC_quick_push (tree, CLASSTYPE_VBASECLASSES (t), new_binfo);
1151 BINFO_VIRTUAL_P (new_binfo) = 1;
1152 BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
1155 return new_binfo;
1158 /* Hashing of lists so that we don't make duplicates.
1159 The entry point is `list_hash_canon'. */
1161 /* Now here is the hash table. When recording a list, it is added
1162 to the slot whose index is the hash code mod the table size.
1163 Note that the hash table is used for several kinds of lists.
1164 While all these live in the same table, they are completely independent,
1165 and the hash code is computed differently for each of these. */
1167 static GTY ((param_is (union tree_node))) htab_t list_hash_table;
1169 struct list_proxy
1171 tree purpose;
1172 tree value;
1173 tree chain;
1176 /* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
1177 for a node we are thinking about adding). */
1179 static int
1180 list_hash_eq (const void* entry, const void* data)
1182 const_tree const t = (const_tree) entry;
1183 const struct list_proxy *const proxy = (const struct list_proxy *) data;
1185 return (TREE_VALUE (t) == proxy->value
1186 && TREE_PURPOSE (t) == proxy->purpose
1187 && TREE_CHAIN (t) == proxy->chain);
1190 /* Compute a hash code for a list (chain of TREE_LIST nodes
1191 with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
1192 TREE_COMMON slots), by adding the hash codes of the individual entries. */
1194 static hashval_t
1195 list_hash_pieces (tree purpose, tree value, tree chain)
1197 hashval_t hashcode = 0;
1199 if (chain)
1200 hashcode += TREE_HASH (chain);
1202 if (value)
1203 hashcode += TREE_HASH (value);
1204 else
1205 hashcode += 1007;
1206 if (purpose)
1207 hashcode += TREE_HASH (purpose);
1208 else
1209 hashcode += 1009;
1210 return hashcode;
1213 /* Hash an already existing TREE_LIST. */
1215 static hashval_t
1216 list_hash (const void* p)
1218 const_tree const t = (const_tree) p;
1219 return list_hash_pieces (TREE_PURPOSE (t),
1220 TREE_VALUE (t),
1221 TREE_CHAIN (t));
1224 /* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
1225 object for an identical list if one already exists. Otherwise, build a
1226 new one, and record it as the canonical object. */
1228 tree
1229 hash_tree_cons (tree purpose, tree value, tree chain)
1231 int hashcode = 0;
1232 void **slot;
1233 struct list_proxy proxy;
1235 /* Hash the list node. */
1236 hashcode = list_hash_pieces (purpose, value, chain);
1237 /* Create a proxy for the TREE_LIST we would like to create. We
1238 don't actually create it so as to avoid creating garbage. */
1239 proxy.purpose = purpose;
1240 proxy.value = value;
1241 proxy.chain = chain;
1242 /* See if it is already in the table. */
1243 slot = htab_find_slot_with_hash (list_hash_table, &proxy, hashcode,
1244 INSERT);
1245 /* If not, create a new node. */
1246 if (!*slot)
1247 *slot = tree_cons (purpose, value, chain);
1248 return (tree) *slot;
1251 /* Constructor for hashed lists. */
1253 tree
1254 hash_tree_chain (tree value, tree chain)
1256 return hash_tree_cons (NULL_TREE, value, chain);
1259 void
1260 debug_binfo (tree elem)
1262 HOST_WIDE_INT n;
1263 tree virtuals;
1265 fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
1266 "\nvtable type:\n",
1267 TYPE_NAME_STRING (BINFO_TYPE (elem)),
1268 TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
1269 debug_tree (BINFO_TYPE (elem));
1270 if (BINFO_VTABLE (elem))
1271 fprintf (stderr, "vtable decl \"%s\"\n",
1272 IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
1273 else
1274 fprintf (stderr, "no vtable decl yet\n");
1275 fprintf (stderr, "virtuals:\n");
1276 virtuals = BINFO_VIRTUALS (elem);
1277 n = 0;
1279 while (virtuals)
1281 tree fndecl = TREE_VALUE (virtuals);
1282 fprintf (stderr, "%s [%ld =? %ld]\n",
1283 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
1284 (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
1285 ++n;
1286 virtuals = TREE_CHAIN (virtuals);
1290 /* Build a representation for the qualified name SCOPE::NAME. TYPE is
1291 the type of the result expression, if known, or NULL_TREE if the
1292 resulting expression is type-dependent. If TEMPLATE_P is true,
1293 NAME is known to be a template because the user explicitly used the
1294 "template" keyword after the "::".
1296 All SCOPE_REFs should be built by use of this function. */
1298 tree
1299 build_qualified_name (tree type, tree scope, tree name, bool template_p)
1301 tree t;
1302 if (type == error_mark_node
1303 || scope == error_mark_node
1304 || name == error_mark_node)
1305 return error_mark_node;
1306 t = build2 (SCOPE_REF, type, scope, name);
1307 QUALIFIED_NAME_IS_TEMPLATE (t) = template_p;
1308 if (type)
1309 t = convert_from_reference (t);
1310 return t;
1313 /* Returns nonzero if X is an expression for a (possibly overloaded)
1314 function. If "f" is a function or function template, "f", "c->f",
1315 "c.f", "C::f", and "f<int>" will all be considered possibly
1316 overloaded functions. Returns 2 if the function is actually
1317 overloaded, i.e., if it is impossible to know the type of the
1318 function without performing overload resolution. */
1321 is_overloaded_fn (tree x)
1323 /* A baselink is also considered an overloaded function. */
1324 if (TREE_CODE (x) == OFFSET_REF
1325 || TREE_CODE (x) == COMPONENT_REF)
1326 x = TREE_OPERAND (x, 1);
1327 if (BASELINK_P (x))
1328 x = BASELINK_FUNCTIONS (x);
1329 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
1330 x = TREE_OPERAND (x, 0);
1331 if (DECL_FUNCTION_TEMPLATE_P (OVL_CURRENT (x))
1332 || (TREE_CODE (x) == OVERLOAD && OVL_CHAIN (x)))
1333 return 2;
1334 return (TREE_CODE (x) == FUNCTION_DECL
1335 || TREE_CODE (x) == OVERLOAD);
1338 /* Returns true iff X is an expression for an overloaded function
1339 whose type cannot be known without performing overload
1340 resolution. */
1342 bool
1343 really_overloaded_fn (tree x)
1345 return is_overloaded_fn (x) == 2;
1348 tree
1349 get_fns (tree from)
1351 gcc_assert (is_overloaded_fn (from));
1352 /* A baselink is also considered an overloaded function. */
1353 if (TREE_CODE (from) == OFFSET_REF
1354 || TREE_CODE (from) == COMPONENT_REF)
1355 from = TREE_OPERAND (from, 1);
1356 if (BASELINK_P (from))
1357 from = BASELINK_FUNCTIONS (from);
1358 if (TREE_CODE (from) == TEMPLATE_ID_EXPR)
1359 from = TREE_OPERAND (from, 0);
1360 return from;
1363 tree
1364 get_first_fn (tree from)
1366 return OVL_CURRENT (get_fns (from));
1369 /* Return a new OVL node, concatenating it with the old one. */
1371 tree
1372 ovl_cons (tree decl, tree chain)
1374 tree result = make_node (OVERLOAD);
1375 TREE_TYPE (result) = unknown_type_node;
1376 OVL_FUNCTION (result) = decl;
1377 TREE_CHAIN (result) = chain;
1379 return result;
1382 /* Build a new overloaded function. If this is the first one,
1383 just return it; otherwise, ovl_cons the _DECLs */
1385 tree
1386 build_overload (tree decl, tree chain)
1388 if (! chain && TREE_CODE (decl) != TEMPLATE_DECL)
1389 return decl;
1390 if (chain && TREE_CODE (chain) != OVERLOAD)
1391 chain = ovl_cons (chain, NULL_TREE);
1392 return ovl_cons (decl, chain);
1396 #define PRINT_RING_SIZE 4
1398 static const char *
1399 cxx_printable_name_internal (tree decl, int v, bool translate)
1401 static unsigned int uid_ring[PRINT_RING_SIZE];
1402 static char *print_ring[PRINT_RING_SIZE];
1403 static bool trans_ring[PRINT_RING_SIZE];
1404 static int ring_counter;
1405 int i;
1407 /* Only cache functions. */
1408 if (v < 2
1409 || TREE_CODE (decl) != FUNCTION_DECL
1410 || DECL_LANG_SPECIFIC (decl) == 0)
1411 return lang_decl_name (decl, v, translate);
1413 /* See if this print name is lying around. */
1414 for (i = 0; i < PRINT_RING_SIZE; i++)
1415 if (uid_ring[i] == DECL_UID (decl) && translate == trans_ring[i])
1416 /* yes, so return it. */
1417 return print_ring[i];
1419 if (++ring_counter == PRINT_RING_SIZE)
1420 ring_counter = 0;
1422 if (current_function_decl != NULL_TREE)
1424 /* There may be both translated and untranslated versions of the
1425 name cached. */
1426 for (i = 0; i < 2; i++)
1428 if (uid_ring[ring_counter] == DECL_UID (current_function_decl))
1429 ring_counter += 1;
1430 if (ring_counter == PRINT_RING_SIZE)
1431 ring_counter = 0;
1433 gcc_assert (uid_ring[ring_counter] != DECL_UID (current_function_decl));
1436 if (print_ring[ring_counter])
1437 free (print_ring[ring_counter]);
1439 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v, translate));
1440 uid_ring[ring_counter] = DECL_UID (decl);
1441 trans_ring[ring_counter] = translate;
1442 return print_ring[ring_counter];
1445 const char *
1446 cxx_printable_name (tree decl, int v)
1448 return cxx_printable_name_internal (decl, v, false);
1451 const char *
1452 cxx_printable_name_translate (tree decl, int v)
1454 return cxx_printable_name_internal (decl, v, true);
1457 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
1458 listed in RAISES. */
1460 tree
1461 build_exception_variant (tree type, tree raises)
1463 tree v;
1464 int type_quals;
1466 if (comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (type), ce_exact))
1467 return type;
1469 type_quals = TYPE_QUALS (type);
1470 for (v = TYPE_MAIN_VARIANT (type); v; v = TYPE_NEXT_VARIANT (v))
1471 if (check_qualified_type (v, type, type_quals)
1472 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (v), ce_exact))
1473 return v;
1475 /* Need to build a new variant. */
1476 v = build_variant_type_copy (type);
1477 TYPE_RAISES_EXCEPTIONS (v) = raises;
1478 return v;
1481 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
1482 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
1483 arguments. */
1485 tree
1486 bind_template_template_parm (tree t, tree newargs)
1488 tree decl = TYPE_NAME (t);
1489 tree t2;
1491 t2 = cxx_make_type (BOUND_TEMPLATE_TEMPLATE_PARM);
1492 decl = build_decl (input_location,
1493 TYPE_DECL, DECL_NAME (decl), NULL_TREE);
1495 /* These nodes have to be created to reflect new TYPE_DECL and template
1496 arguments. */
1497 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
1498 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
1499 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
1500 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
1502 TREE_TYPE (decl) = t2;
1503 TYPE_NAME (t2) = decl;
1504 TYPE_STUB_DECL (t2) = decl;
1505 TYPE_SIZE (t2) = 0;
1506 SET_TYPE_STRUCTURAL_EQUALITY (t2);
1508 return t2;
1511 /* Called from count_trees via walk_tree. */
1513 static tree
1514 count_trees_r (tree *tp, int *walk_subtrees, void *data)
1516 ++*((int *) data);
1518 if (TYPE_P (*tp))
1519 *walk_subtrees = 0;
1521 return NULL_TREE;
1524 /* Debugging function for measuring the rough complexity of a tree
1525 representation. */
1528 count_trees (tree t)
1530 int n_trees = 0;
1531 cp_walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
1532 return n_trees;
1535 /* Called from verify_stmt_tree via walk_tree. */
1537 static tree
1538 verify_stmt_tree_r (tree* tp,
1539 int* walk_subtrees ATTRIBUTE_UNUSED ,
1540 void* data)
1542 tree t = *tp;
1543 htab_t *statements = (htab_t *) data;
1544 void **slot;
1546 if (!STATEMENT_CODE_P (TREE_CODE (t)))
1547 return NULL_TREE;
1549 /* If this statement is already present in the hash table, then
1550 there is a circularity in the statement tree. */
1551 gcc_assert (!htab_find (*statements, t));
1553 slot = htab_find_slot (*statements, t, INSERT);
1554 *slot = t;
1556 return NULL_TREE;
1559 /* Debugging function to check that the statement T has not been
1560 corrupted. For now, this function simply checks that T contains no
1561 circularities. */
1563 void
1564 verify_stmt_tree (tree t)
1566 htab_t statements;
1567 statements = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
1568 cp_walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
1569 htab_delete (statements);
1572 /* Check if the type T depends on a type with no linkage and if so, return
1573 it. If RELAXED_P then do not consider a class type declared within
1574 a vague-linkage function to have no linkage. */
1576 tree
1577 no_linkage_check (tree t, bool relaxed_p)
1579 tree r;
1581 /* There's no point in checking linkage on template functions; we
1582 can't know their complete types. */
1583 if (processing_template_decl)
1584 return NULL_TREE;
1586 switch (TREE_CODE (t))
1588 case RECORD_TYPE:
1589 if (TYPE_PTRMEMFUNC_P (t))
1590 goto ptrmem;
1591 /* Lambda types that don't have mangling scope have no linkage. We
1592 check CLASSTYPE_LAMBDA_EXPR here rather than LAMBDA_TYPE_P because
1593 when we get here from pushtag none of the lambda information is
1594 set up yet, so we want to assume that the lambda has linkage and
1595 fix it up later if not. */
1596 if (CLASSTYPE_LAMBDA_EXPR (t)
1597 && LAMBDA_TYPE_EXTRA_SCOPE (t) == NULL_TREE)
1598 return t;
1599 /* Fall through. */
1600 case UNION_TYPE:
1601 if (!CLASS_TYPE_P (t))
1602 return NULL_TREE;
1603 /* Fall through. */
1604 case ENUMERAL_TYPE:
1605 /* Only treat anonymous types as having no linkage if they're at
1606 namespace scope. This is core issue 966. */
1607 if (TYPE_ANONYMOUS_P (t) && TYPE_NAMESPACE_SCOPE_P (t))
1608 return t;
1610 for (r = CP_TYPE_CONTEXT (t); ; )
1612 /* If we're a nested type of a !TREE_PUBLIC class, we might not
1613 have linkage, or we might just be in an anonymous namespace.
1614 If we're in a TREE_PUBLIC class, we have linkage. */
1615 if (TYPE_P (r) && !TREE_PUBLIC (TYPE_NAME (r)))
1616 return no_linkage_check (TYPE_CONTEXT (t), relaxed_p);
1617 else if (TREE_CODE (r) == FUNCTION_DECL)
1619 if (!relaxed_p || !vague_linkage_p (r))
1620 return t;
1621 else
1622 r = CP_DECL_CONTEXT (r);
1624 else
1625 break;
1628 return NULL_TREE;
1630 case ARRAY_TYPE:
1631 case POINTER_TYPE:
1632 case REFERENCE_TYPE:
1633 return no_linkage_check (TREE_TYPE (t), relaxed_p);
1635 case OFFSET_TYPE:
1636 ptrmem:
1637 r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
1638 relaxed_p);
1639 if (r)
1640 return r;
1641 return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
1643 case METHOD_TYPE:
1644 r = no_linkage_check (TYPE_METHOD_BASETYPE (t), relaxed_p);
1645 if (r)
1646 return r;
1647 /* Fall through. */
1648 case FUNCTION_TYPE:
1650 tree parm;
1651 for (parm = TYPE_ARG_TYPES (t);
1652 parm && parm != void_list_node;
1653 parm = TREE_CHAIN (parm))
1655 r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
1656 if (r)
1657 return r;
1659 return no_linkage_check (TREE_TYPE (t), relaxed_p);
1662 default:
1663 return NULL_TREE;
1667 #ifdef GATHER_STATISTICS
1668 extern int depth_reached;
1669 #endif
1671 void
1672 cxx_print_statistics (void)
1674 print_search_statistics ();
1675 print_class_statistics ();
1676 print_template_statistics ();
1677 #ifdef GATHER_STATISTICS
1678 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
1679 depth_reached);
1680 #endif
1683 /* Return, as an INTEGER_CST node, the number of elements for TYPE
1684 (which is an ARRAY_TYPE). This counts only elements of the top
1685 array. */
1687 tree
1688 array_type_nelts_top (tree type)
1690 return fold_build2_loc (input_location,
1691 PLUS_EXPR, sizetype,
1692 array_type_nelts (type),
1693 size_one_node);
1696 /* Return, as an INTEGER_CST node, the number of elements for TYPE
1697 (which is an ARRAY_TYPE). This one is a recursive count of all
1698 ARRAY_TYPEs that are clumped together. */
1700 tree
1701 array_type_nelts_total (tree type)
1703 tree sz = array_type_nelts_top (type);
1704 type = TREE_TYPE (type);
1705 while (TREE_CODE (type) == ARRAY_TYPE)
1707 tree n = array_type_nelts_top (type);
1708 sz = fold_build2_loc (input_location,
1709 MULT_EXPR, sizetype, sz, n);
1710 type = TREE_TYPE (type);
1712 return sz;
1715 /* Called from break_out_target_exprs via mapcar. */
1717 static tree
1718 bot_manip (tree* tp, int* walk_subtrees, void* data)
1720 splay_tree target_remap = ((splay_tree) data);
1721 tree t = *tp;
1723 if (!TYPE_P (t) && TREE_CONSTANT (t))
1725 /* There can't be any TARGET_EXPRs or their slot variables below
1726 this point. We used to check !TREE_SIDE_EFFECTS, but then we
1727 failed to copy an ADDR_EXPR of the slot VAR_DECL. */
1728 *walk_subtrees = 0;
1729 return NULL_TREE;
1731 if (TREE_CODE (t) == TARGET_EXPR)
1733 tree u;
1735 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
1736 u = build_cplus_new (TREE_TYPE (t), TREE_OPERAND (t, 1));
1737 else
1738 u = build_target_expr_with_type (TREE_OPERAND (t, 1), TREE_TYPE (t));
1740 /* Map the old variable to the new one. */
1741 splay_tree_insert (target_remap,
1742 (splay_tree_key) TREE_OPERAND (t, 0),
1743 (splay_tree_value) TREE_OPERAND (u, 0));
1745 TREE_OPERAND (u, 1) = break_out_target_exprs (TREE_OPERAND (u, 1));
1747 /* Replace the old expression with the new version. */
1748 *tp = u;
1749 /* We don't have to go below this point; the recursive call to
1750 break_out_target_exprs will have handled anything below this
1751 point. */
1752 *walk_subtrees = 0;
1753 return NULL_TREE;
1756 /* Make a copy of this node. */
1757 return copy_tree_r (tp, walk_subtrees, NULL);
1760 /* Replace all remapped VAR_DECLs in T with their new equivalents.
1761 DATA is really a splay-tree mapping old variables to new
1762 variables. */
1764 static tree
1765 bot_replace (tree* t,
1766 int* walk_subtrees ATTRIBUTE_UNUSED ,
1767 void* data)
1769 splay_tree target_remap = ((splay_tree) data);
1771 if (TREE_CODE (*t) == VAR_DECL)
1773 splay_tree_node n = splay_tree_lookup (target_remap,
1774 (splay_tree_key) *t);
1775 if (n)
1776 *t = (tree) n->value;
1779 return NULL_TREE;
1782 /* When we parse a default argument expression, we may create
1783 temporary variables via TARGET_EXPRs. When we actually use the
1784 default-argument expression, we make a copy of the expression, but
1785 we must replace the temporaries with appropriate local versions. */
1787 tree
1788 break_out_target_exprs (tree t)
1790 static int target_remap_count;
1791 static splay_tree target_remap;
1793 if (!target_remap_count++)
1794 target_remap = splay_tree_new (splay_tree_compare_pointers,
1795 /*splay_tree_delete_key_fn=*/NULL,
1796 /*splay_tree_delete_value_fn=*/NULL);
1797 cp_walk_tree (&t, bot_manip, target_remap, NULL);
1798 cp_walk_tree (&t, bot_replace, target_remap, NULL);
1800 if (!--target_remap_count)
1802 splay_tree_delete (target_remap);
1803 target_remap = NULL;
1806 return t;
1809 /* Similar to `build_nt', but for template definitions of dependent
1810 expressions */
1812 tree
1813 build_min_nt (enum tree_code code, ...)
1815 tree t;
1816 int length;
1817 int i;
1818 va_list p;
1820 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
1822 va_start (p, code);
1824 t = make_node (code);
1825 length = TREE_CODE_LENGTH (code);
1827 for (i = 0; i < length; i++)
1829 tree x = va_arg (p, tree);
1830 TREE_OPERAND (t, i) = x;
1833 va_end (p);
1834 return t;
1838 /* Similar to `build', but for template definitions. */
1840 tree
1841 build_min (enum tree_code code, tree tt, ...)
1843 tree t;
1844 int length;
1845 int i;
1846 va_list p;
1848 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
1850 va_start (p, tt);
1852 t = make_node (code);
1853 length = TREE_CODE_LENGTH (code);
1854 TREE_TYPE (t) = tt;
1856 for (i = 0; i < length; i++)
1858 tree x = va_arg (p, tree);
1859 TREE_OPERAND (t, i) = x;
1860 if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
1861 TREE_SIDE_EFFECTS (t) = 1;
1864 va_end (p);
1865 return t;
1868 /* Similar to `build', but for template definitions of non-dependent
1869 expressions. NON_DEP is the non-dependent expression that has been
1870 built. */
1872 tree
1873 build_min_non_dep (enum tree_code code, tree non_dep, ...)
1875 tree t;
1876 int length;
1877 int i;
1878 va_list p;
1880 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
1882 va_start (p, non_dep);
1884 t = make_node (code);
1885 length = TREE_CODE_LENGTH (code);
1886 TREE_TYPE (t) = TREE_TYPE (non_dep);
1887 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
1889 for (i = 0; i < length; i++)
1891 tree x = va_arg (p, tree);
1892 TREE_OPERAND (t, i) = x;
1895 if (code == COMPOUND_EXPR && TREE_CODE (non_dep) != COMPOUND_EXPR)
1896 /* This should not be considered a COMPOUND_EXPR, because it
1897 resolves to an overload. */
1898 COMPOUND_EXPR_OVERLOADED (t) = 1;
1900 va_end (p);
1901 return t;
1904 /* Similar to `build_nt_call_vec', but for template definitions of
1905 non-dependent expressions. NON_DEP is the non-dependent expression
1906 that has been built. */
1908 tree
1909 build_min_non_dep_call_vec (tree non_dep, tree fn, VEC(tree,gc) *argvec)
1911 tree t = build_nt_call_vec (fn, argvec);
1912 TREE_TYPE (t) = TREE_TYPE (non_dep);
1913 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
1914 return t;
1917 tree
1918 get_type_decl (tree t)
1920 if (TREE_CODE (t) == TYPE_DECL)
1921 return t;
1922 if (TYPE_P (t))
1923 return TYPE_STUB_DECL (t);
1924 gcc_assert (t == error_mark_node);
1925 return t;
1928 /* Returns the namespace that contains DECL, whether directly or
1929 indirectly. */
1931 tree
1932 decl_namespace_context (tree decl)
1934 while (1)
1936 if (TREE_CODE (decl) == NAMESPACE_DECL)
1937 return decl;
1938 else if (TYPE_P (decl))
1939 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
1940 else
1941 decl = CP_DECL_CONTEXT (decl);
1945 /* Returns true if decl is within an anonymous namespace, however deeply
1946 nested, or false otherwise. */
1948 bool
1949 decl_anon_ns_mem_p (const_tree decl)
1951 while (1)
1953 if (decl == NULL_TREE || decl == error_mark_node)
1954 return false;
1955 if (TREE_CODE (decl) == NAMESPACE_DECL
1956 && DECL_NAME (decl) == NULL_TREE)
1957 return true;
1958 /* Classes and namespaces inside anonymous namespaces have
1959 TREE_PUBLIC == 0, so we can shortcut the search. */
1960 else if (TYPE_P (decl))
1961 return (TREE_PUBLIC (TYPE_NAME (decl)) == 0);
1962 else if (TREE_CODE (decl) == NAMESPACE_DECL)
1963 return (TREE_PUBLIC (decl) == 0);
1964 else
1965 decl = DECL_CONTEXT (decl);
1969 /* Return truthvalue of whether T1 is the same tree structure as T2.
1970 Return 1 if they are the same. Return 0 if they are different. */
1972 bool
1973 cp_tree_equal (tree t1, tree t2)
1975 enum tree_code code1, code2;
1977 if (t1 == t2)
1978 return true;
1979 if (!t1 || !t2)
1980 return false;
1982 for (code1 = TREE_CODE (t1);
1983 CONVERT_EXPR_CODE_P (code1)
1984 || code1 == NON_LVALUE_EXPR;
1985 code1 = TREE_CODE (t1))
1986 t1 = TREE_OPERAND (t1, 0);
1987 for (code2 = TREE_CODE (t2);
1988 CONVERT_EXPR_CODE_P (code2)
1989 || code1 == NON_LVALUE_EXPR;
1990 code2 = TREE_CODE (t2))
1991 t2 = TREE_OPERAND (t2, 0);
1993 /* They might have become equal now. */
1994 if (t1 == t2)
1995 return true;
1997 if (code1 != code2)
1998 return false;
2000 switch (code1)
2002 case INTEGER_CST:
2003 return TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
2004 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2);
2006 case REAL_CST:
2007 return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2009 case STRING_CST:
2010 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2011 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2012 TREE_STRING_LENGTH (t1));
2014 case FIXED_CST:
2015 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1),
2016 TREE_FIXED_CST (t2));
2018 case COMPLEX_CST:
2019 return cp_tree_equal (TREE_REALPART (t1), TREE_REALPART (t2))
2020 && cp_tree_equal (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
2022 case CONSTRUCTOR:
2023 /* We need to do this when determining whether or not two
2024 non-type pointer to member function template arguments
2025 are the same. */
2026 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
2027 || CONSTRUCTOR_NELTS (t1) != CONSTRUCTOR_NELTS (t2))
2028 return false;
2030 tree field, value;
2031 unsigned int i;
2032 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, field, value)
2034 constructor_elt *elt2 = CONSTRUCTOR_ELT (t2, i);
2035 if (!cp_tree_equal (field, elt2->index)
2036 || !cp_tree_equal (value, elt2->value))
2037 return false;
2040 return true;
2042 case TREE_LIST:
2043 if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
2044 return false;
2045 if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
2046 return false;
2047 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
2049 case SAVE_EXPR:
2050 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2052 case CALL_EXPR:
2054 tree arg1, arg2;
2055 call_expr_arg_iterator iter1, iter2;
2056 if (!cp_tree_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2)))
2057 return false;
2058 for (arg1 = first_call_expr_arg (t1, &iter1),
2059 arg2 = first_call_expr_arg (t2, &iter2);
2060 arg1 && arg2;
2061 arg1 = next_call_expr_arg (&iter1),
2062 arg2 = next_call_expr_arg (&iter2))
2063 if (!cp_tree_equal (arg1, arg2))
2064 return false;
2065 if (arg1 || arg2)
2066 return false;
2067 return true;
2070 case TARGET_EXPR:
2072 tree o1 = TREE_OPERAND (t1, 0);
2073 tree o2 = TREE_OPERAND (t2, 0);
2075 /* Special case: if either target is an unallocated VAR_DECL,
2076 it means that it's going to be unified with whatever the
2077 TARGET_EXPR is really supposed to initialize, so treat it
2078 as being equivalent to anything. */
2079 if (TREE_CODE (o1) == VAR_DECL && DECL_NAME (o1) == NULL_TREE
2080 && !DECL_RTL_SET_P (o1))
2081 /*Nop*/;
2082 else if (TREE_CODE (o2) == VAR_DECL && DECL_NAME (o2) == NULL_TREE
2083 && !DECL_RTL_SET_P (o2))
2084 /*Nop*/;
2085 else if (!cp_tree_equal (o1, o2))
2086 return false;
2088 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
2091 case WITH_CLEANUP_EXPR:
2092 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
2093 return false;
2094 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
2096 case COMPONENT_REF:
2097 if (TREE_OPERAND (t1, 1) != TREE_OPERAND (t2, 1))
2098 return false;
2099 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2101 case PARM_DECL:
2102 /* For comparing uses of parameters in late-specified return types
2103 with an out-of-class definition of the function. */
2104 if (same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
2105 && DECL_PARM_INDEX (t1) == DECL_PARM_INDEX (t2))
2106 return true;
2107 else
2108 return false;
2110 case VAR_DECL:
2111 case CONST_DECL:
2112 case FUNCTION_DECL:
2113 case TEMPLATE_DECL:
2114 case IDENTIFIER_NODE:
2115 case SSA_NAME:
2116 return false;
2118 case BASELINK:
2119 return (BASELINK_BINFO (t1) == BASELINK_BINFO (t2)
2120 && BASELINK_ACCESS_BINFO (t1) == BASELINK_ACCESS_BINFO (t2)
2121 && cp_tree_equal (BASELINK_FUNCTIONS (t1),
2122 BASELINK_FUNCTIONS (t2)));
2124 case TEMPLATE_PARM_INDEX:
2125 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
2126 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
2127 && (TEMPLATE_PARM_PARAMETER_PACK (t1)
2128 == TEMPLATE_PARM_PARAMETER_PACK (t2))
2129 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
2130 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
2132 case TEMPLATE_ID_EXPR:
2134 unsigned ix;
2135 tree vec1, vec2;
2137 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
2138 return false;
2139 vec1 = TREE_OPERAND (t1, 1);
2140 vec2 = TREE_OPERAND (t2, 1);
2142 if (!vec1 || !vec2)
2143 return !vec1 && !vec2;
2145 if (TREE_VEC_LENGTH (vec1) != TREE_VEC_LENGTH (vec2))
2146 return false;
2148 for (ix = TREE_VEC_LENGTH (vec1); ix--;)
2149 if (!cp_tree_equal (TREE_VEC_ELT (vec1, ix),
2150 TREE_VEC_ELT (vec2, ix)))
2151 return false;
2153 return true;
2156 case SIZEOF_EXPR:
2157 case ALIGNOF_EXPR:
2159 tree o1 = TREE_OPERAND (t1, 0);
2160 tree o2 = TREE_OPERAND (t2, 0);
2162 if (TREE_CODE (o1) != TREE_CODE (o2))
2163 return false;
2164 if (TYPE_P (o1))
2165 return same_type_p (o1, o2);
2166 else
2167 return cp_tree_equal (o1, o2);
2170 case MODOP_EXPR:
2172 tree t1_op1, t2_op1;
2174 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
2175 return false;
2177 t1_op1 = TREE_OPERAND (t1, 1);
2178 t2_op1 = TREE_OPERAND (t2, 1);
2179 if (TREE_CODE (t1_op1) != TREE_CODE (t2_op1))
2180 return false;
2182 return cp_tree_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t2, 2));
2185 case PTRMEM_CST:
2186 /* Two pointer-to-members are the same if they point to the same
2187 field or function in the same class. */
2188 if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
2189 return false;
2191 return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
2193 case OVERLOAD:
2194 if (OVL_FUNCTION (t1) != OVL_FUNCTION (t2))
2195 return false;
2196 return cp_tree_equal (OVL_CHAIN (t1), OVL_CHAIN (t2));
2198 case TRAIT_EXPR:
2199 if (TRAIT_EXPR_KIND (t1) != TRAIT_EXPR_KIND (t2))
2200 return false;
2201 return same_type_p (TRAIT_EXPR_TYPE1 (t1), TRAIT_EXPR_TYPE1 (t2))
2202 && same_type_p (TRAIT_EXPR_TYPE2 (t1), TRAIT_EXPR_TYPE2 (t2));
2204 case CAST_EXPR:
2205 case STATIC_CAST_EXPR:
2206 case REINTERPRET_CAST_EXPR:
2207 case CONST_CAST_EXPR:
2208 case DYNAMIC_CAST_EXPR:
2209 case NEW_EXPR:
2210 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
2211 return false;
2212 /* Now compare operands as usual. */
2213 break;
2215 default:
2216 break;
2219 switch (TREE_CODE_CLASS (code1))
2221 case tcc_unary:
2222 case tcc_binary:
2223 case tcc_comparison:
2224 case tcc_expression:
2225 case tcc_vl_exp:
2226 case tcc_reference:
2227 case tcc_statement:
2229 int i, n;
2231 n = TREE_OPERAND_LENGTH (t1);
2232 if (TREE_CODE_CLASS (code1) == tcc_vl_exp
2233 && n != TREE_OPERAND_LENGTH (t2))
2234 return false;
2236 for (i = 0; i < n; ++i)
2237 if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
2238 return false;
2240 return true;
2243 case tcc_type:
2244 return same_type_p (t1, t2);
2245 default:
2246 gcc_unreachable ();
2248 /* We can get here with --disable-checking. */
2249 return false;
2252 /* The type of ARG when used as an lvalue. */
2254 tree
2255 lvalue_type (tree arg)
2257 tree type = TREE_TYPE (arg);
2258 return type;
2261 /* The type of ARG for printing error messages; denote lvalues with
2262 reference types. */
2264 tree
2265 error_type (tree arg)
2267 tree type = TREE_TYPE (arg);
2269 if (TREE_CODE (type) == ARRAY_TYPE)
2271 else if (TREE_CODE (type) == ERROR_MARK)
2273 else if (real_lvalue_p (arg))
2274 type = build_reference_type (lvalue_type (arg));
2275 else if (MAYBE_CLASS_TYPE_P (type))
2276 type = lvalue_type (arg);
2278 return type;
2281 /* Does FUNCTION use a variable-length argument list? */
2284 varargs_function_p (const_tree function)
2286 const_tree parm = TYPE_ARG_TYPES (TREE_TYPE (function));
2287 for (; parm; parm = TREE_CHAIN (parm))
2288 if (TREE_VALUE (parm) == void_type_node)
2289 return 0;
2290 return 1;
2293 /* Returns 1 if decl is a member of a class. */
2296 member_p (const_tree decl)
2298 const_tree const ctx = DECL_CONTEXT (decl);
2299 return (ctx && TYPE_P (ctx));
2302 /* Create a placeholder for member access where we don't actually have an
2303 object that the access is against. */
2305 tree
2306 build_dummy_object (tree type)
2308 tree decl = build1 (NOP_EXPR, build_pointer_type (type), void_zero_node);
2309 return cp_build_indirect_ref (decl, RO_NULL, tf_warning_or_error);
2312 /* We've gotten a reference to a member of TYPE. Return *this if appropriate,
2313 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
2314 binfo path from current_class_type to TYPE, or 0. */
2316 tree
2317 maybe_dummy_object (tree type, tree* binfop)
2319 tree decl, context;
2320 tree binfo;
2321 tree current = current_nonlambda_class_type ();
2323 if (current
2324 && (binfo = lookup_base (current, type, ba_any, NULL)))
2325 context = current;
2326 else
2328 /* Reference from a nested class member function. */
2329 context = type;
2330 binfo = TYPE_BINFO (type);
2333 if (binfop)
2334 *binfop = binfo;
2336 if (current_class_ref && context == current_class_type
2337 /* Kludge: Make sure that current_class_type is actually
2338 correct. It might not be if we're in the middle of
2339 tsubst_default_argument. */
2340 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref)),
2341 current_class_type))
2342 decl = current_class_ref;
2343 else if (current != current_class_type
2344 && context == nonlambda_method_basetype ())
2345 /* In a lambda, need to go through 'this' capture. */
2346 decl = (cp_build_indirect_ref
2347 ((lambda_expr_this_capture
2348 (CLASSTYPE_LAMBDA_EXPR (current_class_type))),
2349 RO_NULL, tf_warning_or_error));
2350 else
2351 decl = build_dummy_object (context);
2353 return decl;
2356 /* Returns 1 if OB is a placeholder object, or a pointer to one. */
2359 is_dummy_object (const_tree ob)
2361 if (TREE_CODE (ob) == INDIRECT_REF)
2362 ob = TREE_OPERAND (ob, 0);
2363 return (TREE_CODE (ob) == NOP_EXPR
2364 && TREE_OPERAND (ob, 0) == void_zero_node);
2367 /* Returns 1 iff type T is something we want to treat as a scalar type for
2368 the purpose of deciding whether it is trivial/POD/standard-layout. */
2370 static bool
2371 scalarish_type_p (const_tree t)
2373 if (t == error_mark_node)
2374 return 1;
2376 return (SCALAR_TYPE_P (t)
2377 || TREE_CODE (t) == VECTOR_TYPE);
2380 /* Returns true iff T requires non-trivial default initialization. */
2382 bool
2383 type_has_nontrivial_default_init (const_tree t)
2385 t = strip_array_types (CONST_CAST_TREE (t));
2387 if (CLASS_TYPE_P (t))
2388 return TYPE_HAS_COMPLEX_DFLT (t);
2389 else
2390 return 0;
2393 /* Returns true iff copying an object of type T (including via move
2394 constructor) is non-trivial. That is, T has no non-trivial copy
2395 constructors and no non-trivial move constructors. */
2397 bool
2398 type_has_nontrivial_copy_init (const_tree t)
2400 t = strip_array_types (CONST_CAST_TREE (t));
2402 if (CLASS_TYPE_P (t))
2404 gcc_assert (COMPLETE_TYPE_P (t));
2405 return ((TYPE_HAS_COPY_CTOR (t)
2406 && TYPE_HAS_COMPLEX_COPY_CTOR (t))
2407 || TYPE_HAS_COMPLEX_MOVE_CTOR (t));
2409 else
2410 return 0;
2413 /* Returns 1 iff type T is a trivially copyable type, as defined in
2414 [basic.types] and [class]. */
2416 bool
2417 trivially_copyable_p (const_tree t)
2419 t = strip_array_types (CONST_CAST_TREE (t));
2421 if (CLASS_TYPE_P (t))
2422 return ((!TYPE_HAS_COPY_CTOR (t)
2423 || !TYPE_HAS_COMPLEX_COPY_CTOR (t))
2424 && !TYPE_HAS_COMPLEX_MOVE_CTOR (t)
2425 && (!TYPE_HAS_COPY_ASSIGN (t)
2426 || !TYPE_HAS_COMPLEX_COPY_ASSIGN (t))
2427 && !TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
2428 && TYPE_HAS_TRIVIAL_DESTRUCTOR (t));
2429 else
2430 return scalarish_type_p (t);
2433 /* Returns 1 iff type T is a trivial type, as defined in [basic.types] and
2434 [class]. */
2436 bool
2437 trivial_type_p (const_tree t)
2439 t = strip_array_types (CONST_CAST_TREE (t));
2441 if (CLASS_TYPE_P (t))
2442 return (TYPE_HAS_TRIVIAL_DFLT (t)
2443 && trivially_copyable_p (t));
2444 else
2445 return scalarish_type_p (t);
2448 /* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
2450 bool
2451 pod_type_p (const_tree t)
2453 /* This CONST_CAST is okay because strip_array_types returns its
2454 argument unmodified and we assign it to a const_tree. */
2455 t = strip_array_types (CONST_CAST_TREE(t));
2457 if (!CLASS_TYPE_P (t))
2458 return scalarish_type_p (t);
2459 else if (cxx_dialect > cxx98)
2460 /* [class]/10: A POD struct is a class that is both a trivial class and a
2461 standard-layout class, and has no non-static data members of type
2462 non-POD struct, non-POD union (or array of such types).
2464 We don't need to check individual members because if a member is
2465 non-std-layout or non-trivial, the class will be too. */
2466 return (std_layout_type_p (t) && trivial_type_p (t));
2467 else
2468 /* The C++98 definition of POD is different. */
2469 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
2472 /* Returns true iff T is POD for the purpose of layout, as defined in the
2473 C++ ABI. */
2475 bool
2476 layout_pod_type_p (const_tree t)
2478 t = strip_array_types (CONST_CAST_TREE (t));
2480 if (CLASS_TYPE_P (t))
2481 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
2482 else
2483 return scalarish_type_p (t);
2486 /* Returns true iff T is a standard-layout type, as defined in
2487 [basic.types]. */
2489 bool
2490 std_layout_type_p (const_tree t)
2492 t = strip_array_types (CONST_CAST_TREE (t));
2494 if (CLASS_TYPE_P (t))
2495 return !CLASSTYPE_NON_STD_LAYOUT (t);
2496 else
2497 return scalarish_type_p (t);
2500 /* Nonzero iff type T is a class template implicit specialization. */
2502 bool
2503 class_tmpl_impl_spec_p (const_tree t)
2505 return CLASS_TYPE_P (t) && CLASSTYPE_TEMPLATE_INSTANTIATION (t);
2508 /* Returns 1 iff zero initialization of type T means actually storing
2509 zeros in it. */
2512 zero_init_p (const_tree t)
2514 /* This CONST_CAST is okay because strip_array_types returns its
2515 argument unmodified and we assign it to a const_tree. */
2516 t = strip_array_types (CONST_CAST_TREE(t));
2518 if (t == error_mark_node)
2519 return 1;
2521 /* NULL pointers to data members are initialized with -1. */
2522 if (TYPE_PTRMEM_P (t))
2523 return 0;
2525 /* Classes that contain types that can't be zero-initialized, cannot
2526 be zero-initialized themselves. */
2527 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
2528 return 0;
2530 return 1;
2533 /* Table of valid C++ attributes. */
2534 const struct attribute_spec cxx_attribute_table[] =
2536 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
2537 { "java_interface", 0, 0, false, false, false, handle_java_interface_attribute },
2538 { "com_interface", 0, 0, false, false, false, handle_com_interface_attribute },
2539 { "init_priority", 1, 1, true, false, false, handle_init_priority_attribute },
2540 { NULL, 0, 0, false, false, false, NULL }
2543 /* Handle a "java_interface" attribute; arguments as in
2544 struct attribute_spec.handler. */
2545 static tree
2546 handle_java_interface_attribute (tree* node,
2547 tree name,
2548 tree args ATTRIBUTE_UNUSED ,
2549 int flags,
2550 bool* no_add_attrs)
2552 if (DECL_P (*node)
2553 || !CLASS_TYPE_P (*node)
2554 || !TYPE_FOR_JAVA (*node))
2556 error ("%qE attribute can only be applied to Java class definitions",
2557 name);
2558 *no_add_attrs = true;
2559 return NULL_TREE;
2561 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
2562 *node = build_variant_type_copy (*node);
2563 TYPE_JAVA_INTERFACE (*node) = 1;
2565 return NULL_TREE;
2568 /* Handle a "com_interface" attribute; arguments as in
2569 struct attribute_spec.handler. */
2570 static tree
2571 handle_com_interface_attribute (tree* node,
2572 tree name,
2573 tree args ATTRIBUTE_UNUSED ,
2574 int flags ATTRIBUTE_UNUSED ,
2575 bool* no_add_attrs)
2577 static int warned;
2579 *no_add_attrs = true;
2581 if (DECL_P (*node)
2582 || !CLASS_TYPE_P (*node)
2583 || *node != TYPE_MAIN_VARIANT (*node))
2585 warning (OPT_Wattributes, "%qE attribute can only be applied "
2586 "to class definitions", name);
2587 return NULL_TREE;
2590 if (!warned++)
2591 warning (0, "%qE is obsolete; g++ vtables are now COM-compatible by default",
2592 name);
2594 return NULL_TREE;
2597 /* Handle an "init_priority" attribute; arguments as in
2598 struct attribute_spec.handler. */
2599 static tree
2600 handle_init_priority_attribute (tree* node,
2601 tree name,
2602 tree args,
2603 int flags ATTRIBUTE_UNUSED ,
2604 bool* no_add_attrs)
2606 tree initp_expr = TREE_VALUE (args);
2607 tree decl = *node;
2608 tree type = TREE_TYPE (decl);
2609 int pri;
2611 STRIP_NOPS (initp_expr);
2613 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
2615 error ("requested init_priority is not an integer constant");
2616 *no_add_attrs = true;
2617 return NULL_TREE;
2620 pri = TREE_INT_CST_LOW (initp_expr);
2622 type = strip_array_types (type);
2624 if (decl == NULL_TREE
2625 || TREE_CODE (decl) != VAR_DECL
2626 || !TREE_STATIC (decl)
2627 || DECL_EXTERNAL (decl)
2628 || (TREE_CODE (type) != RECORD_TYPE
2629 && TREE_CODE (type) != UNION_TYPE)
2630 /* Static objects in functions are initialized the
2631 first time control passes through that
2632 function. This is not precise enough to pin down an
2633 init_priority value, so don't allow it. */
2634 || current_function_decl)
2636 error ("can only use %qE attribute on file-scope definitions "
2637 "of objects of class type", name);
2638 *no_add_attrs = true;
2639 return NULL_TREE;
2642 if (pri > MAX_INIT_PRIORITY || pri <= 0)
2644 error ("requested init_priority is out of range");
2645 *no_add_attrs = true;
2646 return NULL_TREE;
2649 /* Check for init_priorities that are reserved for
2650 language and runtime support implementations.*/
2651 if (pri <= MAX_RESERVED_INIT_PRIORITY)
2653 warning
2654 (0, "requested init_priority is reserved for internal use");
2657 if (SUPPORTS_INIT_PRIORITY)
2659 SET_DECL_INIT_PRIORITY (decl, pri);
2660 DECL_HAS_INIT_PRIORITY_P (decl) = 1;
2661 return NULL_TREE;
2663 else
2665 error ("%qE attribute is not supported on this platform", name);
2666 *no_add_attrs = true;
2667 return NULL_TREE;
2671 /* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
2672 thing pointed to by the constant. */
2674 tree
2675 make_ptrmem_cst (tree type, tree member)
2677 tree ptrmem_cst = make_node (PTRMEM_CST);
2678 TREE_TYPE (ptrmem_cst) = type;
2679 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
2680 return ptrmem_cst;
2683 /* Build a variant of TYPE that has the indicated ATTRIBUTES. May
2684 return an existing type if an appropriate type already exists. */
2686 tree
2687 cp_build_type_attribute_variant (tree type, tree attributes)
2689 tree new_type;
2691 new_type = build_type_attribute_variant (type, attributes);
2692 if (TREE_CODE (new_type) == FUNCTION_TYPE
2693 || TREE_CODE (new_type) == METHOD_TYPE)
2694 new_type = build_exception_variant (new_type,
2695 TYPE_RAISES_EXCEPTIONS (type));
2697 /* Making a new main variant of a class type is broken. */
2698 gcc_assert (!CLASS_TYPE_P (type) || new_type == type);
2700 return new_type;
2703 /* Return TRUE if TYPE1 and TYPE2 are identical for type hashing purposes.
2704 Called only after doing all language independent checks. Only
2705 to check TYPE_RAISES_EXCEPTIONS for FUNCTION_TYPE, the rest is already
2706 compared in type_hash_eq. */
2708 bool
2709 cxx_type_hash_eq (const_tree typea, const_tree typeb)
2711 gcc_assert (TREE_CODE (typea) == FUNCTION_TYPE);
2713 return comp_except_specs (TYPE_RAISES_EXCEPTIONS (typea),
2714 TYPE_RAISES_EXCEPTIONS (typeb), ce_exact);
2717 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
2718 traversal. Called from walk_tree. */
2720 tree
2721 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
2722 void *data, struct pointer_set_t *pset)
2724 enum tree_code code = TREE_CODE (*tp);
2725 tree result;
2727 #define WALK_SUBTREE(NODE) \
2728 do \
2730 result = cp_walk_tree (&(NODE), func, data, pset); \
2731 if (result) goto out; \
2733 while (0)
2735 /* Not one of the easy cases. We must explicitly go through the
2736 children. */
2737 result = NULL_TREE;
2738 switch (code)
2740 case DEFAULT_ARG:
2741 case TEMPLATE_TEMPLATE_PARM:
2742 case BOUND_TEMPLATE_TEMPLATE_PARM:
2743 case UNBOUND_CLASS_TEMPLATE:
2744 case TEMPLATE_PARM_INDEX:
2745 case TEMPLATE_TYPE_PARM:
2746 case TYPENAME_TYPE:
2747 case TYPEOF_TYPE:
2748 /* None of these have subtrees other than those already walked
2749 above. */
2750 *walk_subtrees_p = 0;
2751 break;
2753 case BASELINK:
2754 WALK_SUBTREE (BASELINK_FUNCTIONS (*tp));
2755 *walk_subtrees_p = 0;
2756 break;
2758 case PTRMEM_CST:
2759 WALK_SUBTREE (TREE_TYPE (*tp));
2760 *walk_subtrees_p = 0;
2761 break;
2763 case TREE_LIST:
2764 WALK_SUBTREE (TREE_PURPOSE (*tp));
2765 break;
2767 case OVERLOAD:
2768 WALK_SUBTREE (OVL_FUNCTION (*tp));
2769 WALK_SUBTREE (OVL_CHAIN (*tp));
2770 *walk_subtrees_p = 0;
2771 break;
2773 case USING_DECL:
2774 WALK_SUBTREE (DECL_NAME (*tp));
2775 WALK_SUBTREE (USING_DECL_SCOPE (*tp));
2776 WALK_SUBTREE (USING_DECL_DECLS (*tp));
2777 *walk_subtrees_p = 0;
2778 break;
2780 case RECORD_TYPE:
2781 if (TYPE_PTRMEMFUNC_P (*tp))
2782 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (*tp));
2783 break;
2785 case TYPE_ARGUMENT_PACK:
2786 case NONTYPE_ARGUMENT_PACK:
2788 tree args = ARGUMENT_PACK_ARGS (*tp);
2789 int i, len = TREE_VEC_LENGTH (args);
2790 for (i = 0; i < len; i++)
2791 WALK_SUBTREE (TREE_VEC_ELT (args, i));
2793 break;
2795 case TYPE_PACK_EXPANSION:
2796 WALK_SUBTREE (TREE_TYPE (*tp));
2797 *walk_subtrees_p = 0;
2798 break;
2800 case EXPR_PACK_EXPANSION:
2801 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
2802 *walk_subtrees_p = 0;
2803 break;
2805 case CAST_EXPR:
2806 case REINTERPRET_CAST_EXPR:
2807 case STATIC_CAST_EXPR:
2808 case CONST_CAST_EXPR:
2809 case DYNAMIC_CAST_EXPR:
2810 if (TREE_TYPE (*tp))
2811 WALK_SUBTREE (TREE_TYPE (*tp));
2814 int i;
2815 for (i = 0; i < TREE_CODE_LENGTH (TREE_CODE (*tp)); ++i)
2816 WALK_SUBTREE (TREE_OPERAND (*tp, i));
2818 *walk_subtrees_p = 0;
2819 break;
2821 case TRAIT_EXPR:
2822 WALK_SUBTREE (TRAIT_EXPR_TYPE1 (*tp));
2823 WALK_SUBTREE (TRAIT_EXPR_TYPE2 (*tp));
2824 *walk_subtrees_p = 0;
2825 break;
2827 case DECLTYPE_TYPE:
2828 WALK_SUBTREE (DECLTYPE_TYPE_EXPR (*tp));
2829 *walk_subtrees_p = 0;
2830 break;
2833 default:
2834 return NULL_TREE;
2837 /* We didn't find what we were looking for. */
2838 out:
2839 return result;
2841 #undef WALK_SUBTREE
2844 /* Like save_expr, but for C++. */
2846 tree
2847 cp_save_expr (tree expr)
2849 /* There is no reason to create a SAVE_EXPR within a template; if
2850 needed, we can create the SAVE_EXPR when instantiating the
2851 template. Furthermore, the middle-end cannot handle C++-specific
2852 tree codes. */
2853 if (processing_template_decl)
2854 return expr;
2855 return save_expr (expr);
2858 /* Initialize tree.c. */
2860 void
2861 init_tree (void)
2863 list_hash_table = htab_create_ggc (31, list_hash, list_hash_eq, NULL);
2866 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
2867 is. Note that sfk_none is zero, so this function can be used as a
2868 predicate to test whether or not DECL is a special function. */
2870 special_function_kind
2871 special_function_p (const_tree decl)
2873 /* Rather than doing all this stuff with magic names, we should
2874 probably have a field of type `special_function_kind' in
2875 DECL_LANG_SPECIFIC. */
2876 if (DECL_COPY_CONSTRUCTOR_P (decl))
2877 return sfk_copy_constructor;
2878 if (DECL_MOVE_CONSTRUCTOR_P (decl))
2879 return sfk_move_constructor;
2880 if (DECL_CONSTRUCTOR_P (decl))
2881 return sfk_constructor;
2882 if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
2884 if (copy_fn_p (decl))
2885 return sfk_copy_assignment;
2886 if (move_fn_p (decl))
2887 return sfk_move_assignment;
2889 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2890 return sfk_destructor;
2891 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
2892 return sfk_complete_destructor;
2893 if (DECL_BASE_DESTRUCTOR_P (decl))
2894 return sfk_base_destructor;
2895 if (DECL_DELETING_DESTRUCTOR_P (decl))
2896 return sfk_deleting_destructor;
2897 if (DECL_CONV_FN_P (decl))
2898 return sfk_conversion;
2900 return sfk_none;
2903 /* Returns nonzero if TYPE is a character type, including wchar_t. */
2906 char_type_p (tree type)
2908 return (same_type_p (type, char_type_node)
2909 || same_type_p (type, unsigned_char_type_node)
2910 || same_type_p (type, signed_char_type_node)
2911 || same_type_p (type, char16_type_node)
2912 || same_type_p (type, char32_type_node)
2913 || same_type_p (type, wchar_type_node));
2916 /* Returns the kind of linkage associated with the indicated DECL. Th
2917 value returned is as specified by the language standard; it is
2918 independent of implementation details regarding template
2919 instantiation, etc. For example, it is possible that a declaration
2920 to which this function assigns external linkage would not show up
2921 as a global symbol when you run `nm' on the resulting object file. */
2923 linkage_kind
2924 decl_linkage (tree decl)
2926 /* This function doesn't attempt to calculate the linkage from first
2927 principles as given in [basic.link]. Instead, it makes use of
2928 the fact that we have already set TREE_PUBLIC appropriately, and
2929 then handles a few special cases. Ideally, we would calculate
2930 linkage first, and then transform that into a concrete
2931 implementation. */
2933 /* Things that don't have names have no linkage. */
2934 if (!DECL_NAME (decl))
2935 return lk_none;
2937 /* Fields have no linkage. */
2938 if (TREE_CODE (decl) == FIELD_DECL)
2939 return lk_none;
2941 /* Things that are TREE_PUBLIC have external linkage. */
2942 if (TREE_PUBLIC (decl))
2943 return lk_external;
2945 if (TREE_CODE (decl) == NAMESPACE_DECL)
2946 return lk_external;
2948 /* Linkage of a CONST_DECL depends on the linkage of the enumeration
2949 type. */
2950 if (TREE_CODE (decl) == CONST_DECL)
2951 return decl_linkage (TYPE_NAME (TREE_TYPE (decl)));
2953 /* Some things that are not TREE_PUBLIC have external linkage, too.
2954 For example, on targets that don't have weak symbols, we make all
2955 template instantiations have internal linkage (in the object
2956 file), but the symbols should still be treated as having external
2957 linkage from the point of view of the language. */
2958 if ((TREE_CODE (decl) == FUNCTION_DECL
2959 || TREE_CODE (decl) == VAR_DECL)
2960 && DECL_COMDAT (decl))
2961 return lk_external;
2963 /* Things in local scope do not have linkage, if they don't have
2964 TREE_PUBLIC set. */
2965 if (decl_function_context (decl))
2966 return lk_none;
2968 /* Members of the anonymous namespace also have TREE_PUBLIC unset, but
2969 are considered to have external linkage for language purposes. DECLs
2970 really meant to have internal linkage have DECL_THIS_STATIC set. */
2971 if (TREE_CODE (decl) == TYPE_DECL)
2972 return lk_external;
2973 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
2975 if (!DECL_THIS_STATIC (decl))
2976 return lk_external;
2978 /* Static data members and static member functions from classes
2979 in anonymous namespace also don't have TREE_PUBLIC set. */
2980 if (DECL_CLASS_CONTEXT (decl))
2981 return lk_external;
2984 /* Everything else has internal linkage. */
2985 return lk_internal;
2988 /* EXP is an expression that we want to pre-evaluate. Returns (in
2989 *INITP) an expression that will perform the pre-evaluation. The
2990 value returned by this function is a side-effect free expression
2991 equivalent to the pre-evaluated expression. Callers must ensure
2992 that *INITP is evaluated before EXP. */
2994 tree
2995 stabilize_expr (tree exp, tree* initp)
2997 tree init_expr;
2999 if (!TREE_SIDE_EFFECTS (exp))
3000 init_expr = NULL_TREE;
3001 else if (!real_lvalue_p (exp)
3002 || !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (exp)))
3004 init_expr = get_target_expr (exp);
3005 exp = TARGET_EXPR_SLOT (init_expr);
3007 else
3009 exp = cp_build_unary_op (ADDR_EXPR, exp, 1, tf_warning_or_error);
3010 init_expr = get_target_expr (exp);
3011 exp = TARGET_EXPR_SLOT (init_expr);
3012 exp = cp_build_indirect_ref (exp, RO_NULL, tf_warning_or_error);
3014 *initp = init_expr;
3016 gcc_assert (!TREE_SIDE_EFFECTS (exp));
3017 return exp;
3020 /* Add NEW_EXPR, an expression whose value we don't care about, after the
3021 similar expression ORIG. */
3023 tree
3024 add_stmt_to_compound (tree orig, tree new_expr)
3026 if (!new_expr || !TREE_SIDE_EFFECTS (new_expr))
3027 return orig;
3028 if (!orig || !TREE_SIDE_EFFECTS (orig))
3029 return new_expr;
3030 return build2 (COMPOUND_EXPR, void_type_node, orig, new_expr);
3033 /* Like stabilize_expr, but for a call whose arguments we want to
3034 pre-evaluate. CALL is modified in place to use the pre-evaluated
3035 arguments, while, upon return, *INITP contains an expression to
3036 compute the arguments. */
3038 void
3039 stabilize_call (tree call, tree *initp)
3041 tree inits = NULL_TREE;
3042 int i;
3043 int nargs = call_expr_nargs (call);
3045 if (call == error_mark_node || processing_template_decl)
3047 *initp = NULL_TREE;
3048 return;
3051 gcc_assert (TREE_CODE (call) == CALL_EXPR);
3053 for (i = 0; i < nargs; i++)
3055 tree init;
3056 CALL_EXPR_ARG (call, i) =
3057 stabilize_expr (CALL_EXPR_ARG (call, i), &init);
3058 inits = add_stmt_to_compound (inits, init);
3061 *initp = inits;
3064 /* Like stabilize_expr, but for an AGGR_INIT_EXPR whose arguments we want
3065 to pre-evaluate. CALL is modified in place to use the pre-evaluated
3066 arguments, while, upon return, *INITP contains an expression to
3067 compute the arguments. */
3069 void
3070 stabilize_aggr_init (tree call, tree *initp)
3072 tree inits = NULL_TREE;
3073 int i;
3074 int nargs = aggr_init_expr_nargs (call);
3076 if (call == error_mark_node)
3077 return;
3079 gcc_assert (TREE_CODE (call) == AGGR_INIT_EXPR);
3081 for (i = 0; i < nargs; i++)
3083 tree init;
3084 AGGR_INIT_EXPR_ARG (call, i) =
3085 stabilize_expr (AGGR_INIT_EXPR_ARG (call, i), &init);
3086 inits = add_stmt_to_compound (inits, init);
3089 *initp = inits;
3092 /* Like stabilize_expr, but for an initialization.
3094 If the initialization is for an object of class type, this function
3095 takes care not to introduce additional temporaries.
3097 Returns TRUE iff the expression was successfully pre-evaluated,
3098 i.e., if INIT is now side-effect free, except for, possible, a
3099 single call to a constructor. */
3101 bool
3102 stabilize_init (tree init, tree *initp)
3104 tree t = init;
3106 *initp = NULL_TREE;
3108 if (t == error_mark_node || processing_template_decl)
3109 return true;
3111 if (TREE_CODE (t) == INIT_EXPR
3112 && TREE_CODE (TREE_OPERAND (t, 1)) != TARGET_EXPR
3113 && TREE_CODE (TREE_OPERAND (t, 1)) != AGGR_INIT_EXPR)
3115 TREE_OPERAND (t, 1) = stabilize_expr (TREE_OPERAND (t, 1), initp);
3116 return true;
3119 if (TREE_CODE (t) == INIT_EXPR)
3120 t = TREE_OPERAND (t, 1);
3121 if (TREE_CODE (t) == TARGET_EXPR)
3122 t = TARGET_EXPR_INITIAL (t);
3123 if (TREE_CODE (t) == COMPOUND_EXPR)
3124 t = expr_last (t);
3125 if (TREE_CODE (t) == CONSTRUCTOR
3126 && EMPTY_CONSTRUCTOR_P (t))
3127 /* Default-initialization. */
3128 return true;
3130 /* If the initializer is a COND_EXPR, we can't preevaluate
3131 anything. */
3132 if (TREE_CODE (t) == COND_EXPR)
3133 return false;
3135 if (TREE_CODE (t) == CALL_EXPR)
3137 stabilize_call (t, initp);
3138 return true;
3141 if (TREE_CODE (t) == AGGR_INIT_EXPR)
3143 stabilize_aggr_init (t, initp);
3144 return true;
3147 /* The initialization is being performed via a bitwise copy -- and
3148 the item copied may have side effects. */
3149 return TREE_SIDE_EFFECTS (init);
3152 /* Like "fold", but should be used whenever we might be processing the
3153 body of a template. */
3155 tree
3156 fold_if_not_in_template (tree expr)
3158 /* In the body of a template, there is never any need to call
3159 "fold". We will call fold later when actually instantiating the
3160 template. Integral constant expressions in templates will be
3161 evaluated via fold_non_dependent_expr, as necessary. */
3162 if (processing_template_decl)
3163 return expr;
3165 /* Fold C++ front-end specific tree codes. */
3166 if (TREE_CODE (expr) == UNARY_PLUS_EXPR)
3167 return fold_convert (TREE_TYPE (expr), TREE_OPERAND (expr, 0));
3169 return fold (expr);
3172 /* Returns true if a cast to TYPE may appear in an integral constant
3173 expression. */
3175 bool
3176 cast_valid_in_integral_constant_expression_p (tree type)
3178 return (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
3179 || dependent_type_p (type)
3180 || type == error_mark_node);
3183 /* Return true if we need to fix linkage information of DECL. */
3185 static bool
3186 cp_fix_function_decl_p (tree decl)
3188 /* Skip if DECL is not externally visible. */
3189 if (!TREE_PUBLIC (decl))
3190 return false;
3192 /* We need to fix DECL if it a appears to be exported but with no
3193 function body. Thunks do not have CFGs and we may need to
3194 handle them specially later. */
3195 if (!gimple_has_body_p (decl)
3196 && !DECL_THUNK_P (decl)
3197 && !DECL_EXTERNAL (decl))
3199 struct cgraph_node *node = cgraph_get_node (decl);
3201 /* Don't fix same_body aliases. Although they don't have their own
3202 CFG, they share it with what they alias to. */
3203 if (!node
3204 || node->decl == decl
3205 || !node->same_body)
3206 return true;
3209 return false;
3212 /* Clean the C++ specific parts of the tree T. */
3214 void
3215 cp_free_lang_data (tree t)
3217 if (TREE_CODE (t) == METHOD_TYPE
3218 || TREE_CODE (t) == FUNCTION_TYPE)
3220 /* Default args are not interesting anymore. */
3221 tree argtypes = TYPE_ARG_TYPES (t);
3222 while (argtypes)
3224 TREE_PURPOSE (argtypes) = 0;
3225 argtypes = TREE_CHAIN (argtypes);
3228 else if (TREE_CODE (t) == FUNCTION_DECL
3229 && cp_fix_function_decl_p (t))
3231 /* If T is used in this translation unit at all, the definition
3232 must exist somewhere else since we have decided to not emit it
3233 in this TU. So make it an external reference. */
3234 DECL_EXTERNAL (t) = 1;
3235 TREE_STATIC (t) = 0;
3237 if (CP_AGGREGATE_TYPE_P (t)
3238 && TYPE_NAME (t))
3240 tree name = TYPE_NAME (t);
3241 if (TREE_CODE (name) == TYPE_DECL)
3242 name = DECL_NAME (name);
3243 /* Drop anonymous names. */
3244 if (name != NULL_TREE
3245 && ANON_AGGRNAME_P (name))
3246 TYPE_NAME (t) = NULL_TREE;
3250 /* Stub for c-common. Please keep in sync with c-decl.c.
3251 FIXME: If address space support is target specific, then this
3252 should be a C target hook. But currently this is not possible,
3253 because this function is called via REGISTER_TARGET_PRAGMAS. */
3254 void
3255 c_register_addr_space (const char *word ATTRIBUTE_UNUSED,
3256 addr_space_t as ATTRIBUTE_UNUSED)
3261 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
3262 /* Complain that some language-specific thing hanging off a tree
3263 node has been accessed improperly. */
3265 void
3266 lang_check_failed (const char* file, int line, const char* function)
3268 internal_error ("lang_* check: failed in %s, at %s:%d",
3269 function, trim_filename (file), line);
3271 #endif /* ENABLE_TREE_CHECKING */
3273 #include "gt-cp-tree.h"