[RS6000] Power10 ICE running gcc.target/powerpc/ppc-ne0-1.c
[official-gcc.git] / gcc / cp / tree.c
blob9bc37aca95b2da5419123855f0a610d3d0f73b12
1 /* Language-dependent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2020 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 "tree.h"
25 #include "cp-tree.h"
26 #include "gimple-expr.h"
27 #include "cgraph.h"
28 #include "stor-layout.h"
29 #include "print-tree.h"
30 #include "tree-iterator.h"
31 #include "tree-inline.h"
32 #include "debug.h"
33 #include "convert.h"
34 #include "gimplify.h"
35 #include "stringpool.h"
36 #include "attribs.h"
37 #include "flags.h"
38 #include "selftest.h"
40 static tree bot_manip (tree *, int *, void *);
41 static tree bot_replace (tree *, int *, void *);
42 static hashval_t list_hash_pieces (tree, tree, tree);
43 static tree build_target_expr (tree, tree, tsubst_flags_t);
44 static tree count_trees_r (tree *, int *, void *);
45 static tree verify_stmt_tree_r (tree *, int *, void *);
47 static tree handle_init_priority_attribute (tree *, tree, tree, int, bool *);
48 static tree handle_abi_tag_attribute (tree *, tree, tree, int, bool *);
50 /* If REF is an lvalue, returns the kind of lvalue that REF is.
51 Otherwise, returns clk_none. */
53 cp_lvalue_kind
54 lvalue_kind (const_tree ref)
56 cp_lvalue_kind op1_lvalue_kind = clk_none;
57 cp_lvalue_kind op2_lvalue_kind = clk_none;
59 /* Expressions of reference type are sometimes wrapped in
60 INDIRECT_REFs. INDIRECT_REFs are just internal compiler
61 representation, not part of the language, so we have to look
62 through them. */
63 if (REFERENCE_REF_P (ref))
64 return lvalue_kind (TREE_OPERAND (ref, 0));
66 if (TREE_TYPE (ref)
67 && TYPE_REF_P (TREE_TYPE (ref)))
69 /* unnamed rvalue references are rvalues */
70 if (TYPE_REF_IS_RVALUE (TREE_TYPE (ref))
71 && TREE_CODE (ref) != PARM_DECL
72 && !VAR_P (ref)
73 && TREE_CODE (ref) != COMPONENT_REF
74 /* Functions are always lvalues. */
75 && TREE_CODE (TREE_TYPE (TREE_TYPE (ref))) != FUNCTION_TYPE)
77 op1_lvalue_kind = clk_rvalueref;
78 if (implicit_rvalue_p (ref))
79 op1_lvalue_kind |= clk_implicit_rval;
80 return op1_lvalue_kind;
83 /* lvalue references and named rvalue references are lvalues. */
84 return clk_ordinary;
87 if (ref == current_class_ptr)
88 return clk_none;
90 /* Expressions with cv void type are prvalues. */
91 if (TREE_TYPE (ref) && VOID_TYPE_P (TREE_TYPE (ref)))
92 return clk_none;
94 switch (TREE_CODE (ref))
96 case SAVE_EXPR:
97 return clk_none;
99 /* preincrements and predecrements are valid lvals, provided
100 what they refer to are valid lvals. */
101 case PREINCREMENT_EXPR:
102 case PREDECREMENT_EXPR:
103 case TRY_CATCH_EXPR:
104 case REALPART_EXPR:
105 case IMAGPART_EXPR:
106 case VIEW_CONVERT_EXPR:
107 return lvalue_kind (TREE_OPERAND (ref, 0));
109 case ARRAY_REF:
111 tree op1 = TREE_OPERAND (ref, 0);
112 if (TREE_CODE (TREE_TYPE (op1)) == ARRAY_TYPE)
114 op1_lvalue_kind = lvalue_kind (op1);
115 if (op1_lvalue_kind == clk_class)
116 /* in the case of an array operand, the result is an lvalue if
117 that operand is an lvalue and an xvalue otherwise */
118 op1_lvalue_kind = clk_rvalueref;
119 return op1_lvalue_kind;
121 else
122 return clk_ordinary;
125 case MEMBER_REF:
126 case DOTSTAR_EXPR:
127 if (TREE_CODE (ref) == MEMBER_REF)
128 op1_lvalue_kind = clk_ordinary;
129 else
130 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
131 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (ref, 1))))
132 op1_lvalue_kind = clk_none;
133 else if (op1_lvalue_kind == clk_class)
134 /* The result of a .* expression whose second operand is a pointer to a
135 data member is an lvalue if the first operand is an lvalue and an
136 xvalue otherwise. */
137 op1_lvalue_kind = clk_rvalueref;
138 return op1_lvalue_kind;
140 case COMPONENT_REF:
141 if (BASELINK_P (TREE_OPERAND (ref, 1)))
143 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (ref, 1));
145 /* For static member function recurse on the BASELINK, we can get
146 here e.g. from reference_binding. If BASELINK_FUNCTIONS is
147 OVERLOAD, the overload is resolved first if possible through
148 resolve_address_of_overloaded_function. */
149 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_STATIC_FUNCTION_P (fn))
150 return lvalue_kind (TREE_OPERAND (ref, 1));
152 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
153 if (op1_lvalue_kind == clk_class)
154 /* If E1 is an lvalue, then E1.E2 is an lvalue;
155 otherwise E1.E2 is an xvalue. */
156 op1_lvalue_kind = clk_rvalueref;
158 /* Look at the member designator. */
159 if (!op1_lvalue_kind)
161 else if (is_overloaded_fn (TREE_OPERAND (ref, 1)))
162 /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
163 situations. If we're seeing a COMPONENT_REF, it's a non-static
164 member, so it isn't an lvalue. */
165 op1_lvalue_kind = clk_none;
166 else if (TREE_CODE (TREE_OPERAND (ref, 1)) != FIELD_DECL)
167 /* This can be IDENTIFIER_NODE in a template. */;
168 else if (DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
170 /* Clear the ordinary bit. If this object was a class
171 rvalue we want to preserve that information. */
172 op1_lvalue_kind &= ~clk_ordinary;
173 /* The lvalue is for a bitfield. */
174 op1_lvalue_kind |= clk_bitfield;
176 else if (DECL_PACKED (TREE_OPERAND (ref, 1)))
177 op1_lvalue_kind |= clk_packed;
179 return op1_lvalue_kind;
181 case STRING_CST:
182 case COMPOUND_LITERAL_EXPR:
183 return clk_ordinary;
185 case CONST_DECL:
186 /* CONST_DECL without TREE_STATIC are enumeration values and
187 thus not lvalues. With TREE_STATIC they are used by ObjC++
188 in objc_build_string_object and need to be considered as
189 lvalues. */
190 if (! TREE_STATIC (ref))
191 return clk_none;
192 /* FALLTHRU */
193 case VAR_DECL:
194 if (VAR_P (ref) && DECL_HAS_VALUE_EXPR_P (ref))
195 return lvalue_kind (DECL_VALUE_EXPR (CONST_CAST_TREE (ref)));
197 if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
198 && DECL_LANG_SPECIFIC (ref)
199 && DECL_IN_AGGR_P (ref))
200 return clk_none;
201 /* FALLTHRU */
202 case INDIRECT_REF:
203 case ARROW_EXPR:
204 case PARM_DECL:
205 case RESULT_DECL:
206 case PLACEHOLDER_EXPR:
207 return clk_ordinary;
209 /* A scope ref in a template, left as SCOPE_REF to support later
210 access checking. */
211 case SCOPE_REF:
212 gcc_assert (!type_dependent_expression_p (CONST_CAST_TREE (ref)));
214 tree op = TREE_OPERAND (ref, 1);
215 if (TREE_CODE (op) == FIELD_DECL)
216 return (DECL_C_BIT_FIELD (op) ? clk_bitfield : clk_ordinary);
217 else
218 return lvalue_kind (op);
221 case MAX_EXPR:
222 case MIN_EXPR:
223 /* Disallow <? and >? as lvalues if either argument side-effects. */
224 if (TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 0))
225 || TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 1)))
226 return clk_none;
227 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
228 op2_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 1));
229 break;
231 case COND_EXPR:
232 if (processing_template_decl)
234 /* Within templates, a REFERENCE_TYPE will indicate whether
235 the COND_EXPR result is an ordinary lvalue or rvalueref.
236 Since REFERENCE_TYPEs are handled above, if we reach this
237 point, we know we got a plain rvalue. Unless we have a
238 type-dependent expr, that is, but we shouldn't be testing
239 lvalueness if we can't even tell the types yet! */
240 gcc_assert (!type_dependent_expression_p (CONST_CAST_TREE (ref)));
241 goto default_;
244 tree op1 = TREE_OPERAND (ref, 1);
245 if (!op1) op1 = TREE_OPERAND (ref, 0);
246 tree op2 = TREE_OPERAND (ref, 2);
247 op1_lvalue_kind = lvalue_kind (op1);
248 op2_lvalue_kind = lvalue_kind (op2);
249 if (!op1_lvalue_kind != !op2_lvalue_kind)
251 /* The second or the third operand (but not both) is a
252 throw-expression; the result is of the type
253 and value category of the other. */
254 if (op1_lvalue_kind && TREE_CODE (op2) == THROW_EXPR)
255 op2_lvalue_kind = op1_lvalue_kind;
256 else if (op2_lvalue_kind && TREE_CODE (op1) == THROW_EXPR)
257 op1_lvalue_kind = op2_lvalue_kind;
260 break;
262 case MODOP_EXPR:
263 /* We expect to see unlowered MODOP_EXPRs only during
264 template processing. */
265 gcc_assert (processing_template_decl);
266 return clk_ordinary;
268 case MODIFY_EXPR:
269 case TYPEID_EXPR:
270 return clk_ordinary;
272 case COMPOUND_EXPR:
273 return lvalue_kind (TREE_OPERAND (ref, 1));
275 case TARGET_EXPR:
276 return clk_class;
278 case VA_ARG_EXPR:
279 return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none);
281 case CALL_EXPR:
282 /* We can see calls outside of TARGET_EXPR in templates. */
283 if (CLASS_TYPE_P (TREE_TYPE (ref)))
284 return clk_class;
285 return clk_none;
287 case FUNCTION_DECL:
288 /* All functions (except non-static-member functions) are
289 lvalues. */
290 return (DECL_NONSTATIC_MEMBER_FUNCTION_P (ref)
291 ? clk_none : clk_ordinary);
293 case BASELINK:
294 /* We now represent a reference to a single static member function
295 with a BASELINK. */
296 /* This CONST_CAST is okay because BASELINK_FUNCTIONS returns
297 its argument unmodified and we assign it to a const_tree. */
298 return lvalue_kind (BASELINK_FUNCTIONS (CONST_CAST_TREE (ref)));
300 case NON_DEPENDENT_EXPR:
301 case PAREN_EXPR:
302 return lvalue_kind (TREE_OPERAND (ref, 0));
304 case TEMPLATE_PARM_INDEX:
305 if (CLASS_TYPE_P (TREE_TYPE (ref)))
306 /* A template parameter object is an lvalue. */
307 return clk_ordinary;
308 return clk_none;
310 default:
311 default_:
312 if (!TREE_TYPE (ref))
313 return clk_none;
314 if (CLASS_TYPE_P (TREE_TYPE (ref))
315 || TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE)
316 return clk_class;
317 return clk_none;
320 /* If one operand is not an lvalue at all, then this expression is
321 not an lvalue. */
322 if (!op1_lvalue_kind || !op2_lvalue_kind)
323 return clk_none;
325 /* Otherwise, it's an lvalue, and it has all the odd properties
326 contributed by either operand. */
327 op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
328 /* It's not an ordinary lvalue if it involves any other kind. */
329 if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
330 op1_lvalue_kind &= ~clk_ordinary;
331 /* It can't be both a pseudo-lvalue and a non-addressable lvalue.
332 A COND_EXPR of those should be wrapped in a TARGET_EXPR. */
333 if ((op1_lvalue_kind & (clk_rvalueref|clk_class))
334 && (op1_lvalue_kind & (clk_bitfield|clk_packed)))
335 op1_lvalue_kind = clk_none;
336 return op1_lvalue_kind;
339 /* Returns the kind of lvalue that REF is, in the sense of [basic.lval]. */
341 cp_lvalue_kind
342 real_lvalue_p (const_tree ref)
344 cp_lvalue_kind kind = lvalue_kind (ref);
345 if (kind & (clk_rvalueref|clk_class))
346 return clk_none;
347 else
348 return kind;
351 /* c-common wants us to return bool. */
353 bool
354 lvalue_p (const_tree t)
356 return real_lvalue_p (t);
359 /* This differs from lvalue_p in that xvalues are included. */
361 bool
362 glvalue_p (const_tree ref)
364 cp_lvalue_kind kind = lvalue_kind (ref);
365 if (kind & clk_class)
366 return false;
367 else
368 return (kind != clk_none);
371 /* This differs from glvalue_p in that class prvalues are included. */
373 bool
374 obvalue_p (const_tree ref)
376 return (lvalue_kind (ref) != clk_none);
379 /* Returns true if REF is an xvalue (the result of dereferencing an rvalue
380 reference), false otherwise. */
382 bool
383 xvalue_p (const_tree ref)
385 return (lvalue_kind (ref) == clk_rvalueref);
388 /* True if REF is a bit-field. */
390 bool
391 bitfield_p (const_tree ref)
393 return (lvalue_kind (ref) & clk_bitfield);
396 /* C++-specific version of stabilize_reference. */
398 tree
399 cp_stabilize_reference (tree ref)
401 STRIP_ANY_LOCATION_WRAPPER (ref);
402 switch (TREE_CODE (ref))
404 case NON_DEPENDENT_EXPR:
405 /* We aren't actually evaluating this. */
406 return ref;
408 /* We need to treat specially anything stabilize_reference doesn't
409 handle specifically. */
410 case VAR_DECL:
411 case PARM_DECL:
412 case RESULT_DECL:
413 CASE_CONVERT:
414 case FLOAT_EXPR:
415 case FIX_TRUNC_EXPR:
416 case INDIRECT_REF:
417 case COMPONENT_REF:
418 case BIT_FIELD_REF:
419 case ARRAY_REF:
420 case ARRAY_RANGE_REF:
421 case ERROR_MARK:
422 break;
423 default:
424 cp_lvalue_kind kind = lvalue_kind (ref);
425 if ((kind & ~clk_class) != clk_none)
427 tree type = unlowered_expr_type (ref);
428 bool rval = !!(kind & clk_rvalueref);
429 type = cp_build_reference_type (type, rval);
430 /* This inhibits warnings in, eg, cxx_mark_addressable
431 (c++/60955). */
432 warning_sentinel s (extra_warnings);
433 ref = build_static_cast (input_location, type, ref,
434 tf_error);
438 return stabilize_reference (ref);
441 /* Test whether DECL is a builtin that may appear in a
442 constant-expression. */
444 bool
445 builtin_valid_in_constant_expr_p (const_tree decl)
447 STRIP_ANY_LOCATION_WRAPPER (decl);
448 if (TREE_CODE (decl) != FUNCTION_DECL)
449 /* Not a function. */
450 return false;
451 if (DECL_BUILT_IN_CLASS (decl) != BUILT_IN_NORMAL)
453 if (fndecl_built_in_p (decl, CP_BUILT_IN_IS_CONSTANT_EVALUATED,
454 BUILT_IN_FRONTEND)
455 || fndecl_built_in_p (decl, CP_BUILT_IN_SOURCE_LOCATION,
456 BUILT_IN_FRONTEND))
457 return true;
458 /* Not a built-in. */
459 return false;
461 switch (DECL_FUNCTION_CODE (decl))
463 /* These always have constant results like the corresponding
464 macros/symbol. */
465 case BUILT_IN_FILE:
466 case BUILT_IN_FUNCTION:
467 case BUILT_IN_LINE:
469 /* The following built-ins are valid in constant expressions
470 when their arguments are. */
471 case BUILT_IN_ADD_OVERFLOW_P:
472 case BUILT_IN_SUB_OVERFLOW_P:
473 case BUILT_IN_MUL_OVERFLOW_P:
475 /* These have constant results even if their operands are
476 non-constant. */
477 case BUILT_IN_CONSTANT_P:
478 case BUILT_IN_ATOMIC_ALWAYS_LOCK_FREE:
479 return true;
480 default:
481 return false;
485 /* Build a TARGET_EXPR, initializing the DECL with the VALUE. */
487 static tree
488 build_target_expr (tree decl, tree value, tsubst_flags_t complain)
490 tree t;
491 tree type = TREE_TYPE (decl);
493 value = mark_rvalue_use (value);
495 gcc_checking_assert (VOID_TYPE_P (TREE_TYPE (value))
496 || TREE_TYPE (decl) == TREE_TYPE (value)
497 /* On ARM ctors return 'this'. */
498 || (TYPE_PTR_P (TREE_TYPE (value))
499 && TREE_CODE (value) == CALL_EXPR)
500 || useless_type_conversion_p (TREE_TYPE (decl),
501 TREE_TYPE (value)));
503 /* Set TREE_READONLY for optimization, such as gimplify_init_constructor
504 moving a constant aggregate into .rodata. */
505 if (CP_TYPE_CONST_NON_VOLATILE_P (type)
506 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
507 && !VOID_TYPE_P (TREE_TYPE (value))
508 && reduced_constant_expression_p (value))
509 TREE_READONLY (decl) = true;
511 if (complain & tf_no_cleanup)
512 /* The caller is building a new-expr and does not need a cleanup. */
513 t = NULL_TREE;
514 else
516 t = cxx_maybe_build_cleanup (decl, complain);
517 if (t == error_mark_node)
518 return error_mark_node;
520 t = build4 (TARGET_EXPR, type, decl, value, t, NULL_TREE);
521 if (location_t eloc = cp_expr_location (value))
522 SET_EXPR_LOCATION (t, eloc);
523 /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
524 ignore the TARGET_EXPR. If there really turn out to be no
525 side-effects, then the optimizer should be able to get rid of
526 whatever code is generated anyhow. */
527 TREE_SIDE_EFFECTS (t) = 1;
529 return t;
532 /* Return an undeclared local temporary of type TYPE for use in building a
533 TARGET_EXPR. */
535 tree
536 build_local_temp (tree type)
538 tree slot = build_decl (input_location,
539 VAR_DECL, NULL_TREE, type);
540 DECL_ARTIFICIAL (slot) = 1;
541 DECL_IGNORED_P (slot) = 1;
542 DECL_CONTEXT (slot) = current_function_decl;
543 layout_decl (slot, 0);
544 return slot;
547 /* Return whether DECL is such a local temporary (or one from
548 create_tmp_var_raw). */
550 bool
551 is_local_temp (tree decl)
553 return (VAR_P (decl) && DECL_ARTIFICIAL (decl)
554 && !TREE_STATIC (decl)
555 && DECL_FUNCTION_SCOPE_P (decl));
558 /* Set various status flags when building an AGGR_INIT_EXPR object T. */
560 static void
561 process_aggr_init_operands (tree t)
563 bool side_effects;
565 side_effects = TREE_SIDE_EFFECTS (t);
566 if (!side_effects)
568 int i, n;
569 n = TREE_OPERAND_LENGTH (t);
570 for (i = 1; i < n; i++)
572 tree op = TREE_OPERAND (t, i);
573 if (op && TREE_SIDE_EFFECTS (op))
575 side_effects = 1;
576 break;
580 TREE_SIDE_EFFECTS (t) = side_effects;
583 /* Build an AGGR_INIT_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE,
584 FN, and SLOT. NARGS is the number of call arguments which are specified
585 as a tree array ARGS. */
587 static tree
588 build_aggr_init_array (tree return_type, tree fn, tree slot, int nargs,
589 tree *args)
591 tree t;
592 int i;
594 t = build_vl_exp (AGGR_INIT_EXPR, nargs + 3);
595 TREE_TYPE (t) = return_type;
596 AGGR_INIT_EXPR_FN (t) = fn;
597 AGGR_INIT_EXPR_SLOT (t) = slot;
598 for (i = 0; i < nargs; i++)
599 AGGR_INIT_EXPR_ARG (t, i) = args[i];
600 process_aggr_init_operands (t);
601 return t;
604 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
605 target. TYPE is the type to be initialized.
607 Build an AGGR_INIT_EXPR to represent the initialization. This function
608 differs from build_cplus_new in that an AGGR_INIT_EXPR can only be used
609 to initialize another object, whereas a TARGET_EXPR can either
610 initialize another object or create its own temporary object, and as a
611 result building up a TARGET_EXPR requires that the type's destructor be
612 callable. */
614 tree
615 build_aggr_init_expr (tree type, tree init)
617 tree fn;
618 tree slot;
619 tree rval;
620 int is_ctor;
622 gcc_assert (!VOID_TYPE_P (type));
624 /* Don't build AGGR_INIT_EXPR in a template. */
625 if (processing_template_decl)
626 return init;
628 fn = cp_get_callee (init);
629 if (fn == NULL_TREE)
630 return convert (type, init);
632 is_ctor = (TREE_CODE (fn) == ADDR_EXPR
633 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
634 && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
636 /* We split the CALL_EXPR into its function and its arguments here.
637 Then, in expand_expr, we put them back together. The reason for
638 this is that this expression might be a default argument
639 expression. In that case, we need a new temporary every time the
640 expression is used. That's what break_out_target_exprs does; it
641 replaces every AGGR_INIT_EXPR with a copy that uses a fresh
642 temporary slot. Then, expand_expr builds up a call-expression
643 using the new slot. */
645 /* If we don't need to use a constructor to create an object of this
646 type, don't mess with AGGR_INIT_EXPR. */
647 if (is_ctor || TREE_ADDRESSABLE (type))
649 slot = build_local_temp (type);
651 if (TREE_CODE (init) == CALL_EXPR)
653 rval = build_aggr_init_array (void_type_node, fn, slot,
654 call_expr_nargs (init),
655 CALL_EXPR_ARGP (init));
656 AGGR_INIT_FROM_THUNK_P (rval)
657 = CALL_FROM_THUNK_P (init);
659 else
661 rval = build_aggr_init_array (void_type_node, fn, slot,
662 aggr_init_expr_nargs (init),
663 AGGR_INIT_EXPR_ARGP (init));
664 AGGR_INIT_FROM_THUNK_P (rval)
665 = AGGR_INIT_FROM_THUNK_P (init);
667 TREE_SIDE_EFFECTS (rval) = 1;
668 AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
669 TREE_NOTHROW (rval) = TREE_NOTHROW (init);
670 CALL_EXPR_OPERATOR_SYNTAX (rval) = CALL_EXPR_OPERATOR_SYNTAX (init);
671 CALL_EXPR_ORDERED_ARGS (rval) = CALL_EXPR_ORDERED_ARGS (init);
672 CALL_EXPR_REVERSE_ARGS (rval) = CALL_EXPR_REVERSE_ARGS (init);
674 else
675 rval = init;
677 if (location_t loc = EXPR_LOCATION (init))
678 SET_EXPR_LOCATION (rval, loc);
680 return rval;
683 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
684 target. TYPE is the type that this initialization should appear to
685 have.
687 Build an encapsulation of the initialization to perform
688 and return it so that it can be processed by language-independent
689 and language-specific expression expanders. */
691 tree
692 build_cplus_new (tree type, tree init, tsubst_flags_t complain)
694 /* This function should cope with what build_special_member_call
695 can produce. When performing parenthesized aggregate initialization,
696 it can produce a { }. */
697 if (BRACE_ENCLOSED_INITIALIZER_P (init))
699 gcc_assert (cxx_dialect >= cxx20);
700 return finish_compound_literal (type, init, complain);
703 tree rval = build_aggr_init_expr (type, init);
704 tree slot;
706 if (init == error_mark_node)
707 return error_mark_node;
709 if (!complete_type_or_maybe_complain (type, init, complain))
710 return error_mark_node;
712 /* Make sure that we're not trying to create an instance of an
713 abstract class. */
714 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
715 return error_mark_node;
717 if (TREE_CODE (rval) == AGGR_INIT_EXPR)
718 slot = AGGR_INIT_EXPR_SLOT (rval);
719 else if (TREE_CODE (rval) == CALL_EXPR
720 || TREE_CODE (rval) == CONSTRUCTOR)
721 slot = build_local_temp (type);
722 else
723 return rval;
725 rval = build_target_expr (slot, rval, complain);
727 if (rval != error_mark_node)
728 TARGET_EXPR_IMPLICIT_P (rval) = 1;
730 return rval;
733 /* Subroutine of build_vec_init_expr: Build up a single element
734 intialization as a proxy for the full array initialization to get things
735 marked as used and any appropriate diagnostics.
737 Since we're deferring building the actual constructor calls until
738 gimplification time, we need to build one now and throw it away so
739 that the relevant constructor gets mark_used before cgraph decides
740 what functions are needed. Here we assume that init is either
741 NULL_TREE, void_type_node (indicating value-initialization), or
742 another array to copy. */
744 static tree
745 build_vec_init_elt (tree type, tree init, tsubst_flags_t complain)
747 tree inner_type = strip_array_types (type);
749 if (integer_zerop (array_type_nelts_total (type))
750 || !CLASS_TYPE_P (inner_type))
751 /* No interesting initialization to do. */
752 return integer_zero_node;
753 else if (init == void_type_node)
754 return build_value_init (inner_type, complain);
756 gcc_assert (init == NULL_TREE
757 || (same_type_ignoring_top_level_qualifiers_p
758 (type, TREE_TYPE (init))));
760 releasing_vec argvec;
761 if (init)
763 tree init_type = strip_array_types (TREE_TYPE (init));
764 tree dummy = build_dummy_object (init_type);
765 if (!lvalue_p (init))
766 dummy = move (dummy);
767 argvec->quick_push (dummy);
769 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
770 &argvec, inner_type, LOOKUP_NORMAL,
771 complain);
773 /* For a trivial constructor, build_over_call creates a TARGET_EXPR. But
774 we don't want one here because we aren't creating a temporary. */
775 if (TREE_CODE (init) == TARGET_EXPR)
776 init = TARGET_EXPR_INITIAL (init);
778 return init;
781 /* Return a TARGET_EXPR which expresses the initialization of an array to
782 be named later, either default-initialization or copy-initialization
783 from another array of the same type. */
785 tree
786 build_vec_init_expr (tree type, tree init, tsubst_flags_t complain)
788 tree slot;
789 bool value_init = false;
790 tree elt_init = build_vec_init_elt (type, init, complain);
792 if (init == void_type_node)
794 value_init = true;
795 init = NULL_TREE;
798 slot = build_local_temp (type);
799 init = build2 (VEC_INIT_EXPR, type, slot, init);
800 TREE_SIDE_EFFECTS (init) = true;
801 SET_EXPR_LOCATION (init, input_location);
803 if (cxx_dialect >= cxx11
804 && potential_constant_expression (elt_init))
805 VEC_INIT_EXPR_IS_CONSTEXPR (init) = true;
806 VEC_INIT_EXPR_VALUE_INIT (init) = value_init;
808 return init;
811 /* Give a helpful diagnostic for a non-constexpr VEC_INIT_EXPR in a context
812 that requires a constant expression. */
814 void
815 diagnose_non_constexpr_vec_init (tree expr)
817 tree type = TREE_TYPE (VEC_INIT_EXPR_SLOT (expr));
818 tree init, elt_init;
819 if (VEC_INIT_EXPR_VALUE_INIT (expr))
820 init = void_type_node;
821 else
822 init = VEC_INIT_EXPR_INIT (expr);
824 elt_init = build_vec_init_elt (type, init, tf_warning_or_error);
825 require_potential_constant_expression (elt_init);
828 tree
829 build_array_copy (tree init)
831 return build_vec_init_expr (TREE_TYPE (init), init, tf_warning_or_error);
834 /* Build a TARGET_EXPR using INIT to initialize a new temporary of the
835 indicated TYPE. */
837 tree
838 build_target_expr_with_type (tree init, tree type, tsubst_flags_t complain)
840 gcc_assert (!VOID_TYPE_P (type));
842 if (TREE_CODE (init) == TARGET_EXPR
843 || init == error_mark_node)
844 return init;
845 else if (CLASS_TYPE_P (type) && type_has_nontrivial_copy_init (type)
846 && !VOID_TYPE_P (TREE_TYPE (init))
847 && TREE_CODE (init) != COND_EXPR
848 && TREE_CODE (init) != CONSTRUCTOR
849 && TREE_CODE (init) != VA_ARG_EXPR)
850 /* We need to build up a copy constructor call. A void initializer
851 means we're being called from bot_manip. COND_EXPR is a special
852 case because we already have copies on the arms and we don't want
853 another one here. A CONSTRUCTOR is aggregate initialization, which
854 is handled separately. A VA_ARG_EXPR is magic creation of an
855 aggregate; there's no additional work to be done. */
856 return force_rvalue (init, complain);
858 return force_target_expr (type, init, complain);
861 /* Like the above function, but without the checking. This function should
862 only be used by code which is deliberately trying to subvert the type
863 system, such as call_builtin_trap. Or build_over_call, to avoid
864 infinite recursion. */
866 tree
867 force_target_expr (tree type, tree init, tsubst_flags_t complain)
869 tree slot;
871 gcc_assert (!VOID_TYPE_P (type));
873 slot = build_local_temp (type);
874 return build_target_expr (slot, init, complain);
877 /* Like build_target_expr_with_type, but use the type of INIT. */
879 tree
880 get_target_expr_sfinae (tree init, tsubst_flags_t complain)
882 if (TREE_CODE (init) == AGGR_INIT_EXPR)
883 return build_target_expr (AGGR_INIT_EXPR_SLOT (init), init, complain);
884 else if (TREE_CODE (init) == VEC_INIT_EXPR)
885 return build_target_expr (VEC_INIT_EXPR_SLOT (init), init, complain);
886 else
888 init = convert_bitfield_to_declared_type (init);
889 return build_target_expr_with_type (init, TREE_TYPE (init), complain);
893 tree
894 get_target_expr (tree init)
896 return get_target_expr_sfinae (init, tf_warning_or_error);
899 /* If EXPR is a bitfield reference, convert it to the declared type of
900 the bitfield, and return the resulting expression. Otherwise,
901 return EXPR itself. */
903 tree
904 convert_bitfield_to_declared_type (tree expr)
906 tree bitfield_type;
908 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
909 if (bitfield_type)
910 expr = convert_to_integer_nofold (TYPE_MAIN_VARIANT (bitfield_type),
911 expr);
912 return expr;
915 /* EXPR is being used in an rvalue context. Return a version of EXPR
916 that is marked as an rvalue. */
918 tree
919 rvalue (tree expr)
921 tree type;
923 if (error_operand_p (expr))
924 return expr;
926 expr = mark_rvalue_use (expr);
928 /* [basic.lval]
930 Non-class rvalues always have cv-unqualified types. */
931 type = TREE_TYPE (expr);
932 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
933 type = cv_unqualified (type);
935 /* We need to do this for rvalue refs as well to get the right answer
936 from decltype; see c++/36628. */
937 if (!processing_template_decl && glvalue_p (expr))
938 expr = build1 (NON_LVALUE_EXPR, type, expr);
939 else if (type != TREE_TYPE (expr))
940 expr = build_nop (type, expr);
942 return expr;
946 struct cplus_array_info
948 tree type;
949 tree domain;
952 struct cplus_array_hasher : ggc_ptr_hash<tree_node>
954 typedef cplus_array_info *compare_type;
956 static hashval_t hash (tree t);
957 static bool equal (tree, cplus_array_info *);
960 /* Hash an ARRAY_TYPE. K is really of type `tree'. */
962 hashval_t
963 cplus_array_hasher::hash (tree t)
965 hashval_t hash;
967 hash = TYPE_UID (TREE_TYPE (t));
968 if (TYPE_DOMAIN (t))
969 hash ^= TYPE_UID (TYPE_DOMAIN (t));
970 return hash;
973 /* Compare two ARRAY_TYPEs. K1 is really of type `tree', K2 is really
974 of type `cplus_array_info*'. */
976 bool
977 cplus_array_hasher::equal (tree t1, cplus_array_info *t2)
979 return (TREE_TYPE (t1) == t2->type && TYPE_DOMAIN (t1) == t2->domain);
982 /* Hash table containing dependent array types, which are unsuitable for
983 the language-independent type hash table. */
984 static GTY (()) hash_table<cplus_array_hasher> *cplus_array_htab;
986 /* Build an ARRAY_TYPE without laying it out. */
988 static tree
989 build_min_array_type (tree elt_type, tree index_type)
991 tree t = cxx_make_type (ARRAY_TYPE);
992 TREE_TYPE (t) = elt_type;
993 TYPE_DOMAIN (t) = index_type;
994 return t;
997 /* Set TYPE_CANONICAL like build_array_type_1, but using
998 build_cplus_array_type. */
1000 static void
1001 set_array_type_canon (tree t, tree elt_type, tree index_type)
1003 /* Set the canonical type for this new node. */
1004 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
1005 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
1006 SET_TYPE_STRUCTURAL_EQUALITY (t);
1007 else if (TYPE_CANONICAL (elt_type) != elt_type
1008 || (index_type && TYPE_CANONICAL (index_type) != index_type))
1009 TYPE_CANONICAL (t)
1010 = build_cplus_array_type (TYPE_CANONICAL (elt_type),
1011 index_type
1012 ? TYPE_CANONICAL (index_type) : index_type);
1013 else
1014 TYPE_CANONICAL (t) = t;
1017 /* Like build_array_type, but handle special C++ semantics: an array of a
1018 variant element type is a variant of the array of the main variant of
1019 the element type. */
1021 tree
1022 build_cplus_array_type (tree elt_type, tree index_type)
1024 tree t;
1026 if (elt_type == error_mark_node || index_type == error_mark_node)
1027 return error_mark_node;
1029 bool dependent = (uses_template_parms (elt_type)
1030 || (index_type && uses_template_parms (index_type)));
1032 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
1033 /* Start with an array of the TYPE_MAIN_VARIANT. */
1034 t = build_cplus_array_type (TYPE_MAIN_VARIANT (elt_type),
1035 index_type);
1036 else if (dependent)
1038 /* Since type_hash_canon calls layout_type, we need to use our own
1039 hash table. */
1040 cplus_array_info cai;
1041 hashval_t hash;
1043 if (cplus_array_htab == NULL)
1044 cplus_array_htab = hash_table<cplus_array_hasher>::create_ggc (61);
1046 hash = TYPE_UID (elt_type);
1047 if (index_type)
1048 hash ^= TYPE_UID (index_type);
1049 cai.type = elt_type;
1050 cai.domain = index_type;
1052 tree *e = cplus_array_htab->find_slot_with_hash (&cai, hash, INSERT);
1053 if (*e)
1054 /* We have found the type: we're done. */
1055 return (tree) *e;
1056 else
1058 /* Build a new array type. */
1059 t = build_min_array_type (elt_type, index_type);
1061 /* Store it in the hash table. */
1062 *e = t;
1064 /* Set the canonical type for this new node. */
1065 set_array_type_canon (t, elt_type, index_type);
1068 else
1070 bool typeless_storage = is_byte_access_type (elt_type);
1071 t = build_array_type (elt_type, index_type, typeless_storage);
1074 /* Now check whether we already have this array variant. */
1075 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
1077 tree m = t;
1078 for (t = m; t; t = TYPE_NEXT_VARIANT (t))
1079 if (TREE_TYPE (t) == elt_type
1080 && TYPE_NAME (t) == NULL_TREE
1081 && TYPE_ATTRIBUTES (t) == NULL_TREE)
1082 break;
1083 if (!t)
1085 t = build_min_array_type (elt_type, index_type);
1086 set_array_type_canon (t, elt_type, index_type);
1087 if (!dependent)
1089 layout_type (t);
1090 /* Make sure sizes are shared with the main variant.
1091 layout_type can't be called after setting TYPE_NEXT_VARIANT,
1092 as it will overwrite alignment etc. of all variants. */
1093 TYPE_SIZE (t) = TYPE_SIZE (m);
1094 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (m);
1095 TYPE_TYPELESS_STORAGE (t) = TYPE_TYPELESS_STORAGE (m);
1098 TYPE_MAIN_VARIANT (t) = m;
1099 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
1100 TYPE_NEXT_VARIANT (m) = t;
1104 /* Avoid spurious warnings with VLAs (c++/54583). */
1105 if (TYPE_SIZE (t) && EXPR_P (TYPE_SIZE (t)))
1106 TREE_NO_WARNING (TYPE_SIZE (t)) = 1;
1108 /* Push these needs up to the ARRAY_TYPE so that initialization takes
1109 place more easily. */
1110 bool needs_ctor = (TYPE_NEEDS_CONSTRUCTING (t)
1111 = TYPE_NEEDS_CONSTRUCTING (elt_type));
1112 bool needs_dtor = (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1113 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type));
1115 if (!dependent && t == TYPE_MAIN_VARIANT (t)
1116 && !COMPLETE_TYPE_P (t) && COMPLETE_TYPE_P (elt_type))
1118 /* The element type has been completed since the last time we saw
1119 this array type; update the layout and 'tor flags for any variants
1120 that need it. */
1121 layout_type (t);
1122 for (tree v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
1124 TYPE_NEEDS_CONSTRUCTING (v) = needs_ctor;
1125 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (v) = needs_dtor;
1129 return t;
1132 /* Return an ARRAY_TYPE with element type ELT and length N. */
1134 tree
1135 build_array_of_n_type (tree elt, int n)
1137 return build_cplus_array_type (elt, build_index_type (size_int (n - 1)));
1140 /* True iff T is an array of unknown bound. */
1142 bool
1143 array_of_unknown_bound_p (const_tree t)
1145 return (TREE_CODE (t) == ARRAY_TYPE
1146 && !TYPE_DOMAIN (t));
1149 /* True iff T is an N3639 array of runtime bound (VLA). These were approved
1150 for C++14 but then removed. This should only be used for N3639
1151 specifically; code wondering more generally if something is a VLA should use
1152 vla_type_p. */
1154 bool
1155 array_of_runtime_bound_p (tree t)
1157 if (!t || TREE_CODE (t) != ARRAY_TYPE)
1158 return false;
1159 if (variably_modified_type_p (TREE_TYPE (t), NULL_TREE))
1160 return false;
1161 tree dom = TYPE_DOMAIN (t);
1162 if (!dom)
1163 return false;
1164 tree max = TYPE_MAX_VALUE (dom);
1165 return (!potential_rvalue_constant_expression (max)
1166 || (!value_dependent_expression_p (max) && !TREE_CONSTANT (max)));
1169 /* True iff T is a variable length array. */
1171 bool
1172 vla_type_p (tree t)
1174 for (; t && TREE_CODE (t) == ARRAY_TYPE;
1175 t = TREE_TYPE (t))
1176 if (tree dom = TYPE_DOMAIN (t))
1178 tree max = TYPE_MAX_VALUE (dom);
1179 if (!potential_rvalue_constant_expression (max)
1180 || (!value_dependent_expression_p (max) && !TREE_CONSTANT (max)))
1181 return true;
1183 return false;
1186 /* Return a reference type node referring to TO_TYPE. If RVAL is
1187 true, return an rvalue reference type, otherwise return an lvalue
1188 reference type. If a type node exists, reuse it, otherwise create
1189 a new one. */
1190 tree
1191 cp_build_reference_type (tree to_type, bool rval)
1193 tree lvalue_ref, t;
1195 if (to_type == error_mark_node)
1196 return error_mark_node;
1198 if (TYPE_REF_P (to_type))
1200 rval = rval && TYPE_REF_IS_RVALUE (to_type);
1201 to_type = TREE_TYPE (to_type);
1204 lvalue_ref = build_reference_type (to_type);
1205 if (!rval)
1206 return lvalue_ref;
1208 /* This code to create rvalue reference types is based on and tied
1209 to the code creating lvalue reference types in the middle-end
1210 functions build_reference_type_for_mode and build_reference_type.
1212 It works by putting the rvalue reference type nodes after the
1213 lvalue reference nodes in the TYPE_NEXT_REF_TO linked list, so
1214 they will effectively be ignored by the middle end. */
1216 for (t = lvalue_ref; (t = TYPE_NEXT_REF_TO (t)); )
1217 if (TYPE_REF_IS_RVALUE (t))
1218 return t;
1220 t = build_distinct_type_copy (lvalue_ref);
1222 TYPE_REF_IS_RVALUE (t) = true;
1223 TYPE_NEXT_REF_TO (t) = TYPE_NEXT_REF_TO (lvalue_ref);
1224 TYPE_NEXT_REF_TO (lvalue_ref) = t;
1226 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
1227 SET_TYPE_STRUCTURAL_EQUALITY (t);
1228 else if (TYPE_CANONICAL (to_type) != to_type)
1229 TYPE_CANONICAL (t)
1230 = cp_build_reference_type (TYPE_CANONICAL (to_type), rval);
1231 else
1232 TYPE_CANONICAL (t) = t;
1234 layout_type (t);
1236 return t;
1240 /* Returns EXPR cast to rvalue reference type, like std::move. */
1242 tree
1243 move (tree expr)
1245 tree type = TREE_TYPE (expr);
1246 gcc_assert (!TYPE_REF_P (type));
1247 type = cp_build_reference_type (type, /*rval*/true);
1248 return build_static_cast (input_location, type, expr,
1249 tf_warning_or_error);
1252 /* Used by the C++ front end to build qualified array types. However,
1253 the C version of this function does not properly maintain canonical
1254 types (which are not used in C). */
1255 tree
1256 c_build_qualified_type (tree type, int type_quals, tree /* orig_qual_type */,
1257 size_t /* orig_qual_indirect */)
1259 return cp_build_qualified_type (type, type_quals);
1263 /* Make a variant of TYPE, qualified with the TYPE_QUALS. Handles
1264 arrays correctly. In particular, if TYPE is an array of T's, and
1265 TYPE_QUALS is non-empty, returns an array of qualified T's.
1267 FLAGS determines how to deal with ill-formed qualifications. If
1268 tf_ignore_bad_quals is set, then bad qualifications are dropped
1269 (this is permitted if TYPE was introduced via a typedef or template
1270 type parameter). If bad qualifications are dropped and tf_warning
1271 is set, then a warning is issued for non-const qualifications. If
1272 tf_ignore_bad_quals is not set and tf_error is not set, we
1273 return error_mark_node. Otherwise, we issue an error, and ignore
1274 the qualifications.
1276 Qualification of a reference type is valid when the reference came
1277 via a typedef or template type argument. [dcl.ref] No such
1278 dispensation is provided for qualifying a function type. [dcl.fct]
1279 DR 295 queries this and the proposed resolution brings it into line
1280 with qualifying a reference. We implement the DR. We also behave
1281 in a similar manner for restricting non-pointer types. */
1283 tree
1284 cp_build_qualified_type_real (tree type,
1285 int type_quals,
1286 tsubst_flags_t complain)
1288 tree result;
1289 int bad_quals = TYPE_UNQUALIFIED;
1291 if (type == error_mark_node)
1292 return type;
1294 if (type_quals == cp_type_quals (type))
1295 return type;
1297 if (TREE_CODE (type) == ARRAY_TYPE)
1299 /* In C++, the qualification really applies to the array element
1300 type. Obtain the appropriately qualified element type. */
1301 tree t;
1302 tree element_type
1303 = cp_build_qualified_type_real (TREE_TYPE (type),
1304 type_quals,
1305 complain);
1307 if (element_type == error_mark_node)
1308 return error_mark_node;
1310 /* See if we already have an identically qualified type. Tests
1311 should be equivalent to those in check_qualified_type. */
1312 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
1313 if (TREE_TYPE (t) == element_type
1314 && TYPE_NAME (t) == TYPE_NAME (type)
1315 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
1316 && attribute_list_equal (TYPE_ATTRIBUTES (t),
1317 TYPE_ATTRIBUTES (type)))
1318 break;
1320 if (!t)
1322 t = build_cplus_array_type (element_type, TYPE_DOMAIN (type));
1324 /* Keep the typedef name. */
1325 if (TYPE_NAME (t) != TYPE_NAME (type))
1327 t = build_variant_type_copy (t);
1328 TYPE_NAME (t) = TYPE_NAME (type);
1329 SET_TYPE_ALIGN (t, TYPE_ALIGN (type));
1330 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (type);
1334 /* Even if we already had this variant, we update
1335 TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
1336 they changed since the variant was originally created.
1338 This seems hokey; if there is some way to use a previous
1339 variant *without* coming through here,
1340 TYPE_NEEDS_CONSTRUCTING will never be updated. */
1341 TYPE_NEEDS_CONSTRUCTING (t)
1342 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
1343 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1344 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
1345 return t;
1347 else if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
1349 tree t = PACK_EXPANSION_PATTERN (type);
1351 t = cp_build_qualified_type_real (t, type_quals, complain);
1352 return make_pack_expansion (t, complain);
1355 /* A reference or method type shall not be cv-qualified.
1356 [dcl.ref], [dcl.fct]. This used to be an error, but as of DR 295
1357 (in CD1) we always ignore extra cv-quals on functions. */
1358 if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
1359 && (TYPE_REF_P (type)
1360 || FUNC_OR_METHOD_TYPE_P (type)))
1362 if (TYPE_REF_P (type))
1363 bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1364 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1367 /* But preserve any function-cv-quals on a FUNCTION_TYPE. */
1368 if (TREE_CODE (type) == FUNCTION_TYPE)
1369 type_quals |= type_memfn_quals (type);
1371 /* A restrict-qualified type must be a pointer (or reference)
1372 to object or incomplete type. */
1373 if ((type_quals & TYPE_QUAL_RESTRICT)
1374 && TREE_CODE (type) != TEMPLATE_TYPE_PARM
1375 && TREE_CODE (type) != TYPENAME_TYPE
1376 && !INDIRECT_TYPE_P (type))
1378 bad_quals |= TYPE_QUAL_RESTRICT;
1379 type_quals &= ~TYPE_QUAL_RESTRICT;
1382 if (bad_quals == TYPE_UNQUALIFIED
1383 || (complain & tf_ignore_bad_quals))
1384 /*OK*/;
1385 else if (!(complain & tf_error))
1386 return error_mark_node;
1387 else
1389 tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
1390 error ("%qV qualifiers cannot be applied to %qT",
1391 bad_type, type);
1394 /* Retrieve (or create) the appropriately qualified variant. */
1395 result = build_qualified_type (type, type_quals);
1397 return result;
1400 /* Return TYPE with const and volatile removed. */
1402 tree
1403 cv_unqualified (tree type)
1405 int quals;
1407 if (type == error_mark_node)
1408 return type;
1410 quals = cp_type_quals (type);
1411 quals &= ~(TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE);
1412 return cp_build_qualified_type (type, quals);
1415 /* Subroutine of strip_typedefs. We want to apply to RESULT the attributes
1416 from ATTRIBS that affect type identity, and no others. If any are not
1417 applied, set *remove_attributes to true. */
1419 static tree
1420 apply_identity_attributes (tree result, tree attribs, bool *remove_attributes)
1422 tree first_ident = NULL_TREE;
1423 tree new_attribs = NULL_TREE;
1424 tree *p = &new_attribs;
1426 if (OVERLOAD_TYPE_P (result))
1428 /* On classes and enums all attributes are ingrained. */
1429 gcc_assert (attribs == TYPE_ATTRIBUTES (result));
1430 return result;
1433 for (tree a = attribs; a; a = TREE_CHAIN (a))
1435 const attribute_spec *as
1436 = lookup_attribute_spec (get_attribute_name (a));
1437 if (as && as->affects_type_identity)
1439 if (!first_ident)
1440 first_ident = a;
1441 else if (first_ident == error_mark_node)
1443 *p = tree_cons (TREE_PURPOSE (a), TREE_VALUE (a), NULL_TREE);
1444 p = &TREE_CHAIN (*p);
1447 else if (first_ident)
1449 for (tree a2 = first_ident; a2; a2 = TREE_CHAIN (a2))
1451 *p = tree_cons (TREE_PURPOSE (a2), TREE_VALUE (a2), NULL_TREE);
1452 p = &TREE_CHAIN (*p);
1454 first_ident = error_mark_node;
1457 if (first_ident != error_mark_node)
1458 new_attribs = first_ident;
1460 if (first_ident == attribs)
1461 /* All attributes affected type identity. */;
1462 else
1463 *remove_attributes = true;
1465 return cp_build_type_attribute_variant (result, new_attribs);
1468 /* Builds a qualified variant of T that is either not a typedef variant
1469 (the default behavior) or not a typedef variant of a user-facing type
1470 (if FLAGS contains STF_USER_FACING).
1472 E.g. consider the following declarations:
1473 typedef const int ConstInt;
1474 typedef ConstInt* PtrConstInt;
1475 If T is PtrConstInt, this function returns a type representing
1476 const int*.
1477 In other words, if T is a typedef, the function returns the underlying type.
1478 The cv-qualification and attributes of the type returned match the
1479 input type.
1480 They will always be compatible types.
1481 The returned type is built so that all of its subtypes
1482 recursively have their typedefs stripped as well.
1484 This is different from just returning TYPE_CANONICAL (T)
1485 Because of several reasons:
1486 * If T is a type that needs structural equality
1487 its TYPE_CANONICAL (T) will be NULL.
1488 * TYPE_CANONICAL (T) desn't carry type attributes
1489 and loses template parameter names.
1491 If REMOVE_ATTRIBUTES is non-null, also strip attributes that don't
1492 affect type identity, and set the referent to true if any were
1493 stripped. */
1495 tree
1496 strip_typedefs (tree t, bool *remove_attributes, unsigned int flags)
1498 tree result = NULL, type = NULL, t0 = NULL;
1500 if (!t || t == error_mark_node)
1501 return t;
1503 if (TREE_CODE (t) == TREE_LIST)
1505 bool changed = false;
1506 releasing_vec vec;
1507 tree r = t;
1508 for (; t; t = TREE_CHAIN (t))
1510 gcc_assert (!TREE_PURPOSE (t));
1511 tree elt = strip_typedefs (TREE_VALUE (t), remove_attributes, flags);
1512 if (elt != TREE_VALUE (t))
1513 changed = true;
1514 vec_safe_push (vec, elt);
1516 if (changed)
1517 r = build_tree_list_vec (vec);
1518 return r;
1521 gcc_assert (TYPE_P (t));
1523 if (t == TYPE_CANONICAL (t))
1524 return t;
1526 if (!(flags & STF_STRIP_DEPENDENT)
1527 && dependent_alias_template_spec_p (t, nt_opaque))
1528 /* DR 1558: However, if the template-id is dependent, subsequent
1529 template argument substitution still applies to the template-id. */
1530 return t;
1532 switch (TREE_CODE (t))
1534 case POINTER_TYPE:
1535 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1536 result = build_pointer_type (type);
1537 break;
1538 case REFERENCE_TYPE:
1539 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1540 result = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
1541 break;
1542 case OFFSET_TYPE:
1543 t0 = strip_typedefs (TYPE_OFFSET_BASETYPE (t), remove_attributes, flags);
1544 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1545 result = build_offset_type (t0, type);
1546 break;
1547 case RECORD_TYPE:
1548 if (TYPE_PTRMEMFUNC_P (t))
1550 t0 = strip_typedefs (TYPE_PTRMEMFUNC_FN_TYPE (t),
1551 remove_attributes, flags);
1552 result = build_ptrmemfunc_type (t0);
1554 break;
1555 case ARRAY_TYPE:
1556 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1557 t0 = strip_typedefs (TYPE_DOMAIN (t), remove_attributes, flags);
1558 result = build_cplus_array_type (type, t0);
1559 break;
1560 case FUNCTION_TYPE:
1561 case METHOD_TYPE:
1563 tree arg_types = NULL, arg_node, arg_node2, arg_type;
1564 bool changed;
1566 /* Because we stomp on TREE_PURPOSE of TYPE_ARG_TYPES in many places
1567 around the compiler (e.g. cp_parser_late_parsing_default_args), we
1568 can't expect that re-hashing a function type will find a previous
1569 equivalent type, so try to reuse the input type if nothing has
1570 changed. If the type is itself a variant, that will change. */
1571 bool is_variant = typedef_variant_p (t);
1572 if (remove_attributes
1573 && (TYPE_ATTRIBUTES (t) || TYPE_USER_ALIGN (t)))
1574 is_variant = true;
1576 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1577 tree canon_spec = (flag_noexcept_type
1578 ? canonical_eh_spec (TYPE_RAISES_EXCEPTIONS (t))
1579 : NULL_TREE);
1580 changed = (type != TREE_TYPE (t) || is_variant
1581 || TYPE_RAISES_EXCEPTIONS (t) != canon_spec);
1583 for (arg_node = TYPE_ARG_TYPES (t);
1584 arg_node;
1585 arg_node = TREE_CHAIN (arg_node))
1587 if (arg_node == void_list_node)
1588 break;
1589 arg_type = strip_typedefs (TREE_VALUE (arg_node),
1590 remove_attributes, flags);
1591 gcc_assert (arg_type);
1592 if (arg_type == TREE_VALUE (arg_node) && !changed)
1593 continue;
1595 if (!changed)
1597 changed = true;
1598 for (arg_node2 = TYPE_ARG_TYPES (t);
1599 arg_node2 != arg_node;
1600 arg_node2 = TREE_CHAIN (arg_node2))
1601 arg_types
1602 = tree_cons (TREE_PURPOSE (arg_node2),
1603 TREE_VALUE (arg_node2), arg_types);
1606 arg_types
1607 = tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types);
1610 if (!changed)
1611 return t;
1613 if (arg_types)
1614 arg_types = nreverse (arg_types);
1616 /* A list of parameters not ending with an ellipsis
1617 must end with void_list_node. */
1618 if (arg_node)
1619 arg_types = chainon (arg_types, void_list_node);
1621 if (TREE_CODE (t) == METHOD_TYPE)
1623 tree class_type = TREE_TYPE (TREE_VALUE (arg_types));
1624 gcc_assert (class_type);
1625 result =
1626 build_method_type_directly (class_type, type,
1627 TREE_CHAIN (arg_types));
1629 else
1631 result = build_function_type (type, arg_types);
1632 result = apply_memfn_quals (result, type_memfn_quals (t));
1635 result = build_cp_fntype_variant (result,
1636 type_memfn_rqual (t), canon_spec,
1637 TYPE_HAS_LATE_RETURN_TYPE (t));
1639 break;
1640 case TYPENAME_TYPE:
1642 bool changed = false;
1643 tree fullname = TYPENAME_TYPE_FULLNAME (t);
1644 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR
1645 && TREE_OPERAND (fullname, 1))
1647 tree args = TREE_OPERAND (fullname, 1);
1648 tree new_args = copy_node (args);
1649 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
1651 tree arg = TREE_VEC_ELT (args, i);
1652 tree strip_arg;
1653 if (TYPE_P (arg))
1654 strip_arg = strip_typedefs (arg, remove_attributes, flags);
1655 else
1656 strip_arg = strip_typedefs_expr (arg, remove_attributes,
1657 flags);
1658 TREE_VEC_ELT (new_args, i) = strip_arg;
1659 if (strip_arg != arg)
1660 changed = true;
1662 if (changed)
1664 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_args)
1665 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
1666 fullname
1667 = lookup_template_function (TREE_OPERAND (fullname, 0),
1668 new_args);
1670 else
1671 ggc_free (new_args);
1673 tree ctx = strip_typedefs (TYPE_CONTEXT (t), remove_attributes, flags);
1674 if (!changed && ctx == TYPE_CONTEXT (t) && !typedef_variant_p (t))
1675 return t;
1676 tree name = fullname;
1677 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR)
1678 name = TREE_OPERAND (fullname, 0);
1679 /* Use build_typename_type rather than make_typename_type because we
1680 don't want to resolve it here, just strip typedefs. */
1681 result = build_typename_type (ctx, name, fullname, typename_type);
1683 break;
1684 case DECLTYPE_TYPE:
1685 result = strip_typedefs_expr (DECLTYPE_TYPE_EXPR (t),
1686 remove_attributes, flags);
1687 if (result == DECLTYPE_TYPE_EXPR (t))
1688 result = NULL_TREE;
1689 else
1690 result = (finish_decltype_type
1691 (result,
1692 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t),
1693 tf_none));
1694 break;
1695 case UNDERLYING_TYPE:
1696 type = strip_typedefs (UNDERLYING_TYPE_TYPE (t),
1697 remove_attributes, flags);
1698 result = finish_underlying_type (type);
1699 break;
1700 default:
1701 break;
1704 if (!result)
1706 if (typedef_variant_p (t))
1708 if ((flags & STF_USER_VISIBLE)
1709 && !user_facing_original_type_p (t))
1710 return t;
1711 /* If T is a non-template alias or typedef, we can assume that
1712 instantiating its definition will hit any substitution failure,
1713 so we don't need to retain it here as well. */
1714 if (!alias_template_specialization_p (t, nt_opaque))
1715 flags |= STF_STRIP_DEPENDENT;
1716 result = strip_typedefs (DECL_ORIGINAL_TYPE (TYPE_NAME (t)),
1717 remove_attributes, flags);
1719 else
1720 result = TYPE_MAIN_VARIANT (t);
1722 /*gcc_assert (!typedef_variant_p (result)
1723 || dependent_alias_template_spec_p (result, nt_opaque)
1724 || ((flags & STF_USER_VISIBLE)
1725 && !user_facing_original_type_p (result)));*/
1727 if (COMPLETE_TYPE_P (result) && !COMPLETE_TYPE_P (t))
1728 /* If RESULT is complete and T isn't, it's likely the case that T
1729 is a variant of RESULT which hasn't been updated yet. Skip the
1730 attribute handling. */;
1731 else
1733 if (TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (result)
1734 || TYPE_ALIGN (t) != TYPE_ALIGN (result))
1736 gcc_assert (TYPE_USER_ALIGN (t));
1737 if (remove_attributes)
1738 *remove_attributes = true;
1739 else
1741 if (TYPE_ALIGN (t) == TYPE_ALIGN (result))
1742 result = build_variant_type_copy (result);
1743 else
1744 result = build_aligned_type (result, TYPE_ALIGN (t));
1745 TYPE_USER_ALIGN (result) = true;
1749 if (TYPE_ATTRIBUTES (t))
1751 if (remove_attributes)
1752 result = apply_identity_attributes (result, TYPE_ATTRIBUTES (t),
1753 remove_attributes);
1754 else
1755 result = cp_build_type_attribute_variant (result,
1756 TYPE_ATTRIBUTES (t));
1760 return cp_build_qualified_type (result, cp_type_quals (t));
1763 /* Like strip_typedefs above, but works on expressions, so that in
1765 template<class T> struct A
1767 typedef T TT;
1768 B<sizeof(TT)> b;
1771 sizeof(TT) is replaced by sizeof(T). */
1773 tree
1774 strip_typedefs_expr (tree t, bool *remove_attributes, unsigned int flags)
1776 unsigned i,n;
1777 tree r, type, *ops;
1778 enum tree_code code;
1780 if (t == NULL_TREE || t == error_mark_node)
1781 return t;
1783 STRIP_ANY_LOCATION_WRAPPER (t);
1785 if (DECL_P (t) || CONSTANT_CLASS_P (t))
1786 return t;
1788 /* Some expressions have type operands, so let's handle types here rather
1789 than check TYPE_P in multiple places below. */
1790 if (TYPE_P (t))
1791 return strip_typedefs (t, remove_attributes, flags);
1793 code = TREE_CODE (t);
1794 switch (code)
1796 case IDENTIFIER_NODE:
1797 case TEMPLATE_PARM_INDEX:
1798 case OVERLOAD:
1799 case BASELINK:
1800 case ARGUMENT_PACK_SELECT:
1801 return t;
1803 case TRAIT_EXPR:
1805 tree type1 = strip_typedefs (TRAIT_EXPR_TYPE1 (t),
1806 remove_attributes, flags);
1807 tree type2 = strip_typedefs (TRAIT_EXPR_TYPE2 (t),
1808 remove_attributes, flags);
1809 if (type1 == TRAIT_EXPR_TYPE1 (t)
1810 && type2 == TRAIT_EXPR_TYPE2 (t))
1811 return t;
1812 r = copy_node (t);
1813 TRAIT_EXPR_TYPE1 (r) = type1;
1814 TRAIT_EXPR_TYPE2 (r) = type2;
1815 return r;
1818 case TREE_LIST:
1820 releasing_vec vec;
1821 bool changed = false;
1822 tree it;
1823 for (it = t; it; it = TREE_CHAIN (it))
1825 tree val = strip_typedefs_expr (TREE_VALUE (it),
1826 remove_attributes, flags);
1827 vec_safe_push (vec, val);
1828 if (val != TREE_VALUE (it))
1829 changed = true;
1830 gcc_assert (TREE_PURPOSE (it) == NULL_TREE);
1832 if (changed)
1834 r = NULL_TREE;
1835 FOR_EACH_VEC_ELT_REVERSE (*vec, i, it)
1836 r = tree_cons (NULL_TREE, it, r);
1838 else
1839 r = t;
1840 return r;
1843 case TREE_VEC:
1845 bool changed = false;
1846 releasing_vec vec;
1847 n = TREE_VEC_LENGTH (t);
1848 vec_safe_reserve (vec, n);
1849 for (i = 0; i < n; ++i)
1851 tree op = strip_typedefs_expr (TREE_VEC_ELT (t, i),
1852 remove_attributes, flags);
1853 vec->quick_push (op);
1854 if (op != TREE_VEC_ELT (t, i))
1855 changed = true;
1857 if (changed)
1859 r = copy_node (t);
1860 for (i = 0; i < n; ++i)
1861 TREE_VEC_ELT (r, i) = (*vec)[i];
1862 NON_DEFAULT_TEMPLATE_ARGS_COUNT (r)
1863 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
1865 else
1866 r = t;
1867 return r;
1870 case CONSTRUCTOR:
1872 bool changed = false;
1873 vec<constructor_elt, va_gc> *vec
1874 = vec_safe_copy (CONSTRUCTOR_ELTS (t));
1875 n = CONSTRUCTOR_NELTS (t);
1876 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1877 for (i = 0; i < n; ++i)
1879 constructor_elt *e = &(*vec)[i];
1880 tree op = strip_typedefs_expr (e->value, remove_attributes, flags);
1881 if (op != e->value)
1883 changed = true;
1884 e->value = op;
1886 gcc_checking_assert
1887 (e->index == strip_typedefs_expr (e->index, remove_attributes,
1888 flags));
1891 if (!changed && type == TREE_TYPE (t))
1893 vec_free (vec);
1894 return t;
1896 else
1898 r = copy_node (t);
1899 TREE_TYPE (r) = type;
1900 CONSTRUCTOR_ELTS (r) = vec;
1901 return r;
1905 case LAMBDA_EXPR:
1906 return t;
1908 case STATEMENT_LIST:
1909 error ("statement-expression in a constant expression");
1910 return error_mark_node;
1912 default:
1913 break;
1916 gcc_assert (EXPR_P (t));
1918 n = cp_tree_operand_length (t);
1919 ops = XALLOCAVEC (tree, n);
1920 type = TREE_TYPE (t);
1922 switch (code)
1924 CASE_CONVERT:
1925 case IMPLICIT_CONV_EXPR:
1926 case DYNAMIC_CAST_EXPR:
1927 case STATIC_CAST_EXPR:
1928 case CONST_CAST_EXPR:
1929 case REINTERPRET_CAST_EXPR:
1930 case CAST_EXPR:
1931 case NEW_EXPR:
1932 type = strip_typedefs (type, remove_attributes, flags);
1933 /* fallthrough */
1935 default:
1936 for (i = 0; i < n; ++i)
1937 ops[i] = strip_typedefs_expr (TREE_OPERAND (t, i),
1938 remove_attributes, flags);
1939 break;
1942 /* If nothing changed, return t. */
1943 for (i = 0; i < n; ++i)
1944 if (ops[i] != TREE_OPERAND (t, i))
1945 break;
1946 if (i == n && type == TREE_TYPE (t))
1947 return t;
1949 r = copy_node (t);
1950 TREE_TYPE (r) = type;
1951 for (i = 0; i < n; ++i)
1952 TREE_OPERAND (r, i) = ops[i];
1953 return r;
1956 /* Makes a copy of BINFO and TYPE, which is to be inherited into a
1957 graph dominated by T. If BINFO is NULL, TYPE is a dependent base,
1958 and we do a shallow copy. If BINFO is non-NULL, we do a deep copy.
1959 VIRT indicates whether TYPE is inherited virtually or not.
1960 IGO_PREV points at the previous binfo of the inheritance graph
1961 order chain. The newly copied binfo's TREE_CHAIN forms this
1962 ordering.
1964 The CLASSTYPE_VBASECLASSES vector of T is constructed in the
1965 correct order. That is in the order the bases themselves should be
1966 constructed in.
1968 The BINFO_INHERITANCE of a virtual base class points to the binfo
1969 of the most derived type. ??? We could probably change this so that
1970 BINFO_INHERITANCE becomes synonymous with BINFO_PRIMARY, and hence
1971 remove a field. They currently can only differ for primary virtual
1972 virtual bases. */
1974 tree
1975 copy_binfo (tree binfo, tree type, tree t, tree *igo_prev, int virt)
1977 tree new_binfo;
1979 if (virt)
1981 /* See if we've already made this virtual base. */
1982 new_binfo = binfo_for_vbase (type, t);
1983 if (new_binfo)
1984 return new_binfo;
1987 new_binfo = make_tree_binfo (binfo ? BINFO_N_BASE_BINFOS (binfo) : 0);
1988 BINFO_TYPE (new_binfo) = type;
1990 /* Chain it into the inheritance graph. */
1991 TREE_CHAIN (*igo_prev) = new_binfo;
1992 *igo_prev = new_binfo;
1994 if (binfo && !BINFO_DEPENDENT_BASE_P (binfo))
1996 int ix;
1997 tree base_binfo;
1999 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), type));
2001 BINFO_OFFSET (new_binfo) = BINFO_OFFSET (binfo);
2002 BINFO_VIRTUALS (new_binfo) = BINFO_VIRTUALS (binfo);
2004 /* We do not need to copy the accesses, as they are read only. */
2005 BINFO_BASE_ACCESSES (new_binfo) = BINFO_BASE_ACCESSES (binfo);
2007 /* Recursively copy base binfos of BINFO. */
2008 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
2010 tree new_base_binfo;
2011 new_base_binfo = copy_binfo (base_binfo, BINFO_TYPE (base_binfo),
2012 t, igo_prev,
2013 BINFO_VIRTUAL_P (base_binfo));
2015 if (!BINFO_INHERITANCE_CHAIN (new_base_binfo))
2016 BINFO_INHERITANCE_CHAIN (new_base_binfo) = new_binfo;
2017 BINFO_BASE_APPEND (new_binfo, new_base_binfo);
2020 else
2021 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
2023 if (virt)
2025 /* Push it onto the list after any virtual bases it contains
2026 will have been pushed. */
2027 CLASSTYPE_VBASECLASSES (t)->quick_push (new_binfo);
2028 BINFO_VIRTUAL_P (new_binfo) = 1;
2029 BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
2032 return new_binfo;
2035 /* Hashing of lists so that we don't make duplicates.
2036 The entry point is `list_hash_canon'. */
2038 struct list_proxy
2040 tree purpose;
2041 tree value;
2042 tree chain;
2045 struct list_hasher : ggc_ptr_hash<tree_node>
2047 typedef list_proxy *compare_type;
2049 static hashval_t hash (tree);
2050 static bool equal (tree, list_proxy *);
2053 /* Now here is the hash table. When recording a list, it is added
2054 to the slot whose index is the hash code mod the table size.
2055 Note that the hash table is used for several kinds of lists.
2056 While all these live in the same table, they are completely independent,
2057 and the hash code is computed differently for each of these. */
2059 static GTY (()) hash_table<list_hasher> *list_hash_table;
2061 /* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
2062 for a node we are thinking about adding). */
2064 bool
2065 list_hasher::equal (tree t, list_proxy *proxy)
2067 return (TREE_VALUE (t) == proxy->value
2068 && TREE_PURPOSE (t) == proxy->purpose
2069 && TREE_CHAIN (t) == proxy->chain);
2072 /* Compute a hash code for a list (chain of TREE_LIST nodes
2073 with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
2074 TREE_COMMON slots), by adding the hash codes of the individual entries. */
2076 static hashval_t
2077 list_hash_pieces (tree purpose, tree value, tree chain)
2079 hashval_t hashcode = 0;
2081 if (chain)
2082 hashcode += TREE_HASH (chain);
2084 if (value)
2085 hashcode += TREE_HASH (value);
2086 else
2087 hashcode += 1007;
2088 if (purpose)
2089 hashcode += TREE_HASH (purpose);
2090 else
2091 hashcode += 1009;
2092 return hashcode;
2095 /* Hash an already existing TREE_LIST. */
2097 hashval_t
2098 list_hasher::hash (tree t)
2100 return list_hash_pieces (TREE_PURPOSE (t),
2101 TREE_VALUE (t),
2102 TREE_CHAIN (t));
2105 /* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
2106 object for an identical list if one already exists. Otherwise, build a
2107 new one, and record it as the canonical object. */
2109 tree
2110 hash_tree_cons (tree purpose, tree value, tree chain)
2112 int hashcode = 0;
2113 tree *slot;
2114 struct list_proxy proxy;
2116 /* Hash the list node. */
2117 hashcode = list_hash_pieces (purpose, value, chain);
2118 /* Create a proxy for the TREE_LIST we would like to create. We
2119 don't actually create it so as to avoid creating garbage. */
2120 proxy.purpose = purpose;
2121 proxy.value = value;
2122 proxy.chain = chain;
2123 /* See if it is already in the table. */
2124 slot = list_hash_table->find_slot_with_hash (&proxy, hashcode, INSERT);
2125 /* If not, create a new node. */
2126 if (!*slot)
2127 *slot = tree_cons (purpose, value, chain);
2128 return (tree) *slot;
2131 /* Constructor for hashed lists. */
2133 tree
2134 hash_tree_chain (tree value, tree chain)
2136 return hash_tree_cons (NULL_TREE, value, chain);
2139 void
2140 debug_binfo (tree elem)
2142 HOST_WIDE_INT n;
2143 tree virtuals;
2145 fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
2146 "\nvtable type:\n",
2147 TYPE_NAME_STRING (BINFO_TYPE (elem)),
2148 TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
2149 debug_tree (BINFO_TYPE (elem));
2150 if (BINFO_VTABLE (elem))
2151 fprintf (stderr, "vtable decl \"%s\"\n",
2152 IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
2153 else
2154 fprintf (stderr, "no vtable decl yet\n");
2155 fprintf (stderr, "virtuals:\n");
2156 virtuals = BINFO_VIRTUALS (elem);
2157 n = 0;
2159 while (virtuals)
2161 tree fndecl = TREE_VALUE (virtuals);
2162 fprintf (stderr, "%s [%ld =? %ld]\n",
2163 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
2164 (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
2165 ++n;
2166 virtuals = TREE_CHAIN (virtuals);
2170 /* Build a representation for the qualified name SCOPE::NAME. TYPE is
2171 the type of the result expression, if known, or NULL_TREE if the
2172 resulting expression is type-dependent. If TEMPLATE_P is true,
2173 NAME is known to be a template because the user explicitly used the
2174 "template" keyword after the "::".
2176 All SCOPE_REFs should be built by use of this function. */
2178 tree
2179 build_qualified_name (tree type, tree scope, tree name, bool template_p)
2181 tree t;
2182 if (type == error_mark_node
2183 || scope == error_mark_node
2184 || name == error_mark_node)
2185 return error_mark_node;
2186 gcc_assert (TREE_CODE (name) != SCOPE_REF);
2187 t = build2 (SCOPE_REF, type, scope, name);
2188 QUALIFIED_NAME_IS_TEMPLATE (t) = template_p;
2189 PTRMEM_OK_P (t) = true;
2190 if (type)
2191 t = convert_from_reference (t);
2192 return t;
2195 /* Like check_qualified_type, but also check ref-qualifier, exception
2196 specification, and whether the return type was specified after the
2197 parameters. */
2199 static bool
2200 cp_check_qualified_type (const_tree cand, const_tree base, int type_quals,
2201 cp_ref_qualifier rqual, tree raises, bool late)
2203 return (TYPE_QUALS (cand) == type_quals
2204 && check_base_type (cand, base)
2205 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (cand),
2206 ce_exact)
2207 && TYPE_HAS_LATE_RETURN_TYPE (cand) == late
2208 && type_memfn_rqual (cand) == rqual);
2211 /* Build the FUNCTION_TYPE or METHOD_TYPE with the ref-qualifier RQUAL. */
2213 tree
2214 build_ref_qualified_type (tree type, cp_ref_qualifier rqual)
2216 tree raises = TYPE_RAISES_EXCEPTIONS (type);
2217 bool late = TYPE_HAS_LATE_RETURN_TYPE (type);
2218 return build_cp_fntype_variant (type, rqual, raises, late);
2221 /* Make a raw overload node containing FN. */
2223 tree
2224 ovl_make (tree fn, tree next)
2226 tree result = make_node (OVERLOAD);
2228 if (TREE_CODE (fn) == OVERLOAD)
2229 OVL_NESTED_P (result) = true;
2231 TREE_TYPE (result) = (next || TREE_CODE (fn) == TEMPLATE_DECL
2232 ? unknown_type_node : TREE_TYPE (fn));
2233 if (next && TREE_CODE (next) == OVERLOAD && OVL_DEDUP_P (next))
2234 OVL_DEDUP_P (result) = true;
2235 OVL_FUNCTION (result) = fn;
2236 OVL_CHAIN (result) = next;
2237 return result;
2240 /* Add FN to the (potentially NULL) overload set OVL. USING_OR_HIDDEN
2241 is > 0, if FN is via a using declaration. USING_OR_HIDDEN is < 0,
2242 if FN is hidden. (A decl cannot be both using and hidden.) We
2243 keep the hidden decls first, but remaining ones are unordered. */
2245 tree
2246 ovl_insert (tree fn, tree maybe_ovl, int using_or_hidden)
2248 tree result = maybe_ovl;
2249 tree insert_after = NULL_TREE;
2251 /* Skip hidden. */
2252 for (; maybe_ovl && TREE_CODE (maybe_ovl) == OVERLOAD
2253 && OVL_HIDDEN_P (maybe_ovl);
2254 maybe_ovl = OVL_CHAIN (maybe_ovl))
2256 gcc_checking_assert (!OVL_LOOKUP_P (maybe_ovl));
2257 insert_after = maybe_ovl;
2260 if (maybe_ovl || using_or_hidden || TREE_CODE (fn) == TEMPLATE_DECL)
2262 maybe_ovl = ovl_make (fn, maybe_ovl);
2264 if (using_or_hidden < 0)
2265 OVL_HIDDEN_P (maybe_ovl) = true;
2266 if (using_or_hidden > 0)
2267 OVL_DEDUP_P (maybe_ovl) = OVL_USING_P (maybe_ovl) = true;
2269 else
2270 maybe_ovl = fn;
2272 if (insert_after)
2274 OVL_CHAIN (insert_after) = maybe_ovl;
2275 TREE_TYPE (insert_after) = unknown_type_node;
2277 else
2278 result = maybe_ovl;
2280 return result;
2283 /* Skip any hidden names at the beginning of OVL. */
2285 tree
2286 ovl_skip_hidden (tree ovl)
2288 while (ovl && TREE_CODE (ovl) == OVERLOAD && OVL_HIDDEN_P (ovl))
2289 ovl = OVL_CHAIN (ovl);
2291 return ovl;
2294 /* NODE is an OVL_HIDDEN_P node that is now revealed. */
2296 tree
2297 ovl_iterator::reveal_node (tree overload, tree node)
2299 /* We cannot have returned NODE as part of a lookup overload, so we
2300 don't have to worry about preserving that. */
2302 OVL_HIDDEN_P (node) = false;
2303 if (tree chain = OVL_CHAIN (node))
2304 if (TREE_CODE (chain) == OVERLOAD)
2306 if (OVL_HIDDEN_P (chain))
2308 /* The node needs moving, and the simplest way is to remove it
2309 and reinsert. */
2310 overload = remove_node (overload, node);
2311 overload = ovl_insert (OVL_FUNCTION (node), overload);
2313 else if (OVL_DEDUP_P (chain))
2314 OVL_DEDUP_P (node) = true;
2316 return overload;
2319 /* NODE is on the overloads of OVL. Remove it.
2320 The removed node is unaltered and may continue to be iterated
2321 from (i.e. it is safe to remove a node from an overload one is
2322 currently iterating over). */
2324 tree
2325 ovl_iterator::remove_node (tree overload, tree node)
2327 tree *slot = &overload;
2328 while (*slot != node)
2330 tree probe = *slot;
2331 gcc_checking_assert (!OVL_LOOKUP_P (probe));
2333 slot = &OVL_CHAIN (probe);
2336 /* Stitch out NODE. We don't have to worry about now making a
2337 singleton overload (and consequently maybe setting its type),
2338 because all uses of this function will be followed by inserting a
2339 new node that must follow the place we've cut this out from. */
2340 if (TREE_CODE (node) != OVERLOAD)
2341 /* Cloned inherited ctors don't mark themselves as via_using. */
2342 *slot = NULL_TREE;
2343 else
2344 *slot = OVL_CHAIN (node);
2346 return overload;
2349 /* Mark or unmark a lookup set. */
2351 void
2352 lookup_mark (tree ovl, bool val)
2354 for (lkp_iterator iter (ovl); iter; ++iter)
2356 gcc_checking_assert (LOOKUP_SEEN_P (*iter) != val);
2357 LOOKUP_SEEN_P (*iter) = val;
2361 /* Add a set of new FNS into a lookup. */
2363 tree
2364 lookup_add (tree fns, tree lookup)
2366 if (fns == error_mark_node || lookup == error_mark_node)
2367 return error_mark_node;
2369 if (lookup || TREE_CODE (fns) == TEMPLATE_DECL)
2371 lookup = ovl_make (fns, lookup);
2372 OVL_LOOKUP_P (lookup) = true;
2374 else
2375 lookup = fns;
2377 return lookup;
2380 /* FNS is a new overload set, add them to LOOKUP, if they are not
2381 already present there. */
2383 tree
2384 lookup_maybe_add (tree fns, tree lookup, bool deduping)
2386 if (deduping)
2387 for (tree next, probe = fns; probe; probe = next)
2389 tree fn = probe;
2390 next = NULL_TREE;
2392 if (TREE_CODE (probe) == OVERLOAD)
2394 fn = OVL_FUNCTION (probe);
2395 next = OVL_CHAIN (probe);
2398 if (!LOOKUP_SEEN_P (fn))
2399 LOOKUP_SEEN_P (fn) = true;
2400 else
2402 /* This function was already seen. Insert all the
2403 predecessors onto the lookup. */
2404 for (; fns != probe; fns = OVL_CHAIN (fns))
2406 lookup = lookup_add (OVL_FUNCTION (fns), lookup);
2407 /* Propagate OVL_USING, but OVL_HIDDEN &
2408 OVL_DEDUP_P don't matter. */
2409 if (OVL_USING_P (fns))
2410 OVL_USING_P (lookup) = true;
2413 /* And now skip this function. */
2414 fns = next;
2418 if (fns)
2419 /* We ended in a set of new functions. Add them all in one go. */
2420 lookup = lookup_add (fns, lookup);
2422 return lookup;
2425 /* Returns nonzero if X is an expression for a (possibly overloaded)
2426 function. If "f" is a function or function template, "f", "c->f",
2427 "c.f", "C::f", and "f<int>" will all be considered possibly
2428 overloaded functions. Returns 2 if the function is actually
2429 overloaded, i.e., if it is impossible to know the type of the
2430 function without performing overload resolution. */
2433 is_overloaded_fn (tree x)
2435 STRIP_ANY_LOCATION_WRAPPER (x);
2437 /* A baselink is also considered an overloaded function. */
2438 if (TREE_CODE (x) == OFFSET_REF
2439 || TREE_CODE (x) == COMPONENT_REF)
2440 x = TREE_OPERAND (x, 1);
2441 x = MAYBE_BASELINK_FUNCTIONS (x);
2442 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
2443 x = TREE_OPERAND (x, 0);
2445 if (DECL_FUNCTION_TEMPLATE_P (OVL_FIRST (x))
2446 || (TREE_CODE (x) == OVERLOAD && !OVL_SINGLE_P (x)))
2447 return 2;
2449 return OVL_P (x);
2452 /* X is the CALL_EXPR_FN of a CALL_EXPR. If X represents a dependent name
2453 (14.6.2), return the IDENTIFIER_NODE for that name. Otherwise, return
2454 NULL_TREE. */
2456 tree
2457 dependent_name (tree x)
2459 /* FIXME a dependent name must be unqualified, but this function doesn't
2460 distinguish between qualified and unqualified identifiers. */
2461 if (identifier_p (x))
2462 return x;
2463 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
2464 x = TREE_OPERAND (x, 0);
2465 if (OVL_P (x))
2466 return OVL_NAME (x);
2467 return NULL_TREE;
2470 /* Returns true iff X is an expression for an overloaded function
2471 whose type cannot be known without performing overload
2472 resolution. */
2474 bool
2475 really_overloaded_fn (tree x)
2477 return is_overloaded_fn (x) == 2;
2480 /* Get the overload set FROM refers to. Returns NULL if it's not an
2481 overload set. */
2483 tree
2484 maybe_get_fns (tree from)
2486 STRIP_ANY_LOCATION_WRAPPER (from);
2488 /* A baselink is also considered an overloaded function. */
2489 if (TREE_CODE (from) == OFFSET_REF
2490 || TREE_CODE (from) == COMPONENT_REF)
2491 from = TREE_OPERAND (from, 1);
2492 if (BASELINK_P (from))
2493 from = BASELINK_FUNCTIONS (from);
2494 if (TREE_CODE (from) == TEMPLATE_ID_EXPR)
2495 from = TREE_OPERAND (from, 0);
2497 if (OVL_P (from))
2498 return from;
2500 return NULL;
2503 /* FROM refers to an overload set. Return that set (or die). */
2505 tree
2506 get_fns (tree from)
2508 tree res = maybe_get_fns (from);
2510 gcc_assert (res);
2511 return res;
2514 /* Return the first function of the overload set FROM refers to. */
2516 tree
2517 get_first_fn (tree from)
2519 return OVL_FIRST (get_fns (from));
2522 /* Return the scope where the overloaded functions OVL were found. */
2524 tree
2525 ovl_scope (tree ovl)
2527 if (TREE_CODE (ovl) == OFFSET_REF
2528 || TREE_CODE (ovl) == COMPONENT_REF)
2529 ovl = TREE_OPERAND (ovl, 1);
2530 if (TREE_CODE (ovl) == BASELINK)
2531 return BINFO_TYPE (BASELINK_BINFO (ovl));
2532 if (TREE_CODE (ovl) == TEMPLATE_ID_EXPR)
2533 ovl = TREE_OPERAND (ovl, 0);
2534 /* Skip using-declarations. */
2535 lkp_iterator iter (ovl);
2537 ovl = *iter;
2538 while (iter.using_p () && ++iter);
2540 return CP_DECL_CONTEXT (ovl);
2543 #define PRINT_RING_SIZE 4
2545 static const char *
2546 cxx_printable_name_internal (tree decl, int v, bool translate)
2548 static unsigned int uid_ring[PRINT_RING_SIZE];
2549 static char *print_ring[PRINT_RING_SIZE];
2550 static bool trans_ring[PRINT_RING_SIZE];
2551 static int ring_counter;
2552 int i;
2554 /* Only cache functions. */
2555 if (v < 2
2556 || TREE_CODE (decl) != FUNCTION_DECL
2557 || DECL_LANG_SPECIFIC (decl) == 0)
2558 return lang_decl_name (decl, v, translate);
2560 /* See if this print name is lying around. */
2561 for (i = 0; i < PRINT_RING_SIZE; i++)
2562 if (uid_ring[i] == DECL_UID (decl) && translate == trans_ring[i])
2563 /* yes, so return it. */
2564 return print_ring[i];
2566 if (++ring_counter == PRINT_RING_SIZE)
2567 ring_counter = 0;
2569 if (current_function_decl != NULL_TREE)
2571 /* There may be both translated and untranslated versions of the
2572 name cached. */
2573 for (i = 0; i < 2; i++)
2575 if (uid_ring[ring_counter] == DECL_UID (current_function_decl))
2576 ring_counter += 1;
2577 if (ring_counter == PRINT_RING_SIZE)
2578 ring_counter = 0;
2580 gcc_assert (uid_ring[ring_counter] != DECL_UID (current_function_decl));
2583 free (print_ring[ring_counter]);
2585 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v, translate));
2586 uid_ring[ring_counter] = DECL_UID (decl);
2587 trans_ring[ring_counter] = translate;
2588 return print_ring[ring_counter];
2591 const char *
2592 cxx_printable_name (tree decl, int v)
2594 return cxx_printable_name_internal (decl, v, false);
2597 const char *
2598 cxx_printable_name_translate (tree decl, int v)
2600 return cxx_printable_name_internal (decl, v, true);
2603 /* Return the canonical version of exception-specification RAISES for a C++17
2604 function type, for use in type comparison and building TYPE_CANONICAL. */
2606 tree
2607 canonical_eh_spec (tree raises)
2609 if (raises == NULL_TREE)
2610 return raises;
2611 else if (DEFERRED_NOEXCEPT_SPEC_P (raises)
2612 || UNPARSED_NOEXCEPT_SPEC_P (raises)
2613 || uses_template_parms (raises)
2614 || uses_template_parms (TREE_PURPOSE (raises)))
2615 /* Keep a dependent or deferred exception specification. */
2616 return raises;
2617 else if (nothrow_spec_p (raises))
2618 /* throw() -> noexcept. */
2619 return noexcept_true_spec;
2620 else
2621 /* For C++17 type matching, anything else -> nothing. */
2622 return NULL_TREE;
2625 tree
2626 build_cp_fntype_variant (tree type, cp_ref_qualifier rqual,
2627 tree raises, bool late)
2629 cp_cv_quals type_quals = TYPE_QUALS (type);
2631 if (cp_check_qualified_type (type, type, type_quals, rqual, raises, late))
2632 return type;
2634 tree v = TYPE_MAIN_VARIANT (type);
2635 for (; v; v = TYPE_NEXT_VARIANT (v))
2636 if (cp_check_qualified_type (v, type, type_quals, rqual, raises, late))
2637 return v;
2639 /* Need to build a new variant. */
2640 v = build_variant_type_copy (type);
2641 if (!TYPE_DEPENDENT_P (v))
2642 /* We no longer know that it's not type-dependent. */
2643 TYPE_DEPENDENT_P_VALID (v) = false;
2644 TYPE_RAISES_EXCEPTIONS (v) = raises;
2645 TYPE_HAS_LATE_RETURN_TYPE (v) = late;
2646 switch (rqual)
2648 case REF_QUAL_RVALUE:
2649 FUNCTION_RVALUE_QUALIFIED (v) = 1;
2650 FUNCTION_REF_QUALIFIED (v) = 1;
2651 break;
2652 case REF_QUAL_LVALUE:
2653 FUNCTION_RVALUE_QUALIFIED (v) = 0;
2654 FUNCTION_REF_QUALIFIED (v) = 1;
2655 break;
2656 default:
2657 FUNCTION_REF_QUALIFIED (v) = 0;
2658 break;
2661 /* Canonicalize the exception specification. */
2662 tree cr = flag_noexcept_type ? canonical_eh_spec (raises) : NULL_TREE;
2664 if (TYPE_STRUCTURAL_EQUALITY_P (type))
2665 /* Propagate structural equality. */
2666 SET_TYPE_STRUCTURAL_EQUALITY (v);
2667 else if (TYPE_CANONICAL (type) != type || cr != raises || late)
2668 /* Build the underlying canonical type, since it is different
2669 from TYPE. */
2670 TYPE_CANONICAL (v) = build_cp_fntype_variant (TYPE_CANONICAL (type),
2671 rqual, cr, false);
2672 else
2673 /* T is its own canonical type. */
2674 TYPE_CANONICAL (v) = v;
2676 return v;
2679 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
2680 listed in RAISES. */
2682 tree
2683 build_exception_variant (tree type, tree raises)
2685 cp_ref_qualifier rqual = type_memfn_rqual (type);
2686 bool late = TYPE_HAS_LATE_RETURN_TYPE (type);
2687 return build_cp_fntype_variant (type, rqual, raises, late);
2690 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
2691 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
2692 arguments. */
2694 tree
2695 bind_template_template_parm (tree t, tree newargs)
2697 tree decl = TYPE_NAME (t);
2698 tree t2;
2700 t2 = cxx_make_type (BOUND_TEMPLATE_TEMPLATE_PARM);
2701 decl = build_decl (input_location,
2702 TYPE_DECL, DECL_NAME (decl), NULL_TREE);
2704 /* These nodes have to be created to reflect new TYPE_DECL and template
2705 arguments. */
2706 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
2707 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
2708 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
2709 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
2711 TREE_TYPE (decl) = t2;
2712 TYPE_NAME (t2) = decl;
2713 TYPE_STUB_DECL (t2) = decl;
2714 TYPE_SIZE (t2) = 0;
2715 SET_TYPE_STRUCTURAL_EQUALITY (t2);
2717 return t2;
2720 /* Called from count_trees via walk_tree. */
2722 static tree
2723 count_trees_r (tree *tp, int *walk_subtrees, void *data)
2725 ++*((int *) data);
2727 if (TYPE_P (*tp))
2728 *walk_subtrees = 0;
2730 return NULL_TREE;
2733 /* Debugging function for measuring the rough complexity of a tree
2734 representation. */
2737 count_trees (tree t)
2739 int n_trees = 0;
2740 cp_walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
2741 return n_trees;
2744 /* Called from verify_stmt_tree via walk_tree. */
2746 static tree
2747 verify_stmt_tree_r (tree* tp, int * /*walk_subtrees*/, void* data)
2749 tree t = *tp;
2750 hash_table<nofree_ptr_hash <tree_node> > *statements
2751 = static_cast <hash_table<nofree_ptr_hash <tree_node> > *> (data);
2752 tree_node **slot;
2754 if (!STATEMENT_CODE_P (TREE_CODE (t)))
2755 return NULL_TREE;
2757 /* If this statement is already present in the hash table, then
2758 there is a circularity in the statement tree. */
2759 gcc_assert (!statements->find (t));
2761 slot = statements->find_slot (t, INSERT);
2762 *slot = t;
2764 return NULL_TREE;
2767 /* Debugging function to check that the statement T has not been
2768 corrupted. For now, this function simply checks that T contains no
2769 circularities. */
2771 void
2772 verify_stmt_tree (tree t)
2774 hash_table<nofree_ptr_hash <tree_node> > statements (37);
2775 cp_walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
2778 /* Check if the type T depends on a type with no linkage and if so,
2779 return it. If RELAXED_P then do not consider a class type declared
2780 within a vague-linkage function to have no linkage. Remember:
2781 no-linkage is not the same as internal-linkage*/
2783 tree
2784 no_linkage_check (tree t, bool relaxed_p)
2786 tree r;
2788 /* Lambda types that don't have mangling scope have no linkage. We
2789 check CLASSTYPE_LAMBDA_EXPR for error_mark_node because
2790 when we get here from pushtag none of the lambda information is
2791 set up yet, so we want to assume that the lambda has linkage and
2792 fix it up later if not. We need to check this even in templates so
2793 that we properly handle a lambda-expression in the signature. */
2794 if (LAMBDA_TYPE_P (t)
2795 && CLASSTYPE_LAMBDA_EXPR (t) != error_mark_node)
2797 tree extra = LAMBDA_TYPE_EXTRA_SCOPE (t);
2798 if (!extra)
2799 return t;
2802 /* Otherwise there's no point in checking linkage on template functions; we
2803 can't know their complete types. */
2804 if (processing_template_decl)
2805 return NULL_TREE;
2807 switch (TREE_CODE (t))
2809 case RECORD_TYPE:
2810 if (TYPE_PTRMEMFUNC_P (t))
2811 goto ptrmem;
2812 /* Fall through. */
2813 case UNION_TYPE:
2814 if (!CLASS_TYPE_P (t))
2815 return NULL_TREE;
2816 /* Fall through. */
2817 case ENUMERAL_TYPE:
2818 /* Only treat unnamed types as having no linkage if they're at
2819 namespace scope. This is core issue 966. */
2820 if (TYPE_UNNAMED_P (t) && TYPE_NAMESPACE_SCOPE_P (t))
2821 return t;
2823 for (r = CP_TYPE_CONTEXT (t); ; )
2825 /* If we're a nested type of a !TREE_PUBLIC class, we might not
2826 have linkage, or we might just be in an anonymous namespace.
2827 If we're in a TREE_PUBLIC class, we have linkage. */
2828 if (TYPE_P (r) && !TREE_PUBLIC (TYPE_NAME (r)))
2829 return no_linkage_check (TYPE_CONTEXT (t), relaxed_p);
2830 else if (TREE_CODE (r) == FUNCTION_DECL)
2832 if (!relaxed_p || !vague_linkage_p (r))
2833 return t;
2834 else
2835 r = CP_DECL_CONTEXT (r);
2837 else
2838 break;
2841 return NULL_TREE;
2843 case ARRAY_TYPE:
2844 case POINTER_TYPE:
2845 case REFERENCE_TYPE:
2846 case VECTOR_TYPE:
2847 return no_linkage_check (TREE_TYPE (t), relaxed_p);
2849 case OFFSET_TYPE:
2850 ptrmem:
2851 r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
2852 relaxed_p);
2853 if (r)
2854 return r;
2855 return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
2857 case METHOD_TYPE:
2858 case FUNCTION_TYPE:
2860 tree parm = TYPE_ARG_TYPES (t);
2861 if (TREE_CODE (t) == METHOD_TYPE)
2862 /* The 'this' pointer isn't interesting; a method has the same
2863 linkage (or lack thereof) as its enclosing class. */
2864 parm = TREE_CHAIN (parm);
2865 for (;
2866 parm && parm != void_list_node;
2867 parm = TREE_CHAIN (parm))
2869 r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
2870 if (r)
2871 return r;
2873 return no_linkage_check (TREE_TYPE (t), relaxed_p);
2876 default:
2877 return NULL_TREE;
2881 extern int depth_reached;
2883 void
2884 cxx_print_statistics (void)
2886 print_template_statistics ();
2887 if (GATHER_STATISTICS)
2888 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
2889 depth_reached);
2892 /* Return, as an INTEGER_CST node, the number of elements for TYPE
2893 (which is an ARRAY_TYPE). This counts only elements of the top
2894 array. */
2896 tree
2897 array_type_nelts_top (tree type)
2899 return fold_build2_loc (input_location,
2900 PLUS_EXPR, sizetype,
2901 array_type_nelts (type),
2902 size_one_node);
2905 /* Return, as an INTEGER_CST node, the number of elements for TYPE
2906 (which is an ARRAY_TYPE). This one is a recursive count of all
2907 ARRAY_TYPEs that are clumped together. */
2909 tree
2910 array_type_nelts_total (tree type)
2912 tree sz = array_type_nelts_top (type);
2913 type = TREE_TYPE (type);
2914 while (TREE_CODE (type) == ARRAY_TYPE)
2916 tree n = array_type_nelts_top (type);
2917 sz = fold_build2_loc (input_location,
2918 MULT_EXPR, sizetype, sz, n);
2919 type = TREE_TYPE (type);
2921 return sz;
2924 struct bot_data
2926 splay_tree target_remap;
2927 bool clear_location;
2930 /* Called from break_out_target_exprs via mapcar. */
2932 static tree
2933 bot_manip (tree* tp, int* walk_subtrees, void* data_)
2935 bot_data &data = *(bot_data*)data_;
2936 splay_tree target_remap = data.target_remap;
2937 tree t = *tp;
2939 if (!TYPE_P (t) && TREE_CONSTANT (t) && !TREE_SIDE_EFFECTS (t))
2941 /* There can't be any TARGET_EXPRs or their slot variables below this
2942 point. But we must make a copy, in case subsequent processing
2943 alters any part of it. For example, during gimplification a cast
2944 of the form (T) &X::f (where "f" is a member function) will lead
2945 to replacing the PTRMEM_CST for &X::f with a VAR_DECL. */
2946 *walk_subtrees = 0;
2947 *tp = unshare_expr (t);
2948 return NULL_TREE;
2950 if (TREE_CODE (t) == TARGET_EXPR)
2952 tree u;
2954 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
2956 u = build_cplus_new (TREE_TYPE (t), TREE_OPERAND (t, 1),
2957 tf_warning_or_error);
2958 if (u == error_mark_node)
2959 return u;
2960 if (AGGR_INIT_ZERO_FIRST (TREE_OPERAND (t, 1)))
2961 AGGR_INIT_ZERO_FIRST (TREE_OPERAND (u, 1)) = true;
2963 else
2964 u = build_target_expr_with_type (TREE_OPERAND (t, 1), TREE_TYPE (t),
2965 tf_warning_or_error);
2967 TARGET_EXPR_IMPLICIT_P (u) = TARGET_EXPR_IMPLICIT_P (t);
2968 TARGET_EXPR_LIST_INIT_P (u) = TARGET_EXPR_LIST_INIT_P (t);
2969 TARGET_EXPR_DIRECT_INIT_P (u) = TARGET_EXPR_DIRECT_INIT_P (t);
2971 /* Map the old variable to the new one. */
2972 splay_tree_insert (target_remap,
2973 (splay_tree_key) TREE_OPERAND (t, 0),
2974 (splay_tree_value) TREE_OPERAND (u, 0));
2976 TREE_OPERAND (u, 1) = break_out_target_exprs (TREE_OPERAND (u, 1),
2977 data.clear_location);
2978 if (TREE_OPERAND (u, 1) == error_mark_node)
2979 return error_mark_node;
2981 /* Replace the old expression with the new version. */
2982 *tp = u;
2983 /* We don't have to go below this point; the recursive call to
2984 break_out_target_exprs will have handled anything below this
2985 point. */
2986 *walk_subtrees = 0;
2987 return NULL_TREE;
2989 if (TREE_CODE (*tp) == SAVE_EXPR)
2991 t = *tp;
2992 splay_tree_node n = splay_tree_lookup (target_remap,
2993 (splay_tree_key) t);
2994 if (n)
2996 *tp = (tree)n->value;
2997 *walk_subtrees = 0;
2999 else
3001 copy_tree_r (tp, walk_subtrees, NULL);
3002 splay_tree_insert (target_remap,
3003 (splay_tree_key)t,
3004 (splay_tree_value)*tp);
3005 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
3006 splay_tree_insert (target_remap,
3007 (splay_tree_key)*tp,
3008 (splay_tree_value)*tp);
3010 return NULL_TREE;
3013 /* Make a copy of this node. */
3014 t = copy_tree_r (tp, walk_subtrees, NULL);
3015 if (TREE_CODE (*tp) == CALL_EXPR || TREE_CODE (*tp) == AGGR_INIT_EXPR)
3016 if (!processing_template_decl)
3017 set_flags_from_callee (*tp);
3018 if (data.clear_location && EXPR_HAS_LOCATION (*tp))
3019 SET_EXPR_LOCATION (*tp, input_location);
3020 return t;
3023 /* Replace all remapped VAR_DECLs in T with their new equivalents.
3024 DATA is really a splay-tree mapping old variables to new
3025 variables. */
3027 static tree
3028 bot_replace (tree* t, int* /*walk_subtrees*/, void* data_)
3030 bot_data &data = *(bot_data*)data_;
3031 splay_tree target_remap = data.target_remap;
3033 if (VAR_P (*t))
3035 splay_tree_node n = splay_tree_lookup (target_remap,
3036 (splay_tree_key) *t);
3037 if (n)
3038 *t = (tree) n->value;
3040 else if (TREE_CODE (*t) == PARM_DECL
3041 && DECL_NAME (*t) == this_identifier
3042 && !DECL_CONTEXT (*t))
3044 /* In an NSDMI we need to replace the 'this' parameter we used for
3045 parsing with the real one for this function. */
3046 *t = current_class_ptr;
3048 else if (TREE_CODE (*t) == CONVERT_EXPR
3049 && CONVERT_EXPR_VBASE_PATH (*t))
3051 /* In an NSDMI build_base_path defers building conversions to virtual
3052 bases, and we handle it here. */
3053 tree basetype = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (*t)));
3054 vec<tree, va_gc> *vbases = CLASSTYPE_VBASECLASSES (current_class_type);
3055 int i; tree binfo;
3056 FOR_EACH_VEC_SAFE_ELT (vbases, i, binfo)
3057 if (BINFO_TYPE (binfo) == basetype)
3058 break;
3059 *t = build_base_path (PLUS_EXPR, TREE_OPERAND (*t, 0), binfo, true,
3060 tf_warning_or_error);
3063 return NULL_TREE;
3066 /* When we parse a default argument expression, we may create
3067 temporary variables via TARGET_EXPRs. When we actually use the
3068 default-argument expression, we make a copy of the expression
3069 and replace the temporaries with appropriate local versions.
3071 If CLEAR_LOCATION is true, override any EXPR_LOCATION with
3072 input_location. */
3074 tree
3075 break_out_target_exprs (tree t, bool clear_location /* = false */)
3077 static int target_remap_count;
3078 static splay_tree target_remap;
3080 if (!target_remap_count++)
3081 target_remap = splay_tree_new (splay_tree_compare_pointers,
3082 /*splay_tree_delete_key_fn=*/NULL,
3083 /*splay_tree_delete_value_fn=*/NULL);
3084 bot_data data = { target_remap, clear_location };
3085 if (cp_walk_tree (&t, bot_manip, &data, NULL) == error_mark_node)
3086 t = error_mark_node;
3087 cp_walk_tree (&t, bot_replace, &data, NULL);
3089 if (!--target_remap_count)
3091 splay_tree_delete (target_remap);
3092 target_remap = NULL;
3095 return t;
3098 /* Build an expression for the subobject of OBJ at CONSTRUCTOR index INDEX,
3099 which we expect to have type TYPE. */
3101 tree
3102 build_ctor_subob_ref (tree index, tree type, tree obj)
3104 if (index == NULL_TREE)
3105 /* Can't refer to a particular member of a vector. */
3106 obj = NULL_TREE;
3107 else if (TREE_CODE (index) == INTEGER_CST)
3108 obj = cp_build_array_ref (input_location, obj, index, tf_none);
3109 else
3110 obj = build_class_member_access_expr (obj, index, NULL_TREE,
3111 /*reference*/false, tf_none);
3112 if (obj)
3114 tree objtype = TREE_TYPE (obj);
3115 if (TREE_CODE (objtype) == ARRAY_TYPE && !TYPE_DOMAIN (objtype))
3117 /* When the destination object refers to a flexible array member
3118 verify that it matches the type of the source object except
3119 for its domain and qualifiers. */
3120 gcc_assert (comptypes (TYPE_MAIN_VARIANT (type),
3121 TYPE_MAIN_VARIANT (objtype),
3122 COMPARE_REDECLARATION));
3124 else
3125 gcc_assert (same_type_ignoring_top_level_qualifiers_p (type, objtype));
3128 return obj;
3131 struct replace_placeholders_t
3133 tree obj; /* The object to be substituted for a PLACEHOLDER_EXPR. */
3134 tree exp; /* The outermost exp. */
3135 bool seen; /* Whether we've encountered a PLACEHOLDER_EXPR. */
3136 hash_set<tree> *pset; /* To avoid walking same trees multiple times. */
3139 /* Like substitute_placeholder_in_expr, but handle C++ tree codes and
3140 build up subexpressions as we go deeper. */
3142 static tree
3143 replace_placeholders_r (tree* t, int* walk_subtrees, void* data_)
3145 replace_placeholders_t *d = static_cast<replace_placeholders_t*>(data_);
3146 tree obj = d->obj;
3148 if (TYPE_P (*t) || TREE_CONSTANT (*t))
3150 *walk_subtrees = false;
3151 return NULL_TREE;
3154 switch (TREE_CODE (*t))
3156 case PLACEHOLDER_EXPR:
3158 tree x = obj;
3159 for (; !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (*t),
3160 TREE_TYPE (x));
3161 x = TREE_OPERAND (x, 0))
3162 gcc_assert (handled_component_p (x));
3163 *t = unshare_expr (x);
3164 *walk_subtrees = false;
3165 d->seen = true;
3167 break;
3169 case CONSTRUCTOR:
3171 constructor_elt *ce;
3172 vec<constructor_elt,va_gc> *v = CONSTRUCTOR_ELTS (*t);
3173 /* Don't walk into CONSTRUCTOR_PLACEHOLDER_BOUNDARY ctors
3174 other than the d->exp one, those have PLACEHOLDER_EXPRs
3175 related to another object. */
3176 if ((CONSTRUCTOR_PLACEHOLDER_BOUNDARY (*t)
3177 && *t != d->exp)
3178 || d->pset->add (*t))
3180 *walk_subtrees = false;
3181 return NULL_TREE;
3183 for (unsigned i = 0; vec_safe_iterate (v, i, &ce); ++i)
3185 tree *valp = &ce->value;
3186 tree type = TREE_TYPE (*valp);
3187 tree subob = obj;
3189 /* Elements with RANGE_EXPR index shouldn't have any
3190 placeholders in them. */
3191 if (ce->index && TREE_CODE (ce->index) == RANGE_EXPR)
3192 continue;
3194 if (TREE_CODE (*valp) == CONSTRUCTOR
3195 && AGGREGATE_TYPE_P (type))
3197 /* If we're looking at the initializer for OBJ, then build
3198 a sub-object reference. If we're looking at an
3199 initializer for another object, just pass OBJ down. */
3200 if (same_type_ignoring_top_level_qualifiers_p
3201 (TREE_TYPE (*t), TREE_TYPE (obj)))
3202 subob = build_ctor_subob_ref (ce->index, type, obj);
3203 if (TREE_CODE (*valp) == TARGET_EXPR)
3204 valp = &TARGET_EXPR_INITIAL (*valp);
3206 d->obj = subob;
3207 cp_walk_tree (valp, replace_placeholders_r, data_, NULL);
3208 d->obj = obj;
3210 *walk_subtrees = false;
3211 break;
3214 default:
3215 if (d->pset->add (*t))
3216 *walk_subtrees = false;
3217 break;
3220 return NULL_TREE;
3223 /* Replace PLACEHOLDER_EXPRs in EXP with object OBJ. SEEN_P is set if
3224 a PLACEHOLDER_EXPR has been encountered. */
3226 tree
3227 replace_placeholders (tree exp, tree obj, bool *seen_p /*= NULL*/)
3229 /* This is only relevant for C++14. */
3230 if (cxx_dialect < cxx14)
3231 return exp;
3233 /* If the object isn't a (member of a) class, do nothing. */
3234 tree op0 = obj;
3235 while (handled_component_p (op0))
3236 op0 = TREE_OPERAND (op0, 0);
3237 if (!CLASS_TYPE_P (strip_array_types (TREE_TYPE (op0))))
3238 return exp;
3240 tree *tp = &exp;
3241 if (TREE_CODE (exp) == TARGET_EXPR)
3242 tp = &TARGET_EXPR_INITIAL (exp);
3243 hash_set<tree> pset;
3244 replace_placeholders_t data = { obj, *tp, false, &pset };
3245 cp_walk_tree (tp, replace_placeholders_r, &data, NULL);
3246 if (seen_p)
3247 *seen_p = data.seen;
3248 return exp;
3251 /* Callback function for find_placeholders. */
3253 static tree
3254 find_placeholders_r (tree *t, int *walk_subtrees, void *)
3256 if (TYPE_P (*t) || TREE_CONSTANT (*t))
3258 *walk_subtrees = false;
3259 return NULL_TREE;
3262 switch (TREE_CODE (*t))
3264 case PLACEHOLDER_EXPR:
3265 return *t;
3267 case CONSTRUCTOR:
3268 if (CONSTRUCTOR_PLACEHOLDER_BOUNDARY (*t))
3269 *walk_subtrees = false;
3270 break;
3272 default:
3273 break;
3276 return NULL_TREE;
3279 /* Return true if EXP contains a PLACEHOLDER_EXPR. Don't walk into
3280 ctors with CONSTRUCTOR_PLACEHOLDER_BOUNDARY flag set. */
3282 bool
3283 find_placeholders (tree exp)
3285 /* This is only relevant for C++14. */
3286 if (cxx_dialect < cxx14)
3287 return false;
3289 return cp_walk_tree_without_duplicates (&exp, find_placeholders_r, NULL);
3292 /* Similar to `build_nt', but for template definitions of dependent
3293 expressions */
3295 tree
3296 build_min_nt_loc (location_t loc, enum tree_code code, ...)
3298 tree t;
3299 int length;
3300 int i;
3301 va_list p;
3303 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3305 va_start (p, code);
3307 t = make_node (code);
3308 SET_EXPR_LOCATION (t, loc);
3309 length = TREE_CODE_LENGTH (code);
3311 for (i = 0; i < length; i++)
3312 TREE_OPERAND (t, i) = va_arg (p, tree);
3314 va_end (p);
3315 return t;
3318 /* Similar to `build', but for template definitions. */
3320 tree
3321 build_min (enum tree_code code, tree tt, ...)
3323 tree t;
3324 int length;
3325 int i;
3326 va_list p;
3328 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3330 va_start (p, tt);
3332 t = make_node (code);
3333 length = TREE_CODE_LENGTH (code);
3334 TREE_TYPE (t) = tt;
3336 for (i = 0; i < length; i++)
3338 tree x = va_arg (p, tree);
3339 TREE_OPERAND (t, i) = x;
3340 if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
3341 TREE_SIDE_EFFECTS (t) = 1;
3344 va_end (p);
3346 return t;
3349 /* Similar to `build', but for template definitions of non-dependent
3350 expressions. NON_DEP is the non-dependent expression that has been
3351 built. */
3353 tree
3354 build_min_non_dep (enum tree_code code, tree non_dep, ...)
3356 tree t;
3357 int length;
3358 int i;
3359 va_list p;
3361 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3363 va_start (p, non_dep);
3365 if (REFERENCE_REF_P (non_dep))
3366 non_dep = TREE_OPERAND (non_dep, 0);
3368 t = make_node (code);
3369 SET_EXPR_LOCATION (t, cp_expr_loc_or_input_loc (non_dep));
3370 length = TREE_CODE_LENGTH (code);
3371 TREE_TYPE (t) = unlowered_expr_type (non_dep);
3372 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
3374 for (i = 0; i < length; i++)
3375 TREE_OPERAND (t, i) = va_arg (p, tree);
3377 if (code == COMPOUND_EXPR && TREE_CODE (non_dep) != COMPOUND_EXPR)
3378 /* This should not be considered a COMPOUND_EXPR, because it
3379 resolves to an overload. */
3380 COMPOUND_EXPR_OVERLOADED (t) = 1;
3382 va_end (p);
3383 return convert_from_reference (t);
3386 /* Similar to build_min_nt, but call expressions */
3388 tree
3389 build_min_nt_call_vec (tree fn, vec<tree, va_gc> *args)
3391 tree ret, t;
3392 unsigned int ix;
3394 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
3395 CALL_EXPR_FN (ret) = fn;
3396 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
3397 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
3398 CALL_EXPR_ARG (ret, ix) = t;
3400 return ret;
3403 /* Similar to `build_min_nt_call_vec', but for template definitions of
3404 non-dependent expressions. NON_DEP is the non-dependent expression
3405 that has been built. */
3407 tree
3408 build_min_non_dep_call_vec (tree non_dep, tree fn, vec<tree, va_gc> *argvec)
3410 tree t = build_min_nt_call_vec (fn, argvec);
3411 if (REFERENCE_REF_P (non_dep))
3412 non_dep = TREE_OPERAND (non_dep, 0);
3413 TREE_TYPE (t) = TREE_TYPE (non_dep);
3414 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
3415 return convert_from_reference (t);
3418 /* Similar to build_min_non_dep, but for expressions that have been resolved to
3419 a call to an operator overload. OP is the operator that has been
3420 overloaded. NON_DEP is the non-dependent expression that's been built,
3421 which should be a CALL_EXPR or an INDIRECT_REF to a CALL_EXPR. OVERLOAD is
3422 the overload that NON_DEP is calling. */
3424 tree
3425 build_min_non_dep_op_overload (enum tree_code op,
3426 tree non_dep,
3427 tree overload, ...)
3429 va_list p;
3430 int nargs, expected_nargs;
3431 tree fn, call;
3433 non_dep = extract_call_expr (non_dep);
3435 nargs = call_expr_nargs (non_dep);
3437 expected_nargs = cp_tree_code_length (op);
3438 if ((op == POSTINCREMENT_EXPR
3439 || op == POSTDECREMENT_EXPR)
3440 /* With -fpermissive non_dep could be operator++(). */
3441 && (!flag_permissive || nargs != expected_nargs))
3442 expected_nargs += 1;
3443 gcc_assert (nargs == expected_nargs);
3445 releasing_vec args;
3446 va_start (p, overload);
3448 if (TREE_CODE (TREE_TYPE (overload)) == FUNCTION_TYPE)
3450 fn = overload;
3451 for (int i = 0; i < nargs; i++)
3453 tree arg = va_arg (p, tree);
3454 vec_safe_push (args, arg);
3457 else if (TREE_CODE (TREE_TYPE (overload)) == METHOD_TYPE)
3459 tree object = va_arg (p, tree);
3460 tree binfo = TYPE_BINFO (TREE_TYPE (object));
3461 tree method = build_baselink (binfo, binfo, overload, NULL_TREE);
3462 fn = build_min (COMPONENT_REF, TREE_TYPE (overload),
3463 object, method, NULL_TREE);
3464 for (int i = 1; i < nargs; i++)
3466 tree arg = va_arg (p, tree);
3467 vec_safe_push (args, arg);
3470 else
3471 gcc_unreachable ();
3473 va_end (p);
3474 call = build_min_non_dep_call_vec (non_dep, fn, args);
3476 tree call_expr = extract_call_expr (call);
3477 KOENIG_LOOKUP_P (call_expr) = KOENIG_LOOKUP_P (non_dep);
3478 CALL_EXPR_OPERATOR_SYNTAX (call_expr) = true;
3479 CALL_EXPR_ORDERED_ARGS (call_expr) = CALL_EXPR_ORDERED_ARGS (non_dep);
3480 CALL_EXPR_REVERSE_ARGS (call_expr) = CALL_EXPR_REVERSE_ARGS (non_dep);
3482 return call;
3485 /* Return a new tree vec copied from VEC, with ELT inserted at index IDX. */
3487 vec<tree, va_gc> *
3488 vec_copy_and_insert (vec<tree, va_gc> *old_vec, tree elt, unsigned idx)
3490 unsigned len = vec_safe_length (old_vec);
3491 gcc_assert (idx <= len);
3493 vec<tree, va_gc> *new_vec = NULL;
3494 vec_alloc (new_vec, len + 1);
3496 unsigned i;
3497 for (i = 0; i < len; ++i)
3499 if (i == idx)
3500 new_vec->quick_push (elt);
3501 new_vec->quick_push ((*old_vec)[i]);
3503 if (i == idx)
3504 new_vec->quick_push (elt);
3506 return new_vec;
3509 tree
3510 get_type_decl (tree t)
3512 if (TREE_CODE (t) == TYPE_DECL)
3513 return t;
3514 if (TYPE_P (t))
3515 return TYPE_STUB_DECL (t);
3516 gcc_assert (t == error_mark_node);
3517 return t;
3520 /* Returns the namespace that contains DECL, whether directly or
3521 indirectly. */
3523 tree
3524 decl_namespace_context (tree decl)
3526 while (1)
3528 if (TREE_CODE (decl) == NAMESPACE_DECL)
3529 return decl;
3530 else if (TYPE_P (decl))
3531 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
3532 else
3533 decl = CP_DECL_CONTEXT (decl);
3537 /* Returns true if decl is within an anonymous namespace, however deeply
3538 nested, or false otherwise. */
3540 bool
3541 decl_anon_ns_mem_p (const_tree decl)
3543 while (TREE_CODE (decl) != NAMESPACE_DECL)
3545 /* Classes inside anonymous namespaces have TREE_PUBLIC == 0. */
3546 if (TYPE_P (decl))
3547 return !TREE_PUBLIC (TYPE_MAIN_DECL (decl));
3549 decl = CP_DECL_CONTEXT (decl);
3551 return !TREE_PUBLIC (decl);
3554 /* Subroutine of cp_tree_equal: t1 and t2 are the CALL_EXPR_FNs of two
3555 CALL_EXPRS. Return whether they are equivalent. */
3557 static bool
3558 called_fns_equal (tree t1, tree t2)
3560 /* Core 1321: dependent names are equivalent even if the overload sets
3561 are different. But do compare explicit template arguments. */
3562 tree name1 = dependent_name (t1);
3563 tree name2 = dependent_name (t2);
3564 if (name1 || name2)
3566 tree targs1 = NULL_TREE, targs2 = NULL_TREE;
3568 if (name1 != name2)
3569 return false;
3571 /* FIXME dependent_name currently returns an unqualified name regardless
3572 of whether the function was named with a qualified- or unqualified-id.
3573 Until that's fixed, check that we aren't looking at overload sets from
3574 different scopes. */
3575 if (is_overloaded_fn (t1) && is_overloaded_fn (t2)
3576 && (DECL_CONTEXT (get_first_fn (t1))
3577 != DECL_CONTEXT (get_first_fn (t2))))
3578 return false;
3580 if (TREE_CODE (t1) == TEMPLATE_ID_EXPR)
3581 targs1 = TREE_OPERAND (t1, 1);
3582 if (TREE_CODE (t2) == TEMPLATE_ID_EXPR)
3583 targs2 = TREE_OPERAND (t2, 1);
3584 return cp_tree_equal (targs1, targs2);
3586 else
3587 return cp_tree_equal (t1, t2);
3590 /* Return truthvalue of whether T1 is the same tree structure as T2.
3591 Return 1 if they are the same. Return 0 if they are different. */
3593 bool
3594 cp_tree_equal (tree t1, tree t2)
3596 enum tree_code code1, code2;
3598 if (t1 == t2)
3599 return true;
3600 if (!t1 || !t2)
3601 return false;
3603 code1 = TREE_CODE (t1);
3604 code2 = TREE_CODE (t2);
3606 if (code1 != code2)
3607 return false;
3609 if (CONSTANT_CLASS_P (t1)
3610 && !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3611 return false;
3613 switch (code1)
3615 case VOID_CST:
3616 /* There's only a single VOID_CST node, so we should never reach
3617 here. */
3618 gcc_unreachable ();
3620 case INTEGER_CST:
3621 return tree_int_cst_equal (t1, t2);
3623 case REAL_CST:
3624 return real_equal (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
3626 case STRING_CST:
3627 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3628 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3629 TREE_STRING_LENGTH (t1));
3631 case FIXED_CST:
3632 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1),
3633 TREE_FIXED_CST (t2));
3635 case COMPLEX_CST:
3636 return cp_tree_equal (TREE_REALPART (t1), TREE_REALPART (t2))
3637 && cp_tree_equal (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
3639 case VECTOR_CST:
3640 return operand_equal_p (t1, t2, OEP_ONLY_CONST);
3642 case CONSTRUCTOR:
3643 /* We need to do this when determining whether or not two
3644 non-type pointer to member function template arguments
3645 are the same. */
3646 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
3647 || CONSTRUCTOR_NELTS (t1) != CONSTRUCTOR_NELTS (t2))
3648 return false;
3650 tree field, value;
3651 unsigned int i;
3652 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, field, value)
3654 constructor_elt *elt2 = CONSTRUCTOR_ELT (t2, i);
3655 if (!cp_tree_equal (field, elt2->index)
3656 || !cp_tree_equal (value, elt2->value))
3657 return false;
3660 return true;
3662 case TREE_LIST:
3663 if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
3664 return false;
3665 if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
3666 return false;
3667 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
3669 case SAVE_EXPR:
3670 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3672 case CALL_EXPR:
3674 tree arg1, arg2;
3675 call_expr_arg_iterator iter1, iter2;
3676 if (KOENIG_LOOKUP_P (t1) != KOENIG_LOOKUP_P (t2)
3677 || !called_fns_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2)))
3678 return false;
3679 for (arg1 = first_call_expr_arg (t1, &iter1),
3680 arg2 = first_call_expr_arg (t2, &iter2);
3681 arg1 && arg2;
3682 arg1 = next_call_expr_arg (&iter1),
3683 arg2 = next_call_expr_arg (&iter2))
3684 if (!cp_tree_equal (arg1, arg2))
3685 return false;
3686 if (arg1 || arg2)
3687 return false;
3688 return true;
3691 case TARGET_EXPR:
3693 tree o1 = TREE_OPERAND (t1, 0);
3694 tree o2 = TREE_OPERAND (t2, 0);
3696 /* Special case: if either target is an unallocated VAR_DECL,
3697 it means that it's going to be unified with whatever the
3698 TARGET_EXPR is really supposed to initialize, so treat it
3699 as being equivalent to anything. */
3700 if (VAR_P (o1) && DECL_NAME (o1) == NULL_TREE
3701 && !DECL_RTL_SET_P (o1))
3702 /*Nop*/;
3703 else if (VAR_P (o2) && DECL_NAME (o2) == NULL_TREE
3704 && !DECL_RTL_SET_P (o2))
3705 /*Nop*/;
3706 else if (!cp_tree_equal (o1, o2))
3707 return false;
3709 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3712 case PARM_DECL:
3713 /* For comparing uses of parameters in late-specified return types
3714 with an out-of-class definition of the function, but can also come
3715 up for expressions that involve 'this' in a member function
3716 template. */
3718 if (comparing_specializations
3719 && DECL_CONTEXT (t1) != DECL_CONTEXT (t2))
3720 /* When comparing hash table entries, only an exact match is
3721 good enough; we don't want to replace 'this' with the
3722 version from another function. But be more flexible
3723 with parameters with identical contexts. */
3724 return false;
3726 if (same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3728 if (DECL_ARTIFICIAL (t1) ^ DECL_ARTIFICIAL (t2))
3729 return false;
3730 if (CONSTRAINT_VAR_P (t1) ^ CONSTRAINT_VAR_P (t2))
3731 return false;
3732 if (DECL_ARTIFICIAL (t1)
3733 || (DECL_PARM_LEVEL (t1) == DECL_PARM_LEVEL (t2)
3734 && DECL_PARM_INDEX (t1) == DECL_PARM_INDEX (t2)))
3735 return true;
3737 return false;
3739 case VAR_DECL:
3740 case CONST_DECL:
3741 case FIELD_DECL:
3742 case FUNCTION_DECL:
3743 case TEMPLATE_DECL:
3744 case IDENTIFIER_NODE:
3745 case SSA_NAME:
3746 case USING_DECL:
3747 case DEFERRED_PARSE:
3748 return false;
3750 case BASELINK:
3751 return (BASELINK_BINFO (t1) == BASELINK_BINFO (t2)
3752 && BASELINK_ACCESS_BINFO (t1) == BASELINK_ACCESS_BINFO (t2)
3753 && BASELINK_QUALIFIED_P (t1) == BASELINK_QUALIFIED_P (t2)
3754 && cp_tree_equal (BASELINK_FUNCTIONS (t1),
3755 BASELINK_FUNCTIONS (t2)));
3757 case TEMPLATE_PARM_INDEX:
3758 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
3759 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
3760 && (TEMPLATE_PARM_PARAMETER_PACK (t1)
3761 == TEMPLATE_PARM_PARAMETER_PACK (t2))
3762 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
3763 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
3765 case TEMPLATE_ID_EXPR:
3766 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
3767 return false;
3768 if (!comp_template_args (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)))
3769 return false;
3770 return true;
3772 case CONSTRAINT_INFO:
3773 return cp_tree_equal (CI_ASSOCIATED_CONSTRAINTS (t1),
3774 CI_ASSOCIATED_CONSTRAINTS (t2));
3776 case CHECK_CONSTR:
3777 return (CHECK_CONSTR_CONCEPT (t1) == CHECK_CONSTR_CONCEPT (t2)
3778 && comp_template_args (CHECK_CONSTR_ARGS (t1),
3779 CHECK_CONSTR_ARGS (t2)));
3781 case TREE_VEC:
3783 unsigned ix;
3784 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3785 return false;
3786 for (ix = TREE_VEC_LENGTH (t1); ix--;)
3787 if (!cp_tree_equal (TREE_VEC_ELT (t1, ix),
3788 TREE_VEC_ELT (t2, ix)))
3789 return false;
3790 return true;
3793 case SIZEOF_EXPR:
3794 case ALIGNOF_EXPR:
3796 tree o1 = TREE_OPERAND (t1, 0);
3797 tree o2 = TREE_OPERAND (t2, 0);
3799 if (code1 == SIZEOF_EXPR)
3801 if (SIZEOF_EXPR_TYPE_P (t1))
3802 o1 = TREE_TYPE (o1);
3803 if (SIZEOF_EXPR_TYPE_P (t2))
3804 o2 = TREE_TYPE (o2);
3806 else if (ALIGNOF_EXPR_STD_P (t1) != ALIGNOF_EXPR_STD_P (t2))
3807 return false;
3809 if (TREE_CODE (o1) != TREE_CODE (o2))
3810 return false;
3812 if (ARGUMENT_PACK_P (o1))
3813 return template_args_equal (o1, o2);
3814 else if (TYPE_P (o1))
3815 return same_type_p (o1, o2);
3816 else
3817 return cp_tree_equal (o1, o2);
3820 case MODOP_EXPR:
3822 tree t1_op1, t2_op1;
3824 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
3825 return false;
3827 t1_op1 = TREE_OPERAND (t1, 1);
3828 t2_op1 = TREE_OPERAND (t2, 1);
3829 if (TREE_CODE (t1_op1) != TREE_CODE (t2_op1))
3830 return false;
3832 return cp_tree_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t2, 2));
3835 case PTRMEM_CST:
3836 /* Two pointer-to-members are the same if they point to the same
3837 field or function in the same class. */
3838 if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
3839 return false;
3841 return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
3843 case OVERLOAD:
3845 /* Two overloads. Must be exactly the same set of decls. */
3846 lkp_iterator first (t1);
3847 lkp_iterator second (t2);
3849 for (; first && second; ++first, ++second)
3850 if (*first != *second)
3851 return false;
3852 return !(first || second);
3855 case TRAIT_EXPR:
3856 if (TRAIT_EXPR_KIND (t1) != TRAIT_EXPR_KIND (t2))
3857 return false;
3858 return same_type_p (TRAIT_EXPR_TYPE1 (t1), TRAIT_EXPR_TYPE1 (t2))
3859 && cp_tree_equal (TRAIT_EXPR_TYPE2 (t1), TRAIT_EXPR_TYPE2 (t2));
3861 case CAST_EXPR:
3862 case STATIC_CAST_EXPR:
3863 case REINTERPRET_CAST_EXPR:
3864 case CONST_CAST_EXPR:
3865 case DYNAMIC_CAST_EXPR:
3866 case IMPLICIT_CONV_EXPR:
3867 case NEW_EXPR:
3868 CASE_CONVERT:
3869 case NON_LVALUE_EXPR:
3870 case VIEW_CONVERT_EXPR:
3871 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3872 return false;
3873 /* Now compare operands as usual. */
3874 break;
3876 case DEFERRED_NOEXCEPT:
3877 return (cp_tree_equal (DEFERRED_NOEXCEPT_PATTERN (t1),
3878 DEFERRED_NOEXCEPT_PATTERN (t2))
3879 && comp_template_args (DEFERRED_NOEXCEPT_ARGS (t1),
3880 DEFERRED_NOEXCEPT_ARGS (t2)));
3882 case LAMBDA_EXPR:
3883 /* Two lambda-expressions are never considered equivalent. */
3884 return false;
3886 case TYPE_ARGUMENT_PACK:
3887 case NONTYPE_ARGUMENT_PACK:
3889 tree p1 = ARGUMENT_PACK_ARGS (t1);
3890 tree p2 = ARGUMENT_PACK_ARGS (t2);
3891 int len = TREE_VEC_LENGTH (p1);
3892 if (TREE_VEC_LENGTH (p2) != len)
3893 return false;
3895 for (int ix = 0; ix != len; ix++)
3896 if (!template_args_equal (TREE_VEC_ELT (p1, ix),
3897 TREE_VEC_ELT (p2, ix)))
3898 return false;
3899 return true;
3902 case EXPR_PACK_EXPANSION:
3903 if (!cp_tree_equal (PACK_EXPANSION_PATTERN (t1),
3904 PACK_EXPANSION_PATTERN (t2)))
3905 return false;
3906 if (!comp_template_args (PACK_EXPANSION_EXTRA_ARGS (t1),
3907 PACK_EXPANSION_EXTRA_ARGS (t2)))
3908 return false;
3909 return true;
3911 default:
3912 break;
3915 switch (TREE_CODE_CLASS (code1))
3917 case tcc_unary:
3918 case tcc_binary:
3919 case tcc_comparison:
3920 case tcc_expression:
3921 case tcc_vl_exp:
3922 case tcc_reference:
3923 case tcc_statement:
3925 int n = cp_tree_operand_length (t1);
3926 if (TREE_CODE_CLASS (code1) == tcc_vl_exp
3927 && n != TREE_OPERAND_LENGTH (t2))
3928 return false;
3930 for (int i = 0; i < n; ++i)
3931 if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
3932 return false;
3934 return true;
3937 case tcc_type:
3938 return same_type_p (t1, t2);
3940 default:
3941 gcc_unreachable ();
3944 /* We can get here with --disable-checking. */
3945 return false;
3948 /* The type of ARG when used as an lvalue. */
3950 tree
3951 lvalue_type (tree arg)
3953 tree type = TREE_TYPE (arg);
3954 return type;
3957 /* The type of ARG for printing error messages; denote lvalues with
3958 reference types. */
3960 tree
3961 error_type (tree arg)
3963 tree type = TREE_TYPE (arg);
3965 if (TREE_CODE (type) == ARRAY_TYPE)
3967 else if (TREE_CODE (type) == ERROR_MARK)
3969 else if (lvalue_p (arg))
3970 type = build_reference_type (lvalue_type (arg));
3971 else if (MAYBE_CLASS_TYPE_P (type))
3972 type = lvalue_type (arg);
3974 return type;
3977 /* Does FUNCTION use a variable-length argument list? */
3980 varargs_function_p (const_tree function)
3982 return stdarg_p (TREE_TYPE (function));
3985 /* Returns 1 if decl is a member of a class. */
3988 member_p (const_tree decl)
3990 const_tree const ctx = DECL_CONTEXT (decl);
3991 return (ctx && TYPE_P (ctx));
3994 /* Create a placeholder for member access where we don't actually have an
3995 object that the access is against. */
3997 tree
3998 build_dummy_object (tree type)
4000 tree decl = build1 (CONVERT_EXPR, build_pointer_type (type), void_node);
4001 return cp_build_fold_indirect_ref (decl);
4004 /* We've gotten a reference to a member of TYPE. Return *this if appropriate,
4005 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
4006 binfo path from current_class_type to TYPE, or 0. */
4008 tree
4009 maybe_dummy_object (tree type, tree* binfop)
4011 tree decl, context;
4012 tree binfo;
4013 tree current = current_nonlambda_class_type ();
4015 if (current
4016 && (binfo = lookup_base (current, type, ba_any, NULL,
4017 tf_warning_or_error)))
4018 context = current;
4019 else
4021 /* Reference from a nested class member function. */
4022 context = type;
4023 binfo = TYPE_BINFO (type);
4026 if (binfop)
4027 *binfop = binfo;
4029 if (current_class_ref
4030 /* current_class_ref might not correspond to current_class_type if
4031 we're in tsubst_default_argument or a lambda-declarator; in either
4032 case, we want to use current_class_ref if it matches CONTEXT. */
4033 && (same_type_ignoring_top_level_qualifiers_p
4034 (TREE_TYPE (current_class_ref), context)))
4035 decl = current_class_ref;
4036 else
4037 decl = build_dummy_object (context);
4039 return decl;
4042 /* Returns 1 if OB is a placeholder object, or a pointer to one. */
4044 bool
4045 is_dummy_object (const_tree ob)
4047 if (INDIRECT_REF_P (ob))
4048 ob = TREE_OPERAND (ob, 0);
4049 return (TREE_CODE (ob) == CONVERT_EXPR
4050 && TREE_OPERAND (ob, 0) == void_node);
4053 /* Returns true if TYPE is a character type or std::byte. */
4055 bool
4056 is_byte_access_type (tree type)
4058 type = TYPE_MAIN_VARIANT (type);
4059 if (char_type_p (type))
4060 return true;
4062 return (TREE_CODE (type) == ENUMERAL_TYPE
4063 && TYPE_CONTEXT (type) == std_node
4064 && !strcmp ("byte", TYPE_NAME_STRING (type)));
4067 /* Returns 1 iff type T is something we want to treat as a scalar type for
4068 the purpose of deciding whether it is trivial/POD/standard-layout. */
4070 bool
4071 scalarish_type_p (const_tree t)
4073 if (t == error_mark_node)
4074 return 1;
4076 return (SCALAR_TYPE_P (t) || VECTOR_TYPE_P (t));
4079 /* Returns true iff T requires non-trivial default initialization. */
4081 bool
4082 type_has_nontrivial_default_init (const_tree t)
4084 t = strip_array_types (CONST_CAST_TREE (t));
4086 if (CLASS_TYPE_P (t))
4087 return TYPE_HAS_COMPLEX_DFLT (t);
4088 else
4089 return 0;
4092 /* Track classes with only deleted copy/move constructors so that we can warn
4093 if they are used in call/return by value. */
4095 static GTY(()) hash_set<tree>* deleted_copy_types;
4096 static void
4097 remember_deleted_copy (const_tree t)
4099 if (!deleted_copy_types)
4100 deleted_copy_types = hash_set<tree>::create_ggc(37);
4101 deleted_copy_types->add (CONST_CAST_TREE (t));
4103 void
4104 maybe_warn_parm_abi (tree t, location_t loc)
4106 if (!deleted_copy_types
4107 || !deleted_copy_types->contains (t))
4108 return;
4110 if ((flag_abi_version == 12 || warn_abi_version == 12)
4111 && classtype_has_non_deleted_move_ctor (t))
4113 bool w;
4114 auto_diagnostic_group d;
4115 if (flag_abi_version > 12)
4116 w = warning_at (loc, OPT_Wabi, "%<-fabi-version=13%> (GCC 8.2) fixes "
4117 "the calling convention for %qT, which was "
4118 "accidentally changed in 8.1", t);
4119 else
4120 w = warning_at (loc, OPT_Wabi, "%<-fabi-version=12%> (GCC 8.1) accident"
4121 "ally changes the calling convention for %qT", t);
4122 if (w)
4123 inform (location_of (t), " declared here");
4124 return;
4127 auto_diagnostic_group d;
4128 if (warning_at (loc, OPT_Wabi, "the calling convention for %qT changes in "
4129 "%<-fabi-version=13%> (GCC 8.2)", t))
4130 inform (location_of (t), " because all of its copy and move "
4131 "constructors are deleted");
4134 /* Returns true iff copying an object of type T (including via move
4135 constructor) is non-trivial. That is, T has no non-trivial copy
4136 constructors and no non-trivial move constructors, and not all copy/move
4137 constructors are deleted. This function implements the ABI notion of
4138 non-trivial copy, which has diverged from the one in the standard. */
4140 bool
4141 type_has_nontrivial_copy_init (const_tree type)
4143 tree t = strip_array_types (CONST_CAST_TREE (type));
4145 if (CLASS_TYPE_P (t))
4147 gcc_assert (COMPLETE_TYPE_P (t));
4149 if (TYPE_HAS_COMPLEX_COPY_CTOR (t)
4150 || TYPE_HAS_COMPLEX_MOVE_CTOR (t))
4151 /* Nontrivial. */
4152 return true;
4154 if (cxx_dialect < cxx11)
4155 /* No deleted functions before C++11. */
4156 return false;
4158 /* Before ABI v12 we did a bitwise copy of types with only deleted
4159 copy/move constructors. */
4160 if (!abi_version_at_least (12)
4161 && !(warn_abi && abi_version_crosses (12)))
4162 return false;
4164 bool saw_copy = false;
4165 bool saw_non_deleted = false;
4166 bool saw_non_deleted_move = false;
4168 if (CLASSTYPE_LAZY_MOVE_CTOR (t))
4169 saw_copy = saw_non_deleted = true;
4170 else if (CLASSTYPE_LAZY_COPY_CTOR (t))
4172 saw_copy = true;
4173 if (classtype_has_move_assign_or_move_ctor_p (t, true))
4174 /* [class.copy]/8 If the class definition declares a move
4175 constructor or move assignment operator, the implicitly declared
4176 copy constructor is defined as deleted.... */;
4177 else
4178 /* Any other reason the implicitly-declared function would be
4179 deleted would also cause TYPE_HAS_COMPLEX_COPY_CTOR to be
4180 set. */
4181 saw_non_deleted = true;
4184 if (!saw_non_deleted)
4185 for (ovl_iterator iter (CLASSTYPE_CONSTRUCTORS (t)); iter; ++iter)
4187 tree fn = *iter;
4188 if (copy_fn_p (fn))
4190 saw_copy = true;
4191 if (!DECL_DELETED_FN (fn))
4193 /* Not deleted, therefore trivial. */
4194 saw_non_deleted = true;
4195 break;
4198 else if (move_fn_p (fn))
4199 if (!DECL_DELETED_FN (fn))
4200 saw_non_deleted_move = true;
4203 gcc_assert (saw_copy);
4205 /* ABI v12 buggily ignored move constructors. */
4206 bool v11nontriv = false;
4207 bool v12nontriv = !saw_non_deleted;
4208 bool v13nontriv = !saw_non_deleted && !saw_non_deleted_move;
4209 bool nontriv = (abi_version_at_least (13) ? v13nontriv
4210 : flag_abi_version == 12 ? v12nontriv
4211 : v11nontriv);
4212 bool warn_nontriv = (warn_abi_version >= 13 ? v13nontriv
4213 : warn_abi_version == 12 ? v12nontriv
4214 : v11nontriv);
4215 if (nontriv != warn_nontriv)
4216 remember_deleted_copy (t);
4218 return nontriv;
4220 else
4221 return 0;
4224 /* Returns 1 iff type T is a trivially copyable type, as defined in
4225 [basic.types] and [class]. */
4227 bool
4228 trivially_copyable_p (const_tree t)
4230 t = strip_array_types (CONST_CAST_TREE (t));
4232 if (CLASS_TYPE_P (t))
4233 return ((!TYPE_HAS_COPY_CTOR (t)
4234 || !TYPE_HAS_COMPLEX_COPY_CTOR (t))
4235 && !TYPE_HAS_COMPLEX_MOVE_CTOR (t)
4236 && (!TYPE_HAS_COPY_ASSIGN (t)
4237 || !TYPE_HAS_COMPLEX_COPY_ASSIGN (t))
4238 && !TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
4239 && TYPE_HAS_TRIVIAL_DESTRUCTOR (t));
4240 else
4241 /* CWG 2094 makes volatile-qualified scalars trivially copyable again. */
4242 return scalarish_type_p (t);
4245 /* Returns 1 iff type T is a trivial type, as defined in [basic.types] and
4246 [class]. */
4248 bool
4249 trivial_type_p (const_tree t)
4251 t = strip_array_types (CONST_CAST_TREE (t));
4253 if (CLASS_TYPE_P (t))
4254 return (TYPE_HAS_TRIVIAL_DFLT (t)
4255 && trivially_copyable_p (t));
4256 else
4257 return scalarish_type_p (t);
4260 /* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
4262 bool
4263 pod_type_p (const_tree t)
4265 /* This CONST_CAST is okay because strip_array_types returns its
4266 argument unmodified and we assign it to a const_tree. */
4267 t = strip_array_types (CONST_CAST_TREE(t));
4269 if (!CLASS_TYPE_P (t))
4270 return scalarish_type_p (t);
4271 else if (cxx_dialect > cxx98)
4272 /* [class]/10: A POD struct is a class that is both a trivial class and a
4273 standard-layout class, and has no non-static data members of type
4274 non-POD struct, non-POD union (or array of such types).
4276 We don't need to check individual members because if a member is
4277 non-std-layout or non-trivial, the class will be too. */
4278 return (std_layout_type_p (t) && trivial_type_p (t));
4279 else
4280 /* The C++98 definition of POD is different. */
4281 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
4284 /* Returns true iff T is POD for the purpose of layout, as defined in the
4285 C++ ABI. */
4287 bool
4288 layout_pod_type_p (const_tree t)
4290 t = strip_array_types (CONST_CAST_TREE (t));
4292 if (CLASS_TYPE_P (t))
4293 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
4294 else
4295 return scalarish_type_p (t);
4298 /* Returns true iff T is a standard-layout type, as defined in
4299 [basic.types]. */
4301 bool
4302 std_layout_type_p (const_tree t)
4304 t = strip_array_types (CONST_CAST_TREE (t));
4306 if (CLASS_TYPE_P (t))
4307 return !CLASSTYPE_NON_STD_LAYOUT (t);
4308 else
4309 return scalarish_type_p (t);
4312 static bool record_has_unique_obj_representations (const_tree, const_tree);
4314 /* Returns true iff T satisfies std::has_unique_object_representations<T>,
4315 as defined in [meta.unary.prop]. */
4317 bool
4318 type_has_unique_obj_representations (const_tree t)
4320 bool ret;
4322 t = strip_array_types (CONST_CAST_TREE (t));
4324 if (!trivially_copyable_p (t))
4325 return false;
4327 if (CLASS_TYPE_P (t) && CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t))
4328 return CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t);
4330 switch (TREE_CODE (t))
4332 case INTEGER_TYPE:
4333 case POINTER_TYPE:
4334 case REFERENCE_TYPE:
4335 /* If some backend has any paddings in these types, we should add
4336 a target hook for this and handle it there. */
4337 return true;
4339 case BOOLEAN_TYPE:
4340 /* For bool values other than 0 and 1 should only appear with
4341 undefined behavior. */
4342 return true;
4344 case ENUMERAL_TYPE:
4345 return type_has_unique_obj_representations (ENUM_UNDERLYING_TYPE (t));
4347 case REAL_TYPE:
4348 /* XFmode certainly contains padding on x86, which the CPU doesn't store
4349 when storing long double values, so for that we have to return false.
4350 Other kinds of floating point values are questionable due to +.0/-.0
4351 and NaNs, let's play safe for now. */
4352 return false;
4354 case FIXED_POINT_TYPE:
4355 return false;
4357 case OFFSET_TYPE:
4358 return true;
4360 case COMPLEX_TYPE:
4361 case VECTOR_TYPE:
4362 return type_has_unique_obj_representations (TREE_TYPE (t));
4364 case RECORD_TYPE:
4365 ret = record_has_unique_obj_representations (t, TYPE_SIZE (t));
4366 if (CLASS_TYPE_P (t))
4368 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t) = 1;
4369 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t) = ret;
4371 return ret;
4373 case UNION_TYPE:
4374 ret = true;
4375 bool any_fields;
4376 any_fields = false;
4377 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4378 if (TREE_CODE (field) == FIELD_DECL)
4380 any_fields = true;
4381 if (!type_has_unique_obj_representations (TREE_TYPE (field))
4382 || simple_cst_equal (DECL_SIZE (field), TYPE_SIZE (t)) != 1)
4384 ret = false;
4385 break;
4388 if (!any_fields && !integer_zerop (TYPE_SIZE (t)))
4389 ret = false;
4390 if (CLASS_TYPE_P (t))
4392 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t) = 1;
4393 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t) = ret;
4395 return ret;
4397 case NULLPTR_TYPE:
4398 return false;
4400 case ERROR_MARK:
4401 return false;
4403 default:
4404 gcc_unreachable ();
4408 /* Helper function for type_has_unique_obj_representations. */
4410 static bool
4411 record_has_unique_obj_representations (const_tree t, const_tree sz)
4413 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4414 if (TREE_CODE (field) != FIELD_DECL)
4416 /* For bases, can't use type_has_unique_obj_representations here, as in
4417 struct S { int i : 24; S (); };
4418 struct T : public S { int j : 8; T (); };
4419 S doesn't have unique obj representations, but T does. */
4420 else if (DECL_FIELD_IS_BASE (field))
4422 if (!record_has_unique_obj_representations (TREE_TYPE (field),
4423 DECL_SIZE (field)))
4424 return false;
4426 else if (DECL_C_BIT_FIELD (field))
4428 tree btype = DECL_BIT_FIELD_TYPE (field);
4429 if (!type_has_unique_obj_representations (btype))
4430 return false;
4432 else if (!type_has_unique_obj_representations (TREE_TYPE (field)))
4433 return false;
4435 offset_int cur = 0;
4436 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4437 if (TREE_CODE (field) == FIELD_DECL)
4439 offset_int fld = wi::to_offset (DECL_FIELD_OFFSET (field));
4440 offset_int bitpos = wi::to_offset (DECL_FIELD_BIT_OFFSET (field));
4441 fld = fld * BITS_PER_UNIT + bitpos;
4442 if (cur != fld)
4443 return false;
4444 if (DECL_SIZE (field))
4446 offset_int size = wi::to_offset (DECL_SIZE (field));
4447 cur += size;
4450 if (cur != wi::to_offset (sz))
4451 return false;
4453 return true;
4456 /* Nonzero iff type T is a class template implicit specialization. */
4458 bool
4459 class_tmpl_impl_spec_p (const_tree t)
4461 return CLASS_TYPE_P (t) && CLASSTYPE_TEMPLATE_INSTANTIATION (t);
4464 /* Returns 1 iff zero initialization of type T means actually storing
4465 zeros in it. */
4468 zero_init_p (const_tree t)
4470 /* This CONST_CAST is okay because strip_array_types returns its
4471 argument unmodified and we assign it to a const_tree. */
4472 t = strip_array_types (CONST_CAST_TREE(t));
4474 if (t == error_mark_node)
4475 return 1;
4477 /* NULL pointers to data members are initialized with -1. */
4478 if (TYPE_PTRDATAMEM_P (t))
4479 return 0;
4481 /* Classes that contain types that can't be zero-initialized, cannot
4482 be zero-initialized themselves. */
4483 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
4484 return 0;
4486 return 1;
4489 /* Returns true if the expression or initializer T is the result of
4490 zero-initialization for its type, taking pointers to members
4491 into consideration. */
4493 bool
4494 zero_init_expr_p (tree t)
4496 tree type = TREE_TYPE (t);
4497 if (!type || uses_template_parms (type))
4498 return false;
4499 if (zero_init_p (type))
4500 return initializer_zerop (t);
4501 if (TYPE_PTRMEM_P (type))
4502 return null_member_pointer_value_p (t);
4503 if (TREE_CODE (t) == CONSTRUCTOR
4504 && CP_AGGREGATE_TYPE_P (type))
4506 tree elt_init;
4507 unsigned HOST_WIDE_INT i;
4508 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, elt_init)
4509 if (!zero_init_expr_p (elt_init))
4510 return false;
4511 return true;
4513 return false;
4516 /* True IFF T is a C++20 structural type (P1907R1) that can be used as a
4517 non-type template parameter. If EXPLAIN, explain why not. */
4519 bool
4520 structural_type_p (tree t, bool explain)
4522 /* A structural type is one of the following: */
4524 /* a scalar type, or */
4525 if (SCALAR_TYPE_P (t))
4526 return true;
4527 /* an lvalue reference type, or */
4528 if (TYPE_REF_P (t) && !TYPE_REF_IS_RVALUE (t))
4529 return true;
4530 /* a literal class type with the following properties:
4531 - all base classes and non-static data members are public and non-mutable
4533 - the types of all bases classes and non-static data members are
4534 structural types or (possibly multi-dimensional) array thereof. */
4535 if (!CLASS_TYPE_P (t))
4536 return false;
4537 if (!literal_type_p (t))
4539 if (explain)
4540 explain_non_literal_class (t);
4541 return false;
4543 for (tree m = next_initializable_field (TYPE_FIELDS (t)); m;
4544 m = next_initializable_field (DECL_CHAIN (m)))
4546 if (TREE_PRIVATE (m) || TREE_PROTECTED (m))
4548 if (explain)
4550 if (DECL_FIELD_IS_BASE (m))
4551 inform (location_of (m), "base class %qT is not public",
4552 TREE_TYPE (m));
4553 else
4554 inform (location_of (m), "%qD is not public", m);
4556 return false;
4558 if (DECL_MUTABLE_P (m))
4560 if (explain)
4561 inform (location_of (m), "%qD is mutable", m);
4562 return false;
4564 tree mtype = strip_array_types (TREE_TYPE (m));
4565 if (!structural_type_p (mtype))
4567 if (explain)
4569 inform (location_of (m), "%qD has a non-structural type", m);
4570 structural_type_p (mtype, true);
4572 return false;
4575 return true;
4578 /* Handle the C++17 [[nodiscard]] attribute, which is similar to the GNU
4579 warn_unused_result attribute. */
4581 static tree
4582 handle_nodiscard_attribute (tree *node, tree name, tree args,
4583 int /*flags*/, bool *no_add_attrs)
4585 if (args && TREE_CODE (TREE_VALUE (args)) != STRING_CST)
4587 error ("%qE attribute argument must be a string constant", name);
4588 *no_add_attrs = true;
4590 if (TREE_CODE (*node) == FUNCTION_DECL)
4592 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (*node)))
4593 && !DECL_CONSTRUCTOR_P (*node))
4594 warning_at (DECL_SOURCE_LOCATION (*node),
4595 OPT_Wattributes, "%qE attribute applied to %qD with void "
4596 "return type", name, *node);
4598 else if (OVERLOAD_TYPE_P (*node))
4599 /* OK */;
4600 else
4602 warning (OPT_Wattributes, "%qE attribute can only be applied to "
4603 "functions or to class or enumeration types", name);
4604 *no_add_attrs = true;
4606 return NULL_TREE;
4609 /* Handle a C++20 "no_unique_address" attribute; arguments as in
4610 struct attribute_spec.handler. */
4611 static tree
4612 handle_no_unique_addr_attribute (tree* node,
4613 tree name,
4614 tree /*args*/,
4615 int /*flags*/,
4616 bool* no_add_attrs)
4618 if (TREE_CODE (*node) != FIELD_DECL)
4620 warning (OPT_Wattributes, "%qE attribute can only be applied to "
4621 "non-static data members", name);
4622 *no_add_attrs = true;
4624 else if (DECL_C_BIT_FIELD (*node))
4626 warning (OPT_Wattributes, "%qE attribute cannot be applied to "
4627 "a bit-field", name);
4628 *no_add_attrs = true;
4631 return NULL_TREE;
4634 /* The C++20 [[likely]] and [[unlikely]] attributes on labels map to the GNU
4635 hot/cold attributes. */
4637 static tree
4638 handle_likeliness_attribute (tree *node, tree name, tree args,
4639 int flags, bool *no_add_attrs)
4641 *no_add_attrs = true;
4642 if (TREE_CODE (*node) == LABEL_DECL
4643 || TREE_CODE (*node) == FUNCTION_DECL)
4645 if (args)
4646 warning (OPT_Wattributes, "%qE attribute takes no arguments", name);
4647 tree bname = (is_attribute_p ("likely", name)
4648 ? get_identifier ("hot") : get_identifier ("cold"));
4649 if (TREE_CODE (*node) == FUNCTION_DECL)
4650 warning (OPT_Wattributes, "ISO C++ %qE attribute does not apply to "
4651 "functions; treating as %<[[gnu::%E]]%>", name, bname);
4652 tree battr = build_tree_list (bname, NULL_TREE);
4653 decl_attributes (node, battr, flags);
4654 return NULL_TREE;
4656 else
4657 return error_mark_node;
4660 /* Table of valid C++ attributes. */
4661 const struct attribute_spec cxx_attribute_table[] =
4663 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
4664 affects_type_identity, handler, exclude } */
4665 { "init_priority", 1, 1, true, false, false, false,
4666 handle_init_priority_attribute, NULL },
4667 { "abi_tag", 1, -1, false, false, false, true,
4668 handle_abi_tag_attribute, NULL },
4669 { NULL, 0, 0, false, false, false, false, NULL, NULL }
4672 /* Table of C++ standard attributes. */
4673 const struct attribute_spec std_attribute_table[] =
4675 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
4676 affects_type_identity, handler, exclude } */
4677 { "maybe_unused", 0, 0, false, false, false, false,
4678 handle_unused_attribute, NULL },
4679 { "nodiscard", 0, 1, false, false, false, false,
4680 handle_nodiscard_attribute, NULL },
4681 { "no_unique_address", 0, 0, true, false, false, false,
4682 handle_no_unique_addr_attribute, NULL },
4683 { "likely", 0, 0, false, false, false, false,
4684 handle_likeliness_attribute, attr_cold_hot_exclusions },
4685 { "unlikely", 0, 0, false, false, false, false,
4686 handle_likeliness_attribute, attr_cold_hot_exclusions },
4687 { "noreturn", 0, 0, true, false, false, false,
4688 handle_noreturn_attribute, attr_noreturn_exclusions },
4689 { NULL, 0, 0, false, false, false, false, NULL, NULL }
4692 /* Handle an "init_priority" attribute; arguments as in
4693 struct attribute_spec.handler. */
4694 static tree
4695 handle_init_priority_attribute (tree* node,
4696 tree name,
4697 tree args,
4698 int /*flags*/,
4699 bool* no_add_attrs)
4701 tree initp_expr = TREE_VALUE (args);
4702 tree decl = *node;
4703 tree type = TREE_TYPE (decl);
4704 int pri;
4706 STRIP_NOPS (initp_expr);
4707 initp_expr = default_conversion (initp_expr);
4708 if (initp_expr)
4709 initp_expr = maybe_constant_value (initp_expr);
4711 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
4713 error ("requested %<init_priority%> is not an integer constant");
4714 cxx_constant_value (initp_expr);
4715 *no_add_attrs = true;
4716 return NULL_TREE;
4719 pri = TREE_INT_CST_LOW (initp_expr);
4721 type = strip_array_types (type);
4723 if (decl == NULL_TREE
4724 || !VAR_P (decl)
4725 || !TREE_STATIC (decl)
4726 || DECL_EXTERNAL (decl)
4727 || (TREE_CODE (type) != RECORD_TYPE
4728 && TREE_CODE (type) != UNION_TYPE)
4729 /* Static objects in functions are initialized the
4730 first time control passes through that
4731 function. This is not precise enough to pin down an
4732 init_priority value, so don't allow it. */
4733 || current_function_decl)
4735 error ("can only use %qE attribute on file-scope definitions "
4736 "of objects of class type", name);
4737 *no_add_attrs = true;
4738 return NULL_TREE;
4741 if (pri > MAX_INIT_PRIORITY || pri <= 0)
4743 error ("requested %<init_priority%> %i is out of range [0, %i]",
4744 pri, MAX_INIT_PRIORITY);
4745 *no_add_attrs = true;
4746 return NULL_TREE;
4749 /* Check for init_priorities that are reserved for
4750 language and runtime support implementations.*/
4751 if (pri <= MAX_RESERVED_INIT_PRIORITY)
4753 warning
4754 (0, "requested %<init_priority%> %i is reserved for internal use",
4755 pri);
4758 if (SUPPORTS_INIT_PRIORITY)
4760 SET_DECL_INIT_PRIORITY (decl, pri);
4761 DECL_HAS_INIT_PRIORITY_P (decl) = 1;
4762 return NULL_TREE;
4764 else
4766 error ("%qE attribute is not supported on this platform", name);
4767 *no_add_attrs = true;
4768 return NULL_TREE;
4772 /* DECL is being redeclared; the old declaration had the abi tags in OLD,
4773 and the new one has the tags in NEW_. Give an error if there are tags
4774 in NEW_ that weren't in OLD. */
4776 bool
4777 check_abi_tag_redeclaration (const_tree decl, const_tree old, const_tree new_)
4779 if (old && TREE_CODE (TREE_VALUE (old)) == TREE_LIST)
4780 old = TREE_VALUE (old);
4781 if (new_ && TREE_CODE (TREE_VALUE (new_)) == TREE_LIST)
4782 new_ = TREE_VALUE (new_);
4783 bool err = false;
4784 for (const_tree t = new_; t; t = TREE_CHAIN (t))
4786 tree str = TREE_VALUE (t);
4787 for (const_tree in = old; in; in = TREE_CHAIN (in))
4789 tree ostr = TREE_VALUE (in);
4790 if (cp_tree_equal (str, ostr))
4791 goto found;
4793 error ("redeclaration of %qD adds abi tag %qE", decl, str);
4794 err = true;
4795 found:;
4797 if (err)
4799 inform (DECL_SOURCE_LOCATION (decl), "previous declaration here");
4800 return false;
4802 return true;
4805 /* The abi_tag attribute with the name NAME was given ARGS. If they are
4806 ill-formed, give an error and return false; otherwise, return true. */
4808 bool
4809 check_abi_tag_args (tree args, tree name)
4811 if (!args)
4813 error ("the %qE attribute requires arguments", name);
4814 return false;
4816 for (tree arg = args; arg; arg = TREE_CHAIN (arg))
4818 tree elt = TREE_VALUE (arg);
4819 if (TREE_CODE (elt) != STRING_CST
4820 || (!same_type_ignoring_top_level_qualifiers_p
4821 (strip_array_types (TREE_TYPE (elt)),
4822 char_type_node)))
4824 error ("arguments to the %qE attribute must be narrow string "
4825 "literals", name);
4826 return false;
4828 const char *begin = TREE_STRING_POINTER (elt);
4829 const char *end = begin + TREE_STRING_LENGTH (elt);
4830 for (const char *p = begin; p != end; ++p)
4832 char c = *p;
4833 if (p == begin)
4835 if (!ISALPHA (c) && c != '_')
4837 error ("arguments to the %qE attribute must contain valid "
4838 "identifiers", name);
4839 inform (input_location, "%<%c%> is not a valid first "
4840 "character for an identifier", c);
4841 return false;
4844 else if (p == end - 1)
4845 gcc_assert (c == 0);
4846 else
4848 if (!ISALNUM (c) && c != '_')
4850 error ("arguments to the %qE attribute must contain valid "
4851 "identifiers", name);
4852 inform (input_location, "%<%c%> is not a valid character "
4853 "in an identifier", c);
4854 return false;
4859 return true;
4862 /* Handle an "abi_tag" attribute; arguments as in
4863 struct attribute_spec.handler. */
4865 static tree
4866 handle_abi_tag_attribute (tree* node, tree name, tree args,
4867 int flags, bool* no_add_attrs)
4869 if (!check_abi_tag_args (args, name))
4870 goto fail;
4872 if (TYPE_P (*node))
4874 if (!OVERLOAD_TYPE_P (*node))
4876 error ("%qE attribute applied to non-class, non-enum type %qT",
4877 name, *node);
4878 goto fail;
4880 else if (!(flags & (int)ATTR_FLAG_TYPE_IN_PLACE))
4882 error ("%qE attribute applied to %qT after its definition",
4883 name, *node);
4884 goto fail;
4886 else if (CLASS_TYPE_P (*node)
4887 && CLASSTYPE_TEMPLATE_INSTANTIATION (*node))
4889 warning (OPT_Wattributes, "ignoring %qE attribute applied to "
4890 "template instantiation %qT", name, *node);
4891 goto fail;
4893 else if (CLASS_TYPE_P (*node)
4894 && CLASSTYPE_TEMPLATE_SPECIALIZATION (*node))
4896 warning (OPT_Wattributes, "ignoring %qE attribute applied to "
4897 "template specialization %qT", name, *node);
4898 goto fail;
4901 tree attributes = TYPE_ATTRIBUTES (*node);
4902 tree decl = TYPE_NAME (*node);
4904 /* Make sure all declarations have the same abi tags. */
4905 if (DECL_SOURCE_LOCATION (decl) != input_location)
4907 if (!check_abi_tag_redeclaration (decl,
4908 lookup_attribute ("abi_tag",
4909 attributes),
4910 args))
4911 goto fail;
4914 else
4916 if (!VAR_OR_FUNCTION_DECL_P (*node))
4918 error ("%qE attribute applied to non-function, non-variable %qD",
4919 name, *node);
4920 goto fail;
4922 else if (DECL_LANGUAGE (*node) == lang_c)
4924 error ("%qE attribute applied to extern \"C\" declaration %qD",
4925 name, *node);
4926 goto fail;
4930 return NULL_TREE;
4932 fail:
4933 *no_add_attrs = true;
4934 return NULL_TREE;
4937 /* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
4938 thing pointed to by the constant. */
4940 tree
4941 make_ptrmem_cst (tree type, tree member)
4943 tree ptrmem_cst = make_node (PTRMEM_CST);
4944 TREE_TYPE (ptrmem_cst) = type;
4945 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
4946 return ptrmem_cst;
4949 /* Build a variant of TYPE that has the indicated ATTRIBUTES. May
4950 return an existing type if an appropriate type already exists. */
4952 tree
4953 cp_build_type_attribute_variant (tree type, tree attributes)
4955 tree new_type;
4957 new_type = build_type_attribute_variant (type, attributes);
4958 if (FUNC_OR_METHOD_TYPE_P (new_type))
4959 gcc_checking_assert (cxx_type_hash_eq (type, new_type));
4961 /* Making a new main variant of a class type is broken. */
4962 gcc_assert (!CLASS_TYPE_P (type) || new_type == type);
4964 return new_type;
4967 /* Return TRUE if TYPE1 and TYPE2 are identical for type hashing purposes.
4968 Called only after doing all language independent checks. */
4970 bool
4971 cxx_type_hash_eq (const_tree typea, const_tree typeb)
4973 gcc_assert (FUNC_OR_METHOD_TYPE_P (typea));
4975 if (type_memfn_rqual (typea) != type_memfn_rqual (typeb))
4976 return false;
4977 if (TYPE_HAS_LATE_RETURN_TYPE (typea) != TYPE_HAS_LATE_RETURN_TYPE (typeb))
4978 return false;
4979 return comp_except_specs (TYPE_RAISES_EXCEPTIONS (typea),
4980 TYPE_RAISES_EXCEPTIONS (typeb), ce_exact);
4983 /* Copy the language-specific type variant modifiers from TYPEB to TYPEA. For
4984 C++, these are the exception-specifier and ref-qualifier. */
4986 tree
4987 cxx_copy_lang_qualifiers (const_tree typea, const_tree typeb)
4989 tree type = CONST_CAST_TREE (typea);
4990 if (FUNC_OR_METHOD_TYPE_P (type))
4991 type = build_cp_fntype_variant (type, type_memfn_rqual (typeb),
4992 TYPE_RAISES_EXCEPTIONS (typeb),
4993 TYPE_HAS_LATE_RETURN_TYPE (typeb));
4994 return type;
4997 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
4998 traversal. Called from walk_tree. */
5000 tree
5001 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
5002 void *data, hash_set<tree> *pset)
5004 enum tree_code code = TREE_CODE (*tp);
5005 tree result;
5007 #define WALK_SUBTREE(NODE) \
5008 do \
5010 result = cp_walk_tree (&(NODE), func, data, pset); \
5011 if (result) goto out; \
5013 while (0)
5015 if (TYPE_P (*tp))
5017 /* Walk into template args without looking through typedefs. */
5018 if (tree ti = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (*tp))
5019 WALK_SUBTREE (TI_ARGS (ti));
5020 /* Don't look through typedefs; walk_tree_fns that want to look through
5021 typedefs (like min_vis_r) need to do that themselves. */
5022 if (typedef_variant_p (*tp))
5024 *walk_subtrees_p = 0;
5025 return NULL_TREE;
5029 /* Not one of the easy cases. We must explicitly go through the
5030 children. */
5031 result = NULL_TREE;
5032 switch (code)
5034 case DEFERRED_PARSE:
5035 case TEMPLATE_TEMPLATE_PARM:
5036 case BOUND_TEMPLATE_TEMPLATE_PARM:
5037 case UNBOUND_CLASS_TEMPLATE:
5038 case TEMPLATE_PARM_INDEX:
5039 case TEMPLATE_TYPE_PARM:
5040 case TYPEOF_TYPE:
5041 case UNDERLYING_TYPE:
5042 /* None of these have subtrees other than those already walked
5043 above. */
5044 *walk_subtrees_p = 0;
5045 break;
5047 case TYPENAME_TYPE:
5048 WALK_SUBTREE (TYPE_CONTEXT (*tp));
5049 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (*tp));
5050 *walk_subtrees_p = 0;
5051 break;
5053 case BASELINK:
5054 if (BASELINK_QUALIFIED_P (*tp))
5055 WALK_SUBTREE (BINFO_TYPE (BASELINK_ACCESS_BINFO (*tp)));
5056 WALK_SUBTREE (BASELINK_FUNCTIONS (*tp));
5057 *walk_subtrees_p = 0;
5058 break;
5060 case PTRMEM_CST:
5061 WALK_SUBTREE (TREE_TYPE (*tp));
5062 *walk_subtrees_p = 0;
5063 break;
5065 case TREE_LIST:
5066 WALK_SUBTREE (TREE_PURPOSE (*tp));
5067 break;
5069 case OVERLOAD:
5070 WALK_SUBTREE (OVL_FUNCTION (*tp));
5071 WALK_SUBTREE (OVL_CHAIN (*tp));
5072 *walk_subtrees_p = 0;
5073 break;
5075 case USING_DECL:
5076 WALK_SUBTREE (DECL_NAME (*tp));
5077 WALK_SUBTREE (USING_DECL_SCOPE (*tp));
5078 WALK_SUBTREE (USING_DECL_DECLS (*tp));
5079 *walk_subtrees_p = 0;
5080 break;
5082 case RECORD_TYPE:
5083 if (TYPE_PTRMEMFUNC_P (*tp))
5084 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE_RAW (*tp));
5085 break;
5087 case TYPE_ARGUMENT_PACK:
5088 case NONTYPE_ARGUMENT_PACK:
5090 tree args = ARGUMENT_PACK_ARGS (*tp);
5091 int i, len = TREE_VEC_LENGTH (args);
5092 for (i = 0; i < len; i++)
5093 WALK_SUBTREE (TREE_VEC_ELT (args, i));
5095 break;
5097 case TYPE_PACK_EXPANSION:
5098 WALK_SUBTREE (TREE_TYPE (*tp));
5099 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
5100 *walk_subtrees_p = 0;
5101 break;
5103 case EXPR_PACK_EXPANSION:
5104 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
5105 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
5106 *walk_subtrees_p = 0;
5107 break;
5109 case CAST_EXPR:
5110 case REINTERPRET_CAST_EXPR:
5111 case STATIC_CAST_EXPR:
5112 case CONST_CAST_EXPR:
5113 case DYNAMIC_CAST_EXPR:
5114 case IMPLICIT_CONV_EXPR:
5115 if (TREE_TYPE (*tp))
5116 WALK_SUBTREE (TREE_TYPE (*tp));
5119 int i;
5120 for (i = 0; i < TREE_CODE_LENGTH (TREE_CODE (*tp)); ++i)
5121 WALK_SUBTREE (TREE_OPERAND (*tp, i));
5123 *walk_subtrees_p = 0;
5124 break;
5126 case CONSTRUCTOR:
5127 if (COMPOUND_LITERAL_P (*tp))
5128 WALK_SUBTREE (TREE_TYPE (*tp));
5129 break;
5131 case TRAIT_EXPR:
5132 WALK_SUBTREE (TRAIT_EXPR_TYPE1 (*tp));
5133 WALK_SUBTREE (TRAIT_EXPR_TYPE2 (*tp));
5134 *walk_subtrees_p = 0;
5135 break;
5137 case DECLTYPE_TYPE:
5138 ++cp_unevaluated_operand;
5139 /* We can't use WALK_SUBTREE here because of the goto. */
5140 result = cp_walk_tree (&DECLTYPE_TYPE_EXPR (*tp), func, data, pset);
5141 --cp_unevaluated_operand;
5142 *walk_subtrees_p = 0;
5143 break;
5145 case ALIGNOF_EXPR:
5146 case SIZEOF_EXPR:
5147 case NOEXCEPT_EXPR:
5148 ++cp_unevaluated_operand;
5149 result = cp_walk_tree (&TREE_OPERAND (*tp, 0), func, data, pset);
5150 --cp_unevaluated_operand;
5151 *walk_subtrees_p = 0;
5152 break;
5154 case REQUIRES_EXPR:
5155 // Only recurse through the nested expression. Do not
5156 // walk the parameter list. Doing so causes false
5157 // positives in the pack expansion checker since the
5158 // requires parameters are introduced as pack expansions.
5159 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5160 *walk_subtrees_p = 0;
5161 break;
5163 case DECL_EXPR:
5164 /* User variables should be mentioned in BIND_EXPR_VARS
5165 and their initializers and sizes walked when walking
5166 the containing BIND_EXPR. Compiler temporaries are
5167 handled here. And also normal variables in templates,
5168 since do_poplevel doesn't build a BIND_EXPR then. */
5169 if (VAR_P (TREE_OPERAND (*tp, 0))
5170 && (processing_template_decl
5171 || (DECL_ARTIFICIAL (TREE_OPERAND (*tp, 0))
5172 && !TREE_STATIC (TREE_OPERAND (*tp, 0)))))
5174 tree decl = TREE_OPERAND (*tp, 0);
5175 WALK_SUBTREE (DECL_INITIAL (decl));
5176 WALK_SUBTREE (DECL_SIZE (decl));
5177 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
5179 break;
5181 case LAMBDA_EXPR:
5182 /* Don't walk into the body of the lambda, but the capture initializers
5183 are part of the enclosing context. */
5184 for (tree cap = LAMBDA_EXPR_CAPTURE_LIST (*tp); cap;
5185 cap = TREE_CHAIN (cap))
5186 WALK_SUBTREE (TREE_VALUE (cap));
5187 break;
5189 case CO_YIELD_EXPR:
5190 if (TREE_OPERAND (*tp, 1))
5191 /* Operand 1 is the tree for the relevant co_await which has any
5192 interesting sub-trees. */
5193 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5194 break;
5196 case CO_AWAIT_EXPR:
5197 if (TREE_OPERAND (*tp, 1))
5198 /* Operand 1 is frame variable. */
5199 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5200 if (TREE_OPERAND (*tp, 2))
5201 /* Operand 2 has the initialiser, and we need to walk any subtrees
5202 there. */
5203 WALK_SUBTREE (TREE_OPERAND (*tp, 2));
5204 break;
5206 case CO_RETURN_EXPR:
5207 if (TREE_OPERAND (*tp, 0))
5209 if (VOID_TYPE_P (TREE_OPERAND (*tp, 0)))
5210 /* For void expressions, operand 1 is a trivial call, and any
5211 interesting subtrees will be part of operand 0. */
5212 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
5213 else if (TREE_OPERAND (*tp, 1))
5214 /* Interesting sub-trees will be in the return_value () call
5215 arguments. */
5216 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5218 break;
5220 default:
5221 return NULL_TREE;
5224 /* We didn't find what we were looking for. */
5225 out:
5226 return result;
5228 #undef WALK_SUBTREE
5231 /* Like save_expr, but for C++. */
5233 tree
5234 cp_save_expr (tree expr)
5236 /* There is no reason to create a SAVE_EXPR within a template; if
5237 needed, we can create the SAVE_EXPR when instantiating the
5238 template. Furthermore, the middle-end cannot handle C++-specific
5239 tree codes. */
5240 if (processing_template_decl)
5241 return expr;
5243 /* TARGET_EXPRs are only expanded once. */
5244 if (TREE_CODE (expr) == TARGET_EXPR)
5245 return expr;
5247 return save_expr (expr);
5250 /* Initialize tree.c. */
5252 void
5253 init_tree (void)
5255 list_hash_table = hash_table<list_hasher>::create_ggc (61);
5256 register_scoped_attributes (std_attribute_table, NULL);
5259 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
5260 is. Note that sfk_none is zero, so this function can be used as a
5261 predicate to test whether or not DECL is a special function. */
5263 special_function_kind
5264 special_function_p (const_tree decl)
5266 /* Rather than doing all this stuff with magic names, we should
5267 probably have a field of type `special_function_kind' in
5268 DECL_LANG_SPECIFIC. */
5269 if (DECL_INHERITED_CTOR (decl))
5270 return sfk_inheriting_constructor;
5271 if (DECL_COPY_CONSTRUCTOR_P (decl))
5272 return sfk_copy_constructor;
5273 if (DECL_MOVE_CONSTRUCTOR_P (decl))
5274 return sfk_move_constructor;
5275 if (DECL_CONSTRUCTOR_P (decl))
5276 return sfk_constructor;
5277 if (DECL_ASSIGNMENT_OPERATOR_P (decl)
5278 && DECL_OVERLOADED_OPERATOR_IS (decl, NOP_EXPR))
5280 if (copy_fn_p (decl))
5281 return sfk_copy_assignment;
5282 if (move_fn_p (decl))
5283 return sfk_move_assignment;
5285 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
5286 return sfk_destructor;
5287 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
5288 return sfk_complete_destructor;
5289 if (DECL_BASE_DESTRUCTOR_P (decl))
5290 return sfk_base_destructor;
5291 if (DECL_DELETING_DESTRUCTOR_P (decl))
5292 return sfk_deleting_destructor;
5293 if (DECL_CONV_FN_P (decl))
5294 return sfk_conversion;
5295 if (deduction_guide_p (decl))
5296 return sfk_deduction_guide;
5297 if (DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) >= OVL_OP_EQ_EXPR
5298 && DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) <= OVL_OP_SPACESHIP_EXPR)
5299 return sfk_comparison;
5301 return sfk_none;
5304 /* As above, but only if DECL is a special member function as per 11.3.3
5305 [special]: default/copy/move ctor, copy/move assignment, or destructor. */
5307 special_function_kind
5308 special_memfn_p (const_tree decl)
5310 switch (special_function_kind sfk = special_function_p (decl))
5312 case sfk_constructor:
5313 if (!default_ctor_p (decl))
5314 break;
5315 gcc_fallthrough();
5316 case sfk_copy_constructor:
5317 case sfk_copy_assignment:
5318 case sfk_move_assignment:
5319 case sfk_move_constructor:
5320 case sfk_destructor:
5321 return sfk;
5323 default:
5324 break;
5326 return sfk_none;
5329 /* Returns nonzero if TYPE is a character type, including wchar_t. */
5332 char_type_p (tree type)
5334 return (same_type_p (type, char_type_node)
5335 || same_type_p (type, unsigned_char_type_node)
5336 || same_type_p (type, signed_char_type_node)
5337 || same_type_p (type, char8_type_node)
5338 || same_type_p (type, char16_type_node)
5339 || same_type_p (type, char32_type_node)
5340 || same_type_p (type, wchar_type_node));
5343 /* Returns the kind of linkage associated with the indicated DECL. Th
5344 value returned is as specified by the language standard; it is
5345 independent of implementation details regarding template
5346 instantiation, etc. For example, it is possible that a declaration
5347 to which this function assigns external linkage would not show up
5348 as a global symbol when you run `nm' on the resulting object file. */
5350 linkage_kind
5351 decl_linkage (tree decl)
5353 /* This function doesn't attempt to calculate the linkage from first
5354 principles as given in [basic.link]. Instead, it makes use of
5355 the fact that we have already set TREE_PUBLIC appropriately, and
5356 then handles a few special cases. Ideally, we would calculate
5357 linkage first, and then transform that into a concrete
5358 implementation. */
5360 /* Things that don't have names have no linkage. */
5361 if (!DECL_NAME (decl))
5362 return lk_none;
5364 /* Fields have no linkage. */
5365 if (TREE_CODE (decl) == FIELD_DECL)
5366 return lk_none;
5368 /* Things in local scope do not have linkage. */
5369 if (decl_function_context (decl))
5370 return lk_none;
5372 /* Things that are TREE_PUBLIC have external linkage. */
5373 if (TREE_PUBLIC (decl))
5374 return lk_external;
5376 /* maybe_thunk_body clears TREE_PUBLIC on the maybe-in-charge 'tor variants,
5377 check one of the "clones" for the real linkage. */
5378 if (DECL_MAYBE_IN_CHARGE_CDTOR_P (decl)
5379 && DECL_CHAIN (decl)
5380 && DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)))
5381 return decl_linkage (DECL_CHAIN (decl));
5383 if (TREE_CODE (decl) == NAMESPACE_DECL)
5384 return lk_external;
5386 /* Linkage of a CONST_DECL depends on the linkage of the enumeration
5387 type. */
5388 if (TREE_CODE (decl) == CONST_DECL)
5389 return decl_linkage (TYPE_NAME (DECL_CONTEXT (decl)));
5391 /* Members of the anonymous namespace also have TREE_PUBLIC unset, but
5392 are considered to have external linkage for language purposes, as do
5393 template instantiations on targets without weak symbols. DECLs really
5394 meant to have internal linkage have DECL_THIS_STATIC set. */
5395 if (TREE_CODE (decl) == TYPE_DECL)
5396 return lk_external;
5397 if (VAR_OR_FUNCTION_DECL_P (decl))
5399 if (!DECL_THIS_STATIC (decl))
5400 return lk_external;
5402 /* Static data members and static member functions from classes
5403 in anonymous namespace also don't have TREE_PUBLIC set. */
5404 if (DECL_CLASS_CONTEXT (decl))
5405 return lk_external;
5408 /* Everything else has internal linkage. */
5409 return lk_internal;
5412 /* Returns the storage duration of the object or reference associated with
5413 the indicated DECL, which should be a VAR_DECL or PARM_DECL. */
5415 duration_kind
5416 decl_storage_duration (tree decl)
5418 if (TREE_CODE (decl) == PARM_DECL)
5419 return dk_auto;
5420 if (TREE_CODE (decl) == FUNCTION_DECL)
5421 return dk_static;
5422 gcc_assert (VAR_P (decl));
5423 if (!TREE_STATIC (decl)
5424 && !DECL_EXTERNAL (decl))
5425 return dk_auto;
5426 if (CP_DECL_THREAD_LOCAL_P (decl))
5427 return dk_thread;
5428 return dk_static;
5431 /* EXP is an expression that we want to pre-evaluate. Returns (in
5432 *INITP) an expression that will perform the pre-evaluation. The
5433 value returned by this function is a side-effect free expression
5434 equivalent to the pre-evaluated expression. Callers must ensure
5435 that *INITP is evaluated before EXP. */
5437 tree
5438 stabilize_expr (tree exp, tree* initp)
5440 tree init_expr;
5442 if (!TREE_SIDE_EFFECTS (exp))
5443 init_expr = NULL_TREE;
5444 else if (VOID_TYPE_P (TREE_TYPE (exp)))
5446 init_expr = exp;
5447 exp = void_node;
5449 /* There are no expressions with REFERENCE_TYPE, but there can be call
5450 arguments with such a type; just treat it as a pointer. */
5451 else if (TYPE_REF_P (TREE_TYPE (exp))
5452 || SCALAR_TYPE_P (TREE_TYPE (exp))
5453 || !glvalue_p (exp))
5455 init_expr = get_target_expr (exp);
5456 exp = TARGET_EXPR_SLOT (init_expr);
5457 if (CLASS_TYPE_P (TREE_TYPE (exp)))
5458 exp = move (exp);
5459 else
5460 exp = rvalue (exp);
5462 else
5464 bool xval = !lvalue_p (exp);
5465 exp = cp_build_addr_expr (exp, tf_warning_or_error);
5466 init_expr = get_target_expr (exp);
5467 exp = TARGET_EXPR_SLOT (init_expr);
5468 exp = cp_build_fold_indirect_ref (exp);
5469 if (xval)
5470 exp = move (exp);
5472 *initp = init_expr;
5474 gcc_assert (!TREE_SIDE_EFFECTS (exp));
5475 return exp;
5478 /* Add NEW_EXPR, an expression whose value we don't care about, after the
5479 similar expression ORIG. */
5481 tree
5482 add_stmt_to_compound (tree orig, tree new_expr)
5484 if (!new_expr || !TREE_SIDE_EFFECTS (new_expr))
5485 return orig;
5486 if (!orig || !TREE_SIDE_EFFECTS (orig))
5487 return new_expr;
5488 return build2 (COMPOUND_EXPR, void_type_node, orig, new_expr);
5491 /* Like stabilize_expr, but for a call whose arguments we want to
5492 pre-evaluate. CALL is modified in place to use the pre-evaluated
5493 arguments, while, upon return, *INITP contains an expression to
5494 compute the arguments. */
5496 void
5497 stabilize_call (tree call, tree *initp)
5499 tree inits = NULL_TREE;
5500 int i;
5501 int nargs = call_expr_nargs (call);
5503 if (call == error_mark_node || processing_template_decl)
5505 *initp = NULL_TREE;
5506 return;
5509 gcc_assert (TREE_CODE (call) == CALL_EXPR);
5511 for (i = 0; i < nargs; i++)
5513 tree init;
5514 CALL_EXPR_ARG (call, i) =
5515 stabilize_expr (CALL_EXPR_ARG (call, i), &init);
5516 inits = add_stmt_to_compound (inits, init);
5519 *initp = inits;
5522 /* Like stabilize_expr, but for an AGGR_INIT_EXPR whose arguments we want
5523 to pre-evaluate. CALL is modified in place to use the pre-evaluated
5524 arguments, while, upon return, *INITP contains an expression to
5525 compute the arguments. */
5527 static void
5528 stabilize_aggr_init (tree call, tree *initp)
5530 tree inits = NULL_TREE;
5531 int i;
5532 int nargs = aggr_init_expr_nargs (call);
5534 if (call == error_mark_node)
5535 return;
5537 gcc_assert (TREE_CODE (call) == AGGR_INIT_EXPR);
5539 for (i = 0; i < nargs; i++)
5541 tree init;
5542 AGGR_INIT_EXPR_ARG (call, i) =
5543 stabilize_expr (AGGR_INIT_EXPR_ARG (call, i), &init);
5544 inits = add_stmt_to_compound (inits, init);
5547 *initp = inits;
5550 /* Like stabilize_expr, but for an initialization.
5552 If the initialization is for an object of class type, this function
5553 takes care not to introduce additional temporaries.
5555 Returns TRUE iff the expression was successfully pre-evaluated,
5556 i.e., if INIT is now side-effect free, except for, possibly, a
5557 single call to a constructor. */
5559 bool
5560 stabilize_init (tree init, tree *initp)
5562 tree t = init;
5564 *initp = NULL_TREE;
5566 if (t == error_mark_node || processing_template_decl)
5567 return true;
5569 if (TREE_CODE (t) == INIT_EXPR)
5570 t = TREE_OPERAND (t, 1);
5571 if (TREE_CODE (t) == TARGET_EXPR)
5572 t = TARGET_EXPR_INITIAL (t);
5574 /* If the RHS can be stabilized without breaking copy elision, stabilize
5575 it. We specifically don't stabilize class prvalues here because that
5576 would mean an extra copy, but they might be stabilized below. */
5577 if (TREE_CODE (init) == INIT_EXPR
5578 && TREE_CODE (t) != CONSTRUCTOR
5579 && TREE_CODE (t) != AGGR_INIT_EXPR
5580 && (SCALAR_TYPE_P (TREE_TYPE (t))
5581 || glvalue_p (t)))
5583 TREE_OPERAND (init, 1) = stabilize_expr (t, initp);
5584 return true;
5587 if (TREE_CODE (t) == COMPOUND_EXPR
5588 && TREE_CODE (init) == INIT_EXPR)
5590 tree last = expr_last (t);
5591 /* Handle stabilizing the EMPTY_CLASS_EXPR pattern. */
5592 if (!TREE_SIDE_EFFECTS (last))
5594 *initp = t;
5595 TREE_OPERAND (init, 1) = last;
5596 return true;
5600 if (TREE_CODE (t) == CONSTRUCTOR)
5602 /* Aggregate initialization: stabilize each of the field
5603 initializers. */
5604 unsigned i;
5605 constructor_elt *ce;
5606 bool good = true;
5607 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
5608 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
5610 tree type = TREE_TYPE (ce->value);
5611 tree subinit;
5612 if (TYPE_REF_P (type)
5613 || SCALAR_TYPE_P (type))
5614 ce->value = stabilize_expr (ce->value, &subinit);
5615 else if (!stabilize_init (ce->value, &subinit))
5616 good = false;
5617 *initp = add_stmt_to_compound (*initp, subinit);
5619 return good;
5622 if (TREE_CODE (t) == CALL_EXPR)
5624 stabilize_call (t, initp);
5625 return true;
5628 if (TREE_CODE (t) == AGGR_INIT_EXPR)
5630 stabilize_aggr_init (t, initp);
5631 return true;
5634 /* The initialization is being performed via a bitwise copy -- and
5635 the item copied may have side effects. */
5636 return !TREE_SIDE_EFFECTS (init);
5639 /* Returns true if a cast to TYPE may appear in an integral constant
5640 expression. */
5642 bool
5643 cast_valid_in_integral_constant_expression_p (tree type)
5645 return (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
5646 || cxx_dialect >= cxx11
5647 || dependent_type_p (type)
5648 || type == error_mark_node);
5651 /* Return true if we need to fix linkage information of DECL. */
5653 static bool
5654 cp_fix_function_decl_p (tree decl)
5656 /* Skip if DECL is not externally visible. */
5657 if (!TREE_PUBLIC (decl))
5658 return false;
5660 /* We need to fix DECL if it a appears to be exported but with no
5661 function body. Thunks do not have CFGs and we may need to
5662 handle them specially later. */
5663 if (!gimple_has_body_p (decl)
5664 && !DECL_THUNK_P (decl)
5665 && !DECL_EXTERNAL (decl))
5667 struct cgraph_node *node = cgraph_node::get (decl);
5669 /* Don't fix same_body aliases. Although they don't have their own
5670 CFG, they share it with what they alias to. */
5671 if (!node || !node->alias
5672 || !vec_safe_length (node->ref_list.references))
5673 return true;
5676 return false;
5679 /* Clean the C++ specific parts of the tree T. */
5681 void
5682 cp_free_lang_data (tree t)
5684 if (FUNC_OR_METHOD_TYPE_P (t))
5686 /* Default args are not interesting anymore. */
5687 tree argtypes = TYPE_ARG_TYPES (t);
5688 while (argtypes)
5690 TREE_PURPOSE (argtypes) = 0;
5691 argtypes = TREE_CHAIN (argtypes);
5694 else if (TREE_CODE (t) == FUNCTION_DECL
5695 && cp_fix_function_decl_p (t))
5697 /* If T is used in this translation unit at all, the definition
5698 must exist somewhere else since we have decided to not emit it
5699 in this TU. So make it an external reference. */
5700 DECL_EXTERNAL (t) = 1;
5701 TREE_STATIC (t) = 0;
5703 if (TREE_CODE (t) == FUNCTION_DECL)
5704 discard_operator_bindings (t);
5705 if (TREE_CODE (t) == NAMESPACE_DECL)
5706 /* We do not need the leftover chaining of namespaces from the
5707 binding level. */
5708 DECL_CHAIN (t) = NULL_TREE;
5711 /* Stub for c-common. Please keep in sync with c-decl.c.
5712 FIXME: If address space support is target specific, then this
5713 should be a C target hook. But currently this is not possible,
5714 because this function is called via REGISTER_TARGET_PRAGMAS. */
5715 void
5716 c_register_addr_space (const char * /*word*/, addr_space_t /*as*/)
5720 /* Return the number of operands in T that we care about for things like
5721 mangling. */
5724 cp_tree_operand_length (const_tree t)
5726 enum tree_code code = TREE_CODE (t);
5728 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
5729 return VL_EXP_OPERAND_LENGTH (t);
5731 return cp_tree_code_length (code);
5734 /* Like cp_tree_operand_length, but takes a tree_code CODE. */
5737 cp_tree_code_length (enum tree_code code)
5739 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
5741 switch (code)
5743 case PREINCREMENT_EXPR:
5744 case PREDECREMENT_EXPR:
5745 case POSTINCREMENT_EXPR:
5746 case POSTDECREMENT_EXPR:
5747 return 1;
5749 case ARRAY_REF:
5750 return 2;
5752 case EXPR_PACK_EXPANSION:
5753 return 1;
5755 default:
5756 return TREE_CODE_LENGTH (code);
5760 /* Like EXPR_LOCATION, but also handle some tcc_exceptional that have
5761 locations. */
5763 location_t
5764 cp_expr_location (const_tree t_)
5766 tree t = CONST_CAST_TREE (t_);
5767 if (t == NULL_TREE)
5768 return UNKNOWN_LOCATION;
5769 switch (TREE_CODE (t))
5771 case LAMBDA_EXPR:
5772 return LAMBDA_EXPR_LOCATION (t);
5773 case STATIC_ASSERT:
5774 return STATIC_ASSERT_SOURCE_LOCATION (t);
5775 case TRAIT_EXPR:
5776 return TRAIT_EXPR_LOCATION (t);
5777 default:
5778 return EXPR_LOCATION (t);
5782 /* Implement -Wzero_as_null_pointer_constant. Return true if the
5783 conditions for the warning hold, false otherwise. */
5784 bool
5785 maybe_warn_zero_as_null_pointer_constant (tree expr, location_t loc)
5787 if (c_inhibit_evaluation_warnings == 0
5788 && !null_node_p (expr) && !NULLPTR_TYPE_P (TREE_TYPE (expr)))
5790 warning_at (loc, OPT_Wzero_as_null_pointer_constant,
5791 "zero as null pointer constant");
5792 return true;
5794 return false;
5797 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
5798 /* Complain that some language-specific thing hanging off a tree
5799 node has been accessed improperly. */
5801 void
5802 lang_check_failed (const char* file, int line, const char* function)
5804 internal_error ("%<lang_*%> check: failed in %s, at %s:%d",
5805 function, trim_filename (file), line);
5807 #endif /* ENABLE_TREE_CHECKING */
5809 #if CHECKING_P
5811 namespace selftest {
5813 /* Verify that lvalue_kind () works, for various expressions,
5814 and that location wrappers don't affect the results. */
5816 static void
5817 test_lvalue_kind ()
5819 location_t loc = BUILTINS_LOCATION;
5821 /* Verify constants and parameters, without and with
5822 location wrappers. */
5823 tree int_cst = build_int_cst (integer_type_node, 42);
5824 ASSERT_EQ (clk_none, lvalue_kind (int_cst));
5826 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
5827 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
5828 ASSERT_EQ (clk_none, lvalue_kind (wrapped_int_cst));
5830 tree string_lit = build_string (4, "foo");
5831 TREE_TYPE (string_lit) = char_array_type_node;
5832 string_lit = fix_string_type (string_lit);
5833 ASSERT_EQ (clk_ordinary, lvalue_kind (string_lit));
5835 tree wrapped_string_lit = maybe_wrap_with_location (string_lit, loc);
5836 ASSERT_TRUE (location_wrapper_p (wrapped_string_lit));
5837 ASSERT_EQ (clk_ordinary, lvalue_kind (wrapped_string_lit));
5839 tree parm = build_decl (UNKNOWN_LOCATION, PARM_DECL,
5840 get_identifier ("some_parm"),
5841 integer_type_node);
5842 ASSERT_EQ (clk_ordinary, lvalue_kind (parm));
5844 tree wrapped_parm = maybe_wrap_with_location (parm, loc);
5845 ASSERT_TRUE (location_wrapper_p (wrapped_parm));
5846 ASSERT_EQ (clk_ordinary, lvalue_kind (wrapped_parm));
5848 /* Verify that lvalue_kind of std::move on a parm isn't
5849 affected by location wrappers. */
5850 tree rvalue_ref_of_parm = move (parm);
5851 ASSERT_EQ (clk_rvalueref, lvalue_kind (rvalue_ref_of_parm));
5852 tree rvalue_ref_of_wrapped_parm = move (wrapped_parm);
5853 ASSERT_EQ (clk_rvalueref, lvalue_kind (rvalue_ref_of_wrapped_parm));
5855 /* Verify lvalue_p. */
5856 ASSERT_FALSE (lvalue_p (int_cst));
5857 ASSERT_FALSE (lvalue_p (wrapped_int_cst));
5858 ASSERT_TRUE (lvalue_p (parm));
5859 ASSERT_TRUE (lvalue_p (wrapped_parm));
5860 ASSERT_FALSE (lvalue_p (rvalue_ref_of_parm));
5861 ASSERT_FALSE (lvalue_p (rvalue_ref_of_wrapped_parm));
5864 /* Run all of the selftests within this file. */
5866 void
5867 cp_tree_c_tests ()
5869 test_lvalue_kind ();
5872 } // namespace selftest
5874 #endif /* #if CHECKING_P */
5877 #include "gt-cp-tree.h"