Merge trunk version 195937 into gupc branch.
[official-gcc.git] / gcc / cp / tree.c
blobbcc3f6f9e339bc2da590af50e746fba9c003eaed
1 /* Language-dependent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
3 Hacked by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "cp-tree.h"
27 #include "flags.h"
28 #include "tree-inline.h"
29 #include "debug.h"
30 #include "convert.h"
31 #include "cgraph.h"
32 #include "splay-tree.h"
33 #include "gimple.h" /* gimple_has_body_p */
34 #include "hash-table.h"
36 static tree bot_manip (tree *, int *, void *);
37 static tree bot_replace (tree *, int *, void *);
38 static int list_hash_eq (const void *, const void *);
39 static hashval_t list_hash_pieces (tree, tree, tree);
40 static hashval_t list_hash (const void *);
41 static tree build_target_expr (tree, tree, tsubst_flags_t);
42 static tree count_trees_r (tree *, int *, void *);
43 static tree verify_stmt_tree_r (tree *, int *, void *);
44 static tree build_local_temp (tree);
46 static tree handle_java_interface_attribute (tree *, tree, tree, int, bool *);
47 static tree handle_com_interface_attribute (tree *, tree, tree, int, bool *);
48 static tree handle_init_priority_attribute (tree *, tree, tree, int, bool *);
49 static tree handle_abi_tag_attribute (tree *, tree, tree, int, bool *);
51 /* If REF is an lvalue, returns the kind of lvalue that REF is.
52 Otherwise, returns clk_none. */
54 cp_lvalue_kind
55 lvalue_kind (const_tree ref)
57 cp_lvalue_kind op1_lvalue_kind = clk_none;
58 cp_lvalue_kind op2_lvalue_kind = clk_none;
60 /* Expressions of reference type are sometimes wrapped in
61 INDIRECT_REFs. INDIRECT_REFs are just internal compiler
62 representation, not part of the language, so we have to look
63 through them. */
64 if (REFERENCE_REF_P (ref))
65 return lvalue_kind (TREE_OPERAND (ref, 0));
67 if (TREE_TYPE (ref)
68 && TREE_CODE (TREE_TYPE (ref)) == REFERENCE_TYPE)
70 /* unnamed rvalue references are rvalues */
71 if (TYPE_REF_IS_RVALUE (TREE_TYPE (ref))
72 && TREE_CODE (ref) != PARM_DECL
73 && TREE_CODE (ref) != VAR_DECL
74 && TREE_CODE (ref) != COMPONENT_REF
75 /* Functions are always lvalues. */
76 && TREE_CODE (TREE_TYPE (TREE_TYPE (ref))) != FUNCTION_TYPE)
77 return clk_rvalueref;
79 /* lvalue references and named rvalue references are lvalues. */
80 return clk_ordinary;
83 if (ref == current_class_ptr)
84 return clk_none;
86 switch (TREE_CODE (ref))
88 case SAVE_EXPR:
89 return clk_none;
90 /* preincrements and predecrements are valid lvals, provided
91 what they refer to are valid lvals. */
92 case PREINCREMENT_EXPR:
93 case PREDECREMENT_EXPR:
94 case TRY_CATCH_EXPR:
95 case WITH_CLEANUP_EXPR:
96 case REALPART_EXPR:
97 case IMAGPART_EXPR:
98 return lvalue_kind (TREE_OPERAND (ref, 0));
100 case COMPONENT_REF:
101 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
102 /* Look at the member designator. */
103 if (!op1_lvalue_kind)
105 else if (is_overloaded_fn (TREE_OPERAND (ref, 1)))
106 /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
107 situations. If we're seeing a COMPONENT_REF, it's a non-static
108 member, so it isn't an lvalue. */
109 op1_lvalue_kind = clk_none;
110 else if (TREE_CODE (TREE_OPERAND (ref, 1)) != FIELD_DECL)
111 /* This can be IDENTIFIER_NODE in a template. */;
112 else if (DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
114 /* Clear the ordinary bit. If this object was a class
115 rvalue we want to preserve that information. */
116 op1_lvalue_kind &= ~clk_ordinary;
117 /* The lvalue is for a bitfield. */
118 op1_lvalue_kind |= clk_bitfield;
120 else if (DECL_PACKED (TREE_OPERAND (ref, 1)))
121 op1_lvalue_kind |= clk_packed;
123 return op1_lvalue_kind;
125 case STRING_CST:
126 case COMPOUND_LITERAL_EXPR:
127 return clk_ordinary;
129 case CONST_DECL:
130 /* CONST_DECL without TREE_STATIC are enumeration values and
131 thus not lvalues. With TREE_STATIC they are used by ObjC++
132 in objc_build_string_object and need to be considered as
133 lvalues. */
134 if (! TREE_STATIC (ref))
135 return clk_none;
136 case VAR_DECL:
137 if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
138 && DECL_LANG_SPECIFIC (ref)
139 && DECL_IN_AGGR_P (ref))
140 return clk_none;
141 case INDIRECT_REF:
142 case ARROW_EXPR:
143 case ARRAY_REF:
144 case PARM_DECL:
145 case RESULT_DECL:
146 return clk_ordinary;
148 /* A scope ref in a template, left as SCOPE_REF to support later
149 access checking. */
150 case SCOPE_REF:
151 gcc_assert (!type_dependent_expression_p (CONST_CAST_TREE (ref)));
153 tree op = TREE_OPERAND (ref, 1);
154 if (TREE_CODE (op) == FIELD_DECL)
155 return (DECL_C_BIT_FIELD (op) ? clk_bitfield : clk_ordinary);
156 else
157 return lvalue_kind (op);
160 case MAX_EXPR:
161 case MIN_EXPR:
162 /* Disallow <? and >? as lvalues if either argument side-effects. */
163 if (TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 0))
164 || TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 1)))
165 return clk_none;
166 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
167 op2_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 1));
168 break;
170 case COND_EXPR:
171 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 1)
172 ? TREE_OPERAND (ref, 1)
173 : TREE_OPERAND (ref, 0));
174 op2_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 2));
175 break;
177 case MODIFY_EXPR:
178 case TYPEID_EXPR:
179 return clk_ordinary;
181 case COMPOUND_EXPR:
182 return lvalue_kind (TREE_OPERAND (ref, 1));
184 case TARGET_EXPR:
185 return clk_class;
187 case VA_ARG_EXPR:
188 return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none);
190 case CALL_EXPR:
191 /* We can see calls outside of TARGET_EXPR in templates. */
192 if (CLASS_TYPE_P (TREE_TYPE (ref)))
193 return clk_class;
194 return clk_none;
196 case FUNCTION_DECL:
197 /* All functions (except non-static-member functions) are
198 lvalues. */
199 return (DECL_NONSTATIC_MEMBER_FUNCTION_P (ref)
200 ? clk_none : clk_ordinary);
202 case BASELINK:
203 /* We now represent a reference to a single static member function
204 with a BASELINK. */
205 /* This CONST_CAST is okay because BASELINK_FUNCTIONS returns
206 its argument unmodified and we assign it to a const_tree. */
207 return lvalue_kind (BASELINK_FUNCTIONS (CONST_CAST_TREE (ref)));
209 case NON_DEPENDENT_EXPR:
210 /* We just return clk_ordinary for NON_DEPENDENT_EXPR in C++98, but
211 in C++11 lvalues don't bind to rvalue references, so we need to
212 work harder to avoid bogus errors (c++/44870). */
213 if (cxx_dialect < cxx0x)
214 return clk_ordinary;
215 else
216 return lvalue_kind (TREE_OPERAND (ref, 0));
218 default:
219 if (!TREE_TYPE (ref))
220 return clk_none;
221 if (CLASS_TYPE_P (TREE_TYPE (ref)))
222 return clk_class;
223 break;
226 /* If one operand is not an lvalue at all, then this expression is
227 not an lvalue. */
228 if (!op1_lvalue_kind || !op2_lvalue_kind)
229 return clk_none;
231 /* Otherwise, it's an lvalue, and it has all the odd properties
232 contributed by either operand. */
233 op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
234 /* It's not an ordinary lvalue if it involves any other kind. */
235 if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
236 op1_lvalue_kind &= ~clk_ordinary;
237 /* It can't be both a pseudo-lvalue and a non-addressable lvalue.
238 A COND_EXPR of those should be wrapped in a TARGET_EXPR. */
239 if ((op1_lvalue_kind & (clk_rvalueref|clk_class))
240 && (op1_lvalue_kind & (clk_bitfield|clk_packed)))
241 op1_lvalue_kind = clk_none;
242 return op1_lvalue_kind;
245 /* Returns the kind of lvalue that REF is, in the sense of
246 [basic.lval]. This function should really be named lvalue_p; it
247 computes the C++ definition of lvalue. */
249 cp_lvalue_kind
250 real_lvalue_p (const_tree ref)
252 cp_lvalue_kind kind = lvalue_kind (ref);
253 if (kind & (clk_rvalueref|clk_class))
254 return clk_none;
255 else
256 return kind;
259 /* This differs from real_lvalue_p in that class rvalues are considered
260 lvalues. */
262 bool
263 lvalue_p (const_tree ref)
265 return (lvalue_kind (ref) != clk_none);
268 /* This differs from real_lvalue_p in that rvalues formed by dereferencing
269 rvalue references are considered rvalues. */
271 bool
272 lvalue_or_rvalue_with_address_p (const_tree ref)
274 cp_lvalue_kind kind = lvalue_kind (ref);
275 if (kind & clk_class)
276 return false;
277 else
278 return (kind != clk_none);
281 /* Returns true if REF is an xvalue, false otherwise. */
283 bool
284 xvalue_p (const_tree ref)
286 return (lvalue_kind (ref) == clk_rvalueref);
289 /* Test whether DECL is a builtin that may appear in a
290 constant-expression. */
292 bool
293 builtin_valid_in_constant_expr_p (const_tree decl)
295 /* At present BUILT_IN_CONSTANT_P is the only builtin we're allowing
296 in constant-expressions. We may want to add other builtins later. */
297 return DECL_IS_BUILTIN_CONSTANT_P (decl);
300 /* Build a TARGET_EXPR, initializing the DECL with the VALUE. */
302 static tree
303 build_target_expr (tree decl, tree value, tsubst_flags_t complain)
305 tree t;
306 tree type = TREE_TYPE (decl);
308 #ifdef ENABLE_CHECKING
309 gcc_assert (VOID_TYPE_P (TREE_TYPE (value))
310 || TREE_TYPE (decl) == TREE_TYPE (value)
311 /* On ARM ctors return 'this'. */
312 || (TREE_CODE (TREE_TYPE (value)) == POINTER_TYPE
313 && TREE_CODE (value) == CALL_EXPR)
314 || useless_type_conversion_p (TREE_TYPE (decl),
315 TREE_TYPE (value)));
316 #endif
318 t = cxx_maybe_build_cleanup (decl, complain);
319 if (t == error_mark_node)
320 return error_mark_node;
321 t = build4 (TARGET_EXPR, type, decl, value, t, NULL_TREE);
322 /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
323 ignore the TARGET_EXPR. If there really turn out to be no
324 side-effects, then the optimizer should be able to get rid of
325 whatever code is generated anyhow. */
326 TREE_SIDE_EFFECTS (t) = 1;
328 return t;
331 /* Return an undeclared local temporary of type TYPE for use in building a
332 TARGET_EXPR. */
334 static tree
335 build_local_temp (tree type)
337 tree slot = build_decl (input_location,
338 VAR_DECL, NULL_TREE, type);
339 DECL_ARTIFICIAL (slot) = 1;
340 DECL_IGNORED_P (slot) = 1;
341 DECL_CONTEXT (slot) = current_function_decl;
342 layout_decl (slot, 0);
343 return slot;
346 /* Set various status flags when building an AGGR_INIT_EXPR object T. */
348 static void
349 process_aggr_init_operands (tree t)
351 bool side_effects;
353 side_effects = TREE_SIDE_EFFECTS (t);
354 if (!side_effects)
356 int i, n;
357 n = TREE_OPERAND_LENGTH (t);
358 for (i = 1; i < n; i++)
360 tree op = TREE_OPERAND (t, i);
361 if (op && TREE_SIDE_EFFECTS (op))
363 side_effects = 1;
364 break;
368 TREE_SIDE_EFFECTS (t) = side_effects;
371 /* Build an AGGR_INIT_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE,
372 FN, and SLOT. NARGS is the number of call arguments which are specified
373 as a tree array ARGS. */
375 static tree
376 build_aggr_init_array (tree return_type, tree fn, tree slot, int nargs,
377 tree *args)
379 tree t;
380 int i;
382 t = build_vl_exp (AGGR_INIT_EXPR, nargs + 3);
383 TREE_TYPE (t) = return_type;
384 AGGR_INIT_EXPR_FN (t) = fn;
385 AGGR_INIT_EXPR_SLOT (t) = slot;
386 for (i = 0; i < nargs; i++)
387 AGGR_INIT_EXPR_ARG (t, i) = args[i];
388 process_aggr_init_operands (t);
389 return t;
392 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
393 target. TYPE is the type to be initialized.
395 Build an AGGR_INIT_EXPR to represent the initialization. This function
396 differs from build_cplus_new in that an AGGR_INIT_EXPR can only be used
397 to initialize another object, whereas a TARGET_EXPR can either
398 initialize another object or create its own temporary object, and as a
399 result building up a TARGET_EXPR requires that the type's destructor be
400 callable. */
402 tree
403 build_aggr_init_expr (tree type, tree init)
405 tree fn;
406 tree slot;
407 tree rval;
408 int is_ctor;
410 /* Don't build AGGR_INIT_EXPR in a template. */
411 if (processing_template_decl)
412 return init;
414 if (TREE_CODE (init) == CALL_EXPR)
415 fn = CALL_EXPR_FN (init);
416 else if (TREE_CODE (init) == AGGR_INIT_EXPR)
417 fn = AGGR_INIT_EXPR_FN (init);
418 else
419 return convert (type, init);
421 is_ctor = (TREE_CODE (fn) == ADDR_EXPR
422 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
423 && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
425 /* We split the CALL_EXPR into its function and its arguments here.
426 Then, in expand_expr, we put them back together. The reason for
427 this is that this expression might be a default argument
428 expression. In that case, we need a new temporary every time the
429 expression is used. That's what break_out_target_exprs does; it
430 replaces every AGGR_INIT_EXPR with a copy that uses a fresh
431 temporary slot. Then, expand_expr builds up a call-expression
432 using the new slot. */
434 /* If we don't need to use a constructor to create an object of this
435 type, don't mess with AGGR_INIT_EXPR. */
436 if (is_ctor || TREE_ADDRESSABLE (type))
438 slot = build_local_temp (type);
440 if (TREE_CODE(init) == CALL_EXPR)
441 rval = build_aggr_init_array (void_type_node, fn, slot,
442 call_expr_nargs (init),
443 CALL_EXPR_ARGP (init));
444 else
445 rval = build_aggr_init_array (void_type_node, fn, slot,
446 aggr_init_expr_nargs (init),
447 AGGR_INIT_EXPR_ARGP (init));
448 TREE_SIDE_EFFECTS (rval) = 1;
449 AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
450 TREE_NOTHROW (rval) = TREE_NOTHROW (init);
452 else
453 rval = init;
455 return rval;
458 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
459 target. TYPE is the type that this initialization should appear to
460 have.
462 Build an encapsulation of the initialization to perform
463 and return it so that it can be processed by language-independent
464 and language-specific expression expanders. */
466 tree
467 build_cplus_new (tree type, tree init, tsubst_flags_t complain)
469 tree rval = build_aggr_init_expr (type, init);
470 tree slot;
472 /* Make sure that we're not trying to create an instance of an
473 abstract class. */
474 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
475 return error_mark_node;
477 if (TREE_CODE (rval) == AGGR_INIT_EXPR)
478 slot = AGGR_INIT_EXPR_SLOT (rval);
479 else if (TREE_CODE (rval) == CALL_EXPR
480 || TREE_CODE (rval) == CONSTRUCTOR)
481 slot = build_local_temp (type);
482 else
483 return rval;
485 rval = build_target_expr (slot, rval, complain);
487 if (rval != error_mark_node)
488 TARGET_EXPR_IMPLICIT_P (rval) = 1;
490 return rval;
493 /* Subroutine of build_vec_init_expr: Build up a single element
494 intialization as a proxy for the full array initialization to get things
495 marked as used and any appropriate diagnostics.
497 Since we're deferring building the actual constructor calls until
498 gimplification time, we need to build one now and throw it away so
499 that the relevant constructor gets mark_used before cgraph decides
500 what functions are needed. Here we assume that init is either
501 NULL_TREE, void_type_node (indicating value-initialization), or
502 another array to copy. */
504 static tree
505 build_vec_init_elt (tree type, tree init, tsubst_flags_t complain)
507 tree inner_type = strip_array_types (type);
508 vec<tree, va_gc> *argvec;
510 if (integer_zerop (array_type_nelts_total (type))
511 || !CLASS_TYPE_P (inner_type))
512 /* No interesting initialization to do. */
513 return integer_zero_node;
514 else if (init == void_type_node)
515 return build_value_init (inner_type, complain);
517 gcc_assert (init == NULL_TREE
518 || (same_type_ignoring_top_level_qualifiers_p
519 (type, TREE_TYPE (init))));
521 argvec = make_tree_vector ();
522 if (init)
524 tree init_type = strip_array_types (TREE_TYPE (init));
525 tree dummy = build_dummy_object (init_type);
526 if (!real_lvalue_p (init))
527 dummy = move (dummy);
528 argvec->quick_push (dummy);
530 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
531 &argvec, inner_type, LOOKUP_NORMAL,
532 complain);
533 release_tree_vector (argvec);
535 /* For a trivial constructor, build_over_call creates a TARGET_EXPR. But
536 we don't want one here because we aren't creating a temporary. */
537 if (TREE_CODE (init) == TARGET_EXPR)
538 init = TARGET_EXPR_INITIAL (init);
540 return init;
543 /* Return a TARGET_EXPR which expresses the initialization of an array to
544 be named later, either default-initialization or copy-initialization
545 from another array of the same type. */
547 tree
548 build_vec_init_expr (tree type, tree init, tsubst_flags_t complain)
550 tree slot;
551 bool value_init = false;
552 tree elt_init = build_vec_init_elt (type, init, complain);
554 if (init == void_type_node)
556 value_init = true;
557 init = NULL_TREE;
560 slot = build_local_temp (type);
561 init = build2 (VEC_INIT_EXPR, type, slot, init);
562 TREE_SIDE_EFFECTS (init) = true;
563 SET_EXPR_LOCATION (init, input_location);
565 if (cxx_dialect >= cxx0x
566 && potential_constant_expression (elt_init))
567 VEC_INIT_EXPR_IS_CONSTEXPR (init) = true;
568 VEC_INIT_EXPR_VALUE_INIT (init) = value_init;
570 return init;
573 /* Give a helpful diagnostic for a non-constexpr VEC_INIT_EXPR in a context
574 that requires a constant expression. */
576 void
577 diagnose_non_constexpr_vec_init (tree expr)
579 tree type = TREE_TYPE (VEC_INIT_EXPR_SLOT (expr));
580 tree init, elt_init;
581 if (VEC_INIT_EXPR_VALUE_INIT (expr))
582 init = void_type_node;
583 else
584 init = VEC_INIT_EXPR_INIT (expr);
586 elt_init = build_vec_init_elt (type, init, tf_warning_or_error);
587 require_potential_constant_expression (elt_init);
590 tree
591 build_array_copy (tree init)
593 return build_vec_init_expr (TREE_TYPE (init), init, tf_warning_or_error);
596 /* Build a TARGET_EXPR using INIT to initialize a new temporary of the
597 indicated TYPE. */
599 tree
600 build_target_expr_with_type (tree init, tree type, tsubst_flags_t complain)
602 gcc_assert (!VOID_TYPE_P (type));
604 if (TREE_CODE (init) == TARGET_EXPR
605 || init == error_mark_node)
606 return init;
607 else if (CLASS_TYPE_P (type) && type_has_nontrivial_copy_init (type)
608 && !VOID_TYPE_P (TREE_TYPE (init))
609 && TREE_CODE (init) != COND_EXPR
610 && TREE_CODE (init) != CONSTRUCTOR
611 && TREE_CODE (init) != VA_ARG_EXPR)
612 /* We need to build up a copy constructor call. A void initializer
613 means we're being called from bot_manip. COND_EXPR is a special
614 case because we already have copies on the arms and we don't want
615 another one here. A CONSTRUCTOR is aggregate initialization, which
616 is handled separately. A VA_ARG_EXPR is magic creation of an
617 aggregate; there's no additional work to be done. */
618 return force_rvalue (init, complain);
620 return force_target_expr (type, init, complain);
623 /* Like the above function, but without the checking. This function should
624 only be used by code which is deliberately trying to subvert the type
625 system, such as call_builtin_trap. Or build_over_call, to avoid
626 infinite recursion. */
628 tree
629 force_target_expr (tree type, tree init, tsubst_flags_t complain)
631 tree slot;
633 gcc_assert (!VOID_TYPE_P (type));
635 slot = build_local_temp (type);
636 return build_target_expr (slot, init, complain);
639 /* Like build_target_expr_with_type, but use the type of INIT. */
641 tree
642 get_target_expr_sfinae (tree init, tsubst_flags_t complain)
644 if (TREE_CODE (init) == AGGR_INIT_EXPR)
645 return build_target_expr (AGGR_INIT_EXPR_SLOT (init), init, complain);
646 else if (TREE_CODE (init) == VEC_INIT_EXPR)
647 return build_target_expr (VEC_INIT_EXPR_SLOT (init), init, complain);
648 else
649 return build_target_expr_with_type (init, TREE_TYPE (init), complain);
652 tree
653 get_target_expr (tree init)
655 return get_target_expr_sfinae (init, tf_warning_or_error);
658 /* If EXPR is a bitfield reference, convert it to the declared type of
659 the bitfield, and return the resulting expression. Otherwise,
660 return EXPR itself. */
662 tree
663 convert_bitfield_to_declared_type (tree expr)
665 tree bitfield_type;
667 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
668 if (bitfield_type)
669 expr = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type),
670 expr);
671 return expr;
674 /* EXPR is being used in an rvalue context. Return a version of EXPR
675 that is marked as an rvalue. */
677 tree
678 rvalue (tree expr)
680 tree type;
682 if (error_operand_p (expr))
683 return expr;
685 expr = mark_rvalue_use (expr);
687 /* [basic.lval]
689 Non-class rvalues always have cv-unqualified types. */
690 type = TREE_TYPE (expr);
691 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
692 type = cv_unqualified (type);
694 /* We need to do this for rvalue refs as well to get the right answer
695 from decltype; see c++/36628. */
696 if (!processing_template_decl && lvalue_or_rvalue_with_address_p (expr))
697 expr = build1 (NON_LVALUE_EXPR, type, expr);
698 else if (type != TREE_TYPE (expr))
699 expr = build_nop (type, expr);
701 return expr;
705 /* Hash an ARRAY_TYPE. K is really of type `tree'. */
707 static hashval_t
708 cplus_array_hash (const void* k)
710 hashval_t hash;
711 const_tree const t = (const_tree) k;
713 hash = TYPE_UID (TREE_TYPE (t));
714 if (TYPE_DOMAIN (t))
715 hash ^= TYPE_UID (TYPE_DOMAIN (t));
716 return hash;
719 typedef struct cplus_array_info {
720 tree type;
721 tree domain;
722 } cplus_array_info;
724 /* Compare two ARRAY_TYPEs. K1 is really of type `tree', K2 is really
725 of type `cplus_array_info*'. */
727 static int
728 cplus_array_compare (const void * k1, const void * k2)
730 const_tree const t1 = (const_tree) k1;
731 const cplus_array_info *const t2 = (const cplus_array_info*) k2;
733 return (TREE_TYPE (t1) == t2->type && TYPE_DOMAIN (t1) == t2->domain);
736 /* Hash table containing dependent array types, which are unsuitable for
737 the language-independent type hash table. */
738 static GTY ((param_is (union tree_node))) htab_t cplus_array_htab;
740 /* Like build_array_type, but handle special C++ semantics. */
742 tree
743 build_cplus_array_type (tree elt_type, tree index_type)
745 tree t;
747 if (elt_type == error_mark_node || index_type == error_mark_node)
748 return error_mark_node;
750 if (processing_template_decl
751 && (dependent_type_p (elt_type)
752 || (index_type && !TREE_CONSTANT (TYPE_MAX_VALUE (index_type)))))
754 void **e;
755 cplus_array_info cai;
756 hashval_t hash;
758 if (cplus_array_htab == NULL)
759 cplus_array_htab = htab_create_ggc (61, &cplus_array_hash,
760 &cplus_array_compare, NULL);
762 hash = TYPE_UID (elt_type);
763 if (index_type)
764 hash ^= TYPE_UID (index_type);
765 cai.type = elt_type;
766 cai.domain = index_type;
768 e = htab_find_slot_with_hash (cplus_array_htab, &cai, hash, INSERT);
769 if (*e)
770 /* We have found the type: we're done. */
771 return (tree) *e;
772 else
774 /* Build a new array type. */
775 t = cxx_make_type (ARRAY_TYPE);
776 TREE_TYPE (t) = elt_type;
777 TYPE_DOMAIN (t) = index_type;
779 /* Store it in the hash table. */
780 *e = t;
782 /* Set the canonical type for this new node. */
783 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
784 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
785 SET_TYPE_STRUCTURAL_EQUALITY (t);
786 else if (TYPE_CANONICAL (elt_type) != elt_type
787 || (index_type
788 && TYPE_CANONICAL (index_type) != index_type))
789 TYPE_CANONICAL (t)
790 = build_cplus_array_type
791 (TYPE_CANONICAL (elt_type),
792 index_type ? TYPE_CANONICAL (index_type) : index_type);
793 else
794 TYPE_CANONICAL (t) = t;
797 else
799 if (!TYPE_STRUCTURAL_EQUALITY_P (elt_type)
800 && !(index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type))
801 && (TYPE_CANONICAL (elt_type) != elt_type
802 || (index_type && TYPE_CANONICAL (index_type) != index_type)))
803 /* Make sure that the canonical type is on the appropriate
804 variants list. */
805 build_cplus_array_type
806 (TYPE_CANONICAL (elt_type),
807 index_type ? TYPE_CANONICAL (index_type) : index_type);
808 t = build_array_type (elt_type, index_type);
811 /* Push these needs up so that initialization takes place
812 more easily. */
813 bool needs_ctor
814 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (elt_type));
815 TYPE_NEEDS_CONSTRUCTING (t) = needs_ctor;
816 bool needs_dtor
817 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (elt_type));
818 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = needs_dtor;
820 /* We want TYPE_MAIN_VARIANT of an array to strip cv-quals from the
821 element type as well, so fix it up if needed. */
822 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
824 tree m = build_cplus_array_type (TYPE_MAIN_VARIANT (elt_type),
825 index_type);
827 if (TYPE_MAIN_VARIANT (t) != m)
829 if (COMPLETE_TYPE_P (t) && !COMPLETE_TYPE_P (m))
831 /* m was built before the element type was complete, so we
832 also need to copy the layout info from t. */
833 tree size = TYPE_SIZE (t);
834 tree size_unit = TYPE_SIZE_UNIT (t);
835 unsigned int align = TYPE_ALIGN (t);
836 unsigned int user_align = TYPE_USER_ALIGN (t);
837 enum machine_mode mode = TYPE_MODE (t);
838 for (tree var = m; var; var = TYPE_NEXT_VARIANT (var))
840 TYPE_SIZE (var) = size;
841 TYPE_SIZE_UNIT (var) = size_unit;
842 TYPE_ALIGN (var) = align;
843 TYPE_USER_ALIGN (var) = user_align;
844 SET_TYPE_MODE (var, mode);
845 TYPE_NEEDS_CONSTRUCTING (var) = needs_ctor;
846 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (var) = needs_dtor;
850 TYPE_MAIN_VARIANT (t) = m;
851 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
852 TYPE_NEXT_VARIANT (m) = t;
856 /* Avoid spurious warnings with VLAs (c++/54583). */
857 if (TYPE_SIZE (t) && EXPR_P (TYPE_SIZE (t)))
858 TREE_NO_WARNING (TYPE_SIZE (t)) = 1;
860 return t;
863 /* Return an ARRAY_TYPE with element type ELT and length N. */
865 tree
866 build_array_of_n_type (tree elt, int n)
868 return build_cplus_array_type (elt, build_index_type (size_int (n - 1)));
871 /* Return a reference type node referring to TO_TYPE. If RVAL is
872 true, return an rvalue reference type, otherwise return an lvalue
873 reference type. If a type node exists, reuse it, otherwise create
874 a new one. */
875 tree
876 cp_build_reference_type (tree to_type, bool rval)
878 tree lvalue_ref, t;
879 lvalue_ref = build_reference_type (to_type);
880 if (!rval)
881 return lvalue_ref;
883 /* This code to create rvalue reference types is based on and tied
884 to the code creating lvalue reference types in the middle-end
885 functions build_reference_type_for_mode and build_reference_type.
887 It works by putting the rvalue reference type nodes after the
888 lvalue reference nodes in the TYPE_NEXT_REF_TO linked list, so
889 they will effectively be ignored by the middle end. */
891 for (t = lvalue_ref; (t = TYPE_NEXT_REF_TO (t)); )
892 if (TYPE_REF_IS_RVALUE (t))
893 return t;
895 t = build_distinct_type_copy (lvalue_ref);
897 TYPE_REF_IS_RVALUE (t) = true;
898 TYPE_NEXT_REF_TO (t) = TYPE_NEXT_REF_TO (lvalue_ref);
899 TYPE_NEXT_REF_TO (lvalue_ref) = t;
901 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
902 SET_TYPE_STRUCTURAL_EQUALITY (t);
903 else if (TYPE_CANONICAL (to_type) != to_type)
904 TYPE_CANONICAL (t)
905 = cp_build_reference_type (TYPE_CANONICAL (to_type), rval);
906 else
907 TYPE_CANONICAL (t) = t;
909 layout_type (t);
911 return t;
915 /* Returns EXPR cast to rvalue reference type, like std::move. */
917 tree
918 move (tree expr)
920 tree type = TREE_TYPE (expr);
921 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
922 type = cp_build_reference_type (type, /*rval*/true);
923 return build_static_cast (type, expr, tf_warning_or_error);
926 /* Used by the C++ front end to build qualified array types. However,
927 the C version of this function does not properly maintain canonical
928 types (which are not used in C). */
929 tree
930 c_build_qualified_type_1 (tree type, int type_quals, tree ARG_UNUSED(layout_qualiefier))
932 return cp_build_qualified_type (type, type_quals);
936 /* Make a variant of TYPE, qualified with the TYPE_QUALS. Handles
937 arrays correctly. In particular, if TYPE is an array of T's, and
938 TYPE_QUALS is non-empty, returns an array of qualified T's.
940 FLAGS determines how to deal with ill-formed qualifications. If
941 tf_ignore_bad_quals is set, then bad qualifications are dropped
942 (this is permitted if TYPE was introduced via a typedef or template
943 type parameter). If bad qualifications are dropped and tf_warning
944 is set, then a warning is issued for non-const qualifications. If
945 tf_ignore_bad_quals is not set and tf_error is not set, we
946 return error_mark_node. Otherwise, we issue an error, and ignore
947 the qualifications.
949 Qualification of a reference type is valid when the reference came
950 via a typedef or template type argument. [dcl.ref] No such
951 dispensation is provided for qualifying a function type. [dcl.fct]
952 DR 295 queries this and the proposed resolution brings it into line
953 with qualifying a reference. We implement the DR. We also behave
954 in a similar manner for restricting non-pointer types. */
956 tree
957 cp_build_qualified_type_real (tree type,
958 int type_quals,
959 tsubst_flags_t complain)
961 tree result;
962 int bad_quals = TYPE_UNQUALIFIED;
964 if (type == error_mark_node)
965 return type;
967 if (type_quals == cp_type_quals (type))
968 return type;
970 if (TREE_CODE (type) == ARRAY_TYPE)
972 /* In C++, the qualification really applies to the array element
973 type. Obtain the appropriately qualified element type. */
974 tree t;
975 tree element_type
976 = cp_build_qualified_type_real (TREE_TYPE (type),
977 type_quals,
978 complain);
980 if (element_type == error_mark_node)
981 return error_mark_node;
983 /* See if we already have an identically qualified type. Tests
984 should be equivalent to those in check_qualified_type. */
985 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
986 if (TREE_TYPE (t) == element_type
987 && TYPE_NAME (t) == TYPE_NAME (type)
988 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
989 && attribute_list_equal (TYPE_ATTRIBUTES (t),
990 TYPE_ATTRIBUTES (type)))
991 break;
993 if (!t)
995 t = build_cplus_array_type (element_type, TYPE_DOMAIN (type));
997 /* Keep the typedef name. */
998 if (TYPE_NAME (t) != TYPE_NAME (type))
1000 t = build_variant_type_copy (t);
1001 TYPE_NAME (t) = TYPE_NAME (type);
1005 /* Even if we already had this variant, we update
1006 TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
1007 they changed since the variant was originally created.
1009 This seems hokey; if there is some way to use a previous
1010 variant *without* coming through here,
1011 TYPE_NEEDS_CONSTRUCTING will never be updated. */
1012 TYPE_NEEDS_CONSTRUCTING (t)
1013 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
1014 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1015 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
1016 return t;
1018 else if (TYPE_PTRMEMFUNC_P (type))
1020 /* For a pointer-to-member type, we can't just return a
1021 cv-qualified version of the RECORD_TYPE. If we do, we
1022 haven't changed the field that contains the actual pointer to
1023 a method, and so TYPE_PTRMEMFUNC_FN_TYPE will be wrong. */
1024 tree t;
1026 t = TYPE_PTRMEMFUNC_FN_TYPE (type);
1027 t = cp_build_qualified_type_real (t, type_quals, complain);
1028 return build_ptrmemfunc_type (t);
1030 else if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
1032 tree t = PACK_EXPANSION_PATTERN (type);
1034 t = cp_build_qualified_type_real (t, type_quals, complain);
1035 return make_pack_expansion (t);
1038 /* A reference or method type shall not be cv-qualified.
1039 [dcl.ref], [dcl.fct]. This used to be an error, but as of DR 295
1040 (in CD1) we always ignore extra cv-quals on functions. */
1041 if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
1042 && (TREE_CODE (type) == REFERENCE_TYPE
1043 || TREE_CODE (type) == FUNCTION_TYPE
1044 || TREE_CODE (type) == METHOD_TYPE))
1046 if (TREE_CODE (type) == REFERENCE_TYPE)
1047 bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1048 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1051 /* But preserve any function-cv-quals on a FUNCTION_TYPE. */
1052 if (TREE_CODE (type) == FUNCTION_TYPE)
1053 type_quals |= type_memfn_quals (type);
1055 /* A restrict-qualified type must be a pointer (or reference)
1056 to object or incomplete type. */
1057 if ((type_quals & TYPE_QUAL_RESTRICT)
1058 && TREE_CODE (type) != TEMPLATE_TYPE_PARM
1059 && TREE_CODE (type) != TYPENAME_TYPE
1060 && !POINTER_TYPE_P (type))
1062 bad_quals |= TYPE_QUAL_RESTRICT;
1063 type_quals &= ~TYPE_QUAL_RESTRICT;
1066 if (bad_quals == TYPE_UNQUALIFIED
1067 || (complain & tf_ignore_bad_quals))
1068 /*OK*/;
1069 else if (!(complain & tf_error))
1070 return error_mark_node;
1071 else
1073 tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
1074 error ("%qV qualifiers cannot be applied to %qT",
1075 bad_type, type);
1078 /* Retrieve (or create) the appropriately qualified variant. */
1079 result = build_qualified_type (type, type_quals);
1081 /* If this was a pointer-to-method type, and we just made a copy,
1082 then we need to unshare the record that holds the cached
1083 pointer-to-member-function type, because these will be distinct
1084 between the unqualified and qualified types. */
1085 if (result != type
1086 && TREE_CODE (type) == POINTER_TYPE
1087 && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE
1088 && TYPE_LANG_SPECIFIC (result) == TYPE_LANG_SPECIFIC (type))
1089 TYPE_LANG_SPECIFIC (result) = NULL;
1091 /* We may also have ended up building a new copy of the canonical
1092 type of a pointer-to-method type, which could have the same
1093 sharing problem described above. */
1094 if (TYPE_CANONICAL (result) != TYPE_CANONICAL (type)
1095 && TREE_CODE (type) == POINTER_TYPE
1096 && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE
1097 && (TYPE_LANG_SPECIFIC (TYPE_CANONICAL (result))
1098 == TYPE_LANG_SPECIFIC (TYPE_CANONICAL (type))))
1099 TYPE_LANG_SPECIFIC (TYPE_CANONICAL (result)) = NULL;
1101 return result;
1104 /* Return TYPE with const and volatile removed. */
1106 tree
1107 cv_unqualified (tree type)
1109 int quals;
1111 if (type == error_mark_node)
1112 return type;
1114 quals = cp_type_quals (type);
1115 quals &= ~(TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE);
1116 return cp_build_qualified_type (type, quals);
1119 /* Builds a qualified variant of T that is not a typedef variant.
1120 E.g. consider the following declarations:
1121 typedef const int ConstInt;
1122 typedef ConstInt* PtrConstInt;
1123 If T is PtrConstInt, this function returns a type representing
1124 const int*.
1125 In other words, if T is a typedef, the function returns the underlying type.
1126 The cv-qualification and attributes of the type returned match the
1127 input type.
1128 They will always be compatible types.
1129 The returned type is built so that all of its subtypes
1130 recursively have their typedefs stripped as well.
1132 This is different from just returning TYPE_CANONICAL (T)
1133 Because of several reasons:
1134 * If T is a type that needs structural equality
1135 its TYPE_CANONICAL (T) will be NULL.
1136 * TYPE_CANONICAL (T) desn't carry type attributes
1137 and loses template parameter names. */
1139 tree
1140 strip_typedefs (tree t)
1142 tree result = NULL, type = NULL, t0 = NULL;
1144 if (!t || t == error_mark_node || t == TYPE_CANONICAL (t))
1145 return t;
1147 gcc_assert (TYPE_P (t));
1149 switch (TREE_CODE (t))
1151 case POINTER_TYPE:
1152 type = strip_typedefs (TREE_TYPE (t));
1153 result = build_pointer_type (type);
1154 break;
1155 case REFERENCE_TYPE:
1156 type = strip_typedefs (TREE_TYPE (t));
1157 result = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
1158 break;
1159 case OFFSET_TYPE:
1160 t0 = strip_typedefs (TYPE_OFFSET_BASETYPE (t));
1161 type = strip_typedefs (TREE_TYPE (t));
1162 result = build_offset_type (t0, type);
1163 break;
1164 case RECORD_TYPE:
1165 if (TYPE_PTRMEMFUNC_P (t))
1167 t0 = strip_typedefs (TYPE_PTRMEMFUNC_FN_TYPE (t));
1168 result = build_ptrmemfunc_type (t0);
1170 break;
1171 case ARRAY_TYPE:
1172 type = strip_typedefs (TREE_TYPE (t));
1173 t0 = strip_typedefs (TYPE_DOMAIN (t));;
1174 result = build_cplus_array_type (type, t0);
1175 break;
1176 case FUNCTION_TYPE:
1177 case METHOD_TYPE:
1179 tree arg_types = NULL, arg_node, arg_type;
1180 for (arg_node = TYPE_ARG_TYPES (t);
1181 arg_node;
1182 arg_node = TREE_CHAIN (arg_node))
1184 if (arg_node == void_list_node)
1185 break;
1186 arg_type = strip_typedefs (TREE_VALUE (arg_node));
1187 gcc_assert (arg_type);
1189 arg_types =
1190 tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types);
1193 if (arg_types)
1194 arg_types = nreverse (arg_types);
1196 /* A list of parameters not ending with an ellipsis
1197 must end with void_list_node. */
1198 if (arg_node)
1199 arg_types = chainon (arg_types, void_list_node);
1201 type = strip_typedefs (TREE_TYPE (t));
1202 if (TREE_CODE (t) == METHOD_TYPE)
1204 tree class_type = TREE_TYPE (TREE_VALUE (arg_types));
1205 gcc_assert (class_type);
1206 result =
1207 build_method_type_directly (class_type, type,
1208 TREE_CHAIN (arg_types));
1210 else
1212 result = build_function_type (type,
1213 arg_types);
1214 result = apply_memfn_quals (result, type_memfn_quals (t));
1217 if (TYPE_RAISES_EXCEPTIONS (t))
1218 result = build_exception_variant (result,
1219 TYPE_RAISES_EXCEPTIONS (t));
1221 break;
1222 case TYPENAME_TYPE:
1223 result = make_typename_type (strip_typedefs (TYPE_CONTEXT (t)),
1224 TYPENAME_TYPE_FULLNAME (t),
1225 typename_type, tf_none);
1226 break;
1227 case DECLTYPE_TYPE:
1228 result = strip_typedefs_expr (DECLTYPE_TYPE_EXPR (t));
1229 if (result == DECLTYPE_TYPE_EXPR (t))
1230 return t;
1231 else
1232 result = (finish_decltype_type
1233 (result,
1234 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t),
1235 tf_none));
1236 break;
1237 default:
1238 break;
1241 if (!result)
1242 result = TYPE_MAIN_VARIANT (t);
1243 if (TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (result)
1244 || TYPE_ALIGN (t) != TYPE_ALIGN (result))
1246 gcc_assert (TYPE_USER_ALIGN (t));
1247 if (TYPE_ALIGN (t) == TYPE_ALIGN (result))
1248 result = build_variant_type_copy (result);
1249 else
1250 result = build_aligned_type (result, TYPE_ALIGN (t));
1251 TYPE_USER_ALIGN (result) = true;
1253 if (TYPE_ATTRIBUTES (t))
1254 result = cp_build_type_attribute_variant (result, TYPE_ATTRIBUTES (t));
1255 return cp_build_qualified_type (result, cp_type_quals (t));
1258 /* Like strip_typedefs above, but works on expressions, so that in
1260 template<class T> struct A
1262 typedef T TT;
1263 B<sizeof(TT)> b;
1266 sizeof(TT) is replaced by sizeof(T). */
1268 tree
1269 strip_typedefs_expr (tree t)
1271 unsigned i,n;
1272 tree r, type, *ops;
1273 enum tree_code code;
1275 if (t == NULL_TREE || t == error_mark_node)
1276 return t;
1278 if (DECL_P (t) || CONSTANT_CLASS_P (t))
1279 return t;
1281 /* Some expressions have type operands, so let's handle types here rather
1282 than check TYPE_P in multiple places below. */
1283 if (TYPE_P (t))
1284 return strip_typedefs (t);
1286 code = TREE_CODE (t);
1287 switch (code)
1289 case IDENTIFIER_NODE:
1290 case TEMPLATE_PARM_INDEX:
1291 case OVERLOAD:
1292 case BASELINK:
1293 case ARGUMENT_PACK_SELECT:
1294 return t;
1296 case TRAIT_EXPR:
1298 tree type1 = strip_typedefs (TRAIT_EXPR_TYPE1 (t));
1299 tree type2 = strip_typedefs (TRAIT_EXPR_TYPE2 (t));
1300 if (type1 == TRAIT_EXPR_TYPE1 (t)
1301 && type2 == TRAIT_EXPR_TYPE2 (t))
1302 return t;
1303 r = copy_node (t);
1304 TRAIT_EXPR_TYPE1 (t) = type1;
1305 TRAIT_EXPR_TYPE2 (t) = type2;
1306 return r;
1309 case TREE_LIST:
1311 vec<tree, va_gc> *vec = make_tree_vector ();
1312 bool changed = false;
1313 tree it;
1314 for (it = t; it; it = TREE_CHAIN (it))
1316 tree val = strip_typedefs_expr (TREE_VALUE (t));
1317 vec_safe_push (vec, val);
1318 if (val != TREE_VALUE (t))
1319 changed = true;
1320 gcc_assert (TREE_PURPOSE (it) == NULL_TREE);
1322 if (changed)
1324 r = NULL_TREE;
1325 FOR_EACH_VEC_ELT_REVERSE (*vec, i, it)
1326 r = tree_cons (NULL_TREE, it, r);
1328 else
1329 r = t;
1330 release_tree_vector (vec);
1331 return r;
1334 case TREE_VEC:
1336 bool changed = false;
1337 vec<tree, va_gc> *vec = make_tree_vector ();
1338 n = TREE_VEC_LENGTH (t);
1339 vec_safe_reserve (vec, n);
1340 for (i = 0; i < n; ++i)
1342 tree op = strip_typedefs_expr (TREE_VEC_ELT (t, i));
1343 vec->quick_push (op);
1344 if (op != TREE_VEC_ELT (t, i))
1345 changed = true;
1347 if (changed)
1349 r = copy_node (t);
1350 for (i = 0; i < n; ++i)
1351 TREE_VEC_ELT (r, i) = (*vec)[i];
1352 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
1353 (r, GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t));
1355 else
1356 r = t;
1357 release_tree_vector (vec);
1358 return r;
1361 case CONSTRUCTOR:
1363 bool changed = false;
1364 vec<constructor_elt, va_gc> *vec
1365 = vec_safe_copy (CONSTRUCTOR_ELTS (t));
1366 n = CONSTRUCTOR_NELTS (t);
1367 type = strip_typedefs (TREE_TYPE (t));
1368 for (i = 0; i < n; ++i)
1370 constructor_elt *e = &(*vec)[i];
1371 tree op = strip_typedefs_expr (e->value);
1372 if (op != e->value)
1374 changed = true;
1375 e->value = op;
1377 gcc_checking_assert (e->index == strip_typedefs_expr (e->index));
1380 if (!changed && type == TREE_TYPE (t))
1382 vec_free (vec);
1383 return t;
1385 else
1387 r = copy_node (t);
1388 TREE_TYPE (r) = type;
1389 CONSTRUCTOR_ELTS (r) = vec;
1390 return r;
1394 case LAMBDA_EXPR:
1395 gcc_unreachable ();
1397 default:
1398 break;
1401 gcc_assert (EXPR_P (t));
1403 n = TREE_OPERAND_LENGTH (t);
1404 ops = XALLOCAVEC (tree, n);
1405 type = TREE_TYPE (t);
1407 switch (code)
1409 CASE_CONVERT:
1410 case IMPLICIT_CONV_EXPR:
1411 case DYNAMIC_CAST_EXPR:
1412 case STATIC_CAST_EXPR:
1413 case CONST_CAST_EXPR:
1414 case REINTERPRET_CAST_EXPR:
1415 case CAST_EXPR:
1416 case NEW_EXPR:
1417 type = strip_typedefs (type);
1418 /* fallthrough */
1420 default:
1421 for (i = 0; i < n; ++i)
1422 ops[i] = strip_typedefs_expr (TREE_OPERAND (t, i));
1423 break;
1426 /* If nothing changed, return t. */
1427 for (i = 0; i < n; ++i)
1428 if (ops[i] != TREE_OPERAND (t, i))
1429 break;
1430 if (i == n && type == TREE_TYPE (t))
1431 return t;
1433 r = copy_node (t);
1434 TREE_TYPE (r) = type;
1435 for (i = 0; i < n; ++i)
1436 TREE_OPERAND (r, i) = ops[i];
1437 return r;
1440 /* Makes a copy of BINFO and TYPE, which is to be inherited into a
1441 graph dominated by T. If BINFO is NULL, TYPE is a dependent base,
1442 and we do a shallow copy. If BINFO is non-NULL, we do a deep copy.
1443 VIRT indicates whether TYPE is inherited virtually or not.
1444 IGO_PREV points at the previous binfo of the inheritance graph
1445 order chain. The newly copied binfo's TREE_CHAIN forms this
1446 ordering.
1448 The CLASSTYPE_VBASECLASSES vector of T is constructed in the
1449 correct order. That is in the order the bases themselves should be
1450 constructed in.
1452 The BINFO_INHERITANCE of a virtual base class points to the binfo
1453 of the most derived type. ??? We could probably change this so that
1454 BINFO_INHERITANCE becomes synonymous with BINFO_PRIMARY, and hence
1455 remove a field. They currently can only differ for primary virtual
1456 virtual bases. */
1458 tree
1459 copy_binfo (tree binfo, tree type, tree t, tree *igo_prev, int virt)
1461 tree new_binfo;
1463 if (virt)
1465 /* See if we've already made this virtual base. */
1466 new_binfo = binfo_for_vbase (type, t);
1467 if (new_binfo)
1468 return new_binfo;
1471 new_binfo = make_tree_binfo (binfo ? BINFO_N_BASE_BINFOS (binfo) : 0);
1472 BINFO_TYPE (new_binfo) = type;
1474 /* Chain it into the inheritance graph. */
1475 TREE_CHAIN (*igo_prev) = new_binfo;
1476 *igo_prev = new_binfo;
1478 if (binfo && !BINFO_DEPENDENT_BASE_P (binfo))
1480 int ix;
1481 tree base_binfo;
1483 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), type));
1485 BINFO_OFFSET (new_binfo) = BINFO_OFFSET (binfo);
1486 BINFO_VIRTUALS (new_binfo) = BINFO_VIRTUALS (binfo);
1488 /* We do not need to copy the accesses, as they are read only. */
1489 BINFO_BASE_ACCESSES (new_binfo) = BINFO_BASE_ACCESSES (binfo);
1491 /* Recursively copy base binfos of BINFO. */
1492 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1494 tree new_base_binfo;
1495 new_base_binfo = copy_binfo (base_binfo, BINFO_TYPE (base_binfo),
1496 t, igo_prev,
1497 BINFO_VIRTUAL_P (base_binfo));
1499 if (!BINFO_INHERITANCE_CHAIN (new_base_binfo))
1500 BINFO_INHERITANCE_CHAIN (new_base_binfo) = new_binfo;
1501 BINFO_BASE_APPEND (new_binfo, new_base_binfo);
1504 else
1505 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
1507 if (virt)
1509 /* Push it onto the list after any virtual bases it contains
1510 will have been pushed. */
1511 CLASSTYPE_VBASECLASSES (t)->quick_push (new_binfo);
1512 BINFO_VIRTUAL_P (new_binfo) = 1;
1513 BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
1516 return new_binfo;
1519 /* Hashing of lists so that we don't make duplicates.
1520 The entry point is `list_hash_canon'. */
1522 /* Now here is the hash table. When recording a list, it is added
1523 to the slot whose index is the hash code mod the table size.
1524 Note that the hash table is used for several kinds of lists.
1525 While all these live in the same table, they are completely independent,
1526 and the hash code is computed differently for each of these. */
1528 static GTY ((param_is (union tree_node))) htab_t list_hash_table;
1530 struct list_proxy
1532 tree purpose;
1533 tree value;
1534 tree chain;
1537 /* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
1538 for a node we are thinking about adding). */
1540 static int
1541 list_hash_eq (const void* entry, const void* data)
1543 const_tree const t = (const_tree) entry;
1544 const struct list_proxy *const proxy = (const struct list_proxy *) data;
1546 return (TREE_VALUE (t) == proxy->value
1547 && TREE_PURPOSE (t) == proxy->purpose
1548 && TREE_CHAIN (t) == proxy->chain);
1551 /* Compute a hash code for a list (chain of TREE_LIST nodes
1552 with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
1553 TREE_COMMON slots), by adding the hash codes of the individual entries. */
1555 static hashval_t
1556 list_hash_pieces (tree purpose, tree value, tree chain)
1558 hashval_t hashcode = 0;
1560 if (chain)
1561 hashcode += TREE_HASH (chain);
1563 if (value)
1564 hashcode += TREE_HASH (value);
1565 else
1566 hashcode += 1007;
1567 if (purpose)
1568 hashcode += TREE_HASH (purpose);
1569 else
1570 hashcode += 1009;
1571 return hashcode;
1574 /* Hash an already existing TREE_LIST. */
1576 static hashval_t
1577 list_hash (const void* p)
1579 const_tree const t = (const_tree) p;
1580 return list_hash_pieces (TREE_PURPOSE (t),
1581 TREE_VALUE (t),
1582 TREE_CHAIN (t));
1585 /* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
1586 object for an identical list if one already exists. Otherwise, build a
1587 new one, and record it as the canonical object. */
1589 tree
1590 hash_tree_cons (tree purpose, tree value, tree chain)
1592 int hashcode = 0;
1593 void **slot;
1594 struct list_proxy proxy;
1596 /* Hash the list node. */
1597 hashcode = list_hash_pieces (purpose, value, chain);
1598 /* Create a proxy for the TREE_LIST we would like to create. We
1599 don't actually create it so as to avoid creating garbage. */
1600 proxy.purpose = purpose;
1601 proxy.value = value;
1602 proxy.chain = chain;
1603 /* See if it is already in the table. */
1604 slot = htab_find_slot_with_hash (list_hash_table, &proxy, hashcode,
1605 INSERT);
1606 /* If not, create a new node. */
1607 if (!*slot)
1608 *slot = tree_cons (purpose, value, chain);
1609 return (tree) *slot;
1612 /* Constructor for hashed lists. */
1614 tree
1615 hash_tree_chain (tree value, tree chain)
1617 return hash_tree_cons (NULL_TREE, value, chain);
1620 void
1621 debug_binfo (tree elem)
1623 HOST_WIDE_INT n;
1624 tree virtuals;
1626 fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
1627 "\nvtable type:\n",
1628 TYPE_NAME_STRING (BINFO_TYPE (elem)),
1629 TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
1630 debug_tree (BINFO_TYPE (elem));
1631 if (BINFO_VTABLE (elem))
1632 fprintf (stderr, "vtable decl \"%s\"\n",
1633 IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
1634 else
1635 fprintf (stderr, "no vtable decl yet\n");
1636 fprintf (stderr, "virtuals:\n");
1637 virtuals = BINFO_VIRTUALS (elem);
1638 n = 0;
1640 while (virtuals)
1642 tree fndecl = TREE_VALUE (virtuals);
1643 fprintf (stderr, "%s [%ld =? %ld]\n",
1644 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
1645 (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
1646 ++n;
1647 virtuals = TREE_CHAIN (virtuals);
1651 /* Build a representation for the qualified name SCOPE::NAME. TYPE is
1652 the type of the result expression, if known, or NULL_TREE if the
1653 resulting expression is type-dependent. If TEMPLATE_P is true,
1654 NAME is known to be a template because the user explicitly used the
1655 "template" keyword after the "::".
1657 All SCOPE_REFs should be built by use of this function. */
1659 tree
1660 build_qualified_name (tree type, tree scope, tree name, bool template_p)
1662 tree t;
1663 if (type == error_mark_node
1664 || scope == error_mark_node
1665 || name == error_mark_node)
1666 return error_mark_node;
1667 t = build2 (SCOPE_REF, type, scope, name);
1668 QUALIFIED_NAME_IS_TEMPLATE (t) = template_p;
1669 PTRMEM_OK_P (t) = true;
1670 if (type)
1671 t = convert_from_reference (t);
1672 return t;
1675 /* Returns nonzero if X is an expression for a (possibly overloaded)
1676 function. If "f" is a function or function template, "f", "c->f",
1677 "c.f", "C::f", and "f<int>" will all be considered possibly
1678 overloaded functions. Returns 2 if the function is actually
1679 overloaded, i.e., if it is impossible to know the type of the
1680 function without performing overload resolution. */
1683 is_overloaded_fn (tree x)
1685 /* A baselink is also considered an overloaded function. */
1686 if (TREE_CODE (x) == OFFSET_REF
1687 || TREE_CODE (x) == COMPONENT_REF)
1688 x = TREE_OPERAND (x, 1);
1689 if (BASELINK_P (x))
1690 x = BASELINK_FUNCTIONS (x);
1691 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
1692 x = TREE_OPERAND (x, 0);
1693 if (DECL_FUNCTION_TEMPLATE_P (OVL_CURRENT (x))
1694 || (TREE_CODE (x) == OVERLOAD && OVL_CHAIN (x)))
1695 return 2;
1696 return (TREE_CODE (x) == FUNCTION_DECL
1697 || TREE_CODE (x) == OVERLOAD);
1700 /* X is the CALL_EXPR_FN of a CALL_EXPR. If X represents a dependent name
1701 (14.6.2), return the IDENTIFIER_NODE for that name. Otherwise, return
1702 NULL_TREE. */
1704 tree
1705 dependent_name (tree x)
1707 if (TREE_CODE (x) == IDENTIFIER_NODE)
1708 return x;
1709 if (TREE_CODE (x) != COMPONENT_REF
1710 && TREE_CODE (x) != OFFSET_REF
1711 && TREE_CODE (x) != BASELINK
1712 && is_overloaded_fn (x))
1713 return DECL_NAME (get_first_fn (x));
1714 return NULL_TREE;
1717 /* Returns true iff X is an expression for an overloaded function
1718 whose type cannot be known without performing overload
1719 resolution. */
1721 bool
1722 really_overloaded_fn (tree x)
1724 return is_overloaded_fn (x) == 2;
1727 tree
1728 get_fns (tree from)
1730 gcc_assert (is_overloaded_fn (from));
1731 /* A baselink is also considered an overloaded function. */
1732 if (TREE_CODE (from) == OFFSET_REF
1733 || TREE_CODE (from) == COMPONENT_REF)
1734 from = TREE_OPERAND (from, 1);
1735 if (BASELINK_P (from))
1736 from = BASELINK_FUNCTIONS (from);
1737 if (TREE_CODE (from) == TEMPLATE_ID_EXPR)
1738 from = TREE_OPERAND (from, 0);
1739 return from;
1742 tree
1743 get_first_fn (tree from)
1745 return OVL_CURRENT (get_fns (from));
1748 /* Return a new OVL node, concatenating it with the old one. */
1750 tree
1751 ovl_cons (tree decl, tree chain)
1753 tree result = make_node (OVERLOAD);
1754 TREE_TYPE (result) = unknown_type_node;
1755 OVL_FUNCTION (result) = decl;
1756 TREE_CHAIN (result) = chain;
1758 return result;
1761 /* Build a new overloaded function. If this is the first one,
1762 just return it; otherwise, ovl_cons the _DECLs */
1764 tree
1765 build_overload (tree decl, tree chain)
1767 if (! chain && TREE_CODE (decl) != TEMPLATE_DECL)
1768 return decl;
1769 return ovl_cons (decl, chain);
1772 /* Return the scope where the overloaded functions OVL were found. */
1774 tree
1775 ovl_scope (tree ovl)
1777 if (TREE_CODE (ovl) == OFFSET_REF
1778 || TREE_CODE (ovl) == COMPONENT_REF)
1779 ovl = TREE_OPERAND (ovl, 1);
1780 if (TREE_CODE (ovl) == BASELINK)
1781 return BINFO_TYPE (BASELINK_BINFO (ovl));
1782 if (TREE_CODE (ovl) == TEMPLATE_ID_EXPR)
1783 ovl = TREE_OPERAND (ovl, 0);
1784 /* Skip using-declarations. */
1785 while (TREE_CODE (ovl) == OVERLOAD && OVL_USED (ovl) && OVL_CHAIN (ovl))
1786 ovl = OVL_CHAIN (ovl);
1787 return CP_DECL_CONTEXT (OVL_CURRENT (ovl));
1790 /* Return TRUE if FN is a non-static member function, FALSE otherwise.
1791 This function looks into BASELINK and OVERLOAD nodes. */
1793 bool
1794 non_static_member_function_p (tree fn)
1796 if (fn == NULL_TREE)
1797 return false;
1799 if (is_overloaded_fn (fn))
1800 fn = get_first_fn (fn);
1802 return (DECL_P (fn)
1803 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn));
1807 #define PRINT_RING_SIZE 4
1809 static const char *
1810 cxx_printable_name_internal (tree decl, int v, bool translate)
1812 static unsigned int uid_ring[PRINT_RING_SIZE];
1813 static char *print_ring[PRINT_RING_SIZE];
1814 static bool trans_ring[PRINT_RING_SIZE];
1815 static int ring_counter;
1816 int i;
1818 /* Only cache functions. */
1819 if (v < 2
1820 || TREE_CODE (decl) != FUNCTION_DECL
1821 || DECL_LANG_SPECIFIC (decl) == 0)
1822 return lang_decl_name (decl, v, translate);
1824 /* See if this print name is lying around. */
1825 for (i = 0; i < PRINT_RING_SIZE; i++)
1826 if (uid_ring[i] == DECL_UID (decl) && translate == trans_ring[i])
1827 /* yes, so return it. */
1828 return print_ring[i];
1830 if (++ring_counter == PRINT_RING_SIZE)
1831 ring_counter = 0;
1833 if (current_function_decl != NULL_TREE)
1835 /* There may be both translated and untranslated versions of the
1836 name cached. */
1837 for (i = 0; i < 2; i++)
1839 if (uid_ring[ring_counter] == DECL_UID (current_function_decl))
1840 ring_counter += 1;
1841 if (ring_counter == PRINT_RING_SIZE)
1842 ring_counter = 0;
1844 gcc_assert (uid_ring[ring_counter] != DECL_UID (current_function_decl));
1847 free (print_ring[ring_counter]);
1849 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v, translate));
1850 uid_ring[ring_counter] = DECL_UID (decl);
1851 trans_ring[ring_counter] = translate;
1852 return print_ring[ring_counter];
1855 const char *
1856 cxx_printable_name (tree decl, int v)
1858 return cxx_printable_name_internal (decl, v, false);
1861 const char *
1862 cxx_printable_name_translate (tree decl, int v)
1864 return cxx_printable_name_internal (decl, v, true);
1867 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
1868 listed in RAISES. */
1870 tree
1871 build_exception_variant (tree type, tree raises)
1873 tree v;
1874 int type_quals;
1876 if (comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (type), ce_exact))
1877 return type;
1879 type_quals = TYPE_QUALS (type);
1880 for (v = TYPE_MAIN_VARIANT (type); v; v = TYPE_NEXT_VARIANT (v))
1881 if (check_qualified_type (v, type, type_quals, 0)
1882 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (v), ce_exact))
1883 return v;
1885 /* Need to build a new variant. */
1886 v = build_variant_type_copy (type);
1887 TYPE_RAISES_EXCEPTIONS (v) = raises;
1888 return v;
1891 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
1892 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
1893 arguments. */
1895 tree
1896 bind_template_template_parm (tree t, tree newargs)
1898 tree decl = TYPE_NAME (t);
1899 tree t2;
1901 t2 = cxx_make_type (BOUND_TEMPLATE_TEMPLATE_PARM);
1902 decl = build_decl (input_location,
1903 TYPE_DECL, DECL_NAME (decl), NULL_TREE);
1905 /* These nodes have to be created to reflect new TYPE_DECL and template
1906 arguments. */
1907 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
1908 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
1909 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
1910 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
1912 TREE_TYPE (decl) = t2;
1913 TYPE_NAME (t2) = decl;
1914 TYPE_STUB_DECL (t2) = decl;
1915 TYPE_SIZE (t2) = 0;
1916 SET_TYPE_STRUCTURAL_EQUALITY (t2);
1918 return t2;
1921 /* Called from count_trees via walk_tree. */
1923 static tree
1924 count_trees_r (tree *tp, int *walk_subtrees, void *data)
1926 ++*((int *) data);
1928 if (TYPE_P (*tp))
1929 *walk_subtrees = 0;
1931 return NULL_TREE;
1934 /* Debugging function for measuring the rough complexity of a tree
1935 representation. */
1938 count_trees (tree t)
1940 int n_trees = 0;
1941 cp_walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
1942 return n_trees;
1945 /* Called from verify_stmt_tree via walk_tree. */
1947 static tree
1948 verify_stmt_tree_r (tree* tp, int * /*walk_subtrees*/, void* data)
1950 tree t = *tp;
1951 hash_table <pointer_hash <tree_node> > *statements
1952 = static_cast <hash_table <pointer_hash <tree_node> > *> (data);
1953 tree_node **slot;
1955 if (!STATEMENT_CODE_P (TREE_CODE (t)))
1956 return NULL_TREE;
1958 /* If this statement is already present in the hash table, then
1959 there is a circularity in the statement tree. */
1960 gcc_assert (!statements->find (t));
1962 slot = statements->find_slot (t, INSERT);
1963 *slot = t;
1965 return NULL_TREE;
1968 /* Debugging function to check that the statement T has not been
1969 corrupted. For now, this function simply checks that T contains no
1970 circularities. */
1972 void
1973 verify_stmt_tree (tree t)
1975 hash_table <pointer_hash <tree_node> > statements;
1976 statements.create (37);
1977 cp_walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
1978 statements.dispose ();
1981 /* Check if the type T depends on a type with no linkage and if so, return
1982 it. If RELAXED_P then do not consider a class type declared within
1983 a vague-linkage function to have no linkage. */
1985 tree
1986 no_linkage_check (tree t, bool relaxed_p)
1988 tree r;
1990 /* There's no point in checking linkage on template functions; we
1991 can't know their complete types. */
1992 if (processing_template_decl)
1993 return NULL_TREE;
1995 switch (TREE_CODE (t))
1997 case RECORD_TYPE:
1998 if (TYPE_PTRMEMFUNC_P (t))
1999 goto ptrmem;
2000 /* Lambda types that don't have mangling scope have no linkage. We
2001 check CLASSTYPE_LAMBDA_EXPR here rather than LAMBDA_TYPE_P because
2002 when we get here from pushtag none of the lambda information is
2003 set up yet, so we want to assume that the lambda has linkage and
2004 fix it up later if not. */
2005 if (CLASSTYPE_LAMBDA_EXPR (t)
2006 && LAMBDA_TYPE_EXTRA_SCOPE (t) == NULL_TREE)
2007 return t;
2008 /* Fall through. */
2009 case UNION_TYPE:
2010 if (!CLASS_TYPE_P (t))
2011 return NULL_TREE;
2012 /* Fall through. */
2013 case ENUMERAL_TYPE:
2014 /* Only treat anonymous types as having no linkage if they're at
2015 namespace scope. This is core issue 966. */
2016 if (TYPE_ANONYMOUS_P (t) && TYPE_NAMESPACE_SCOPE_P (t))
2017 return t;
2019 for (r = CP_TYPE_CONTEXT (t); ; )
2021 /* If we're a nested type of a !TREE_PUBLIC class, we might not
2022 have linkage, or we might just be in an anonymous namespace.
2023 If we're in a TREE_PUBLIC class, we have linkage. */
2024 if (TYPE_P (r) && !TREE_PUBLIC (TYPE_NAME (r)))
2025 return no_linkage_check (TYPE_CONTEXT (t), relaxed_p);
2026 else if (TREE_CODE (r) == FUNCTION_DECL)
2028 if (!relaxed_p || !vague_linkage_p (r))
2029 return t;
2030 else
2031 r = CP_DECL_CONTEXT (r);
2033 else
2034 break;
2037 return NULL_TREE;
2039 case ARRAY_TYPE:
2040 case POINTER_TYPE:
2041 case REFERENCE_TYPE:
2042 return no_linkage_check (TREE_TYPE (t), relaxed_p);
2044 case OFFSET_TYPE:
2045 ptrmem:
2046 r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
2047 relaxed_p);
2048 if (r)
2049 return r;
2050 return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
2052 case METHOD_TYPE:
2053 r = no_linkage_check (TYPE_METHOD_BASETYPE (t), relaxed_p);
2054 if (r)
2055 return r;
2056 /* Fall through. */
2057 case FUNCTION_TYPE:
2059 tree parm;
2060 for (parm = TYPE_ARG_TYPES (t);
2061 parm && parm != void_list_node;
2062 parm = TREE_CHAIN (parm))
2064 r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
2065 if (r)
2066 return r;
2068 return no_linkage_check (TREE_TYPE (t), relaxed_p);
2071 default:
2072 return NULL_TREE;
2076 extern int depth_reached;
2078 void
2079 cxx_print_statistics (void)
2081 print_search_statistics ();
2082 print_class_statistics ();
2083 print_template_statistics ();
2084 if (GATHER_STATISTICS)
2085 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
2086 depth_reached);
2089 /* Return, as an INTEGER_CST node, the number of elements for TYPE
2090 (which is an ARRAY_TYPE). This counts only elements of the top
2091 array. */
2093 tree
2094 array_type_nelts_top (tree type)
2096 return fold_build2_loc (input_location,
2097 PLUS_EXPR, sizetype,
2098 array_type_nelts (type),
2099 size_one_node);
2102 /* Return, as an INTEGER_CST node, the number of elements for TYPE
2103 (which is an ARRAY_TYPE). This one is a recursive count of all
2104 ARRAY_TYPEs that are clumped together. */
2106 tree
2107 array_type_nelts_total (tree type)
2109 tree sz = array_type_nelts_top (type);
2110 type = TREE_TYPE (type);
2111 while (TREE_CODE (type) == ARRAY_TYPE)
2113 tree n = array_type_nelts_top (type);
2114 sz = fold_build2_loc (input_location,
2115 MULT_EXPR, sizetype, sz, n);
2116 type = TREE_TYPE (type);
2118 return sz;
2121 /* Called from break_out_target_exprs via mapcar. */
2123 static tree
2124 bot_manip (tree* tp, int* walk_subtrees, void* data)
2126 splay_tree target_remap = ((splay_tree) data);
2127 tree t = *tp;
2129 if (!TYPE_P (t) && TREE_CONSTANT (t) && !TREE_SIDE_EFFECTS (t))
2131 /* There can't be any TARGET_EXPRs or their slot variables below this
2132 point. But we must make a copy, in case subsequent processing
2133 alters any part of it. For example, during gimplification a cast
2134 of the form (T) &X::f (where "f" is a member function) will lead
2135 to replacing the PTRMEM_CST for &X::f with a VAR_DECL. */
2136 *walk_subtrees = 0;
2137 *tp = unshare_expr (t);
2138 return NULL_TREE;
2140 if (TREE_CODE (t) == TARGET_EXPR)
2142 tree u;
2144 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
2146 u = build_cplus_new (TREE_TYPE (t), TREE_OPERAND (t, 1),
2147 tf_warning_or_error);
2148 if (AGGR_INIT_ZERO_FIRST (TREE_OPERAND (t, 1)))
2149 AGGR_INIT_ZERO_FIRST (TREE_OPERAND (u, 1)) = true;
2151 else
2152 u = build_target_expr_with_type (TREE_OPERAND (t, 1), TREE_TYPE (t),
2153 tf_warning_or_error);
2155 TARGET_EXPR_IMPLICIT_P (u) = TARGET_EXPR_IMPLICIT_P (t);
2156 TARGET_EXPR_LIST_INIT_P (u) = TARGET_EXPR_LIST_INIT_P (t);
2157 TARGET_EXPR_DIRECT_INIT_P (u) = TARGET_EXPR_DIRECT_INIT_P (t);
2159 /* Map the old variable to the new one. */
2160 splay_tree_insert (target_remap,
2161 (splay_tree_key) TREE_OPERAND (t, 0),
2162 (splay_tree_value) TREE_OPERAND (u, 0));
2164 TREE_OPERAND (u, 1) = break_out_target_exprs (TREE_OPERAND (u, 1));
2166 /* Replace the old expression with the new version. */
2167 *tp = u;
2168 /* We don't have to go below this point; the recursive call to
2169 break_out_target_exprs will have handled anything below this
2170 point. */
2171 *walk_subtrees = 0;
2172 return NULL_TREE;
2175 /* Make a copy of this node. */
2176 t = copy_tree_r (tp, walk_subtrees, NULL);
2177 if (TREE_CODE (*tp) == CALL_EXPR)
2178 set_flags_from_callee (*tp);
2179 return t;
2182 /* Replace all remapped VAR_DECLs in T with their new equivalents.
2183 DATA is really a splay-tree mapping old variables to new
2184 variables. */
2186 static tree
2187 bot_replace (tree* t, int* /*walk_subtrees*/, void* data)
2189 splay_tree target_remap = ((splay_tree) data);
2191 if (TREE_CODE (*t) == VAR_DECL)
2193 splay_tree_node n = splay_tree_lookup (target_remap,
2194 (splay_tree_key) *t);
2195 if (n)
2196 *t = (tree) n->value;
2198 else if (TREE_CODE (*t) == PARM_DECL
2199 && DECL_NAME (*t) == this_identifier)
2201 /* In an NSDMI we need to replace the 'this' parameter we used for
2202 parsing with the real one for this function. */
2203 *t = current_class_ptr;
2205 else if (TREE_CODE (*t) == CONVERT_EXPR
2206 && CONVERT_EXPR_VBASE_PATH (*t))
2208 /* In an NSDMI build_base_path defers building conversions to virtual
2209 bases, and we handle it here. */
2210 tree basetype = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (*t)));
2211 vec<tree, va_gc> *vbases = CLASSTYPE_VBASECLASSES (current_class_type);
2212 int i; tree binfo;
2213 FOR_EACH_VEC_SAFE_ELT (vbases, i, binfo)
2214 if (BINFO_TYPE (binfo) == basetype)
2215 break;
2216 *t = build_base_path (PLUS_EXPR, TREE_OPERAND (*t, 0), binfo, true,
2217 tf_warning_or_error);
2220 return NULL_TREE;
2223 /* When we parse a default argument expression, we may create
2224 temporary variables via TARGET_EXPRs. When we actually use the
2225 default-argument expression, we make a copy of the expression
2226 and replace the temporaries with appropriate local versions. */
2228 tree
2229 break_out_target_exprs (tree t)
2231 static int target_remap_count;
2232 static splay_tree target_remap;
2234 if (!target_remap_count++)
2235 target_remap = splay_tree_new (splay_tree_compare_pointers,
2236 /*splay_tree_delete_key_fn=*/NULL,
2237 /*splay_tree_delete_value_fn=*/NULL);
2238 cp_walk_tree (&t, bot_manip, target_remap, NULL);
2239 cp_walk_tree (&t, bot_replace, target_remap, NULL);
2241 if (!--target_remap_count)
2243 splay_tree_delete (target_remap);
2244 target_remap = NULL;
2247 return t;
2250 /* Similar to `build_nt', but for template definitions of dependent
2251 expressions */
2253 tree
2254 build_min_nt_loc (location_t loc, enum tree_code code, ...)
2256 tree t;
2257 int length;
2258 int i;
2259 va_list p;
2261 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
2263 va_start (p, code);
2265 t = make_node (code);
2266 SET_EXPR_LOCATION (t, loc);
2267 length = TREE_CODE_LENGTH (code);
2269 for (i = 0; i < length; i++)
2271 tree x = va_arg (p, tree);
2272 TREE_OPERAND (t, i) = x;
2275 va_end (p);
2276 return t;
2280 /* Similar to `build', but for template definitions. */
2282 tree
2283 build_min (enum tree_code code, tree tt, ...)
2285 tree t;
2286 int length;
2287 int i;
2288 va_list p;
2290 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
2292 va_start (p, tt);
2294 t = make_node (code);
2295 length = TREE_CODE_LENGTH (code);
2296 TREE_TYPE (t) = tt;
2298 for (i = 0; i < length; i++)
2300 tree x = va_arg (p, tree);
2301 TREE_OPERAND (t, i) = x;
2302 if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
2303 TREE_SIDE_EFFECTS (t) = 1;
2306 va_end (p);
2307 return t;
2310 /* Similar to `build', but for template definitions of non-dependent
2311 expressions. NON_DEP is the non-dependent expression that has been
2312 built. */
2314 tree
2315 build_min_non_dep (enum tree_code code, tree non_dep, ...)
2317 tree t;
2318 int length;
2319 int i;
2320 va_list p;
2322 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
2324 va_start (p, non_dep);
2326 if (REFERENCE_REF_P (non_dep))
2327 non_dep = TREE_OPERAND (non_dep, 0);
2329 t = make_node (code);
2330 length = TREE_CODE_LENGTH (code);
2331 TREE_TYPE (t) = TREE_TYPE (non_dep);
2332 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
2334 for (i = 0; i < length; i++)
2336 tree x = va_arg (p, tree);
2337 TREE_OPERAND (t, i) = x;
2340 if (code == COMPOUND_EXPR && TREE_CODE (non_dep) != COMPOUND_EXPR)
2341 /* This should not be considered a COMPOUND_EXPR, because it
2342 resolves to an overload. */
2343 COMPOUND_EXPR_OVERLOADED (t) = 1;
2345 va_end (p);
2346 return convert_from_reference (t);
2349 /* Similar to `build_nt_call_vec', but for template definitions of
2350 non-dependent expressions. NON_DEP is the non-dependent expression
2351 that has been built. */
2353 tree
2354 build_min_non_dep_call_vec (tree non_dep, tree fn, vec<tree, va_gc> *argvec)
2356 tree t = build_nt_call_vec (fn, argvec);
2357 if (REFERENCE_REF_P (non_dep))
2358 non_dep = TREE_OPERAND (non_dep, 0);
2359 TREE_TYPE (t) = TREE_TYPE (non_dep);
2360 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
2361 return convert_from_reference (t);
2364 tree
2365 get_type_decl (tree t)
2367 if (TREE_CODE (t) == TYPE_DECL)
2368 return t;
2369 if (TYPE_P (t))
2370 return TYPE_STUB_DECL (t);
2371 gcc_assert (t == error_mark_node);
2372 return t;
2375 /* Returns the namespace that contains DECL, whether directly or
2376 indirectly. */
2378 tree
2379 decl_namespace_context (tree decl)
2381 while (1)
2383 if (TREE_CODE (decl) == NAMESPACE_DECL)
2384 return decl;
2385 else if (TYPE_P (decl))
2386 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
2387 else
2388 decl = CP_DECL_CONTEXT (decl);
2392 /* Returns true if decl is within an anonymous namespace, however deeply
2393 nested, or false otherwise. */
2395 bool
2396 decl_anon_ns_mem_p (const_tree decl)
2398 while (1)
2400 if (decl == NULL_TREE || decl == error_mark_node)
2401 return false;
2402 if (TREE_CODE (decl) == NAMESPACE_DECL
2403 && DECL_NAME (decl) == NULL_TREE)
2404 return true;
2405 /* Classes and namespaces inside anonymous namespaces have
2406 TREE_PUBLIC == 0, so we can shortcut the search. */
2407 else if (TYPE_P (decl))
2408 return (TREE_PUBLIC (TYPE_MAIN_DECL (decl)) == 0);
2409 else if (TREE_CODE (decl) == NAMESPACE_DECL)
2410 return (TREE_PUBLIC (decl) == 0);
2411 else
2412 decl = DECL_CONTEXT (decl);
2416 /* Subroutine of cp_tree_equal: t1 and t2 are the CALL_EXPR_FNs of two
2417 CALL_EXPRS. Return whether they are equivalent. */
2419 static bool
2420 called_fns_equal (tree t1, tree t2)
2422 /* Core 1321: dependent names are equivalent even if the overload sets
2423 are different. But do compare explicit template arguments. */
2424 tree name1 = dependent_name (t1);
2425 tree name2 = dependent_name (t2);
2426 if (name1 || name2)
2428 tree targs1 = NULL_TREE, targs2 = NULL_TREE;
2430 if (name1 != name2)
2431 return false;
2433 if (TREE_CODE (t1) == TEMPLATE_ID_EXPR)
2434 targs1 = TREE_OPERAND (t1, 1);
2435 if (TREE_CODE (t2) == TEMPLATE_ID_EXPR)
2436 targs2 = TREE_OPERAND (t2, 1);
2437 return cp_tree_equal (targs1, targs2);
2439 else
2440 return cp_tree_equal (t1, t2);
2443 /* Return truthvalue of whether T1 is the same tree structure as T2.
2444 Return 1 if they are the same. Return 0 if they are different. */
2446 bool
2447 cp_tree_equal (tree t1, tree t2)
2449 enum tree_code code1, code2;
2451 if (t1 == t2)
2452 return true;
2453 if (!t1 || !t2)
2454 return false;
2456 for (code1 = TREE_CODE (t1);
2457 CONVERT_EXPR_CODE_P (code1)
2458 || code1 == NON_LVALUE_EXPR;
2459 code1 = TREE_CODE (t1))
2460 t1 = TREE_OPERAND (t1, 0);
2461 for (code2 = TREE_CODE (t2);
2462 CONVERT_EXPR_CODE_P (code2)
2463 || code1 == NON_LVALUE_EXPR;
2464 code2 = TREE_CODE (t2))
2465 t2 = TREE_OPERAND (t2, 0);
2467 /* They might have become equal now. */
2468 if (t1 == t2)
2469 return true;
2471 if (code1 != code2)
2472 return false;
2474 switch (code1)
2476 case INTEGER_CST:
2477 return TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
2478 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2);
2480 case REAL_CST:
2481 return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2483 case STRING_CST:
2484 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2485 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2486 TREE_STRING_LENGTH (t1));
2488 case FIXED_CST:
2489 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1),
2490 TREE_FIXED_CST (t2));
2492 case COMPLEX_CST:
2493 return cp_tree_equal (TREE_REALPART (t1), TREE_REALPART (t2))
2494 && cp_tree_equal (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
2496 case VECTOR_CST:
2497 return operand_equal_p (t1, t2, OEP_ONLY_CONST);
2499 case CONSTRUCTOR:
2500 /* We need to do this when determining whether or not two
2501 non-type pointer to member function template arguments
2502 are the same. */
2503 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
2504 || CONSTRUCTOR_NELTS (t1) != CONSTRUCTOR_NELTS (t2))
2505 return false;
2507 tree field, value;
2508 unsigned int i;
2509 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, field, value)
2511 constructor_elt *elt2 = CONSTRUCTOR_ELT (t2, i);
2512 if (!cp_tree_equal (field, elt2->index)
2513 || !cp_tree_equal (value, elt2->value))
2514 return false;
2517 return true;
2519 case TREE_LIST:
2520 if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
2521 return false;
2522 if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
2523 return false;
2524 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
2526 case SAVE_EXPR:
2527 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2529 case CALL_EXPR:
2531 tree arg1, arg2;
2532 call_expr_arg_iterator iter1, iter2;
2533 if (!called_fns_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2)))
2534 return false;
2535 for (arg1 = first_call_expr_arg (t1, &iter1),
2536 arg2 = first_call_expr_arg (t2, &iter2);
2537 arg1 && arg2;
2538 arg1 = next_call_expr_arg (&iter1),
2539 arg2 = next_call_expr_arg (&iter2))
2540 if (!cp_tree_equal (arg1, arg2))
2541 return false;
2542 if (arg1 || arg2)
2543 return false;
2544 return true;
2547 case TARGET_EXPR:
2549 tree o1 = TREE_OPERAND (t1, 0);
2550 tree o2 = TREE_OPERAND (t2, 0);
2552 /* Special case: if either target is an unallocated VAR_DECL,
2553 it means that it's going to be unified with whatever the
2554 TARGET_EXPR is really supposed to initialize, so treat it
2555 as being equivalent to anything. */
2556 if (TREE_CODE (o1) == VAR_DECL && DECL_NAME (o1) == NULL_TREE
2557 && !DECL_RTL_SET_P (o1))
2558 /*Nop*/;
2559 else if (TREE_CODE (o2) == VAR_DECL && DECL_NAME (o2) == NULL_TREE
2560 && !DECL_RTL_SET_P (o2))
2561 /*Nop*/;
2562 else if (!cp_tree_equal (o1, o2))
2563 return false;
2565 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
2568 case WITH_CLEANUP_EXPR:
2569 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
2570 return false;
2571 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
2573 case COMPONENT_REF:
2574 if (TREE_OPERAND (t1, 1) != TREE_OPERAND (t2, 1))
2575 return false;
2576 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2578 case PARM_DECL:
2579 /* For comparing uses of parameters in late-specified return types
2580 with an out-of-class definition of the function, but can also come
2581 up for expressions that involve 'this' in a member function
2582 template. */
2584 if (comparing_specializations)
2585 /* When comparing hash table entries, only an exact match is
2586 good enough; we don't want to replace 'this' with the
2587 version from another function. */
2588 return false;
2590 if (same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
2592 if (DECL_ARTIFICIAL (t1) ^ DECL_ARTIFICIAL (t2))
2593 return false;
2594 if (DECL_ARTIFICIAL (t1)
2595 || (DECL_PARM_LEVEL (t1) == DECL_PARM_LEVEL (t2)
2596 && DECL_PARM_INDEX (t1) == DECL_PARM_INDEX (t2)))
2597 return true;
2599 return false;
2601 case VAR_DECL:
2602 case CONST_DECL:
2603 case FIELD_DECL:
2604 case FUNCTION_DECL:
2605 case TEMPLATE_DECL:
2606 case IDENTIFIER_NODE:
2607 case SSA_NAME:
2608 return false;
2610 case BASELINK:
2611 return (BASELINK_BINFO (t1) == BASELINK_BINFO (t2)
2612 && BASELINK_ACCESS_BINFO (t1) == BASELINK_ACCESS_BINFO (t2)
2613 && BASELINK_QUALIFIED_P (t1) == BASELINK_QUALIFIED_P (t2)
2614 && cp_tree_equal (BASELINK_FUNCTIONS (t1),
2615 BASELINK_FUNCTIONS (t2)));
2617 case TEMPLATE_PARM_INDEX:
2618 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
2619 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
2620 && (TEMPLATE_PARM_PARAMETER_PACK (t1)
2621 == TEMPLATE_PARM_PARAMETER_PACK (t2))
2622 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
2623 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
2625 case TEMPLATE_ID_EXPR:
2626 return (cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2627 && cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2629 case TREE_VEC:
2631 unsigned ix;
2632 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2633 return false;
2634 for (ix = TREE_VEC_LENGTH (t1); ix--;)
2635 if (!cp_tree_equal (TREE_VEC_ELT (t1, ix),
2636 TREE_VEC_ELT (t2, ix)))
2637 return false;
2638 return true;
2641 case SIZEOF_EXPR:
2642 case ALIGNOF_EXPR:
2644 tree o1 = TREE_OPERAND (t1, 0);
2645 tree o2 = TREE_OPERAND (t2, 0);
2647 if (code1 == SIZEOF_EXPR)
2649 if (SIZEOF_EXPR_TYPE_P (t1))
2650 o1 = TREE_TYPE (o1);
2651 if (SIZEOF_EXPR_TYPE_P (t2))
2652 o2 = TREE_TYPE (o2);
2654 if (TREE_CODE (o1) != TREE_CODE (o2))
2655 return false;
2656 if (TYPE_P (o1))
2657 return same_type_p (o1, o2);
2658 else
2659 return cp_tree_equal (o1, o2);
2662 case MODOP_EXPR:
2664 tree t1_op1, t2_op1;
2666 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
2667 return false;
2669 t1_op1 = TREE_OPERAND (t1, 1);
2670 t2_op1 = TREE_OPERAND (t2, 1);
2671 if (TREE_CODE (t1_op1) != TREE_CODE (t2_op1))
2672 return false;
2674 return cp_tree_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t2, 2));
2677 case PTRMEM_CST:
2678 /* Two pointer-to-members are the same if they point to the same
2679 field or function in the same class. */
2680 if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
2681 return false;
2683 return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
2685 case OVERLOAD:
2686 if (OVL_FUNCTION (t1) != OVL_FUNCTION (t2))
2687 return false;
2688 return cp_tree_equal (OVL_CHAIN (t1), OVL_CHAIN (t2));
2690 case TRAIT_EXPR:
2691 if (TRAIT_EXPR_KIND (t1) != TRAIT_EXPR_KIND (t2))
2692 return false;
2693 return same_type_p (TRAIT_EXPR_TYPE1 (t1), TRAIT_EXPR_TYPE1 (t2))
2694 && same_type_p (TRAIT_EXPR_TYPE2 (t1), TRAIT_EXPR_TYPE2 (t2));
2696 case CAST_EXPR:
2697 case STATIC_CAST_EXPR:
2698 case REINTERPRET_CAST_EXPR:
2699 case CONST_CAST_EXPR:
2700 case DYNAMIC_CAST_EXPR:
2701 case IMPLICIT_CONV_EXPR:
2702 case NEW_EXPR:
2703 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
2704 return false;
2705 /* Now compare operands as usual. */
2706 break;
2708 case DEFERRED_NOEXCEPT:
2709 return (cp_tree_equal (DEFERRED_NOEXCEPT_PATTERN (t1),
2710 DEFERRED_NOEXCEPT_PATTERN (t2))
2711 && comp_template_args (DEFERRED_NOEXCEPT_ARGS (t1),
2712 DEFERRED_NOEXCEPT_ARGS (t2)));
2713 break;
2715 default:
2716 break;
2719 switch (TREE_CODE_CLASS (code1))
2721 case tcc_unary:
2722 case tcc_binary:
2723 case tcc_comparison:
2724 case tcc_expression:
2725 case tcc_vl_exp:
2726 case tcc_reference:
2727 case tcc_statement:
2729 int i, n;
2731 n = cp_tree_operand_length (t1);
2732 if (TREE_CODE_CLASS (code1) == tcc_vl_exp
2733 && n != TREE_OPERAND_LENGTH (t2))
2734 return false;
2736 for (i = 0; i < n; ++i)
2737 if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
2738 return false;
2740 return true;
2743 case tcc_type:
2744 return same_type_p (t1, t2);
2745 default:
2746 gcc_unreachable ();
2748 /* We can get here with --disable-checking. */
2749 return false;
2752 /* The type of ARG when used as an lvalue. */
2754 tree
2755 lvalue_type (tree arg)
2757 tree type = TREE_TYPE (arg);
2758 return type;
2761 /* The type of ARG for printing error messages; denote lvalues with
2762 reference types. */
2764 tree
2765 error_type (tree arg)
2767 tree type = TREE_TYPE (arg);
2769 if (TREE_CODE (type) == ARRAY_TYPE)
2771 else if (TREE_CODE (type) == ERROR_MARK)
2773 else if (real_lvalue_p (arg))
2774 type = build_reference_type (lvalue_type (arg));
2775 else if (MAYBE_CLASS_TYPE_P (type))
2776 type = lvalue_type (arg);
2778 return type;
2781 /* Does FUNCTION use a variable-length argument list? */
2784 varargs_function_p (const_tree function)
2786 return stdarg_p (TREE_TYPE (function));
2789 /* Returns 1 if decl is a member of a class. */
2792 member_p (const_tree decl)
2794 const_tree const ctx = DECL_CONTEXT (decl);
2795 return (ctx && TYPE_P (ctx));
2798 /* Create a placeholder for member access where we don't actually have an
2799 object that the access is against. */
2801 tree
2802 build_dummy_object (tree type)
2804 tree decl = build1 (NOP_EXPR, build_pointer_type (type), void_zero_node);
2805 return cp_build_indirect_ref (decl, RO_NULL, tf_warning_or_error);
2808 /* We've gotten a reference to a member of TYPE. Return *this if appropriate,
2809 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
2810 binfo path from current_class_type to TYPE, or 0. */
2812 tree
2813 maybe_dummy_object (tree type, tree* binfop)
2815 tree decl, context;
2816 tree binfo;
2817 tree current = current_nonlambda_class_type ();
2819 if (current
2820 && (binfo = lookup_base (current, type, ba_any, NULL,
2821 tf_warning_or_error)))
2822 context = current;
2823 else
2825 /* Reference from a nested class member function. */
2826 context = type;
2827 binfo = TYPE_BINFO (type);
2830 if (binfop)
2831 *binfop = binfo;
2833 if (current_class_ref
2834 /* current_class_ref might not correspond to current_class_type if
2835 we're in tsubst_default_argument or a lambda-declarator; in either
2836 case, we want to use current_class_ref if it matches CONTEXT. */
2837 && (same_type_ignoring_top_level_qualifiers_p
2838 (TREE_TYPE (current_class_ref), context)))
2839 decl = current_class_ref;
2840 else if (current != current_class_type
2841 && context == nonlambda_method_basetype ())
2842 /* In a lambda, need to go through 'this' capture. */
2843 decl = (build_x_indirect_ref
2844 (input_location, (lambda_expr_this_capture
2845 (CLASSTYPE_LAMBDA_EXPR (current_class_type))),
2846 RO_NULL, tf_warning_or_error));
2847 else
2848 decl = build_dummy_object (context);
2850 return decl;
2853 /* Returns 1 if OB is a placeholder object, or a pointer to one. */
2856 is_dummy_object (const_tree ob)
2858 if (TREE_CODE (ob) == INDIRECT_REF)
2859 ob = TREE_OPERAND (ob, 0);
2860 return (TREE_CODE (ob) == NOP_EXPR
2861 && TREE_OPERAND (ob, 0) == void_zero_node);
2864 /* Returns 1 iff type T is something we want to treat as a scalar type for
2865 the purpose of deciding whether it is trivial/POD/standard-layout. */
2867 bool
2868 scalarish_type_p (const_tree t)
2870 if (t == error_mark_node)
2871 return 1;
2873 return (SCALAR_TYPE_P (t)
2874 || TREE_CODE (t) == VECTOR_TYPE);
2877 /* Returns true iff T requires non-trivial default initialization. */
2879 bool
2880 type_has_nontrivial_default_init (const_tree t)
2882 t = strip_array_types (CONST_CAST_TREE (t));
2884 if (CLASS_TYPE_P (t))
2885 return TYPE_HAS_COMPLEX_DFLT (t);
2886 else
2887 return 0;
2890 /* Returns true iff copying an object of type T (including via move
2891 constructor) is non-trivial. That is, T has no non-trivial copy
2892 constructors and no non-trivial move constructors. */
2894 bool
2895 type_has_nontrivial_copy_init (const_tree t)
2897 t = strip_array_types (CONST_CAST_TREE (t));
2899 if (CLASS_TYPE_P (t))
2901 gcc_assert (COMPLETE_TYPE_P (t));
2902 return ((TYPE_HAS_COPY_CTOR (t)
2903 && TYPE_HAS_COMPLEX_COPY_CTOR (t))
2904 || TYPE_HAS_COMPLEX_MOVE_CTOR (t));
2906 else
2907 return 0;
2910 /* Returns 1 iff type T is a trivially copyable type, as defined in
2911 [basic.types] and [class]. */
2913 bool
2914 trivially_copyable_p (const_tree t)
2916 t = strip_array_types (CONST_CAST_TREE (t));
2918 if (CLASS_TYPE_P (t))
2919 return ((!TYPE_HAS_COPY_CTOR (t)
2920 || !TYPE_HAS_COMPLEX_COPY_CTOR (t))
2921 && !TYPE_HAS_COMPLEX_MOVE_CTOR (t)
2922 && (!TYPE_HAS_COPY_ASSIGN (t)
2923 || !TYPE_HAS_COMPLEX_COPY_ASSIGN (t))
2924 && !TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
2925 && TYPE_HAS_TRIVIAL_DESTRUCTOR (t));
2926 else
2927 return scalarish_type_p (t);
2930 /* Returns 1 iff type T is a trivial type, as defined in [basic.types] and
2931 [class]. */
2933 bool
2934 trivial_type_p (const_tree t)
2936 t = strip_array_types (CONST_CAST_TREE (t));
2938 if (CLASS_TYPE_P (t))
2939 return (TYPE_HAS_TRIVIAL_DFLT (t)
2940 && trivially_copyable_p (t));
2941 else
2942 return scalarish_type_p (t);
2945 /* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
2947 bool
2948 pod_type_p (const_tree t)
2950 /* This CONST_CAST is okay because strip_array_types returns its
2951 argument unmodified and we assign it to a const_tree. */
2952 t = strip_array_types (CONST_CAST_TREE(t));
2954 if (!CLASS_TYPE_P (t))
2955 return scalarish_type_p (t);
2956 else if (cxx_dialect > cxx98)
2957 /* [class]/10: A POD struct is a class that is both a trivial class and a
2958 standard-layout class, and has no non-static data members of type
2959 non-POD struct, non-POD union (or array of such types).
2961 We don't need to check individual members because if a member is
2962 non-std-layout or non-trivial, the class will be too. */
2963 return (std_layout_type_p (t) && trivial_type_p (t));
2964 else
2965 /* The C++98 definition of POD is different. */
2966 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
2969 /* Returns true iff T is POD for the purpose of layout, as defined in the
2970 C++ ABI. */
2972 bool
2973 layout_pod_type_p (const_tree t)
2975 t = strip_array_types (CONST_CAST_TREE (t));
2977 if (CLASS_TYPE_P (t))
2978 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
2979 else
2980 return scalarish_type_p (t);
2983 /* Returns true iff T is a standard-layout type, as defined in
2984 [basic.types]. */
2986 bool
2987 std_layout_type_p (const_tree t)
2989 t = strip_array_types (CONST_CAST_TREE (t));
2991 if (CLASS_TYPE_P (t))
2992 return !CLASSTYPE_NON_STD_LAYOUT (t);
2993 else
2994 return scalarish_type_p (t);
2997 /* Nonzero iff type T is a class template implicit specialization. */
2999 bool
3000 class_tmpl_impl_spec_p (const_tree t)
3002 return CLASS_TYPE_P (t) && CLASSTYPE_TEMPLATE_INSTANTIATION (t);
3005 /* Returns 1 iff zero initialization of type T means actually storing
3006 zeros in it. */
3009 zero_init_p (const_tree t)
3011 /* This CONST_CAST is okay because strip_array_types returns its
3012 argument unmodified and we assign it to a const_tree. */
3013 t = strip_array_types (CONST_CAST_TREE(t));
3015 if (t == error_mark_node)
3016 return 1;
3018 /* NULL pointers to data members are initialized with -1. */
3019 if (TYPE_PTRDATAMEM_P (t))
3020 return 0;
3022 /* Classes that contain types that can't be zero-initialized, cannot
3023 be zero-initialized themselves. */
3024 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
3025 return 0;
3027 return 1;
3030 /* Table of valid C++ attributes. */
3031 const struct attribute_spec cxx_attribute_table[] =
3033 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
3034 affects_type_identity } */
3035 { "java_interface", 0, 0, false, false, false,
3036 handle_java_interface_attribute, false },
3037 { "com_interface", 0, 0, false, false, false,
3038 handle_com_interface_attribute, false },
3039 { "init_priority", 1, 1, true, false, false,
3040 handle_init_priority_attribute, false },
3041 { "abi_tag", 1, -1, false, false, false,
3042 handle_abi_tag_attribute, true },
3043 { NULL, 0, 0, false, false, false, NULL, false }
3046 /* Handle a "java_interface" attribute; arguments as in
3047 struct attribute_spec.handler. */
3048 static tree
3049 handle_java_interface_attribute (tree* node,
3050 tree name,
3051 tree /*args*/,
3052 int flags,
3053 bool* no_add_attrs)
3055 if (DECL_P (*node)
3056 || !CLASS_TYPE_P (*node)
3057 || !TYPE_FOR_JAVA (*node))
3059 error ("%qE attribute can only be applied to Java class definitions",
3060 name);
3061 *no_add_attrs = true;
3062 return NULL_TREE;
3064 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
3065 *node = build_variant_type_copy (*node);
3066 TYPE_JAVA_INTERFACE (*node) = 1;
3068 return NULL_TREE;
3071 /* Handle a "com_interface" attribute; arguments as in
3072 struct attribute_spec.handler. */
3073 static tree
3074 handle_com_interface_attribute (tree* node,
3075 tree name,
3076 tree /*args*/,
3077 int /*flags*/,
3078 bool* no_add_attrs)
3080 static int warned;
3082 *no_add_attrs = true;
3084 if (DECL_P (*node)
3085 || !CLASS_TYPE_P (*node)
3086 || *node != TYPE_MAIN_VARIANT (*node))
3088 warning (OPT_Wattributes, "%qE attribute can only be applied "
3089 "to class definitions", name);
3090 return NULL_TREE;
3093 if (!warned++)
3094 warning (0, "%qE is obsolete; g++ vtables are now COM-compatible by default",
3095 name);
3097 return NULL_TREE;
3100 /* Handle an "init_priority" attribute; arguments as in
3101 struct attribute_spec.handler. */
3102 static tree
3103 handle_init_priority_attribute (tree* node,
3104 tree name,
3105 tree args,
3106 int /*flags*/,
3107 bool* no_add_attrs)
3109 tree initp_expr = TREE_VALUE (args);
3110 tree decl = *node;
3111 tree type = TREE_TYPE (decl);
3112 int pri;
3114 STRIP_NOPS (initp_expr);
3116 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
3118 error ("requested init_priority is not an integer constant");
3119 *no_add_attrs = true;
3120 return NULL_TREE;
3123 pri = TREE_INT_CST_LOW (initp_expr);
3125 type = strip_array_types (type);
3127 if (decl == NULL_TREE
3128 || TREE_CODE (decl) != VAR_DECL
3129 || !TREE_STATIC (decl)
3130 || DECL_EXTERNAL (decl)
3131 || (TREE_CODE (type) != RECORD_TYPE
3132 && TREE_CODE (type) != UNION_TYPE)
3133 /* Static objects in functions are initialized the
3134 first time control passes through that
3135 function. This is not precise enough to pin down an
3136 init_priority value, so don't allow it. */
3137 || current_function_decl)
3139 error ("can only use %qE attribute on file-scope definitions "
3140 "of objects of class type", name);
3141 *no_add_attrs = true;
3142 return NULL_TREE;
3145 if (pri > MAX_INIT_PRIORITY || pri <= 0)
3147 error ("requested init_priority is out of range");
3148 *no_add_attrs = true;
3149 return NULL_TREE;
3152 /* Check for init_priorities that are reserved for
3153 language and runtime support implementations.*/
3154 if (pri <= MAX_RESERVED_INIT_PRIORITY)
3156 warning
3157 (0, "requested init_priority is reserved for internal use");
3160 if (SUPPORTS_INIT_PRIORITY)
3162 SET_DECL_INIT_PRIORITY (decl, pri);
3163 DECL_HAS_INIT_PRIORITY_P (decl) = 1;
3164 return NULL_TREE;
3166 else
3168 error ("%qE attribute is not supported on this platform", name);
3169 *no_add_attrs = true;
3170 return NULL_TREE;
3174 /* DECL is being redeclared; the old declaration had the abi tags in OLD,
3175 and the new one has the tags in NEW_. Give an error if there are tags
3176 in NEW_ that weren't in OLD. */
3178 bool
3179 check_abi_tag_redeclaration (const_tree decl, const_tree old, const_tree new_)
3181 if (old && TREE_CODE (TREE_VALUE (old)) == TREE_LIST)
3182 old = TREE_VALUE (old);
3183 if (new_ && TREE_CODE (TREE_VALUE (new_)) == TREE_LIST)
3184 new_ = TREE_VALUE (new_);
3185 bool err = false;
3186 for (const_tree t = new_; t; t = TREE_CHAIN (t))
3188 tree str = TREE_VALUE (t);
3189 for (const_tree in = old; in; in = TREE_CHAIN (in))
3191 tree ostr = TREE_VALUE (in);
3192 if (cp_tree_equal (str, ostr))
3193 goto found;
3195 error ("redeclaration of %qD adds abi tag %E", decl, str);
3196 err = true;
3197 found:;
3199 if (err)
3201 inform (DECL_SOURCE_LOCATION (decl), "previous declaration here");
3202 return false;
3204 return true;
3207 /* Handle an "abi_tag" attribute; arguments as in
3208 struct attribute_spec.handler. */
3210 static tree
3211 handle_abi_tag_attribute (tree* node, tree name, tree args,
3212 int flags, bool* no_add_attrs)
3214 if (TYPE_P (*node))
3216 if (!TAGGED_TYPE_P (*node))
3218 error ("%qE attribute applied to non-class, non-enum type %qT",
3219 name, *node);
3220 goto fail;
3222 else if (!(flags & (int)ATTR_FLAG_TYPE_IN_PLACE))
3224 error ("%qE attribute applied to %qT after its definition",
3225 name, *node);
3226 goto fail;
3229 tree attributes = TYPE_ATTRIBUTES (*node);
3230 tree decl = TYPE_NAME (*node);
3232 /* Make sure all declarations have the same abi tags. */
3233 if (DECL_SOURCE_LOCATION (decl) != input_location)
3235 if (!check_abi_tag_redeclaration (decl,
3236 lookup_attribute ("abi_tag",
3237 attributes),
3238 args))
3239 goto fail;
3242 else
3244 if (TREE_CODE (*node) != FUNCTION_DECL)
3246 error ("%qE attribute applied to non-function %qD", name, *node);
3247 goto fail;
3249 else if (DECL_LANGUAGE (*node) == lang_c)
3251 error ("%qE attribute applied to extern \"C\" function %qD",
3252 name, *node);
3253 goto fail;
3257 return NULL_TREE;
3259 fail:
3260 *no_add_attrs = true;
3261 return NULL_TREE;
3264 /* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
3265 thing pointed to by the constant. */
3267 tree
3268 make_ptrmem_cst (tree type, tree member)
3270 tree ptrmem_cst = make_node (PTRMEM_CST);
3271 TREE_TYPE (ptrmem_cst) = type;
3272 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
3273 return ptrmem_cst;
3276 /* Build a variant of TYPE that has the indicated ATTRIBUTES. May
3277 return an existing type if an appropriate type already exists. */
3279 tree
3280 cp_build_type_attribute_variant (tree type, tree attributes)
3282 tree new_type;
3284 new_type = build_type_attribute_variant (type, attributes);
3285 if (TREE_CODE (new_type) == FUNCTION_TYPE
3286 || TREE_CODE (new_type) == METHOD_TYPE)
3287 new_type = build_exception_variant (new_type,
3288 TYPE_RAISES_EXCEPTIONS (type));
3290 /* Making a new main variant of a class type is broken. */
3291 gcc_assert (!CLASS_TYPE_P (type) || new_type == type);
3293 return new_type;
3296 /* Return TRUE if TYPE1 and TYPE2 are identical for type hashing purposes.
3297 Called only after doing all language independent checks. Only
3298 to check TYPE_RAISES_EXCEPTIONS for FUNCTION_TYPE, the rest is already
3299 compared in type_hash_eq. */
3301 bool
3302 cxx_type_hash_eq (const_tree typea, const_tree typeb)
3304 gcc_assert (TREE_CODE (typea) == FUNCTION_TYPE
3305 || TREE_CODE (typea) == METHOD_TYPE);
3307 return comp_except_specs (TYPE_RAISES_EXCEPTIONS (typea),
3308 TYPE_RAISES_EXCEPTIONS (typeb), ce_exact);
3311 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
3312 traversal. Called from walk_tree. */
3314 tree
3315 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
3316 void *data, struct pointer_set_t *pset)
3318 enum tree_code code = TREE_CODE (*tp);
3319 tree result;
3321 #define WALK_SUBTREE(NODE) \
3322 do \
3324 result = cp_walk_tree (&(NODE), func, data, pset); \
3325 if (result) goto out; \
3327 while (0)
3329 /* Not one of the easy cases. We must explicitly go through the
3330 children. */
3331 result = NULL_TREE;
3332 switch (code)
3334 case DEFAULT_ARG:
3335 case TEMPLATE_TEMPLATE_PARM:
3336 case BOUND_TEMPLATE_TEMPLATE_PARM:
3337 case UNBOUND_CLASS_TEMPLATE:
3338 case TEMPLATE_PARM_INDEX:
3339 case TEMPLATE_TYPE_PARM:
3340 case TYPENAME_TYPE:
3341 case TYPEOF_TYPE:
3342 case UNDERLYING_TYPE:
3343 /* None of these have subtrees other than those already walked
3344 above. */
3345 *walk_subtrees_p = 0;
3346 break;
3348 case BASELINK:
3349 WALK_SUBTREE (BASELINK_FUNCTIONS (*tp));
3350 *walk_subtrees_p = 0;
3351 break;
3353 case PTRMEM_CST:
3354 WALK_SUBTREE (TREE_TYPE (*tp));
3355 *walk_subtrees_p = 0;
3356 break;
3358 case TREE_LIST:
3359 WALK_SUBTREE (TREE_PURPOSE (*tp));
3360 break;
3362 case OVERLOAD:
3363 WALK_SUBTREE (OVL_FUNCTION (*tp));
3364 WALK_SUBTREE (OVL_CHAIN (*tp));
3365 *walk_subtrees_p = 0;
3366 break;
3368 case USING_DECL:
3369 WALK_SUBTREE (DECL_NAME (*tp));
3370 WALK_SUBTREE (USING_DECL_SCOPE (*tp));
3371 WALK_SUBTREE (USING_DECL_DECLS (*tp));
3372 *walk_subtrees_p = 0;
3373 break;
3375 case RECORD_TYPE:
3376 if (TYPE_PTRMEMFUNC_P (*tp))
3377 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (*tp));
3378 break;
3380 case TYPE_ARGUMENT_PACK:
3381 case NONTYPE_ARGUMENT_PACK:
3383 tree args = ARGUMENT_PACK_ARGS (*tp);
3384 int i, len = TREE_VEC_LENGTH (args);
3385 for (i = 0; i < len; i++)
3386 WALK_SUBTREE (TREE_VEC_ELT (args, i));
3388 break;
3390 case TYPE_PACK_EXPANSION:
3391 WALK_SUBTREE (TREE_TYPE (*tp));
3392 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
3393 *walk_subtrees_p = 0;
3394 break;
3396 case EXPR_PACK_EXPANSION:
3397 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
3398 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
3399 *walk_subtrees_p = 0;
3400 break;
3402 case CAST_EXPR:
3403 case REINTERPRET_CAST_EXPR:
3404 case STATIC_CAST_EXPR:
3405 case CONST_CAST_EXPR:
3406 case DYNAMIC_CAST_EXPR:
3407 case IMPLICIT_CONV_EXPR:
3408 if (TREE_TYPE (*tp))
3409 WALK_SUBTREE (TREE_TYPE (*tp));
3412 int i;
3413 for (i = 0; i < TREE_CODE_LENGTH (TREE_CODE (*tp)); ++i)
3414 WALK_SUBTREE (TREE_OPERAND (*tp, i));
3416 *walk_subtrees_p = 0;
3417 break;
3419 case TRAIT_EXPR:
3420 WALK_SUBTREE (TRAIT_EXPR_TYPE1 (*tp));
3421 WALK_SUBTREE (TRAIT_EXPR_TYPE2 (*tp));
3422 *walk_subtrees_p = 0;
3423 break;
3425 case DECLTYPE_TYPE:
3426 WALK_SUBTREE (DECLTYPE_TYPE_EXPR (*tp));
3427 *walk_subtrees_p = 0;
3428 break;
3431 default:
3432 return NULL_TREE;
3435 /* We didn't find what we were looking for. */
3436 out:
3437 return result;
3439 #undef WALK_SUBTREE
3442 /* Like save_expr, but for C++. */
3444 tree
3445 cp_save_expr (tree expr)
3447 /* There is no reason to create a SAVE_EXPR within a template; if
3448 needed, we can create the SAVE_EXPR when instantiating the
3449 template. Furthermore, the middle-end cannot handle C++-specific
3450 tree codes. */
3451 if (processing_template_decl)
3452 return expr;
3453 return save_expr (expr);
3456 /* Initialize tree.c. */
3458 void
3459 init_tree (void)
3461 list_hash_table = htab_create_ggc (31, list_hash, list_hash_eq, NULL);
3464 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
3465 is. Note that sfk_none is zero, so this function can be used as a
3466 predicate to test whether or not DECL is a special function. */
3468 special_function_kind
3469 special_function_p (const_tree decl)
3471 /* Rather than doing all this stuff with magic names, we should
3472 probably have a field of type `special_function_kind' in
3473 DECL_LANG_SPECIFIC. */
3474 if (DECL_INHERITED_CTOR_BASE (decl))
3475 return sfk_inheriting_constructor;
3476 if (DECL_COPY_CONSTRUCTOR_P (decl))
3477 return sfk_copy_constructor;
3478 if (DECL_MOVE_CONSTRUCTOR_P (decl))
3479 return sfk_move_constructor;
3480 if (DECL_CONSTRUCTOR_P (decl))
3481 return sfk_constructor;
3482 if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
3484 if (copy_fn_p (decl))
3485 return sfk_copy_assignment;
3486 if (move_fn_p (decl))
3487 return sfk_move_assignment;
3489 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
3490 return sfk_destructor;
3491 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
3492 return sfk_complete_destructor;
3493 if (DECL_BASE_DESTRUCTOR_P (decl))
3494 return sfk_base_destructor;
3495 if (DECL_DELETING_DESTRUCTOR_P (decl))
3496 return sfk_deleting_destructor;
3497 if (DECL_CONV_FN_P (decl))
3498 return sfk_conversion;
3500 return sfk_none;
3503 /* Returns nonzero if TYPE is a character type, including wchar_t. */
3506 char_type_p (tree type)
3508 return (same_type_p (type, char_type_node)
3509 || same_type_p (type, unsigned_char_type_node)
3510 || same_type_p (type, signed_char_type_node)
3511 || same_type_p (type, char16_type_node)
3512 || same_type_p (type, char32_type_node)
3513 || same_type_p (type, wchar_type_node));
3516 /* Returns the kind of linkage associated with the indicated DECL. Th
3517 value returned is as specified by the language standard; it is
3518 independent of implementation details regarding template
3519 instantiation, etc. For example, it is possible that a declaration
3520 to which this function assigns external linkage would not show up
3521 as a global symbol when you run `nm' on the resulting object file. */
3523 linkage_kind
3524 decl_linkage (tree decl)
3526 /* This function doesn't attempt to calculate the linkage from first
3527 principles as given in [basic.link]. Instead, it makes use of
3528 the fact that we have already set TREE_PUBLIC appropriately, and
3529 then handles a few special cases. Ideally, we would calculate
3530 linkage first, and then transform that into a concrete
3531 implementation. */
3533 /* Things that don't have names have no linkage. */
3534 if (!DECL_NAME (decl))
3535 return lk_none;
3537 /* Fields have no linkage. */
3538 if (TREE_CODE (decl) == FIELD_DECL)
3539 return lk_none;
3541 /* Things that are TREE_PUBLIC have external linkage. */
3542 if (TREE_PUBLIC (decl))
3543 return lk_external;
3545 if (TREE_CODE (decl) == NAMESPACE_DECL)
3546 return lk_external;
3548 /* Linkage of a CONST_DECL depends on the linkage of the enumeration
3549 type. */
3550 if (TREE_CODE (decl) == CONST_DECL)
3551 return decl_linkage (TYPE_NAME (DECL_CONTEXT (decl)));
3553 /* Some things that are not TREE_PUBLIC have external linkage, too.
3554 For example, on targets that don't have weak symbols, we make all
3555 template instantiations have internal linkage (in the object
3556 file), but the symbols should still be treated as having external
3557 linkage from the point of view of the language. */
3558 if ((TREE_CODE (decl) == FUNCTION_DECL
3559 || TREE_CODE (decl) == VAR_DECL)
3560 && DECL_COMDAT (decl))
3561 return lk_external;
3563 /* Things in local scope do not have linkage, if they don't have
3564 TREE_PUBLIC set. */
3565 if (decl_function_context (decl))
3566 return lk_none;
3568 /* Members of the anonymous namespace also have TREE_PUBLIC unset, but
3569 are considered to have external linkage for language purposes. DECLs
3570 really meant to have internal linkage have DECL_THIS_STATIC set. */
3571 if (TREE_CODE (decl) == TYPE_DECL)
3572 return lk_external;
3573 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3575 if (!DECL_THIS_STATIC (decl))
3576 return lk_external;
3578 /* Static data members and static member functions from classes
3579 in anonymous namespace also don't have TREE_PUBLIC set. */
3580 if (DECL_CLASS_CONTEXT (decl))
3581 return lk_external;
3584 /* Everything else has internal linkage. */
3585 return lk_internal;
3588 /* Returns the storage duration of the object or reference associated with
3589 the indicated DECL, which should be a VAR_DECL or PARM_DECL. */
3591 duration_kind
3592 decl_storage_duration (tree decl)
3594 if (TREE_CODE (decl) == PARM_DECL)
3595 return dk_auto;
3596 if (TREE_CODE (decl) == FUNCTION_DECL)
3597 return dk_static;
3598 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3599 if (!TREE_STATIC (decl)
3600 && !DECL_EXTERNAL (decl))
3601 return dk_auto;
3602 if (DECL_THREAD_LOCAL_P (decl))
3603 return dk_thread;
3604 return dk_static;
3607 /* EXP is an expression that we want to pre-evaluate. Returns (in
3608 *INITP) an expression that will perform the pre-evaluation. The
3609 value returned by this function is a side-effect free expression
3610 equivalent to the pre-evaluated expression. Callers must ensure
3611 that *INITP is evaluated before EXP. */
3613 tree
3614 stabilize_expr (tree exp, tree* initp)
3616 tree init_expr;
3618 if (!TREE_SIDE_EFFECTS (exp))
3619 init_expr = NULL_TREE;
3620 else if (VOID_TYPE_P (TREE_TYPE (exp)))
3622 init_expr = exp;
3623 exp = void_zero_node;
3625 /* There are no expressions with REFERENCE_TYPE, but there can be call
3626 arguments with such a type; just treat it as a pointer. */
3627 else if (TREE_CODE (TREE_TYPE (exp)) == REFERENCE_TYPE
3628 || SCALAR_TYPE_P (TREE_TYPE (exp))
3629 || !lvalue_or_rvalue_with_address_p (exp))
3631 init_expr = get_target_expr (exp);
3632 exp = TARGET_EXPR_SLOT (init_expr);
3634 else
3636 bool xval = !real_lvalue_p (exp);
3637 exp = cp_build_addr_expr (exp, tf_warning_or_error);
3638 init_expr = get_target_expr (exp);
3639 exp = TARGET_EXPR_SLOT (init_expr);
3640 exp = cp_build_indirect_ref (exp, RO_NULL, tf_warning_or_error);
3641 if (xval)
3642 exp = move (exp);
3644 *initp = init_expr;
3646 gcc_assert (!TREE_SIDE_EFFECTS (exp));
3647 return exp;
3650 /* Add NEW_EXPR, an expression whose value we don't care about, after the
3651 similar expression ORIG. */
3653 tree
3654 add_stmt_to_compound (tree orig, tree new_expr)
3656 if (!new_expr || !TREE_SIDE_EFFECTS (new_expr))
3657 return orig;
3658 if (!orig || !TREE_SIDE_EFFECTS (orig))
3659 return new_expr;
3660 return build2 (COMPOUND_EXPR, void_type_node, orig, new_expr);
3663 /* Like stabilize_expr, but for a call whose arguments we want to
3664 pre-evaluate. CALL is modified in place to use the pre-evaluated
3665 arguments, while, upon return, *INITP contains an expression to
3666 compute the arguments. */
3668 void
3669 stabilize_call (tree call, tree *initp)
3671 tree inits = NULL_TREE;
3672 int i;
3673 int nargs = call_expr_nargs (call);
3675 if (call == error_mark_node || processing_template_decl)
3677 *initp = NULL_TREE;
3678 return;
3681 gcc_assert (TREE_CODE (call) == CALL_EXPR);
3683 for (i = 0; i < nargs; i++)
3685 tree init;
3686 CALL_EXPR_ARG (call, i) =
3687 stabilize_expr (CALL_EXPR_ARG (call, i), &init);
3688 inits = add_stmt_to_compound (inits, init);
3691 *initp = inits;
3694 /* Like stabilize_expr, but for an AGGR_INIT_EXPR whose arguments we want
3695 to pre-evaluate. CALL is modified in place to use the pre-evaluated
3696 arguments, while, upon return, *INITP contains an expression to
3697 compute the arguments. */
3699 static void
3700 stabilize_aggr_init (tree call, tree *initp)
3702 tree inits = NULL_TREE;
3703 int i;
3704 int nargs = aggr_init_expr_nargs (call);
3706 if (call == error_mark_node)
3707 return;
3709 gcc_assert (TREE_CODE (call) == AGGR_INIT_EXPR);
3711 for (i = 0; i < nargs; i++)
3713 tree init;
3714 AGGR_INIT_EXPR_ARG (call, i) =
3715 stabilize_expr (AGGR_INIT_EXPR_ARG (call, i), &init);
3716 inits = add_stmt_to_compound (inits, init);
3719 *initp = inits;
3722 /* Like stabilize_expr, but for an initialization.
3724 If the initialization is for an object of class type, this function
3725 takes care not to introduce additional temporaries.
3727 Returns TRUE iff the expression was successfully pre-evaluated,
3728 i.e., if INIT is now side-effect free, except for, possibly, a
3729 single call to a constructor. */
3731 bool
3732 stabilize_init (tree init, tree *initp)
3734 tree t = init;
3736 *initp = NULL_TREE;
3738 if (t == error_mark_node || processing_template_decl)
3739 return true;
3741 if (TREE_CODE (t) == INIT_EXPR)
3742 t = TREE_OPERAND (t, 1);
3743 if (TREE_CODE (t) == TARGET_EXPR)
3744 t = TARGET_EXPR_INITIAL (t);
3746 /* If the RHS can be stabilized without breaking copy elision, stabilize
3747 it. We specifically don't stabilize class prvalues here because that
3748 would mean an extra copy, but they might be stabilized below. */
3749 if (TREE_CODE (init) == INIT_EXPR
3750 && TREE_CODE (t) != CONSTRUCTOR
3751 && TREE_CODE (t) != AGGR_INIT_EXPR
3752 && (SCALAR_TYPE_P (TREE_TYPE (t))
3753 || lvalue_or_rvalue_with_address_p (t)))
3755 TREE_OPERAND (init, 1) = stabilize_expr (t, initp);
3756 return true;
3759 if (TREE_CODE (t) == COMPOUND_EXPR
3760 && TREE_CODE (init) == INIT_EXPR)
3762 tree last = expr_last (t);
3763 /* Handle stabilizing the EMPTY_CLASS_EXPR pattern. */
3764 if (!TREE_SIDE_EFFECTS (last))
3766 *initp = t;
3767 TREE_OPERAND (init, 1) = last;
3768 return true;
3772 if (TREE_CODE (t) == CONSTRUCTOR)
3774 /* Aggregate initialization: stabilize each of the field
3775 initializers. */
3776 unsigned i;
3777 constructor_elt *ce;
3778 bool good = true;
3779 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
3780 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
3782 tree type = TREE_TYPE (ce->value);
3783 tree subinit;
3784 if (TREE_CODE (type) == REFERENCE_TYPE
3785 || SCALAR_TYPE_P (type))
3786 ce->value = stabilize_expr (ce->value, &subinit);
3787 else if (!stabilize_init (ce->value, &subinit))
3788 good = false;
3789 *initp = add_stmt_to_compound (*initp, subinit);
3791 return good;
3794 if (TREE_CODE (t) == CALL_EXPR)
3796 stabilize_call (t, initp);
3797 return true;
3800 if (TREE_CODE (t) == AGGR_INIT_EXPR)
3802 stabilize_aggr_init (t, initp);
3803 return true;
3806 /* The initialization is being performed via a bitwise copy -- and
3807 the item copied may have side effects. */
3808 return !TREE_SIDE_EFFECTS (init);
3811 /* Like "fold", but should be used whenever we might be processing the
3812 body of a template. */
3814 tree
3815 fold_if_not_in_template (tree expr)
3817 /* In the body of a template, there is never any need to call
3818 "fold". We will call fold later when actually instantiating the
3819 template. Integral constant expressions in templates will be
3820 evaluated via fold_non_dependent_expr, as necessary. */
3821 if (processing_template_decl)
3822 return expr;
3824 /* Fold C++ front-end specific tree codes. */
3825 if (TREE_CODE (expr) == UNARY_PLUS_EXPR)
3826 return fold_convert (TREE_TYPE (expr), TREE_OPERAND (expr, 0));
3828 return fold (expr);
3831 /* Returns true if a cast to TYPE may appear in an integral constant
3832 expression. */
3834 bool
3835 cast_valid_in_integral_constant_expression_p (tree type)
3837 return (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
3838 || cxx_dialect >= cxx0x
3839 || dependent_type_p (type)
3840 || type == error_mark_node);
3843 /* Return true if we need to fix linkage information of DECL. */
3845 static bool
3846 cp_fix_function_decl_p (tree decl)
3848 /* Skip if DECL is not externally visible. */
3849 if (!TREE_PUBLIC (decl))
3850 return false;
3852 /* We need to fix DECL if it a appears to be exported but with no
3853 function body. Thunks do not have CFGs and we may need to
3854 handle them specially later. */
3855 if (!gimple_has_body_p (decl)
3856 && !DECL_THUNK_P (decl)
3857 && !DECL_EXTERNAL (decl))
3859 struct cgraph_node *node = cgraph_get_node (decl);
3861 /* Don't fix same_body aliases. Although they don't have their own
3862 CFG, they share it with what they alias to. */
3863 if (!node || !node->alias
3864 || !vec_safe_length (node->symbol.ref_list.references))
3865 return true;
3868 return false;
3871 /* Clean the C++ specific parts of the tree T. */
3873 void
3874 cp_free_lang_data (tree t)
3876 if (TREE_CODE (t) == METHOD_TYPE
3877 || TREE_CODE (t) == FUNCTION_TYPE)
3879 /* Default args are not interesting anymore. */
3880 tree argtypes = TYPE_ARG_TYPES (t);
3881 while (argtypes)
3883 TREE_PURPOSE (argtypes) = 0;
3884 argtypes = TREE_CHAIN (argtypes);
3887 else if (TREE_CODE (t) == FUNCTION_DECL
3888 && cp_fix_function_decl_p (t))
3890 /* If T is used in this translation unit at all, the definition
3891 must exist somewhere else since we have decided to not emit it
3892 in this TU. So make it an external reference. */
3893 DECL_EXTERNAL (t) = 1;
3894 TREE_STATIC (t) = 0;
3896 if (TREE_CODE (t) == NAMESPACE_DECL)
3898 /* The list of users of a namespace isn't useful for the middle-end
3899 or debug generators. */
3900 DECL_NAMESPACE_USERS (t) = NULL_TREE;
3901 /* Neither do we need the leftover chaining of namespaces
3902 from the binding level. */
3903 DECL_CHAIN (t) = NULL_TREE;
3907 /* Stub for c-common. Please keep in sync with c-decl.c.
3908 FIXME: If address space support is target specific, then this
3909 should be a C target hook. But currently this is not possible,
3910 because this function is called via REGISTER_TARGET_PRAGMAS. */
3911 void
3912 c_register_addr_space (const char * /*word*/, addr_space_t /*as*/)
3916 /* Return the number of operands in T that we care about for things like
3917 mangling. */
3920 cp_tree_operand_length (const_tree t)
3922 enum tree_code code = TREE_CODE (t);
3924 switch (code)
3926 case PREINCREMENT_EXPR:
3927 case PREDECREMENT_EXPR:
3928 case POSTINCREMENT_EXPR:
3929 case POSTDECREMENT_EXPR:
3930 return 1;
3932 case ARRAY_REF:
3933 return 2;
3935 case EXPR_PACK_EXPANSION:
3936 return 1;
3938 default:
3939 return TREE_OPERAND_LENGTH (t);
3943 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
3944 /* Complain that some language-specific thing hanging off a tree
3945 node has been accessed improperly. */
3947 void
3948 lang_check_failed (const char* file, int line, const char* function)
3950 internal_error ("lang_* check: failed in %s, at %s:%d",
3951 function, trim_filename (file), line);
3953 #endif /* ENABLE_TREE_CHECKING */
3955 #include "gt-cp-tree.h"