c++: P0847R7 (deducing this) - xobj lambdas. [PR102609]
[official-gcc.git] / gcc / cp / tree.cc
blob77f57e0f9ac6f4c2244b2f2eb3e0d937e66eac75
1 /* Language-dependent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2024 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 *);
49 static tree handle_contract_attribute (tree *, tree, tree, int, bool *);
51 /* If REF is an lvalue, returns the kind of lvalue that REF is.
52 Otherwise, returns clk_none. */
54 cp_lvalue_kind
55 lvalue_kind (const_tree ref)
57 cp_lvalue_kind op1_lvalue_kind = clk_none;
58 cp_lvalue_kind op2_lvalue_kind = clk_none;
60 /* Expressions of reference type are sometimes wrapped in
61 INDIRECT_REFs. INDIRECT_REFs are just internal compiler
62 representation, not part of the language, so we have to look
63 through them. */
64 if (REFERENCE_REF_P (ref))
65 return lvalue_kind (TREE_OPERAND (ref, 0));
67 if (TREE_TYPE (ref)
68 && TYPE_REF_P (TREE_TYPE (ref)))
70 /* unnamed rvalue references are rvalues */
71 if (TYPE_REF_IS_RVALUE (TREE_TYPE (ref))
72 && TREE_CODE (ref) != PARM_DECL
73 && !VAR_P (ref)
74 && TREE_CODE (ref) != COMPONENT_REF
75 /* Functions are always lvalues. */
76 && TREE_CODE (TREE_TYPE (TREE_TYPE (ref))) != FUNCTION_TYPE)
78 op1_lvalue_kind = clk_rvalueref;
79 if (implicit_rvalue_p (ref))
80 op1_lvalue_kind |= clk_implicit_rval;
81 return op1_lvalue_kind;
84 /* lvalue references and named rvalue references are lvalues. */
85 return clk_ordinary;
88 if (ref == current_class_ptr)
89 return clk_none;
91 /* Expressions with cv void type are prvalues. */
92 if (TREE_TYPE (ref) && VOID_TYPE_P (TREE_TYPE (ref)))
93 return clk_none;
95 switch (TREE_CODE (ref))
97 case SAVE_EXPR:
98 return clk_none;
100 /* preincrements and predecrements are valid lvals, provided
101 what they refer to are valid lvals. */
102 case PREINCREMENT_EXPR:
103 case PREDECREMENT_EXPR:
104 case TRY_CATCH_EXPR:
105 case REALPART_EXPR:
106 case IMAGPART_EXPR:
107 case VIEW_CONVERT_EXPR:
108 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
109 /* As for ARRAY_REF and COMPONENT_REF, these codes turn a class prvalue
110 into an xvalue: we need to materialize the temporary before we mess
111 with it. Except VIEW_CONVERT_EXPR that doesn't actually change the
112 type, as in location wrapper and REF_PARENTHESIZED_P. */
113 if (op1_lvalue_kind == clk_class
114 && !(TREE_CODE (ref) == VIEW_CONVERT_EXPR
115 && (same_type_ignoring_top_level_qualifiers_p
116 (TREE_TYPE (ref), TREE_TYPE (TREE_OPERAND (ref, 0))))))
117 return clk_rvalueref;
118 return op1_lvalue_kind;
120 case ARRAY_REF:
122 tree op1 = TREE_OPERAND (ref, 0);
123 if (TREE_CODE (TREE_TYPE (op1)) == ARRAY_TYPE)
125 op1_lvalue_kind = lvalue_kind (op1);
126 if (op1_lvalue_kind == clk_class)
127 /* in the case of an array operand, the result is an lvalue if
128 that operand is an lvalue and an xvalue otherwise */
129 op1_lvalue_kind = clk_rvalueref;
130 return op1_lvalue_kind;
132 else
133 return clk_ordinary;
136 case MEMBER_REF:
137 case DOTSTAR_EXPR:
138 if (TREE_CODE (ref) == MEMBER_REF)
139 op1_lvalue_kind = clk_ordinary;
140 else
141 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
142 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (ref, 1))))
143 op1_lvalue_kind = clk_none;
144 else if (op1_lvalue_kind == clk_class)
145 /* The result of a .* expression whose second operand is a pointer to a
146 data member is an lvalue if the first operand is an lvalue and an
147 xvalue otherwise. */
148 op1_lvalue_kind = clk_rvalueref;
149 return op1_lvalue_kind;
151 case COMPONENT_REF:
152 if (BASELINK_P (TREE_OPERAND (ref, 1)))
154 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (ref, 1));
156 /* For static member function recurse on the BASELINK, we can get
157 here e.g. from reference_binding. If BASELINK_FUNCTIONS is
158 OVERLOAD, the overload is resolved first if possible through
159 resolve_address_of_overloaded_function. */
160 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_STATIC_FUNCTION_P (fn))
161 return lvalue_kind (TREE_OPERAND (ref, 1));
163 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
164 if (op1_lvalue_kind == clk_class)
165 /* If E1 is an lvalue, then E1.E2 is an lvalue;
166 otherwise E1.E2 is an xvalue. */
167 op1_lvalue_kind = clk_rvalueref;
169 /* Look at the member designator. */
170 if (!op1_lvalue_kind)
172 else if (is_overloaded_fn (TREE_OPERAND (ref, 1)))
173 /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
174 situations. If we're seeing a COMPONENT_REF, it's a non-static
175 member, so it isn't an lvalue. */
176 op1_lvalue_kind = clk_none;
177 else if (TREE_CODE (TREE_OPERAND (ref, 1)) != FIELD_DECL)
178 /* This can be IDENTIFIER_NODE in a template. */;
179 else if (DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
181 /* Clear the ordinary bit. If this object was a class
182 rvalue we want to preserve that information. */
183 op1_lvalue_kind &= ~clk_ordinary;
184 /* The lvalue is for a bitfield. */
185 op1_lvalue_kind |= clk_bitfield;
187 else if (DECL_PACKED (TREE_OPERAND (ref, 1)))
188 op1_lvalue_kind |= clk_packed;
190 return op1_lvalue_kind;
192 case STRING_CST:
193 case COMPOUND_LITERAL_EXPR:
194 return clk_ordinary;
196 case CONST_DECL:
197 /* CONST_DECL without TREE_STATIC are enumeration values and
198 thus not lvalues. With TREE_STATIC they are used by ObjC++
199 in objc_build_string_object and need to be considered as
200 lvalues. */
201 if (! TREE_STATIC (ref))
202 return clk_none;
203 /* FALLTHRU */
204 case VAR_DECL:
205 if (VAR_P (ref) && DECL_HAS_VALUE_EXPR_P (ref))
206 return lvalue_kind (DECL_VALUE_EXPR (CONST_CAST_TREE (ref)));
208 if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
209 && DECL_LANG_SPECIFIC (ref)
210 && DECL_IN_AGGR_P (ref))
211 return clk_none;
212 /* FALLTHRU */
213 case INDIRECT_REF:
214 case ARROW_EXPR:
215 case PARM_DECL:
216 case RESULT_DECL:
217 case PLACEHOLDER_EXPR:
218 return clk_ordinary;
220 /* A scope ref in a template, left as SCOPE_REF to support later
221 access checking. */
222 case SCOPE_REF:
223 gcc_assert (!type_dependent_expression_p (CONST_CAST_TREE (ref)));
225 tree op = TREE_OPERAND (ref, 1);
226 if (TREE_CODE (op) == FIELD_DECL)
227 return (DECL_C_BIT_FIELD (op) ? clk_bitfield : clk_ordinary);
228 else
229 return lvalue_kind (op);
232 case MAX_EXPR:
233 case MIN_EXPR:
234 /* Disallow <? and >? as lvalues if either argument side-effects. */
235 if (TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 0))
236 || TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 1)))
237 return clk_none;
238 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
239 op2_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 1));
240 break;
242 case COND_EXPR:
243 if (processing_template_decl)
245 /* Within templates, a REFERENCE_TYPE will indicate whether
246 the COND_EXPR result is an ordinary lvalue or rvalueref.
247 Since REFERENCE_TYPEs are handled above, if we reach this
248 point, we know we got a plain rvalue. Unless we have a
249 type-dependent expr, that is, but we shouldn't be testing
250 lvalueness if we can't even tell the types yet! */
251 gcc_assert (!type_dependent_expression_p (CONST_CAST_TREE (ref)));
252 goto default_;
255 tree op1 = TREE_OPERAND (ref, 1);
256 if (!op1) op1 = TREE_OPERAND (ref, 0);
257 tree op2 = TREE_OPERAND (ref, 2);
258 op1_lvalue_kind = lvalue_kind (op1);
259 op2_lvalue_kind = lvalue_kind (op2);
260 if (!op1_lvalue_kind != !op2_lvalue_kind)
262 /* The second or the third operand (but not both) is a
263 throw-expression; the result is of the type
264 and value category of the other. */
265 if (op1_lvalue_kind && TREE_CODE (op2) == THROW_EXPR)
266 op2_lvalue_kind = op1_lvalue_kind;
267 else if (op2_lvalue_kind && TREE_CODE (op1) == THROW_EXPR)
268 op1_lvalue_kind = op2_lvalue_kind;
271 break;
273 case MODOP_EXPR:
274 /* We expect to see unlowered MODOP_EXPRs only during
275 template processing. */
276 gcc_assert (processing_template_decl);
277 return clk_ordinary;
279 case MODIFY_EXPR:
280 case TYPEID_EXPR:
281 return clk_ordinary;
283 case COMPOUND_EXPR:
284 return lvalue_kind (TREE_OPERAND (ref, 1));
286 case TARGET_EXPR:
287 return clk_class;
289 case VA_ARG_EXPR:
290 return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none);
292 case CALL_EXPR:
293 /* We can see calls outside of TARGET_EXPR in templates. */
294 if (CLASS_TYPE_P (TREE_TYPE (ref)))
295 return clk_class;
296 return clk_none;
298 case FUNCTION_DECL:
299 /* All functions (except non-static-member functions) are
300 lvalues. */
301 return (DECL_IOBJ_MEMBER_FUNCTION_P (ref)
302 ? clk_none : clk_ordinary);
304 case BASELINK:
305 /* We now represent a reference to a single static member function
306 with a BASELINK. */
307 /* This CONST_CAST is okay because BASELINK_FUNCTIONS returns
308 its argument unmodified and we assign it to a const_tree. */
309 return lvalue_kind (BASELINK_FUNCTIONS (CONST_CAST_TREE (ref)));
311 case PAREN_EXPR:
312 return lvalue_kind (TREE_OPERAND (ref, 0));
314 case TEMPLATE_PARM_INDEX:
315 if (CLASS_TYPE_P (TREE_TYPE (ref)))
316 /* A template parameter object is an lvalue. */
317 return clk_ordinary;
318 return clk_none;
320 default:
321 default_:
322 if (!TREE_TYPE (ref))
323 return clk_none;
324 if (CLASS_TYPE_P (TREE_TYPE (ref))
325 || TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE)
326 return clk_class;
327 return clk_none;
330 /* If one operand is not an lvalue at all, then this expression is
331 not an lvalue. */
332 if (!op1_lvalue_kind || !op2_lvalue_kind)
333 return clk_none;
335 /* Otherwise, it's an lvalue, and it has all the odd properties
336 contributed by either operand. */
337 op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
338 /* It's not an ordinary lvalue if it involves any other kind. */
339 if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
340 op1_lvalue_kind &= ~clk_ordinary;
341 /* It can't be both a pseudo-lvalue and a non-addressable lvalue.
342 A COND_EXPR of those should be wrapped in a TARGET_EXPR. */
343 if ((op1_lvalue_kind & (clk_rvalueref|clk_class))
344 && (op1_lvalue_kind & (clk_bitfield|clk_packed)))
345 op1_lvalue_kind = clk_none;
346 return op1_lvalue_kind;
349 /* Returns the kind of lvalue that REF is, in the sense of [basic.lval]. */
351 cp_lvalue_kind
352 real_lvalue_p (const_tree ref)
354 cp_lvalue_kind kind = lvalue_kind (ref);
355 if (kind & (clk_rvalueref|clk_class))
356 return clk_none;
357 else
358 return kind;
361 /* c-common wants us to return bool. */
363 bool
364 lvalue_p (const_tree t)
366 return real_lvalue_p (t);
369 /* This differs from lvalue_p in that xvalues are included. */
371 bool
372 glvalue_p (const_tree ref)
374 cp_lvalue_kind kind = lvalue_kind (ref);
375 if (kind & clk_class)
376 return false;
377 else
378 return (kind != clk_none);
381 /* This differs from glvalue_p in that class prvalues are included. */
383 bool
384 obvalue_p (const_tree ref)
386 return (lvalue_kind (ref) != clk_none);
389 /* Returns true if REF is an xvalue (the result of dereferencing an rvalue
390 reference), false otherwise. */
392 bool
393 xvalue_p (const_tree ref)
395 return (lvalue_kind (ref) & clk_rvalueref);
398 /* True if REF is a bit-field. */
400 bool
401 bitfield_p (const_tree ref)
403 return (lvalue_kind (ref) & clk_bitfield);
406 /* C++-specific version of stabilize_reference. */
408 tree
409 cp_stabilize_reference (tree ref)
411 if (processing_template_decl)
412 /* As in cp_save_expr. */
413 return ref;
415 STRIP_ANY_LOCATION_WRAPPER (ref);
416 switch (TREE_CODE (ref))
418 /* We need to treat specially anything stabilize_reference doesn't
419 handle specifically. */
420 case VAR_DECL:
421 case PARM_DECL:
422 case RESULT_DECL:
423 CASE_CONVERT:
424 case FLOAT_EXPR:
425 case FIX_TRUNC_EXPR:
426 case INDIRECT_REF:
427 case COMPONENT_REF:
428 case BIT_FIELD_REF:
429 case ARRAY_REF:
430 case ARRAY_RANGE_REF:
431 case ERROR_MARK:
432 break;
433 default:
434 cp_lvalue_kind kind = lvalue_kind (ref);
435 if ((kind & ~clk_class) != clk_none)
437 tree type = unlowered_expr_type (ref);
438 bool rval = !!(kind & clk_rvalueref);
439 type = cp_build_reference_type (type, rval);
440 /* This inhibits warnings in, eg, cxx_mark_addressable
441 (c++/60955). */
442 warning_sentinel s (extra_warnings);
443 ref = build_static_cast (input_location, type, ref,
444 tf_error);
448 return stabilize_reference (ref);
451 /* Test whether DECL is a builtin that may appear in a
452 constant-expression. */
454 bool
455 builtin_valid_in_constant_expr_p (const_tree decl)
457 STRIP_ANY_LOCATION_WRAPPER (decl);
458 if (TREE_CODE (decl) != FUNCTION_DECL)
459 /* Not a function. */
460 return false;
461 if (DECL_BUILT_IN_CLASS (decl) != BUILT_IN_NORMAL)
463 if (fndecl_built_in_p (decl, BUILT_IN_FRONTEND))
464 switch (DECL_FE_FUNCTION_CODE (decl))
466 case CP_BUILT_IN_IS_CONSTANT_EVALUATED:
467 case CP_BUILT_IN_SOURCE_LOCATION:
468 case CP_BUILT_IN_IS_CORRESPONDING_MEMBER:
469 case CP_BUILT_IN_IS_POINTER_INTERCONVERTIBLE_WITH_CLASS:
470 return true;
471 default:
472 break;
474 /* Not a built-in. */
475 return false;
477 switch (DECL_FUNCTION_CODE (decl))
479 /* These always have constant results like the corresponding
480 macros/symbol. */
481 case BUILT_IN_FILE:
482 case BUILT_IN_FUNCTION:
483 case BUILT_IN_LINE:
485 /* The following built-ins are valid in constant expressions
486 when their arguments are. */
487 case BUILT_IN_ADD_OVERFLOW_P:
488 case BUILT_IN_SUB_OVERFLOW_P:
489 case BUILT_IN_MUL_OVERFLOW_P:
491 /* These have constant results even if their operands are
492 non-constant. */
493 case BUILT_IN_CONSTANT_P:
494 case BUILT_IN_ATOMIC_ALWAYS_LOCK_FREE:
495 return true;
496 default:
497 return false;
501 /* Build a TARGET_EXPR, initializing the DECL with the VALUE. */
503 static tree
504 build_target_expr (tree decl, tree value, tsubst_flags_t complain)
506 tree t;
507 tree type = TREE_TYPE (decl);
509 value = mark_rvalue_use (value);
511 gcc_checking_assert (VOID_TYPE_P (TREE_TYPE (value))
512 || TREE_TYPE (decl) == TREE_TYPE (value)
513 /* On ARM ctors return 'this'. */
514 || (TYPE_PTR_P (TREE_TYPE (value))
515 && TREE_CODE (value) == CALL_EXPR)
516 || useless_type_conversion_p (TREE_TYPE (decl),
517 TREE_TYPE (value)));
519 /* Set TREE_READONLY for optimization, such as gimplify_init_constructor
520 moving a constant aggregate into .rodata. */
521 if (CP_TYPE_CONST_NON_VOLATILE_P (type)
522 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
523 && !VOID_TYPE_P (TREE_TYPE (value))
524 && !TYPE_HAS_MUTABLE_P (type)
525 && reduced_constant_expression_p (value))
526 TREE_READONLY (decl) = true;
528 if (complain & tf_no_cleanup)
529 /* The caller is building a new-expr and does not need a cleanup. */
530 t = NULL_TREE;
531 else
533 t = cxx_maybe_build_cleanup (decl, complain);
534 if (t == error_mark_node)
535 return error_mark_node;
538 set_target_expr_eliding (value);
540 t = build4 (TARGET_EXPR, type, decl, value, t, NULL_TREE);
541 if (location_t eloc = cp_expr_location (value))
542 SET_EXPR_LOCATION (t, eloc);
543 /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
544 ignore the TARGET_EXPR. If there really turn out to be no
545 side-effects, then the optimizer should be able to get rid of
546 whatever code is generated anyhow. */
547 TREE_SIDE_EFFECTS (t) = 1;
549 return t;
552 /* Return an undeclared local temporary of type TYPE for use in building a
553 TARGET_EXPR. */
555 tree
556 build_local_temp (tree type)
558 tree slot = build_decl (input_location,
559 VAR_DECL, NULL_TREE, type);
560 DECL_ARTIFICIAL (slot) = 1;
561 DECL_IGNORED_P (slot) = 1;
562 DECL_CONTEXT (slot) = current_function_decl;
563 layout_decl (slot, 0);
564 return slot;
567 /* Return whether DECL is such a local temporary (or one from
568 create_tmp_var_raw). */
570 bool
571 is_local_temp (tree decl)
573 return (VAR_P (decl) && DECL_ARTIFICIAL (decl)
574 && !TREE_STATIC (decl));
577 /* Set various status flags when building an AGGR_INIT_EXPR object T. */
579 static void
580 process_aggr_init_operands (tree t)
582 bool side_effects;
584 side_effects = TREE_SIDE_EFFECTS (t);
585 if (!side_effects)
587 int i, n;
588 n = TREE_OPERAND_LENGTH (t);
589 for (i = 1; i < n; i++)
591 tree op = TREE_OPERAND (t, i);
592 if (op && TREE_SIDE_EFFECTS (op))
594 side_effects = 1;
595 break;
599 TREE_SIDE_EFFECTS (t) = side_effects;
602 /* Build an AGGR_INIT_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE,
603 FN, and SLOT. NARGS is the number of call arguments which are specified
604 as a tree array ARGS. */
606 static tree
607 build_aggr_init_array (tree return_type, tree fn, tree slot, int nargs,
608 tree *args)
610 tree t;
611 int i;
613 t = build_vl_exp (AGGR_INIT_EXPR, nargs + 3);
614 TREE_TYPE (t) = return_type;
615 AGGR_INIT_EXPR_FN (t) = fn;
616 AGGR_INIT_EXPR_SLOT (t) = slot;
617 for (i = 0; i < nargs; i++)
618 AGGR_INIT_EXPR_ARG (t, i) = args[i];
619 process_aggr_init_operands (t);
620 return t;
623 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
624 target. TYPE is the type to be initialized.
626 Build an AGGR_INIT_EXPR to represent the initialization. This function
627 differs from build_cplus_new in that an AGGR_INIT_EXPR can only be used
628 to initialize another object, whereas a TARGET_EXPR can either
629 initialize another object or create its own temporary object, and as a
630 result building up a TARGET_EXPR requires that the type's destructor be
631 callable. */
633 tree
634 build_aggr_init_expr (tree type, tree init)
636 tree fn;
637 tree slot;
638 tree rval;
639 int is_ctor;
641 gcc_assert (!VOID_TYPE_P (type));
643 /* Don't build AGGR_INIT_EXPR in a template. */
644 if (processing_template_decl)
645 return init;
647 fn = cp_get_callee (init);
648 if (fn == NULL_TREE)
649 return convert (type, init);
651 is_ctor = (TREE_CODE (fn) == ADDR_EXPR
652 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
653 && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
655 /* We split the CALL_EXPR into its function and its arguments here.
656 Then, in expand_expr, we put them back together. The reason for
657 this is that this expression might be a default argument
658 expression. In that case, we need a new temporary every time the
659 expression is used. That's what break_out_target_exprs does; it
660 replaces every AGGR_INIT_EXPR with a copy that uses a fresh
661 temporary slot. Then, expand_expr builds up a call-expression
662 using the new slot. */
664 /* If we don't need to use a constructor to create an object of this
665 type, don't mess with AGGR_INIT_EXPR. */
666 if (is_ctor || TREE_ADDRESSABLE (type))
668 slot = build_local_temp (type);
670 if (TREE_CODE (init) == CALL_EXPR)
672 rval = build_aggr_init_array (void_type_node, fn, slot,
673 call_expr_nargs (init),
674 CALL_EXPR_ARGP (init));
675 AGGR_INIT_FROM_THUNK_P (rval)
676 = CALL_FROM_THUNK_P (init);
678 else
680 rval = build_aggr_init_array (void_type_node, fn, slot,
681 aggr_init_expr_nargs (init),
682 AGGR_INIT_EXPR_ARGP (init));
683 AGGR_INIT_FROM_THUNK_P (rval)
684 = AGGR_INIT_FROM_THUNK_P (init);
686 TREE_SIDE_EFFECTS (rval) = 1;
687 AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
688 TREE_NOTHROW (rval) = TREE_NOTHROW (init);
689 CALL_EXPR_OPERATOR_SYNTAX (rval) = CALL_EXPR_OPERATOR_SYNTAX (init);
690 CALL_EXPR_ORDERED_ARGS (rval) = CALL_EXPR_ORDERED_ARGS (init);
691 CALL_EXPR_REVERSE_ARGS (rval) = CALL_EXPR_REVERSE_ARGS (init);
692 SET_EXPR_LOCATION (rval, EXPR_LOCATION (init));
694 else
695 rval = init;
697 return rval;
700 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
701 target. TYPE is the type that this initialization should appear to
702 have.
704 Build an encapsulation of the initialization to perform
705 and return it so that it can be processed by language-independent
706 and language-specific expression expanders. */
708 tree
709 build_cplus_new (tree type, tree init, tsubst_flags_t complain)
711 /* This function should cope with what build_special_member_call
712 can produce. When performing parenthesized aggregate initialization,
713 it can produce a { }. */
714 if (BRACE_ENCLOSED_INITIALIZER_P (init))
716 gcc_assert (cxx_dialect >= cxx20);
717 return finish_compound_literal (type, init, complain);
720 tree rval = build_aggr_init_expr (type, init);
721 tree slot;
723 if (init == error_mark_node)
724 return error_mark_node;
726 if (!complete_type_or_maybe_complain (type, init, complain))
727 return error_mark_node;
729 /* Make sure that we're not trying to create an instance of an
730 abstract class. */
731 if (abstract_virtuals_error (NULL_TREE, type, complain))
732 return error_mark_node;
734 if (TREE_CODE (rval) == AGGR_INIT_EXPR)
735 slot = AGGR_INIT_EXPR_SLOT (rval);
736 else if (TREE_CODE (rval) == CALL_EXPR
737 || TREE_CODE (rval) == CONSTRUCTOR)
738 slot = build_local_temp (type);
739 else
740 return rval;
742 rval = build_target_expr (slot, rval, complain);
744 if (rval != error_mark_node)
745 TARGET_EXPR_IMPLICIT_P (rval) = 1;
747 return rval;
750 /* Subroutine of build_vec_init_expr: Build up a single element
751 intialization as a proxy for the full array initialization to get things
752 marked as used and any appropriate diagnostics.
754 This used to be necessary because we were deferring building the actual
755 constructor calls until gimplification time; now we only do it to set
756 VEC_INIT_EXPR_IS_CONSTEXPR.
758 We assume that init is either NULL_TREE, {}, void_type_node (indicating
759 value-initialization), or another array to copy. */
761 static tree
762 build_vec_init_elt (tree type, tree init, tsubst_flags_t complain)
764 tree inner_type = strip_array_types (type);
766 if (integer_zerop (array_type_nelts_total (type))
767 || !CLASS_TYPE_P (inner_type))
768 /* No interesting initialization to do. */
769 return integer_zero_node;
770 if (init && BRACE_ENCLOSED_INITIALIZER_P (init))
772 /* Even if init has initializers for some array elements,
773 we're interested in the {}-init of trailing elements. */
774 if (CP_AGGREGATE_TYPE_P (inner_type))
776 tree empty = build_constructor (init_list_type_node, nullptr);
777 return digest_init (inner_type, empty, complain);
779 else
780 /* It's equivalent to value-init. */
781 init = void_type_node;
783 if (init == void_type_node)
784 return build_value_init (inner_type, complain);
786 releasing_vec argvec;
787 if (init && !BRACE_ENCLOSED_INITIALIZER_P (init))
789 tree init_type = strip_array_types (TREE_TYPE (init));
790 tree dummy = build_dummy_object (init_type);
791 if (!lvalue_p (init))
792 dummy = move (dummy);
793 argvec->quick_push (dummy);
795 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
796 &argvec, inner_type, LOOKUP_NORMAL,
797 complain);
799 /* For a trivial constructor, build_over_call creates a TARGET_EXPR. But
800 we don't want one here because we aren't creating a temporary. */
801 if (TREE_CODE (init) == TARGET_EXPR)
802 init = TARGET_EXPR_INITIAL (init);
804 return init;
807 /* Return a TARGET_EXPR which expresses the initialization of an array to
808 be named later, either default-initialization or copy-initialization
809 from another array of the same type. */
811 tree
812 build_vec_init_expr (tree type, tree init, tsubst_flags_t complain)
814 if (tree vi = get_vec_init_expr (init))
815 return vi;
817 tree elt_init;
818 if (init && TREE_CODE (init) == CONSTRUCTOR
819 && !BRACE_ENCLOSED_INITIALIZER_P (init))
820 /* We built any needed constructor calls in digest_init. */
821 elt_init = init;
822 else
823 elt_init = build_vec_init_elt (type, init, complain);
825 bool value_init = false;
826 if (init == void_type_node)
828 value_init = true;
829 init = NULL_TREE;
832 tree slot = build_local_temp (type);
833 init = build2 (VEC_INIT_EXPR, type, slot, init);
834 TREE_SIDE_EFFECTS (init) = true;
835 SET_EXPR_LOCATION (init, input_location);
837 if (cxx_dialect >= cxx11)
839 bool cx = potential_constant_expression (elt_init);
840 if (BRACE_ENCLOSED_INITIALIZER_P (init))
841 cx &= potential_constant_expression (init);
842 VEC_INIT_EXPR_IS_CONSTEXPR (init) = cx;
844 VEC_INIT_EXPR_VALUE_INIT (init) = value_init;
846 return init;
849 /* Call build_vec_init to expand VEC_INIT into TARGET (for which NULL_TREE
850 means VEC_INIT_EXPR_SLOT). */
852 tree
853 expand_vec_init_expr (tree target, tree vec_init, tsubst_flags_t complain,
854 vec<tree,va_gc> **flags)
856 iloc_sentinel ils = EXPR_LOCATION (vec_init);
858 if (!target)
859 target = VEC_INIT_EXPR_SLOT (vec_init);
860 tree init = VEC_INIT_EXPR_INIT (vec_init);
861 int from_array = (init && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE);
862 return build_vec_init (target, NULL_TREE, init,
863 VEC_INIT_EXPR_VALUE_INIT (vec_init),
864 from_array, complain, flags);
867 /* Give a helpful diagnostic for a non-constexpr VEC_INIT_EXPR in a context
868 that requires a constant expression. */
870 void
871 diagnose_non_constexpr_vec_init (tree expr)
873 tree type = TREE_TYPE (VEC_INIT_EXPR_SLOT (expr));
874 tree init, elt_init;
875 if (VEC_INIT_EXPR_VALUE_INIT (expr))
876 init = void_type_node;
877 else
878 init = VEC_INIT_EXPR_INIT (expr);
880 elt_init = build_vec_init_elt (type, init, tf_warning_or_error);
881 require_potential_constant_expression (elt_init);
884 tree
885 build_array_copy (tree init)
887 return get_target_expr (build_vec_init_expr
888 (TREE_TYPE (init), init, tf_warning_or_error));
891 /* Build a TARGET_EXPR using INIT to initialize a new temporary of the
892 indicated TYPE. */
894 tree
895 build_target_expr_with_type (tree init, tree type, tsubst_flags_t complain)
897 gcc_assert (!VOID_TYPE_P (type));
898 gcc_assert (!VOID_TYPE_P (TREE_TYPE (init)));
900 if (TREE_CODE (init) == TARGET_EXPR
901 || init == error_mark_node)
902 return init;
903 else if (CLASS_TYPE_P (type) && type_has_nontrivial_copy_init (type)
904 && TREE_CODE (init) != COND_EXPR
905 && TREE_CODE (init) != CONSTRUCTOR
906 && TREE_CODE (init) != VA_ARG_EXPR
907 && TREE_CODE (init) != CALL_EXPR)
908 /* We need to build up a copy constructor call. COND_EXPR is a special
909 case because we already have copies on the arms and we don't want
910 another one here. A CONSTRUCTOR is aggregate initialization, which
911 is handled separately. A VA_ARG_EXPR is magic creation of an
912 aggregate; there's no additional work to be done. A CALL_EXPR
913 already creates a prvalue. */
914 return force_rvalue (init, complain);
916 return force_target_expr (type, init, complain);
919 /* Like the above function, but without the checking. This function should
920 only be used by code which is deliberately trying to subvert the type
921 system, such as call_builtin_trap. Or build_over_call, to avoid
922 infinite recursion. */
924 tree
925 force_target_expr (tree type, tree init, tsubst_flags_t complain)
927 tree slot;
929 gcc_assert (!VOID_TYPE_P (type));
931 slot = build_local_temp (type);
932 return build_target_expr (slot, init, complain);
935 /* Like build_target_expr_with_type, but use the type of INIT. */
937 tree
938 get_target_expr (tree init, tsubst_flags_t complain /* = tf_warning_or_error */)
940 if (TREE_CODE (init) == AGGR_INIT_EXPR)
941 return build_target_expr (AGGR_INIT_EXPR_SLOT (init), init, complain);
942 else if (TREE_CODE (init) == VEC_INIT_EXPR)
943 return build_target_expr (VEC_INIT_EXPR_SLOT (init), init, complain);
944 else
946 init = convert_bitfield_to_declared_type (init);
947 return build_target_expr_with_type (init, TREE_TYPE (init), complain);
951 /* If EXPR is a bitfield reference, convert it to the declared type of
952 the bitfield, and return the resulting expression. Otherwise,
953 return EXPR itself. */
955 tree
956 convert_bitfield_to_declared_type (tree expr)
958 tree bitfield_type;
960 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
961 if (bitfield_type)
962 expr = convert_to_integer_nofold (TYPE_MAIN_VARIANT (bitfield_type),
963 expr);
964 return expr;
967 /* EXPR is being used in an rvalue context. Return a version of EXPR
968 that is marked as an rvalue. */
970 tree
971 rvalue (tree expr)
973 tree type;
975 if (error_operand_p (expr))
976 return expr;
978 expr = mark_rvalue_use (expr);
980 /* [basic.lval]
982 Non-class rvalues always have cv-unqualified types. */
983 type = TREE_TYPE (expr);
984 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
985 type = cv_unqualified (type);
987 /* We need to do this for rvalue refs as well to get the right answer
988 from decltype; see c++/36628. */
989 if (!processing_template_decl && glvalue_p (expr))
991 /* But don't use this function for class lvalues; use move (to treat an
992 lvalue as an xvalue) or force_rvalue (to make a prvalue copy). */
993 gcc_checking_assert (!CLASS_TYPE_P (type));
994 expr = build1 (NON_LVALUE_EXPR, type, expr);
996 else if (type != TREE_TYPE (expr))
997 expr = build_nop (type, expr);
999 return expr;
1003 struct cplus_array_info
1005 tree type;
1006 tree domain;
1009 struct cplus_array_hasher : ggc_ptr_hash<tree_node>
1011 typedef cplus_array_info *compare_type;
1013 static hashval_t hash (tree t);
1014 static bool equal (tree, cplus_array_info *);
1017 /* Hash an ARRAY_TYPE. K is really of type `tree'. */
1019 hashval_t
1020 cplus_array_hasher::hash (tree t)
1022 hashval_t hash;
1024 hash = TYPE_UID (TREE_TYPE (t));
1025 if (TYPE_DOMAIN (t))
1026 hash ^= TYPE_UID (TYPE_DOMAIN (t));
1027 return hash;
1030 /* Compare two ARRAY_TYPEs. K1 is really of type `tree', K2 is really
1031 of type `cplus_array_info*'. */
1033 bool
1034 cplus_array_hasher::equal (tree t1, cplus_array_info *t2)
1036 return (TREE_TYPE (t1) == t2->type && TYPE_DOMAIN (t1) == t2->domain);
1039 /* Hash table containing dependent array types, which are unsuitable for
1040 the language-independent type hash table. */
1041 static GTY (()) hash_table<cplus_array_hasher> *cplus_array_htab;
1043 /* Build an ARRAY_TYPE without laying it out. */
1045 static tree
1046 build_min_array_type (tree elt_type, tree index_type)
1048 tree t = cxx_make_type (ARRAY_TYPE);
1049 TREE_TYPE (t) = elt_type;
1050 TYPE_DOMAIN (t) = index_type;
1051 return t;
1054 /* Set TYPE_CANONICAL like build_array_type_1, but using
1055 build_cplus_array_type. */
1057 static void
1058 set_array_type_canon (tree t, tree elt_type, tree index_type, bool dep)
1060 /* Set the canonical type for this new node. */
1061 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
1062 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
1063 SET_TYPE_STRUCTURAL_EQUALITY (t);
1064 else if (TYPE_CANONICAL (elt_type) != elt_type
1065 || (index_type && TYPE_CANONICAL (index_type) != index_type))
1066 TYPE_CANONICAL (t)
1067 = build_cplus_array_type (TYPE_CANONICAL (elt_type),
1068 index_type
1069 ? TYPE_CANONICAL (index_type) : index_type,
1070 dep);
1071 else
1072 TYPE_CANONICAL (t) = t;
1075 /* Like build_array_type, but handle special C++ semantics: an array of a
1076 variant element type is a variant of the array of the main variant of
1077 the element type. IS_DEPENDENT is -ve if we should determine the
1078 dependency. Otherwise its bool value indicates dependency. */
1080 tree
1081 build_cplus_array_type (tree elt_type, tree index_type, int dependent)
1083 tree t;
1085 if (elt_type == error_mark_node || index_type == error_mark_node)
1086 return error_mark_node;
1088 if (dependent < 0)
1089 dependent = (uses_template_parms (elt_type)
1090 || (index_type && uses_template_parms (index_type)));
1092 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
1093 /* Start with an array of the TYPE_MAIN_VARIANT. */
1094 t = build_cplus_array_type (TYPE_MAIN_VARIANT (elt_type),
1095 index_type, dependent);
1096 else if (dependent)
1098 /* Since type_hash_canon calls layout_type, we need to use our own
1099 hash table. */
1100 cplus_array_info cai;
1101 hashval_t hash;
1103 if (cplus_array_htab == NULL)
1104 cplus_array_htab = hash_table<cplus_array_hasher>::create_ggc (61);
1106 hash = TYPE_UID (elt_type);
1107 if (index_type)
1108 hash ^= TYPE_UID (index_type);
1109 cai.type = elt_type;
1110 cai.domain = index_type;
1112 tree *e = cplus_array_htab->find_slot_with_hash (&cai, hash, INSERT);
1113 if (*e)
1114 /* We have found the type: we're done. */
1115 return (tree) *e;
1116 else
1118 /* Build a new array type. */
1119 t = build_min_array_type (elt_type, index_type);
1121 /* Store it in the hash table. */
1122 *e = t;
1124 /* Set the canonical type for this new node. */
1125 set_array_type_canon (t, elt_type, index_type, dependent);
1127 /* Mark it as dependent now, this saves time later. */
1128 TYPE_DEPENDENT_P_VALID (t) = true;
1129 TYPE_DEPENDENT_P (t) = true;
1132 else
1134 bool typeless_storage = is_byte_access_type (elt_type);
1135 t = build_array_type (elt_type, index_type, typeless_storage);
1137 /* Mark as non-dependenty now, this will save time later. */
1138 TYPE_DEPENDENT_P_VALID (t) = true;
1141 /* Now check whether we already have this array variant. */
1142 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
1144 tree m = t;
1145 for (t = m; t; t = TYPE_NEXT_VARIANT (t))
1146 if (TREE_TYPE (t) == elt_type
1147 && TYPE_NAME (t) == NULL_TREE
1148 && TYPE_ATTRIBUTES (t) == NULL_TREE)
1149 break;
1150 if (!t)
1152 t = build_min_array_type (elt_type, index_type);
1153 /* Mark dependency now, this saves time later. */
1154 TYPE_DEPENDENT_P_VALID (t) = true;
1155 TYPE_DEPENDENT_P (t) = dependent;
1156 set_array_type_canon (t, elt_type, index_type, dependent);
1157 if (!dependent)
1159 layout_type (t);
1160 /* Make sure sizes are shared with the main variant.
1161 layout_type can't be called after setting TYPE_NEXT_VARIANT,
1162 as it will overwrite alignment etc. of all variants. */
1163 TYPE_SIZE (t) = TYPE_SIZE (m);
1164 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (m);
1165 TYPE_TYPELESS_STORAGE (t) = TYPE_TYPELESS_STORAGE (m);
1168 TYPE_MAIN_VARIANT (t) = m;
1169 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
1170 TYPE_NEXT_VARIANT (m) = t;
1174 /* Avoid spurious warnings with VLAs (c++/54583). */
1175 if (TYPE_SIZE (t) && EXPR_P (TYPE_SIZE (t)))
1176 suppress_warning (TYPE_SIZE (t), OPT_Wunused);
1178 /* Push these needs up to the ARRAY_TYPE so that initialization takes
1179 place more easily. */
1180 bool needs_ctor = (TYPE_NEEDS_CONSTRUCTING (t)
1181 = TYPE_NEEDS_CONSTRUCTING (elt_type));
1182 bool needs_dtor = (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1183 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type));
1185 if (!dependent && t == TYPE_MAIN_VARIANT (t)
1186 && !COMPLETE_TYPE_P (t) && COMPLETE_TYPE_P (elt_type))
1188 /* The element type has been completed since the last time we saw
1189 this array type; update the layout and 'tor flags for any variants
1190 that need it. */
1191 layout_type (t);
1192 for (tree v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
1194 TYPE_NEEDS_CONSTRUCTING (v) = needs_ctor;
1195 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (v) = needs_dtor;
1199 return t;
1202 /* Return an ARRAY_TYPE with element type ELT and length N. */
1204 tree
1205 build_array_of_n_type (tree elt, int n)
1207 return build_cplus_array_type (elt, build_index_type (size_int (n - 1)));
1210 /* True iff T is an array of unknown bound. */
1212 bool
1213 array_of_unknown_bound_p (const_tree t)
1215 return (TREE_CODE (t) == ARRAY_TYPE
1216 && !TYPE_DOMAIN (t));
1219 /* True iff T is an N3639 array of runtime bound (VLA). These were approved
1220 for C++14 but then removed. This should only be used for N3639
1221 specifically; code wondering more generally if something is a VLA should use
1222 vla_type_p. */
1224 bool
1225 array_of_runtime_bound_p (tree t)
1227 if (!t || TREE_CODE (t) != ARRAY_TYPE)
1228 return false;
1229 if (variably_modified_type_p (TREE_TYPE (t), NULL_TREE))
1230 return false;
1231 tree dom = TYPE_DOMAIN (t);
1232 if (!dom)
1233 return false;
1234 tree max = TYPE_MAX_VALUE (dom);
1235 return (!potential_rvalue_constant_expression (max)
1236 || (!value_dependent_expression_p (max) && !TREE_CONSTANT (max)));
1239 /* True iff T is a variable length array. */
1241 bool
1242 vla_type_p (tree t)
1244 for (; t && TREE_CODE (t) == ARRAY_TYPE;
1245 t = TREE_TYPE (t))
1246 if (tree dom = TYPE_DOMAIN (t))
1248 tree max = TYPE_MAX_VALUE (dom);
1249 if (!potential_rvalue_constant_expression (max)
1250 || (!value_dependent_expression_p (max) && !TREE_CONSTANT (max)))
1251 return true;
1253 return false;
1257 /* Return a reference type node of MODE referring to TO_TYPE. If MODE
1258 is VOIDmode the standard pointer mode will be picked. If RVAL is
1259 true, return an rvalue reference type, otherwise return an lvalue
1260 reference type. If a type node exists, reuse it, otherwise create
1261 a new one. */
1262 tree
1263 cp_build_reference_type_for_mode (tree to_type, machine_mode mode, bool rval)
1265 tree lvalue_ref, t;
1267 if (to_type == error_mark_node)
1268 return error_mark_node;
1270 if (TYPE_REF_P (to_type))
1272 rval = rval && TYPE_REF_IS_RVALUE (to_type);
1273 to_type = TREE_TYPE (to_type);
1276 lvalue_ref = build_reference_type_for_mode (to_type, mode, false);
1278 if (!rval)
1279 return lvalue_ref;
1281 /* This code to create rvalue reference types is based on and tied
1282 to the code creating lvalue reference types in the middle-end
1283 functions build_reference_type_for_mode and build_reference_type.
1285 It works by putting the rvalue reference type nodes after the
1286 lvalue reference nodes in the TYPE_NEXT_REF_TO linked list, so
1287 they will effectively be ignored by the middle end. */
1289 for (t = lvalue_ref; (t = TYPE_NEXT_REF_TO (t)); )
1290 if (TYPE_REF_IS_RVALUE (t))
1291 return t;
1293 t = build_distinct_type_copy (lvalue_ref);
1295 TYPE_REF_IS_RVALUE (t) = true;
1296 TYPE_NEXT_REF_TO (t) = TYPE_NEXT_REF_TO (lvalue_ref);
1297 TYPE_NEXT_REF_TO (lvalue_ref) = t;
1299 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
1300 SET_TYPE_STRUCTURAL_EQUALITY (t);
1301 else if (TYPE_CANONICAL (to_type) != to_type)
1302 TYPE_CANONICAL (t)
1303 = cp_build_reference_type_for_mode (TYPE_CANONICAL (to_type), mode, rval);
1304 else
1305 TYPE_CANONICAL (t) = t;
1307 layout_type (t);
1309 return t;
1313 /* Return a reference type node referring to TO_TYPE. If RVAL is
1314 true, return an rvalue reference type, otherwise return an lvalue
1315 reference type. If a type node exists, reuse it, otherwise create
1316 a new one. */
1317 tree
1318 cp_build_reference_type (tree to_type, bool rval)
1320 return cp_build_reference_type_for_mode (to_type, VOIDmode, rval);
1323 /* Returns EXPR cast to rvalue reference type, like std::move. */
1325 tree
1326 move (tree expr)
1328 tree type = TREE_TYPE (expr);
1329 gcc_assert (!TYPE_REF_P (type));
1330 if (xvalue_p (expr))
1331 return expr;
1332 type = cp_build_reference_type (type, /*rval*/true);
1333 return build_static_cast (input_location, type, expr,
1334 tf_warning_or_error);
1337 /* Used by the C++ front end to build qualified array types. However,
1338 the C version of this function does not properly maintain canonical
1339 types (which are not used in C). */
1340 tree
1341 c_build_qualified_type (tree type, int type_quals, tree /* orig_qual_type */,
1342 size_t /* orig_qual_indirect */)
1344 return cp_build_qualified_type (type, type_quals);
1348 /* Make a variant of TYPE, qualified with the TYPE_QUALS. Handles
1349 arrays correctly. In particular, if TYPE is an array of T's, and
1350 TYPE_QUALS is non-empty, returns an array of qualified T's.
1352 FLAGS determines how to deal with ill-formed qualifications. If
1353 tf_ignore_bad_quals is set, then bad qualifications are dropped
1354 (this is permitted if TYPE was introduced via a typedef or template
1355 type parameter). If bad qualifications are dropped and tf_warning
1356 is set, then a warning is issued for non-const qualifications. If
1357 tf_ignore_bad_quals is not set and tf_error is not set, we
1358 return error_mark_node. Otherwise, we issue an error, and ignore
1359 the qualifications.
1361 Qualification of a reference type is valid when the reference came
1362 via a typedef or template type argument. [dcl.ref] No such
1363 dispensation is provided for qualifying a function type. [dcl.fct]
1364 DR 295 queries this and the proposed resolution brings it into line
1365 with qualifying a reference. We implement the DR. We also behave
1366 in a similar manner for restricting non-pointer types. */
1368 tree
1369 cp_build_qualified_type (tree type, int type_quals,
1370 tsubst_flags_t complain /* = tf_warning_or_error */)
1372 tree result;
1373 int bad_quals = TYPE_UNQUALIFIED;
1375 if (type == error_mark_node)
1376 return type;
1378 if (type_quals == cp_type_quals (type))
1379 return type;
1381 if (TREE_CODE (type) == ARRAY_TYPE)
1383 /* In C++, the qualification really applies to the array element
1384 type. Obtain the appropriately qualified element type. */
1385 tree t;
1386 tree element_type
1387 = cp_build_qualified_type (TREE_TYPE (type), type_quals, complain);
1389 if (element_type == error_mark_node)
1390 return error_mark_node;
1392 /* See if we already have an identically qualified type. Tests
1393 should be equivalent to those in check_qualified_type. */
1394 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
1395 if (TREE_TYPE (t) == element_type
1396 && TYPE_NAME (t) == TYPE_NAME (type)
1397 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
1398 && attribute_list_equal (TYPE_ATTRIBUTES (t),
1399 TYPE_ATTRIBUTES (type)))
1400 break;
1402 if (!t)
1404 /* If we already know the dependentness, tell the array type
1405 constructor. This is important for module streaming, as we cannot
1406 dynamically determine that on read in. */
1407 t = build_cplus_array_type (element_type, TYPE_DOMAIN (type),
1408 TYPE_DEPENDENT_P_VALID (type)
1409 ? int (TYPE_DEPENDENT_P (type)) : -1);
1411 /* Keep the typedef name. */
1412 if (TYPE_NAME (t) != TYPE_NAME (type))
1414 t = build_variant_type_copy (t);
1415 TYPE_NAME (t) = TYPE_NAME (type);
1416 SET_TYPE_ALIGN (t, TYPE_ALIGN (type));
1417 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (type);
1421 /* Even if we already had this variant, we update
1422 TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
1423 they changed since the variant was originally created.
1425 This seems hokey; if there is some way to use a previous
1426 variant *without* coming through here,
1427 TYPE_NEEDS_CONSTRUCTING will never be updated. */
1428 TYPE_NEEDS_CONSTRUCTING (t)
1429 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
1430 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1431 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
1432 return t;
1434 else if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
1436 tree t = PACK_EXPANSION_PATTERN (type);
1438 t = cp_build_qualified_type (t, type_quals, complain);
1439 return make_pack_expansion (t, complain);
1442 /* A reference or method type shall not be cv-qualified.
1443 [dcl.ref], [dcl.fct]. This used to be an error, but as of DR 295
1444 (in CD1) we always ignore extra cv-quals on functions. */
1446 /* [dcl.ref/1] Cv-qualified references are ill-formed except when
1447 the cv-qualifiers are introduced through the use of a typedef-name
1448 ([dcl.typedef], [temp.param]) or decltype-specifier
1449 ([dcl.type.decltype]),in which case the cv-qualifiers are
1450 ignored. */
1451 if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
1452 && (TYPE_REF_P (type)
1453 || FUNC_OR_METHOD_TYPE_P (type)))
1455 if (TYPE_REF_P (type)
1456 && (!typedef_variant_p (type) || FUNC_OR_METHOD_TYPE_P (type)))
1457 bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1458 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1461 /* But preserve any function-cv-quals on a FUNCTION_TYPE. */
1462 if (TREE_CODE (type) == FUNCTION_TYPE)
1463 type_quals |= type_memfn_quals (type);
1465 /* A restrict-qualified type must be a pointer (or reference)
1466 to object or incomplete type. */
1467 if ((type_quals & TYPE_QUAL_RESTRICT)
1468 && TREE_CODE (type) != TEMPLATE_TYPE_PARM
1469 && TREE_CODE (type) != TYPENAME_TYPE
1470 && !INDIRECT_TYPE_P (type))
1472 bad_quals |= TYPE_QUAL_RESTRICT;
1473 type_quals &= ~TYPE_QUAL_RESTRICT;
1476 if (bad_quals == TYPE_UNQUALIFIED
1477 || (complain & tf_ignore_bad_quals))
1478 /*OK*/;
1479 else if (!(complain & tf_error))
1480 return error_mark_node;
1481 else
1483 tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
1484 error ("%qV qualifiers cannot be applied to %qT",
1485 bad_type, type);
1488 /* Retrieve (or create) the appropriately qualified variant. */
1489 result = build_qualified_type (type, type_quals);
1491 return result;
1494 /* Return TYPE with const and volatile removed. */
1496 tree
1497 cv_unqualified (tree type)
1499 int quals;
1501 if (type == error_mark_node)
1502 return type;
1504 quals = cp_type_quals (type);
1505 quals &= ~(TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE);
1506 return cp_build_qualified_type (type, quals);
1509 /* Subroutine of strip_typedefs. We want to apply to RESULT the attributes
1510 from ATTRIBS that affect type identity, and no others. If any are not
1511 applied, set *remove_attributes to true. */
1513 static tree
1514 apply_identity_attributes (tree result, tree attribs, bool *remove_attributes)
1516 tree first_ident = NULL_TREE;
1517 tree new_attribs = NULL_TREE;
1518 tree *p = &new_attribs;
1520 if (OVERLOAD_TYPE_P (result))
1522 /* On classes and enums all attributes are ingrained. */
1523 gcc_assert (attribs == TYPE_ATTRIBUTES (result));
1524 return result;
1527 for (tree a = attribs; a; a = TREE_CHAIN (a))
1529 const attribute_spec *as
1530 = lookup_attribute_spec (get_attribute_name (a));
1531 if (as && as->affects_type_identity)
1533 if (!first_ident)
1534 first_ident = a;
1535 else if (first_ident == error_mark_node)
1537 *p = tree_cons (TREE_PURPOSE (a), TREE_VALUE (a), NULL_TREE);
1538 p = &TREE_CHAIN (*p);
1541 else if (first_ident && first_ident != error_mark_node)
1543 for (tree a2 = first_ident; a2 != a; a2 = TREE_CHAIN (a2))
1545 *p = tree_cons (TREE_PURPOSE (a2), TREE_VALUE (a2), NULL_TREE);
1546 p = &TREE_CHAIN (*p);
1548 first_ident = error_mark_node;
1551 if (first_ident != error_mark_node)
1552 new_attribs = first_ident;
1554 if (first_ident == attribs)
1555 /* All attributes affected type identity. */;
1556 else
1557 *remove_attributes = true;
1559 return cp_build_type_attribute_variant (result, new_attribs);
1562 /* Builds a qualified variant of T that is either not a typedef variant
1563 (the default behavior) or not a typedef variant of a user-facing type
1564 (if FLAGS contains STF_USER_FACING). If T is not a type, then this
1565 just dispatches to strip_typedefs_expr.
1567 E.g. consider the following declarations:
1568 typedef const int ConstInt;
1569 typedef ConstInt* PtrConstInt;
1570 If T is PtrConstInt, this function returns a type representing
1571 const int*.
1572 In other words, if T is a typedef, the function returns the underlying type.
1573 The cv-qualification and attributes of the type returned match the
1574 input type.
1575 They will always be compatible types.
1576 The returned type is built so that all of its subtypes
1577 recursively have their typedefs stripped as well.
1579 This is different from just returning TYPE_CANONICAL (T)
1580 Because of several reasons:
1581 * If T is a type that needs structural equality
1582 its TYPE_CANONICAL (T) will be NULL.
1583 * TYPE_CANONICAL (T) desn't carry type attributes
1584 and loses template parameter names.
1586 If REMOVE_ATTRIBUTES is non-null, also strip attributes that don't
1587 affect type identity, and set the referent to true if any were
1588 stripped. */
1590 tree
1591 strip_typedefs (tree t, bool *remove_attributes /* = NULL */,
1592 unsigned int flags /* = 0 */)
1594 tree result = NULL, type = NULL, t0 = NULL;
1596 if (!t || t == error_mark_node)
1597 return t;
1599 if (!TYPE_P (t))
1600 return strip_typedefs_expr (t, remove_attributes, flags);
1602 if (t == TYPE_CANONICAL (t))
1603 return t;
1605 if (!(flags & STF_STRIP_DEPENDENT)
1606 && dependent_alias_template_spec_p (t, nt_opaque))
1607 /* DR 1558: However, if the template-id is dependent, subsequent
1608 template argument substitution still applies to the template-id. */
1609 return t;
1611 switch (TREE_CODE (t))
1613 case POINTER_TYPE:
1614 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1615 result = build_pointer_type_for_mode (type, TYPE_MODE (t), false);
1616 break;
1617 case REFERENCE_TYPE:
1618 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1619 result = cp_build_reference_type_for_mode (type, TYPE_MODE (t), TYPE_REF_IS_RVALUE (t));
1620 break;
1621 case OFFSET_TYPE:
1622 t0 = strip_typedefs (TYPE_OFFSET_BASETYPE (t), remove_attributes, flags);
1623 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1624 result = build_offset_type (t0, type);
1625 break;
1626 case RECORD_TYPE:
1627 if (TYPE_PTRMEMFUNC_P (t))
1629 t0 = strip_typedefs (TYPE_PTRMEMFUNC_FN_TYPE (t),
1630 remove_attributes, flags);
1631 result = build_ptrmemfunc_type (t0);
1633 break;
1634 case ARRAY_TYPE:
1635 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1636 t0 = strip_typedefs (TYPE_DOMAIN (t), remove_attributes, flags);
1637 gcc_checking_assert (TYPE_DEPENDENT_P_VALID (t)
1638 || !dependent_type_p (t));
1639 result = build_cplus_array_type (type, t0, TYPE_DEPENDENT_P (t));
1640 break;
1641 case FUNCTION_TYPE:
1642 case METHOD_TYPE:
1644 tree arg_types = NULL, arg_node, arg_node2, arg_type;
1645 bool changed;
1647 /* Because we stomp on TREE_PURPOSE of TYPE_ARG_TYPES in many places
1648 around the compiler (e.g. cp_parser_late_parsing_default_args), we
1649 can't expect that re-hashing a function type will find a previous
1650 equivalent type, so try to reuse the input type if nothing has
1651 changed. If the type is itself a variant, that will change. */
1652 bool is_variant = typedef_variant_p (t);
1653 if (remove_attributes
1654 && (TYPE_ATTRIBUTES (t) || TYPE_USER_ALIGN (t)))
1655 is_variant = true;
1657 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1658 tree canon_spec = (flag_noexcept_type
1659 ? canonical_eh_spec (TYPE_RAISES_EXCEPTIONS (t))
1660 : NULL_TREE);
1661 changed = (type != TREE_TYPE (t) || is_variant
1662 || TYPE_RAISES_EXCEPTIONS (t) != canon_spec);
1664 for (arg_node = TYPE_ARG_TYPES (t);
1665 arg_node;
1666 arg_node = TREE_CHAIN (arg_node))
1668 if (arg_node == void_list_node)
1669 break;
1670 arg_type = strip_typedefs (TREE_VALUE (arg_node),
1671 remove_attributes, flags);
1672 gcc_assert (arg_type);
1673 if (arg_type == TREE_VALUE (arg_node) && !changed)
1674 continue;
1676 if (!changed)
1678 changed = true;
1679 for (arg_node2 = TYPE_ARG_TYPES (t);
1680 arg_node2 != arg_node;
1681 arg_node2 = TREE_CHAIN (arg_node2))
1682 arg_types
1683 = tree_cons (TREE_PURPOSE (arg_node2),
1684 TREE_VALUE (arg_node2), arg_types);
1687 arg_types
1688 = tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types);
1691 if (!changed)
1692 return t;
1694 if (arg_types)
1695 arg_types = nreverse (arg_types);
1697 /* A list of parameters not ending with an ellipsis
1698 must end with void_list_node. */
1699 if (arg_node)
1700 arg_types = chainon (arg_types, void_list_node);
1702 if (TREE_CODE (t) == METHOD_TYPE)
1704 tree class_type = TREE_TYPE (TREE_VALUE (arg_types));
1705 gcc_assert (class_type);
1706 result =
1707 build_method_type_directly (class_type, type,
1708 TREE_CHAIN (arg_types));
1710 else
1712 result = build_function_type (type, arg_types);
1713 result = apply_memfn_quals (result, type_memfn_quals (t));
1716 result = build_cp_fntype_variant (result,
1717 type_memfn_rqual (t), canon_spec,
1718 TYPE_HAS_LATE_RETURN_TYPE (t));
1720 break;
1721 case TYPENAME_TYPE:
1723 bool changed = false;
1724 tree fullname = TYPENAME_TYPE_FULLNAME (t);
1725 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR
1726 && TREE_OPERAND (fullname, 1))
1728 tree args = TREE_OPERAND (fullname, 1);
1729 tree new_args = copy_node (args);
1730 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
1732 tree arg = TREE_VEC_ELT (args, i);
1733 tree strip_arg = strip_typedefs (arg, remove_attributes, flags);
1734 TREE_VEC_ELT (new_args, i) = strip_arg;
1735 if (strip_arg != arg)
1736 changed = true;
1738 if (changed)
1740 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_args)
1741 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
1742 fullname
1743 = lookup_template_function (TREE_OPERAND (fullname, 0),
1744 new_args);
1746 else
1747 ggc_free (new_args);
1749 tree ctx = strip_typedefs (TYPE_CONTEXT (t), remove_attributes, flags);
1750 if (!changed && ctx == TYPE_CONTEXT (t) && !typedef_variant_p (t))
1751 return t;
1752 tree name = fullname;
1753 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR)
1754 name = TREE_OPERAND (fullname, 0);
1755 /* Use build_typename_type rather than make_typename_type because we
1756 don't want to resolve it here, just strip typedefs. */
1757 result = build_typename_type (ctx, name, fullname, typename_type);
1759 break;
1760 case DECLTYPE_TYPE:
1761 result = strip_typedefs_expr (DECLTYPE_TYPE_EXPR (t),
1762 remove_attributes, flags);
1763 if (result == DECLTYPE_TYPE_EXPR (t))
1764 result = NULL_TREE;
1765 else
1766 result = (finish_decltype_type
1767 (result,
1768 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t),
1769 tf_none));
1770 break;
1771 case TRAIT_TYPE:
1773 tree type1 = strip_typedefs (TRAIT_TYPE_TYPE1 (t),
1774 remove_attributes, flags);
1775 tree type2 = strip_typedefs (TRAIT_TYPE_TYPE2 (t),
1776 remove_attributes, flags);
1777 if (type1 == TRAIT_TYPE_TYPE1 (t) && type2 == TRAIT_TYPE_TYPE2 (t))
1778 result = NULL_TREE;
1779 else
1780 result = finish_trait_type (TRAIT_TYPE_KIND (t), type1, type2,
1781 tf_warning_or_error);
1783 break;
1784 case TYPE_PACK_EXPANSION:
1786 tree pat = PACK_EXPANSION_PATTERN (t);
1787 if (TYPE_P (pat))
1789 type = strip_typedefs (pat, remove_attributes, flags);
1790 if (type != pat)
1792 result = build_distinct_type_copy (t);
1793 PACK_EXPANSION_PATTERN (result) = type;
1797 break;
1798 default:
1799 break;
1802 if (!result)
1804 if (typedef_variant_p (t))
1806 if ((flags & STF_USER_VISIBLE)
1807 && !user_facing_original_type_p (t))
1808 return t;
1809 /* If T is a non-template alias or typedef, we can assume that
1810 instantiating its definition will hit any substitution failure,
1811 so we don't need to retain it here as well. */
1812 if (!alias_template_specialization_p (t, nt_opaque))
1813 flags |= STF_STRIP_DEPENDENT;
1814 result = strip_typedefs (DECL_ORIGINAL_TYPE (TYPE_NAME (t)),
1815 remove_attributes, flags);
1817 else
1818 result = TYPE_MAIN_VARIANT (t);
1820 /*gcc_assert (!typedef_variant_p (result)
1821 || dependent_alias_template_spec_p (result, nt_opaque)
1822 || ((flags & STF_USER_VISIBLE)
1823 && !user_facing_original_type_p (result)));*/
1825 if (COMPLETE_TYPE_P (result) && !COMPLETE_TYPE_P (t))
1826 /* If RESULT is complete and T isn't, it's likely the case that T
1827 is a variant of RESULT which hasn't been updated yet. Skip the
1828 attribute handling. */;
1829 else
1831 if (TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (result)
1832 || TYPE_ALIGN (t) != TYPE_ALIGN (result))
1834 gcc_assert (TYPE_USER_ALIGN (t));
1835 if (remove_attributes)
1836 *remove_attributes = true;
1837 else
1839 if (TYPE_ALIGN (t) == TYPE_ALIGN (result))
1840 result = build_variant_type_copy (result);
1841 else
1842 result = build_aligned_type (result, TYPE_ALIGN (t));
1843 TYPE_USER_ALIGN (result) = true;
1847 if (TYPE_ATTRIBUTES (t))
1849 if (remove_attributes)
1850 result = apply_identity_attributes (result, TYPE_ATTRIBUTES (t),
1851 remove_attributes);
1852 else
1853 result = cp_build_type_attribute_variant (result,
1854 TYPE_ATTRIBUTES (t));
1858 return cp_build_qualified_type (result, cp_type_quals (t));
1861 /* Like strip_typedefs above, but works on expressions (and other
1862 non-types such as TREE_VEC), so that in
1864 template<class T> struct A
1866 typedef T TT;
1867 B<sizeof(TT)> b;
1870 sizeof(TT) is replaced by sizeof(T). */
1872 tree
1873 strip_typedefs_expr (tree t, bool *remove_attributes, unsigned int flags)
1875 unsigned i,n;
1876 tree r, type, *ops;
1877 enum tree_code code;
1879 if (t == NULL_TREE || t == error_mark_node)
1880 return t;
1882 STRIP_ANY_LOCATION_WRAPPER (t);
1884 if (DECL_P (t) || CONSTANT_CLASS_P (t))
1885 return t;
1887 code = TREE_CODE (t);
1888 switch (code)
1890 case IDENTIFIER_NODE:
1891 case TEMPLATE_PARM_INDEX:
1892 case OVERLOAD:
1893 case BASELINK:
1894 case ARGUMENT_PACK_SELECT:
1895 return t;
1897 case TRAIT_EXPR:
1899 tree type1 = strip_typedefs (TRAIT_EXPR_TYPE1 (t),
1900 remove_attributes, flags);
1901 tree type2 = strip_typedefs (TRAIT_EXPR_TYPE2 (t),
1902 remove_attributes, flags);
1903 if (type1 == TRAIT_EXPR_TYPE1 (t)
1904 && type2 == TRAIT_EXPR_TYPE2 (t))
1905 return t;
1906 r = copy_node (t);
1907 TRAIT_EXPR_TYPE1 (r) = type1;
1908 TRAIT_EXPR_TYPE2 (r) = type2;
1909 return r;
1912 case TREE_LIST:
1914 bool changed = false;
1915 auto_vec<tree_pair, 4> vec;
1916 r = t;
1917 for (; t; t = TREE_CHAIN (t))
1919 tree purpose = strip_typedefs (TREE_PURPOSE (t),
1920 remove_attributes, flags);
1921 tree value = strip_typedefs (TREE_VALUE (t),
1922 remove_attributes, flags);
1923 if (purpose != TREE_PURPOSE (t) || value != TREE_VALUE (t))
1924 changed = true;
1925 vec.safe_push ({purpose, value});
1927 if (changed)
1929 r = NULL_TREE;
1930 for (int i = vec.length () - 1; i >= 0; i--)
1931 r = tree_cons (vec[i].first, vec[i].second, r);
1933 return r;
1936 case TREE_VEC:
1938 bool changed = false;
1939 releasing_vec vec;
1940 n = TREE_VEC_LENGTH (t);
1941 vec_safe_reserve (vec, n);
1942 for (i = 0; i < n; ++i)
1944 tree op = strip_typedefs (TREE_VEC_ELT (t, i),
1945 remove_attributes, flags);
1946 vec->quick_push (op);
1947 if (op != TREE_VEC_ELT (t, i))
1948 changed = true;
1950 if (changed)
1952 r = copy_node (t);
1953 for (i = 0; i < n; ++i)
1954 TREE_VEC_ELT (r, i) = (*vec)[i];
1955 NON_DEFAULT_TEMPLATE_ARGS_COUNT (r)
1956 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
1958 else
1959 r = t;
1960 return r;
1963 case CONSTRUCTOR:
1965 bool changed = false;
1966 vec<constructor_elt, va_gc> *vec
1967 = vec_safe_copy (CONSTRUCTOR_ELTS (t));
1968 n = CONSTRUCTOR_NELTS (t);
1969 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1970 for (i = 0; i < n; ++i)
1972 constructor_elt *e = &(*vec)[i];
1973 tree op = strip_typedefs (e->value, remove_attributes, flags);
1974 if (op != e->value)
1976 changed = true;
1977 e->value = op;
1979 gcc_checking_assert
1980 (e->index == strip_typedefs (e->index, remove_attributes,
1981 flags));
1984 if (!changed && type == TREE_TYPE (t))
1986 vec_free (vec);
1987 return t;
1989 else
1991 r = copy_node (t);
1992 TREE_TYPE (r) = type;
1993 CONSTRUCTOR_ELTS (r) = vec;
1994 return r;
1998 case LAMBDA_EXPR:
1999 return t;
2001 case STATEMENT_LIST:
2002 error ("statement-expression in a constant expression");
2003 return error_mark_node;
2005 default:
2006 break;
2009 gcc_assert (EXPR_P (t));
2011 n = cp_tree_operand_length (t);
2012 ops = XALLOCAVEC (tree, n);
2013 type = TREE_TYPE (t);
2015 switch (code)
2017 CASE_CONVERT:
2018 case IMPLICIT_CONV_EXPR:
2019 case DYNAMIC_CAST_EXPR:
2020 case STATIC_CAST_EXPR:
2021 case CONST_CAST_EXPR:
2022 case REINTERPRET_CAST_EXPR:
2023 case CAST_EXPR:
2024 case NEW_EXPR:
2025 type = strip_typedefs (type, remove_attributes, flags);
2026 /* fallthrough */
2028 default:
2029 for (i = 0; i < n; ++i)
2030 ops[i] = strip_typedefs (TREE_OPERAND (t, i),
2031 remove_attributes, flags);
2032 break;
2035 /* If nothing changed, return t. */
2036 for (i = 0; i < n; ++i)
2037 if (ops[i] != TREE_OPERAND (t, i))
2038 break;
2039 if (i == n && type == TREE_TYPE (t))
2040 return t;
2042 r = copy_node (t);
2043 TREE_TYPE (r) = type;
2044 for (i = 0; i < n; ++i)
2045 TREE_OPERAND (r, i) = ops[i];
2046 return r;
2049 /* Makes a copy of BINFO and TYPE, which is to be inherited into a
2050 graph dominated by T. If BINFO is NULL, TYPE is a dependent base,
2051 and we do a shallow copy. If BINFO is non-NULL, we do a deep copy.
2052 VIRT indicates whether TYPE is inherited virtually or not.
2053 IGO_PREV points at the previous binfo of the inheritance graph
2054 order chain. The newly copied binfo's TREE_CHAIN forms this
2055 ordering.
2057 The CLASSTYPE_VBASECLASSES vector of T is constructed in the
2058 correct order. That is in the order the bases themselves should be
2059 constructed in.
2061 The BINFO_INHERITANCE of a virtual base class points to the binfo
2062 of the most derived type. ??? We could probably change this so that
2063 BINFO_INHERITANCE becomes synonymous with BINFO_PRIMARY, and hence
2064 remove a field. They currently can only differ for primary virtual
2065 virtual bases. */
2067 tree
2068 copy_binfo (tree binfo, tree type, tree t, tree *igo_prev, int virt)
2070 tree new_binfo;
2072 if (virt)
2074 /* See if we've already made this virtual base. */
2075 new_binfo = binfo_for_vbase (type, t);
2076 if (new_binfo)
2077 return new_binfo;
2080 new_binfo = make_tree_binfo (binfo ? BINFO_N_BASE_BINFOS (binfo) : 0);
2081 BINFO_TYPE (new_binfo) = type;
2083 /* Chain it into the inheritance graph. */
2084 TREE_CHAIN (*igo_prev) = new_binfo;
2085 *igo_prev = new_binfo;
2087 if (binfo && !BINFO_DEPENDENT_BASE_P (binfo))
2089 int ix;
2090 tree base_binfo;
2092 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), type));
2094 BINFO_OFFSET (new_binfo) = BINFO_OFFSET (binfo);
2095 BINFO_VIRTUALS (new_binfo) = BINFO_VIRTUALS (binfo);
2097 /* We do not need to copy the accesses, as they are read only. */
2098 BINFO_BASE_ACCESSES (new_binfo) = BINFO_BASE_ACCESSES (binfo);
2100 /* Recursively copy base binfos of BINFO. */
2101 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
2103 tree new_base_binfo;
2104 new_base_binfo = copy_binfo (base_binfo, BINFO_TYPE (base_binfo),
2105 t, igo_prev,
2106 BINFO_VIRTUAL_P (base_binfo));
2108 if (!BINFO_INHERITANCE_CHAIN (new_base_binfo))
2109 BINFO_INHERITANCE_CHAIN (new_base_binfo) = new_binfo;
2110 BINFO_BASE_APPEND (new_binfo, new_base_binfo);
2113 else
2114 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
2116 if (virt)
2118 /* Push it onto the list after any virtual bases it contains
2119 will have been pushed. */
2120 CLASSTYPE_VBASECLASSES (t)->quick_push (new_binfo);
2121 BINFO_VIRTUAL_P (new_binfo) = 1;
2122 BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
2125 return new_binfo;
2128 /* Hashing of lists so that we don't make duplicates.
2129 The entry point is `list_hash_canon'. */
2131 struct list_proxy
2133 tree purpose;
2134 tree value;
2135 tree chain;
2138 struct list_hasher : ggc_ptr_hash<tree_node>
2140 typedef list_proxy *compare_type;
2142 static hashval_t hash (tree);
2143 static bool equal (tree, list_proxy *);
2146 /* Now here is the hash table. When recording a list, it is added
2147 to the slot whose index is the hash code mod the table size.
2148 Note that the hash table is used for several kinds of lists.
2149 While all these live in the same table, they are completely independent,
2150 and the hash code is computed differently for each of these. */
2152 static GTY (()) hash_table<list_hasher> *list_hash_table;
2154 /* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
2155 for a node we are thinking about adding). */
2157 bool
2158 list_hasher::equal (tree t, list_proxy *proxy)
2160 return (TREE_VALUE (t) == proxy->value
2161 && TREE_PURPOSE (t) == proxy->purpose
2162 && TREE_CHAIN (t) == proxy->chain);
2165 /* Compute a hash code for a list (chain of TREE_LIST nodes
2166 with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
2167 TREE_COMMON slots), by adding the hash codes of the individual entries. */
2169 static hashval_t
2170 list_hash_pieces (tree purpose, tree value, tree chain)
2172 hashval_t hashcode = 0;
2174 if (chain)
2175 hashcode += TREE_HASH (chain);
2177 if (value)
2178 hashcode += TREE_HASH (value);
2179 else
2180 hashcode += 1007;
2181 if (purpose)
2182 hashcode += TREE_HASH (purpose);
2183 else
2184 hashcode += 1009;
2185 return hashcode;
2188 /* Hash an already existing TREE_LIST. */
2190 hashval_t
2191 list_hasher::hash (tree t)
2193 return list_hash_pieces (TREE_PURPOSE (t),
2194 TREE_VALUE (t),
2195 TREE_CHAIN (t));
2198 /* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
2199 object for an identical list if one already exists. Otherwise, build a
2200 new one, and record it as the canonical object. */
2202 tree
2203 hash_tree_cons (tree purpose, tree value, tree chain)
2205 int hashcode = 0;
2206 tree *slot;
2207 struct list_proxy proxy;
2209 /* Hash the list node. */
2210 hashcode = list_hash_pieces (purpose, value, chain);
2211 /* Create a proxy for the TREE_LIST we would like to create. We
2212 don't actually create it so as to avoid creating garbage. */
2213 proxy.purpose = purpose;
2214 proxy.value = value;
2215 proxy.chain = chain;
2216 /* See if it is already in the table. */
2217 slot = list_hash_table->find_slot_with_hash (&proxy, hashcode, INSERT);
2218 /* If not, create a new node. */
2219 if (!*slot)
2220 *slot = tree_cons (purpose, value, chain);
2221 return (tree) *slot;
2224 /* Constructor for hashed lists. */
2226 tree
2227 hash_tree_chain (tree value, tree chain)
2229 return hash_tree_cons (NULL_TREE, value, chain);
2232 void
2233 debug_binfo (tree elem)
2235 HOST_WIDE_INT n;
2236 tree virtuals;
2238 fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
2239 "\nvtable type:\n",
2240 TYPE_NAME_STRING (BINFO_TYPE (elem)),
2241 TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
2242 debug_tree (BINFO_TYPE (elem));
2243 if (BINFO_VTABLE (elem))
2244 fprintf (stderr, "vtable decl \"%s\"\n",
2245 IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
2246 else
2247 fprintf (stderr, "no vtable decl yet\n");
2248 fprintf (stderr, "virtuals:\n");
2249 virtuals = BINFO_VIRTUALS (elem);
2250 n = 0;
2252 while (virtuals)
2254 tree fndecl = TREE_VALUE (virtuals);
2255 fprintf (stderr, "%s [%ld =? %ld]\n",
2256 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
2257 (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
2258 ++n;
2259 virtuals = TREE_CHAIN (virtuals);
2263 /* Build a representation for the qualified name SCOPE::NAME. TYPE is
2264 the type of the result expression, if known, or NULL_TREE if the
2265 resulting expression is type-dependent. If TEMPLATE_P is true,
2266 NAME is known to be a template because the user explicitly used the
2267 "template" keyword after the "::".
2269 All SCOPE_REFs should be built by use of this function. */
2271 tree
2272 build_qualified_name (tree type, tree scope, tree name, bool template_p)
2274 tree t;
2275 if (type == error_mark_node
2276 || scope == error_mark_node
2277 || name == error_mark_node)
2278 return error_mark_node;
2279 gcc_assert (TREE_CODE (name) != SCOPE_REF);
2280 t = build2 (SCOPE_REF, type, scope, name);
2281 QUALIFIED_NAME_IS_TEMPLATE (t) = template_p;
2282 PTRMEM_OK_P (t) = true;
2283 if (type)
2284 t = convert_from_reference (t);
2285 return t;
2288 /* Like check_qualified_type, but also check ref-qualifier, exception
2289 specification, and whether the return type was specified after the
2290 parameters. */
2292 static bool
2293 cp_check_qualified_type (const_tree cand, const_tree base, int type_quals,
2294 cp_ref_qualifier rqual, tree raises, bool late)
2296 return (TYPE_QUALS (cand) == type_quals
2297 && check_base_type (cand, base)
2298 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (cand),
2299 ce_exact)
2300 && TYPE_HAS_LATE_RETURN_TYPE (cand) == late
2301 && type_memfn_rqual (cand) == rqual);
2304 /* Build the FUNCTION_TYPE or METHOD_TYPE with the ref-qualifier RQUAL. */
2306 tree
2307 build_ref_qualified_type (tree type, cp_ref_qualifier rqual)
2309 tree raises = TYPE_RAISES_EXCEPTIONS (type);
2310 bool late = TYPE_HAS_LATE_RETURN_TYPE (type);
2311 return build_cp_fntype_variant (type, rqual, raises, late);
2314 tree
2315 make_binding_vec (tree name, unsigned clusters MEM_STAT_DECL)
2317 /* Stored in an unsigned short, but we're limited to the number of
2318 modules anyway. */
2319 gcc_checking_assert (clusters <= (unsigned short)(~0));
2320 size_t length = (offsetof (tree_binding_vec, vec)
2321 + clusters * sizeof (binding_cluster));
2322 tree vec = ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT);
2323 TREE_SET_CODE (vec, BINDING_VECTOR);
2324 BINDING_VECTOR_NAME (vec) = name;
2325 BINDING_VECTOR_ALLOC_CLUSTERS (vec) = clusters;
2326 BINDING_VECTOR_NUM_CLUSTERS (vec) = 0;
2328 return vec;
2331 /* Make a raw overload node containing FN. */
2333 tree
2334 ovl_make (tree fn, tree next)
2336 tree result = make_node (OVERLOAD);
2338 if (TREE_CODE (fn) == OVERLOAD)
2339 OVL_NESTED_P (result) = true;
2341 TREE_TYPE (result) = (next || TREE_CODE (fn) == TEMPLATE_DECL
2342 ? unknown_type_node : TREE_TYPE (fn));
2343 if (next && TREE_CODE (next) == OVERLOAD && OVL_DEDUP_P (next))
2344 OVL_DEDUP_P (result) = true;
2345 OVL_FUNCTION (result) = fn;
2346 OVL_CHAIN (result) = next;
2347 return result;
2350 /* Add FN to the (potentially NULL) overload set OVL. USING_OR_HIDDEN is >
2351 zero if this is a using-decl. It is > 1 if we're exporting the
2352 using decl. USING_OR_HIDDEN is < 0, if FN is hidden. (A decl
2353 cannot be both using and hidden.) We keep the hidden decls first,
2354 but remaining ones are unordered. */
2356 tree
2357 ovl_insert (tree fn, tree maybe_ovl, int using_or_hidden)
2359 tree result = maybe_ovl;
2360 tree insert_after = NULL_TREE;
2362 /* Skip hidden. */
2363 for (; maybe_ovl && TREE_CODE (maybe_ovl) == OVERLOAD
2364 && OVL_HIDDEN_P (maybe_ovl);
2365 maybe_ovl = OVL_CHAIN (maybe_ovl))
2367 gcc_checking_assert (!OVL_LOOKUP_P (maybe_ovl));
2368 insert_after = maybe_ovl;
2371 if (maybe_ovl || using_or_hidden || TREE_CODE (fn) == TEMPLATE_DECL)
2373 maybe_ovl = ovl_make (fn, maybe_ovl);
2375 if (using_or_hidden < 0)
2376 OVL_HIDDEN_P (maybe_ovl) = true;
2377 if (using_or_hidden > 0)
2379 OVL_DEDUP_P (maybe_ovl) = OVL_USING_P (maybe_ovl) = true;
2380 if (using_or_hidden > 1)
2381 OVL_EXPORT_P (maybe_ovl) = true;
2384 else
2385 maybe_ovl = fn;
2387 if (insert_after)
2389 OVL_CHAIN (insert_after) = maybe_ovl;
2390 TREE_TYPE (insert_after) = unknown_type_node;
2392 else
2393 result = maybe_ovl;
2395 return result;
2398 /* Skip any hidden names at the beginning of OVL. */
2400 tree
2401 ovl_skip_hidden (tree ovl)
2403 while (ovl && TREE_CODE (ovl) == OVERLOAD && OVL_HIDDEN_P (ovl))
2404 ovl = OVL_CHAIN (ovl);
2406 return ovl;
2409 /* NODE is an OVL_HIDDEN_P node that is now revealed. */
2411 tree
2412 ovl_iterator::reveal_node (tree overload, tree node)
2414 /* We cannot have returned NODE as part of a lookup overload, so we
2415 don't have to worry about preserving that. */
2417 OVL_HIDDEN_P (node) = false;
2418 if (tree chain = OVL_CHAIN (node))
2419 if (TREE_CODE (chain) == OVERLOAD)
2421 if (OVL_HIDDEN_P (chain))
2423 /* The node needs moving, and the simplest way is to remove it
2424 and reinsert. */
2425 overload = remove_node (overload, node);
2426 overload = ovl_insert (OVL_FUNCTION (node), overload);
2428 else if (OVL_DEDUP_P (chain))
2429 OVL_DEDUP_P (node) = true;
2431 return overload;
2434 /* NODE is on the overloads of OVL. Remove it.
2435 The removed node is unaltered and may continue to be iterated
2436 from (i.e. it is safe to remove a node from an overload one is
2437 currently iterating over). */
2439 tree
2440 ovl_iterator::remove_node (tree overload, tree node)
2442 tree *slot = &overload;
2443 while (*slot != node)
2445 tree probe = *slot;
2446 gcc_checking_assert (!OVL_LOOKUP_P (probe));
2448 slot = &OVL_CHAIN (probe);
2451 /* Stitch out NODE. We don't have to worry about now making a
2452 singleton overload (and consequently maybe setting its type),
2453 because all uses of this function will be followed by inserting a
2454 new node that must follow the place we've cut this out from. */
2455 if (TREE_CODE (node) != OVERLOAD)
2456 /* Cloned inherited ctors don't mark themselves as via_using. */
2457 *slot = NULL_TREE;
2458 else
2459 *slot = OVL_CHAIN (node);
2461 return overload;
2464 /* Mark or unmark a lookup set. */
2466 void
2467 lookup_mark (tree ovl, bool val)
2469 for (lkp_iterator iter (ovl); iter; ++iter)
2471 gcc_checking_assert (LOOKUP_SEEN_P (*iter) != val);
2472 LOOKUP_SEEN_P (*iter) = val;
2476 /* Add a set of new FNS into a lookup. */
2478 tree
2479 lookup_add (tree fns, tree lookup)
2481 if (fns == error_mark_node || lookup == error_mark_node)
2482 return error_mark_node;
2484 if (lookup || TREE_CODE (fns) == TEMPLATE_DECL)
2486 lookup = ovl_make (fns, lookup);
2487 OVL_LOOKUP_P (lookup) = true;
2489 else
2490 lookup = fns;
2492 return lookup;
2495 /* FNS is a new overload set, add them to LOOKUP, if they are not
2496 already present there. */
2498 tree
2499 lookup_maybe_add (tree fns, tree lookup, bool deduping)
2501 if (deduping)
2502 for (tree next, probe = fns; probe; probe = next)
2504 tree fn = probe;
2505 next = NULL_TREE;
2507 if (TREE_CODE (probe) == OVERLOAD)
2509 fn = OVL_FUNCTION (probe);
2510 next = OVL_CHAIN (probe);
2513 if (!LOOKUP_SEEN_P (fn))
2514 LOOKUP_SEEN_P (fn) = true;
2515 else
2517 /* This function was already seen. Insert all the
2518 predecessors onto the lookup. */
2519 for (; fns != probe; fns = OVL_CHAIN (fns))
2521 lookup = lookup_add (OVL_FUNCTION (fns), lookup);
2522 /* Propagate OVL_USING, but OVL_HIDDEN &
2523 OVL_DEDUP_P don't matter. */
2524 if (OVL_USING_P (fns))
2525 OVL_USING_P (lookup) = true;
2528 /* And now skip this function. */
2529 fns = next;
2533 if (fns)
2534 /* We ended in a set of new functions. Add them all in one go. */
2535 lookup = lookup_add (fns, lookup);
2537 return lookup;
2540 /* Returns nonzero if X is an expression for a (possibly overloaded)
2541 function. If "f" is a function or function template, "f", "c->f",
2542 "c.f", "C::f", and "f<int>" will all be considered possibly
2543 overloaded functions. Returns 2 if the function is actually
2544 overloaded, i.e., if it is impossible to know the type of the
2545 function without performing overload resolution. */
2548 is_overloaded_fn (tree x)
2550 STRIP_ANY_LOCATION_WRAPPER (x);
2552 /* A baselink is also considered an overloaded function. */
2553 if (TREE_CODE (x) == OFFSET_REF
2554 || TREE_CODE (x) == COMPONENT_REF)
2555 x = TREE_OPERAND (x, 1);
2556 x = MAYBE_BASELINK_FUNCTIONS (x);
2557 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
2558 x = TREE_OPERAND (x, 0);
2560 if (DECL_FUNCTION_TEMPLATE_P (OVL_FIRST (x))
2561 || (TREE_CODE (x) == OVERLOAD && !OVL_SINGLE_P (x)))
2562 return 2;
2564 return OVL_P (x);
2567 /* X is the CALL_EXPR_FN of a CALL_EXPR. If X represents a dependent name
2568 (14.6.2), return the IDENTIFIER_NODE for that name. Otherwise, return
2569 NULL_TREE. */
2571 tree
2572 dependent_name (tree x)
2574 /* FIXME a dependent name must be unqualified, but this function doesn't
2575 distinguish between qualified and unqualified identifiers. */
2576 if (identifier_p (x))
2577 return x;
2578 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
2579 x = TREE_OPERAND (x, 0);
2580 if (OVL_P (x))
2581 return OVL_NAME (x);
2582 return NULL_TREE;
2585 /* Like dependent_name, but instead takes a CALL_EXPR and also checks
2586 its dependence. */
2588 tree
2589 call_expr_dependent_name (tree x)
2591 if (TREE_TYPE (x) != NULL_TREE)
2592 /* X isn't dependent, so its callee isn't a dependent name. */
2593 return NULL_TREE;
2594 return dependent_name (CALL_EXPR_FN (x));
2597 /* Returns true iff X is an expression for an overloaded function
2598 whose type cannot be known without performing overload
2599 resolution. */
2601 bool
2602 really_overloaded_fn (tree x)
2604 return is_overloaded_fn (x) == 2;
2607 /* Get the overload set FROM refers to. Returns NULL if it's not an
2608 overload set. */
2610 tree
2611 maybe_get_fns (tree from)
2613 STRIP_ANY_LOCATION_WRAPPER (from);
2615 /* A baselink is also considered an overloaded function. */
2616 if (TREE_CODE (from) == OFFSET_REF
2617 || TREE_CODE (from) == COMPONENT_REF)
2618 from = TREE_OPERAND (from, 1);
2619 if (BASELINK_P (from))
2620 from = BASELINK_FUNCTIONS (from);
2621 if (TREE_CODE (from) == TEMPLATE_ID_EXPR)
2622 from = TREE_OPERAND (from, 0);
2624 if (OVL_P (from))
2625 return from;
2627 return NULL;
2630 /* FROM refers to an overload set. Return that set (or die). */
2632 tree
2633 get_fns (tree from)
2635 tree res = maybe_get_fns (from);
2637 gcc_assert (res);
2638 return res;
2641 /* Return the first function of the overload set FROM refers to. */
2643 tree
2644 get_first_fn (tree from)
2646 return OVL_FIRST (get_fns (from));
2649 /* Return the scope where the overloaded functions OVL were found. */
2651 tree
2652 ovl_scope (tree ovl)
2654 if (TREE_CODE (ovl) == OFFSET_REF
2655 || TREE_CODE (ovl) == COMPONENT_REF)
2656 ovl = TREE_OPERAND (ovl, 1);
2657 if (TREE_CODE (ovl) == BASELINK)
2658 return BINFO_TYPE (BASELINK_BINFO (ovl));
2659 if (TREE_CODE (ovl) == TEMPLATE_ID_EXPR)
2660 ovl = TREE_OPERAND (ovl, 0);
2661 /* Skip using-declarations. */
2662 lkp_iterator iter (ovl);
2664 ovl = *iter;
2665 while (iter.using_p () && ++iter);
2667 return CP_DECL_CONTEXT (ovl);
2670 #define PRINT_RING_SIZE 4
2672 static const char *
2673 cxx_printable_name_internal (tree decl, int v, bool translate)
2675 static unsigned int uid_ring[PRINT_RING_SIZE];
2676 static char *print_ring[PRINT_RING_SIZE];
2677 static bool trans_ring[PRINT_RING_SIZE];
2678 static int ring_counter;
2679 int i;
2681 /* Only cache functions. */
2682 if (v < 2
2683 || TREE_CODE (decl) != FUNCTION_DECL
2684 || DECL_LANG_SPECIFIC (decl) == 0)
2685 return lang_decl_name (decl, v, translate);
2687 /* See if this print name is lying around. */
2688 for (i = 0; i < PRINT_RING_SIZE; i++)
2689 if (uid_ring[i] == DECL_UID (decl) && translate == trans_ring[i])
2690 /* yes, so return it. */
2691 return print_ring[i];
2693 if (++ring_counter == PRINT_RING_SIZE)
2694 ring_counter = 0;
2696 if (current_function_decl != NULL_TREE)
2698 /* There may be both translated and untranslated versions of the
2699 name cached. */
2700 for (i = 0; i < 2; i++)
2702 if (uid_ring[ring_counter] == DECL_UID (current_function_decl))
2703 ring_counter += 1;
2704 if (ring_counter == PRINT_RING_SIZE)
2705 ring_counter = 0;
2707 gcc_assert (uid_ring[ring_counter] != DECL_UID (current_function_decl));
2710 free (print_ring[ring_counter]);
2712 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v, translate));
2713 uid_ring[ring_counter] = DECL_UID (decl);
2714 trans_ring[ring_counter] = translate;
2715 return print_ring[ring_counter];
2718 const char *
2719 cxx_printable_name (tree decl, int v)
2721 return cxx_printable_name_internal (decl, v, false);
2724 const char *
2725 cxx_printable_name_translate (tree decl, int v)
2727 return cxx_printable_name_internal (decl, v, true);
2730 /* Return the canonical version of exception-specification RAISES for a C++17
2731 function type, for use in type comparison and building TYPE_CANONICAL. */
2733 tree
2734 canonical_eh_spec (tree raises)
2736 if (raises == NULL_TREE)
2737 return raises;
2738 else if (DEFERRED_NOEXCEPT_SPEC_P (raises)
2739 || UNPARSED_NOEXCEPT_SPEC_P (raises)
2740 || uses_template_parms (raises)
2741 || uses_template_parms (TREE_PURPOSE (raises)))
2742 /* Keep a dependent or deferred exception specification. */
2743 return raises;
2744 else if (nothrow_spec_p (raises))
2745 /* throw() -> noexcept. */
2746 return noexcept_true_spec;
2747 else
2748 /* For C++17 type matching, anything else -> nothing. */
2749 return NULL_TREE;
2752 tree
2753 build_cp_fntype_variant (tree type, cp_ref_qualifier rqual,
2754 tree raises, bool late)
2756 cp_cv_quals type_quals = TYPE_QUALS (type);
2758 if (cp_check_qualified_type (type, type, type_quals, rqual, raises, late))
2759 return type;
2761 tree v = TYPE_MAIN_VARIANT (type);
2762 for (; v; v = TYPE_NEXT_VARIANT (v))
2763 if (cp_check_qualified_type (v, type, type_quals, rqual, raises, late))
2764 return v;
2766 /* Need to build a new variant. */
2767 v = build_variant_type_copy (type);
2768 if (!TYPE_DEPENDENT_P (v))
2769 /* We no longer know that it's not type-dependent. */
2770 TYPE_DEPENDENT_P_VALID (v) = false;
2771 TYPE_RAISES_EXCEPTIONS (v) = raises;
2772 TYPE_HAS_LATE_RETURN_TYPE (v) = late;
2773 switch (rqual)
2775 case REF_QUAL_RVALUE:
2776 FUNCTION_RVALUE_QUALIFIED (v) = 1;
2777 FUNCTION_REF_QUALIFIED (v) = 1;
2778 break;
2779 case REF_QUAL_LVALUE:
2780 FUNCTION_RVALUE_QUALIFIED (v) = 0;
2781 FUNCTION_REF_QUALIFIED (v) = 1;
2782 break;
2783 default:
2784 FUNCTION_REF_QUALIFIED (v) = 0;
2785 break;
2788 /* Canonicalize the exception specification. */
2789 tree cr = flag_noexcept_type ? canonical_eh_spec (raises) : NULL_TREE;
2791 if (TYPE_STRUCTURAL_EQUALITY_P (type))
2792 /* Propagate structural equality. */
2793 SET_TYPE_STRUCTURAL_EQUALITY (v);
2794 else if (TYPE_CANONICAL (type) != type || cr != raises || late)
2795 /* Build the underlying canonical type, since it is different
2796 from TYPE. */
2797 TYPE_CANONICAL (v) = build_cp_fntype_variant (TYPE_CANONICAL (type),
2798 rqual, cr, false);
2799 else
2800 /* T is its own canonical type. */
2801 TYPE_CANONICAL (v) = v;
2803 return v;
2806 /* TYPE is a function or method type with a deferred exception
2807 specification that has been parsed to RAISES. Fixup all the type
2808 variants that are affected in place. Via decltype &| noexcept
2809 tricks, the unparsed spec could have escaped into the type system.
2810 The general case is hard to fixup canonical types for. */
2812 void
2813 fixup_deferred_exception_variants (tree type, tree raises)
2815 tree original = TYPE_RAISES_EXCEPTIONS (type);
2816 tree cr = flag_noexcept_type ? canonical_eh_spec (raises) : NULL_TREE;
2818 gcc_checking_assert (UNPARSED_NOEXCEPT_SPEC_P (original));
2820 /* Though sucky, this walk will process the canonical variants
2821 first. */
2822 tree prev = NULL_TREE;
2823 for (tree variant = TYPE_MAIN_VARIANT (type);
2824 variant; prev = variant, variant = TYPE_NEXT_VARIANT (variant))
2825 if (TYPE_RAISES_EXCEPTIONS (variant) == original)
2827 gcc_checking_assert (variant != TYPE_MAIN_VARIANT (type));
2829 if (!TYPE_STRUCTURAL_EQUALITY_P (variant))
2831 cp_cv_quals var_quals = TYPE_QUALS (variant);
2832 cp_ref_qualifier rqual = type_memfn_rqual (variant);
2834 /* If VARIANT would become a dup (cp_check_qualified_type-wise)
2835 of an existing variant in the variant list of TYPE after its
2836 exception specification has been parsed, elide it. Otherwise,
2837 build_cp_fntype_variant could use it, leading to "canonical
2838 types differ for identical types." */
2839 tree v = TYPE_MAIN_VARIANT (type);
2840 for (; v; v = TYPE_NEXT_VARIANT (v))
2841 if (cp_check_qualified_type (v, variant, var_quals,
2842 rqual, cr, false))
2844 /* The main variant will not match V, so PREV will never
2845 be null. */
2846 TYPE_NEXT_VARIANT (prev) = TYPE_NEXT_VARIANT (variant);
2847 break;
2849 TYPE_RAISES_EXCEPTIONS (variant) = raises;
2851 if (!v)
2852 v = build_cp_fntype_variant (TYPE_CANONICAL (variant),
2853 rqual, cr, false);
2854 TYPE_CANONICAL (variant) = TYPE_CANONICAL (v);
2856 else
2857 TYPE_RAISES_EXCEPTIONS (variant) = raises;
2859 if (!TYPE_DEPENDENT_P (variant))
2860 /* We no longer know that it's not type-dependent. */
2861 TYPE_DEPENDENT_P_VALID (variant) = false;
2865 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
2866 listed in RAISES. */
2868 tree
2869 build_exception_variant (tree type, tree raises)
2871 cp_ref_qualifier rqual = type_memfn_rqual (type);
2872 bool late = TYPE_HAS_LATE_RETURN_TYPE (type);
2873 return build_cp_fntype_variant (type, rqual, raises, late);
2876 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
2877 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
2878 arguments. */
2880 tree
2881 bind_template_template_parm (tree t, tree newargs)
2883 tree decl = TYPE_NAME (t);
2884 tree t2;
2886 t2 = cxx_make_type (BOUND_TEMPLATE_TEMPLATE_PARM);
2887 decl = build_decl (input_location,
2888 TYPE_DECL, DECL_NAME (decl), NULL_TREE);
2889 SET_DECL_TEMPLATE_PARM_P (decl);
2891 /* These nodes have to be created to reflect new TYPE_DECL and template
2892 arguments. */
2893 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
2894 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
2895 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
2896 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
2898 TREE_TYPE (decl) = t2;
2899 TYPE_NAME (t2) = decl;
2900 TYPE_STUB_DECL (t2) = decl;
2901 TYPE_SIZE (t2) = 0;
2903 if (any_template_arguments_need_structural_equality_p (newargs))
2904 SET_TYPE_STRUCTURAL_EQUALITY (t2);
2905 else
2906 TYPE_CANONICAL (t2) = canonical_type_parameter (t2);
2908 return t2;
2911 /* Called from count_trees via walk_tree. */
2913 static tree
2914 count_trees_r (tree *tp, int *walk_subtrees, void *data)
2916 ++*((int *) data);
2918 if (TYPE_P (*tp))
2919 *walk_subtrees = 0;
2921 return NULL_TREE;
2924 /* Debugging function for measuring the rough complexity of a tree
2925 representation. */
2928 count_trees (tree t)
2930 int n_trees = 0;
2931 cp_walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
2932 return n_trees;
2935 /* Called from verify_stmt_tree via walk_tree. */
2937 static tree
2938 verify_stmt_tree_r (tree* tp, int * /*walk_subtrees*/, void* data)
2940 tree t = *tp;
2941 hash_table<nofree_ptr_hash <tree_node> > *statements
2942 = static_cast <hash_table<nofree_ptr_hash <tree_node> > *> (data);
2943 tree_node **slot;
2945 if (!STATEMENT_CODE_P (TREE_CODE (t)))
2946 return NULL_TREE;
2948 /* If this statement is already present in the hash table, then
2949 there is a circularity in the statement tree. */
2950 gcc_assert (!statements->find (t));
2952 slot = statements->find_slot (t, INSERT);
2953 *slot = t;
2955 return NULL_TREE;
2958 /* Debugging function to check that the statement T has not been
2959 corrupted. For now, this function simply checks that T contains no
2960 circularities. */
2962 void
2963 verify_stmt_tree (tree t)
2965 hash_table<nofree_ptr_hash <tree_node> > statements (37);
2966 cp_walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
2969 /* Check if the type T depends on a type with no linkage and if so,
2970 return it. If RELAXED_P then do not consider a class type declared
2971 within a vague-linkage function to have no linkage. Remember:
2972 no-linkage is not the same as internal-linkage. */
2974 tree
2975 no_linkage_check (tree t, bool relaxed_p)
2977 tree r;
2979 /* Lambda types that don't have mangling scope have no linkage. We
2980 check CLASSTYPE_LAMBDA_EXPR for error_mark_node because
2981 when we get here from pushtag none of the lambda information is
2982 set up yet, so we want to assume that the lambda has linkage and
2983 fix it up later if not. We need to check this even in templates so
2984 that we properly handle a lambda-expression in the signature. */
2985 if (LAMBDA_TYPE_P (t)
2986 && CLASSTYPE_LAMBDA_EXPR (t) != error_mark_node)
2988 tree extra = LAMBDA_TYPE_EXTRA_SCOPE (t);
2989 if (!extra)
2990 return t;
2993 /* Otherwise there's no point in checking linkage on template functions; we
2994 can't know their complete types. */
2995 if (processing_template_decl)
2996 return NULL_TREE;
2998 switch (TREE_CODE (t))
3000 case RECORD_TYPE:
3001 if (TYPE_PTRMEMFUNC_P (t))
3002 goto ptrmem;
3003 /* Fall through. */
3004 case UNION_TYPE:
3005 if (!CLASS_TYPE_P (t))
3006 return NULL_TREE;
3007 /* Fall through. */
3008 case ENUMERAL_TYPE:
3009 /* Only treat unnamed types as having no linkage if they're at
3010 namespace scope. This is core issue 966. */
3011 if (TYPE_UNNAMED_P (t) && TYPE_NAMESPACE_SCOPE_P (t))
3012 return t;
3014 for (r = CP_TYPE_CONTEXT (t); ; )
3016 /* If we're a nested type of a !TREE_PUBLIC class, we might not
3017 have linkage, or we might just be in an anonymous namespace.
3018 If we're in a TREE_PUBLIC class, we have linkage. */
3019 if (TYPE_P (r) && !TREE_PUBLIC (TYPE_NAME (r)))
3020 return no_linkage_check (TYPE_CONTEXT (t), relaxed_p);
3021 else if (TREE_CODE (r) == FUNCTION_DECL)
3023 if (!relaxed_p || !vague_linkage_p (r))
3024 return t;
3025 else
3026 r = CP_DECL_CONTEXT (r);
3028 else
3029 break;
3032 return NULL_TREE;
3034 case ARRAY_TYPE:
3035 case POINTER_TYPE:
3036 case REFERENCE_TYPE:
3037 case VECTOR_TYPE:
3038 return no_linkage_check (TREE_TYPE (t), relaxed_p);
3040 case OFFSET_TYPE:
3041 ptrmem:
3042 r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
3043 relaxed_p);
3044 if (r)
3045 return r;
3046 return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
3048 case METHOD_TYPE:
3049 case FUNCTION_TYPE:
3051 tree parm = TYPE_ARG_TYPES (t);
3052 if (TREE_CODE (t) == METHOD_TYPE)
3053 /* The 'this' pointer isn't interesting; a method has the same
3054 linkage (or lack thereof) as its enclosing class. */
3055 parm = TREE_CHAIN (parm);
3056 for (;
3057 parm && parm != void_list_node;
3058 parm = TREE_CHAIN (parm))
3060 r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
3061 if (r)
3062 return r;
3064 return no_linkage_check (TREE_TYPE (t), relaxed_p);
3067 default:
3068 return NULL_TREE;
3072 extern int depth_reached;
3074 void
3075 cxx_print_statistics (void)
3077 print_template_statistics ();
3078 if (GATHER_STATISTICS)
3079 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
3080 depth_reached);
3083 /* Return, as an INTEGER_CST node, the number of elements for TYPE
3084 (which is an ARRAY_TYPE). This counts only elements of the top
3085 array. */
3087 tree
3088 array_type_nelts_top (tree type)
3090 return fold_build2_loc (input_location,
3091 PLUS_EXPR, sizetype,
3092 array_type_nelts (type),
3093 size_one_node);
3096 /* Return, as an INTEGER_CST node, the number of elements for TYPE
3097 (which is an ARRAY_TYPE). This one is a recursive count of all
3098 ARRAY_TYPEs that are clumped together. */
3100 tree
3101 array_type_nelts_total (tree type)
3103 tree sz = array_type_nelts_top (type);
3104 type = TREE_TYPE (type);
3105 while (TREE_CODE (type) == ARRAY_TYPE)
3107 tree n = array_type_nelts_top (type);
3108 sz = fold_build2_loc (input_location,
3109 MULT_EXPR, sizetype, sz, n);
3110 type = TREE_TYPE (type);
3112 return sz;
3115 struct bot_data
3117 splay_tree target_remap;
3118 bool clear_location;
3121 /* Called from break_out_target_exprs via mapcar. */
3123 static tree
3124 bot_manip (tree* tp, int* walk_subtrees, void* data_)
3126 bot_data &data = *(bot_data*)data_;
3127 splay_tree target_remap = data.target_remap;
3128 tree t = *tp;
3130 if (!TYPE_P (t) && TREE_CONSTANT (t) && !TREE_SIDE_EFFECTS (t))
3132 /* There can't be any TARGET_EXPRs or their slot variables below this
3133 point. But we must make a copy, in case subsequent processing
3134 alters any part of it. For example, during gimplification a cast
3135 of the form (T) &X::f (where "f" is a member function) will lead
3136 to replacing the PTRMEM_CST for &X::f with a VAR_DECL. */
3137 *walk_subtrees = 0;
3138 *tp = unshare_expr (t);
3139 return NULL_TREE;
3141 if (TREE_CODE (t) == TARGET_EXPR)
3143 tree u;
3145 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
3147 u = build_cplus_new (TREE_TYPE (t), TREE_OPERAND (t, 1),
3148 tf_warning_or_error);
3149 if (u == error_mark_node)
3150 return u;
3151 if (AGGR_INIT_ZERO_FIRST (TREE_OPERAND (t, 1)))
3152 AGGR_INIT_ZERO_FIRST (TREE_OPERAND (u, 1)) = true;
3154 else
3155 u = force_target_expr (TREE_TYPE (t), TREE_OPERAND (t, 1),
3156 tf_warning_or_error);
3158 TARGET_EXPR_IMPLICIT_P (u) = TARGET_EXPR_IMPLICIT_P (t);
3159 TARGET_EXPR_LIST_INIT_P (u) = TARGET_EXPR_LIST_INIT_P (t);
3160 TARGET_EXPR_DIRECT_INIT_P (u) = TARGET_EXPR_DIRECT_INIT_P (t);
3161 TARGET_EXPR_ELIDING_P (u) = TARGET_EXPR_ELIDING_P (t);
3163 /* Map the old variable to the new one. */
3164 splay_tree_insert (target_remap,
3165 (splay_tree_key) TREE_OPERAND (t, 0),
3166 (splay_tree_value) TREE_OPERAND (u, 0));
3168 TREE_OPERAND (u, 1) = break_out_target_exprs (TREE_OPERAND (u, 1),
3169 data.clear_location);
3170 if (TREE_OPERAND (u, 1) == error_mark_node)
3171 return error_mark_node;
3173 if (data.clear_location)
3174 SET_EXPR_LOCATION (u, input_location);
3176 /* Replace the old expression with the new version. */
3177 *tp = u;
3178 /* We don't have to go below this point; the recursive call to
3179 break_out_target_exprs will have handled anything below this
3180 point. */
3181 *walk_subtrees = 0;
3182 return NULL_TREE;
3184 if (TREE_CODE (*tp) == SAVE_EXPR)
3186 t = *tp;
3187 splay_tree_node n = splay_tree_lookup (target_remap,
3188 (splay_tree_key) t);
3189 if (n)
3191 *tp = (tree)n->value;
3192 *walk_subtrees = 0;
3194 else
3196 copy_tree_r (tp, walk_subtrees, NULL);
3197 splay_tree_insert (target_remap,
3198 (splay_tree_key)t,
3199 (splay_tree_value)*tp);
3200 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
3201 splay_tree_insert (target_remap,
3202 (splay_tree_key)*tp,
3203 (splay_tree_value)*tp);
3205 return NULL_TREE;
3207 if (TREE_CODE (*tp) == DECL_EXPR
3208 && VAR_P (DECL_EXPR_DECL (*tp))
3209 && DECL_ARTIFICIAL (DECL_EXPR_DECL (*tp))
3210 && !TREE_STATIC (DECL_EXPR_DECL (*tp)))
3212 tree t;
3213 splay_tree_node n
3214 = splay_tree_lookup (target_remap,
3215 (splay_tree_key) DECL_EXPR_DECL (*tp));
3216 if (n)
3217 t = (tree) n->value;
3218 else
3220 t = create_temporary_var (TREE_TYPE (DECL_EXPR_DECL (*tp)));
3221 DECL_INITIAL (t) = DECL_INITIAL (DECL_EXPR_DECL (*tp));
3222 splay_tree_insert (target_remap,
3223 (splay_tree_key) DECL_EXPR_DECL (*tp),
3224 (splay_tree_value) t);
3226 copy_tree_r (tp, walk_subtrees, NULL);
3227 DECL_EXPR_DECL (*tp) = t;
3228 if (data.clear_location && EXPR_HAS_LOCATION (*tp))
3229 SET_EXPR_LOCATION (*tp, input_location);
3230 return NULL_TREE;
3232 if (TREE_CODE (*tp) == BIND_EXPR && BIND_EXPR_VARS (*tp))
3234 copy_tree_r (tp, walk_subtrees, NULL);
3235 for (tree *p = &BIND_EXPR_VARS (*tp); *p; p = &DECL_CHAIN (*p))
3237 gcc_assert (VAR_P (*p) && DECL_ARTIFICIAL (*p) && !TREE_STATIC (*p));
3238 tree t = create_temporary_var (TREE_TYPE (*p));
3239 DECL_INITIAL (t) = DECL_INITIAL (*p);
3240 DECL_CHAIN (t) = DECL_CHAIN (*p);
3241 splay_tree_insert (target_remap, (splay_tree_key) *p,
3242 (splay_tree_value) t);
3243 *p = t;
3245 if (data.clear_location && EXPR_HAS_LOCATION (*tp))
3246 SET_EXPR_LOCATION (*tp, input_location);
3247 return NULL_TREE;
3250 /* Make a copy of this node. */
3251 t = copy_tree_r (tp, walk_subtrees, NULL);
3252 if (TREE_CODE (*tp) == CALL_EXPR || TREE_CODE (*tp) == AGGR_INIT_EXPR)
3253 if (!processing_template_decl)
3254 set_flags_from_callee (*tp);
3255 if (data.clear_location && EXPR_HAS_LOCATION (*tp))
3256 SET_EXPR_LOCATION (*tp, input_location);
3257 return t;
3260 /* Replace all remapped VAR_DECLs in T with their new equivalents.
3261 DATA is really a splay-tree mapping old variables to new
3262 variables. */
3264 static tree
3265 bot_replace (tree* t, int */*walk_subtrees*/, void* data_)
3267 bot_data &data = *(bot_data*)data_;
3268 splay_tree target_remap = data.target_remap;
3270 if (VAR_P (*t))
3272 splay_tree_node n = splay_tree_lookup (target_remap,
3273 (splay_tree_key) *t);
3274 if (n)
3275 *t = (tree) n->value;
3277 else if (TREE_CODE (*t) == PARM_DECL
3278 && DECL_NAME (*t) == this_identifier
3279 && !DECL_CONTEXT (*t))
3281 /* In an NSDMI we need to replace the 'this' parameter we used for
3282 parsing with the real one for this function. */
3283 *t = current_class_ptr;
3285 else if (TREE_CODE (*t) == CONVERT_EXPR
3286 && CONVERT_EXPR_VBASE_PATH (*t))
3288 /* In an NSDMI build_base_path defers building conversions to morally
3289 virtual bases, and we handle it here. */
3290 tree basetype = TREE_TYPE (*t);
3291 *t = convert_to_base (TREE_OPERAND (*t, 0), basetype,
3292 /*check_access=*/false, /*nonnull=*/true,
3293 tf_warning_or_error);
3296 return NULL_TREE;
3299 /* When we parse a default argument expression, we may create
3300 temporary variables via TARGET_EXPRs. When we actually use the
3301 default-argument expression, we make a copy of the expression
3302 and replace the temporaries with appropriate local versions.
3304 If CLEAR_LOCATION is true, override any EXPR_LOCATION with
3305 input_location. */
3307 tree
3308 break_out_target_exprs (tree t, bool clear_location /* = false */)
3310 static int target_remap_count;
3311 static splay_tree target_remap;
3313 /* We shouldn't be called on templated trees, nor do we want to
3314 produce them. */
3315 gcc_checking_assert (!processing_template_decl);
3317 if (!target_remap_count++)
3318 target_remap = splay_tree_new (splay_tree_compare_pointers,
3319 /*splay_tree_delete_key_fn=*/NULL,
3320 /*splay_tree_delete_value_fn=*/NULL);
3321 bot_data data = { target_remap, clear_location };
3322 if (cp_walk_tree (&t, bot_manip, &data, NULL) == error_mark_node)
3323 t = error_mark_node;
3324 if (cp_walk_tree (&t, bot_replace, &data, NULL) == error_mark_node)
3325 t = error_mark_node;
3327 if (!--target_remap_count)
3329 splay_tree_delete (target_remap);
3330 target_remap = NULL;
3333 return t;
3336 /* Build an expression for the subobject of OBJ at CONSTRUCTOR index INDEX,
3337 which we expect to have type TYPE. */
3339 tree
3340 build_ctor_subob_ref (tree index, tree type, tree obj)
3342 if (index == NULL_TREE)
3343 /* Can't refer to a particular member of a vector. */
3344 obj = NULL_TREE;
3345 else if (TREE_CODE (index) == INTEGER_CST)
3346 obj = cp_build_array_ref (input_location, obj, index, tf_none);
3347 else
3348 obj = build_class_member_access_expr (obj, index, NULL_TREE,
3349 /*reference*/false, tf_none);
3350 if (obj)
3352 tree objtype = TREE_TYPE (obj);
3353 if (TREE_CODE (objtype) == ARRAY_TYPE && !TYPE_DOMAIN (objtype))
3355 /* When the destination object refers to a flexible array member
3356 verify that it matches the type of the source object except
3357 for its domain and qualifiers. */
3358 gcc_assert (comptypes (TYPE_MAIN_VARIANT (type),
3359 TYPE_MAIN_VARIANT (objtype),
3360 COMPARE_REDECLARATION));
3362 else
3363 gcc_assert (same_type_ignoring_top_level_qualifiers_p (type, objtype));
3366 return obj;
3369 struct replace_placeholders_t
3371 tree obj; /* The object to be substituted for a PLACEHOLDER_EXPR. */
3372 tree exp; /* The outermost exp. */
3373 bool seen; /* Whether we've encountered a PLACEHOLDER_EXPR. */
3374 hash_set<tree> *pset; /* To avoid walking same trees multiple times. */
3377 /* Like substitute_placeholder_in_expr, but handle C++ tree codes and
3378 build up subexpressions as we go deeper. */
3380 static tree
3381 replace_placeholders_r (tree* t, int* walk_subtrees, void* data_)
3383 replace_placeholders_t *d = static_cast<replace_placeholders_t*>(data_);
3384 tree obj = d->obj;
3386 if (TYPE_P (*t) || TREE_CONSTANT (*t))
3388 *walk_subtrees = false;
3389 return NULL_TREE;
3392 switch (TREE_CODE (*t))
3394 case PLACEHOLDER_EXPR:
3396 tree x = obj;
3397 for (; !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (*t),
3398 TREE_TYPE (x));
3399 x = TREE_OPERAND (x, 0))
3400 gcc_assert (handled_component_p (x));
3401 *t = unshare_expr (x);
3402 *walk_subtrees = false;
3403 d->seen = true;
3405 break;
3407 case CONSTRUCTOR:
3409 constructor_elt *ce;
3410 vec<constructor_elt,va_gc> *v = CONSTRUCTOR_ELTS (*t);
3411 /* Don't walk into CONSTRUCTOR_PLACEHOLDER_BOUNDARY ctors
3412 other than the d->exp one, those have PLACEHOLDER_EXPRs
3413 related to another object. */
3414 if ((CONSTRUCTOR_PLACEHOLDER_BOUNDARY (*t)
3415 && *t != d->exp)
3416 || d->pset->add (*t))
3418 *walk_subtrees = false;
3419 return NULL_TREE;
3421 for (unsigned i = 0; vec_safe_iterate (v, i, &ce); ++i)
3423 tree *valp = &ce->value;
3424 tree type = TREE_TYPE (*valp);
3425 tree subob = obj;
3427 /* Elements with RANGE_EXPR index shouldn't have any
3428 placeholders in them. */
3429 if (ce->index && TREE_CODE (ce->index) == RANGE_EXPR)
3430 continue;
3432 if (TREE_CODE (*valp) == CONSTRUCTOR
3433 && AGGREGATE_TYPE_P (type))
3435 /* If we're looking at the initializer for OBJ, then build
3436 a sub-object reference. If we're looking at an
3437 initializer for another object, just pass OBJ down. */
3438 if (same_type_ignoring_top_level_qualifiers_p
3439 (TREE_TYPE (*t), TREE_TYPE (obj)))
3440 subob = build_ctor_subob_ref (ce->index, type, obj);
3441 if (TREE_CODE (*valp) == TARGET_EXPR)
3442 valp = &TARGET_EXPR_INITIAL (*valp);
3444 d->obj = subob;
3445 cp_walk_tree (valp, replace_placeholders_r, data_, NULL);
3446 d->obj = obj;
3448 *walk_subtrees = false;
3449 break;
3452 default:
3453 if (d->pset->add (*t))
3454 *walk_subtrees = false;
3455 break;
3458 return NULL_TREE;
3461 /* Replace PLACEHOLDER_EXPRs in EXP with object OBJ. SEEN_P is set if
3462 a PLACEHOLDER_EXPR has been encountered. */
3464 tree
3465 replace_placeholders (tree exp, tree obj, bool *seen_p /*= NULL*/)
3467 /* This is only relevant for C++14. */
3468 if (cxx_dialect < cxx14)
3469 return exp;
3471 /* If the object isn't a (member of a) class, do nothing. */
3472 tree op0 = obj;
3473 while (handled_component_p (op0))
3474 op0 = TREE_OPERAND (op0, 0);
3475 if (!CLASS_TYPE_P (strip_array_types (TREE_TYPE (op0))))
3476 return exp;
3478 tree *tp = &exp;
3479 if (TREE_CODE (exp) == TARGET_EXPR)
3480 tp = &TARGET_EXPR_INITIAL (exp);
3481 hash_set<tree> pset;
3482 replace_placeholders_t data = { obj, *tp, false, &pset };
3483 cp_walk_tree (tp, replace_placeholders_r, &data, NULL);
3484 if (seen_p)
3485 *seen_p = data.seen;
3486 return exp;
3489 /* Callback function for find_placeholders. */
3491 static tree
3492 find_placeholders_r (tree *t, int *walk_subtrees, void *)
3494 if (TYPE_P (*t) || TREE_CONSTANT (*t))
3496 *walk_subtrees = false;
3497 return NULL_TREE;
3500 switch (TREE_CODE (*t))
3502 case PLACEHOLDER_EXPR:
3503 return *t;
3505 case CONSTRUCTOR:
3506 if (CONSTRUCTOR_PLACEHOLDER_BOUNDARY (*t))
3507 *walk_subtrees = false;
3508 break;
3510 default:
3511 break;
3514 return NULL_TREE;
3517 /* Return true if EXP contains a PLACEHOLDER_EXPR. Don't walk into
3518 ctors with CONSTRUCTOR_PLACEHOLDER_BOUNDARY flag set. */
3520 bool
3521 find_placeholders (tree exp)
3523 /* This is only relevant for C++14. */
3524 if (cxx_dialect < cxx14)
3525 return false;
3527 return cp_walk_tree_without_duplicates (&exp, find_placeholders_r, NULL);
3530 /* Similar to `build_nt', but for template definitions of dependent
3531 expressions */
3533 tree
3534 build_min_nt_loc (location_t loc, enum tree_code code, ...)
3536 tree t;
3537 int length;
3538 int i;
3539 va_list p;
3541 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3543 va_start (p, code);
3545 t = make_node (code);
3546 SET_EXPR_LOCATION (t, loc);
3547 length = TREE_CODE_LENGTH (code);
3549 for (i = 0; i < length; i++)
3550 TREE_OPERAND (t, i) = va_arg (p, tree);
3552 va_end (p);
3553 return t;
3556 /* Similar to `build', but for template definitions. */
3558 tree
3559 build_min (enum tree_code code, tree tt, ...)
3561 tree t;
3562 int length;
3563 int i;
3564 va_list p;
3566 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3568 va_start (p, tt);
3570 t = make_node (code);
3571 length = TREE_CODE_LENGTH (code);
3572 TREE_TYPE (t) = tt;
3574 for (i = 0; i < length; i++)
3576 tree x = va_arg (p, tree);
3577 TREE_OPERAND (t, i) = x;
3578 if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
3579 TREE_SIDE_EFFECTS (t) = 1;
3582 va_end (p);
3584 return t;
3587 /* Similar to `build', but for template definitions of non-dependent
3588 expressions. NON_DEP is the non-dependent expression that has been
3589 built. */
3591 tree
3592 build_min_non_dep (enum tree_code code, tree non_dep, ...)
3594 tree t;
3595 int length;
3596 int i;
3597 va_list p;
3599 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3601 va_start (p, non_dep);
3603 if (REFERENCE_REF_P (non_dep))
3604 non_dep = TREE_OPERAND (non_dep, 0);
3606 t = make_node (code);
3607 SET_EXPR_LOCATION (t, cp_expr_loc_or_input_loc (non_dep));
3608 length = TREE_CODE_LENGTH (code);
3609 TREE_TYPE (t) = unlowered_expr_type (non_dep);
3610 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
3612 for (i = 0; i < length; i++)
3614 tree x = va_arg (p, tree);
3615 TREE_OPERAND (t, i) = x;
3616 if (x && !TYPE_P (x))
3617 TREE_SIDE_EFFECTS (t) |= TREE_SIDE_EFFECTS (x);
3620 va_end (p);
3621 return convert_from_reference (t);
3624 /* Similar to build_min_nt, but call expressions */
3626 tree
3627 build_min_nt_call_vec (tree fn, vec<tree, va_gc> *args)
3629 tree ret, t;
3630 unsigned int ix;
3632 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
3633 CALL_EXPR_FN (ret) = fn;
3634 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
3635 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
3636 CALL_EXPR_ARG (ret, ix) = t;
3638 return ret;
3641 /* Similar to `build_min_nt_call_vec', but for template definitions of
3642 non-dependent expressions. NON_DEP is the non-dependent expression
3643 that has been built. */
3645 tree
3646 build_min_non_dep_call_vec (tree non_dep, tree fn, vec<tree, va_gc> *argvec)
3648 tree t = build_min_nt_call_vec (fn, argvec);
3649 if (REFERENCE_REF_P (non_dep))
3650 non_dep = TREE_OPERAND (non_dep, 0);
3651 TREE_TYPE (t) = TREE_TYPE (non_dep);
3652 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
3653 if (argvec)
3654 for (tree x : *argvec)
3655 if (x && !TYPE_P (x))
3656 TREE_SIDE_EFFECTS (t) |= TREE_SIDE_EFFECTS (x);
3657 return convert_from_reference (t);
3660 /* Similar to build_min_non_dep, but for expressions that have been resolved to
3661 a call to an operator overload. OP is the operator that has been
3662 overloaded. NON_DEP is the non-dependent expression that's been built,
3663 which should be a CALL_EXPR or an INDIRECT_REF to a CALL_EXPR. OVERLOAD is
3664 the overload that NON_DEP is calling. */
3666 tree
3667 build_min_non_dep_op_overload (enum tree_code op,
3668 tree non_dep,
3669 tree overload, ...)
3671 va_list p;
3672 int nargs, expected_nargs;
3673 tree fn, call, obj = NULL_TREE;
3675 non_dep = extract_call_expr (non_dep);
3677 nargs = call_expr_nargs (non_dep);
3679 expected_nargs = cp_tree_code_length (op);
3680 if (DECL_OBJECT_MEMBER_FUNCTION_P (overload)
3681 /* For ARRAY_REF, operator[] is either a non-static member or newly
3682 static member, never out of class and for the static member case
3683 if user uses single index the operator[] needs to have a single
3684 argument as well, but the function is called with 2 - the object
3685 it is invoked on and the index. */
3686 || op == ARRAY_REF)
3687 expected_nargs -= 1;
3688 if ((op == POSTINCREMENT_EXPR
3689 || op == POSTDECREMENT_EXPR)
3690 /* With -fpermissive non_dep could be operator++(). */
3691 && (!flag_permissive || nargs != expected_nargs))
3692 expected_nargs += 1;
3693 gcc_assert (nargs == expected_nargs);
3695 releasing_vec args;
3696 va_start (p, overload);
3698 if (!DECL_OBJECT_MEMBER_FUNCTION_P (overload))
3700 fn = overload;
3701 if (op == ARRAY_REF)
3702 obj = va_arg (p, tree);
3703 for (int i = 0; i < nargs; i++)
3705 tree arg = va_arg (p, tree);
3706 vec_safe_push (args, arg);
3709 else
3711 tree object = va_arg (p, tree);
3712 tree binfo = TYPE_BINFO (TREE_TYPE (object));
3713 tree method = build_baselink (binfo, binfo, overload, NULL_TREE);
3714 fn = build_min (COMPONENT_REF, TREE_TYPE (overload),
3715 object, method, NULL_TREE);
3716 for (int i = 0; i < nargs; i++)
3718 tree arg = va_arg (p, tree);
3719 vec_safe_push (args, arg);
3723 va_end (p);
3724 call = build_min_non_dep_call_vec (non_dep, fn, args);
3726 tree call_expr = extract_call_expr (call);
3727 KOENIG_LOOKUP_P (call_expr) = KOENIG_LOOKUP_P (non_dep);
3728 CALL_EXPR_OPERATOR_SYNTAX (call_expr) = true;
3729 CALL_EXPR_ORDERED_ARGS (call_expr) = CALL_EXPR_ORDERED_ARGS (non_dep);
3730 CALL_EXPR_REVERSE_ARGS (call_expr) = CALL_EXPR_REVERSE_ARGS (non_dep);
3732 if (obj)
3733 return keep_unused_object_arg (call, obj, overload);
3734 return call;
3737 /* Similar to above build_min_non_dep_op_overload, but arguments
3738 are taken from ARGS vector. */
3740 tree
3741 build_min_non_dep_op_overload (tree non_dep, tree overload, tree object,
3742 vec<tree, va_gc> *args)
3744 non_dep = extract_call_expr (non_dep);
3746 unsigned int nargs = call_expr_nargs (non_dep);
3747 tree fn = overload;
3748 if (DECL_OBJECT_MEMBER_FUNCTION_P (overload))
3750 tree binfo = TYPE_BINFO (TREE_TYPE (object));
3751 tree method = build_baselink (binfo, binfo, overload, NULL_TREE);
3752 fn = build_min (COMPONENT_REF, TREE_TYPE (overload),
3753 object, method, NULL_TREE);
3754 object = NULL_TREE;
3756 gcc_assert (vec_safe_length (args) == nargs);
3758 tree call = build_min_non_dep_call_vec (non_dep, fn, args);
3760 tree call_expr = extract_call_expr (call);
3761 KOENIG_LOOKUP_P (call_expr) = KOENIG_LOOKUP_P (non_dep);
3762 CALL_EXPR_OPERATOR_SYNTAX (call_expr) = true;
3763 CALL_EXPR_ORDERED_ARGS (call_expr) = CALL_EXPR_ORDERED_ARGS (non_dep);
3764 CALL_EXPR_REVERSE_ARGS (call_expr) = CALL_EXPR_REVERSE_ARGS (non_dep);
3766 if (object)
3767 return keep_unused_object_arg (call, object, overload);
3768 return call;
3771 /* Return a new tree vec copied from VEC, with ELT inserted at index IDX. */
3773 vec<tree, va_gc> *
3774 vec_copy_and_insert (vec<tree, va_gc> *old_vec, tree elt, unsigned idx)
3776 unsigned len = vec_safe_length (old_vec);
3777 gcc_assert (idx <= len);
3779 vec<tree, va_gc> *new_vec = NULL;
3780 vec_alloc (new_vec, len + 1);
3782 unsigned i;
3783 for (i = 0; i < len; ++i)
3785 if (i == idx)
3786 new_vec->quick_push (elt);
3787 new_vec->quick_push ((*old_vec)[i]);
3789 if (i == idx)
3790 new_vec->quick_push (elt);
3792 return new_vec;
3795 tree
3796 get_type_decl (tree t)
3798 if (TREE_CODE (t) == TYPE_DECL)
3799 return t;
3800 if (TYPE_P (t))
3801 return TYPE_STUB_DECL (t);
3802 gcc_assert (t == error_mark_node);
3803 return t;
3806 /* Returns the namespace that contains DECL, whether directly or
3807 indirectly. */
3809 tree
3810 decl_namespace_context (tree decl)
3812 while (1)
3814 if (TREE_CODE (decl) == NAMESPACE_DECL)
3815 return decl;
3816 else if (TYPE_P (decl))
3817 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
3818 else
3819 decl = CP_DECL_CONTEXT (decl);
3823 /* Returns true if decl is within an anonymous namespace, however deeply
3824 nested, or false otherwise. */
3826 bool
3827 decl_anon_ns_mem_p (tree decl)
3829 return !TREE_PUBLIC (decl_namespace_context (decl));
3832 /* Returns true if the enclosing scope of DECL has internal or no linkage. */
3834 bool
3835 decl_internal_context_p (const_tree decl)
3837 while (TREE_CODE (decl) != NAMESPACE_DECL)
3839 /* Classes inside anonymous namespaces have TREE_PUBLIC == 0. */
3840 if (TYPE_P (decl))
3841 return !TREE_PUBLIC (TYPE_MAIN_DECL (decl));
3843 decl = CP_DECL_CONTEXT (decl);
3845 return !TREE_PUBLIC (decl);
3848 /* Subroutine of cp_tree_equal: t1 and t2 are two CALL_EXPRs.
3849 Return whether their CALL_EXPR_FNs are equivalent. */
3851 static bool
3852 called_fns_equal (tree t1, tree t2)
3854 /* Core 1321: dependent names are equivalent even if the overload sets
3855 are different. But do compare explicit template arguments. */
3856 tree name1 = call_expr_dependent_name (t1);
3857 tree name2 = call_expr_dependent_name (t2);
3858 t1 = CALL_EXPR_FN (t1);
3859 t2 = CALL_EXPR_FN (t2);
3860 if (name1 || name2)
3862 tree targs1 = NULL_TREE, targs2 = NULL_TREE;
3864 if (name1 != name2)
3865 return false;
3867 /* FIXME dependent_name currently returns an unqualified name regardless
3868 of whether the function was named with a qualified- or unqualified-id.
3869 Until that's fixed, check that we aren't looking at overload sets from
3870 different scopes. */
3871 if (is_overloaded_fn (t1) && is_overloaded_fn (t2)
3872 && (DECL_CONTEXT (get_first_fn (t1))
3873 != DECL_CONTEXT (get_first_fn (t2))))
3874 return false;
3876 if (TREE_CODE (t1) == TEMPLATE_ID_EXPR)
3877 targs1 = TREE_OPERAND (t1, 1);
3878 if (TREE_CODE (t2) == TEMPLATE_ID_EXPR)
3879 targs2 = TREE_OPERAND (t2, 1);
3880 return cp_tree_equal (targs1, targs2);
3882 else
3883 return cp_tree_equal (t1, t2);
3886 bool comparing_override_contracts;
3888 /* In a component reference, return the innermost object of
3889 the postfix-expression. */
3891 static tree
3892 get_innermost_component (tree t)
3894 gcc_assert (TREE_CODE (t) == COMPONENT_REF);
3895 while (TREE_CODE (t) == COMPONENT_REF)
3896 t = TREE_OPERAND (t, 0);
3897 return t;
3900 /* Returns true if T is a possibly converted 'this' or '*this' expression. */
3902 static bool
3903 is_this_expression (tree t)
3905 t = get_innermost_component (t);
3906 /* See through deferences and no-op conversions. */
3907 if (INDIRECT_REF_P (t))
3908 t = TREE_OPERAND (t, 0);
3909 if (TREE_CODE (t) == NOP_EXPR)
3910 t = TREE_OPERAND (t, 0);
3911 return is_this_parameter (t);
3914 static bool
3915 comparing_this_references (tree t1, tree t2)
3917 return is_this_expression (t1) && is_this_expression (t2);
3920 static bool
3921 equivalent_member_references (tree t1, tree t2)
3923 if (!comparing_this_references (t1, t2))
3924 return false;
3925 t1 = TREE_OPERAND (t1, 1);
3926 t2 = TREE_OPERAND (t2, 1);
3927 return t1 == t2;
3930 /* Return truthvalue of whether T1 is the same tree structure as T2.
3931 Return 1 if they are the same. Return 0 if they are different. */
3933 bool
3934 cp_tree_equal (tree t1, tree t2)
3936 enum tree_code code1, code2;
3938 if (t1 == t2)
3939 return true;
3940 if (!t1 || !t2)
3941 return false;
3943 code1 = TREE_CODE (t1);
3944 code2 = TREE_CODE (t2);
3946 if (code1 != code2)
3947 return false;
3949 if (CONSTANT_CLASS_P (t1)
3950 && !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3951 return false;
3953 switch (code1)
3955 case VOID_CST:
3956 /* There's only a single VOID_CST node, so we should never reach
3957 here. */
3958 gcc_unreachable ();
3960 case INTEGER_CST:
3961 return tree_int_cst_equal (t1, t2);
3963 case REAL_CST:
3964 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
3966 case STRING_CST:
3967 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3968 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3969 TREE_STRING_LENGTH (t1));
3971 case FIXED_CST:
3972 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1),
3973 TREE_FIXED_CST (t2));
3975 case COMPLEX_CST:
3976 return cp_tree_equal (TREE_REALPART (t1), TREE_REALPART (t2))
3977 && cp_tree_equal (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
3979 case VECTOR_CST:
3980 return operand_equal_p (t1, t2, OEP_ONLY_CONST);
3982 case CONSTRUCTOR:
3983 /* We need to do this when determining whether or not two
3984 non-type pointer to member function template arguments
3985 are the same. */
3986 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
3987 || CONSTRUCTOR_NELTS (t1) != CONSTRUCTOR_NELTS (t2))
3988 return false;
3990 tree field, value;
3991 unsigned int i;
3992 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, field, value)
3994 constructor_elt *elt2 = CONSTRUCTOR_ELT (t2, i);
3995 if (!cp_tree_equal (field, elt2->index)
3996 || !cp_tree_equal (value, elt2->value))
3997 return false;
4000 return true;
4002 case TREE_LIST:
4003 if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
4004 return false;
4005 if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
4006 return false;
4007 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
4009 case SAVE_EXPR:
4010 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
4012 case CALL_EXPR:
4014 if (KOENIG_LOOKUP_P (t1) != KOENIG_LOOKUP_P (t2))
4015 return false;
4017 if (!called_fns_equal (t1, t2))
4018 return false;
4020 call_expr_arg_iterator iter1, iter2;
4021 init_call_expr_arg_iterator (t1, &iter1);
4022 init_call_expr_arg_iterator (t2, &iter2);
4023 if (iter1.n != iter2.n)
4024 return false;
4026 while (more_call_expr_args_p (&iter1))
4028 tree arg1 = next_call_expr_arg (&iter1);
4029 tree arg2 = next_call_expr_arg (&iter2);
4031 gcc_checking_assert (arg1 && arg2);
4032 if (!cp_tree_equal (arg1, arg2))
4033 return false;
4036 return true;
4039 case TARGET_EXPR:
4041 tree o1 = TREE_OPERAND (t1, 0);
4042 tree o2 = TREE_OPERAND (t2, 0);
4044 /* Special case: if either target is an unallocated VAR_DECL,
4045 it means that it's going to be unified with whatever the
4046 TARGET_EXPR is really supposed to initialize, so treat it
4047 as being equivalent to anything. */
4048 if (VAR_P (o1) && DECL_NAME (o1) == NULL_TREE
4049 && !DECL_RTL_SET_P (o1))
4050 /*Nop*/;
4051 else if (VAR_P (o2) && DECL_NAME (o2) == NULL_TREE
4052 && !DECL_RTL_SET_P (o2))
4053 /*Nop*/;
4054 else if (!cp_tree_equal (o1, o2))
4055 return false;
4057 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
4060 case PARM_DECL:
4061 /* For comparing uses of parameters in late-specified return types
4062 with an out-of-class definition of the function, but can also come
4063 up for expressions that involve 'this' in a member function
4064 template. */
4066 if (comparing_specializations
4067 && DECL_CONTEXT (t1) != DECL_CONTEXT (t2))
4068 /* When comparing hash table entries, only an exact match is
4069 good enough; we don't want to replace 'this' with the
4070 version from another function. But be more flexible
4071 with parameters with identical contexts. */
4072 return false;
4074 if (same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
4076 if (DECL_ARTIFICIAL (t1) ^ DECL_ARTIFICIAL (t2))
4077 return false;
4078 if (CONSTRAINT_VAR_P (t1) ^ CONSTRAINT_VAR_P (t2))
4079 return false;
4080 if (DECL_ARTIFICIAL (t1)
4081 || (DECL_PARM_LEVEL (t1) == DECL_PARM_LEVEL (t2)
4082 && DECL_PARM_INDEX (t1) == DECL_PARM_INDEX (t2)))
4083 return true;
4085 return false;
4087 case VAR_DECL:
4088 case CONST_DECL:
4089 case FIELD_DECL:
4090 case FUNCTION_DECL:
4091 case TEMPLATE_DECL:
4092 case IDENTIFIER_NODE:
4093 case SSA_NAME:
4094 case USING_DECL:
4095 case DEFERRED_PARSE:
4096 return false;
4098 case BASELINK:
4099 return (BASELINK_BINFO (t1) == BASELINK_BINFO (t2)
4100 && BASELINK_ACCESS_BINFO (t1) == BASELINK_ACCESS_BINFO (t2)
4101 && BASELINK_QUALIFIED_P (t1) == BASELINK_QUALIFIED_P (t2)
4102 && cp_tree_equal (BASELINK_FUNCTIONS (t1),
4103 BASELINK_FUNCTIONS (t2)));
4105 case TEMPLATE_PARM_INDEX:
4106 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
4107 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
4108 && (TEMPLATE_PARM_PARAMETER_PACK (t1)
4109 == TEMPLATE_PARM_PARAMETER_PACK (t2))
4110 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
4111 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
4113 case TEMPLATE_ID_EXPR:
4114 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
4115 return false;
4116 if (!comp_template_args (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)))
4117 return false;
4118 return true;
4120 case CONSTRAINT_INFO:
4121 return cp_tree_equal (CI_ASSOCIATED_CONSTRAINTS (t1),
4122 CI_ASSOCIATED_CONSTRAINTS (t2));
4124 case CHECK_CONSTR:
4125 return (CHECK_CONSTR_CONCEPT (t1) == CHECK_CONSTR_CONCEPT (t2)
4126 && comp_template_args (CHECK_CONSTR_ARGS (t1),
4127 CHECK_CONSTR_ARGS (t2)));
4129 case TREE_VEC:
4130 /* These are template args. Really we should be getting the
4131 caller to do this as it knows it to be true. */
4132 if (!comp_template_args (t1, t2))
4133 return false;
4134 return true;
4136 case SIZEOF_EXPR:
4137 case ALIGNOF_EXPR:
4139 tree o1 = TREE_OPERAND (t1, 0);
4140 tree o2 = TREE_OPERAND (t2, 0);
4142 if (code1 == SIZEOF_EXPR)
4144 if (SIZEOF_EXPR_TYPE_P (t1))
4145 o1 = TREE_TYPE (o1);
4146 if (SIZEOF_EXPR_TYPE_P (t2))
4147 o2 = TREE_TYPE (o2);
4149 else if (ALIGNOF_EXPR_STD_P (t1) != ALIGNOF_EXPR_STD_P (t2))
4150 return false;
4152 if (TREE_CODE (o1) != TREE_CODE (o2))
4153 return false;
4155 if (ARGUMENT_PACK_P (o1))
4156 return template_args_equal (o1, o2);
4157 else if (TYPE_P (o1))
4158 return same_type_p (o1, o2);
4159 else
4160 return cp_tree_equal (o1, o2);
4163 case MODOP_EXPR:
4165 tree t1_op1, t2_op1;
4167 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
4168 return false;
4170 t1_op1 = TREE_OPERAND (t1, 1);
4171 t2_op1 = TREE_OPERAND (t2, 1);
4172 if (TREE_CODE (t1_op1) != TREE_CODE (t2_op1))
4173 return false;
4175 return cp_tree_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t2, 2));
4178 case PTRMEM_CST:
4179 /* Two pointer-to-members are the same if they point to the same
4180 field or function in the same class. */
4181 if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
4182 return false;
4184 return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
4186 case OVERLOAD:
4188 /* Two overloads. Must be exactly the same set of decls. */
4189 lkp_iterator first (t1);
4190 lkp_iterator second (t2);
4192 for (; first && second; ++first, ++second)
4193 if (*first != *second)
4194 return false;
4195 return !(first || second);
4198 case TRAIT_EXPR:
4199 if (TRAIT_EXPR_KIND (t1) != TRAIT_EXPR_KIND (t2))
4200 return false;
4201 return cp_tree_equal (TRAIT_EXPR_TYPE1 (t1), TRAIT_EXPR_TYPE1 (t2))
4202 && cp_tree_equal (TRAIT_EXPR_TYPE2 (t1), TRAIT_EXPR_TYPE2 (t2));
4204 case NON_LVALUE_EXPR:
4205 case VIEW_CONVERT_EXPR:
4206 /* Used for location wrappers with possibly NULL types. */
4207 if (!TREE_TYPE (t1) || !TREE_TYPE (t2))
4209 if (TREE_TYPE (t1) || TREE_TYPE (t2))
4210 return false;
4211 break;
4213 /* FALLTHROUGH */
4215 case CAST_EXPR:
4216 case STATIC_CAST_EXPR:
4217 case REINTERPRET_CAST_EXPR:
4218 case CONST_CAST_EXPR:
4219 case DYNAMIC_CAST_EXPR:
4220 case IMPLICIT_CONV_EXPR:
4221 case NEW_EXPR:
4222 case BIT_CAST_EXPR:
4223 CASE_CONVERT:
4224 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
4225 return false;
4226 /* Now compare operands as usual. */
4227 break;
4229 case DEFERRED_NOEXCEPT:
4230 return (cp_tree_equal (DEFERRED_NOEXCEPT_PATTERN (t1),
4231 DEFERRED_NOEXCEPT_PATTERN (t2))
4232 && comp_template_args (DEFERRED_NOEXCEPT_ARGS (t1),
4233 DEFERRED_NOEXCEPT_ARGS (t2)));
4235 case LAMBDA_EXPR:
4236 /* Two lambda-expressions are never considered equivalent. */
4237 return false;
4239 case TYPE_ARGUMENT_PACK:
4240 case NONTYPE_ARGUMENT_PACK:
4242 tree p1 = ARGUMENT_PACK_ARGS (t1);
4243 tree p2 = ARGUMENT_PACK_ARGS (t2);
4244 int len = TREE_VEC_LENGTH (p1);
4245 if (TREE_VEC_LENGTH (p2) != len)
4246 return false;
4248 for (int ix = 0; ix != len; ix++)
4249 if (!template_args_equal (TREE_VEC_ELT (p1, ix),
4250 TREE_VEC_ELT (p2, ix)))
4251 return false;
4252 return true;
4255 case EXPR_PACK_EXPANSION:
4256 if (!cp_tree_equal (PACK_EXPANSION_PATTERN (t1),
4257 PACK_EXPANSION_PATTERN (t2)))
4258 return false;
4259 if (!comp_template_args (PACK_EXPANSION_EXTRA_ARGS (t1),
4260 PACK_EXPANSION_EXTRA_ARGS (t2)))
4261 return false;
4262 return true;
4264 case COMPONENT_REF:
4265 /* If we're comparing contract conditions of overrides, member references
4266 compare equal if they designate the same member. */
4267 if (comparing_override_contracts)
4268 return equivalent_member_references (t1, t2);
4269 break;
4271 default:
4272 break;
4275 switch (TREE_CODE_CLASS (code1))
4277 case tcc_unary:
4278 case tcc_binary:
4279 case tcc_comparison:
4280 case tcc_expression:
4281 case tcc_vl_exp:
4282 case tcc_reference:
4283 case tcc_statement:
4285 int n = cp_tree_operand_length (t1);
4286 if (TREE_CODE_CLASS (code1) == tcc_vl_exp
4287 && n != TREE_OPERAND_LENGTH (t2))
4288 return false;
4290 for (int i = 0; i < n; ++i)
4291 if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
4292 return false;
4294 return true;
4297 case tcc_type:
4298 return same_type_p (t1, t2);
4300 default:
4301 gcc_unreachable ();
4304 /* We can get here with --disable-checking. */
4305 return false;
4308 /* The type of ARG when used as an lvalue. */
4310 tree
4311 lvalue_type (tree arg)
4313 tree type = TREE_TYPE (arg);
4314 return type;
4317 /* The type of ARG for printing error messages; denote lvalues with
4318 reference types. */
4320 tree
4321 error_type (tree arg)
4323 tree type = TREE_TYPE (arg);
4325 if (TREE_CODE (type) == ARRAY_TYPE)
4327 else if (TREE_CODE (type) == ERROR_MARK)
4329 else if (lvalue_p (arg))
4330 type = build_reference_type (lvalue_type (arg));
4331 else if (MAYBE_CLASS_TYPE_P (type))
4332 type = lvalue_type (arg);
4334 return type;
4337 /* Does FUNCTION use a variable-length argument list? */
4340 varargs_function_p (const_tree function)
4342 return stdarg_p (TREE_TYPE (function));
4345 /* Returns 1 if decl is a member of a class. */
4348 member_p (const_tree decl)
4350 const_tree const ctx = DECL_CONTEXT (decl);
4351 return (ctx && TYPE_P (ctx));
4354 /* Create a placeholder for member access where we don't actually have an
4355 object that the access is against. For a general declval<T> equivalent,
4356 use build_stub_object instead. */
4358 tree
4359 build_dummy_object (tree type)
4361 tree decl = build1 (CONVERT_EXPR, build_pointer_type (type), void_node);
4362 return cp_build_fold_indirect_ref (decl);
4365 /* We've gotten a reference to a member of TYPE. Return *this if appropriate,
4366 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
4367 binfo path from current_class_type to TYPE, or 0. */
4369 tree
4370 maybe_dummy_object (tree type, tree* binfop)
4372 tree decl, context;
4373 tree binfo;
4374 tree current = current_nonlambda_class_type ();
4376 if (current
4377 && (binfo = lookup_base (current, type, ba_any, NULL,
4378 tf_warning_or_error)))
4379 context = current;
4380 else
4382 /* Reference from a nested class member function. */
4383 context = type;
4384 binfo = TYPE_BINFO (type);
4387 if (binfop)
4388 *binfop = binfo;
4390 /* current_class_ref might not correspond to current_class_type if
4391 we're in tsubst_default_argument or a lambda-declarator; in either
4392 case, we want to use current_class_ref if it matches CONTEXT. */
4393 tree ctype = current_class_ref ? TREE_TYPE (current_class_ref) : NULL_TREE;
4394 if (ctype
4395 && same_type_ignoring_top_level_qualifiers_p (ctype, context))
4396 decl = current_class_ref;
4397 else
4399 /* Return a dummy object whose cv-quals are consistent with (the
4400 non-lambda) 'this' if available. */
4401 if (ctype)
4403 int quals = TYPE_UNQUALIFIED;
4404 if (tree lambda = CLASSTYPE_LAMBDA_EXPR (ctype))
4406 if (tree cap = lambda_expr_this_capture (lambda, false))
4407 quals = cp_type_quals (TREE_TYPE (TREE_TYPE (cap)));
4409 else
4410 quals = cp_type_quals (ctype);
4411 context = cp_build_qualified_type (context, quals);
4413 decl = build_dummy_object (context);
4416 return decl;
4419 /* Returns 1 if OB is a placeholder object, or a pointer to one. */
4421 bool
4422 is_dummy_object (const_tree ob)
4424 if (INDIRECT_REF_P (ob))
4425 ob = TREE_OPERAND (ob, 0);
4426 return (TREE_CODE (ob) == CONVERT_EXPR
4427 && TREE_OPERAND (ob, 0) == void_node);
4430 /* Returns true if TYPE is char, unsigned char, or std::byte. */
4432 bool
4433 is_byte_access_type (tree type)
4435 type = TYPE_MAIN_VARIANT (type);
4436 if (type == char_type_node
4437 || type == unsigned_char_type_node)
4438 return true;
4440 return (TREE_CODE (type) == ENUMERAL_TYPE
4441 && TYPE_CONTEXT (type) == std_node
4442 && !strcmp ("byte", TYPE_NAME_STRING (type)));
4445 /* Returns true if TYPE is unsigned char or std::byte. */
4447 bool
4448 is_byte_access_type_not_plain_char (tree type)
4450 type = TYPE_MAIN_VARIANT (type);
4451 if (type == char_type_node)
4452 return false;
4454 return is_byte_access_type (type);
4457 /* Returns 1 iff type T is something we want to treat as a scalar type for
4458 the purpose of deciding whether it is trivial/POD/standard-layout. */
4460 bool
4461 scalarish_type_p (const_tree t)
4463 if (t == error_mark_node)
4464 return 1;
4466 return (SCALAR_TYPE_P (t) || VECTOR_TYPE_P (t));
4469 /* Returns true iff T requires non-trivial default initialization. */
4471 bool
4472 type_has_nontrivial_default_init (const_tree t)
4474 t = strip_array_types (CONST_CAST_TREE (t));
4476 if (CLASS_TYPE_P (t))
4477 return TYPE_HAS_COMPLEX_DFLT (t);
4478 else
4479 return 0;
4482 /* Track classes with only deleted copy/move constructors so that we can warn
4483 if they are used in call/return by value. */
4485 static GTY(()) hash_set<tree>* deleted_copy_types;
4486 static void
4487 remember_deleted_copy (const_tree t)
4489 if (!deleted_copy_types)
4490 deleted_copy_types = hash_set<tree>::create_ggc(37);
4491 deleted_copy_types->add (CONST_CAST_TREE (t));
4493 void
4494 maybe_warn_parm_abi (tree t, location_t loc)
4496 if (!deleted_copy_types
4497 || !deleted_copy_types->contains (t))
4498 return;
4500 if ((flag_abi_version == 12 || warn_abi_version == 12)
4501 && classtype_has_non_deleted_move_ctor (t))
4503 bool w;
4504 auto_diagnostic_group d;
4505 if (flag_abi_version > 12)
4506 w = warning_at (loc, OPT_Wabi, "%<-fabi-version=13%> (GCC 8.2) fixes "
4507 "the calling convention for %qT, which was "
4508 "accidentally changed in 8.1", t);
4509 else
4510 w = warning_at (loc, OPT_Wabi, "%<-fabi-version=12%> (GCC 8.1) "
4511 "accidentally changes the calling convention for %qT",
4513 if (w)
4514 inform (location_of (t), " declared here");
4515 return;
4518 auto_diagnostic_group d;
4519 if (warning_at (loc, OPT_Wabi, "the calling convention for %qT changes in "
4520 "%<-fabi-version=13%> (GCC 8.2)", t))
4521 inform (location_of (t), " because all of its copy and move "
4522 "constructors are deleted");
4525 /* Returns true iff copying an object of type T (including via move
4526 constructor) is non-trivial. That is, T has no non-trivial copy
4527 constructors and no non-trivial move constructors, and not all copy/move
4528 constructors are deleted. This function implements the ABI notion of
4529 non-trivial copy, which has diverged from the one in the standard. */
4531 bool
4532 type_has_nontrivial_copy_init (const_tree type)
4534 tree t = strip_array_types (CONST_CAST_TREE (type));
4536 if (CLASS_TYPE_P (t))
4538 gcc_assert (COMPLETE_TYPE_P (t));
4540 if (TYPE_HAS_COMPLEX_COPY_CTOR (t)
4541 || TYPE_HAS_COMPLEX_MOVE_CTOR (t))
4542 /* Nontrivial. */
4543 return true;
4545 if (cxx_dialect < cxx11)
4546 /* No deleted functions before C++11. */
4547 return false;
4549 /* Before ABI v12 we did a bitwise copy of types with only deleted
4550 copy/move constructors. */
4551 if (!abi_version_at_least (12)
4552 && !(warn_abi && abi_version_crosses (12)))
4553 return false;
4555 bool saw_copy = false;
4556 bool saw_non_deleted = false;
4557 bool saw_non_deleted_move = false;
4559 if (CLASSTYPE_LAZY_MOVE_CTOR (t))
4560 saw_copy = saw_non_deleted = true;
4561 else if (CLASSTYPE_LAZY_COPY_CTOR (t))
4563 saw_copy = true;
4564 if (classtype_has_move_assign_or_move_ctor_p (t, true))
4565 /* [class.copy]/8 If the class definition declares a move
4566 constructor or move assignment operator, the implicitly declared
4567 copy constructor is defined as deleted.... */;
4568 else
4569 /* Any other reason the implicitly-declared function would be
4570 deleted would also cause TYPE_HAS_COMPLEX_COPY_CTOR to be
4571 set. */
4572 saw_non_deleted = true;
4575 if (!saw_non_deleted)
4576 for (ovl_iterator iter (CLASSTYPE_CONSTRUCTORS (t)); iter; ++iter)
4578 tree fn = *iter;
4579 if (copy_fn_p (fn))
4581 saw_copy = true;
4582 if (!DECL_DELETED_FN (fn))
4584 /* Not deleted, therefore trivial. */
4585 saw_non_deleted = true;
4586 break;
4589 else if (move_fn_p (fn))
4590 if (!DECL_DELETED_FN (fn))
4591 saw_non_deleted_move = true;
4594 gcc_assert (saw_copy);
4596 /* ABI v12 buggily ignored move constructors. */
4597 bool v11nontriv = false;
4598 bool v12nontriv = !saw_non_deleted;
4599 bool v13nontriv = !saw_non_deleted && !saw_non_deleted_move;
4600 bool nontriv = (abi_version_at_least (13) ? v13nontriv
4601 : flag_abi_version == 12 ? v12nontriv
4602 : v11nontriv);
4603 bool warn_nontriv = (warn_abi_version >= 13 ? v13nontriv
4604 : warn_abi_version == 12 ? v12nontriv
4605 : v11nontriv);
4606 if (nontriv != warn_nontriv)
4607 remember_deleted_copy (t);
4609 return nontriv;
4611 else
4612 return 0;
4615 /* Returns 1 iff type T is a trivially copyable type, as defined in
4616 [basic.types] and [class]. */
4618 bool
4619 trivially_copyable_p (const_tree t)
4621 t = strip_array_types (CONST_CAST_TREE (t));
4623 if (CLASS_TYPE_P (t))
4624 return ((!TYPE_HAS_COPY_CTOR (t)
4625 || !TYPE_HAS_COMPLEX_COPY_CTOR (t))
4626 && !TYPE_HAS_COMPLEX_MOVE_CTOR (t)
4627 && (!TYPE_HAS_COPY_ASSIGN (t)
4628 || !TYPE_HAS_COMPLEX_COPY_ASSIGN (t))
4629 && !TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
4630 && TYPE_HAS_TRIVIAL_DESTRUCTOR (t));
4631 else
4632 /* CWG 2094 makes volatile-qualified scalars trivially copyable again. */
4633 return scalarish_type_p (t);
4636 /* Returns 1 iff type T is a trivial type, as defined in [basic.types] and
4637 [class]. */
4639 bool
4640 trivial_type_p (const_tree t)
4642 t = strip_array_types (CONST_CAST_TREE (t));
4644 if (CLASS_TYPE_P (t))
4645 return (TYPE_HAS_TRIVIAL_DFLT (t)
4646 && trivially_copyable_p (t));
4647 else
4648 return scalarish_type_p (t);
4651 /* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
4653 bool
4654 pod_type_p (const_tree t)
4656 /* This CONST_CAST is okay because strip_array_types returns its
4657 argument unmodified and we assign it to a const_tree. */
4658 t = strip_array_types (CONST_CAST_TREE(t));
4660 if (!CLASS_TYPE_P (t))
4661 return scalarish_type_p (t);
4662 else if (cxx_dialect > cxx98)
4663 /* [class]/10: A POD struct is a class that is both a trivial class and a
4664 standard-layout class, and has no non-static data members of type
4665 non-POD struct, non-POD union (or array of such types).
4667 We don't need to check individual members because if a member is
4668 non-std-layout or non-trivial, the class will be too. */
4669 return (std_layout_type_p (t) && trivial_type_p (t));
4670 else
4671 /* The C++98 definition of POD is different. */
4672 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
4675 /* Returns true iff T is POD for the purpose of layout, as defined in the
4676 C++ ABI. */
4678 bool
4679 layout_pod_type_p (const_tree t)
4681 t = strip_array_types (CONST_CAST_TREE (t));
4683 if (CLASS_TYPE_P (t))
4684 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
4685 else
4686 return scalarish_type_p (t);
4689 /* Returns true iff T is a standard-layout type, as defined in
4690 [basic.types]. */
4692 bool
4693 std_layout_type_p (const_tree t)
4695 t = strip_array_types (CONST_CAST_TREE (t));
4697 if (CLASS_TYPE_P (t))
4698 return !CLASSTYPE_NON_STD_LAYOUT (t);
4699 else
4700 return scalarish_type_p (t);
4703 static bool record_has_unique_obj_representations (const_tree, const_tree);
4705 /* Returns true iff T satisfies std::has_unique_object_representations<T>,
4706 as defined in [meta.unary.prop]. */
4708 bool
4709 type_has_unique_obj_representations (const_tree t)
4711 bool ret;
4713 t = strip_array_types (CONST_CAST_TREE (t));
4715 if (!trivially_copyable_p (t))
4716 return false;
4718 if (CLASS_TYPE_P (t) && CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t))
4719 return CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t);
4721 switch (TREE_CODE (t))
4723 case INTEGER_TYPE:
4724 case POINTER_TYPE:
4725 case REFERENCE_TYPE:
4726 /* If some backend has any paddings in these types, we should add
4727 a target hook for this and handle it there. */
4728 return true;
4730 case BOOLEAN_TYPE:
4731 /* For bool values other than 0 and 1 should only appear with
4732 undefined behavior. */
4733 return true;
4735 case ENUMERAL_TYPE:
4736 return type_has_unique_obj_representations (ENUM_UNDERLYING_TYPE (t));
4738 case REAL_TYPE:
4739 /* XFmode certainly contains padding on x86, which the CPU doesn't store
4740 when storing long double values, so for that we have to return false.
4741 Other kinds of floating point values are questionable due to +.0/-.0
4742 and NaNs, let's play safe for now. */
4743 return false;
4745 case FIXED_POINT_TYPE:
4746 return false;
4748 case OFFSET_TYPE:
4749 return true;
4751 case COMPLEX_TYPE:
4752 case VECTOR_TYPE:
4753 return type_has_unique_obj_representations (TREE_TYPE (t));
4755 case RECORD_TYPE:
4756 ret = record_has_unique_obj_representations (t, TYPE_SIZE (t));
4757 if (CLASS_TYPE_P (t))
4759 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t) = 1;
4760 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t) = ret;
4762 return ret;
4764 case UNION_TYPE:
4765 ret = true;
4766 bool any_fields;
4767 any_fields = false;
4768 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4769 if (TREE_CODE (field) == FIELD_DECL)
4771 any_fields = true;
4772 if (!type_has_unique_obj_representations (TREE_TYPE (field))
4773 || simple_cst_equal (DECL_SIZE (field), TYPE_SIZE (t)) != 1)
4775 ret = false;
4776 break;
4779 if (!any_fields && !integer_zerop (TYPE_SIZE (t)))
4780 ret = false;
4781 if (CLASS_TYPE_P (t))
4783 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t) = 1;
4784 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t) = ret;
4786 return ret;
4788 case NULLPTR_TYPE:
4789 return false;
4791 case ERROR_MARK:
4792 return false;
4794 default:
4795 gcc_unreachable ();
4799 /* Helper function for type_has_unique_obj_representations. */
4801 static bool
4802 record_has_unique_obj_representations (const_tree t, const_tree sz)
4804 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4805 if (TREE_CODE (field) != FIELD_DECL)
4807 /* For bases, can't use type_has_unique_obj_representations here, as in
4808 struct S { int i : 24; S (); };
4809 struct T : public S { int j : 8; T (); };
4810 S doesn't have unique obj representations, but T does. */
4811 else if (DECL_FIELD_IS_BASE (field))
4813 if (!record_has_unique_obj_representations (TREE_TYPE (field),
4814 DECL_SIZE (field)))
4815 return false;
4817 else if (DECL_C_BIT_FIELD (field) && !DECL_UNNAMED_BIT_FIELD (field))
4819 tree btype = DECL_BIT_FIELD_TYPE (field);
4820 if (!type_has_unique_obj_representations (btype))
4821 return false;
4823 else if (!type_has_unique_obj_representations (TREE_TYPE (field)))
4824 return false;
4826 offset_int cur = 0;
4827 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4828 if (TREE_CODE (field) == FIELD_DECL && !DECL_UNNAMED_BIT_FIELD (field))
4830 offset_int fld = wi::to_offset (DECL_FIELD_OFFSET (field));
4831 offset_int bitpos = wi::to_offset (DECL_FIELD_BIT_OFFSET (field));
4832 fld = fld * BITS_PER_UNIT + bitpos;
4833 if (cur != fld)
4834 return false;
4835 if (DECL_SIZE (field))
4837 offset_int size = wi::to_offset (DECL_SIZE (field));
4838 cur += size;
4841 if (cur != wi::to_offset (sz))
4842 return false;
4844 return true;
4847 /* Nonzero iff type T is a class template implicit specialization. */
4849 bool
4850 class_tmpl_impl_spec_p (const_tree t)
4852 return CLASS_TYPE_P (t) && CLASSTYPE_TEMPLATE_INSTANTIATION (t);
4855 /* Returns 1 iff zero initialization of type T means actually storing
4856 zeros in it. */
4859 zero_init_p (const_tree t)
4861 /* This CONST_CAST is okay because strip_array_types returns its
4862 argument unmodified and we assign it to a const_tree. */
4863 t = strip_array_types (CONST_CAST_TREE(t));
4865 if (t == error_mark_node)
4866 return 1;
4868 /* NULL pointers to data members are initialized with -1. */
4869 if (TYPE_PTRDATAMEM_P (t))
4870 return 0;
4872 /* Classes that contain types that can't be zero-initialized, cannot
4873 be zero-initialized themselves. */
4874 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
4875 return 0;
4877 return 1;
4880 /* Returns true if the expression or initializer T is the result of
4881 zero-initialization for its type, taking pointers to members
4882 into consideration. */
4884 bool
4885 zero_init_expr_p (tree t)
4887 tree type = TREE_TYPE (t);
4888 if (!type || uses_template_parms (type))
4889 return false;
4890 if (TYPE_PTRMEM_P (type))
4891 return null_member_pointer_value_p (t);
4892 if (TREE_CODE (t) == CONSTRUCTOR)
4894 if (COMPOUND_LITERAL_P (t)
4895 || BRACE_ENCLOSED_INITIALIZER_P (t))
4896 /* Undigested, conversions might change the zeroness. */
4897 return false;
4898 for (constructor_elt &elt : CONSTRUCTOR_ELTS (t))
4900 if (TREE_CODE (type) == UNION_TYPE
4901 && elt.index != first_field (type))
4902 return false;
4903 if (!zero_init_expr_p (elt.value))
4904 return false;
4906 return true;
4908 if (zero_init_p (type))
4909 return initializer_zerop (t);
4910 return false;
4913 /* True IFF T is a C++20 structural type (P1907R1) that can be used as a
4914 non-type template parameter. If EXPLAIN, explain why not. */
4916 bool
4917 structural_type_p (tree t, bool explain)
4919 /* A structural type is one of the following: */
4921 /* a scalar type, or */
4922 if (SCALAR_TYPE_P (t))
4923 return true;
4924 /* an lvalue reference type, or */
4925 if (TYPE_REF_P (t) && !TYPE_REF_IS_RVALUE (t))
4926 return true;
4927 /* a literal class type with the following properties:
4928 - all base classes and non-static data members are public and non-mutable
4930 - the types of all bases classes and non-static data members are
4931 structural types or (possibly multi-dimensional) array thereof. */
4932 if (!CLASS_TYPE_P (t))
4933 return false;
4934 if (!literal_type_p (t))
4936 if (explain)
4937 explain_non_literal_class (t);
4938 return false;
4940 for (tree m = next_aggregate_field (TYPE_FIELDS (t)); m;
4941 m = next_aggregate_field (DECL_CHAIN (m)))
4943 if (TREE_PRIVATE (m) || TREE_PROTECTED (m))
4945 if (explain)
4947 if (DECL_FIELD_IS_BASE (m))
4948 inform (location_of (m), "base class %qT is not public",
4949 TREE_TYPE (m));
4950 else
4951 inform (location_of (m), "%qD is not public", m);
4953 return false;
4955 if (DECL_MUTABLE_P (m))
4957 if (explain)
4958 inform (location_of (m), "%qD is mutable", m);
4959 return false;
4961 tree mtype = strip_array_types (TREE_TYPE (m));
4962 if (!structural_type_p (mtype))
4964 if (explain)
4966 inform (location_of (m), "%qD has a non-structural type", m);
4967 structural_type_p (mtype, true);
4969 return false;
4972 return true;
4975 /* Partially handle the C++11 [[carries_dependency]] attribute.
4976 Just emit a different diagnostics when it is used on something the
4977 spec doesn't allow vs. where it allows and we just choose to ignore
4978 it. */
4980 static tree
4981 handle_carries_dependency_attribute (tree *node, tree name,
4982 tree ARG_UNUSED (args),
4983 int ARG_UNUSED (flags),
4984 bool *no_add_attrs)
4986 if (TREE_CODE (*node) != FUNCTION_DECL
4987 && TREE_CODE (*node) != PARM_DECL)
4989 warning (OPT_Wattributes, "%qE attribute can only be applied to "
4990 "functions or parameters", name);
4991 *no_add_attrs = true;
4993 else
4995 warning (OPT_Wattributes, "%qE attribute ignored", name);
4996 *no_add_attrs = true;
4998 return NULL_TREE;
5001 /* Handle the C++17 [[nodiscard]] attribute, which is similar to the GNU
5002 warn_unused_result attribute. */
5004 static tree
5005 handle_nodiscard_attribute (tree *node, tree name, tree args,
5006 int /*flags*/, bool *no_add_attrs)
5008 if (args && TREE_CODE (TREE_VALUE (args)) != STRING_CST)
5010 error ("%qE attribute argument must be a string constant", name);
5011 *no_add_attrs = true;
5013 if (TREE_CODE (*node) == FUNCTION_DECL)
5015 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (*node)))
5016 && !DECL_CONSTRUCTOR_P (*node))
5017 warning_at (DECL_SOURCE_LOCATION (*node),
5018 OPT_Wattributes, "%qE attribute applied to %qD with void "
5019 "return type", name, *node);
5021 else if (OVERLOAD_TYPE_P (*node))
5022 /* OK */;
5023 else
5025 warning (OPT_Wattributes, "%qE attribute can only be applied to "
5026 "functions or to class or enumeration types", name);
5027 *no_add_attrs = true;
5029 return NULL_TREE;
5032 /* Handle a C++20 "no_unique_address" attribute; arguments as in
5033 struct attribute_spec.handler. */
5034 static tree
5035 handle_no_unique_addr_attribute (tree* node,
5036 tree name,
5037 tree /*args*/,
5038 int /*flags*/,
5039 bool* no_add_attrs)
5041 if (TREE_CODE (*node) == VAR_DECL)
5043 DECL_MERGEABLE (*node) = true;
5044 if (pedantic)
5045 warning (OPT_Wattributes, "%qE attribute can only be applied to "
5046 "non-static data members", name);
5048 else if (TREE_CODE (*node) != FIELD_DECL)
5050 warning (OPT_Wattributes, "%qE attribute can only be applied to "
5051 "non-static data members", name);
5052 *no_add_attrs = true;
5054 else if (DECL_C_BIT_FIELD (*node))
5056 warning (OPT_Wattributes, "%qE attribute cannot be applied to "
5057 "a bit-field", name);
5058 *no_add_attrs = true;
5061 return NULL_TREE;
5064 /* The C++20 [[likely]] and [[unlikely]] attributes on labels map to the GNU
5065 hot/cold attributes. */
5067 static tree
5068 handle_likeliness_attribute (tree *node, tree name, tree args,
5069 int flags, bool *no_add_attrs)
5071 *no_add_attrs = true;
5072 if (TREE_CODE (*node) == LABEL_DECL
5073 || TREE_CODE (*node) == FUNCTION_DECL)
5075 if (args)
5076 warning (OPT_Wattributes, "%qE attribute takes no arguments", name);
5077 tree bname = (is_attribute_p ("likely", name)
5078 ? get_identifier ("hot") : get_identifier ("cold"));
5079 if (TREE_CODE (*node) == FUNCTION_DECL)
5080 warning (OPT_Wattributes, "ISO C++ %qE attribute does not apply to "
5081 "functions; treating as %<[[gnu::%E]]%>", name, bname);
5082 tree battr = build_tree_list (bname, NULL_TREE);
5083 decl_attributes (node, battr, flags);
5084 return NULL_TREE;
5086 else
5087 return error_mark_node;
5090 /* Table of valid C++ attributes. */
5091 static const attribute_spec cxx_gnu_attributes[] =
5093 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
5094 affects_type_identity, handler, exclude } */
5095 { "init_priority", 1, 1, true, false, false, false,
5096 handle_init_priority_attribute, NULL },
5097 { "abi_tag", 1, -1, false, false, false, true,
5098 handle_abi_tag_attribute, NULL },
5101 const scoped_attribute_specs cxx_gnu_attribute_table =
5103 "gnu", { cxx_gnu_attributes }
5106 /* Table of C++ standard attributes. */
5107 static const attribute_spec std_attributes[] =
5109 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
5110 affects_type_identity, handler, exclude } */
5111 { "maybe_unused", 0, 0, false, false, false, false,
5112 handle_unused_attribute, NULL },
5113 { "nodiscard", 0, 1, false, false, false, false,
5114 handle_nodiscard_attribute, NULL },
5115 { "no_unique_address", 0, 0, true, false, false, false,
5116 handle_no_unique_addr_attribute, NULL },
5117 { "likely", 0, 0, false, false, false, false,
5118 handle_likeliness_attribute, attr_cold_hot_exclusions },
5119 { "unlikely", 0, 0, false, false, false, false,
5120 handle_likeliness_attribute, attr_cold_hot_exclusions },
5121 { "noreturn", 0, 0, true, false, false, false,
5122 handle_noreturn_attribute, attr_noreturn_exclusions },
5123 { "carries_dependency", 0, 0, true, false, false, false,
5124 handle_carries_dependency_attribute, NULL },
5125 { "pre", 0, -1, false, false, false, false,
5126 handle_contract_attribute, NULL },
5127 { "post", 0, -1, false, false, false, false,
5128 handle_contract_attribute, NULL }
5131 const scoped_attribute_specs std_attribute_table =
5133 nullptr, { std_attributes }
5136 /* Handle an "init_priority" attribute; arguments as in
5137 struct attribute_spec.handler. */
5138 static tree
5139 handle_init_priority_attribute (tree* node,
5140 tree name,
5141 tree args,
5142 int /*flags*/,
5143 bool* no_add_attrs)
5145 if (!SUPPORTS_INIT_PRIORITY)
5146 /* Treat init_priority as an unrecognized attribute (mirroring
5147 __has_attribute) if the target doesn't support init priorities. */
5148 return error_mark_node;
5150 tree initp_expr = TREE_VALUE (args);
5151 tree decl = *node;
5152 tree type = TREE_TYPE (decl);
5153 int pri;
5155 STRIP_NOPS (initp_expr);
5156 initp_expr = default_conversion (initp_expr);
5157 if (initp_expr)
5158 initp_expr = maybe_constant_value (initp_expr);
5160 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
5162 error ("requested %<init_priority%> is not an integer constant");
5163 cxx_constant_value (initp_expr);
5164 *no_add_attrs = true;
5165 return NULL_TREE;
5168 pri = TREE_INT_CST_LOW (initp_expr);
5170 type = strip_array_types (type);
5172 if (decl == NULL_TREE
5173 || !VAR_P (decl)
5174 || !TREE_STATIC (decl)
5175 || DECL_EXTERNAL (decl)
5176 || (TREE_CODE (type) != RECORD_TYPE
5177 && TREE_CODE (type) != UNION_TYPE)
5178 /* Static objects in functions are initialized the
5179 first time control passes through that
5180 function. This is not precise enough to pin down an
5181 init_priority value, so don't allow it. */
5182 || current_function_decl)
5184 error ("can only use %qE attribute on file-scope definitions "
5185 "of objects of class type", name);
5186 *no_add_attrs = true;
5187 return NULL_TREE;
5190 if (pri > MAX_INIT_PRIORITY || pri <= 0)
5192 error ("requested %<init_priority%> %i is out of range [0, %i]",
5193 pri, MAX_INIT_PRIORITY);
5194 *no_add_attrs = true;
5195 return NULL_TREE;
5198 /* Check for init_priorities that are reserved for
5199 language and runtime support implementations.*/
5200 if (pri <= MAX_RESERVED_INIT_PRIORITY)
5202 warning
5203 (0, "requested %<init_priority%> %i is reserved for internal use",
5204 pri);
5207 SET_DECL_INIT_PRIORITY (decl, pri);
5208 DECL_HAS_INIT_PRIORITY_P (decl) = 1;
5209 return NULL_TREE;
5212 /* DECL is being redeclared; the old declaration had the abi tags in OLD,
5213 and the new one has the tags in NEW_. Give an error if there are tags
5214 in NEW_ that weren't in OLD. */
5216 bool
5217 check_abi_tag_redeclaration (const_tree decl, const_tree old, const_tree new_)
5219 if (old && TREE_CODE (TREE_VALUE (old)) == TREE_LIST)
5220 old = TREE_VALUE (old);
5221 if (new_ && TREE_CODE (TREE_VALUE (new_)) == TREE_LIST)
5222 new_ = TREE_VALUE (new_);
5223 bool err = false;
5224 for (const_tree t = new_; t; t = TREE_CHAIN (t))
5226 tree str = TREE_VALUE (t);
5227 for (const_tree in = old; in; in = TREE_CHAIN (in))
5229 tree ostr = TREE_VALUE (in);
5230 if (cp_tree_equal (str, ostr))
5231 goto found;
5233 error ("redeclaration of %qD adds abi tag %qE", decl, str);
5234 err = true;
5235 found:;
5237 if (err)
5239 inform (DECL_SOURCE_LOCATION (decl), "previous declaration here");
5240 return false;
5242 return true;
5245 /* The abi_tag attribute with the name NAME was given ARGS. If they are
5246 ill-formed, give an error and return false; otherwise, return true. */
5248 bool
5249 check_abi_tag_args (tree args, tree name)
5251 if (!args)
5253 error ("the %qE attribute requires arguments", name);
5254 return false;
5256 for (tree arg = args; arg; arg = TREE_CHAIN (arg))
5258 tree elt = TREE_VALUE (arg);
5259 if (TREE_CODE (elt) != STRING_CST
5260 || (!same_type_ignoring_top_level_qualifiers_p
5261 (strip_array_types (TREE_TYPE (elt)),
5262 char_type_node)))
5264 error ("arguments to the %qE attribute must be narrow string "
5265 "literals", name);
5266 return false;
5268 const char *begin = TREE_STRING_POINTER (elt);
5269 const char *end = begin + TREE_STRING_LENGTH (elt);
5270 for (const char *p = begin; p != end; ++p)
5272 char c = *p;
5273 if (p == begin)
5275 if (!ISALPHA (c) && c != '_')
5277 error ("arguments to the %qE attribute must contain valid "
5278 "identifiers", name);
5279 inform (input_location, "%<%c%> is not a valid first "
5280 "character for an identifier", c);
5281 return false;
5284 else if (p == end - 1)
5285 gcc_assert (c == 0);
5286 else
5288 if (!ISALNUM (c) && c != '_')
5290 error ("arguments to the %qE attribute must contain valid "
5291 "identifiers", name);
5292 inform (input_location, "%<%c%> is not a valid character "
5293 "in an identifier", c);
5294 return false;
5299 return true;
5302 /* Handle an "abi_tag" attribute; arguments as in
5303 struct attribute_spec.handler. */
5305 static tree
5306 handle_abi_tag_attribute (tree* node, tree name, tree args,
5307 int flags, bool* no_add_attrs)
5309 if (!check_abi_tag_args (args, name))
5310 goto fail;
5312 if (TYPE_P (*node))
5314 if (!OVERLOAD_TYPE_P (*node))
5316 error ("%qE attribute applied to non-class, non-enum type %qT",
5317 name, *node);
5318 goto fail;
5320 else if (!(flags & (int)ATTR_FLAG_TYPE_IN_PLACE))
5322 error ("%qE attribute applied to %qT after its definition",
5323 name, *node);
5324 goto fail;
5326 else if (CLASS_TYPE_P (*node)
5327 && CLASSTYPE_TEMPLATE_INSTANTIATION (*node))
5329 warning (OPT_Wattributes, "ignoring %qE attribute applied to "
5330 "template instantiation %qT", name, *node);
5331 goto fail;
5333 else if (CLASS_TYPE_P (*node)
5334 && CLASSTYPE_TEMPLATE_SPECIALIZATION (*node))
5336 warning (OPT_Wattributes, "ignoring %qE attribute applied to "
5337 "template specialization %qT", name, *node);
5338 goto fail;
5341 tree attributes = TYPE_ATTRIBUTES (*node);
5342 tree decl = TYPE_NAME (*node);
5344 /* Make sure all declarations have the same abi tags. */
5345 if (DECL_SOURCE_LOCATION (decl) != input_location)
5347 if (!check_abi_tag_redeclaration (decl,
5348 lookup_attribute ("abi_tag",
5349 attributes),
5350 args))
5351 goto fail;
5354 else
5356 if (!VAR_OR_FUNCTION_DECL_P (*node))
5358 error ("%qE attribute applied to non-function, non-variable %qD",
5359 name, *node);
5360 goto fail;
5362 else if (DECL_LANGUAGE (*node) == lang_c)
5364 error ("%qE attribute applied to extern \"C\" declaration %qD",
5365 name, *node);
5366 goto fail;
5370 return NULL_TREE;
5372 fail:
5373 *no_add_attrs = true;
5374 return NULL_TREE;
5377 /* Perform checking for contract attributes. */
5379 tree
5380 handle_contract_attribute (tree *ARG_UNUSED (node), tree ARG_UNUSED (name),
5381 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
5382 bool *ARG_UNUSED (no_add_attrs))
5384 /* TODO: Is there any checking we could do here? */
5385 return NULL_TREE;
5388 /* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
5389 thing pointed to by the constant. */
5391 tree
5392 make_ptrmem_cst (tree type, tree member)
5394 tree ptrmem_cst = make_node (PTRMEM_CST);
5395 TREE_TYPE (ptrmem_cst) = type;
5396 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
5397 PTRMEM_CST_LOCATION (ptrmem_cst) = input_location;
5398 return ptrmem_cst;
5401 /* Build a variant of TYPE that has the indicated ATTRIBUTES. May
5402 return an existing type if an appropriate type already exists. */
5404 tree
5405 cp_build_type_attribute_variant (tree type, tree attributes)
5407 tree new_type;
5409 new_type = build_type_attribute_variant (type, attributes);
5410 if (FUNC_OR_METHOD_TYPE_P (new_type))
5411 gcc_checking_assert (cxx_type_hash_eq (type, new_type));
5413 /* Making a new main variant of a class type is broken. */
5414 gcc_assert (!CLASS_TYPE_P (type) || new_type == type);
5416 return new_type;
5419 /* Return TRUE if TYPE1 and TYPE2 are identical for type hashing purposes.
5420 Called only after doing all language independent checks. */
5422 bool
5423 cxx_type_hash_eq (const_tree typea, const_tree typeb)
5425 gcc_assert (FUNC_OR_METHOD_TYPE_P (typea));
5427 if (type_memfn_rqual (typea) != type_memfn_rqual (typeb))
5428 return false;
5429 if (TYPE_HAS_LATE_RETURN_TYPE (typea) != TYPE_HAS_LATE_RETURN_TYPE (typeb))
5430 return false;
5431 return comp_except_specs (TYPE_RAISES_EXCEPTIONS (typea),
5432 TYPE_RAISES_EXCEPTIONS (typeb), ce_exact);
5435 /* Copy the language-specific type variant modifiers from TYPEB to TYPEA. For
5436 C++, these are the exception-specifier and ref-qualifier. */
5438 tree
5439 cxx_copy_lang_qualifiers (const_tree typea, const_tree typeb)
5441 tree type = CONST_CAST_TREE (typea);
5442 if (FUNC_OR_METHOD_TYPE_P (type))
5443 type = build_cp_fntype_variant (type, type_memfn_rqual (typeb),
5444 TYPE_RAISES_EXCEPTIONS (typeb),
5445 TYPE_HAS_LATE_RETURN_TYPE (typeb));
5446 return type;
5449 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
5450 traversal. Called from walk_tree. */
5452 tree
5453 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
5454 void *data, hash_set<tree> *pset)
5456 tree t = *tp;
5457 enum tree_code code = TREE_CODE (t);
5458 tree result;
5460 #define WALK_SUBTREE(NODE) \
5461 do \
5463 result = cp_walk_tree (&(NODE), func, data, pset); \
5464 if (result) goto out; \
5466 while (0)
5468 if (TYPE_P (t))
5470 /* If *WALK_SUBTREES_P is 1, we're interested in the syntactic form of
5471 the argument, so don't look through typedefs, but do walk into
5472 template arguments for alias templates (and non-typedefed classes).
5474 If *WALK_SUBTREES_P > 1, we're interested in type identity or
5475 equivalence, so look through typedefs, ignoring template arguments for
5476 alias templates, and walk into template args of classes.
5478 See find_abi_tags_r for an example of setting *WALK_SUBTREES_P to 2
5479 when that's the behavior the walk_tree_fn wants. */
5480 if (*walk_subtrees_p == 1 && typedef_variant_p (t))
5482 if (tree ti = TYPE_ALIAS_TEMPLATE_INFO (t))
5483 WALK_SUBTREE (TI_ARGS (ti));
5484 *walk_subtrees_p = 0;
5485 return NULL_TREE;
5488 if (tree ti = TYPE_TEMPLATE_INFO (t))
5489 WALK_SUBTREE (TI_ARGS (ti));
5492 /* Not one of the easy cases. We must explicitly go through the
5493 children. */
5494 result = NULL_TREE;
5495 switch (code)
5497 case TEMPLATE_TYPE_PARM:
5498 if (template_placeholder_p (t))
5499 WALK_SUBTREE (CLASS_PLACEHOLDER_TEMPLATE (t));
5500 /* Fall through. */
5501 case DEFERRED_PARSE:
5502 case TEMPLATE_TEMPLATE_PARM:
5503 case BOUND_TEMPLATE_TEMPLATE_PARM:
5504 case UNBOUND_CLASS_TEMPLATE:
5505 case TEMPLATE_PARM_INDEX:
5506 case TYPEOF_TYPE:
5507 /* None of these have subtrees other than those already walked
5508 above. */
5509 *walk_subtrees_p = 0;
5510 break;
5512 case TYPENAME_TYPE:
5513 WALK_SUBTREE (TYPE_CONTEXT (t));
5514 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
5515 *walk_subtrees_p = 0;
5516 break;
5518 case BASELINK:
5519 if (BASELINK_QUALIFIED_P (t))
5520 WALK_SUBTREE (BINFO_TYPE (BASELINK_ACCESS_BINFO (t)));
5521 WALK_SUBTREE (BASELINK_FUNCTIONS (t));
5522 *walk_subtrees_p = 0;
5523 break;
5525 case PTRMEM_CST:
5526 WALK_SUBTREE (TREE_TYPE (t));
5527 *walk_subtrees_p = 0;
5528 break;
5530 case TREE_LIST:
5531 WALK_SUBTREE (TREE_PURPOSE (t));
5532 break;
5534 case OVERLOAD:
5535 WALK_SUBTREE (OVL_FUNCTION (t));
5536 WALK_SUBTREE (OVL_CHAIN (t));
5537 *walk_subtrees_p = 0;
5538 break;
5540 case USING_DECL:
5541 WALK_SUBTREE (DECL_NAME (t));
5542 WALK_SUBTREE (USING_DECL_SCOPE (t));
5543 WALK_SUBTREE (USING_DECL_DECLS (t));
5544 *walk_subtrees_p = 0;
5545 break;
5547 case RECORD_TYPE:
5548 if (TYPE_PTRMEMFUNC_P (t))
5549 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE_RAW (t));
5550 break;
5552 case TYPE_ARGUMENT_PACK:
5553 case NONTYPE_ARGUMENT_PACK:
5555 tree args = ARGUMENT_PACK_ARGS (t);
5556 for (tree arg : tree_vec_range (args))
5557 WALK_SUBTREE (arg);
5559 break;
5561 case TYPE_PACK_EXPANSION:
5562 WALK_SUBTREE (TREE_TYPE (t));
5563 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (t));
5564 *walk_subtrees_p = 0;
5565 break;
5567 case EXPR_PACK_EXPANSION:
5568 WALK_SUBTREE (TREE_OPERAND (t, 0));
5569 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (t));
5570 *walk_subtrees_p = 0;
5571 break;
5573 case CAST_EXPR:
5574 case REINTERPRET_CAST_EXPR:
5575 case STATIC_CAST_EXPR:
5576 case CONST_CAST_EXPR:
5577 case DYNAMIC_CAST_EXPR:
5578 case IMPLICIT_CONV_EXPR:
5579 case BIT_CAST_EXPR:
5580 if (TREE_TYPE (t))
5581 WALK_SUBTREE (TREE_TYPE (t));
5582 break;
5584 case CONSTRUCTOR:
5585 if (COMPOUND_LITERAL_P (t))
5586 WALK_SUBTREE (TREE_TYPE (t));
5587 break;
5589 case TRAIT_EXPR:
5590 WALK_SUBTREE (TRAIT_EXPR_TYPE1 (t));
5591 WALK_SUBTREE (TRAIT_EXPR_TYPE2 (t));
5592 *walk_subtrees_p = 0;
5593 break;
5595 case TRAIT_TYPE:
5596 WALK_SUBTREE (TRAIT_TYPE_TYPE1 (t));
5597 WALK_SUBTREE (TRAIT_TYPE_TYPE2 (t));
5598 *walk_subtrees_p = 0;
5599 break;
5601 case DECLTYPE_TYPE:
5603 cp_unevaluated u;
5604 WALK_SUBTREE (DECLTYPE_TYPE_EXPR (t));
5605 *walk_subtrees_p = 0;
5606 break;
5609 case ALIGNOF_EXPR:
5610 case SIZEOF_EXPR:
5611 case NOEXCEPT_EXPR:
5613 cp_unevaluated u;
5614 WALK_SUBTREE (TREE_OPERAND (t, 0));
5615 *walk_subtrees_p = 0;
5616 break;
5619 case REQUIRES_EXPR:
5621 cp_unevaluated u;
5622 for (tree parm = REQUIRES_EXPR_PARMS (t); parm; parm = DECL_CHAIN (parm))
5623 /* Walk the types of each parameter, but not the parameter itself,
5624 since doing so would cause false positives in the unexpanded pack
5625 checker if the requires-expr introduces a function parameter pack,
5626 e.g. requires (Ts... ts) { }. */
5627 WALK_SUBTREE (TREE_TYPE (parm));
5628 WALK_SUBTREE (REQUIRES_EXPR_REQS (t));
5629 *walk_subtrees_p = 0;
5630 break;
5633 case DECL_EXPR:
5634 /* User variables should be mentioned in BIND_EXPR_VARS
5635 and their initializers and sizes walked when walking
5636 the containing BIND_EXPR. Compiler temporaries are
5637 handled here. And also normal variables in templates,
5638 since do_poplevel doesn't build a BIND_EXPR then. */
5639 if (VAR_P (TREE_OPERAND (t, 0))
5640 && (processing_template_decl
5641 || (DECL_ARTIFICIAL (TREE_OPERAND (t, 0))
5642 && !TREE_STATIC (TREE_OPERAND (t, 0)))))
5644 tree decl = TREE_OPERAND (t, 0);
5645 WALK_SUBTREE (DECL_INITIAL (decl));
5646 WALK_SUBTREE (DECL_SIZE (decl));
5647 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
5649 break;
5651 case LAMBDA_EXPR:
5652 /* Don't walk into the body of the lambda, but the capture initializers
5653 are part of the enclosing context. */
5654 for (tree cap = LAMBDA_EXPR_CAPTURE_LIST (t); cap;
5655 cap = TREE_CHAIN (cap))
5656 WALK_SUBTREE (TREE_VALUE (cap));
5657 break;
5659 case CO_YIELD_EXPR:
5660 if (TREE_OPERAND (t, 1))
5661 /* Operand 1 is the tree for the relevant co_await which has any
5662 interesting sub-trees. */
5663 WALK_SUBTREE (TREE_OPERAND (t, 1));
5664 break;
5666 case CO_AWAIT_EXPR:
5667 if (TREE_OPERAND (t, 1))
5668 /* Operand 1 is frame variable. */
5669 WALK_SUBTREE (TREE_OPERAND (t, 1));
5670 if (TREE_OPERAND (t, 2))
5671 /* Operand 2 has the initialiser, and we need to walk any subtrees
5672 there. */
5673 WALK_SUBTREE (TREE_OPERAND (t, 2));
5674 break;
5676 case CO_RETURN_EXPR:
5677 if (TREE_OPERAND (t, 0))
5679 if (VOID_TYPE_P (TREE_OPERAND (t, 0)))
5680 /* For void expressions, operand 1 is a trivial call, and any
5681 interesting subtrees will be part of operand 0. */
5682 WALK_SUBTREE (TREE_OPERAND (t, 0));
5683 else if (TREE_OPERAND (t, 1))
5684 /* Interesting sub-trees will be in the return_value () call
5685 arguments. */
5686 WALK_SUBTREE (TREE_OPERAND (t, 1));
5688 break;
5690 case STATIC_ASSERT:
5691 WALK_SUBTREE (STATIC_ASSERT_CONDITION (t));
5692 WALK_SUBTREE (STATIC_ASSERT_MESSAGE (t));
5693 break;
5695 default:
5696 return NULL_TREE;
5699 /* We didn't find what we were looking for. */
5700 out:
5701 return result;
5703 #undef WALK_SUBTREE
5706 /* Like save_expr, but for C++. */
5708 tree
5709 cp_save_expr (tree expr)
5711 /* There is no reason to create a SAVE_EXPR within a template; if
5712 needed, we can create the SAVE_EXPR when instantiating the
5713 template. Furthermore, the middle-end cannot handle C++-specific
5714 tree codes. */
5715 if (processing_template_decl)
5716 return expr;
5718 /* TARGET_EXPRs are only expanded once. */
5719 if (TREE_CODE (expr) == TARGET_EXPR)
5720 return expr;
5722 return save_expr (expr);
5725 /* Initialize tree.cc. */
5727 void
5728 init_tree (void)
5730 list_hash_table = hash_table<list_hasher>::create_ggc (61);
5733 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
5734 is. Note that sfk_none is zero, so this function can be used as a
5735 predicate to test whether or not DECL is a special function. */
5737 special_function_kind
5738 special_function_p (const_tree decl)
5740 /* Rather than doing all this stuff with magic names, we should
5741 probably have a field of type `special_function_kind' in
5742 DECL_LANG_SPECIFIC. */
5743 if (DECL_INHERITED_CTOR (decl))
5744 return sfk_inheriting_constructor;
5745 if (DECL_COPY_CONSTRUCTOR_P (decl))
5746 return sfk_copy_constructor;
5747 if (DECL_MOVE_CONSTRUCTOR_P (decl))
5748 return sfk_move_constructor;
5749 if (DECL_CONSTRUCTOR_P (decl))
5750 return sfk_constructor;
5751 if (DECL_ASSIGNMENT_OPERATOR_P (decl)
5752 && DECL_OVERLOADED_OPERATOR_IS (decl, NOP_EXPR))
5754 if (copy_fn_p (decl))
5755 return sfk_copy_assignment;
5756 if (move_fn_p (decl))
5757 return sfk_move_assignment;
5759 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
5760 return sfk_destructor;
5761 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
5762 return sfk_complete_destructor;
5763 if (DECL_BASE_DESTRUCTOR_P (decl))
5764 return sfk_base_destructor;
5765 if (DECL_DELETING_DESTRUCTOR_P (decl))
5766 return sfk_deleting_destructor;
5767 if (DECL_CONV_FN_P (decl))
5768 return sfk_conversion;
5769 if (deduction_guide_p (decl))
5770 return sfk_deduction_guide;
5771 if (DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) >= OVL_OP_EQ_EXPR
5772 && DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) <= OVL_OP_SPACESHIP_EXPR)
5773 return sfk_comparison;
5775 return sfk_none;
5778 /* As above, but only if DECL is a special member function as per 11.3.3
5779 [special]: default/copy/move ctor, copy/move assignment, or destructor. */
5781 special_function_kind
5782 special_memfn_p (const_tree decl)
5784 switch (special_function_kind sfk = special_function_p (decl))
5786 case sfk_constructor:
5787 if (!default_ctor_p (decl))
5788 break;
5789 gcc_fallthrough();
5790 case sfk_copy_constructor:
5791 case sfk_copy_assignment:
5792 case sfk_move_assignment:
5793 case sfk_move_constructor:
5794 case sfk_destructor:
5795 return sfk;
5797 default:
5798 break;
5800 return sfk_none;
5803 /* Returns nonzero if TYPE is a character type, including wchar_t. */
5806 char_type_p (tree type)
5808 return (same_type_p (type, char_type_node)
5809 || same_type_p (type, unsigned_char_type_node)
5810 || same_type_p (type, signed_char_type_node)
5811 || same_type_p (type, char8_type_node)
5812 || same_type_p (type, char16_type_node)
5813 || same_type_p (type, char32_type_node)
5814 || same_type_p (type, wchar_type_node));
5817 /* Returns the kind of linkage associated with the indicated DECL. Th
5818 value returned is as specified by the language standard; it is
5819 independent of implementation details regarding template
5820 instantiation, etc. For example, it is possible that a declaration
5821 to which this function assigns external linkage would not show up
5822 as a global symbol when you run `nm' on the resulting object file. */
5824 linkage_kind
5825 decl_linkage (tree decl)
5827 /* This function doesn't attempt to calculate the linkage from first
5828 principles as given in [basic.link]. Instead, it makes use of
5829 the fact that we have already set TREE_PUBLIC appropriately, and
5830 then handles a few special cases. Ideally, we would calculate
5831 linkage first, and then transform that into a concrete
5832 implementation. */
5834 /* Things that don't have names have no linkage. */
5835 if (!DECL_NAME (decl))
5836 return lk_none;
5838 /* Fields have no linkage. */
5839 if (TREE_CODE (decl) == FIELD_DECL)
5840 return lk_none;
5842 /* Things in local scope do not have linkage. */
5843 if (decl_function_context (decl))
5844 return lk_none;
5846 /* Things that are TREE_PUBLIC have external linkage. */
5847 if (TREE_PUBLIC (decl))
5848 return lk_external;
5850 /* maybe_thunk_body clears TREE_PUBLIC on the maybe-in-charge 'tor variants,
5851 check one of the "clones" for the real linkage. */
5852 if (DECL_MAYBE_IN_CHARGE_CDTOR_P (decl)
5853 && DECL_CHAIN (decl)
5854 && DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)))
5855 return decl_linkage (DECL_CHAIN (decl));
5857 if (TREE_CODE (decl) == NAMESPACE_DECL)
5858 return lk_external;
5860 /* Linkage of a CONST_DECL depends on the linkage of the enumeration
5861 type. */
5862 if (TREE_CODE (decl) == CONST_DECL)
5863 return decl_linkage (TYPE_NAME (DECL_CONTEXT (decl)));
5865 /* Members of the anonymous namespace also have TREE_PUBLIC unset, but
5866 are considered to have external linkage for language purposes, as do
5867 template instantiations on targets without weak symbols. DECLs really
5868 meant to have internal linkage have DECL_THIS_STATIC set. */
5869 if (TREE_CODE (decl) == TYPE_DECL)
5870 return lk_external;
5871 if (VAR_OR_FUNCTION_DECL_P (decl))
5873 if (!DECL_THIS_STATIC (decl))
5874 return lk_external;
5876 /* Static data members and static member functions from classes
5877 in anonymous namespace also don't have TREE_PUBLIC set. */
5878 if (DECL_CLASS_CONTEXT (decl))
5879 return lk_external;
5882 /* Everything else has internal linkage. */
5883 return lk_internal;
5886 /* Returns the storage duration of the object or reference associated with
5887 the indicated DECL, which should be a VAR_DECL or PARM_DECL. */
5889 duration_kind
5890 decl_storage_duration (tree decl)
5892 if (TREE_CODE (decl) == PARM_DECL)
5893 return dk_auto;
5894 if (TREE_CODE (decl) == FUNCTION_DECL)
5895 return dk_static;
5896 gcc_assert (VAR_P (decl));
5897 if (!TREE_STATIC (decl)
5898 && !DECL_EXTERNAL (decl))
5899 return dk_auto;
5900 if (CP_DECL_THREAD_LOCAL_P (decl))
5901 return dk_thread;
5902 return dk_static;
5905 /* EXP is an expression that we want to pre-evaluate. Returns (in
5906 *INITP) an expression that will perform the pre-evaluation. The
5907 value returned by this function is a side-effect free expression
5908 equivalent to the pre-evaluated expression. Callers must ensure
5909 that *INITP is evaluated before EXP. */
5911 tree
5912 stabilize_expr (tree exp, tree* initp)
5914 tree init_expr;
5916 if (!TREE_SIDE_EFFECTS (exp))
5917 init_expr = NULL_TREE;
5918 else if (VOID_TYPE_P (TREE_TYPE (exp)))
5920 init_expr = exp;
5921 exp = void_node;
5923 /* There are no expressions with REFERENCE_TYPE, but there can be call
5924 arguments with such a type; just treat it as a pointer. */
5925 else if (TYPE_REF_P (TREE_TYPE (exp))
5926 || SCALAR_TYPE_P (TREE_TYPE (exp))
5927 || !glvalue_p (exp))
5929 init_expr = get_target_expr (exp);
5930 exp = TARGET_EXPR_SLOT (init_expr);
5931 if (CLASS_TYPE_P (TREE_TYPE (exp)))
5932 exp = move (exp);
5933 else
5934 exp = rvalue (exp);
5936 else
5938 bool xval = !lvalue_p (exp);
5939 exp = cp_build_addr_expr (exp, tf_warning_or_error);
5940 init_expr = get_target_expr (exp);
5941 exp = TARGET_EXPR_SLOT (init_expr);
5942 exp = cp_build_fold_indirect_ref (exp);
5943 if (xval)
5944 exp = move (exp);
5946 *initp = init_expr;
5948 gcc_assert (!TREE_SIDE_EFFECTS (exp));
5949 return exp;
5952 /* Add NEW_EXPR, an expression whose value we don't care about, after the
5953 similar expression ORIG. */
5955 tree
5956 add_stmt_to_compound (tree orig, tree new_expr)
5958 if (!new_expr || !TREE_SIDE_EFFECTS (new_expr))
5959 return orig;
5960 if (!orig || !TREE_SIDE_EFFECTS (orig))
5961 return new_expr;
5962 return build2 (COMPOUND_EXPR, void_type_node, orig, new_expr);
5965 /* Like stabilize_expr, but for a call whose arguments we want to
5966 pre-evaluate. CALL is modified in place to use the pre-evaluated
5967 arguments, while, upon return, *INITP contains an expression to
5968 compute the arguments. */
5970 void
5971 stabilize_call (tree call, tree *initp)
5973 tree inits = NULL_TREE;
5974 int i;
5975 int nargs = call_expr_nargs (call);
5977 if (call == error_mark_node || processing_template_decl)
5979 *initp = NULL_TREE;
5980 return;
5983 gcc_assert (TREE_CODE (call) == CALL_EXPR);
5985 for (i = 0; i < nargs; i++)
5987 tree init;
5988 CALL_EXPR_ARG (call, i) =
5989 stabilize_expr (CALL_EXPR_ARG (call, i), &init);
5990 inits = add_stmt_to_compound (inits, init);
5993 *initp = inits;
5996 /* Like stabilize_expr, but for an AGGR_INIT_EXPR whose arguments we want
5997 to pre-evaluate. CALL is modified in place to use the pre-evaluated
5998 arguments, while, upon return, *INITP contains an expression to
5999 compute the arguments. */
6001 static void
6002 stabilize_aggr_init (tree call, tree *initp)
6004 tree inits = NULL_TREE;
6005 int i;
6006 int nargs = aggr_init_expr_nargs (call);
6008 if (call == error_mark_node)
6009 return;
6011 gcc_assert (TREE_CODE (call) == AGGR_INIT_EXPR);
6013 for (i = 0; i < nargs; i++)
6015 tree init;
6016 AGGR_INIT_EXPR_ARG (call, i) =
6017 stabilize_expr (AGGR_INIT_EXPR_ARG (call, i), &init);
6018 inits = add_stmt_to_compound (inits, init);
6021 *initp = inits;
6024 /* Like stabilize_expr, but for an initialization.
6026 If the initialization is for an object of class type, this function
6027 takes care not to introduce additional temporaries.
6029 Returns TRUE iff the expression was successfully pre-evaluated,
6030 i.e., if INIT is now side-effect free, except for, possibly, a
6031 single call to a constructor. */
6033 bool
6034 stabilize_init (tree init, tree *initp)
6036 tree t = init;
6038 *initp = NULL_TREE;
6040 if (t == error_mark_node || processing_template_decl)
6041 return true;
6043 if (TREE_CODE (t) == INIT_EXPR)
6044 t = TREE_OPERAND (t, 1);
6045 if (TREE_CODE (t) == TARGET_EXPR)
6046 t = TARGET_EXPR_INITIAL (t);
6048 /* If the RHS can be stabilized without breaking copy elision, stabilize
6049 it. We specifically don't stabilize class prvalues here because that
6050 would mean an extra copy, but they might be stabilized below. */
6051 if (TREE_CODE (init) == INIT_EXPR
6052 && TREE_CODE (t) != CONSTRUCTOR
6053 && TREE_CODE (t) != AGGR_INIT_EXPR
6054 && (SCALAR_TYPE_P (TREE_TYPE (t))
6055 || glvalue_p (t)))
6057 TREE_OPERAND (init, 1) = stabilize_expr (t, initp);
6058 return true;
6061 if (TREE_CODE (t) == COMPOUND_EXPR
6062 && TREE_CODE (init) == INIT_EXPR)
6064 tree last = expr_last (t);
6065 /* Handle stabilizing the EMPTY_CLASS_EXPR pattern. */
6066 if (!TREE_SIDE_EFFECTS (last))
6068 *initp = t;
6069 TREE_OPERAND (init, 1) = last;
6070 return true;
6074 if (TREE_CODE (t) == CONSTRUCTOR)
6076 /* Aggregate initialization: stabilize each of the field
6077 initializers. */
6078 unsigned i;
6079 constructor_elt *ce;
6080 bool good = true;
6081 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
6082 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
6084 tree type = TREE_TYPE (ce->value);
6085 tree subinit;
6086 if (TYPE_REF_P (type)
6087 || SCALAR_TYPE_P (type))
6088 ce->value = stabilize_expr (ce->value, &subinit);
6089 else if (!stabilize_init (ce->value, &subinit))
6090 good = false;
6091 *initp = add_stmt_to_compound (*initp, subinit);
6093 return good;
6096 if (TREE_CODE (t) == CALL_EXPR)
6098 stabilize_call (t, initp);
6099 return true;
6102 if (TREE_CODE (t) == AGGR_INIT_EXPR)
6104 stabilize_aggr_init (t, initp);
6105 return true;
6108 /* The initialization is being performed via a bitwise copy -- and
6109 the item copied may have side effects. */
6110 return !TREE_SIDE_EFFECTS (init);
6113 /* Returns true if a cast to TYPE may appear in an integral constant
6114 expression. */
6116 bool
6117 cast_valid_in_integral_constant_expression_p (tree type)
6119 return (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
6120 || cxx_dialect >= cxx11
6121 || dependent_type_p (type)
6122 || type == error_mark_node);
6125 /* Return true if we need to fix linkage information of DECL. */
6127 static bool
6128 cp_fix_function_decl_p (tree decl)
6130 /* Skip if DECL is not externally visible. */
6131 if (!TREE_PUBLIC (decl))
6132 return false;
6134 /* We need to fix DECL if it a appears to be exported but with no
6135 function body. Thunks do not have CFGs and we may need to
6136 handle them specially later. */
6137 if (!gimple_has_body_p (decl)
6138 && !DECL_THUNK_P (decl)
6139 && !DECL_EXTERNAL (decl))
6141 struct cgraph_node *node = cgraph_node::get (decl);
6143 /* Don't fix same_body aliases. Although they don't have their own
6144 CFG, they share it with what they alias to. */
6145 if (!node || !node->alias || !node->num_references ())
6146 return true;
6149 return false;
6152 /* Clean the C++ specific parts of the tree T. */
6154 void
6155 cp_free_lang_data (tree t)
6157 if (FUNC_OR_METHOD_TYPE_P (t))
6159 /* Default args are not interesting anymore. */
6160 tree argtypes = TYPE_ARG_TYPES (t);
6161 while (argtypes)
6163 TREE_PURPOSE (argtypes) = 0;
6164 argtypes = TREE_CHAIN (argtypes);
6167 else if (TREE_CODE (t) == FUNCTION_DECL
6168 && cp_fix_function_decl_p (t))
6170 /* If T is used in this translation unit at all, the definition
6171 must exist somewhere else since we have decided to not emit it
6172 in this TU. So make it an external reference. */
6173 DECL_EXTERNAL (t) = 1;
6174 TREE_STATIC (t) = 0;
6176 if (TREE_CODE (t) == NAMESPACE_DECL)
6177 /* We do not need the leftover chaining of namespaces from the
6178 binding level. */
6179 DECL_CHAIN (t) = NULL_TREE;
6182 /* Stub for c-common. Please keep in sync with c-decl.cc.
6183 FIXME: If address space support is target specific, then this
6184 should be a C target hook. But currently this is not possible,
6185 because this function is called via REGISTER_TARGET_PRAGMAS. */
6186 void
6187 c_register_addr_space (const char * /*word*/, addr_space_t /*as*/)
6191 /* Return the number of operands in T that we care about for things like
6192 mangling. */
6195 cp_tree_operand_length (const_tree t)
6197 enum tree_code code = TREE_CODE (t);
6199 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
6200 return VL_EXP_OPERAND_LENGTH (t);
6202 return cp_tree_code_length (code);
6205 /* Like cp_tree_operand_length, but takes a tree_code CODE. */
6208 cp_tree_code_length (enum tree_code code)
6210 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
6212 switch (code)
6214 case PREINCREMENT_EXPR:
6215 case PREDECREMENT_EXPR:
6216 case POSTINCREMENT_EXPR:
6217 case POSTDECREMENT_EXPR:
6218 return 1;
6220 case ARRAY_REF:
6221 return 2;
6223 case EXPR_PACK_EXPANSION:
6224 return 1;
6226 default:
6227 return TREE_CODE_LENGTH (code);
6231 /* Implement -Wzero_as_null_pointer_constant. Return true if the
6232 conditions for the warning hold, false otherwise. */
6233 bool
6234 maybe_warn_zero_as_null_pointer_constant (tree expr, location_t loc)
6236 if (c_inhibit_evaluation_warnings == 0
6237 && !null_node_p (expr) && !NULLPTR_TYPE_P (TREE_TYPE (expr)))
6239 warning_at (loc, OPT_Wzero_as_null_pointer_constant,
6240 "zero as null pointer constant");
6241 return true;
6243 return false;
6246 /* FNDECL is a function declaration whose type may have been altered by
6247 adding extra parameters such as this, in-charge, or VTT. When this
6248 takes place, the positional arguments supplied by the user (as in the
6249 'format' attribute arguments) may refer to the wrong argument. This
6250 function returns an integer indicating how many arguments should be
6251 skipped. */
6254 maybe_adjust_arg_pos_for_attribute (const_tree fndecl)
6256 if (!fndecl)
6257 return 0;
6258 int n = num_artificial_parms_for (fndecl);
6259 /* The manual states that it's the user's responsibility to account
6260 for the implicit this parameter. */
6261 return n > 0 ? n - 1 : 0;
6265 /* Release memory we no longer need after parsing. */
6266 void
6267 cp_tree_c_finish_parsing ()
6269 if (previous_class_level)
6270 invalidate_class_lookup_cache ();
6271 deleted_copy_types = NULL;
6274 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
6275 /* Complain that some language-specific thing hanging off a tree
6276 node has been accessed improperly. */
6278 void
6279 lang_check_failed (const char* file, int line, const char* function)
6281 internal_error ("%<lang_*%> check: failed in %s, at %s:%d",
6282 function, trim_filename (file), line);
6284 #endif /* ENABLE_TREE_CHECKING */
6286 #if CHECKING_P
6288 namespace selftest {
6290 /* Verify that lvalue_kind () works, for various expressions,
6291 and that location wrappers don't affect the results. */
6293 static void
6294 test_lvalue_kind ()
6296 location_t loc = BUILTINS_LOCATION;
6298 /* Verify constants and parameters, without and with
6299 location wrappers. */
6300 tree int_cst = build_int_cst (integer_type_node, 42);
6301 ASSERT_EQ (clk_none, lvalue_kind (int_cst));
6303 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
6304 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
6305 ASSERT_EQ (clk_none, lvalue_kind (wrapped_int_cst));
6307 tree string_lit = build_string (4, "foo");
6308 TREE_TYPE (string_lit) = char_array_type_node;
6309 string_lit = fix_string_type (string_lit);
6310 ASSERT_EQ (clk_ordinary, lvalue_kind (string_lit));
6312 tree wrapped_string_lit = maybe_wrap_with_location (string_lit, loc);
6313 ASSERT_TRUE (location_wrapper_p (wrapped_string_lit));
6314 ASSERT_EQ (clk_ordinary, lvalue_kind (wrapped_string_lit));
6316 tree parm = build_decl (UNKNOWN_LOCATION, PARM_DECL,
6317 get_identifier ("some_parm"),
6318 integer_type_node);
6319 ASSERT_EQ (clk_ordinary, lvalue_kind (parm));
6321 tree wrapped_parm = maybe_wrap_with_location (parm, loc);
6322 ASSERT_TRUE (location_wrapper_p (wrapped_parm));
6323 ASSERT_EQ (clk_ordinary, lvalue_kind (wrapped_parm));
6325 /* Verify that lvalue_kind of std::move on a parm isn't
6326 affected by location wrappers. */
6327 tree rvalue_ref_of_parm = move (parm);
6328 ASSERT_EQ (clk_rvalueref, lvalue_kind (rvalue_ref_of_parm));
6329 tree rvalue_ref_of_wrapped_parm = move (wrapped_parm);
6330 ASSERT_EQ (clk_rvalueref, lvalue_kind (rvalue_ref_of_wrapped_parm));
6332 /* Verify lvalue_p. */
6333 ASSERT_FALSE (lvalue_p (int_cst));
6334 ASSERT_FALSE (lvalue_p (wrapped_int_cst));
6335 ASSERT_TRUE (lvalue_p (parm));
6336 ASSERT_TRUE (lvalue_p (wrapped_parm));
6337 ASSERT_FALSE (lvalue_p (rvalue_ref_of_parm));
6338 ASSERT_FALSE (lvalue_p (rvalue_ref_of_wrapped_parm));
6341 /* Run all of the selftests within this file. */
6343 void
6344 cp_tree_cc_tests ()
6346 test_lvalue_kind ();
6349 } // namespace selftest
6351 #endif /* #if CHECKING_P */
6354 #include "gt-cp-tree.h"