c++: block-scope externs get an alias [PR95677,PR31775,PR95677]
[gcc.git] / gcc / cp / tree.c
1 /* Language-dependent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2020 Free Software Foundation, Inc.
3 Hacked by Michael Tiemann (tiemann@cygnus.com)
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
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"
39
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 *);
46
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
50 /* If REF is an lvalue, returns the kind of lvalue that REF is.
51 Otherwise, returns clk_none. */
52
53 cp_lvalue_kind
54 lvalue_kind (const_tree ref)
55 {
56 cp_lvalue_kind op1_lvalue_kind = clk_none;
57 cp_lvalue_kind op2_lvalue_kind = clk_none;
58
59 /* Expressions of reference type are sometimes wrapped in
60 INDIRECT_REFs. INDIRECT_REFs are just internal compiler
61 representation, not part of the language, so we have to look
62 through them. */
63 if (REFERENCE_REF_P (ref))
64 return lvalue_kind (TREE_OPERAND (ref, 0));
65
66 if (TREE_TYPE (ref)
67 && TYPE_REF_P (TREE_TYPE (ref)))
68 {
69 /* unnamed rvalue references are rvalues */
70 if (TYPE_REF_IS_RVALUE (TREE_TYPE (ref))
71 && TREE_CODE (ref) != PARM_DECL
72 && !VAR_P (ref)
73 && TREE_CODE (ref) != COMPONENT_REF
74 /* Functions are always lvalues. */
75 && TREE_CODE (TREE_TYPE (TREE_TYPE (ref))) != FUNCTION_TYPE)
76 {
77 op1_lvalue_kind = clk_rvalueref;
78 if (implicit_rvalue_p (ref))
79 op1_lvalue_kind |= clk_implicit_rval;
80 return op1_lvalue_kind;
81 }
82
83 /* lvalue references and named rvalue references are lvalues. */
84 return clk_ordinary;
85 }
86
87 if (ref == current_class_ptr)
88 return clk_none;
89
90 /* Expressions with cv void type are prvalues. */
91 if (TREE_TYPE (ref) && VOID_TYPE_P (TREE_TYPE (ref)))
92 return clk_none;
93
94 switch (TREE_CODE (ref))
95 {
96 case SAVE_EXPR:
97 return clk_none;
98
99 /* preincrements and predecrements are valid lvals, provided
100 what they refer to are valid lvals. */
101 case PREINCREMENT_EXPR:
102 case PREDECREMENT_EXPR:
103 case TRY_CATCH_EXPR:
104 case REALPART_EXPR:
105 case IMAGPART_EXPR:
106 case VIEW_CONVERT_EXPR:
107 return lvalue_kind (TREE_OPERAND (ref, 0));
108
109 case ARRAY_REF:
110 {
111 tree op1 = TREE_OPERAND (ref, 0);
112 if (TREE_CODE (TREE_TYPE (op1)) == ARRAY_TYPE)
113 {
114 op1_lvalue_kind = lvalue_kind (op1);
115 if (op1_lvalue_kind == clk_class)
116 /* in the case of an array operand, the result is an lvalue if
117 that operand is an lvalue and an xvalue otherwise */
118 op1_lvalue_kind = clk_rvalueref;
119 return op1_lvalue_kind;
120 }
121 else
122 return clk_ordinary;
123 }
124
125 case MEMBER_REF:
126 case DOTSTAR_EXPR:
127 if (TREE_CODE (ref) == MEMBER_REF)
128 op1_lvalue_kind = clk_ordinary;
129 else
130 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
131 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (ref, 1))))
132 op1_lvalue_kind = clk_none;
133 else if (op1_lvalue_kind == clk_class)
134 /* The result of a .* expression whose second operand is a pointer to a
135 data member is an lvalue if the first operand is an lvalue and an
136 xvalue otherwise. */
137 op1_lvalue_kind = clk_rvalueref;
138 return op1_lvalue_kind;
139
140 case COMPONENT_REF:
141 if (BASELINK_P (TREE_OPERAND (ref, 1)))
142 {
143 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (ref, 1));
144
145 /* For static member function recurse on the BASELINK, we can get
146 here e.g. from reference_binding. If BASELINK_FUNCTIONS is
147 OVERLOAD, the overload is resolved first if possible through
148 resolve_address_of_overloaded_function. */
149 if (TREE_CODE (fn) == FUNCTION_DECL && DECL_STATIC_FUNCTION_P (fn))
150 return lvalue_kind (TREE_OPERAND (ref, 1));
151 }
152 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
153 if (op1_lvalue_kind == clk_class)
154 /* If E1 is an lvalue, then E1.E2 is an lvalue;
155 otherwise E1.E2 is an xvalue. */
156 op1_lvalue_kind = clk_rvalueref;
157
158 /* Look at the member designator. */
159 if (!op1_lvalue_kind)
160 ;
161 else if (is_overloaded_fn (TREE_OPERAND (ref, 1)))
162 /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
163 situations. If we're seeing a COMPONENT_REF, it's a non-static
164 member, so it isn't an lvalue. */
165 op1_lvalue_kind = clk_none;
166 else if (TREE_CODE (TREE_OPERAND (ref, 1)) != FIELD_DECL)
167 /* This can be IDENTIFIER_NODE in a template. */;
168 else if (DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
169 {
170 /* Clear the ordinary bit. If this object was a class
171 rvalue we want to preserve that information. */
172 op1_lvalue_kind &= ~clk_ordinary;
173 /* The lvalue is for a bitfield. */
174 op1_lvalue_kind |= clk_bitfield;
175 }
176 else if (DECL_PACKED (TREE_OPERAND (ref, 1)))
177 op1_lvalue_kind |= clk_packed;
178
179 return op1_lvalue_kind;
180
181 case STRING_CST:
182 case COMPOUND_LITERAL_EXPR:
183 return clk_ordinary;
184
185 case CONST_DECL:
186 /* CONST_DECL without TREE_STATIC are enumeration values and
187 thus not lvalues. With TREE_STATIC they are used by ObjC++
188 in objc_build_string_object and need to be considered as
189 lvalues. */
190 if (! TREE_STATIC (ref))
191 return clk_none;
192 /* FALLTHRU */
193 case VAR_DECL:
194 if (VAR_P (ref) && DECL_HAS_VALUE_EXPR_P (ref))
195 return lvalue_kind (DECL_VALUE_EXPR (CONST_CAST_TREE (ref)));
196
197 if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
198 && DECL_LANG_SPECIFIC (ref)
199 && DECL_IN_AGGR_P (ref))
200 return clk_none;
201 /* FALLTHRU */
202 case INDIRECT_REF:
203 case ARROW_EXPR:
204 case PARM_DECL:
205 case RESULT_DECL:
206 case PLACEHOLDER_EXPR:
207 return clk_ordinary;
208
209 /* A scope ref in a template, left as SCOPE_REF to support later
210 access checking. */
211 case SCOPE_REF:
212 gcc_assert (!type_dependent_expression_p (CONST_CAST_TREE (ref)));
213 {
214 tree op = TREE_OPERAND (ref, 1);
215 if (TREE_CODE (op) == FIELD_DECL)
216 return (DECL_C_BIT_FIELD (op) ? clk_bitfield : clk_ordinary);
217 else
218 return lvalue_kind (op);
219 }
220
221 case MAX_EXPR:
222 case MIN_EXPR:
223 /* Disallow <? and >? as lvalues if either argument side-effects. */
224 if (TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 0))
225 || TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 1)))
226 return clk_none;
227 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
228 op2_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 1));
229 break;
230
231 case COND_EXPR:
232 if (processing_template_decl)
233 {
234 /* Within templates, a REFERENCE_TYPE will indicate whether
235 the COND_EXPR result is an ordinary lvalue or rvalueref.
236 Since REFERENCE_TYPEs are handled above, if we reach this
237 point, we know we got a plain rvalue. Unless we have a
238 type-dependent expr, that is, but we shouldn't be testing
239 lvalueness if we can't even tell the types yet! */
240 gcc_assert (!type_dependent_expression_p (CONST_CAST_TREE (ref)));
241 goto default_;
242 }
243 {
244 tree op1 = TREE_OPERAND (ref, 1);
245 if (!op1) op1 = TREE_OPERAND (ref, 0);
246 tree op2 = TREE_OPERAND (ref, 2);
247 op1_lvalue_kind = lvalue_kind (op1);
248 op2_lvalue_kind = lvalue_kind (op2);
249 if (!op1_lvalue_kind != !op2_lvalue_kind)
250 {
251 /* The second or the third operand (but not both) is a
252 throw-expression; the result is of the type
253 and value category of the other. */
254 if (op1_lvalue_kind && TREE_CODE (op2) == THROW_EXPR)
255 op2_lvalue_kind = op1_lvalue_kind;
256 else if (op2_lvalue_kind && TREE_CODE (op1) == THROW_EXPR)
257 op1_lvalue_kind = op2_lvalue_kind;
258 }
259 }
260 break;
261
262 case MODOP_EXPR:
263 /* We expect to see unlowered MODOP_EXPRs only during
264 template processing. */
265 gcc_assert (processing_template_decl);
266 return clk_ordinary;
267
268 case MODIFY_EXPR:
269 case TYPEID_EXPR:
270 return clk_ordinary;
271
272 case COMPOUND_EXPR:
273 return lvalue_kind (TREE_OPERAND (ref, 1));
274
275 case TARGET_EXPR:
276 return clk_class;
277
278 case VA_ARG_EXPR:
279 return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none);
280
281 case CALL_EXPR:
282 /* We can see calls outside of TARGET_EXPR in templates. */
283 if (CLASS_TYPE_P (TREE_TYPE (ref)))
284 return clk_class;
285 return clk_none;
286
287 case FUNCTION_DECL:
288 /* All functions (except non-static-member functions) are
289 lvalues. */
290 return (DECL_NONSTATIC_MEMBER_FUNCTION_P (ref)
291 ? clk_none : clk_ordinary);
292
293 case BASELINK:
294 /* We now represent a reference to a single static member function
295 with a BASELINK. */
296 /* This CONST_CAST is okay because BASELINK_FUNCTIONS returns
297 its argument unmodified and we assign it to a const_tree. */
298 return lvalue_kind (BASELINK_FUNCTIONS (CONST_CAST_TREE (ref)));
299
300 case NON_DEPENDENT_EXPR:
301 case PAREN_EXPR:
302 return lvalue_kind (TREE_OPERAND (ref, 0));
303
304 case TEMPLATE_PARM_INDEX:
305 if (CLASS_TYPE_P (TREE_TYPE (ref)))
306 /* A template parameter object is an lvalue. */
307 return clk_ordinary;
308 return clk_none;
309
310 default:
311 default_:
312 if (!TREE_TYPE (ref))
313 return clk_none;
314 if (CLASS_TYPE_P (TREE_TYPE (ref))
315 || TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE)
316 return clk_class;
317 return clk_none;
318 }
319
320 /* If one operand is not an lvalue at all, then this expression is
321 not an lvalue. */
322 if (!op1_lvalue_kind || !op2_lvalue_kind)
323 return clk_none;
324
325 /* Otherwise, it's an lvalue, and it has all the odd properties
326 contributed by either operand. */
327 op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
328 /* It's not an ordinary lvalue if it involves any other kind. */
329 if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
330 op1_lvalue_kind &= ~clk_ordinary;
331 /* It can't be both a pseudo-lvalue and a non-addressable lvalue.
332 A COND_EXPR of those should be wrapped in a TARGET_EXPR. */
333 if ((op1_lvalue_kind & (clk_rvalueref|clk_class))
334 && (op1_lvalue_kind & (clk_bitfield|clk_packed)))
335 op1_lvalue_kind = clk_none;
336 return op1_lvalue_kind;
337 }
338
339 /* Returns the kind of lvalue that REF is, in the sense of [basic.lval]. */
340
341 cp_lvalue_kind
342 real_lvalue_p (const_tree ref)
343 {
344 cp_lvalue_kind kind = lvalue_kind (ref);
345 if (kind & (clk_rvalueref|clk_class))
346 return clk_none;
347 else
348 return kind;
349 }
350
351 /* c-common wants us to return bool. */
352
353 bool
354 lvalue_p (const_tree t)
355 {
356 return real_lvalue_p (t);
357 }
358
359 /* This differs from lvalue_p in that xvalues are included. */
360
361 bool
362 glvalue_p (const_tree ref)
363 {
364 cp_lvalue_kind kind = lvalue_kind (ref);
365 if (kind & clk_class)
366 return false;
367 else
368 return (kind != clk_none);
369 }
370
371 /* This differs from glvalue_p in that class prvalues are included. */
372
373 bool
374 obvalue_p (const_tree ref)
375 {
376 return (lvalue_kind (ref) != clk_none);
377 }
378
379 /* Returns true if REF is an xvalue (the result of dereferencing an rvalue
380 reference), false otherwise. */
381
382 bool
383 xvalue_p (const_tree ref)
384 {
385 return (lvalue_kind (ref) == clk_rvalueref);
386 }
387
388 /* True if REF is a bit-field. */
389
390 bool
391 bitfield_p (const_tree ref)
392 {
393 return (lvalue_kind (ref) & clk_bitfield);
394 }
395
396 /* C++-specific version of stabilize_reference. */
397
398 tree
399 cp_stabilize_reference (tree ref)
400 {
401 STRIP_ANY_LOCATION_WRAPPER (ref);
402 switch (TREE_CODE (ref))
403 {
404 case NON_DEPENDENT_EXPR:
405 /* We aren't actually evaluating this. */
406 return ref;
407
408 /* We need to treat specially anything stabilize_reference doesn't
409 handle specifically. */
410 case VAR_DECL:
411 case PARM_DECL:
412 case RESULT_DECL:
413 CASE_CONVERT:
414 case FLOAT_EXPR:
415 case FIX_TRUNC_EXPR:
416 case INDIRECT_REF:
417 case COMPONENT_REF:
418 case BIT_FIELD_REF:
419 case ARRAY_REF:
420 case ARRAY_RANGE_REF:
421 case ERROR_MARK:
422 break;
423 default:
424 cp_lvalue_kind kind = lvalue_kind (ref);
425 if ((kind & ~clk_class) != clk_none)
426 {
427 tree type = unlowered_expr_type (ref);
428 bool rval = !!(kind & clk_rvalueref);
429 type = cp_build_reference_type (type, rval);
430 /* This inhibits warnings in, eg, cxx_mark_addressable
431 (c++/60955). */
432 warning_sentinel s (extra_warnings);
433 ref = build_static_cast (input_location, type, ref,
434 tf_error);
435 }
436 }
437
438 return stabilize_reference (ref);
439 }
440
441 /* Test whether DECL is a builtin that may appear in a
442 constant-expression. */
443
444 bool
445 builtin_valid_in_constant_expr_p (const_tree decl)
446 {
447 STRIP_ANY_LOCATION_WRAPPER (decl);
448 if (TREE_CODE (decl) != FUNCTION_DECL)
449 /* Not a function. */
450 return false;
451 if (DECL_BUILT_IN_CLASS (decl) != BUILT_IN_NORMAL)
452 {
453 if (fndecl_built_in_p (decl, CP_BUILT_IN_IS_CONSTANT_EVALUATED,
454 BUILT_IN_FRONTEND)
455 || fndecl_built_in_p (decl, CP_BUILT_IN_SOURCE_LOCATION,
456 BUILT_IN_FRONTEND))
457 return true;
458 /* Not a built-in. */
459 return false;
460 }
461 switch (DECL_FUNCTION_CODE (decl))
462 {
463 /* These always have constant results like the corresponding
464 macros/symbol. */
465 case BUILT_IN_FILE:
466 case BUILT_IN_FUNCTION:
467 case BUILT_IN_LINE:
468
469 /* The following built-ins are valid in constant expressions
470 when their arguments are. */
471 case BUILT_IN_ADD_OVERFLOW_P:
472 case BUILT_IN_SUB_OVERFLOW_P:
473 case BUILT_IN_MUL_OVERFLOW_P:
474
475 /* These have constant results even if their operands are
476 non-constant. */
477 case BUILT_IN_CONSTANT_P:
478 case BUILT_IN_ATOMIC_ALWAYS_LOCK_FREE:
479 return true;
480 default:
481 return false;
482 }
483 }
484
485 /* Build a TARGET_EXPR, initializing the DECL with the VALUE. */
486
487 static tree
488 build_target_expr (tree decl, tree value, tsubst_flags_t complain)
489 {
490 tree t;
491 tree type = TREE_TYPE (decl);
492
493 value = mark_rvalue_use (value);
494
495 gcc_checking_assert (VOID_TYPE_P (TREE_TYPE (value))
496 || TREE_TYPE (decl) == TREE_TYPE (value)
497 /* On ARM ctors return 'this'. */
498 || (TYPE_PTR_P (TREE_TYPE (value))
499 && TREE_CODE (value) == CALL_EXPR)
500 || useless_type_conversion_p (TREE_TYPE (decl),
501 TREE_TYPE (value)));
502
503 /* Set TREE_READONLY for optimization, such as gimplify_init_constructor
504 moving a constant aggregate into .rodata. */
505 if (CP_TYPE_CONST_NON_VOLATILE_P (type)
506 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
507 && !VOID_TYPE_P (TREE_TYPE (value))
508 && reduced_constant_expression_p (value))
509 TREE_READONLY (decl) = true;
510
511 if (complain & tf_no_cleanup)
512 /* The caller is building a new-expr and does not need a cleanup. */
513 t = NULL_TREE;
514 else
515 {
516 t = cxx_maybe_build_cleanup (decl, complain);
517 if (t == error_mark_node)
518 return error_mark_node;
519 }
520 t = build4 (TARGET_EXPR, type, decl, value, t, NULL_TREE);
521 if (location_t eloc = cp_expr_location (value))
522 SET_EXPR_LOCATION (t, eloc);
523 /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
524 ignore the TARGET_EXPR. If there really turn out to be no
525 side-effects, then the optimizer should be able to get rid of
526 whatever code is generated anyhow. */
527 TREE_SIDE_EFFECTS (t) = 1;
528
529 return t;
530 }
531
532 /* Return an undeclared local temporary of type TYPE for use in building a
533 TARGET_EXPR. */
534
535 tree
536 build_local_temp (tree type)
537 {
538 tree slot = build_decl (input_location,
539 VAR_DECL, NULL_TREE, type);
540 DECL_ARTIFICIAL (slot) = 1;
541 DECL_IGNORED_P (slot) = 1;
542 DECL_CONTEXT (slot) = current_function_decl;
543 layout_decl (slot, 0);
544 return slot;
545 }
546
547 /* Return whether DECL is such a local temporary (or one from
548 create_tmp_var_raw). */
549
550 bool
551 is_local_temp (tree decl)
552 {
553 return (VAR_P (decl) && DECL_ARTIFICIAL (decl)
554 && !TREE_STATIC (decl)
555 && DECL_FUNCTION_SCOPE_P (decl));
556 }
557
558 /* Set various status flags when building an AGGR_INIT_EXPR object T. */
559
560 static void
561 process_aggr_init_operands (tree t)
562 {
563 bool side_effects;
564
565 side_effects = TREE_SIDE_EFFECTS (t);
566 if (!side_effects)
567 {
568 int i, n;
569 n = TREE_OPERAND_LENGTH (t);
570 for (i = 1; i < n; i++)
571 {
572 tree op = TREE_OPERAND (t, i);
573 if (op && TREE_SIDE_EFFECTS (op))
574 {
575 side_effects = 1;
576 break;
577 }
578 }
579 }
580 TREE_SIDE_EFFECTS (t) = side_effects;
581 }
582
583 /* Build an AGGR_INIT_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE,
584 FN, and SLOT. NARGS is the number of call arguments which are specified
585 as a tree array ARGS. */
586
587 static tree
588 build_aggr_init_array (tree return_type, tree fn, tree slot, int nargs,
589 tree *args)
590 {
591 tree t;
592 int i;
593
594 t = build_vl_exp (AGGR_INIT_EXPR, nargs + 3);
595 TREE_TYPE (t) = return_type;
596 AGGR_INIT_EXPR_FN (t) = fn;
597 AGGR_INIT_EXPR_SLOT (t) = slot;
598 for (i = 0; i < nargs; i++)
599 AGGR_INIT_EXPR_ARG (t, i) = args[i];
600 process_aggr_init_operands (t);
601 return t;
602 }
603
604 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
605 target. TYPE is the type to be initialized.
606
607 Build an AGGR_INIT_EXPR to represent the initialization. This function
608 differs from build_cplus_new in that an AGGR_INIT_EXPR can only be used
609 to initialize another object, whereas a TARGET_EXPR can either
610 initialize another object or create its own temporary object, and as a
611 result building up a TARGET_EXPR requires that the type's destructor be
612 callable. */
613
614 tree
615 build_aggr_init_expr (tree type, tree init)
616 {
617 tree fn;
618 tree slot;
619 tree rval;
620 int is_ctor;
621
622 gcc_assert (!VOID_TYPE_P (type));
623
624 /* Don't build AGGR_INIT_EXPR in a template. */
625 if (processing_template_decl)
626 return init;
627
628 fn = cp_get_callee (init);
629 if (fn == NULL_TREE)
630 return convert (type, init);
631
632 is_ctor = (TREE_CODE (fn) == ADDR_EXPR
633 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
634 && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
635
636 /* We split the CALL_EXPR into its function and its arguments here.
637 Then, in expand_expr, we put them back together. The reason for
638 this is that this expression might be a default argument
639 expression. In that case, we need a new temporary every time the
640 expression is used. That's what break_out_target_exprs does; it
641 replaces every AGGR_INIT_EXPR with a copy that uses a fresh
642 temporary slot. Then, expand_expr builds up a call-expression
643 using the new slot. */
644
645 /* If we don't need to use a constructor to create an object of this
646 type, don't mess with AGGR_INIT_EXPR. */
647 if (is_ctor || TREE_ADDRESSABLE (type))
648 {
649 slot = build_local_temp (type);
650
651 if (TREE_CODE (init) == CALL_EXPR)
652 {
653 rval = build_aggr_init_array (void_type_node, fn, slot,
654 call_expr_nargs (init),
655 CALL_EXPR_ARGP (init));
656 AGGR_INIT_FROM_THUNK_P (rval)
657 = CALL_FROM_THUNK_P (init);
658 }
659 else
660 {
661 rval = build_aggr_init_array (void_type_node, fn, slot,
662 aggr_init_expr_nargs (init),
663 AGGR_INIT_EXPR_ARGP (init));
664 AGGR_INIT_FROM_THUNK_P (rval)
665 = AGGR_INIT_FROM_THUNK_P (init);
666 }
667 TREE_SIDE_EFFECTS (rval) = 1;
668 AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
669 TREE_NOTHROW (rval) = TREE_NOTHROW (init);
670 CALL_EXPR_OPERATOR_SYNTAX (rval) = CALL_EXPR_OPERATOR_SYNTAX (init);
671 CALL_EXPR_ORDERED_ARGS (rval) = CALL_EXPR_ORDERED_ARGS (init);
672 CALL_EXPR_REVERSE_ARGS (rval) = CALL_EXPR_REVERSE_ARGS (init);
673 }
674 else
675 rval = init;
676
677 if (location_t loc = EXPR_LOCATION (init))
678 SET_EXPR_LOCATION (rval, loc);
679
680 return rval;
681 }
682
683 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
684 target. TYPE is the type that this initialization should appear to
685 have.
686
687 Build an encapsulation of the initialization to perform
688 and return it so that it can be processed by language-independent
689 and language-specific expression expanders. */
690
691 tree
692 build_cplus_new (tree type, tree init, tsubst_flags_t complain)
693 {
694 /* This function should cope with what build_special_member_call
695 can produce. When performing parenthesized aggregate initialization,
696 it can produce a { }. */
697 if (BRACE_ENCLOSED_INITIALIZER_P (init))
698 {
699 gcc_assert (cxx_dialect >= cxx20);
700 return finish_compound_literal (type, init, complain);
701 }
702
703 tree rval = build_aggr_init_expr (type, init);
704 tree slot;
705
706 if (init == error_mark_node)
707 return error_mark_node;
708
709 if (!complete_type_or_maybe_complain (type, init, complain))
710 return error_mark_node;
711
712 /* Make sure that we're not trying to create an instance of an
713 abstract class. */
714 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
715 return error_mark_node;
716
717 if (TREE_CODE (rval) == AGGR_INIT_EXPR)
718 slot = AGGR_INIT_EXPR_SLOT (rval);
719 else if (TREE_CODE (rval) == CALL_EXPR
720 || TREE_CODE (rval) == CONSTRUCTOR)
721 slot = build_local_temp (type);
722 else
723 return rval;
724
725 rval = build_target_expr (slot, rval, complain);
726
727 if (rval != error_mark_node)
728 TARGET_EXPR_IMPLICIT_P (rval) = 1;
729
730 return rval;
731 }
732
733 /* Subroutine of build_vec_init_expr: Build up a single element
734 intialization as a proxy for the full array initialization to get things
735 marked as used and any appropriate diagnostics.
736
737 Since we're deferring building the actual constructor calls until
738 gimplification time, we need to build one now and throw it away so
739 that the relevant constructor gets mark_used before cgraph decides
740 what functions are needed. Here we assume that init is either
741 NULL_TREE, void_type_node (indicating value-initialization), or
742 another array to copy. */
743
744 static tree
745 build_vec_init_elt (tree type, tree init, tsubst_flags_t complain)
746 {
747 tree inner_type = strip_array_types (type);
748
749 if (integer_zerop (array_type_nelts_total (type))
750 || !CLASS_TYPE_P (inner_type))
751 /* No interesting initialization to do. */
752 return integer_zero_node;
753 else if (init == void_type_node)
754 return build_value_init (inner_type, complain);
755
756 gcc_assert (init == NULL_TREE
757 || (same_type_ignoring_top_level_qualifiers_p
758 (type, TREE_TYPE (init))));
759
760 releasing_vec argvec;
761 if (init)
762 {
763 tree init_type = strip_array_types (TREE_TYPE (init));
764 tree dummy = build_dummy_object (init_type);
765 if (!lvalue_p (init))
766 dummy = move (dummy);
767 argvec->quick_push (dummy);
768 }
769 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
770 &argvec, inner_type, LOOKUP_NORMAL,
771 complain);
772
773 /* For a trivial constructor, build_over_call creates a TARGET_EXPR. But
774 we don't want one here because we aren't creating a temporary. */
775 if (TREE_CODE (init) == TARGET_EXPR)
776 init = TARGET_EXPR_INITIAL (init);
777
778 return init;
779 }
780
781 /* Return a TARGET_EXPR which expresses the initialization of an array to
782 be named later, either default-initialization or copy-initialization
783 from another array of the same type. */
784
785 tree
786 build_vec_init_expr (tree type, tree init, tsubst_flags_t complain)
787 {
788 tree slot;
789 bool value_init = false;
790 tree elt_init = build_vec_init_elt (type, init, complain);
791
792 if (init == void_type_node)
793 {
794 value_init = true;
795 init = NULL_TREE;
796 }
797
798 slot = build_local_temp (type);
799 init = build2 (VEC_INIT_EXPR, type, slot, init);
800 TREE_SIDE_EFFECTS (init) = true;
801 SET_EXPR_LOCATION (init, input_location);
802
803 if (cxx_dialect >= cxx11
804 && potential_constant_expression (elt_init))
805 VEC_INIT_EXPR_IS_CONSTEXPR (init) = true;
806 VEC_INIT_EXPR_VALUE_INIT (init) = value_init;
807
808 return init;
809 }
810
811 /* Give a helpful diagnostic for a non-constexpr VEC_INIT_EXPR in a context
812 that requires a constant expression. */
813
814 void
815 diagnose_non_constexpr_vec_init (tree expr)
816 {
817 tree type = TREE_TYPE (VEC_INIT_EXPR_SLOT (expr));
818 tree init, elt_init;
819 if (VEC_INIT_EXPR_VALUE_INIT (expr))
820 init = void_type_node;
821 else
822 init = VEC_INIT_EXPR_INIT (expr);
823
824 elt_init = build_vec_init_elt (type, init, tf_warning_or_error);
825 require_potential_constant_expression (elt_init);
826 }
827
828 tree
829 build_array_copy (tree init)
830 {
831 return build_vec_init_expr (TREE_TYPE (init), init, tf_warning_or_error);
832 }
833
834 /* Build a TARGET_EXPR using INIT to initialize a new temporary of the
835 indicated TYPE. */
836
837 tree
838 build_target_expr_with_type (tree init, tree type, tsubst_flags_t complain)
839 {
840 gcc_assert (!VOID_TYPE_P (type));
841
842 if (TREE_CODE (init) == TARGET_EXPR
843 || init == error_mark_node)
844 return init;
845 else if (CLASS_TYPE_P (type) && type_has_nontrivial_copy_init (type)
846 && !VOID_TYPE_P (TREE_TYPE (init))
847 && TREE_CODE (init) != COND_EXPR
848 && TREE_CODE (init) != CONSTRUCTOR
849 && TREE_CODE (init) != VA_ARG_EXPR)
850 /* We need to build up a copy constructor call. A void initializer
851 means we're being called from bot_manip. COND_EXPR is a special
852 case because we already have copies on the arms and we don't want
853 another one here. A CONSTRUCTOR is aggregate initialization, which
854 is handled separately. A VA_ARG_EXPR is magic creation of an
855 aggregate; there's no additional work to be done. */
856 return force_rvalue (init, complain);
857
858 return force_target_expr (type, init, complain);
859 }
860
861 /* Like the above function, but without the checking. This function should
862 only be used by code which is deliberately trying to subvert the type
863 system, such as call_builtin_trap. Or build_over_call, to avoid
864 infinite recursion. */
865
866 tree
867 force_target_expr (tree type, tree init, tsubst_flags_t complain)
868 {
869 tree slot;
870
871 gcc_assert (!VOID_TYPE_P (type));
872
873 slot = build_local_temp (type);
874 return build_target_expr (slot, init, complain);
875 }
876
877 /* Like build_target_expr_with_type, but use the type of INIT. */
878
879 tree
880 get_target_expr_sfinae (tree init, tsubst_flags_t complain)
881 {
882 if (TREE_CODE (init) == AGGR_INIT_EXPR)
883 return build_target_expr (AGGR_INIT_EXPR_SLOT (init), init, complain);
884 else if (TREE_CODE (init) == VEC_INIT_EXPR)
885 return build_target_expr (VEC_INIT_EXPR_SLOT (init), init, complain);
886 else
887 {
888 init = convert_bitfield_to_declared_type (init);
889 return build_target_expr_with_type (init, TREE_TYPE (init), complain);
890 }
891 }
892
893 tree
894 get_target_expr (tree init)
895 {
896 return get_target_expr_sfinae (init, tf_warning_or_error);
897 }
898
899 /* If EXPR is a bitfield reference, convert it to the declared type of
900 the bitfield, and return the resulting expression. Otherwise,
901 return EXPR itself. */
902
903 tree
904 convert_bitfield_to_declared_type (tree expr)
905 {
906 tree bitfield_type;
907
908 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
909 if (bitfield_type)
910 expr = convert_to_integer_nofold (TYPE_MAIN_VARIANT (bitfield_type),
911 expr);
912 return expr;
913 }
914
915 /* EXPR is being used in an rvalue context. Return a version of EXPR
916 that is marked as an rvalue. */
917
918 tree
919 rvalue (tree expr)
920 {
921 tree type;
922
923 if (error_operand_p (expr))
924 return expr;
925
926 expr = mark_rvalue_use (expr);
927
928 /* [basic.lval]
929
930 Non-class rvalues always have cv-unqualified types. */
931 type = TREE_TYPE (expr);
932 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
933 type = cv_unqualified (type);
934
935 /* We need to do this for rvalue refs as well to get the right answer
936 from decltype; see c++/36628. */
937 if (!processing_template_decl && glvalue_p (expr))
938 expr = build1 (NON_LVALUE_EXPR, type, expr);
939 else if (type != TREE_TYPE (expr))
940 expr = build_nop (type, expr);
941
942 return expr;
943 }
944
945 \f
946 struct cplus_array_info
947 {
948 tree type;
949 tree domain;
950 };
951
952 struct cplus_array_hasher : ggc_ptr_hash<tree_node>
953 {
954 typedef cplus_array_info *compare_type;
955
956 static hashval_t hash (tree t);
957 static bool equal (tree, cplus_array_info *);
958 };
959
960 /* Hash an ARRAY_TYPE. K is really of type `tree'. */
961
962 hashval_t
963 cplus_array_hasher::hash (tree t)
964 {
965 hashval_t hash;
966
967 hash = TYPE_UID (TREE_TYPE (t));
968 if (TYPE_DOMAIN (t))
969 hash ^= TYPE_UID (TYPE_DOMAIN (t));
970 return hash;
971 }
972
973 /* Compare two ARRAY_TYPEs. K1 is really of type `tree', K2 is really
974 of type `cplus_array_info*'. */
975
976 bool
977 cplus_array_hasher::equal (tree t1, cplus_array_info *t2)
978 {
979 return (TREE_TYPE (t1) == t2->type && TYPE_DOMAIN (t1) == t2->domain);
980 }
981
982 /* Hash table containing dependent array types, which are unsuitable for
983 the language-independent type hash table. */
984 static GTY (()) hash_table<cplus_array_hasher> *cplus_array_htab;
985
986 /* Build an ARRAY_TYPE without laying it out. */
987
988 static tree
989 build_min_array_type (tree elt_type, tree index_type)
990 {
991 tree t = cxx_make_type (ARRAY_TYPE);
992 TREE_TYPE (t) = elt_type;
993 TYPE_DOMAIN (t) = index_type;
994 return t;
995 }
996
997 /* Set TYPE_CANONICAL like build_array_type_1, but using
998 build_cplus_array_type. */
999
1000 static void
1001 set_array_type_canon (tree t, tree elt_type, tree index_type)
1002 {
1003 /* Set the canonical type for this new node. */
1004 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
1005 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
1006 SET_TYPE_STRUCTURAL_EQUALITY (t);
1007 else if (TYPE_CANONICAL (elt_type) != elt_type
1008 || (index_type && TYPE_CANONICAL (index_type) != index_type))
1009 TYPE_CANONICAL (t)
1010 = build_cplus_array_type (TYPE_CANONICAL (elt_type),
1011 index_type
1012 ? TYPE_CANONICAL (index_type) : index_type);
1013 else
1014 TYPE_CANONICAL (t) = t;
1015 }
1016
1017 /* Like build_array_type, but handle special C++ semantics: an array of a
1018 variant element type is a variant of the array of the main variant of
1019 the element type. */
1020
1021 tree
1022 build_cplus_array_type (tree elt_type, tree index_type)
1023 {
1024 tree t;
1025
1026 if (elt_type == error_mark_node || index_type == error_mark_node)
1027 return error_mark_node;
1028
1029 bool dependent = (uses_template_parms (elt_type)
1030 || (index_type && uses_template_parms (index_type)));
1031
1032 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
1033 /* Start with an array of the TYPE_MAIN_VARIANT. */
1034 t = build_cplus_array_type (TYPE_MAIN_VARIANT (elt_type),
1035 index_type);
1036 else if (dependent)
1037 {
1038 /* Since type_hash_canon calls layout_type, we need to use our own
1039 hash table. */
1040 cplus_array_info cai;
1041 hashval_t hash;
1042
1043 if (cplus_array_htab == NULL)
1044 cplus_array_htab = hash_table<cplus_array_hasher>::create_ggc (61);
1045
1046 hash = TYPE_UID (elt_type);
1047 if (index_type)
1048 hash ^= TYPE_UID (index_type);
1049 cai.type = elt_type;
1050 cai.domain = index_type;
1051
1052 tree *e = cplus_array_htab->find_slot_with_hash (&cai, hash, INSERT);
1053 if (*e)
1054 /* We have found the type: we're done. */
1055 return (tree) *e;
1056 else
1057 {
1058 /* Build a new array type. */
1059 t = build_min_array_type (elt_type, index_type);
1060
1061 /* Store it in the hash table. */
1062 *e = t;
1063
1064 /* Set the canonical type for this new node. */
1065 set_array_type_canon (t, elt_type, index_type);
1066 }
1067 }
1068 else
1069 {
1070 bool typeless_storage = is_byte_access_type (elt_type);
1071 t = build_array_type (elt_type, index_type, typeless_storage);
1072 }
1073
1074 /* Now check whether we already have this array variant. */
1075 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
1076 {
1077 tree m = t;
1078 for (t = m; t; t = TYPE_NEXT_VARIANT (t))
1079 if (TREE_TYPE (t) == elt_type
1080 && TYPE_NAME (t) == NULL_TREE
1081 && TYPE_ATTRIBUTES (t) == NULL_TREE)
1082 break;
1083 if (!t)
1084 {
1085 t = build_min_array_type (elt_type, index_type);
1086 set_array_type_canon (t, elt_type, index_type);
1087 if (!dependent)
1088 {
1089 layout_type (t);
1090 /* Make sure sizes are shared with the main variant.
1091 layout_type can't be called after setting TYPE_NEXT_VARIANT,
1092 as it will overwrite alignment etc. of all variants. */
1093 TYPE_SIZE (t) = TYPE_SIZE (m);
1094 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (m);
1095 TYPE_TYPELESS_STORAGE (t) = TYPE_TYPELESS_STORAGE (m);
1096 }
1097
1098 TYPE_MAIN_VARIANT (t) = m;
1099 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
1100 TYPE_NEXT_VARIANT (m) = t;
1101 }
1102 }
1103
1104 /* Avoid spurious warnings with VLAs (c++/54583). */
1105 if (TYPE_SIZE (t) && EXPR_P (TYPE_SIZE (t)))
1106 TREE_NO_WARNING (TYPE_SIZE (t)) = 1;
1107
1108 /* Push these needs up to the ARRAY_TYPE so that initialization takes
1109 place more easily. */
1110 bool needs_ctor = (TYPE_NEEDS_CONSTRUCTING (t)
1111 = TYPE_NEEDS_CONSTRUCTING (elt_type));
1112 bool needs_dtor = (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1113 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type));
1114
1115 if (!dependent && t == TYPE_MAIN_VARIANT (t)
1116 && !COMPLETE_TYPE_P (t) && COMPLETE_TYPE_P (elt_type))
1117 {
1118 /* The element type has been completed since the last time we saw
1119 this array type; update the layout and 'tor flags for any variants
1120 that need it. */
1121 layout_type (t);
1122 for (tree v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
1123 {
1124 TYPE_NEEDS_CONSTRUCTING (v) = needs_ctor;
1125 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (v) = needs_dtor;
1126 }
1127 }
1128
1129 return t;
1130 }
1131
1132 /* Return an ARRAY_TYPE with element type ELT and length N. */
1133
1134 tree
1135 build_array_of_n_type (tree elt, int n)
1136 {
1137 return build_cplus_array_type (elt, build_index_type (size_int (n - 1)));
1138 }
1139
1140 /* True iff T is an array of unknown bound. */
1141
1142 bool
1143 array_of_unknown_bound_p (const_tree t)
1144 {
1145 return (TREE_CODE (t) == ARRAY_TYPE
1146 && !TYPE_DOMAIN (t));
1147 }
1148
1149 /* True iff T is an N3639 array of runtime bound (VLA). These were approved
1150 for C++14 but then removed. This should only be used for N3639
1151 specifically; code wondering more generally if something is a VLA should use
1152 vla_type_p. */
1153
1154 bool
1155 array_of_runtime_bound_p (tree t)
1156 {
1157 if (!t || TREE_CODE (t) != ARRAY_TYPE)
1158 return false;
1159 if (variably_modified_type_p (TREE_TYPE (t), NULL_TREE))
1160 return false;
1161 tree dom = TYPE_DOMAIN (t);
1162 if (!dom)
1163 return false;
1164 tree max = TYPE_MAX_VALUE (dom);
1165 return (!potential_rvalue_constant_expression (max)
1166 || (!value_dependent_expression_p (max) && !TREE_CONSTANT (max)));
1167 }
1168
1169 /* True iff T is a variable length array. */
1170
1171 bool
1172 vla_type_p (tree t)
1173 {
1174 for (; t && TREE_CODE (t) == ARRAY_TYPE;
1175 t = TREE_TYPE (t))
1176 if (tree dom = TYPE_DOMAIN (t))
1177 {
1178 tree max = TYPE_MAX_VALUE (dom);
1179 if (!potential_rvalue_constant_expression (max)
1180 || (!value_dependent_expression_p (max) && !TREE_CONSTANT (max)))
1181 return true;
1182 }
1183 return false;
1184 }
1185
1186 /* Return a reference type node referring to TO_TYPE. If RVAL is
1187 true, return an rvalue reference type, otherwise return an lvalue
1188 reference type. If a type node exists, reuse it, otherwise create
1189 a new one. */
1190 tree
1191 cp_build_reference_type (tree to_type, bool rval)
1192 {
1193 tree lvalue_ref, t;
1194
1195 if (to_type == error_mark_node)
1196 return error_mark_node;
1197
1198 if (TYPE_REF_P (to_type))
1199 {
1200 rval = rval && TYPE_REF_IS_RVALUE (to_type);
1201 to_type = TREE_TYPE (to_type);
1202 }
1203
1204 lvalue_ref = build_reference_type (to_type);
1205 if (!rval)
1206 return lvalue_ref;
1207
1208 /* This code to create rvalue reference types is based on and tied
1209 to the code creating lvalue reference types in the middle-end
1210 functions build_reference_type_for_mode and build_reference_type.
1211
1212 It works by putting the rvalue reference type nodes after the
1213 lvalue reference nodes in the TYPE_NEXT_REF_TO linked list, so
1214 they will effectively be ignored by the middle end. */
1215
1216 for (t = lvalue_ref; (t = TYPE_NEXT_REF_TO (t)); )
1217 if (TYPE_REF_IS_RVALUE (t))
1218 return t;
1219
1220 t = build_distinct_type_copy (lvalue_ref);
1221
1222 TYPE_REF_IS_RVALUE (t) = true;
1223 TYPE_NEXT_REF_TO (t) = TYPE_NEXT_REF_TO (lvalue_ref);
1224 TYPE_NEXT_REF_TO (lvalue_ref) = t;
1225
1226 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
1227 SET_TYPE_STRUCTURAL_EQUALITY (t);
1228 else if (TYPE_CANONICAL (to_type) != to_type)
1229 TYPE_CANONICAL (t)
1230 = cp_build_reference_type (TYPE_CANONICAL (to_type), rval);
1231 else
1232 TYPE_CANONICAL (t) = t;
1233
1234 layout_type (t);
1235
1236 return t;
1237
1238 }
1239
1240 /* Returns EXPR cast to rvalue reference type, like std::move. */
1241
1242 tree
1243 move (tree expr)
1244 {
1245 tree type = TREE_TYPE (expr);
1246 gcc_assert (!TYPE_REF_P (type));
1247 type = cp_build_reference_type (type, /*rval*/true);
1248 return build_static_cast (input_location, type, expr,
1249 tf_warning_or_error);
1250 }
1251
1252 /* Used by the C++ front end to build qualified array types. However,
1253 the C version of this function does not properly maintain canonical
1254 types (which are not used in C). */
1255 tree
1256 c_build_qualified_type (tree type, int type_quals, tree /* orig_qual_type */,
1257 size_t /* orig_qual_indirect */)
1258 {
1259 return cp_build_qualified_type (type, type_quals);
1260 }
1261
1262 \f
1263 /* Make a variant of TYPE, qualified with the TYPE_QUALS. Handles
1264 arrays correctly. In particular, if TYPE is an array of T's, and
1265 TYPE_QUALS is non-empty, returns an array of qualified T's.
1266
1267 FLAGS determines how to deal with ill-formed qualifications. If
1268 tf_ignore_bad_quals is set, then bad qualifications are dropped
1269 (this is permitted if TYPE was introduced via a typedef or template
1270 type parameter). If bad qualifications are dropped and tf_warning
1271 is set, then a warning is issued for non-const qualifications. If
1272 tf_ignore_bad_quals is not set and tf_error is not set, we
1273 return error_mark_node. Otherwise, we issue an error, and ignore
1274 the qualifications.
1275
1276 Qualification of a reference type is valid when the reference came
1277 via a typedef or template type argument. [dcl.ref] No such
1278 dispensation is provided for qualifying a function type. [dcl.fct]
1279 DR 295 queries this and the proposed resolution brings it into line
1280 with qualifying a reference. We implement the DR. We also behave
1281 in a similar manner for restricting non-pointer types. */
1282
1283 tree
1284 cp_build_qualified_type_real (tree type,
1285 int type_quals,
1286 tsubst_flags_t complain)
1287 {
1288 tree result;
1289 int bad_quals = TYPE_UNQUALIFIED;
1290
1291 if (type == error_mark_node)
1292 return type;
1293
1294 if (type_quals == cp_type_quals (type))
1295 return type;
1296
1297 if (TREE_CODE (type) == ARRAY_TYPE)
1298 {
1299 /* In C++, the qualification really applies to the array element
1300 type. Obtain the appropriately qualified element type. */
1301 tree t;
1302 tree element_type
1303 = cp_build_qualified_type_real (TREE_TYPE (type),
1304 type_quals,
1305 complain);
1306
1307 if (element_type == error_mark_node)
1308 return error_mark_node;
1309
1310 /* See if we already have an identically qualified type. Tests
1311 should be equivalent to those in check_qualified_type. */
1312 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
1313 if (TREE_TYPE (t) == element_type
1314 && TYPE_NAME (t) == TYPE_NAME (type)
1315 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
1316 && attribute_list_equal (TYPE_ATTRIBUTES (t),
1317 TYPE_ATTRIBUTES (type)))
1318 break;
1319
1320 if (!t)
1321 {
1322 t = build_cplus_array_type (element_type, TYPE_DOMAIN (type));
1323
1324 /* Keep the typedef name. */
1325 if (TYPE_NAME (t) != TYPE_NAME (type))
1326 {
1327 t = build_variant_type_copy (t);
1328 TYPE_NAME (t) = TYPE_NAME (type);
1329 SET_TYPE_ALIGN (t, TYPE_ALIGN (type));
1330 TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (type);
1331 }
1332 }
1333
1334 /* Even if we already had this variant, we update
1335 TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
1336 they changed since the variant was originally created.
1337
1338 This seems hokey; if there is some way to use a previous
1339 variant *without* coming through here,
1340 TYPE_NEEDS_CONSTRUCTING will never be updated. */
1341 TYPE_NEEDS_CONSTRUCTING (t)
1342 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
1343 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1344 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
1345 return t;
1346 }
1347 else if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
1348 {
1349 tree t = PACK_EXPANSION_PATTERN (type);
1350
1351 t = cp_build_qualified_type_real (t, type_quals, complain);
1352 return make_pack_expansion (t, complain);
1353 }
1354
1355 /* A reference or method type shall not be cv-qualified.
1356 [dcl.ref], [dcl.fct]. This used to be an error, but as of DR 295
1357 (in CD1) we always ignore extra cv-quals on functions. */
1358 if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
1359 && (TYPE_REF_P (type)
1360 || FUNC_OR_METHOD_TYPE_P (type)))
1361 {
1362 if (TYPE_REF_P (type))
1363 bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1364 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1365 }
1366
1367 /* But preserve any function-cv-quals on a FUNCTION_TYPE. */
1368 if (TREE_CODE (type) == FUNCTION_TYPE)
1369 type_quals |= type_memfn_quals (type);
1370
1371 /* A restrict-qualified type must be a pointer (or reference)
1372 to object or incomplete type. */
1373 if ((type_quals & TYPE_QUAL_RESTRICT)
1374 && TREE_CODE (type) != TEMPLATE_TYPE_PARM
1375 && TREE_CODE (type) != TYPENAME_TYPE
1376 && !INDIRECT_TYPE_P (type))
1377 {
1378 bad_quals |= TYPE_QUAL_RESTRICT;
1379 type_quals &= ~TYPE_QUAL_RESTRICT;
1380 }
1381
1382 if (bad_quals == TYPE_UNQUALIFIED
1383 || (complain & tf_ignore_bad_quals))
1384 /*OK*/;
1385 else if (!(complain & tf_error))
1386 return error_mark_node;
1387 else
1388 {
1389 tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
1390 error ("%qV qualifiers cannot be applied to %qT",
1391 bad_type, type);
1392 }
1393
1394 /* Retrieve (or create) the appropriately qualified variant. */
1395 result = build_qualified_type (type, type_quals);
1396
1397 return result;
1398 }
1399
1400 /* Return TYPE with const and volatile removed. */
1401
1402 tree
1403 cv_unqualified (tree type)
1404 {
1405 int quals;
1406
1407 if (type == error_mark_node)
1408 return type;
1409
1410 quals = cp_type_quals (type);
1411 quals &= ~(TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE);
1412 return cp_build_qualified_type (type, quals);
1413 }
1414
1415 /* Subroutine of strip_typedefs. We want to apply to RESULT the attributes
1416 from ATTRIBS that affect type identity, and no others. If any are not
1417 applied, set *remove_attributes to true. */
1418
1419 static tree
1420 apply_identity_attributes (tree result, tree attribs, bool *remove_attributes)
1421 {
1422 tree first_ident = NULL_TREE;
1423 tree new_attribs = NULL_TREE;
1424 tree *p = &new_attribs;
1425
1426 if (OVERLOAD_TYPE_P (result))
1427 {
1428 /* On classes and enums all attributes are ingrained. */
1429 gcc_assert (attribs == TYPE_ATTRIBUTES (result));
1430 return result;
1431 }
1432
1433 for (tree a = attribs; a; a = TREE_CHAIN (a))
1434 {
1435 const attribute_spec *as
1436 = lookup_attribute_spec (get_attribute_name (a));
1437 if (as && as->affects_type_identity)
1438 {
1439 if (!first_ident)
1440 first_ident = a;
1441 else if (first_ident == error_mark_node)
1442 {
1443 *p = tree_cons (TREE_PURPOSE (a), TREE_VALUE (a), NULL_TREE);
1444 p = &TREE_CHAIN (*p);
1445 }
1446 }
1447 else if (first_ident)
1448 {
1449 for (tree a2 = first_ident; a2; a2 = TREE_CHAIN (a2))
1450 {
1451 *p = tree_cons (TREE_PURPOSE (a2), TREE_VALUE (a2), NULL_TREE);
1452 p = &TREE_CHAIN (*p);
1453 }
1454 first_ident = error_mark_node;
1455 }
1456 }
1457 if (first_ident != error_mark_node)
1458 new_attribs = first_ident;
1459
1460 if (first_ident == attribs)
1461 /* All attributes affected type identity. */;
1462 else
1463 *remove_attributes = true;
1464
1465 return cp_build_type_attribute_variant (result, new_attribs);
1466 }
1467
1468 /* Builds a qualified variant of T that is either not a typedef variant
1469 (the default behavior) or not a typedef variant of a user-facing type
1470 (if FLAGS contains STF_USER_FACING).
1471
1472 E.g. consider the following declarations:
1473 typedef const int ConstInt;
1474 typedef ConstInt* PtrConstInt;
1475 If T is PtrConstInt, this function returns a type representing
1476 const int*.
1477 In other words, if T is a typedef, the function returns the underlying type.
1478 The cv-qualification and attributes of the type returned match the
1479 input type.
1480 They will always be compatible types.
1481 The returned type is built so that all of its subtypes
1482 recursively have their typedefs stripped as well.
1483
1484 This is different from just returning TYPE_CANONICAL (T)
1485 Because of several reasons:
1486 * If T is a type that needs structural equality
1487 its TYPE_CANONICAL (T) will be NULL.
1488 * TYPE_CANONICAL (T) desn't carry type attributes
1489 and loses template parameter names.
1490
1491 If REMOVE_ATTRIBUTES is non-null, also strip attributes that don't
1492 affect type identity, and set the referent to true if any were
1493 stripped. */
1494
1495 tree
1496 strip_typedefs (tree t, bool *remove_attributes, unsigned int flags)
1497 {
1498 tree result = NULL, type = NULL, t0 = NULL;
1499
1500 if (!t || t == error_mark_node)
1501 return t;
1502
1503 if (TREE_CODE (t) == TREE_LIST)
1504 {
1505 bool changed = false;
1506 releasing_vec vec;
1507 tree r = t;
1508 for (; t; t = TREE_CHAIN (t))
1509 {
1510 gcc_assert (!TREE_PURPOSE (t));
1511 tree elt = strip_typedefs (TREE_VALUE (t), remove_attributes, flags);
1512 if (elt != TREE_VALUE (t))
1513 changed = true;
1514 vec_safe_push (vec, elt);
1515 }
1516 if (changed)
1517 r = build_tree_list_vec (vec);
1518 return r;
1519 }
1520
1521 gcc_assert (TYPE_P (t));
1522
1523 if (t == TYPE_CANONICAL (t))
1524 return t;
1525
1526 if (!(flags & STF_STRIP_DEPENDENT)
1527 && dependent_alias_template_spec_p (t, nt_opaque))
1528 /* DR 1558: However, if the template-id is dependent, subsequent
1529 template argument substitution still applies to the template-id. */
1530 return t;
1531
1532 switch (TREE_CODE (t))
1533 {
1534 case POINTER_TYPE:
1535 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1536 result = build_pointer_type (type);
1537 break;
1538 case REFERENCE_TYPE:
1539 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1540 result = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
1541 break;
1542 case OFFSET_TYPE:
1543 t0 = strip_typedefs (TYPE_OFFSET_BASETYPE (t), remove_attributes, flags);
1544 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1545 result = build_offset_type (t0, type);
1546 break;
1547 case RECORD_TYPE:
1548 if (TYPE_PTRMEMFUNC_P (t))
1549 {
1550 t0 = strip_typedefs (TYPE_PTRMEMFUNC_FN_TYPE (t),
1551 remove_attributes, flags);
1552 result = build_ptrmemfunc_type (t0);
1553 }
1554 break;
1555 case ARRAY_TYPE:
1556 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1557 t0 = strip_typedefs (TYPE_DOMAIN (t), remove_attributes, flags);
1558 result = build_cplus_array_type (type, t0);
1559 break;
1560 case FUNCTION_TYPE:
1561 case METHOD_TYPE:
1562 {
1563 tree arg_types = NULL, arg_node, arg_node2, arg_type;
1564 bool changed;
1565
1566 /* Because we stomp on TREE_PURPOSE of TYPE_ARG_TYPES in many places
1567 around the compiler (e.g. cp_parser_late_parsing_default_args), we
1568 can't expect that re-hashing a function type will find a previous
1569 equivalent type, so try to reuse the input type if nothing has
1570 changed. If the type is itself a variant, that will change. */
1571 bool is_variant = typedef_variant_p (t);
1572 if (remove_attributes
1573 && (TYPE_ATTRIBUTES (t) || TYPE_USER_ALIGN (t)))
1574 is_variant = true;
1575
1576 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1577 tree canon_spec = (flag_noexcept_type
1578 ? canonical_eh_spec (TYPE_RAISES_EXCEPTIONS (t))
1579 : NULL_TREE);
1580 changed = (type != TREE_TYPE (t) || is_variant
1581 || TYPE_RAISES_EXCEPTIONS (t) != canon_spec);
1582
1583 for (arg_node = TYPE_ARG_TYPES (t);
1584 arg_node;
1585 arg_node = TREE_CHAIN (arg_node))
1586 {
1587 if (arg_node == void_list_node)
1588 break;
1589 arg_type = strip_typedefs (TREE_VALUE (arg_node),
1590 remove_attributes, flags);
1591 gcc_assert (arg_type);
1592 if (arg_type == TREE_VALUE (arg_node) && !changed)
1593 continue;
1594
1595 if (!changed)
1596 {
1597 changed = true;
1598 for (arg_node2 = TYPE_ARG_TYPES (t);
1599 arg_node2 != arg_node;
1600 arg_node2 = TREE_CHAIN (arg_node2))
1601 arg_types
1602 = tree_cons (TREE_PURPOSE (arg_node2),
1603 TREE_VALUE (arg_node2), arg_types);
1604 }
1605
1606 arg_types
1607 = tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types);
1608 }
1609
1610 if (!changed)
1611 return t;
1612
1613 if (arg_types)
1614 arg_types = nreverse (arg_types);
1615
1616 /* A list of parameters not ending with an ellipsis
1617 must end with void_list_node. */
1618 if (arg_node)
1619 arg_types = chainon (arg_types, void_list_node);
1620
1621 if (TREE_CODE (t) == METHOD_TYPE)
1622 {
1623 tree class_type = TREE_TYPE (TREE_VALUE (arg_types));
1624 gcc_assert (class_type);
1625 result =
1626 build_method_type_directly (class_type, type,
1627 TREE_CHAIN (arg_types));
1628 }
1629 else
1630 {
1631 result = build_function_type (type, arg_types);
1632 result = apply_memfn_quals (result, type_memfn_quals (t));
1633 }
1634
1635 result = build_cp_fntype_variant (result,
1636 type_memfn_rqual (t), canon_spec,
1637 TYPE_HAS_LATE_RETURN_TYPE (t));
1638 }
1639 break;
1640 case TYPENAME_TYPE:
1641 {
1642 bool changed = false;
1643 tree fullname = TYPENAME_TYPE_FULLNAME (t);
1644 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR
1645 && TREE_OPERAND (fullname, 1))
1646 {
1647 tree args = TREE_OPERAND (fullname, 1);
1648 tree new_args = copy_node (args);
1649 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
1650 {
1651 tree arg = TREE_VEC_ELT (args, i);
1652 tree strip_arg;
1653 if (TYPE_P (arg))
1654 strip_arg = strip_typedefs (arg, remove_attributes, flags);
1655 else
1656 strip_arg = strip_typedefs_expr (arg, remove_attributes,
1657 flags);
1658 TREE_VEC_ELT (new_args, i) = strip_arg;
1659 if (strip_arg != arg)
1660 changed = true;
1661 }
1662 if (changed)
1663 {
1664 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_args)
1665 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
1666 fullname
1667 = lookup_template_function (TREE_OPERAND (fullname, 0),
1668 new_args);
1669 }
1670 else
1671 ggc_free (new_args);
1672 }
1673 tree ctx = strip_typedefs (TYPE_CONTEXT (t), remove_attributes, flags);
1674 if (!changed && ctx == TYPE_CONTEXT (t) && !typedef_variant_p (t))
1675 return t;
1676 tree name = fullname;
1677 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR)
1678 name = TREE_OPERAND (fullname, 0);
1679 /* Use build_typename_type rather than make_typename_type because we
1680 don't want to resolve it here, just strip typedefs. */
1681 result = build_typename_type (ctx, name, fullname, typename_type);
1682 }
1683 break;
1684 case DECLTYPE_TYPE:
1685 result = strip_typedefs_expr (DECLTYPE_TYPE_EXPR (t),
1686 remove_attributes, flags);
1687 if (result == DECLTYPE_TYPE_EXPR (t))
1688 result = NULL_TREE;
1689 else
1690 result = (finish_decltype_type
1691 (result,
1692 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t),
1693 tf_none));
1694 break;
1695 case UNDERLYING_TYPE:
1696 type = strip_typedefs (UNDERLYING_TYPE_TYPE (t),
1697 remove_attributes, flags);
1698 result = finish_underlying_type (type);
1699 break;
1700 default:
1701 break;
1702 }
1703
1704 if (!result)
1705 {
1706 if (typedef_variant_p (t))
1707 {
1708 if ((flags & STF_USER_VISIBLE)
1709 && !user_facing_original_type_p (t))
1710 return t;
1711 /* If T is a non-template alias or typedef, we can assume that
1712 instantiating its definition will hit any substitution failure,
1713 so we don't need to retain it here as well. */
1714 if (!alias_template_specialization_p (t, nt_opaque))
1715 flags |= STF_STRIP_DEPENDENT;
1716 result = strip_typedefs (DECL_ORIGINAL_TYPE (TYPE_NAME (t)),
1717 remove_attributes, flags);
1718 }
1719 else
1720 result = TYPE_MAIN_VARIANT (t);
1721 }
1722 /*gcc_assert (!typedef_variant_p (result)
1723 || dependent_alias_template_spec_p (result, nt_opaque)
1724 || ((flags & STF_USER_VISIBLE)
1725 && !user_facing_original_type_p (result)));*/
1726
1727 if (COMPLETE_TYPE_P (result) && !COMPLETE_TYPE_P (t))
1728 /* If RESULT is complete and T isn't, it's likely the case that T
1729 is a variant of RESULT which hasn't been updated yet. Skip the
1730 attribute handling. */;
1731 else
1732 {
1733 if (TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (result)
1734 || TYPE_ALIGN (t) != TYPE_ALIGN (result))
1735 {
1736 gcc_assert (TYPE_USER_ALIGN (t));
1737 if (remove_attributes)
1738 *remove_attributes = true;
1739 else
1740 {
1741 if (TYPE_ALIGN (t) == TYPE_ALIGN (result))
1742 result = build_variant_type_copy (result);
1743 else
1744 result = build_aligned_type (result, TYPE_ALIGN (t));
1745 TYPE_USER_ALIGN (result) = true;
1746 }
1747 }
1748
1749 if (TYPE_ATTRIBUTES (t))
1750 {
1751 if (remove_attributes)
1752 result = apply_identity_attributes (result, TYPE_ATTRIBUTES (t),
1753 remove_attributes);
1754 else
1755 result = cp_build_type_attribute_variant (result,
1756 TYPE_ATTRIBUTES (t));
1757 }
1758 }
1759
1760 return cp_build_qualified_type (result, cp_type_quals (t));
1761 }
1762
1763 /* Like strip_typedefs above, but works on expressions, so that in
1764
1765 template<class T> struct A
1766 {
1767 typedef T TT;
1768 B<sizeof(TT)> b;
1769 };
1770
1771 sizeof(TT) is replaced by sizeof(T). */
1772
1773 tree
1774 strip_typedefs_expr (tree t, bool *remove_attributes, unsigned int flags)
1775 {
1776 unsigned i,n;
1777 tree r, type, *ops;
1778 enum tree_code code;
1779
1780 if (t == NULL_TREE || t == error_mark_node)
1781 return t;
1782
1783 STRIP_ANY_LOCATION_WRAPPER (t);
1784
1785 if (DECL_P (t) || CONSTANT_CLASS_P (t))
1786 return t;
1787
1788 /* Some expressions have type operands, so let's handle types here rather
1789 than check TYPE_P in multiple places below. */
1790 if (TYPE_P (t))
1791 return strip_typedefs (t, remove_attributes, flags);
1792
1793 code = TREE_CODE (t);
1794 switch (code)
1795 {
1796 case IDENTIFIER_NODE:
1797 case TEMPLATE_PARM_INDEX:
1798 case OVERLOAD:
1799 case BASELINK:
1800 case ARGUMENT_PACK_SELECT:
1801 return t;
1802
1803 case TRAIT_EXPR:
1804 {
1805 tree type1 = strip_typedefs (TRAIT_EXPR_TYPE1 (t),
1806 remove_attributes, flags);
1807 tree type2 = strip_typedefs (TRAIT_EXPR_TYPE2 (t),
1808 remove_attributes, flags);
1809 if (type1 == TRAIT_EXPR_TYPE1 (t)
1810 && type2 == TRAIT_EXPR_TYPE2 (t))
1811 return t;
1812 r = copy_node (t);
1813 TRAIT_EXPR_TYPE1 (r) = type1;
1814 TRAIT_EXPR_TYPE2 (r) = type2;
1815 return r;
1816 }
1817
1818 case TREE_LIST:
1819 {
1820 releasing_vec vec;
1821 bool changed = false;
1822 tree it;
1823 for (it = t; it; it = TREE_CHAIN (it))
1824 {
1825 tree val = strip_typedefs_expr (TREE_VALUE (it),
1826 remove_attributes, flags);
1827 vec_safe_push (vec, val);
1828 if (val != TREE_VALUE (it))
1829 changed = true;
1830 gcc_assert (TREE_PURPOSE (it) == NULL_TREE);
1831 }
1832 if (changed)
1833 {
1834 r = NULL_TREE;
1835 FOR_EACH_VEC_ELT_REVERSE (*vec, i, it)
1836 r = tree_cons (NULL_TREE, it, r);
1837 }
1838 else
1839 r = t;
1840 return r;
1841 }
1842
1843 case TREE_VEC:
1844 {
1845 bool changed = false;
1846 releasing_vec vec;
1847 n = TREE_VEC_LENGTH (t);
1848 vec_safe_reserve (vec, n);
1849 for (i = 0; i < n; ++i)
1850 {
1851 tree op = strip_typedefs_expr (TREE_VEC_ELT (t, i),
1852 remove_attributes, flags);
1853 vec->quick_push (op);
1854 if (op != TREE_VEC_ELT (t, i))
1855 changed = true;
1856 }
1857 if (changed)
1858 {
1859 r = copy_node (t);
1860 for (i = 0; i < n; ++i)
1861 TREE_VEC_ELT (r, i) = (*vec)[i];
1862 NON_DEFAULT_TEMPLATE_ARGS_COUNT (r)
1863 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
1864 }
1865 else
1866 r = t;
1867 return r;
1868 }
1869
1870 case CONSTRUCTOR:
1871 {
1872 bool changed = false;
1873 vec<constructor_elt, va_gc> *vec
1874 = vec_safe_copy (CONSTRUCTOR_ELTS (t));
1875 n = CONSTRUCTOR_NELTS (t);
1876 type = strip_typedefs (TREE_TYPE (t), remove_attributes, flags);
1877 for (i = 0; i < n; ++i)
1878 {
1879 constructor_elt *e = &(*vec)[i];
1880 tree op = strip_typedefs_expr (e->value, remove_attributes, flags);
1881 if (op != e->value)
1882 {
1883 changed = true;
1884 e->value = op;
1885 }
1886 gcc_checking_assert
1887 (e->index == strip_typedefs_expr (e->index, remove_attributes,
1888 flags));
1889 }
1890
1891 if (!changed && type == TREE_TYPE (t))
1892 {
1893 vec_free (vec);
1894 return t;
1895 }
1896 else
1897 {
1898 r = copy_node (t);
1899 TREE_TYPE (r) = type;
1900 CONSTRUCTOR_ELTS (r) = vec;
1901 return r;
1902 }
1903 }
1904
1905 case LAMBDA_EXPR:
1906 return t;
1907
1908 case STATEMENT_LIST:
1909 error ("statement-expression in a constant expression");
1910 return error_mark_node;
1911
1912 default:
1913 break;
1914 }
1915
1916 gcc_assert (EXPR_P (t));
1917
1918 n = cp_tree_operand_length (t);
1919 ops = XALLOCAVEC (tree, n);
1920 type = TREE_TYPE (t);
1921
1922 switch (code)
1923 {
1924 CASE_CONVERT:
1925 case IMPLICIT_CONV_EXPR:
1926 case DYNAMIC_CAST_EXPR:
1927 case STATIC_CAST_EXPR:
1928 case CONST_CAST_EXPR:
1929 case REINTERPRET_CAST_EXPR:
1930 case CAST_EXPR:
1931 case NEW_EXPR:
1932 type = strip_typedefs (type, remove_attributes, flags);
1933 /* fallthrough */
1934
1935 default:
1936 for (i = 0; i < n; ++i)
1937 ops[i] = strip_typedefs_expr (TREE_OPERAND (t, i),
1938 remove_attributes, flags);
1939 break;
1940 }
1941
1942 /* If nothing changed, return t. */
1943 for (i = 0; i < n; ++i)
1944 if (ops[i] != TREE_OPERAND (t, i))
1945 break;
1946 if (i == n && type == TREE_TYPE (t))
1947 return t;
1948
1949 r = copy_node (t);
1950 TREE_TYPE (r) = type;
1951 for (i = 0; i < n; ++i)
1952 TREE_OPERAND (r, i) = ops[i];
1953 return r;
1954 }
1955
1956 /* Makes a copy of BINFO and TYPE, which is to be inherited into a
1957 graph dominated by T. If BINFO is NULL, TYPE is a dependent base,
1958 and we do a shallow copy. If BINFO is non-NULL, we do a deep copy.
1959 VIRT indicates whether TYPE is inherited virtually or not.
1960 IGO_PREV points at the previous binfo of the inheritance graph
1961 order chain. The newly copied binfo's TREE_CHAIN forms this
1962 ordering.
1963
1964 The CLASSTYPE_VBASECLASSES vector of T is constructed in the
1965 correct order. That is in the order the bases themselves should be
1966 constructed in.
1967
1968 The BINFO_INHERITANCE of a virtual base class points to the binfo
1969 of the most derived type. ??? We could probably change this so that
1970 BINFO_INHERITANCE becomes synonymous with BINFO_PRIMARY, and hence
1971 remove a field. They currently can only differ for primary virtual
1972 virtual bases. */
1973
1974 tree
1975 copy_binfo (tree binfo, tree type, tree t, tree *igo_prev, int virt)
1976 {
1977 tree new_binfo;
1978
1979 if (virt)
1980 {
1981 /* See if we've already made this virtual base. */
1982 new_binfo = binfo_for_vbase (type, t);
1983 if (new_binfo)
1984 return new_binfo;
1985 }
1986
1987 new_binfo = make_tree_binfo (binfo ? BINFO_N_BASE_BINFOS (binfo) : 0);
1988 BINFO_TYPE (new_binfo) = type;
1989
1990 /* Chain it into the inheritance graph. */
1991 TREE_CHAIN (*igo_prev) = new_binfo;
1992 *igo_prev = new_binfo;
1993
1994 if (binfo && !BINFO_DEPENDENT_BASE_P (binfo))
1995 {
1996 int ix;
1997 tree base_binfo;
1998
1999 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), type));
2000
2001 BINFO_OFFSET (new_binfo) = BINFO_OFFSET (binfo);
2002 BINFO_VIRTUALS (new_binfo) = BINFO_VIRTUALS (binfo);
2003
2004 /* We do not need to copy the accesses, as they are read only. */
2005 BINFO_BASE_ACCESSES (new_binfo) = BINFO_BASE_ACCESSES (binfo);
2006
2007 /* Recursively copy base binfos of BINFO. */
2008 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
2009 {
2010 tree new_base_binfo;
2011 new_base_binfo = copy_binfo (base_binfo, BINFO_TYPE (base_binfo),
2012 t, igo_prev,
2013 BINFO_VIRTUAL_P (base_binfo));
2014
2015 if (!BINFO_INHERITANCE_CHAIN (new_base_binfo))
2016 BINFO_INHERITANCE_CHAIN (new_base_binfo) = new_binfo;
2017 BINFO_BASE_APPEND (new_binfo, new_base_binfo);
2018 }
2019 }
2020 else
2021 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
2022
2023 if (virt)
2024 {
2025 /* Push it onto the list after any virtual bases it contains
2026 will have been pushed. */
2027 CLASSTYPE_VBASECLASSES (t)->quick_push (new_binfo);
2028 BINFO_VIRTUAL_P (new_binfo) = 1;
2029 BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
2030 }
2031
2032 return new_binfo;
2033 }
2034 \f
2035 /* Hashing of lists so that we don't make duplicates.
2036 The entry point is `list_hash_canon'. */
2037
2038 struct list_proxy
2039 {
2040 tree purpose;
2041 tree value;
2042 tree chain;
2043 };
2044
2045 struct list_hasher : ggc_ptr_hash<tree_node>
2046 {
2047 typedef list_proxy *compare_type;
2048
2049 static hashval_t hash (tree);
2050 static bool equal (tree, list_proxy *);
2051 };
2052
2053 /* Now here is the hash table. When recording a list, it is added
2054 to the slot whose index is the hash code mod the table size.
2055 Note that the hash table is used for several kinds of lists.
2056 While all these live in the same table, they are completely independent,
2057 and the hash code is computed differently for each of these. */
2058
2059 static GTY (()) hash_table<list_hasher> *list_hash_table;
2060
2061 /* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
2062 for a node we are thinking about adding). */
2063
2064 bool
2065 list_hasher::equal (tree t, list_proxy *proxy)
2066 {
2067 return (TREE_VALUE (t) == proxy->value
2068 && TREE_PURPOSE (t) == proxy->purpose
2069 && TREE_CHAIN (t) == proxy->chain);
2070 }
2071
2072 /* Compute a hash code for a list (chain of TREE_LIST nodes
2073 with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
2074 TREE_COMMON slots), by adding the hash codes of the individual entries. */
2075
2076 static hashval_t
2077 list_hash_pieces (tree purpose, tree value, tree chain)
2078 {
2079 hashval_t hashcode = 0;
2080
2081 if (chain)
2082 hashcode += TREE_HASH (chain);
2083
2084 if (value)
2085 hashcode += TREE_HASH (value);
2086 else
2087 hashcode += 1007;
2088 if (purpose)
2089 hashcode += TREE_HASH (purpose);
2090 else
2091 hashcode += 1009;
2092 return hashcode;
2093 }
2094
2095 /* Hash an already existing TREE_LIST. */
2096
2097 hashval_t
2098 list_hasher::hash (tree t)
2099 {
2100 return list_hash_pieces (TREE_PURPOSE (t),
2101 TREE_VALUE (t),
2102 TREE_CHAIN (t));
2103 }
2104
2105 /* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
2106 object for an identical list if one already exists. Otherwise, build a
2107 new one, and record it as the canonical object. */
2108
2109 tree
2110 hash_tree_cons (tree purpose, tree value, tree chain)
2111 {
2112 int hashcode = 0;
2113 tree *slot;
2114 struct list_proxy proxy;
2115
2116 /* Hash the list node. */
2117 hashcode = list_hash_pieces (purpose, value, chain);
2118 /* Create a proxy for the TREE_LIST we would like to create. We
2119 don't actually create it so as to avoid creating garbage. */
2120 proxy.purpose = purpose;
2121 proxy.value = value;
2122 proxy.chain = chain;
2123 /* See if it is already in the table. */
2124 slot = list_hash_table->find_slot_with_hash (&proxy, hashcode, INSERT);
2125 /* If not, create a new node. */
2126 if (!*slot)
2127 *slot = tree_cons (purpose, value, chain);
2128 return (tree) *slot;
2129 }
2130
2131 /* Constructor for hashed lists. */
2132
2133 tree
2134 hash_tree_chain (tree value, tree chain)
2135 {
2136 return hash_tree_cons (NULL_TREE, value, chain);
2137 }
2138 \f
2139 void
2140 debug_binfo (tree elem)
2141 {
2142 HOST_WIDE_INT n;
2143 tree virtuals;
2144
2145 fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
2146 "\nvtable type:\n",
2147 TYPE_NAME_STRING (BINFO_TYPE (elem)),
2148 TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
2149 debug_tree (BINFO_TYPE (elem));
2150 if (BINFO_VTABLE (elem))
2151 fprintf (stderr, "vtable decl \"%s\"\n",
2152 IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
2153 else
2154 fprintf (stderr, "no vtable decl yet\n");
2155 fprintf (stderr, "virtuals:\n");
2156 virtuals = BINFO_VIRTUALS (elem);
2157 n = 0;
2158
2159 while (virtuals)
2160 {
2161 tree fndecl = TREE_VALUE (virtuals);
2162 fprintf (stderr, "%s [%ld =? %ld]\n",
2163 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
2164 (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
2165 ++n;
2166 virtuals = TREE_CHAIN (virtuals);
2167 }
2168 }
2169
2170 /* Build a representation for the qualified name SCOPE::NAME. TYPE is
2171 the type of the result expression, if known, or NULL_TREE if the
2172 resulting expression is type-dependent. If TEMPLATE_P is true,
2173 NAME is known to be a template because the user explicitly used the
2174 "template" keyword after the "::".
2175
2176 All SCOPE_REFs should be built by use of this function. */
2177
2178 tree
2179 build_qualified_name (tree type, tree scope, tree name, bool template_p)
2180 {
2181 tree t;
2182 if (type == error_mark_node
2183 || scope == error_mark_node
2184 || name == error_mark_node)
2185 return error_mark_node;
2186 gcc_assert (TREE_CODE (name) != SCOPE_REF);
2187 t = build2 (SCOPE_REF, type, scope, name);
2188 QUALIFIED_NAME_IS_TEMPLATE (t) = template_p;
2189 PTRMEM_OK_P (t) = true;
2190 if (type)
2191 t = convert_from_reference (t);
2192 return t;
2193 }
2194
2195 /* Like check_qualified_type, but also check ref-qualifier, exception
2196 specification, and whether the return type was specified after the
2197 parameters. */
2198
2199 static bool
2200 cp_check_qualified_type (const_tree cand, const_tree base, int type_quals,
2201 cp_ref_qualifier rqual, tree raises, bool late)
2202 {
2203 return (TYPE_QUALS (cand) == type_quals
2204 && check_base_type (cand, base)
2205 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (cand),
2206 ce_exact)
2207 && TYPE_HAS_LATE_RETURN_TYPE (cand) == late
2208 && type_memfn_rqual (cand) == rqual);
2209 }
2210
2211 /* Build the FUNCTION_TYPE or METHOD_TYPE with the ref-qualifier RQUAL. */
2212
2213 tree
2214 build_ref_qualified_type (tree type, cp_ref_qualifier rqual)
2215 {
2216 tree raises = TYPE_RAISES_EXCEPTIONS (type);
2217 bool late = TYPE_HAS_LATE_RETURN_TYPE (type);
2218 return build_cp_fntype_variant (type, rqual, raises, late);
2219 }
2220
2221 /* Make a raw overload node containing FN. */
2222
2223 tree
2224 ovl_make (tree fn, tree next)
2225 {
2226 tree result = make_node (OVERLOAD);
2227
2228 if (TREE_CODE (fn) == OVERLOAD)
2229 OVL_NESTED_P (result) = true;
2230
2231 TREE_TYPE (result) = (next || TREE_CODE (fn) == TEMPLATE_DECL
2232 ? unknown_type_node : TREE_TYPE (fn));
2233 if (next && TREE_CODE (next) == OVERLOAD && OVL_DEDUP_P (next))
2234 OVL_DEDUP_P (result) = true;
2235 OVL_FUNCTION (result) = fn;
2236 OVL_CHAIN (result) = next;
2237 return result;
2238 }
2239
2240 /* Add FN to the (potentially NULL) overload set OVL. USING_OR_HIDDEN
2241 is > 0, if FN is via a using declaration. USING_OR_HIDDEN is < 0,
2242 if FN is hidden. (A decl cannot be both using and hidden.) We
2243 keep the hidden decls first, but remaining ones are unordered. */
2244
2245 tree
2246 ovl_insert (tree fn, tree maybe_ovl, int using_or_hidden)
2247 {
2248 tree result = maybe_ovl;
2249 tree insert_after = NULL_TREE;
2250
2251 /* Skip hidden. */
2252 for (; maybe_ovl && TREE_CODE (maybe_ovl) == OVERLOAD
2253 && OVL_HIDDEN_P (maybe_ovl);
2254 maybe_ovl = OVL_CHAIN (maybe_ovl))
2255 {
2256 gcc_checking_assert (!OVL_LOOKUP_P (maybe_ovl));
2257 insert_after = maybe_ovl;
2258 }
2259
2260 if (maybe_ovl || using_or_hidden || TREE_CODE (fn) == TEMPLATE_DECL)
2261 {
2262 maybe_ovl = ovl_make (fn, maybe_ovl);
2263
2264 if (using_or_hidden < 0)
2265 OVL_HIDDEN_P (maybe_ovl) = true;
2266 if (using_or_hidden > 0)
2267 OVL_DEDUP_P (maybe_ovl) = OVL_USING_P (maybe_ovl) = true;
2268 }
2269 else
2270 maybe_ovl = fn;
2271
2272 if (insert_after)
2273 {
2274 OVL_CHAIN (insert_after) = maybe_ovl;
2275 TREE_TYPE (insert_after) = unknown_type_node;
2276 }
2277 else
2278 result = maybe_ovl;
2279
2280 return result;
2281 }
2282
2283 /* Skip any hidden names at the beginning of OVL. */
2284
2285 tree
2286 ovl_skip_hidden (tree ovl)
2287 {
2288 while (ovl && TREE_CODE (ovl) == OVERLOAD && OVL_HIDDEN_P (ovl))
2289 ovl = OVL_CHAIN (ovl);
2290
2291 return ovl;
2292 }
2293
2294 /* NODE is an OVL_HIDDEN_P node that is now revealed. */
2295
2296 tree
2297 ovl_iterator::reveal_node (tree overload, tree node)
2298 {
2299 /* We cannot have returned NODE as part of a lookup overload, so we
2300 don't have to worry about preserving that. */
2301
2302 OVL_HIDDEN_P (node) = false;
2303 if (tree chain = OVL_CHAIN (node))
2304 if (TREE_CODE (chain) == OVERLOAD)
2305 {
2306 if (OVL_HIDDEN_P (chain))
2307 {
2308 /* The node needs moving, and the simplest way is to remove it
2309 and reinsert. */
2310 overload = remove_node (overload, node);
2311 overload = ovl_insert (OVL_FUNCTION (node), overload);
2312 }
2313 else if (OVL_DEDUP_P (chain))
2314 OVL_DEDUP_P (node) = true;
2315 }
2316 return overload;
2317 }
2318
2319 /* NODE is on the overloads of OVL. Remove it.
2320 The removed node is unaltered and may continue to be iterated
2321 from (i.e. it is safe to remove a node from an overload one is
2322 currently iterating over). */
2323
2324 tree
2325 ovl_iterator::remove_node (tree overload, tree node)
2326 {
2327 tree *slot = &overload;
2328 while (*slot != node)
2329 {
2330 tree probe = *slot;
2331 gcc_checking_assert (!OVL_LOOKUP_P (probe));
2332
2333 slot = &OVL_CHAIN (probe);
2334 }
2335
2336 /* Stitch out NODE. We don't have to worry about now making a
2337 singleton overload (and consequently maybe setting its type),
2338 because all uses of this function will be followed by inserting a
2339 new node that must follow the place we've cut this out from. */
2340 if (TREE_CODE (node) != OVERLOAD)
2341 /* Cloned inherited ctors don't mark themselves as via_using. */
2342 *slot = NULL_TREE;
2343 else
2344 *slot = OVL_CHAIN (node);
2345
2346 return overload;
2347 }
2348
2349 /* Mark or unmark a lookup set. */
2350
2351 void
2352 lookup_mark (tree ovl, bool val)
2353 {
2354 for (lkp_iterator iter (ovl); iter; ++iter)
2355 {
2356 gcc_checking_assert (LOOKUP_SEEN_P (*iter) != val);
2357 LOOKUP_SEEN_P (*iter) = val;
2358 }
2359 }
2360
2361 /* Add a set of new FNS into a lookup. */
2362
2363 tree
2364 lookup_add (tree fns, tree lookup)
2365 {
2366 if (fns == error_mark_node || lookup == error_mark_node)
2367 return error_mark_node;
2368
2369 if (lookup || TREE_CODE (fns) == TEMPLATE_DECL)
2370 {
2371 lookup = ovl_make (fns, lookup);
2372 OVL_LOOKUP_P (lookup) = true;
2373 }
2374 else
2375 lookup = fns;
2376
2377 return lookup;
2378 }
2379
2380 /* FNS is a new overload set, add them to LOOKUP, if they are not
2381 already present there. */
2382
2383 tree
2384 lookup_maybe_add (tree fns, tree lookup, bool deduping)
2385 {
2386 if (deduping)
2387 for (tree next, probe = fns; probe; probe = next)
2388 {
2389 tree fn = probe;
2390 next = NULL_TREE;
2391
2392 if (TREE_CODE (probe) == OVERLOAD)
2393 {
2394 fn = OVL_FUNCTION (probe);
2395 next = OVL_CHAIN (probe);
2396 }
2397
2398 if (!LOOKUP_SEEN_P (fn))
2399 LOOKUP_SEEN_P (fn) = true;
2400 else
2401 {
2402 /* This function was already seen. Insert all the
2403 predecessors onto the lookup. */
2404 for (; fns != probe; fns = OVL_CHAIN (fns))
2405 {
2406 lookup = lookup_add (OVL_FUNCTION (fns), lookup);
2407 /* Propagate OVL_USING, but OVL_HIDDEN &
2408 OVL_DEDUP_P don't matter. */
2409 if (OVL_USING_P (fns))
2410 OVL_USING_P (lookup) = true;
2411 }
2412
2413 /* And now skip this function. */
2414 fns = next;
2415 }
2416 }
2417
2418 if (fns)
2419 /* We ended in a set of new functions. Add them all in one go. */
2420 lookup = lookup_add (fns, lookup);
2421
2422 return lookup;
2423 }
2424
2425 /* Returns nonzero if X is an expression for a (possibly overloaded)
2426 function. If "f" is a function or function template, "f", "c->f",
2427 "c.f", "C::f", and "f<int>" will all be considered possibly
2428 overloaded functions. Returns 2 if the function is actually
2429 overloaded, i.e., if it is impossible to know the type of the
2430 function without performing overload resolution. */
2431
2432 int
2433 is_overloaded_fn (tree x)
2434 {
2435 STRIP_ANY_LOCATION_WRAPPER (x);
2436
2437 /* A baselink is also considered an overloaded function. */
2438 if (TREE_CODE (x) == OFFSET_REF
2439 || TREE_CODE (x) == COMPONENT_REF)
2440 x = TREE_OPERAND (x, 1);
2441 x = MAYBE_BASELINK_FUNCTIONS (x);
2442 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
2443 x = TREE_OPERAND (x, 0);
2444
2445 if (DECL_FUNCTION_TEMPLATE_P (OVL_FIRST (x))
2446 || (TREE_CODE (x) == OVERLOAD && !OVL_SINGLE_P (x)))
2447 return 2;
2448
2449 return OVL_P (x);
2450 }
2451
2452 /* X is the CALL_EXPR_FN of a CALL_EXPR. If X represents a dependent name
2453 (14.6.2), return the IDENTIFIER_NODE for that name. Otherwise, return
2454 NULL_TREE. */
2455
2456 tree
2457 dependent_name (tree x)
2458 {
2459 /* FIXME a dependent name must be unqualified, but this function doesn't
2460 distinguish between qualified and unqualified identifiers. */
2461 if (identifier_p (x))
2462 return x;
2463 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
2464 x = TREE_OPERAND (x, 0);
2465 if (OVL_P (x))
2466 return OVL_NAME (x);
2467 return NULL_TREE;
2468 }
2469
2470 /* Returns true iff X is an expression for an overloaded function
2471 whose type cannot be known without performing overload
2472 resolution. */
2473
2474 bool
2475 really_overloaded_fn (tree x)
2476 {
2477 return is_overloaded_fn (x) == 2;
2478 }
2479
2480 /* Get the overload set FROM refers to. Returns NULL if it's not an
2481 overload set. */
2482
2483 tree
2484 maybe_get_fns (tree from)
2485 {
2486 STRIP_ANY_LOCATION_WRAPPER (from);
2487
2488 /* A baselink is also considered an overloaded function. */
2489 if (TREE_CODE (from) == OFFSET_REF
2490 || TREE_CODE (from) == COMPONENT_REF)
2491 from = TREE_OPERAND (from, 1);
2492 if (BASELINK_P (from))
2493 from = BASELINK_FUNCTIONS (from);
2494 if (TREE_CODE (from) == TEMPLATE_ID_EXPR)
2495 from = TREE_OPERAND (from, 0);
2496
2497 if (OVL_P (from))
2498 return from;
2499
2500 return NULL;
2501 }
2502
2503 /* FROM refers to an overload set. Return that set (or die). */
2504
2505 tree
2506 get_fns (tree from)
2507 {
2508 tree res = maybe_get_fns (from);
2509
2510 gcc_assert (res);
2511 return res;
2512 }
2513
2514 /* Return the first function of the overload set FROM refers to. */
2515
2516 tree
2517 get_first_fn (tree from)
2518 {
2519 return OVL_FIRST (get_fns (from));
2520 }
2521
2522 /* Return the scope where the overloaded functions OVL were found. */
2523
2524 tree
2525 ovl_scope (tree ovl)
2526 {
2527 if (TREE_CODE (ovl) == OFFSET_REF
2528 || TREE_CODE (ovl) == COMPONENT_REF)
2529 ovl = TREE_OPERAND (ovl, 1);
2530 if (TREE_CODE (ovl) == BASELINK)
2531 return BINFO_TYPE (BASELINK_BINFO (ovl));
2532 if (TREE_CODE (ovl) == TEMPLATE_ID_EXPR)
2533 ovl = TREE_OPERAND (ovl, 0);
2534 /* Skip using-declarations. */
2535 lkp_iterator iter (ovl);
2536 do
2537 ovl = *iter;
2538 while (iter.using_p () && ++iter);
2539
2540 return CP_DECL_CONTEXT (ovl);
2541 }
2542 \f
2543 #define PRINT_RING_SIZE 4
2544
2545 static const char *
2546 cxx_printable_name_internal (tree decl, int v, bool translate)
2547 {
2548 static unsigned int uid_ring[PRINT_RING_SIZE];
2549 static char *print_ring[PRINT_RING_SIZE];
2550 static bool trans_ring[PRINT_RING_SIZE];
2551 static int ring_counter;
2552 int i;
2553
2554 /* Only cache functions. */
2555 if (v < 2
2556 || TREE_CODE (decl) != FUNCTION_DECL
2557 || DECL_LANG_SPECIFIC (decl) == 0)
2558 return lang_decl_name (decl, v, translate);
2559
2560 /* See if this print name is lying around. */
2561 for (i = 0; i < PRINT_RING_SIZE; i++)
2562 if (uid_ring[i] == DECL_UID (decl) && translate == trans_ring[i])
2563 /* yes, so return it. */
2564 return print_ring[i];
2565
2566 if (++ring_counter == PRINT_RING_SIZE)
2567 ring_counter = 0;
2568
2569 if (current_function_decl != NULL_TREE)
2570 {
2571 /* There may be both translated and untranslated versions of the
2572 name cached. */
2573 for (i = 0; i < 2; i++)
2574 {
2575 if (uid_ring[ring_counter] == DECL_UID (current_function_decl))
2576 ring_counter += 1;
2577 if (ring_counter == PRINT_RING_SIZE)
2578 ring_counter = 0;
2579 }
2580 gcc_assert (uid_ring[ring_counter] != DECL_UID (current_function_decl));
2581 }
2582
2583 free (print_ring[ring_counter]);
2584
2585 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v, translate));
2586 uid_ring[ring_counter] = DECL_UID (decl);
2587 trans_ring[ring_counter] = translate;
2588 return print_ring[ring_counter];
2589 }
2590
2591 const char *
2592 cxx_printable_name (tree decl, int v)
2593 {
2594 return cxx_printable_name_internal (decl, v, false);
2595 }
2596
2597 const char *
2598 cxx_printable_name_translate (tree decl, int v)
2599 {
2600 return cxx_printable_name_internal (decl, v, true);
2601 }
2602 \f
2603 /* Return the canonical version of exception-specification RAISES for a C++17
2604 function type, for use in type comparison and building TYPE_CANONICAL. */
2605
2606 tree
2607 canonical_eh_spec (tree raises)
2608 {
2609 if (raises == NULL_TREE)
2610 return raises;
2611 else if (DEFERRED_NOEXCEPT_SPEC_P (raises)
2612 || UNPARSED_NOEXCEPT_SPEC_P (raises)
2613 || uses_template_parms (raises)
2614 || uses_template_parms (TREE_PURPOSE (raises)))
2615 /* Keep a dependent or deferred exception specification. */
2616 return raises;
2617 else if (nothrow_spec_p (raises))
2618 /* throw() -> noexcept. */
2619 return noexcept_true_spec;
2620 else
2621 /* For C++17 type matching, anything else -> nothing. */
2622 return NULL_TREE;
2623 }
2624
2625 tree
2626 build_cp_fntype_variant (tree type, cp_ref_qualifier rqual,
2627 tree raises, bool late)
2628 {
2629 cp_cv_quals type_quals = TYPE_QUALS (type);
2630
2631 if (cp_check_qualified_type (type, type, type_quals, rqual, raises, late))
2632 return type;
2633
2634 tree v = TYPE_MAIN_VARIANT (type);
2635 for (; v; v = TYPE_NEXT_VARIANT (v))
2636 if (cp_check_qualified_type (v, type, type_quals, rqual, raises, late))
2637 return v;
2638
2639 /* Need to build a new variant. */
2640 v = build_variant_type_copy (type);
2641 if (!TYPE_DEPENDENT_P (v))
2642 /* We no longer know that it's not type-dependent. */
2643 TYPE_DEPENDENT_P_VALID (v) = false;
2644 TYPE_RAISES_EXCEPTIONS (v) = raises;
2645 TYPE_HAS_LATE_RETURN_TYPE (v) = late;
2646 switch (rqual)
2647 {
2648 case REF_QUAL_RVALUE:
2649 FUNCTION_RVALUE_QUALIFIED (v) = 1;
2650 FUNCTION_REF_QUALIFIED (v) = 1;
2651 break;
2652 case REF_QUAL_LVALUE:
2653 FUNCTION_RVALUE_QUALIFIED (v) = 0;
2654 FUNCTION_REF_QUALIFIED (v) = 1;
2655 break;
2656 default:
2657 FUNCTION_REF_QUALIFIED (v) = 0;
2658 break;
2659 }
2660
2661 /* Canonicalize the exception specification. */
2662 tree cr = flag_noexcept_type ? canonical_eh_spec (raises) : NULL_TREE;
2663
2664 if (TYPE_STRUCTURAL_EQUALITY_P (type))
2665 /* Propagate structural equality. */
2666 SET_TYPE_STRUCTURAL_EQUALITY (v);
2667 else if (TYPE_CANONICAL (type) != type || cr != raises || late)
2668 /* Build the underlying canonical type, since it is different
2669 from TYPE. */
2670 TYPE_CANONICAL (v) = build_cp_fntype_variant (TYPE_CANONICAL (type),
2671 rqual, cr, false);
2672 else
2673 /* T is its own canonical type. */
2674 TYPE_CANONICAL (v) = v;
2675
2676 return v;
2677 }
2678
2679 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
2680 listed in RAISES. */
2681
2682 tree
2683 build_exception_variant (tree type, tree raises)
2684 {
2685 cp_ref_qualifier rqual = type_memfn_rqual (type);
2686 bool late = TYPE_HAS_LATE_RETURN_TYPE (type);
2687 return build_cp_fntype_variant (type, rqual, raises, late);
2688 }
2689
2690 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
2691 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
2692 arguments. */
2693
2694 tree
2695 bind_template_template_parm (tree t, tree newargs)
2696 {
2697 tree decl = TYPE_NAME (t);
2698 tree t2;
2699
2700 t2 = cxx_make_type (BOUND_TEMPLATE_TEMPLATE_PARM);
2701 decl = build_decl (input_location,
2702 TYPE_DECL, DECL_NAME (decl), NULL_TREE);
2703
2704 /* These nodes have to be created to reflect new TYPE_DECL and template
2705 arguments. */
2706 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
2707 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
2708 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
2709 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
2710
2711 TREE_TYPE (decl) = t2;
2712 TYPE_NAME (t2) = decl;
2713 TYPE_STUB_DECL (t2) = decl;
2714 TYPE_SIZE (t2) = 0;
2715 SET_TYPE_STRUCTURAL_EQUALITY (t2);
2716
2717 return t2;
2718 }
2719
2720 /* Called from count_trees via walk_tree. */
2721
2722 static tree
2723 count_trees_r (tree *tp, int *walk_subtrees, void *data)
2724 {
2725 ++*((int *) data);
2726
2727 if (TYPE_P (*tp))
2728 *walk_subtrees = 0;
2729
2730 return NULL_TREE;
2731 }
2732
2733 /* Debugging function for measuring the rough complexity of a tree
2734 representation. */
2735
2736 int
2737 count_trees (tree t)
2738 {
2739 int n_trees = 0;
2740 cp_walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
2741 return n_trees;
2742 }
2743
2744 /* Called from verify_stmt_tree via walk_tree. */
2745
2746 static tree
2747 verify_stmt_tree_r (tree* tp, int * /*walk_subtrees*/, void* data)
2748 {
2749 tree t = *tp;
2750 hash_table<nofree_ptr_hash <tree_node> > *statements
2751 = static_cast <hash_table<nofree_ptr_hash <tree_node> > *> (data);
2752 tree_node **slot;
2753
2754 if (!STATEMENT_CODE_P (TREE_CODE (t)))
2755 return NULL_TREE;
2756
2757 /* If this statement is already present in the hash table, then
2758 there is a circularity in the statement tree. */
2759 gcc_assert (!statements->find (t));
2760
2761 slot = statements->find_slot (t, INSERT);
2762 *slot = t;
2763
2764 return NULL_TREE;
2765 }
2766
2767 /* Debugging function to check that the statement T has not been
2768 corrupted. For now, this function simply checks that T contains no
2769 circularities. */
2770
2771 void
2772 verify_stmt_tree (tree t)
2773 {
2774 hash_table<nofree_ptr_hash <tree_node> > statements (37);
2775 cp_walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
2776 }
2777
2778 /* Check if the type T depends on a type with no linkage and if so,
2779 return it. If RELAXED_P then do not consider a class type declared
2780 within a vague-linkage function to have no linkage. Remember:
2781 no-linkage is not the same as internal-linkage*/
2782
2783 tree
2784 no_linkage_check (tree t, bool relaxed_p)
2785 {
2786 tree r;
2787
2788 /* Lambda types that don't have mangling scope have no linkage. We
2789 check CLASSTYPE_LAMBDA_EXPR for error_mark_node because
2790 when we get here from pushtag none of the lambda information is
2791 set up yet, so we want to assume that the lambda has linkage and
2792 fix it up later if not. We need to check this even in templates so
2793 that we properly handle a lambda-expression in the signature. */
2794 if (LAMBDA_TYPE_P (t)
2795 && CLASSTYPE_LAMBDA_EXPR (t) != error_mark_node)
2796 {
2797 tree extra = LAMBDA_TYPE_EXTRA_SCOPE (t);
2798 if (!extra)
2799 return t;
2800 }
2801
2802 /* Otherwise there's no point in checking linkage on template functions; we
2803 can't know their complete types. */
2804 if (processing_template_decl)
2805 return NULL_TREE;
2806
2807 switch (TREE_CODE (t))
2808 {
2809 case RECORD_TYPE:
2810 if (TYPE_PTRMEMFUNC_P (t))
2811 goto ptrmem;
2812 /* Fall through. */
2813 case UNION_TYPE:
2814 if (!CLASS_TYPE_P (t))
2815 return NULL_TREE;
2816 /* Fall through. */
2817 case ENUMERAL_TYPE:
2818 /* Only treat unnamed types as having no linkage if they're at
2819 namespace scope. This is core issue 966. */
2820 if (TYPE_UNNAMED_P (t) && TYPE_NAMESPACE_SCOPE_P (t))
2821 return t;
2822
2823 for (r = CP_TYPE_CONTEXT (t); ; )
2824 {
2825 /* If we're a nested type of a !TREE_PUBLIC class, we might not
2826 have linkage, or we might just be in an anonymous namespace.
2827 If we're in a TREE_PUBLIC class, we have linkage. */
2828 if (TYPE_P (r) && !TREE_PUBLIC (TYPE_NAME (r)))
2829 return no_linkage_check (TYPE_CONTEXT (t), relaxed_p);
2830 else if (TREE_CODE (r) == FUNCTION_DECL)
2831 {
2832 if (!relaxed_p || !vague_linkage_p (r))
2833 return t;
2834 else
2835 r = CP_DECL_CONTEXT (r);
2836 }
2837 else
2838 break;
2839 }
2840
2841 return NULL_TREE;
2842
2843 case ARRAY_TYPE:
2844 case POINTER_TYPE:
2845 case REFERENCE_TYPE:
2846 case VECTOR_TYPE:
2847 return no_linkage_check (TREE_TYPE (t), relaxed_p);
2848
2849 case OFFSET_TYPE:
2850 ptrmem:
2851 r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
2852 relaxed_p);
2853 if (r)
2854 return r;
2855 return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
2856
2857 case METHOD_TYPE:
2858 case FUNCTION_TYPE:
2859 {
2860 tree parm = TYPE_ARG_TYPES (t);
2861 if (TREE_CODE (t) == METHOD_TYPE)
2862 /* The 'this' pointer isn't interesting; a method has the same
2863 linkage (or lack thereof) as its enclosing class. */
2864 parm = TREE_CHAIN (parm);
2865 for (;
2866 parm && parm != void_list_node;
2867 parm = TREE_CHAIN (parm))
2868 {
2869 r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
2870 if (r)
2871 return r;
2872 }
2873 return no_linkage_check (TREE_TYPE (t), relaxed_p);
2874 }
2875
2876 default:
2877 return NULL_TREE;
2878 }
2879 }
2880
2881 extern int depth_reached;
2882
2883 void
2884 cxx_print_statistics (void)
2885 {
2886 print_template_statistics ();
2887 if (GATHER_STATISTICS)
2888 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
2889 depth_reached);
2890 }
2891
2892 /* Return, as an INTEGER_CST node, the number of elements for TYPE
2893 (which is an ARRAY_TYPE). This counts only elements of the top
2894 array. */
2895
2896 tree
2897 array_type_nelts_top (tree type)
2898 {
2899 return fold_build2_loc (input_location,
2900 PLUS_EXPR, sizetype,
2901 array_type_nelts (type),
2902 size_one_node);
2903 }
2904
2905 /* Return, as an INTEGER_CST node, the number of elements for TYPE
2906 (which is an ARRAY_TYPE). This one is a recursive count of all
2907 ARRAY_TYPEs that are clumped together. */
2908
2909 tree
2910 array_type_nelts_total (tree type)
2911 {
2912 tree sz = array_type_nelts_top (type);
2913 type = TREE_TYPE (type);
2914 while (TREE_CODE (type) == ARRAY_TYPE)
2915 {
2916 tree n = array_type_nelts_top (type);
2917 sz = fold_build2_loc (input_location,
2918 MULT_EXPR, sizetype, sz, n);
2919 type = TREE_TYPE (type);
2920 }
2921 return sz;
2922 }
2923
2924 struct bot_data
2925 {
2926 splay_tree target_remap;
2927 bool clear_location;
2928 };
2929
2930 /* Called from break_out_target_exprs via mapcar. */
2931
2932 static tree
2933 bot_manip (tree* tp, int* walk_subtrees, void* data_)
2934 {
2935 bot_data &data = *(bot_data*)data_;
2936 splay_tree target_remap = data.target_remap;
2937 tree t = *tp;
2938
2939 if (!TYPE_P (t) && TREE_CONSTANT (t) && !TREE_SIDE_EFFECTS (t))
2940 {
2941 /* There can't be any TARGET_EXPRs or their slot variables below this
2942 point. But we must make a copy, in case subsequent processing
2943 alters any part of it. For example, during gimplification a cast
2944 of the form (T) &X::f (where "f" is a member function) will lead
2945 to replacing the PTRMEM_CST for &X::f with a VAR_DECL. */
2946 *walk_subtrees = 0;
2947 *tp = unshare_expr (t);
2948 return NULL_TREE;
2949 }
2950 if (TREE_CODE (t) == TARGET_EXPR)
2951 {
2952 tree u;
2953
2954 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
2955 {
2956 u = build_cplus_new (TREE_TYPE (t), TREE_OPERAND (t, 1),
2957 tf_warning_or_error);
2958 if (u == error_mark_node)
2959 return u;
2960 if (AGGR_INIT_ZERO_FIRST (TREE_OPERAND (t, 1)))
2961 AGGR_INIT_ZERO_FIRST (TREE_OPERAND (u, 1)) = true;
2962 }
2963 else
2964 u = build_target_expr_with_type (TREE_OPERAND (t, 1), TREE_TYPE (t),
2965 tf_warning_or_error);
2966
2967 TARGET_EXPR_IMPLICIT_P (u) = TARGET_EXPR_IMPLICIT_P (t);
2968 TARGET_EXPR_LIST_INIT_P (u) = TARGET_EXPR_LIST_INIT_P (t);
2969 TARGET_EXPR_DIRECT_INIT_P (u) = TARGET_EXPR_DIRECT_INIT_P (t);
2970
2971 /* Map the old variable to the new one. */
2972 splay_tree_insert (target_remap,
2973 (splay_tree_key) TREE_OPERAND (t, 0),
2974 (splay_tree_value) TREE_OPERAND (u, 0));
2975
2976 TREE_OPERAND (u, 1) = break_out_target_exprs (TREE_OPERAND (u, 1),
2977 data.clear_location);
2978 if (TREE_OPERAND (u, 1) == error_mark_node)
2979 return error_mark_node;
2980
2981 /* Replace the old expression with the new version. */
2982 *tp = u;
2983 /* We don't have to go below this point; the recursive call to
2984 break_out_target_exprs will have handled anything below this
2985 point. */
2986 *walk_subtrees = 0;
2987 return NULL_TREE;
2988 }
2989 if (TREE_CODE (*tp) == SAVE_EXPR)
2990 {
2991 t = *tp;
2992 splay_tree_node n = splay_tree_lookup (target_remap,
2993 (splay_tree_key) t);
2994 if (n)
2995 {
2996 *tp = (tree)n->value;
2997 *walk_subtrees = 0;
2998 }
2999 else
3000 {
3001 copy_tree_r (tp, walk_subtrees, NULL);
3002 splay_tree_insert (target_remap,
3003 (splay_tree_key)t,
3004 (splay_tree_value)*tp);
3005 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
3006 splay_tree_insert (target_remap,
3007 (splay_tree_key)*tp,
3008 (splay_tree_value)*tp);
3009 }
3010 return NULL_TREE;
3011 }
3012
3013 /* Make a copy of this node. */
3014 t = copy_tree_r (tp, walk_subtrees, NULL);
3015 if (TREE_CODE (*tp) == CALL_EXPR || TREE_CODE (*tp) == AGGR_INIT_EXPR)
3016 if (!processing_template_decl)
3017 set_flags_from_callee (*tp);
3018 if (data.clear_location && EXPR_HAS_LOCATION (*tp))
3019 SET_EXPR_LOCATION (*tp, input_location);
3020 return t;
3021 }
3022
3023 /* Replace all remapped VAR_DECLs in T with their new equivalents.
3024 DATA is really a splay-tree mapping old variables to new
3025 variables. */
3026
3027 static tree
3028 bot_replace (tree* t, int* /*walk_subtrees*/, void* data_)
3029 {
3030 bot_data &data = *(bot_data*)data_;
3031 splay_tree target_remap = data.target_remap;
3032
3033 if (VAR_P (*t))
3034 {
3035 splay_tree_node n = splay_tree_lookup (target_remap,
3036 (splay_tree_key) *t);
3037 if (n)
3038 *t = (tree) n->value;
3039 }
3040 else if (TREE_CODE (*t) == PARM_DECL
3041 && DECL_NAME (*t) == this_identifier
3042 && !DECL_CONTEXT (*t))
3043 {
3044 /* In an NSDMI we need to replace the 'this' parameter we used for
3045 parsing with the real one for this function. */
3046 *t = current_class_ptr;
3047 }
3048 else if (TREE_CODE (*t) == CONVERT_EXPR
3049 && CONVERT_EXPR_VBASE_PATH (*t))
3050 {
3051 /* In an NSDMI build_base_path defers building conversions to virtual
3052 bases, and we handle it here. */
3053 tree basetype = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (*t)));
3054 vec<tree, va_gc> *vbases = CLASSTYPE_VBASECLASSES (current_class_type);
3055 int i; tree binfo;
3056 FOR_EACH_VEC_SAFE_ELT (vbases, i, binfo)
3057 if (BINFO_TYPE (binfo) == basetype)
3058 break;
3059 *t = build_base_path (PLUS_EXPR, TREE_OPERAND (*t, 0), binfo, true,
3060 tf_warning_or_error);
3061 }
3062
3063 return NULL_TREE;
3064 }
3065
3066 /* When we parse a default argument expression, we may create
3067 temporary variables via TARGET_EXPRs. When we actually use the
3068 default-argument expression, we make a copy of the expression
3069 and replace the temporaries with appropriate local versions.
3070
3071 If CLEAR_LOCATION is true, override any EXPR_LOCATION with
3072 input_location. */
3073
3074 tree
3075 break_out_target_exprs (tree t, bool clear_location /* = false */)
3076 {
3077 static int target_remap_count;
3078 static splay_tree target_remap;
3079
3080 if (!target_remap_count++)
3081 target_remap = splay_tree_new (splay_tree_compare_pointers,
3082 /*splay_tree_delete_key_fn=*/NULL,
3083 /*splay_tree_delete_value_fn=*/NULL);
3084 bot_data data = { target_remap, clear_location };
3085 if (cp_walk_tree (&t, bot_manip, &data, NULL) == error_mark_node)
3086 t = error_mark_node;
3087 cp_walk_tree (&t, bot_replace, &data, NULL);
3088
3089 if (!--target_remap_count)
3090 {
3091 splay_tree_delete (target_remap);
3092 target_remap = NULL;
3093 }
3094
3095 return t;
3096 }
3097
3098 /* Build an expression for the subobject of OBJ at CONSTRUCTOR index INDEX,
3099 which we expect to have type TYPE. */
3100
3101 tree
3102 build_ctor_subob_ref (tree index, tree type, tree obj)
3103 {
3104 if (index == NULL_TREE)
3105 /* Can't refer to a particular member of a vector. */
3106 obj = NULL_TREE;
3107 else if (TREE_CODE (index) == INTEGER_CST)
3108 obj = cp_build_array_ref (input_location, obj, index, tf_none);
3109 else
3110 obj = build_class_member_access_expr (obj, index, NULL_TREE,
3111 /*reference*/false, tf_none);
3112 if (obj)
3113 {
3114 tree objtype = TREE_TYPE (obj);
3115 if (TREE_CODE (objtype) == ARRAY_TYPE && !TYPE_DOMAIN (objtype))
3116 {
3117 /* When the destination object refers to a flexible array member
3118 verify that it matches the type of the source object except
3119 for its domain and qualifiers. */
3120 gcc_assert (comptypes (TYPE_MAIN_VARIANT (type),
3121 TYPE_MAIN_VARIANT (objtype),
3122 COMPARE_REDECLARATION));
3123 }
3124 else
3125 gcc_assert (same_type_ignoring_top_level_qualifiers_p (type, objtype));
3126 }
3127
3128 return obj;
3129 }
3130
3131 struct replace_placeholders_t
3132 {
3133 tree obj; /* The object to be substituted for a PLACEHOLDER_EXPR. */
3134 tree exp; /* The outermost exp. */
3135 bool seen; /* Whether we've encountered a PLACEHOLDER_EXPR. */
3136 hash_set<tree> *pset; /* To avoid walking same trees multiple times. */
3137 };
3138
3139 /* Like substitute_placeholder_in_expr, but handle C++ tree codes and
3140 build up subexpressions as we go deeper. */
3141
3142 static tree
3143 replace_placeholders_r (tree* t, int* walk_subtrees, void* data_)
3144 {
3145 replace_placeholders_t *d = static_cast<replace_placeholders_t*>(data_);
3146 tree obj = d->obj;
3147
3148 if (TYPE_P (*t) || TREE_CONSTANT (*t))
3149 {
3150 *walk_subtrees = false;
3151 return NULL_TREE;
3152 }
3153
3154 switch (TREE_CODE (*t))
3155 {
3156 case PLACEHOLDER_EXPR:
3157 {
3158 tree x = obj;
3159 for (; !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (*t),
3160 TREE_TYPE (x));
3161 x = TREE_OPERAND (x, 0))
3162 gcc_assert (handled_component_p (x));
3163 *t = unshare_expr (x);
3164 *walk_subtrees = false;
3165 d->seen = true;
3166 }
3167 break;
3168
3169 case CONSTRUCTOR:
3170 {
3171 constructor_elt *ce;
3172 vec<constructor_elt,va_gc> *v = CONSTRUCTOR_ELTS (*t);
3173 /* Don't walk into CONSTRUCTOR_PLACEHOLDER_BOUNDARY ctors
3174 other than the d->exp one, those have PLACEHOLDER_EXPRs
3175 related to another object. */
3176 if ((CONSTRUCTOR_PLACEHOLDER_BOUNDARY (*t)
3177 && *t != d->exp)
3178 || d->pset->add (*t))
3179 {
3180 *walk_subtrees = false;
3181 return NULL_TREE;
3182 }
3183 for (unsigned i = 0; vec_safe_iterate (v, i, &ce); ++i)
3184 {
3185 tree *valp = &ce->value;
3186 tree type = TREE_TYPE (*valp);
3187 tree subob = obj;
3188
3189 /* Elements with RANGE_EXPR index shouldn't have any
3190 placeholders in them. */
3191 if (ce->index && TREE_CODE (ce->index) == RANGE_EXPR)
3192 continue;
3193
3194 if (TREE_CODE (*valp) == CONSTRUCTOR
3195 && AGGREGATE_TYPE_P (type))
3196 {
3197 /* If we're looking at the initializer for OBJ, then build
3198 a sub-object reference. If we're looking at an
3199 initializer for another object, just pass OBJ down. */
3200 if (same_type_ignoring_top_level_qualifiers_p
3201 (TREE_TYPE (*t), TREE_TYPE (obj)))
3202 subob = build_ctor_subob_ref (ce->index, type, obj);
3203 if (TREE_CODE (*valp) == TARGET_EXPR)
3204 valp = &TARGET_EXPR_INITIAL (*valp);
3205 }
3206 d->obj = subob;
3207 cp_walk_tree (valp, replace_placeholders_r, data_, NULL);
3208 d->obj = obj;
3209 }
3210 *walk_subtrees = false;
3211 break;
3212 }
3213
3214 default:
3215 if (d->pset->add (*t))
3216 *walk_subtrees = false;
3217 break;
3218 }
3219
3220 return NULL_TREE;
3221 }
3222
3223 /* Replace PLACEHOLDER_EXPRs in EXP with object OBJ. SEEN_P is set if
3224 a PLACEHOLDER_EXPR has been encountered. */
3225
3226 tree
3227 replace_placeholders (tree exp, tree obj, bool *seen_p /*= NULL*/)
3228 {
3229 /* This is only relevant for C++14. */
3230 if (cxx_dialect < cxx14)
3231 return exp;
3232
3233 /* If the object isn't a (member of a) class, do nothing. */
3234 tree op0 = obj;
3235 while (handled_component_p (op0))
3236 op0 = TREE_OPERAND (op0, 0);
3237 if (!CLASS_TYPE_P (strip_array_types (TREE_TYPE (op0))))
3238 return exp;
3239
3240 tree *tp = &exp;
3241 if (TREE_CODE (exp) == TARGET_EXPR)
3242 tp = &TARGET_EXPR_INITIAL (exp);
3243 hash_set<tree> pset;
3244 replace_placeholders_t data = { obj, *tp, false, &pset };
3245 cp_walk_tree (tp, replace_placeholders_r, &data, NULL);
3246 if (seen_p)
3247 *seen_p = data.seen;
3248 return exp;
3249 }
3250
3251 /* Callback function for find_placeholders. */
3252
3253 static tree
3254 find_placeholders_r (tree *t, int *walk_subtrees, void *)
3255 {
3256 if (TYPE_P (*t) || TREE_CONSTANT (*t))
3257 {
3258 *walk_subtrees = false;
3259 return NULL_TREE;
3260 }
3261
3262 switch (TREE_CODE (*t))
3263 {
3264 case PLACEHOLDER_EXPR:
3265 return *t;
3266
3267 case CONSTRUCTOR:
3268 if (CONSTRUCTOR_PLACEHOLDER_BOUNDARY (*t))
3269 *walk_subtrees = false;
3270 break;
3271
3272 default:
3273 break;
3274 }
3275
3276 return NULL_TREE;
3277 }
3278
3279 /* Return true if EXP contains a PLACEHOLDER_EXPR. Don't walk into
3280 ctors with CONSTRUCTOR_PLACEHOLDER_BOUNDARY flag set. */
3281
3282 bool
3283 find_placeholders (tree exp)
3284 {
3285 /* This is only relevant for C++14. */
3286 if (cxx_dialect < cxx14)
3287 return false;
3288
3289 return cp_walk_tree_without_duplicates (&exp, find_placeholders_r, NULL);
3290 }
3291
3292 /* Similar to `build_nt', but for template definitions of dependent
3293 expressions */
3294
3295 tree
3296 build_min_nt_loc (location_t loc, enum tree_code code, ...)
3297 {
3298 tree t;
3299 int length;
3300 int i;
3301 va_list p;
3302
3303 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3304
3305 va_start (p, code);
3306
3307 t = make_node (code);
3308 SET_EXPR_LOCATION (t, loc);
3309 length = TREE_CODE_LENGTH (code);
3310
3311 for (i = 0; i < length; i++)
3312 TREE_OPERAND (t, i) = va_arg (p, tree);
3313
3314 va_end (p);
3315 return t;
3316 }
3317
3318 /* Similar to `build', but for template definitions. */
3319
3320 tree
3321 build_min (enum tree_code code, tree tt, ...)
3322 {
3323 tree t;
3324 int length;
3325 int i;
3326 va_list p;
3327
3328 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3329
3330 va_start (p, tt);
3331
3332 t = make_node (code);
3333 length = TREE_CODE_LENGTH (code);
3334 TREE_TYPE (t) = tt;
3335
3336 for (i = 0; i < length; i++)
3337 {
3338 tree x = va_arg (p, tree);
3339 TREE_OPERAND (t, i) = x;
3340 if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
3341 TREE_SIDE_EFFECTS (t) = 1;
3342 }
3343
3344 va_end (p);
3345
3346 return t;
3347 }
3348
3349 /* Similar to `build', but for template definitions of non-dependent
3350 expressions. NON_DEP is the non-dependent expression that has been
3351 built. */
3352
3353 tree
3354 build_min_non_dep (enum tree_code code, tree non_dep, ...)
3355 {
3356 tree t;
3357 int length;
3358 int i;
3359 va_list p;
3360
3361 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3362
3363 va_start (p, non_dep);
3364
3365 if (REFERENCE_REF_P (non_dep))
3366 non_dep = TREE_OPERAND (non_dep, 0);
3367
3368 t = make_node (code);
3369 SET_EXPR_LOCATION (t, cp_expr_loc_or_input_loc (non_dep));
3370 length = TREE_CODE_LENGTH (code);
3371 TREE_TYPE (t) = unlowered_expr_type (non_dep);
3372 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
3373
3374 for (i = 0; i < length; i++)
3375 TREE_OPERAND (t, i) = va_arg (p, tree);
3376
3377 if (code == COMPOUND_EXPR && TREE_CODE (non_dep) != COMPOUND_EXPR)
3378 /* This should not be considered a COMPOUND_EXPR, because it
3379 resolves to an overload. */
3380 COMPOUND_EXPR_OVERLOADED (t) = 1;
3381
3382 va_end (p);
3383 return convert_from_reference (t);
3384 }
3385
3386 /* Similar to build_min_nt, but call expressions */
3387
3388 tree
3389 build_min_nt_call_vec (tree fn, vec<tree, va_gc> *args)
3390 {
3391 tree ret, t;
3392 unsigned int ix;
3393
3394 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
3395 CALL_EXPR_FN (ret) = fn;
3396 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
3397 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
3398 CALL_EXPR_ARG (ret, ix) = t;
3399
3400 return ret;
3401 }
3402
3403 /* Similar to `build_min_nt_call_vec', but for template definitions of
3404 non-dependent expressions. NON_DEP is the non-dependent expression
3405 that has been built. */
3406
3407 tree
3408 build_min_non_dep_call_vec (tree non_dep, tree fn, vec<tree, va_gc> *argvec)
3409 {
3410 tree t = build_min_nt_call_vec (fn, argvec);
3411 if (REFERENCE_REF_P (non_dep))
3412 non_dep = TREE_OPERAND (non_dep, 0);
3413 TREE_TYPE (t) = TREE_TYPE (non_dep);
3414 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
3415 return convert_from_reference (t);
3416 }
3417
3418 /* Similar to build_min_non_dep, but for expressions that have been resolved to
3419 a call to an operator overload. OP is the operator that has been
3420 overloaded. NON_DEP is the non-dependent expression that's been built,
3421 which should be a CALL_EXPR or an INDIRECT_REF to a CALL_EXPR. OVERLOAD is
3422 the overload that NON_DEP is calling. */
3423
3424 tree
3425 build_min_non_dep_op_overload (enum tree_code op,
3426 tree non_dep,
3427 tree overload, ...)
3428 {
3429 va_list p;
3430 int nargs, expected_nargs;
3431 tree fn, call;
3432
3433 non_dep = extract_call_expr (non_dep);
3434
3435 nargs = call_expr_nargs (non_dep);
3436
3437 expected_nargs = cp_tree_code_length (op);
3438 if ((op == POSTINCREMENT_EXPR
3439 || op == POSTDECREMENT_EXPR)
3440 /* With -fpermissive non_dep could be operator++(). */
3441 && (!flag_permissive || nargs != expected_nargs))
3442 expected_nargs += 1;
3443 gcc_assert (nargs == expected_nargs);
3444
3445 releasing_vec args;
3446 va_start (p, overload);
3447
3448 if (TREE_CODE (TREE_TYPE (overload)) == FUNCTION_TYPE)
3449 {
3450 fn = overload;
3451 for (int i = 0; i < nargs; i++)
3452 {
3453 tree arg = va_arg (p, tree);
3454 vec_safe_push (args, arg);
3455 }
3456 }
3457 else if (TREE_CODE (TREE_TYPE (overload)) == METHOD_TYPE)
3458 {
3459 tree object = va_arg (p, tree);
3460 tree binfo = TYPE_BINFO (TREE_TYPE (object));
3461 tree method = build_baselink (binfo, binfo, overload, NULL_TREE);
3462 fn = build_min (COMPONENT_REF, TREE_TYPE (overload),
3463 object, method, NULL_TREE);
3464 for (int i = 1; i < nargs; i++)
3465 {
3466 tree arg = va_arg (p, tree);
3467 vec_safe_push (args, arg);
3468 }
3469 }
3470 else
3471 gcc_unreachable ();
3472
3473 va_end (p);
3474 call = build_min_non_dep_call_vec (non_dep, fn, args);
3475
3476 tree call_expr = extract_call_expr (call);
3477 KOENIG_LOOKUP_P (call_expr) = KOENIG_LOOKUP_P (non_dep);
3478 CALL_EXPR_OPERATOR_SYNTAX (call_expr) = true;
3479 CALL_EXPR_ORDERED_ARGS (call_expr) = CALL_EXPR_ORDERED_ARGS (non_dep);
3480 CALL_EXPR_REVERSE_ARGS (call_expr) = CALL_EXPR_REVERSE_ARGS (non_dep);
3481
3482 return call;
3483 }
3484
3485 /* Return a new tree vec copied from VEC, with ELT inserted at index IDX. */
3486
3487 vec<tree, va_gc> *
3488 vec_copy_and_insert (vec<tree, va_gc> *old_vec, tree elt, unsigned idx)
3489 {
3490 unsigned len = vec_safe_length (old_vec);
3491 gcc_assert (idx <= len);
3492
3493 vec<tree, va_gc> *new_vec = NULL;
3494 vec_alloc (new_vec, len + 1);
3495
3496 unsigned i;
3497 for (i = 0; i < len; ++i)
3498 {
3499 if (i == idx)
3500 new_vec->quick_push (elt);
3501 new_vec->quick_push ((*old_vec)[i]);
3502 }
3503 if (i == idx)
3504 new_vec->quick_push (elt);
3505
3506 return new_vec;
3507 }
3508
3509 tree
3510 get_type_decl (tree t)
3511 {
3512 if (TREE_CODE (t) == TYPE_DECL)
3513 return t;
3514 if (TYPE_P (t))
3515 return TYPE_STUB_DECL (t);
3516 gcc_assert (t == error_mark_node);
3517 return t;
3518 }
3519
3520 /* Returns the namespace that contains DECL, whether directly or
3521 indirectly. */
3522
3523 tree
3524 decl_namespace_context (tree decl)
3525 {
3526 while (1)
3527 {
3528 if (TREE_CODE (decl) == NAMESPACE_DECL)
3529 return decl;
3530 else if (TYPE_P (decl))
3531 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
3532 else
3533 decl = CP_DECL_CONTEXT (decl);
3534 }
3535 }
3536
3537 /* Returns true if decl is within an anonymous namespace, however deeply
3538 nested, or false otherwise. */
3539
3540 bool
3541 decl_anon_ns_mem_p (const_tree decl)
3542 {
3543 while (TREE_CODE (decl) != NAMESPACE_DECL)
3544 {
3545 /* Classes inside anonymous namespaces have TREE_PUBLIC == 0. */
3546 if (TYPE_P (decl))
3547 return !TREE_PUBLIC (TYPE_MAIN_DECL (decl));
3548
3549 decl = CP_DECL_CONTEXT (decl);
3550 }
3551 return !TREE_PUBLIC (decl);
3552 }
3553
3554 /* Subroutine of cp_tree_equal: t1 and t2 are the CALL_EXPR_FNs of two
3555 CALL_EXPRS. Return whether they are equivalent. */
3556
3557 static bool
3558 called_fns_equal (tree t1, tree t2)
3559 {
3560 /* Core 1321: dependent names are equivalent even if the overload sets
3561 are different. But do compare explicit template arguments. */
3562 tree name1 = dependent_name (t1);
3563 tree name2 = dependent_name (t2);
3564 if (name1 || name2)
3565 {
3566 tree targs1 = NULL_TREE, targs2 = NULL_TREE;
3567
3568 if (name1 != name2)
3569 return false;
3570
3571 /* FIXME dependent_name currently returns an unqualified name regardless
3572 of whether the function was named with a qualified- or unqualified-id.
3573 Until that's fixed, check that we aren't looking at overload sets from
3574 different scopes. */
3575 if (is_overloaded_fn (t1) && is_overloaded_fn (t2)
3576 && (DECL_CONTEXT (get_first_fn (t1))
3577 != DECL_CONTEXT (get_first_fn (t2))))
3578 return false;
3579
3580 if (TREE_CODE (t1) == TEMPLATE_ID_EXPR)
3581 targs1 = TREE_OPERAND (t1, 1);
3582 if (TREE_CODE (t2) == TEMPLATE_ID_EXPR)
3583 targs2 = TREE_OPERAND (t2, 1);
3584 return cp_tree_equal (targs1, targs2);
3585 }
3586 else
3587 return cp_tree_equal (t1, t2);
3588 }
3589
3590 /* Return truthvalue of whether T1 is the same tree structure as T2.
3591 Return 1 if they are the same. Return 0 if they are different. */
3592
3593 bool
3594 cp_tree_equal (tree t1, tree t2)
3595 {
3596 enum tree_code code1, code2;
3597
3598 if (t1 == t2)
3599 return true;
3600 if (!t1 || !t2)
3601 return false;
3602
3603 code1 = TREE_CODE (t1);
3604 code2 = TREE_CODE (t2);
3605
3606 if (code1 != code2)
3607 return false;
3608
3609 if (CONSTANT_CLASS_P (t1)
3610 && !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3611 return false;
3612
3613 switch (code1)
3614 {
3615 case VOID_CST:
3616 /* There's only a single VOID_CST node, so we should never reach
3617 here. */
3618 gcc_unreachable ();
3619
3620 case INTEGER_CST:
3621 return tree_int_cst_equal (t1, t2);
3622
3623 case REAL_CST:
3624 return real_equal (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
3625
3626 case STRING_CST:
3627 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3628 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3629 TREE_STRING_LENGTH (t1));
3630
3631 case FIXED_CST:
3632 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1),
3633 TREE_FIXED_CST (t2));
3634
3635 case COMPLEX_CST:
3636 return cp_tree_equal (TREE_REALPART (t1), TREE_REALPART (t2))
3637 && cp_tree_equal (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
3638
3639 case VECTOR_CST:
3640 return operand_equal_p (t1, t2, OEP_ONLY_CONST);
3641
3642 case CONSTRUCTOR:
3643 /* We need to do this when determining whether or not two
3644 non-type pointer to member function template arguments
3645 are the same. */
3646 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
3647 || CONSTRUCTOR_NELTS (t1) != CONSTRUCTOR_NELTS (t2))
3648 return false;
3649 {
3650 tree field, value;
3651 unsigned int i;
3652 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, field, value)
3653 {
3654 constructor_elt *elt2 = CONSTRUCTOR_ELT (t2, i);
3655 if (!cp_tree_equal (field, elt2->index)
3656 || !cp_tree_equal (value, elt2->value))
3657 return false;
3658 }
3659 }
3660 return true;
3661
3662 case TREE_LIST:
3663 if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
3664 return false;
3665 if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
3666 return false;
3667 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
3668
3669 case SAVE_EXPR:
3670 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3671
3672 case CALL_EXPR:
3673 {
3674 tree arg1, arg2;
3675 call_expr_arg_iterator iter1, iter2;
3676 if (KOENIG_LOOKUP_P (t1) != KOENIG_LOOKUP_P (t2)
3677 || !called_fns_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2)))
3678 return false;
3679 for (arg1 = first_call_expr_arg (t1, &iter1),
3680 arg2 = first_call_expr_arg (t2, &iter2);
3681 arg1 && arg2;
3682 arg1 = next_call_expr_arg (&iter1),
3683 arg2 = next_call_expr_arg (&iter2))
3684 if (!cp_tree_equal (arg1, arg2))
3685 return false;
3686 if (arg1 || arg2)
3687 return false;
3688 return true;
3689 }
3690
3691 case TARGET_EXPR:
3692 {
3693 tree o1 = TREE_OPERAND (t1, 0);
3694 tree o2 = TREE_OPERAND (t2, 0);
3695
3696 /* Special case: if either target is an unallocated VAR_DECL,
3697 it means that it's going to be unified with whatever the
3698 TARGET_EXPR is really supposed to initialize, so treat it
3699 as being equivalent to anything. */
3700 if (VAR_P (o1) && DECL_NAME (o1) == NULL_TREE
3701 && !DECL_RTL_SET_P (o1))
3702 /*Nop*/;
3703 else if (VAR_P (o2) && DECL_NAME (o2) == NULL_TREE
3704 && !DECL_RTL_SET_P (o2))
3705 /*Nop*/;
3706 else if (!cp_tree_equal (o1, o2))
3707 return false;
3708
3709 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3710 }
3711
3712 case PARM_DECL:
3713 /* For comparing uses of parameters in late-specified return types
3714 with an out-of-class definition of the function, but can also come
3715 up for expressions that involve 'this' in a member function
3716 template. */
3717
3718 if (comparing_specializations
3719 && DECL_CONTEXT (t1) != DECL_CONTEXT (t2))
3720 /* When comparing hash table entries, only an exact match is
3721 good enough; we don't want to replace 'this' with the
3722 version from another function. But be more flexible
3723 with parameters with identical contexts. */
3724 return false;
3725
3726 if (same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3727 {
3728 if (DECL_ARTIFICIAL (t1) ^ DECL_ARTIFICIAL (t2))
3729 return false;
3730 if (CONSTRAINT_VAR_P (t1) ^ CONSTRAINT_VAR_P (t2))
3731 return false;
3732 if (DECL_ARTIFICIAL (t1)
3733 || (DECL_PARM_LEVEL (t1) == DECL_PARM_LEVEL (t2)
3734 && DECL_PARM_INDEX (t1) == DECL_PARM_INDEX (t2)))
3735 return true;
3736 }
3737 return false;
3738
3739 case VAR_DECL:
3740 case CONST_DECL:
3741 case FIELD_DECL:
3742 case FUNCTION_DECL:
3743 case TEMPLATE_DECL:
3744 case IDENTIFIER_NODE:
3745 case SSA_NAME:
3746 case USING_DECL:
3747 case DEFERRED_PARSE:
3748 return false;
3749
3750 case BASELINK:
3751 return (BASELINK_BINFO (t1) == BASELINK_BINFO (t2)
3752 && BASELINK_ACCESS_BINFO (t1) == BASELINK_ACCESS_BINFO (t2)
3753 && BASELINK_QUALIFIED_P (t1) == BASELINK_QUALIFIED_P (t2)
3754 && cp_tree_equal (BASELINK_FUNCTIONS (t1),
3755 BASELINK_FUNCTIONS (t2)));
3756
3757 case TEMPLATE_PARM_INDEX:
3758 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
3759 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
3760 && (TEMPLATE_PARM_PARAMETER_PACK (t1)
3761 == TEMPLATE_PARM_PARAMETER_PACK (t2))
3762 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
3763 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
3764
3765 case TEMPLATE_ID_EXPR:
3766 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
3767 return false;
3768 if (!comp_template_args (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)))
3769 return false;
3770 return true;
3771
3772 case CONSTRAINT_INFO:
3773 return cp_tree_equal (CI_ASSOCIATED_CONSTRAINTS (t1),
3774 CI_ASSOCIATED_CONSTRAINTS (t2));
3775
3776 case CHECK_CONSTR:
3777 return (CHECK_CONSTR_CONCEPT (t1) == CHECK_CONSTR_CONCEPT (t2)
3778 && comp_template_args (CHECK_CONSTR_ARGS (t1),
3779 CHECK_CONSTR_ARGS (t2)));
3780
3781 case TREE_VEC:
3782 {
3783 unsigned ix;
3784 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3785 return false;
3786 for (ix = TREE_VEC_LENGTH (t1); ix--;)
3787 if (!cp_tree_equal (TREE_VEC_ELT (t1, ix),
3788 TREE_VEC_ELT (t2, ix)))
3789 return false;
3790 return true;
3791 }
3792
3793 case SIZEOF_EXPR:
3794 case ALIGNOF_EXPR:
3795 {
3796 tree o1 = TREE_OPERAND (t1, 0);
3797 tree o2 = TREE_OPERAND (t2, 0);
3798
3799 if (code1 == SIZEOF_EXPR)
3800 {
3801 if (SIZEOF_EXPR_TYPE_P (t1))
3802 o1 = TREE_TYPE (o1);
3803 if (SIZEOF_EXPR_TYPE_P (t2))
3804 o2 = TREE_TYPE (o2);
3805 }
3806
3807 if (TREE_CODE (o1) != TREE_CODE (o2))
3808 return false;
3809
3810 if (ARGUMENT_PACK_P (o1))
3811 return template_args_equal (o1, o2);
3812 else if (TYPE_P (o1))
3813 return same_type_p (o1, o2);
3814 else
3815 return cp_tree_equal (o1, o2);
3816 }
3817
3818 case MODOP_EXPR:
3819 {
3820 tree t1_op1, t2_op1;
3821
3822 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
3823 return false;
3824
3825 t1_op1 = TREE_OPERAND (t1, 1);
3826 t2_op1 = TREE_OPERAND (t2, 1);
3827 if (TREE_CODE (t1_op1) != TREE_CODE (t2_op1))
3828 return false;
3829
3830 return cp_tree_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t2, 2));
3831 }
3832
3833 case PTRMEM_CST:
3834 /* Two pointer-to-members are the same if they point to the same
3835 field or function in the same class. */
3836 if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
3837 return false;
3838
3839 return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
3840
3841 case OVERLOAD:
3842 {
3843 /* Two overloads. Must be exactly the same set of decls. */
3844 lkp_iterator first (t1);
3845 lkp_iterator second (t2);
3846
3847 for (; first && second; ++first, ++second)
3848 if (*first != *second)
3849 return false;
3850 return !(first || second);
3851 }
3852
3853 case TRAIT_EXPR:
3854 if (TRAIT_EXPR_KIND (t1) != TRAIT_EXPR_KIND (t2))
3855 return false;
3856 return same_type_p (TRAIT_EXPR_TYPE1 (t1), TRAIT_EXPR_TYPE1 (t2))
3857 && cp_tree_equal (TRAIT_EXPR_TYPE2 (t1), TRAIT_EXPR_TYPE2 (t2));
3858
3859 case CAST_EXPR:
3860 case STATIC_CAST_EXPR:
3861 case REINTERPRET_CAST_EXPR:
3862 case CONST_CAST_EXPR:
3863 case DYNAMIC_CAST_EXPR:
3864 case IMPLICIT_CONV_EXPR:
3865 case NEW_EXPR:
3866 CASE_CONVERT:
3867 case NON_LVALUE_EXPR:
3868 case VIEW_CONVERT_EXPR:
3869 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3870 return false;
3871 /* Now compare operands as usual. */
3872 break;
3873
3874 case DEFERRED_NOEXCEPT:
3875 return (cp_tree_equal (DEFERRED_NOEXCEPT_PATTERN (t1),
3876 DEFERRED_NOEXCEPT_PATTERN (t2))
3877 && comp_template_args (DEFERRED_NOEXCEPT_ARGS (t1),
3878 DEFERRED_NOEXCEPT_ARGS (t2)));
3879
3880 case LAMBDA_EXPR:
3881 /* Two lambda-expressions are never considered equivalent. */
3882 return false;
3883
3884 case TYPE_ARGUMENT_PACK:
3885 case NONTYPE_ARGUMENT_PACK:
3886 {
3887 tree p1 = ARGUMENT_PACK_ARGS (t1);
3888 tree p2 = ARGUMENT_PACK_ARGS (t2);
3889 int len = TREE_VEC_LENGTH (p1);
3890 if (TREE_VEC_LENGTH (p2) != len)
3891 return false;
3892
3893 for (int ix = 0; ix != len; ix++)
3894 if (!template_args_equal (TREE_VEC_ELT (p1, ix),
3895 TREE_VEC_ELT (p2, ix)))
3896 return false;
3897 return true;
3898 }
3899
3900 case EXPR_PACK_EXPANSION:
3901 if (!cp_tree_equal (PACK_EXPANSION_PATTERN (t1),
3902 PACK_EXPANSION_PATTERN (t2)))
3903 return false;
3904 if (!comp_template_args (PACK_EXPANSION_EXTRA_ARGS (t1),
3905 PACK_EXPANSION_EXTRA_ARGS (t2)))
3906 return false;
3907 return true;
3908
3909 default:
3910 break;
3911 }
3912
3913 switch (TREE_CODE_CLASS (code1))
3914 {
3915 case tcc_unary:
3916 case tcc_binary:
3917 case tcc_comparison:
3918 case tcc_expression:
3919 case tcc_vl_exp:
3920 case tcc_reference:
3921 case tcc_statement:
3922 {
3923 int n = cp_tree_operand_length (t1);
3924 if (TREE_CODE_CLASS (code1) == tcc_vl_exp
3925 && n != TREE_OPERAND_LENGTH (t2))
3926 return false;
3927
3928 for (int i = 0; i < n; ++i)
3929 if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
3930 return false;
3931
3932 return true;
3933 }
3934
3935 case tcc_type:
3936 return same_type_p (t1, t2);
3937
3938 default:
3939 gcc_unreachable ();
3940 }
3941
3942 /* We can get here with --disable-checking. */
3943 return false;
3944 }
3945
3946 /* The type of ARG when used as an lvalue. */
3947
3948 tree
3949 lvalue_type (tree arg)
3950 {
3951 tree type = TREE_TYPE (arg);
3952 return type;
3953 }
3954
3955 /* The type of ARG for printing error messages; denote lvalues with
3956 reference types. */
3957
3958 tree
3959 error_type (tree arg)
3960 {
3961 tree type = TREE_TYPE (arg);
3962
3963 if (TREE_CODE (type) == ARRAY_TYPE)
3964 ;
3965 else if (TREE_CODE (type) == ERROR_MARK)
3966 ;
3967 else if (lvalue_p (arg))
3968 type = build_reference_type (lvalue_type (arg));
3969 else if (MAYBE_CLASS_TYPE_P (type))
3970 type = lvalue_type (arg);
3971
3972 return type;
3973 }
3974
3975 /* Does FUNCTION use a variable-length argument list? */
3976
3977 int
3978 varargs_function_p (const_tree function)
3979 {
3980 return stdarg_p (TREE_TYPE (function));
3981 }
3982
3983 /* Returns 1 if decl is a member of a class. */
3984
3985 int
3986 member_p (const_tree decl)
3987 {
3988 const_tree const ctx = DECL_CONTEXT (decl);
3989 return (ctx && TYPE_P (ctx));
3990 }
3991
3992 /* Create a placeholder for member access where we don't actually have an
3993 object that the access is against. */
3994
3995 tree
3996 build_dummy_object (tree type)
3997 {
3998 tree decl = build1 (CONVERT_EXPR, build_pointer_type (type), void_node);
3999 return cp_build_fold_indirect_ref (decl);
4000 }
4001
4002 /* We've gotten a reference to a member of TYPE. Return *this if appropriate,
4003 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
4004 binfo path from current_class_type to TYPE, or 0. */
4005
4006 tree
4007 maybe_dummy_object (tree type, tree* binfop)
4008 {
4009 tree decl, context;
4010 tree binfo;
4011 tree current = current_nonlambda_class_type ();
4012
4013 if (current
4014 && (binfo = lookup_base (current, type, ba_any, NULL,
4015 tf_warning_or_error)))
4016 context = current;
4017 else
4018 {
4019 /* Reference from a nested class member function. */
4020 context = type;
4021 binfo = TYPE_BINFO (type);
4022 }
4023
4024 if (binfop)
4025 *binfop = binfo;
4026
4027 if (current_class_ref
4028 /* current_class_ref might not correspond to current_class_type if
4029 we're in tsubst_default_argument or a lambda-declarator; in either
4030 case, we want to use current_class_ref if it matches CONTEXT. */
4031 && (same_type_ignoring_top_level_qualifiers_p
4032 (TREE_TYPE (current_class_ref), context)))
4033 decl = current_class_ref;
4034 else
4035 decl = build_dummy_object (context);
4036
4037 return decl;
4038 }
4039
4040 /* Returns 1 if OB is a placeholder object, or a pointer to one. */
4041
4042 bool
4043 is_dummy_object (const_tree ob)
4044 {
4045 if (INDIRECT_REF_P (ob))
4046 ob = TREE_OPERAND (ob, 0);
4047 return (TREE_CODE (ob) == CONVERT_EXPR
4048 && TREE_OPERAND (ob, 0) == void_node);
4049 }
4050
4051 /* Returns true if TYPE is a character type or std::byte. */
4052
4053 bool
4054 is_byte_access_type (tree type)
4055 {
4056 type = TYPE_MAIN_VARIANT (type);
4057 if (char_type_p (type))
4058 return true;
4059
4060 return (TREE_CODE (type) == ENUMERAL_TYPE
4061 && TYPE_CONTEXT (type) == std_node
4062 && !strcmp ("byte", TYPE_NAME_STRING (type)));
4063 }
4064
4065 /* Returns 1 iff type T is something we want to treat as a scalar type for
4066 the purpose of deciding whether it is trivial/POD/standard-layout. */
4067
4068 bool
4069 scalarish_type_p (const_tree t)
4070 {
4071 if (t == error_mark_node)
4072 return 1;
4073
4074 return (SCALAR_TYPE_P (t) || VECTOR_TYPE_P (t));
4075 }
4076
4077 /* Returns true iff T requires non-trivial default initialization. */
4078
4079 bool
4080 type_has_nontrivial_default_init (const_tree t)
4081 {
4082 t = strip_array_types (CONST_CAST_TREE (t));
4083
4084 if (CLASS_TYPE_P (t))
4085 return TYPE_HAS_COMPLEX_DFLT (t);
4086 else
4087 return 0;
4088 }
4089
4090 /* Track classes with only deleted copy/move constructors so that we can warn
4091 if they are used in call/return by value. */
4092
4093 static GTY(()) hash_set<tree>* deleted_copy_types;
4094 static void
4095 remember_deleted_copy (const_tree t)
4096 {
4097 if (!deleted_copy_types)
4098 deleted_copy_types = hash_set<tree>::create_ggc(37);
4099 deleted_copy_types->add (CONST_CAST_TREE (t));
4100 }
4101 void
4102 maybe_warn_parm_abi (tree t, location_t loc)
4103 {
4104 if (!deleted_copy_types
4105 || !deleted_copy_types->contains (t))
4106 return;
4107
4108 if ((flag_abi_version == 12 || warn_abi_version == 12)
4109 && classtype_has_non_deleted_move_ctor (t))
4110 {
4111 bool w;
4112 auto_diagnostic_group d;
4113 if (flag_abi_version > 12)
4114 w = warning_at (loc, OPT_Wabi, "%<-fabi-version=13%> (GCC 8.2) fixes "
4115 "the calling convention for %qT, which was "
4116 "accidentally changed in 8.1", t);
4117 else
4118 w = warning_at (loc, OPT_Wabi, "%<-fabi-version=12%> (GCC 8.1) accident"
4119 "ally changes the calling convention for %qT", t);
4120 if (w)
4121 inform (location_of (t), " declared here");
4122 return;
4123 }
4124
4125 auto_diagnostic_group d;
4126 if (warning_at (loc, OPT_Wabi, "the calling convention for %qT changes in "
4127 "%<-fabi-version=13%> (GCC 8.2)", t))
4128 inform (location_of (t), " because all of its copy and move "
4129 "constructors are deleted");
4130 }
4131
4132 /* Returns true iff copying an object of type T (including via move
4133 constructor) is non-trivial. That is, T has no non-trivial copy
4134 constructors and no non-trivial move constructors, and not all copy/move
4135 constructors are deleted. This function implements the ABI notion of
4136 non-trivial copy, which has diverged from the one in the standard. */
4137
4138 bool
4139 type_has_nontrivial_copy_init (const_tree type)
4140 {
4141 tree t = strip_array_types (CONST_CAST_TREE (type));
4142
4143 if (CLASS_TYPE_P (t))
4144 {
4145 gcc_assert (COMPLETE_TYPE_P (t));
4146
4147 if (TYPE_HAS_COMPLEX_COPY_CTOR (t)
4148 || TYPE_HAS_COMPLEX_MOVE_CTOR (t))
4149 /* Nontrivial. */
4150 return true;
4151
4152 if (cxx_dialect < cxx11)
4153 /* No deleted functions before C++11. */
4154 return false;
4155
4156 /* Before ABI v12 we did a bitwise copy of types with only deleted
4157 copy/move constructors. */
4158 if (!abi_version_at_least (12)
4159 && !(warn_abi && abi_version_crosses (12)))
4160 return false;
4161
4162 bool saw_copy = false;
4163 bool saw_non_deleted = false;
4164 bool saw_non_deleted_move = false;
4165
4166 if (CLASSTYPE_LAZY_MOVE_CTOR (t))
4167 saw_copy = saw_non_deleted = true;
4168 else if (CLASSTYPE_LAZY_COPY_CTOR (t))
4169 {
4170 saw_copy = true;
4171 if (classtype_has_move_assign_or_move_ctor_p (t, true))
4172 /* [class.copy]/8 If the class definition declares a move
4173 constructor or move assignment operator, the implicitly declared
4174 copy constructor is defined as deleted.... */;
4175 else
4176 /* Any other reason the implicitly-declared function would be
4177 deleted would also cause TYPE_HAS_COMPLEX_COPY_CTOR to be
4178 set. */
4179 saw_non_deleted = true;
4180 }
4181
4182 if (!saw_non_deleted)
4183 for (ovl_iterator iter (CLASSTYPE_CONSTRUCTORS (t)); iter; ++iter)
4184 {
4185 tree fn = *iter;
4186 if (copy_fn_p (fn))
4187 {
4188 saw_copy = true;
4189 if (!DECL_DELETED_FN (fn))
4190 {
4191 /* Not deleted, therefore trivial. */
4192 saw_non_deleted = true;
4193 break;
4194 }
4195 }
4196 else if (move_fn_p (fn))
4197 if (!DECL_DELETED_FN (fn))
4198 saw_non_deleted_move = true;
4199 }
4200
4201 gcc_assert (saw_copy);
4202
4203 /* ABI v12 buggily ignored move constructors. */
4204 bool v11nontriv = false;
4205 bool v12nontriv = !saw_non_deleted;
4206 bool v13nontriv = !saw_non_deleted && !saw_non_deleted_move;
4207 bool nontriv = (abi_version_at_least (13) ? v13nontriv
4208 : flag_abi_version == 12 ? v12nontriv
4209 : v11nontriv);
4210 bool warn_nontriv = (warn_abi_version >= 13 ? v13nontriv
4211 : warn_abi_version == 12 ? v12nontriv
4212 : v11nontriv);
4213 if (nontriv != warn_nontriv)
4214 remember_deleted_copy (t);
4215
4216 return nontriv;
4217 }
4218 else
4219 return 0;
4220 }
4221
4222 /* Returns 1 iff type T is a trivially copyable type, as defined in
4223 [basic.types] and [class]. */
4224
4225 bool
4226 trivially_copyable_p (const_tree t)
4227 {
4228 t = strip_array_types (CONST_CAST_TREE (t));
4229
4230 if (CLASS_TYPE_P (t))
4231 return ((!TYPE_HAS_COPY_CTOR (t)
4232 || !TYPE_HAS_COMPLEX_COPY_CTOR (t))
4233 && !TYPE_HAS_COMPLEX_MOVE_CTOR (t)
4234 && (!TYPE_HAS_COPY_ASSIGN (t)
4235 || !TYPE_HAS_COMPLEX_COPY_ASSIGN (t))
4236 && !TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
4237 && TYPE_HAS_TRIVIAL_DESTRUCTOR (t));
4238 else
4239 /* CWG 2094 makes volatile-qualified scalars trivially copyable again. */
4240 return scalarish_type_p (t);
4241 }
4242
4243 /* Returns 1 iff type T is a trivial type, as defined in [basic.types] and
4244 [class]. */
4245
4246 bool
4247 trivial_type_p (const_tree t)
4248 {
4249 t = strip_array_types (CONST_CAST_TREE (t));
4250
4251 if (CLASS_TYPE_P (t))
4252 return (TYPE_HAS_TRIVIAL_DFLT (t)
4253 && trivially_copyable_p (t));
4254 else
4255 return scalarish_type_p (t);
4256 }
4257
4258 /* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
4259
4260 bool
4261 pod_type_p (const_tree t)
4262 {
4263 /* This CONST_CAST is okay because strip_array_types returns its
4264 argument unmodified and we assign it to a const_tree. */
4265 t = strip_array_types (CONST_CAST_TREE(t));
4266
4267 if (!CLASS_TYPE_P (t))
4268 return scalarish_type_p (t);
4269 else if (cxx_dialect > cxx98)
4270 /* [class]/10: A POD struct is a class that is both a trivial class and a
4271 standard-layout class, and has no non-static data members of type
4272 non-POD struct, non-POD union (or array of such types).
4273
4274 We don't need to check individual members because if a member is
4275 non-std-layout or non-trivial, the class will be too. */
4276 return (std_layout_type_p (t) && trivial_type_p (t));
4277 else
4278 /* The C++98 definition of POD is different. */
4279 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
4280 }
4281
4282 /* Returns true iff T is POD for the purpose of layout, as defined in the
4283 C++ ABI. */
4284
4285 bool
4286 layout_pod_type_p (const_tree t)
4287 {
4288 t = strip_array_types (CONST_CAST_TREE (t));
4289
4290 if (CLASS_TYPE_P (t))
4291 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
4292 else
4293 return scalarish_type_p (t);
4294 }
4295
4296 /* Returns true iff T is a standard-layout type, as defined in
4297 [basic.types]. */
4298
4299 bool
4300 std_layout_type_p (const_tree t)
4301 {
4302 t = strip_array_types (CONST_CAST_TREE (t));
4303
4304 if (CLASS_TYPE_P (t))
4305 return !CLASSTYPE_NON_STD_LAYOUT (t);
4306 else
4307 return scalarish_type_p (t);
4308 }
4309
4310 static bool record_has_unique_obj_representations (const_tree, const_tree);
4311
4312 /* Returns true iff T satisfies std::has_unique_object_representations<T>,
4313 as defined in [meta.unary.prop]. */
4314
4315 bool
4316 type_has_unique_obj_representations (const_tree t)
4317 {
4318 bool ret;
4319
4320 t = strip_array_types (CONST_CAST_TREE (t));
4321
4322 if (!trivially_copyable_p (t))
4323 return false;
4324
4325 if (CLASS_TYPE_P (t) && CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t))
4326 return CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t);
4327
4328 switch (TREE_CODE (t))
4329 {
4330 case INTEGER_TYPE:
4331 case POINTER_TYPE:
4332 case REFERENCE_TYPE:
4333 /* If some backend has any paddings in these types, we should add
4334 a target hook for this and handle it there. */
4335 return true;
4336
4337 case BOOLEAN_TYPE:
4338 /* For bool values other than 0 and 1 should only appear with
4339 undefined behavior. */
4340 return true;
4341
4342 case ENUMERAL_TYPE:
4343 return type_has_unique_obj_representations (ENUM_UNDERLYING_TYPE (t));
4344
4345 case REAL_TYPE:
4346 /* XFmode certainly contains padding on x86, which the CPU doesn't store
4347 when storing long double values, so for that we have to return false.
4348 Other kinds of floating point values are questionable due to +.0/-.0
4349 and NaNs, let's play safe for now. */
4350 return false;
4351
4352 case FIXED_POINT_TYPE:
4353 return false;
4354
4355 case OFFSET_TYPE:
4356 return true;
4357
4358 case COMPLEX_TYPE:
4359 case VECTOR_TYPE:
4360 return type_has_unique_obj_representations (TREE_TYPE (t));
4361
4362 case RECORD_TYPE:
4363 ret = record_has_unique_obj_representations (t, TYPE_SIZE (t));
4364 if (CLASS_TYPE_P (t))
4365 {
4366 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t) = 1;
4367 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t) = ret;
4368 }
4369 return ret;
4370
4371 case UNION_TYPE:
4372 ret = true;
4373 bool any_fields;
4374 any_fields = false;
4375 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4376 if (TREE_CODE (field) == FIELD_DECL)
4377 {
4378 any_fields = true;
4379 if (!type_has_unique_obj_representations (TREE_TYPE (field))
4380 || simple_cst_equal (DECL_SIZE (field), TYPE_SIZE (t)) != 1)
4381 {
4382 ret = false;
4383 break;
4384 }
4385 }
4386 if (!any_fields && !integer_zerop (TYPE_SIZE (t)))
4387 ret = false;
4388 if (CLASS_TYPE_P (t))
4389 {
4390 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t) = 1;
4391 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t) = ret;
4392 }
4393 return ret;
4394
4395 case NULLPTR_TYPE:
4396 return false;
4397
4398 case ERROR_MARK:
4399 return false;
4400
4401 default:
4402 gcc_unreachable ();
4403 }
4404 }
4405
4406 /* Helper function for type_has_unique_obj_representations. */
4407
4408 static bool
4409 record_has_unique_obj_representations (const_tree t, const_tree sz)
4410 {
4411 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4412 if (TREE_CODE (field) != FIELD_DECL)
4413 ;
4414 /* For bases, can't use type_has_unique_obj_representations here, as in
4415 struct S { int i : 24; S (); };
4416 struct T : public S { int j : 8; T (); };
4417 S doesn't have unique obj representations, but T does. */
4418 else if (DECL_FIELD_IS_BASE (field))
4419 {
4420 if (!record_has_unique_obj_representations (TREE_TYPE (field),
4421 DECL_SIZE (field)))
4422 return false;
4423 }
4424 else if (DECL_C_BIT_FIELD (field))
4425 {
4426 tree btype = DECL_BIT_FIELD_TYPE (field);
4427 if (!type_has_unique_obj_representations (btype))
4428 return false;
4429 }
4430 else if (!type_has_unique_obj_representations (TREE_TYPE (field)))
4431 return false;
4432
4433 offset_int cur = 0;
4434 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4435 if (TREE_CODE (field) == FIELD_DECL)
4436 {
4437 offset_int fld = wi::to_offset (DECL_FIELD_OFFSET (field));
4438 offset_int bitpos = wi::to_offset (DECL_FIELD_BIT_OFFSET (field));
4439 fld = fld * BITS_PER_UNIT + bitpos;
4440 if (cur != fld)
4441 return false;
4442 if (DECL_SIZE (field))
4443 {
4444 offset_int size = wi::to_offset (DECL_SIZE (field));
4445 cur += size;
4446 }
4447 }
4448 if (cur != wi::to_offset (sz))
4449 return false;
4450
4451 return true;
4452 }
4453
4454 /* Nonzero iff type T is a class template implicit specialization. */
4455
4456 bool
4457 class_tmpl_impl_spec_p (const_tree t)
4458 {
4459 return CLASS_TYPE_P (t) && CLASSTYPE_TEMPLATE_INSTANTIATION (t);
4460 }
4461
4462 /* Returns 1 iff zero initialization of type T means actually storing
4463 zeros in it. */
4464
4465 int
4466 zero_init_p (const_tree t)
4467 {
4468 /* This CONST_CAST is okay because strip_array_types returns its
4469 argument unmodified and we assign it to a const_tree. */
4470 t = strip_array_types (CONST_CAST_TREE(t));
4471
4472 if (t == error_mark_node)
4473 return 1;
4474
4475 /* NULL pointers to data members are initialized with -1. */
4476 if (TYPE_PTRDATAMEM_P (t))
4477 return 0;
4478
4479 /* Classes that contain types that can't be zero-initialized, cannot
4480 be zero-initialized themselves. */
4481 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
4482 return 0;
4483
4484 return 1;
4485 }
4486
4487 /* Returns true if the expression or initializer T is the result of
4488 zero-initialization for its type, taking pointers to members
4489 into consideration. */
4490
4491 bool
4492 zero_init_expr_p (tree t)
4493 {
4494 tree type = TREE_TYPE (t);
4495 if (!type || uses_template_parms (type))
4496 return false;
4497 if (zero_init_p (type))
4498 return initializer_zerop (t);
4499 if (TYPE_PTRMEM_P (type))
4500 return null_member_pointer_value_p (t);
4501 if (TREE_CODE (t) == CONSTRUCTOR
4502 && CP_AGGREGATE_TYPE_P (type))
4503 {
4504 tree elt_init;
4505 unsigned HOST_WIDE_INT i;
4506 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, elt_init)
4507 if (!zero_init_expr_p (elt_init))
4508 return false;
4509 return true;
4510 }
4511 return false;
4512 }
4513
4514 /* True IFF T is a C++20 structural type (P1907R1) that can be used as a
4515 non-type template parameter. If EXPLAIN, explain why not. */
4516
4517 bool
4518 structural_type_p (tree t, bool explain)
4519 {
4520 /* A structural type is one of the following: */
4521
4522 /* a scalar type, or */
4523 if (SCALAR_TYPE_P (t))
4524 return true;
4525 /* an lvalue reference type, or */
4526 if (TYPE_REF_P (t) && !TYPE_REF_IS_RVALUE (t))
4527 return true;
4528 /* a literal class type with the following properties:
4529 - all base classes and non-static data members are public and non-mutable
4530 and
4531 - the types of all bases classes and non-static data members are
4532 structural types or (possibly multi-dimensional) array thereof. */
4533 if (!CLASS_TYPE_P (t))
4534 return false;
4535 if (!literal_type_p (t))
4536 {
4537 if (explain)
4538 explain_non_literal_class (t);
4539 return false;
4540 }
4541 for (tree m = next_initializable_field (TYPE_FIELDS (t)); m;
4542 m = next_initializable_field (DECL_CHAIN (m)))
4543 {
4544 if (TREE_PRIVATE (m) || TREE_PROTECTED (m))
4545 {
4546 if (explain)
4547 {
4548 if (DECL_FIELD_IS_BASE (m))
4549 inform (location_of (m), "base class %qT is not public",
4550 TREE_TYPE (m));
4551 else
4552 inform (location_of (m), "%qD is not public", m);
4553 }
4554 return false;
4555 }
4556 if (DECL_MUTABLE_P (m))
4557 {
4558 if (explain)
4559 inform (location_of (m), "%qD is mutable", m);
4560 return false;
4561 }
4562 tree mtype = strip_array_types (TREE_TYPE (m));
4563 if (!structural_type_p (mtype))
4564 {
4565 if (explain)
4566 {
4567 inform (location_of (m), "%qD has a non-structural type", m);
4568 structural_type_p (mtype, true);
4569 }
4570 return false;
4571 }
4572 }
4573 return true;
4574 }
4575
4576 /* Handle the C++17 [[nodiscard]] attribute, which is similar to the GNU
4577 warn_unused_result attribute. */
4578
4579 static tree
4580 handle_nodiscard_attribute (tree *node, tree name, tree args,
4581 int /*flags*/, bool *no_add_attrs)
4582 {
4583 if (args && TREE_CODE (TREE_VALUE (args)) != STRING_CST)
4584 {
4585 error ("%qE attribute argument must be a string constant", name);
4586 *no_add_attrs = true;
4587 }
4588 if (TREE_CODE (*node) == FUNCTION_DECL)
4589 {
4590 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (*node)))
4591 && !DECL_CONSTRUCTOR_P (*node))
4592 warning_at (DECL_SOURCE_LOCATION (*node),
4593 OPT_Wattributes, "%qE attribute applied to %qD with void "
4594 "return type", name, *node);
4595 }
4596 else if (OVERLOAD_TYPE_P (*node))
4597 /* OK */;
4598 else
4599 {
4600 warning (OPT_Wattributes, "%qE attribute can only be applied to "
4601 "functions or to class or enumeration types", name);
4602 *no_add_attrs = true;
4603 }
4604 return NULL_TREE;
4605 }
4606
4607 /* Handle a C++20 "no_unique_address" attribute; arguments as in
4608 struct attribute_spec.handler. */
4609 static tree
4610 handle_no_unique_addr_attribute (tree* node,
4611 tree name,
4612 tree /*args*/,
4613 int /*flags*/,
4614 bool* no_add_attrs)
4615 {
4616 if (TREE_CODE (*node) != FIELD_DECL)
4617 {
4618 warning (OPT_Wattributes, "%qE attribute can only be applied to "
4619 "non-static data members", name);
4620 *no_add_attrs = true;
4621 }
4622 else if (DECL_C_BIT_FIELD (*node))
4623 {
4624 warning (OPT_Wattributes, "%qE attribute cannot be applied to "
4625 "a bit-field", name);
4626 *no_add_attrs = true;
4627 }
4628
4629 return NULL_TREE;
4630 }
4631
4632 /* The C++20 [[likely]] and [[unlikely]] attributes on labels map to the GNU
4633 hot/cold attributes. */
4634
4635 static tree
4636 handle_likeliness_attribute (tree *node, tree name, tree args,
4637 int flags, bool *no_add_attrs)
4638 {
4639 *no_add_attrs = true;
4640 if (TREE_CODE (*node) == LABEL_DECL
4641 || TREE_CODE (*node) == FUNCTION_DECL)
4642 {
4643 if (args)
4644 warning (OPT_Wattributes, "%qE attribute takes no arguments", name);
4645 tree bname = (is_attribute_p ("likely", name)
4646 ? get_identifier ("hot") : get_identifier ("cold"));
4647 if (TREE_CODE (*node) == FUNCTION_DECL)
4648 warning (OPT_Wattributes, "ISO C++ %qE attribute does not apply to "
4649 "functions; treating as %<[[gnu::%E]]%>", name, bname);
4650 tree battr = build_tree_list (bname, NULL_TREE);
4651 decl_attributes (node, battr, flags);
4652 return NULL_TREE;
4653 }
4654 else
4655 return error_mark_node;
4656 }
4657
4658 /* Table of valid C++ attributes. */
4659 const struct attribute_spec cxx_attribute_table[] =
4660 {
4661 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
4662 affects_type_identity, handler, exclude } */
4663 { "init_priority", 1, 1, true, false, false, false,
4664 handle_init_priority_attribute, NULL },
4665 { "abi_tag", 1, -1, false, false, false, true,
4666 handle_abi_tag_attribute, NULL },
4667 { NULL, 0, 0, false, false, false, false, NULL, NULL }
4668 };
4669
4670 /* Table of C++ standard attributes. */
4671 const struct attribute_spec std_attribute_table[] =
4672 {
4673 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
4674 affects_type_identity, handler, exclude } */
4675 { "maybe_unused", 0, 0, false, false, false, false,
4676 handle_unused_attribute, NULL },
4677 { "nodiscard", 0, 1, false, false, false, false,
4678 handle_nodiscard_attribute, NULL },
4679 { "no_unique_address", 0, 0, true, false, false, false,
4680 handle_no_unique_addr_attribute, NULL },
4681 { "likely", 0, 0, false, false, false, false,
4682 handle_likeliness_attribute, attr_cold_hot_exclusions },
4683 { "unlikely", 0, 0, false, false, false, false,
4684 handle_likeliness_attribute, attr_cold_hot_exclusions },
4685 { "noreturn", 0, 0, true, false, false, false,
4686 handle_noreturn_attribute, attr_noreturn_exclusions },
4687 { NULL, 0, 0, false, false, false, false, NULL, NULL }
4688 };
4689
4690 /* Handle an "init_priority" attribute; arguments as in
4691 struct attribute_spec.handler. */
4692 static tree
4693 handle_init_priority_attribute (tree* node,
4694 tree name,
4695 tree args,
4696 int /*flags*/,
4697 bool* no_add_attrs)
4698 {
4699 tree initp_expr = TREE_VALUE (args);
4700 tree decl = *node;
4701 tree type = TREE_TYPE (decl);
4702 int pri;
4703
4704 STRIP_NOPS (initp_expr);
4705 initp_expr = default_conversion (initp_expr);
4706 if (initp_expr)
4707 initp_expr = maybe_constant_value (initp_expr);
4708
4709 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
4710 {
4711 error ("requested %<init_priority%> is not an integer constant");
4712 cxx_constant_value (initp_expr);
4713 *no_add_attrs = true;
4714 return NULL_TREE;
4715 }
4716
4717 pri = TREE_INT_CST_LOW (initp_expr);
4718
4719 type = strip_array_types (type);
4720
4721 if (decl == NULL_TREE
4722 || !VAR_P (decl)
4723 || !TREE_STATIC (decl)
4724 || DECL_EXTERNAL (decl)
4725 || (TREE_CODE (type) != RECORD_TYPE
4726 && TREE_CODE (type) != UNION_TYPE)
4727 /* Static objects in functions are initialized the
4728 first time control passes through that
4729 function. This is not precise enough to pin down an
4730 init_priority value, so don't allow it. */
4731 || current_function_decl)
4732 {
4733 error ("can only use %qE attribute on file-scope definitions "
4734 "of objects of class type", name);
4735 *no_add_attrs = true;
4736 return NULL_TREE;
4737 }
4738
4739 if (pri > MAX_INIT_PRIORITY || pri <= 0)
4740 {
4741 error ("requested %<init_priority%> %i is out of range [0, %i]",
4742 pri, MAX_INIT_PRIORITY);
4743 *no_add_attrs = true;
4744 return NULL_TREE;
4745 }
4746
4747 /* Check for init_priorities that are reserved for
4748 language and runtime support implementations.*/
4749 if (pri <= MAX_RESERVED_INIT_PRIORITY)
4750 {
4751 warning
4752 (0, "requested %<init_priority%> %i is reserved for internal use",
4753 pri);
4754 }
4755
4756 if (SUPPORTS_INIT_PRIORITY)
4757 {
4758 SET_DECL_INIT_PRIORITY (decl, pri);
4759 DECL_HAS_INIT_PRIORITY_P (decl) = 1;
4760 return NULL_TREE;
4761 }
4762 else
4763 {
4764 error ("%qE attribute is not supported on this platform", name);
4765 *no_add_attrs = true;
4766 return NULL_TREE;
4767 }
4768 }
4769
4770 /* DECL is being redeclared; the old declaration had the abi tags in OLD,
4771 and the new one has the tags in NEW_. Give an error if there are tags
4772 in NEW_ that weren't in OLD. */
4773
4774 bool
4775 check_abi_tag_redeclaration (const_tree decl, const_tree old, const_tree new_)
4776 {
4777 if (old && TREE_CODE (TREE_VALUE (old)) == TREE_LIST)
4778 old = TREE_VALUE (old);
4779 if (new_ && TREE_CODE (TREE_VALUE (new_)) == TREE_LIST)
4780 new_ = TREE_VALUE (new_);
4781 bool err = false;
4782 for (const_tree t = new_; t; t = TREE_CHAIN (t))
4783 {
4784 tree str = TREE_VALUE (t);
4785 for (const_tree in = old; in; in = TREE_CHAIN (in))
4786 {
4787 tree ostr = TREE_VALUE (in);
4788 if (cp_tree_equal (str, ostr))
4789 goto found;
4790 }
4791 error ("redeclaration of %qD adds abi tag %qE", decl, str);
4792 err = true;
4793 found:;
4794 }
4795 if (err)
4796 {
4797 inform (DECL_SOURCE_LOCATION (decl), "previous declaration here");
4798 return false;
4799 }
4800 return true;
4801 }
4802
4803 /* The abi_tag attribute with the name NAME was given ARGS. If they are
4804 ill-formed, give an error and return false; otherwise, return true. */
4805
4806 bool
4807 check_abi_tag_args (tree args, tree name)
4808 {
4809 if (!args)
4810 {
4811 error ("the %qE attribute requires arguments", name);
4812 return false;
4813 }
4814 for (tree arg = args; arg; arg = TREE_CHAIN (arg))
4815 {
4816 tree elt = TREE_VALUE (arg);
4817 if (TREE_CODE (elt) != STRING_CST
4818 || (!same_type_ignoring_top_level_qualifiers_p
4819 (strip_array_types (TREE_TYPE (elt)),
4820 char_type_node)))
4821 {
4822 error ("arguments to the %qE attribute must be narrow string "
4823 "literals", name);
4824 return false;
4825 }
4826 const char *begin = TREE_STRING_POINTER (elt);
4827 const char *end = begin + TREE_STRING_LENGTH (elt);
4828 for (const char *p = begin; p != end; ++p)
4829 {
4830 char c = *p;
4831 if (p == begin)
4832 {
4833 if (!ISALPHA (c) && c != '_')
4834 {
4835 error ("arguments to the %qE attribute must contain valid "
4836 "identifiers", name);
4837 inform (input_location, "%<%c%> is not a valid first "
4838 "character for an identifier", c);
4839 return false;
4840 }
4841 }
4842 else if (p == end - 1)
4843 gcc_assert (c == 0);
4844 else
4845 {
4846 if (!ISALNUM (c) && c != '_')
4847 {
4848 error ("arguments to the %qE attribute must contain valid "
4849 "identifiers", name);
4850 inform (input_location, "%<%c%> is not a valid character "
4851 "in an identifier", c);
4852 return false;
4853 }
4854 }
4855 }
4856 }
4857 return true;
4858 }
4859
4860 /* Handle an "abi_tag" attribute; arguments as in
4861 struct attribute_spec.handler. */
4862
4863 static tree
4864 handle_abi_tag_attribute (tree* node, tree name, tree args,
4865 int flags, bool* no_add_attrs)
4866 {
4867 if (!check_abi_tag_args (args, name))
4868 goto fail;
4869
4870 if (TYPE_P (*node))
4871 {
4872 if (!OVERLOAD_TYPE_P (*node))
4873 {
4874 error ("%qE attribute applied to non-class, non-enum type %qT",
4875 name, *node);
4876 goto fail;
4877 }
4878 else if (!(flags & (int)ATTR_FLAG_TYPE_IN_PLACE))
4879 {
4880 error ("%qE attribute applied to %qT after its definition",
4881 name, *node);
4882 goto fail;
4883 }
4884 else if (CLASS_TYPE_P (*node)
4885 && CLASSTYPE_TEMPLATE_INSTANTIATION (*node))
4886 {
4887 warning (OPT_Wattributes, "ignoring %qE attribute applied to "
4888 "template instantiation %qT", name, *node);
4889 goto fail;
4890 }
4891 else if (CLASS_TYPE_P (*node)
4892 && CLASSTYPE_TEMPLATE_SPECIALIZATION (*node))
4893 {
4894 warning (OPT_Wattributes, "ignoring %qE attribute applied to "
4895 "template specialization %qT", name, *node);
4896 goto fail;
4897 }
4898
4899 tree attributes = TYPE_ATTRIBUTES (*node);
4900 tree decl = TYPE_NAME (*node);
4901
4902 /* Make sure all declarations have the same abi tags. */
4903 if (DECL_SOURCE_LOCATION (decl) != input_location)
4904 {
4905 if (!check_abi_tag_redeclaration (decl,
4906 lookup_attribute ("abi_tag",
4907 attributes),
4908 args))
4909 goto fail;
4910 }
4911 }
4912 else
4913 {
4914 if (!VAR_OR_FUNCTION_DECL_P (*node))
4915 {
4916 error ("%qE attribute applied to non-function, non-variable %qD",
4917 name, *node);
4918 goto fail;
4919 }
4920 else if (DECL_LANGUAGE (*node) == lang_c)
4921 {
4922 error ("%qE attribute applied to extern \"C\" declaration %qD",
4923 name, *node);
4924 goto fail;
4925 }
4926 }
4927
4928 return NULL_TREE;
4929
4930 fail:
4931 *no_add_attrs = true;
4932 return NULL_TREE;
4933 }
4934
4935 /* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
4936 thing pointed to by the constant. */
4937
4938 tree
4939 make_ptrmem_cst (tree type, tree member)
4940 {
4941 tree ptrmem_cst = make_node (PTRMEM_CST);
4942 TREE_TYPE (ptrmem_cst) = type;
4943 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
4944 return ptrmem_cst;
4945 }
4946
4947 /* Build a variant of TYPE that has the indicated ATTRIBUTES. May
4948 return an existing type if an appropriate type already exists. */
4949
4950 tree
4951 cp_build_type_attribute_variant (tree type, tree attributes)
4952 {
4953 tree new_type;
4954
4955 new_type = build_type_attribute_variant (type, attributes);
4956 if (FUNC_OR_METHOD_TYPE_P (new_type))
4957 gcc_checking_assert (cxx_type_hash_eq (type, new_type));
4958
4959 /* Making a new main variant of a class type is broken. */
4960 gcc_assert (!CLASS_TYPE_P (type) || new_type == type);
4961
4962 return new_type;
4963 }
4964
4965 /* Return TRUE if TYPE1 and TYPE2 are identical for type hashing purposes.
4966 Called only after doing all language independent checks. */
4967
4968 bool
4969 cxx_type_hash_eq (const_tree typea, const_tree typeb)
4970 {
4971 gcc_assert (FUNC_OR_METHOD_TYPE_P (typea));
4972
4973 if (type_memfn_rqual (typea) != type_memfn_rqual (typeb))
4974 return false;
4975 if (TYPE_HAS_LATE_RETURN_TYPE (typea) != TYPE_HAS_LATE_RETURN_TYPE (typeb))
4976 return false;
4977 return comp_except_specs (TYPE_RAISES_EXCEPTIONS (typea),
4978 TYPE_RAISES_EXCEPTIONS (typeb), ce_exact);
4979 }
4980
4981 /* Copy the language-specific type variant modifiers from TYPEB to TYPEA. For
4982 C++, these are the exception-specifier and ref-qualifier. */
4983
4984 tree
4985 cxx_copy_lang_qualifiers (const_tree typea, const_tree typeb)
4986 {
4987 tree type = CONST_CAST_TREE (typea);
4988 if (FUNC_OR_METHOD_TYPE_P (type))
4989 type = build_cp_fntype_variant (type, type_memfn_rqual (typeb),
4990 TYPE_RAISES_EXCEPTIONS (typeb),
4991 TYPE_HAS_LATE_RETURN_TYPE (typeb));
4992 return type;
4993 }
4994
4995 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
4996 traversal. Called from walk_tree. */
4997
4998 tree
4999 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
5000 void *data, hash_set<tree> *pset)
5001 {
5002 enum tree_code code = TREE_CODE (*tp);
5003 tree result;
5004
5005 #define WALK_SUBTREE(NODE) \
5006 do \
5007 { \
5008 result = cp_walk_tree (&(NODE), func, data, pset); \
5009 if (result) goto out; \
5010 } \
5011 while (0)
5012
5013 if (TYPE_P (*tp))
5014 {
5015 /* Walk into template args without looking through typedefs. */
5016 if (tree ti = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (*tp))
5017 WALK_SUBTREE (TI_ARGS (ti));
5018 /* Don't look through typedefs; walk_tree_fns that want to look through
5019 typedefs (like min_vis_r) need to do that themselves. */
5020 if (typedef_variant_p (*tp))
5021 {
5022 *walk_subtrees_p = 0;
5023 return NULL_TREE;
5024 }
5025 }
5026
5027 /* Not one of the easy cases. We must explicitly go through the
5028 children. */
5029 result = NULL_TREE;
5030 switch (code)
5031 {
5032 case DEFERRED_PARSE:
5033 case TEMPLATE_TEMPLATE_PARM:
5034 case BOUND_TEMPLATE_TEMPLATE_PARM:
5035 case UNBOUND_CLASS_TEMPLATE:
5036 case TEMPLATE_PARM_INDEX:
5037 case TEMPLATE_TYPE_PARM:
5038 case TYPEOF_TYPE:
5039 case UNDERLYING_TYPE:
5040 /* None of these have subtrees other than those already walked
5041 above. */
5042 *walk_subtrees_p = 0;
5043 break;
5044
5045 case TYPENAME_TYPE:
5046 WALK_SUBTREE (TYPE_CONTEXT (*tp));
5047 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (*tp));
5048 *walk_subtrees_p = 0;
5049 break;
5050
5051 case BASELINK:
5052 if (BASELINK_QUALIFIED_P (*tp))
5053 WALK_SUBTREE (BINFO_TYPE (BASELINK_ACCESS_BINFO (*tp)));
5054 WALK_SUBTREE (BASELINK_FUNCTIONS (*tp));
5055 *walk_subtrees_p = 0;
5056 break;
5057
5058 case PTRMEM_CST:
5059 WALK_SUBTREE (TREE_TYPE (*tp));
5060 *walk_subtrees_p = 0;
5061 break;
5062
5063 case TREE_LIST:
5064 WALK_SUBTREE (TREE_PURPOSE (*tp));
5065 break;
5066
5067 case OVERLOAD:
5068 WALK_SUBTREE (OVL_FUNCTION (*tp));
5069 WALK_SUBTREE (OVL_CHAIN (*tp));
5070 *walk_subtrees_p = 0;
5071 break;
5072
5073 case USING_DECL:
5074 WALK_SUBTREE (DECL_NAME (*tp));
5075 WALK_SUBTREE (USING_DECL_SCOPE (*tp));
5076 WALK_SUBTREE (USING_DECL_DECLS (*tp));
5077 *walk_subtrees_p = 0;
5078 break;
5079
5080 case RECORD_TYPE:
5081 if (TYPE_PTRMEMFUNC_P (*tp))
5082 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE_RAW (*tp));
5083 break;
5084
5085 case TYPE_ARGUMENT_PACK:
5086 case NONTYPE_ARGUMENT_PACK:
5087 {
5088 tree args = ARGUMENT_PACK_ARGS (*tp);
5089 int i, len = TREE_VEC_LENGTH (args);
5090 for (i = 0; i < len; i++)
5091 WALK_SUBTREE (TREE_VEC_ELT (args, i));
5092 }
5093 break;
5094
5095 case TYPE_PACK_EXPANSION:
5096 WALK_SUBTREE (TREE_TYPE (*tp));
5097 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
5098 *walk_subtrees_p = 0;
5099 break;
5100
5101 case EXPR_PACK_EXPANSION:
5102 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
5103 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
5104 *walk_subtrees_p = 0;
5105 break;
5106
5107 case CAST_EXPR:
5108 case REINTERPRET_CAST_EXPR:
5109 case STATIC_CAST_EXPR:
5110 case CONST_CAST_EXPR:
5111 case DYNAMIC_CAST_EXPR:
5112 case IMPLICIT_CONV_EXPR:
5113 if (TREE_TYPE (*tp))
5114 WALK_SUBTREE (TREE_TYPE (*tp));
5115
5116 {
5117 int i;
5118 for (i = 0; i < TREE_CODE_LENGTH (TREE_CODE (*tp)); ++i)
5119 WALK_SUBTREE (TREE_OPERAND (*tp, i));
5120 }
5121 *walk_subtrees_p = 0;
5122 break;
5123
5124 case CONSTRUCTOR:
5125 if (COMPOUND_LITERAL_P (*tp))
5126 WALK_SUBTREE (TREE_TYPE (*tp));
5127 break;
5128
5129 case TRAIT_EXPR:
5130 WALK_SUBTREE (TRAIT_EXPR_TYPE1 (*tp));
5131 WALK_SUBTREE (TRAIT_EXPR_TYPE2 (*tp));
5132 *walk_subtrees_p = 0;
5133 break;
5134
5135 case DECLTYPE_TYPE:
5136 ++cp_unevaluated_operand;
5137 /* We can't use WALK_SUBTREE here because of the goto. */
5138 result = cp_walk_tree (&DECLTYPE_TYPE_EXPR (*tp), func, data, pset);
5139 --cp_unevaluated_operand;
5140 *walk_subtrees_p = 0;
5141 break;
5142
5143 case ALIGNOF_EXPR:
5144 case SIZEOF_EXPR:
5145 case NOEXCEPT_EXPR:
5146 ++cp_unevaluated_operand;
5147 result = cp_walk_tree (&TREE_OPERAND (*tp, 0), func, data, pset);
5148 --cp_unevaluated_operand;
5149 *walk_subtrees_p = 0;
5150 break;
5151
5152 case REQUIRES_EXPR:
5153 // Only recurse through the nested expression. Do not
5154 // walk the parameter list. Doing so causes false
5155 // positives in the pack expansion checker since the
5156 // requires parameters are introduced as pack expansions.
5157 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5158 *walk_subtrees_p = 0;
5159 break;
5160
5161 case DECL_EXPR:
5162 /* User variables should be mentioned in BIND_EXPR_VARS
5163 and their initializers and sizes walked when walking
5164 the containing BIND_EXPR. Compiler temporaries are
5165 handled here. And also normal variables in templates,
5166 since do_poplevel doesn't build a BIND_EXPR then. */
5167 if (VAR_P (TREE_OPERAND (*tp, 0))
5168 && (processing_template_decl
5169 || (DECL_ARTIFICIAL (TREE_OPERAND (*tp, 0))
5170 && !TREE_STATIC (TREE_OPERAND (*tp, 0)))))
5171 {
5172 tree decl = TREE_OPERAND (*tp, 0);
5173 WALK_SUBTREE (DECL_INITIAL (decl));
5174 WALK_SUBTREE (DECL_SIZE (decl));
5175 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
5176 }
5177 break;
5178
5179 case LAMBDA_EXPR:
5180 /* Don't walk into the body of the lambda, but the capture initializers
5181 are part of the enclosing context. */
5182 for (tree cap = LAMBDA_EXPR_CAPTURE_LIST (*tp); cap;
5183 cap = TREE_CHAIN (cap))
5184 WALK_SUBTREE (TREE_VALUE (cap));
5185 break;
5186
5187 case CO_YIELD_EXPR:
5188 if (TREE_OPERAND (*tp, 1))
5189 /* Operand 1 is the tree for the relevant co_await which has any
5190 interesting sub-trees. */
5191 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5192 break;
5193
5194 case CO_AWAIT_EXPR:
5195 if (TREE_OPERAND (*tp, 1))
5196 /* Operand 1 is frame variable. */
5197 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5198 if (TREE_OPERAND (*tp, 2))
5199 /* Operand 2 has the initialiser, and we need to walk any subtrees
5200 there. */
5201 WALK_SUBTREE (TREE_OPERAND (*tp, 2));
5202 break;
5203
5204 case CO_RETURN_EXPR:
5205 if (TREE_OPERAND (*tp, 0))
5206 {
5207 if (VOID_TYPE_P (TREE_OPERAND (*tp, 0)))
5208 /* For void expressions, operand 1 is a trivial call, and any
5209 interesting subtrees will be part of operand 0. */
5210 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
5211 else if (TREE_OPERAND (*tp, 1))
5212 /* Interesting sub-trees will be in the return_value () call
5213 arguments. */
5214 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5215 }
5216 break;
5217
5218 default:
5219 return NULL_TREE;
5220 }
5221
5222 /* We didn't find what we were looking for. */
5223 out:
5224 return result;
5225
5226 #undef WALK_SUBTREE
5227 }
5228
5229 /* Like save_expr, but for C++. */
5230
5231 tree
5232 cp_save_expr (tree expr)
5233 {
5234 /* There is no reason to create a SAVE_EXPR within a template; if
5235 needed, we can create the SAVE_EXPR when instantiating the
5236 template. Furthermore, the middle-end cannot handle C++-specific
5237 tree codes. */
5238 if (processing_template_decl)
5239 return expr;
5240
5241 /* TARGET_EXPRs are only expanded once. */
5242 if (TREE_CODE (expr) == TARGET_EXPR)
5243 return expr;
5244
5245 return save_expr (expr);
5246 }
5247
5248 /* Initialize tree.c. */
5249
5250 void
5251 init_tree (void)
5252 {
5253 list_hash_table = hash_table<list_hasher>::create_ggc (61);
5254 register_scoped_attributes (std_attribute_table, NULL);
5255 }
5256
5257 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
5258 is. Note that sfk_none is zero, so this function can be used as a
5259 predicate to test whether or not DECL is a special function. */
5260
5261 special_function_kind
5262 special_function_p (const_tree decl)
5263 {
5264 /* Rather than doing all this stuff with magic names, we should
5265 probably have a field of type `special_function_kind' in
5266 DECL_LANG_SPECIFIC. */
5267 if (DECL_INHERITED_CTOR (decl))
5268 return sfk_inheriting_constructor;
5269 if (DECL_COPY_CONSTRUCTOR_P (decl))
5270 return sfk_copy_constructor;
5271 if (DECL_MOVE_CONSTRUCTOR_P (decl))
5272 return sfk_move_constructor;
5273 if (DECL_CONSTRUCTOR_P (decl))
5274 return sfk_constructor;
5275 if (DECL_ASSIGNMENT_OPERATOR_P (decl)
5276 && DECL_OVERLOADED_OPERATOR_IS (decl, NOP_EXPR))
5277 {
5278 if (copy_fn_p (decl))
5279 return sfk_copy_assignment;
5280 if (move_fn_p (decl))
5281 return sfk_move_assignment;
5282 }
5283 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
5284 return sfk_destructor;
5285 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
5286 return sfk_complete_destructor;
5287 if (DECL_BASE_DESTRUCTOR_P (decl))
5288 return sfk_base_destructor;
5289 if (DECL_DELETING_DESTRUCTOR_P (decl))
5290 return sfk_deleting_destructor;
5291 if (DECL_CONV_FN_P (decl))
5292 return sfk_conversion;
5293 if (deduction_guide_p (decl))
5294 return sfk_deduction_guide;
5295 if (DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) >= OVL_OP_EQ_EXPR
5296 && DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) <= OVL_OP_SPACESHIP_EXPR)
5297 return sfk_comparison;
5298
5299 return sfk_none;
5300 }
5301
5302 /* As above, but only if DECL is a special member function as per 11.3.3
5303 [special]: default/copy/move ctor, copy/move assignment, or destructor. */
5304
5305 special_function_kind
5306 special_memfn_p (const_tree decl)
5307 {
5308 switch (special_function_kind sfk = special_function_p (decl))
5309 {
5310 case sfk_constructor:
5311 if (!default_ctor_p (decl))
5312 break;
5313 gcc_fallthrough();
5314 case sfk_copy_constructor:
5315 case sfk_copy_assignment:
5316 case sfk_move_assignment:
5317 case sfk_move_constructor:
5318 case sfk_destructor:
5319 return sfk;
5320
5321 default:
5322 break;
5323 }
5324 return sfk_none;
5325 }
5326
5327 /* Returns nonzero if TYPE is a character type, including wchar_t. */
5328
5329 int
5330 char_type_p (tree type)
5331 {
5332 return (same_type_p (type, char_type_node)
5333 || same_type_p (type, unsigned_char_type_node)
5334 || same_type_p (type, signed_char_type_node)
5335 || same_type_p (type, char8_type_node)
5336 || same_type_p (type, char16_type_node)
5337 || same_type_p (type, char32_type_node)
5338 || same_type_p (type, wchar_type_node));
5339 }
5340
5341 /* Returns the kind of linkage associated with the indicated DECL. Th
5342 value returned is as specified by the language standard; it is
5343 independent of implementation details regarding template
5344 instantiation, etc. For example, it is possible that a declaration
5345 to which this function assigns external linkage would not show up
5346 as a global symbol when you run `nm' on the resulting object file. */
5347
5348 linkage_kind
5349 decl_linkage (tree decl)
5350 {
5351 /* This function doesn't attempt to calculate the linkage from first
5352 principles as given in [basic.link]. Instead, it makes use of
5353 the fact that we have already set TREE_PUBLIC appropriately, and
5354 then handles a few special cases. Ideally, we would calculate
5355 linkage first, and then transform that into a concrete
5356 implementation. */
5357
5358 /* Things that don't have names have no linkage. */
5359 if (!DECL_NAME (decl))
5360 return lk_none;
5361
5362 /* Fields have no linkage. */
5363 if (TREE_CODE (decl) == FIELD_DECL)
5364 return lk_none;
5365
5366 /* Things in local scope do not have linkage. */
5367 if (decl_function_context (decl))
5368 return lk_none;
5369
5370 /* Things that are TREE_PUBLIC have external linkage. */
5371 if (TREE_PUBLIC (decl))
5372 return lk_external;
5373
5374 /* maybe_thunk_body clears TREE_PUBLIC on the maybe-in-charge 'tor variants,
5375 check one of the "clones" for the real linkage. */
5376 if (DECL_MAYBE_IN_CHARGE_CDTOR_P (decl)
5377 && DECL_CHAIN (decl)
5378 && DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)))
5379 return decl_linkage (DECL_CHAIN (decl));
5380
5381 if (TREE_CODE (decl) == NAMESPACE_DECL)
5382 return lk_external;
5383
5384 /* Linkage of a CONST_DECL depends on the linkage of the enumeration
5385 type. */
5386 if (TREE_CODE (decl) == CONST_DECL)
5387 return decl_linkage (TYPE_NAME (DECL_CONTEXT (decl)));
5388
5389 /* Members of the anonymous namespace also have TREE_PUBLIC unset, but
5390 are considered to have external linkage for language purposes, as do
5391 template instantiations on targets without weak symbols. DECLs really
5392 meant to have internal linkage have DECL_THIS_STATIC set. */
5393 if (TREE_CODE (decl) == TYPE_DECL)
5394 return lk_external;
5395 if (VAR_OR_FUNCTION_DECL_P (decl))
5396 {
5397 if (!DECL_THIS_STATIC (decl))
5398 return lk_external;
5399
5400 /* Static data members and static member functions from classes
5401 in anonymous namespace also don't have TREE_PUBLIC set. */
5402 if (DECL_CLASS_CONTEXT (decl))
5403 return lk_external;
5404 }
5405
5406 /* Everything else has internal linkage. */
5407 return lk_internal;
5408 }
5409
5410 /* Returns the storage duration of the object or reference associated with
5411 the indicated DECL, which should be a VAR_DECL or PARM_DECL. */
5412
5413 duration_kind
5414 decl_storage_duration (tree decl)
5415 {
5416 if (TREE_CODE (decl) == PARM_DECL)
5417 return dk_auto;
5418 if (TREE_CODE (decl) == FUNCTION_DECL)
5419 return dk_static;
5420 gcc_assert (VAR_P (decl));
5421 if (!TREE_STATIC (decl)
5422 && !DECL_EXTERNAL (decl))
5423 return dk_auto;
5424 if (CP_DECL_THREAD_LOCAL_P (decl))
5425 return dk_thread;
5426 return dk_static;
5427 }
5428 \f
5429 /* EXP is an expression that we want to pre-evaluate. Returns (in
5430 *INITP) an expression that will perform the pre-evaluation. The
5431 value returned by this function is a side-effect free expression
5432 equivalent to the pre-evaluated expression. Callers must ensure
5433 that *INITP is evaluated before EXP. */
5434
5435 tree
5436 stabilize_expr (tree exp, tree* initp)
5437 {
5438 tree init_expr;
5439
5440 if (!TREE_SIDE_EFFECTS (exp))
5441 init_expr = NULL_TREE;
5442 else if (VOID_TYPE_P (TREE_TYPE (exp)))
5443 {
5444 init_expr = exp;
5445 exp = void_node;
5446 }
5447 /* There are no expressions with REFERENCE_TYPE, but there can be call
5448 arguments with such a type; just treat it as a pointer. */
5449 else if (TYPE_REF_P (TREE_TYPE (exp))
5450 || SCALAR_TYPE_P (TREE_TYPE (exp))
5451 || !glvalue_p (exp))
5452 {
5453 init_expr = get_target_expr (exp);
5454 exp = TARGET_EXPR_SLOT (init_expr);
5455 if (CLASS_TYPE_P (TREE_TYPE (exp)))
5456 exp = move (exp);
5457 else
5458 exp = rvalue (exp);
5459 }
5460 else
5461 {
5462 bool xval = !lvalue_p (exp);
5463 exp = cp_build_addr_expr (exp, tf_warning_or_error);
5464 init_expr = get_target_expr (exp);
5465 exp = TARGET_EXPR_SLOT (init_expr);
5466 exp = cp_build_fold_indirect_ref (exp);
5467 if (xval)
5468 exp = move (exp);
5469 }
5470 *initp = init_expr;
5471
5472 gcc_assert (!TREE_SIDE_EFFECTS (exp));
5473 return exp;
5474 }
5475
5476 /* Add NEW_EXPR, an expression whose value we don't care about, after the
5477 similar expression ORIG. */
5478
5479 tree
5480 add_stmt_to_compound (tree orig, tree new_expr)
5481 {
5482 if (!new_expr || !TREE_SIDE_EFFECTS (new_expr))
5483 return orig;
5484 if (!orig || !TREE_SIDE_EFFECTS (orig))
5485 return new_expr;
5486 return build2 (COMPOUND_EXPR, void_type_node, orig, new_expr);
5487 }
5488
5489 /* Like stabilize_expr, but for a call whose arguments we want to
5490 pre-evaluate. CALL is modified in place to use the pre-evaluated
5491 arguments, while, upon return, *INITP contains an expression to
5492 compute the arguments. */
5493
5494 void
5495 stabilize_call (tree call, tree *initp)
5496 {
5497 tree inits = NULL_TREE;
5498 int i;
5499 int nargs = call_expr_nargs (call);
5500
5501 if (call == error_mark_node || processing_template_decl)
5502 {
5503 *initp = NULL_TREE;
5504 return;
5505 }
5506
5507 gcc_assert (TREE_CODE (call) == CALL_EXPR);
5508
5509 for (i = 0; i < nargs; i++)
5510 {
5511 tree init;
5512 CALL_EXPR_ARG (call, i) =
5513 stabilize_expr (CALL_EXPR_ARG (call, i), &init);
5514 inits = add_stmt_to_compound (inits, init);
5515 }
5516
5517 *initp = inits;
5518 }
5519
5520 /* Like stabilize_expr, but for an AGGR_INIT_EXPR whose arguments we want
5521 to pre-evaluate. CALL is modified in place to use the pre-evaluated
5522 arguments, while, upon return, *INITP contains an expression to
5523 compute the arguments. */
5524
5525 static void
5526 stabilize_aggr_init (tree call, tree *initp)
5527 {
5528 tree inits = NULL_TREE;
5529 int i;
5530 int nargs = aggr_init_expr_nargs (call);
5531
5532 if (call == error_mark_node)
5533 return;
5534
5535 gcc_assert (TREE_CODE (call) == AGGR_INIT_EXPR);
5536
5537 for (i = 0; i < nargs; i++)
5538 {
5539 tree init;
5540 AGGR_INIT_EXPR_ARG (call, i) =
5541 stabilize_expr (AGGR_INIT_EXPR_ARG (call, i), &init);
5542 inits = add_stmt_to_compound (inits, init);
5543 }
5544
5545 *initp = inits;
5546 }
5547
5548 /* Like stabilize_expr, but for an initialization.
5549
5550 If the initialization is for an object of class type, this function
5551 takes care not to introduce additional temporaries.
5552
5553 Returns TRUE iff the expression was successfully pre-evaluated,
5554 i.e., if INIT is now side-effect free, except for, possibly, a
5555 single call to a constructor. */
5556
5557 bool
5558 stabilize_init (tree init, tree *initp)
5559 {
5560 tree t = init;
5561
5562 *initp = NULL_TREE;
5563
5564 if (t == error_mark_node || processing_template_decl)
5565 return true;
5566
5567 if (TREE_CODE (t) == INIT_EXPR)
5568 t = TREE_OPERAND (t, 1);
5569 if (TREE_CODE (t) == TARGET_EXPR)
5570 t = TARGET_EXPR_INITIAL (t);
5571
5572 /* If the RHS can be stabilized without breaking copy elision, stabilize
5573 it. We specifically don't stabilize class prvalues here because that
5574 would mean an extra copy, but they might be stabilized below. */
5575 if (TREE_CODE (init) == INIT_EXPR
5576 && TREE_CODE (t) != CONSTRUCTOR
5577 && TREE_CODE (t) != AGGR_INIT_EXPR
5578 && (SCALAR_TYPE_P (TREE_TYPE (t))
5579 || glvalue_p (t)))
5580 {
5581 TREE_OPERAND (init, 1) = stabilize_expr (t, initp);
5582 return true;
5583 }
5584
5585 if (TREE_CODE (t) == COMPOUND_EXPR
5586 && TREE_CODE (init) == INIT_EXPR)
5587 {
5588 tree last = expr_last (t);
5589 /* Handle stabilizing the EMPTY_CLASS_EXPR pattern. */
5590 if (!TREE_SIDE_EFFECTS (last))
5591 {
5592 *initp = t;
5593 TREE_OPERAND (init, 1) = last;
5594 return true;
5595 }
5596 }
5597
5598 if (TREE_CODE (t) == CONSTRUCTOR)
5599 {
5600 /* Aggregate initialization: stabilize each of the field
5601 initializers. */
5602 unsigned i;
5603 constructor_elt *ce;
5604 bool good = true;
5605 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
5606 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
5607 {
5608 tree type = TREE_TYPE (ce->value);
5609 tree subinit;
5610 if (TYPE_REF_P (type)
5611 || SCALAR_TYPE_P (type))
5612 ce->value = stabilize_expr (ce->value, &subinit);
5613 else if (!stabilize_init (ce->value, &subinit))
5614 good = false;
5615 *initp = add_stmt_to_compound (*initp, subinit);
5616 }
5617 return good;
5618 }
5619
5620 if (TREE_CODE (t) == CALL_EXPR)
5621 {
5622 stabilize_call (t, initp);
5623 return true;
5624 }
5625
5626 if (TREE_CODE (t) == AGGR_INIT_EXPR)
5627 {
5628 stabilize_aggr_init (t, initp);
5629 return true;
5630 }
5631
5632 /* The initialization is being performed via a bitwise copy -- and
5633 the item copied may have side effects. */
5634 return !TREE_SIDE_EFFECTS (init);
5635 }
5636
5637 /* Returns true if a cast to TYPE may appear in an integral constant
5638 expression. */
5639
5640 bool
5641 cast_valid_in_integral_constant_expression_p (tree type)
5642 {
5643 return (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
5644 || cxx_dialect >= cxx11
5645 || dependent_type_p (type)
5646 || type == error_mark_node);
5647 }
5648
5649 /* Return true if we need to fix linkage information of DECL. */
5650
5651 static bool
5652 cp_fix_function_decl_p (tree decl)
5653 {
5654 /* Skip if DECL is not externally visible. */
5655 if (!TREE_PUBLIC (decl))
5656 return false;
5657
5658 /* We need to fix DECL if it a appears to be exported but with no
5659 function body. Thunks do not have CFGs and we may need to
5660 handle them specially later. */
5661 if (!gimple_has_body_p (decl)
5662 && !DECL_THUNK_P (decl)
5663 && !DECL_EXTERNAL (decl))
5664 {
5665 struct cgraph_node *node = cgraph_node::get (decl);
5666
5667 /* Don't fix same_body aliases. Although they don't have their own
5668 CFG, they share it with what they alias to. */
5669 if (!node || !node->alias
5670 || !vec_safe_length (node->ref_list.references))
5671 return true;
5672 }
5673
5674 return false;
5675 }
5676
5677 /* Clean the C++ specific parts of the tree T. */
5678
5679 void
5680 cp_free_lang_data (tree t)
5681 {
5682 if (FUNC_OR_METHOD_TYPE_P (t))
5683 {
5684 /* Default args are not interesting anymore. */
5685 tree argtypes = TYPE_ARG_TYPES (t);
5686 while (argtypes)
5687 {
5688 TREE_PURPOSE (argtypes) = 0;
5689 argtypes = TREE_CHAIN (argtypes);
5690 }
5691 }
5692 else if (TREE_CODE (t) == FUNCTION_DECL
5693 && cp_fix_function_decl_p (t))
5694 {
5695 /* If T is used in this translation unit at all, the definition
5696 must exist somewhere else since we have decided to not emit it
5697 in this TU. So make it an external reference. */
5698 DECL_EXTERNAL (t) = 1;
5699 TREE_STATIC (t) = 0;
5700 }
5701 if (TREE_CODE (t) == FUNCTION_DECL)
5702 discard_operator_bindings (t);
5703 if (TREE_CODE (t) == NAMESPACE_DECL)
5704 /* We do not need the leftover chaining of namespaces from the
5705 binding level. */
5706 DECL_CHAIN (t) = NULL_TREE;
5707 }
5708
5709 /* Stub for c-common. Please keep in sync with c-decl.c.
5710 FIXME: If address space support is target specific, then this
5711 should be a C target hook. But currently this is not possible,
5712 because this function is called via REGISTER_TARGET_PRAGMAS. */
5713 void
5714 c_register_addr_space (const char * /*word*/, addr_space_t /*as*/)
5715 {
5716 }
5717
5718 /* Return the number of operands in T that we care about for things like
5719 mangling. */
5720
5721 int
5722 cp_tree_operand_length (const_tree t)
5723 {
5724 enum tree_code code = TREE_CODE (t);
5725
5726 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
5727 return VL_EXP_OPERAND_LENGTH (t);
5728
5729 return cp_tree_code_length (code);
5730 }
5731
5732 /* Like cp_tree_operand_length, but takes a tree_code CODE. */
5733
5734 int
5735 cp_tree_code_length (enum tree_code code)
5736 {
5737 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
5738
5739 switch (code)
5740 {
5741 case PREINCREMENT_EXPR:
5742 case PREDECREMENT_EXPR:
5743 case POSTINCREMENT_EXPR:
5744 case POSTDECREMENT_EXPR:
5745 return 1;
5746
5747 case ARRAY_REF:
5748 return 2;
5749
5750 case EXPR_PACK_EXPANSION:
5751 return 1;
5752
5753 default:
5754 return TREE_CODE_LENGTH (code);
5755 }
5756 }
5757
5758 /* Like EXPR_LOCATION, but also handle some tcc_exceptional that have
5759 locations. */
5760
5761 location_t
5762 cp_expr_location (const_tree t_)
5763 {
5764 tree t = CONST_CAST_TREE (t_);
5765 if (t == NULL_TREE)
5766 return UNKNOWN_LOCATION;
5767 switch (TREE_CODE (t))
5768 {
5769 case LAMBDA_EXPR:
5770 return LAMBDA_EXPR_LOCATION (t);
5771 case STATIC_ASSERT:
5772 return STATIC_ASSERT_SOURCE_LOCATION (t);
5773 case TRAIT_EXPR:
5774 return TRAIT_EXPR_LOCATION (t);
5775 default:
5776 return EXPR_LOCATION (t);
5777 }
5778 }
5779
5780 /* Implement -Wzero_as_null_pointer_constant. Return true if the
5781 conditions for the warning hold, false otherwise. */
5782 bool
5783 maybe_warn_zero_as_null_pointer_constant (tree expr, location_t loc)
5784 {
5785 if (c_inhibit_evaluation_warnings == 0
5786 && !null_node_p (expr) && !NULLPTR_TYPE_P (TREE_TYPE (expr)))
5787 {
5788 warning_at (loc, OPT_Wzero_as_null_pointer_constant,
5789 "zero as null pointer constant");
5790 return true;
5791 }
5792 return false;
5793 }
5794 \f
5795 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
5796 /* Complain that some language-specific thing hanging off a tree
5797 node has been accessed improperly. */
5798
5799 void
5800 lang_check_failed (const char* file, int line, const char* function)
5801 {
5802 internal_error ("%<lang_*%> check: failed in %s, at %s:%d",
5803 function, trim_filename (file), line);
5804 }
5805 #endif /* ENABLE_TREE_CHECKING */
5806
5807 #if CHECKING_P
5808
5809 namespace selftest {
5810
5811 /* Verify that lvalue_kind () works, for various expressions,
5812 and that location wrappers don't affect the results. */
5813
5814 static void
5815 test_lvalue_kind ()
5816 {
5817 location_t loc = BUILTINS_LOCATION;
5818
5819 /* Verify constants and parameters, without and with
5820 location wrappers. */
5821 tree int_cst = build_int_cst (integer_type_node, 42);
5822 ASSERT_EQ (clk_none, lvalue_kind (int_cst));
5823
5824 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
5825 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
5826 ASSERT_EQ (clk_none, lvalue_kind (wrapped_int_cst));
5827
5828 tree string_lit = build_string (4, "foo");
5829 TREE_TYPE (string_lit) = char_array_type_node;
5830 string_lit = fix_string_type (string_lit);
5831 ASSERT_EQ (clk_ordinary, lvalue_kind (string_lit));
5832
5833 tree wrapped_string_lit = maybe_wrap_with_location (string_lit, loc);
5834 ASSERT_TRUE (location_wrapper_p (wrapped_string_lit));
5835 ASSERT_EQ (clk_ordinary, lvalue_kind (wrapped_string_lit));
5836
5837 tree parm = build_decl (UNKNOWN_LOCATION, PARM_DECL,
5838 get_identifier ("some_parm"),
5839 integer_type_node);
5840 ASSERT_EQ (clk_ordinary, lvalue_kind (parm));
5841
5842 tree wrapped_parm = maybe_wrap_with_location (parm, loc);
5843 ASSERT_TRUE (location_wrapper_p (wrapped_parm));
5844 ASSERT_EQ (clk_ordinary, lvalue_kind (wrapped_parm));
5845
5846 /* Verify that lvalue_kind of std::move on a parm isn't
5847 affected by location wrappers. */
5848 tree rvalue_ref_of_parm = move (parm);
5849 ASSERT_EQ (clk_rvalueref, lvalue_kind (rvalue_ref_of_parm));
5850 tree rvalue_ref_of_wrapped_parm = move (wrapped_parm);
5851 ASSERT_EQ (clk_rvalueref, lvalue_kind (rvalue_ref_of_wrapped_parm));
5852
5853 /* Verify lvalue_p. */
5854 ASSERT_FALSE (lvalue_p (int_cst));
5855 ASSERT_FALSE (lvalue_p (wrapped_int_cst));
5856 ASSERT_TRUE (lvalue_p (parm));
5857 ASSERT_TRUE (lvalue_p (wrapped_parm));
5858 ASSERT_FALSE (lvalue_p (rvalue_ref_of_parm));
5859 ASSERT_FALSE (lvalue_p (rvalue_ref_of_wrapped_parm));
5860 }
5861
5862 /* Run all of the selftests within this file. */
5863
5864 void
5865 cp_tree_c_tests ()
5866 {
5867 test_lvalue_kind ();
5868 }
5869
5870 } // namespace selftest
5871
5872 #endif /* #if CHECKING_P */
5873
5874
5875 #include "gt-cp-tree.h"