c++: Yet more name-lookup api simplification
[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_P is
2241 true, if FN is via a using declaration. We also pay attention to
2242 DECL_HIDDEN. We keep the hidden decls first, but remaining ones
2243 are unordered. */
2244
2245 tree
2246 ovl_insert (tree fn, tree maybe_ovl, bool using_p)
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 bool hidden_p = DECL_HIDDEN_P (fn);
2261 if (maybe_ovl || using_p || hidden_p || TREE_CODE (fn) == TEMPLATE_DECL)
2262 {
2263 maybe_ovl = ovl_make (fn, maybe_ovl);
2264 if (hidden_p)
2265 OVL_HIDDEN_P (maybe_ovl) = true;
2266 if (using_p)
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 for (;
2289 ovl && TREE_CODE (ovl) == OVERLOAD && OVL_HIDDEN_P (ovl);
2290 ovl = OVL_CHAIN (ovl))
2291 gcc_checking_assert (DECL_HIDDEN_P (OVL_FUNCTION (ovl)));
2292
2293 if (ovl && TREE_CODE (ovl) != OVERLOAD && DECL_HIDDEN_P (ovl))
2294 {
2295 /* Any hidden functions should have been wrapped in an
2296 overload, but injected friend classes will not. */
2297 gcc_checking_assert (!DECL_DECLARES_FUNCTION_P (ovl));
2298 ovl = NULL_TREE;
2299 }
2300
2301 return ovl;
2302 }
2303
2304 /* NODE is an OVL_HIDDEN_P node that is now revealed. */
2305
2306 tree
2307 ovl_iterator::reveal_node (tree overload, tree node)
2308 {
2309 /* We cannot have returned NODE as part of a lookup overload, so we
2310 don't have to worry about preserving that. */
2311
2312 OVL_HIDDEN_P (node) = false;
2313 if (tree chain = OVL_CHAIN (node))
2314 if (TREE_CODE (chain) == OVERLOAD)
2315 {
2316 if (OVL_HIDDEN_P (chain))
2317 {
2318 /* The node needs moving, and the simplest way is to remove it
2319 and reinsert. */
2320 overload = remove_node (overload, node);
2321 overload = ovl_insert (OVL_FUNCTION (node), overload);
2322 }
2323 else if (OVL_DEDUP_P (chain))
2324 OVL_DEDUP_P (node) = true;
2325 }
2326 return overload;
2327 }
2328
2329 /* NODE is on the overloads of OVL. Remove it.
2330 The removed node is unaltered and may continue to be iterated
2331 from (i.e. it is safe to remove a node from an overload one is
2332 currently iterating over). */
2333
2334 tree
2335 ovl_iterator::remove_node (tree overload, tree node)
2336 {
2337 tree *slot = &overload;
2338 while (*slot != node)
2339 {
2340 tree probe = *slot;
2341 gcc_checking_assert (!OVL_LOOKUP_P (probe));
2342
2343 slot = &OVL_CHAIN (probe);
2344 }
2345
2346 /* Stitch out NODE. We don't have to worry about now making a
2347 singleton overload (and consequently maybe setting its type),
2348 because all uses of this function will be followed by inserting a
2349 new node that must follow the place we've cut this out from. */
2350 if (TREE_CODE (node) != OVERLOAD)
2351 /* Cloned inherited ctors don't mark themselves as via_using. */
2352 *slot = NULL_TREE;
2353 else
2354 *slot = OVL_CHAIN (node);
2355
2356 return overload;
2357 }
2358
2359 /* Mark or unmark a lookup set. */
2360
2361 void
2362 lookup_mark (tree ovl, bool val)
2363 {
2364 for (lkp_iterator iter (ovl); iter; ++iter)
2365 {
2366 gcc_checking_assert (LOOKUP_SEEN_P (*iter) != val);
2367 LOOKUP_SEEN_P (*iter) = val;
2368 }
2369 }
2370
2371 /* Add a set of new FNS into a lookup. */
2372
2373 tree
2374 lookup_add (tree fns, tree lookup)
2375 {
2376 if (fns == error_mark_node || lookup == error_mark_node)
2377 return error_mark_node;
2378
2379 if (lookup || TREE_CODE (fns) == TEMPLATE_DECL)
2380 {
2381 lookup = ovl_make (fns, lookup);
2382 OVL_LOOKUP_P (lookup) = true;
2383 }
2384 else
2385 lookup = fns;
2386
2387 return lookup;
2388 }
2389
2390 /* FNS is a new overload set, add them to LOOKUP, if they are not
2391 already present there. */
2392
2393 tree
2394 lookup_maybe_add (tree fns, tree lookup, bool deduping)
2395 {
2396 if (deduping)
2397 for (tree next, probe = fns; probe; probe = next)
2398 {
2399 tree fn = probe;
2400 next = NULL_TREE;
2401
2402 if (TREE_CODE (probe) == OVERLOAD)
2403 {
2404 fn = OVL_FUNCTION (probe);
2405 next = OVL_CHAIN (probe);
2406 }
2407
2408 if (!LOOKUP_SEEN_P (fn))
2409 LOOKUP_SEEN_P (fn) = true;
2410 else
2411 {
2412 /* This function was already seen. Insert all the
2413 predecessors onto the lookup. */
2414 for (; fns != probe; fns = OVL_CHAIN (fns))
2415 {
2416 lookup = lookup_add (OVL_FUNCTION (fns), lookup);
2417 /* Propagate OVL_USING, but OVL_HIDDEN &
2418 OVL_DEDUP_P don't matter. */
2419 if (OVL_USING_P (fns))
2420 OVL_USING_P (lookup) = true;
2421 }
2422
2423 /* And now skip this function. */
2424 fns = next;
2425 }
2426 }
2427
2428 if (fns)
2429 /* We ended in a set of new functions. Add them all in one go. */
2430 lookup = lookup_add (fns, lookup);
2431
2432 return lookup;
2433 }
2434
2435 /* Returns nonzero if X is an expression for a (possibly overloaded)
2436 function. If "f" is a function or function template, "f", "c->f",
2437 "c.f", "C::f", and "f<int>" will all be considered possibly
2438 overloaded functions. Returns 2 if the function is actually
2439 overloaded, i.e., if it is impossible to know the type of the
2440 function without performing overload resolution. */
2441
2442 int
2443 is_overloaded_fn (tree x)
2444 {
2445 STRIP_ANY_LOCATION_WRAPPER (x);
2446
2447 /* A baselink is also considered an overloaded function. */
2448 if (TREE_CODE (x) == OFFSET_REF
2449 || TREE_CODE (x) == COMPONENT_REF)
2450 x = TREE_OPERAND (x, 1);
2451 x = MAYBE_BASELINK_FUNCTIONS (x);
2452 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
2453 x = TREE_OPERAND (x, 0);
2454
2455 if (DECL_FUNCTION_TEMPLATE_P (OVL_FIRST (x))
2456 || (TREE_CODE (x) == OVERLOAD && !OVL_SINGLE_P (x)))
2457 return 2;
2458
2459 return OVL_P (x);
2460 }
2461
2462 /* X is the CALL_EXPR_FN of a CALL_EXPR. If X represents a dependent name
2463 (14.6.2), return the IDENTIFIER_NODE for that name. Otherwise, return
2464 NULL_TREE. */
2465
2466 tree
2467 dependent_name (tree x)
2468 {
2469 /* FIXME a dependent name must be unqualified, but this function doesn't
2470 distinguish between qualified and unqualified identifiers. */
2471 if (identifier_p (x))
2472 return x;
2473 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
2474 x = TREE_OPERAND (x, 0);
2475 if (OVL_P (x))
2476 return OVL_NAME (x);
2477 return NULL_TREE;
2478 }
2479
2480 /* Returns true iff X is an expression for an overloaded function
2481 whose type cannot be known without performing overload
2482 resolution. */
2483
2484 bool
2485 really_overloaded_fn (tree x)
2486 {
2487 return is_overloaded_fn (x) == 2;
2488 }
2489
2490 /* Get the overload set FROM refers to. Returns NULL if it's not an
2491 overload set. */
2492
2493 tree
2494 maybe_get_fns (tree from)
2495 {
2496 STRIP_ANY_LOCATION_WRAPPER (from);
2497
2498 /* A baselink is also considered an overloaded function. */
2499 if (TREE_CODE (from) == OFFSET_REF
2500 || TREE_CODE (from) == COMPONENT_REF)
2501 from = TREE_OPERAND (from, 1);
2502 if (BASELINK_P (from))
2503 from = BASELINK_FUNCTIONS (from);
2504 if (TREE_CODE (from) == TEMPLATE_ID_EXPR)
2505 from = TREE_OPERAND (from, 0);
2506
2507 if (OVL_P (from))
2508 return from;
2509
2510 return NULL;
2511 }
2512
2513 /* FROM refers to an overload set. Return that set (or die). */
2514
2515 tree
2516 get_fns (tree from)
2517 {
2518 tree res = maybe_get_fns (from);
2519
2520 gcc_assert (res);
2521 return res;
2522 }
2523
2524 /* Return the first function of the overload set FROM refers to. */
2525
2526 tree
2527 get_first_fn (tree from)
2528 {
2529 return OVL_FIRST (get_fns (from));
2530 }
2531
2532 /* Return the scope where the overloaded functions OVL were found. */
2533
2534 tree
2535 ovl_scope (tree ovl)
2536 {
2537 if (TREE_CODE (ovl) == OFFSET_REF
2538 || TREE_CODE (ovl) == COMPONENT_REF)
2539 ovl = TREE_OPERAND (ovl, 1);
2540 if (TREE_CODE (ovl) == BASELINK)
2541 return BINFO_TYPE (BASELINK_BINFO (ovl));
2542 if (TREE_CODE (ovl) == TEMPLATE_ID_EXPR)
2543 ovl = TREE_OPERAND (ovl, 0);
2544 /* Skip using-declarations. */
2545 lkp_iterator iter (ovl);
2546 do
2547 ovl = *iter;
2548 while (iter.using_p () && ++iter);
2549
2550 return CP_DECL_CONTEXT (ovl);
2551 }
2552 \f
2553 #define PRINT_RING_SIZE 4
2554
2555 static const char *
2556 cxx_printable_name_internal (tree decl, int v, bool translate)
2557 {
2558 static unsigned int uid_ring[PRINT_RING_SIZE];
2559 static char *print_ring[PRINT_RING_SIZE];
2560 static bool trans_ring[PRINT_RING_SIZE];
2561 static int ring_counter;
2562 int i;
2563
2564 /* Only cache functions. */
2565 if (v < 2
2566 || TREE_CODE (decl) != FUNCTION_DECL
2567 || DECL_LANG_SPECIFIC (decl) == 0)
2568 return lang_decl_name (decl, v, translate);
2569
2570 /* See if this print name is lying around. */
2571 for (i = 0; i < PRINT_RING_SIZE; i++)
2572 if (uid_ring[i] == DECL_UID (decl) && translate == trans_ring[i])
2573 /* yes, so return it. */
2574 return print_ring[i];
2575
2576 if (++ring_counter == PRINT_RING_SIZE)
2577 ring_counter = 0;
2578
2579 if (current_function_decl != NULL_TREE)
2580 {
2581 /* There may be both translated and untranslated versions of the
2582 name cached. */
2583 for (i = 0; i < 2; i++)
2584 {
2585 if (uid_ring[ring_counter] == DECL_UID (current_function_decl))
2586 ring_counter += 1;
2587 if (ring_counter == PRINT_RING_SIZE)
2588 ring_counter = 0;
2589 }
2590 gcc_assert (uid_ring[ring_counter] != DECL_UID (current_function_decl));
2591 }
2592
2593 free (print_ring[ring_counter]);
2594
2595 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v, translate));
2596 uid_ring[ring_counter] = DECL_UID (decl);
2597 trans_ring[ring_counter] = translate;
2598 return print_ring[ring_counter];
2599 }
2600
2601 const char *
2602 cxx_printable_name (tree decl, int v)
2603 {
2604 return cxx_printable_name_internal (decl, v, false);
2605 }
2606
2607 const char *
2608 cxx_printable_name_translate (tree decl, int v)
2609 {
2610 return cxx_printable_name_internal (decl, v, true);
2611 }
2612 \f
2613 /* Return the canonical version of exception-specification RAISES for a C++17
2614 function type, for use in type comparison and building TYPE_CANONICAL. */
2615
2616 tree
2617 canonical_eh_spec (tree raises)
2618 {
2619 if (raises == NULL_TREE)
2620 return raises;
2621 else if (DEFERRED_NOEXCEPT_SPEC_P (raises)
2622 || UNPARSED_NOEXCEPT_SPEC_P (raises)
2623 || uses_template_parms (raises)
2624 || uses_template_parms (TREE_PURPOSE (raises)))
2625 /* Keep a dependent or deferred exception specification. */
2626 return raises;
2627 else if (nothrow_spec_p (raises))
2628 /* throw() -> noexcept. */
2629 return noexcept_true_spec;
2630 else
2631 /* For C++17 type matching, anything else -> nothing. */
2632 return NULL_TREE;
2633 }
2634
2635 tree
2636 build_cp_fntype_variant (tree type, cp_ref_qualifier rqual,
2637 tree raises, bool late)
2638 {
2639 cp_cv_quals type_quals = TYPE_QUALS (type);
2640
2641 if (cp_check_qualified_type (type, type, type_quals, rqual, raises, late))
2642 return type;
2643
2644 tree v = TYPE_MAIN_VARIANT (type);
2645 for (; v; v = TYPE_NEXT_VARIANT (v))
2646 if (cp_check_qualified_type (v, type, type_quals, rqual, raises, late))
2647 return v;
2648
2649 /* Need to build a new variant. */
2650 v = build_variant_type_copy (type);
2651 TYPE_RAISES_EXCEPTIONS (v) = raises;
2652 TYPE_HAS_LATE_RETURN_TYPE (v) = late;
2653 switch (rqual)
2654 {
2655 case REF_QUAL_RVALUE:
2656 FUNCTION_RVALUE_QUALIFIED (v) = 1;
2657 FUNCTION_REF_QUALIFIED (v) = 1;
2658 break;
2659 case REF_QUAL_LVALUE:
2660 FUNCTION_RVALUE_QUALIFIED (v) = 0;
2661 FUNCTION_REF_QUALIFIED (v) = 1;
2662 break;
2663 default:
2664 FUNCTION_REF_QUALIFIED (v) = 0;
2665 break;
2666 }
2667
2668 /* Canonicalize the exception specification. */
2669 tree cr = flag_noexcept_type ? canonical_eh_spec (raises) : NULL_TREE;
2670
2671 if (TYPE_STRUCTURAL_EQUALITY_P (type))
2672 /* Propagate structural equality. */
2673 SET_TYPE_STRUCTURAL_EQUALITY (v);
2674 else if (TYPE_CANONICAL (type) != type || cr != raises || late)
2675 /* Build the underlying canonical type, since it is different
2676 from TYPE. */
2677 TYPE_CANONICAL (v) = build_cp_fntype_variant (TYPE_CANONICAL (type),
2678 rqual, cr, false);
2679 else
2680 /* T is its own canonical type. */
2681 TYPE_CANONICAL (v) = v;
2682
2683 return v;
2684 }
2685
2686 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
2687 listed in RAISES. */
2688
2689 tree
2690 build_exception_variant (tree type, tree raises)
2691 {
2692 cp_ref_qualifier rqual = type_memfn_rqual (type);
2693 bool late = TYPE_HAS_LATE_RETURN_TYPE (type);
2694 return build_cp_fntype_variant (type, rqual, raises, late);
2695 }
2696
2697 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
2698 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
2699 arguments. */
2700
2701 tree
2702 bind_template_template_parm (tree t, tree newargs)
2703 {
2704 tree decl = TYPE_NAME (t);
2705 tree t2;
2706
2707 t2 = cxx_make_type (BOUND_TEMPLATE_TEMPLATE_PARM);
2708 decl = build_decl (input_location,
2709 TYPE_DECL, DECL_NAME (decl), NULL_TREE);
2710
2711 /* These nodes have to be created to reflect new TYPE_DECL and template
2712 arguments. */
2713 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
2714 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
2715 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
2716 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
2717
2718 TREE_TYPE (decl) = t2;
2719 TYPE_NAME (t2) = decl;
2720 TYPE_STUB_DECL (t2) = decl;
2721 TYPE_SIZE (t2) = 0;
2722 SET_TYPE_STRUCTURAL_EQUALITY (t2);
2723
2724 return t2;
2725 }
2726
2727 /* Called from count_trees via walk_tree. */
2728
2729 static tree
2730 count_trees_r (tree *tp, int *walk_subtrees, void *data)
2731 {
2732 ++*((int *) data);
2733
2734 if (TYPE_P (*tp))
2735 *walk_subtrees = 0;
2736
2737 return NULL_TREE;
2738 }
2739
2740 /* Debugging function for measuring the rough complexity of a tree
2741 representation. */
2742
2743 int
2744 count_trees (tree t)
2745 {
2746 int n_trees = 0;
2747 cp_walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
2748 return n_trees;
2749 }
2750
2751 /* Called from verify_stmt_tree via walk_tree. */
2752
2753 static tree
2754 verify_stmt_tree_r (tree* tp, int * /*walk_subtrees*/, void* data)
2755 {
2756 tree t = *tp;
2757 hash_table<nofree_ptr_hash <tree_node> > *statements
2758 = static_cast <hash_table<nofree_ptr_hash <tree_node> > *> (data);
2759 tree_node **slot;
2760
2761 if (!STATEMENT_CODE_P (TREE_CODE (t)))
2762 return NULL_TREE;
2763
2764 /* If this statement is already present in the hash table, then
2765 there is a circularity in the statement tree. */
2766 gcc_assert (!statements->find (t));
2767
2768 slot = statements->find_slot (t, INSERT);
2769 *slot = t;
2770
2771 return NULL_TREE;
2772 }
2773
2774 /* Debugging function to check that the statement T has not been
2775 corrupted. For now, this function simply checks that T contains no
2776 circularities. */
2777
2778 void
2779 verify_stmt_tree (tree t)
2780 {
2781 hash_table<nofree_ptr_hash <tree_node> > statements (37);
2782 cp_walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
2783 }
2784
2785 /* Check if the type T depends on a type with no linkage and if so,
2786 return it. If RELAXED_P then do not consider a class type declared
2787 within a vague-linkage function to have no linkage. Remember:
2788 no-linkage is not the same as internal-linkage*/
2789
2790 tree
2791 no_linkage_check (tree t, bool relaxed_p)
2792 {
2793 tree r;
2794
2795 /* Lambda types that don't have mangling scope have no linkage. We
2796 check CLASSTYPE_LAMBDA_EXPR for error_mark_node because
2797 when we get here from pushtag none of the lambda information is
2798 set up yet, so we want to assume that the lambda has linkage and
2799 fix it up later if not. We need to check this even in templates so
2800 that we properly handle a lambda-expression in the signature. */
2801 if (LAMBDA_TYPE_P (t)
2802 && CLASSTYPE_LAMBDA_EXPR (t) != error_mark_node)
2803 {
2804 tree extra = LAMBDA_TYPE_EXTRA_SCOPE (t);
2805 if (!extra)
2806 return t;
2807 }
2808
2809 /* Otherwise there's no point in checking linkage on template functions; we
2810 can't know their complete types. */
2811 if (processing_template_decl)
2812 return NULL_TREE;
2813
2814 switch (TREE_CODE (t))
2815 {
2816 case RECORD_TYPE:
2817 if (TYPE_PTRMEMFUNC_P (t))
2818 goto ptrmem;
2819 /* Fall through. */
2820 case UNION_TYPE:
2821 if (!CLASS_TYPE_P (t))
2822 return NULL_TREE;
2823 /* Fall through. */
2824 case ENUMERAL_TYPE:
2825 /* Only treat unnamed types as having no linkage if they're at
2826 namespace scope. This is core issue 966. */
2827 if (TYPE_UNNAMED_P (t) && TYPE_NAMESPACE_SCOPE_P (t))
2828 return t;
2829
2830 for (r = CP_TYPE_CONTEXT (t); ; )
2831 {
2832 /* If we're a nested type of a !TREE_PUBLIC class, we might not
2833 have linkage, or we might just be in an anonymous namespace.
2834 If we're in a TREE_PUBLIC class, we have linkage. */
2835 if (TYPE_P (r) && !TREE_PUBLIC (TYPE_NAME (r)))
2836 return no_linkage_check (TYPE_CONTEXT (t), relaxed_p);
2837 else if (TREE_CODE (r) == FUNCTION_DECL)
2838 {
2839 if (!relaxed_p || !vague_linkage_p (r))
2840 return t;
2841 else
2842 r = CP_DECL_CONTEXT (r);
2843 }
2844 else
2845 break;
2846 }
2847
2848 return NULL_TREE;
2849
2850 case ARRAY_TYPE:
2851 case POINTER_TYPE:
2852 case REFERENCE_TYPE:
2853 case VECTOR_TYPE:
2854 return no_linkage_check (TREE_TYPE (t), relaxed_p);
2855
2856 case OFFSET_TYPE:
2857 ptrmem:
2858 r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
2859 relaxed_p);
2860 if (r)
2861 return r;
2862 return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
2863
2864 case METHOD_TYPE:
2865 case FUNCTION_TYPE:
2866 {
2867 tree parm = TYPE_ARG_TYPES (t);
2868 if (TREE_CODE (t) == METHOD_TYPE)
2869 /* The 'this' pointer isn't interesting; a method has the same
2870 linkage (or lack thereof) as its enclosing class. */
2871 parm = TREE_CHAIN (parm);
2872 for (;
2873 parm && parm != void_list_node;
2874 parm = TREE_CHAIN (parm))
2875 {
2876 r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
2877 if (r)
2878 return r;
2879 }
2880 return no_linkage_check (TREE_TYPE (t), relaxed_p);
2881 }
2882
2883 default:
2884 return NULL_TREE;
2885 }
2886 }
2887
2888 extern int depth_reached;
2889
2890 void
2891 cxx_print_statistics (void)
2892 {
2893 print_template_statistics ();
2894 if (GATHER_STATISTICS)
2895 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
2896 depth_reached);
2897 }
2898
2899 /* Return, as an INTEGER_CST node, the number of elements for TYPE
2900 (which is an ARRAY_TYPE). This counts only elements of the top
2901 array. */
2902
2903 tree
2904 array_type_nelts_top (tree type)
2905 {
2906 return fold_build2_loc (input_location,
2907 PLUS_EXPR, sizetype,
2908 array_type_nelts (type),
2909 size_one_node);
2910 }
2911
2912 /* Return, as an INTEGER_CST node, the number of elements for TYPE
2913 (which is an ARRAY_TYPE). This one is a recursive count of all
2914 ARRAY_TYPEs that are clumped together. */
2915
2916 tree
2917 array_type_nelts_total (tree type)
2918 {
2919 tree sz = array_type_nelts_top (type);
2920 type = TREE_TYPE (type);
2921 while (TREE_CODE (type) == ARRAY_TYPE)
2922 {
2923 tree n = array_type_nelts_top (type);
2924 sz = fold_build2_loc (input_location,
2925 MULT_EXPR, sizetype, sz, n);
2926 type = TREE_TYPE (type);
2927 }
2928 return sz;
2929 }
2930
2931 struct bot_data
2932 {
2933 splay_tree target_remap;
2934 bool clear_location;
2935 };
2936
2937 /* Called from break_out_target_exprs via mapcar. */
2938
2939 static tree
2940 bot_manip (tree* tp, int* walk_subtrees, void* data_)
2941 {
2942 bot_data &data = *(bot_data*)data_;
2943 splay_tree target_remap = data.target_remap;
2944 tree t = *tp;
2945
2946 if (!TYPE_P (t) && TREE_CONSTANT (t) && !TREE_SIDE_EFFECTS (t))
2947 {
2948 /* There can't be any TARGET_EXPRs or their slot variables below this
2949 point. But we must make a copy, in case subsequent processing
2950 alters any part of it. For example, during gimplification a cast
2951 of the form (T) &X::f (where "f" is a member function) will lead
2952 to replacing the PTRMEM_CST for &X::f with a VAR_DECL. */
2953 *walk_subtrees = 0;
2954 *tp = unshare_expr (t);
2955 return NULL_TREE;
2956 }
2957 if (TREE_CODE (t) == TARGET_EXPR)
2958 {
2959 tree u;
2960
2961 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
2962 {
2963 u = build_cplus_new (TREE_TYPE (t), TREE_OPERAND (t, 1),
2964 tf_warning_or_error);
2965 if (u == error_mark_node)
2966 return u;
2967 if (AGGR_INIT_ZERO_FIRST (TREE_OPERAND (t, 1)))
2968 AGGR_INIT_ZERO_FIRST (TREE_OPERAND (u, 1)) = true;
2969 }
2970 else
2971 u = build_target_expr_with_type (TREE_OPERAND (t, 1), TREE_TYPE (t),
2972 tf_warning_or_error);
2973
2974 TARGET_EXPR_IMPLICIT_P (u) = TARGET_EXPR_IMPLICIT_P (t);
2975 TARGET_EXPR_LIST_INIT_P (u) = TARGET_EXPR_LIST_INIT_P (t);
2976 TARGET_EXPR_DIRECT_INIT_P (u) = TARGET_EXPR_DIRECT_INIT_P (t);
2977
2978 /* Map the old variable to the new one. */
2979 splay_tree_insert (target_remap,
2980 (splay_tree_key) TREE_OPERAND (t, 0),
2981 (splay_tree_value) TREE_OPERAND (u, 0));
2982
2983 TREE_OPERAND (u, 1) = break_out_target_exprs (TREE_OPERAND (u, 1),
2984 data.clear_location);
2985 if (TREE_OPERAND (u, 1) == error_mark_node)
2986 return error_mark_node;
2987
2988 /* Replace the old expression with the new version. */
2989 *tp = u;
2990 /* We don't have to go below this point; the recursive call to
2991 break_out_target_exprs will have handled anything below this
2992 point. */
2993 *walk_subtrees = 0;
2994 return NULL_TREE;
2995 }
2996 if (TREE_CODE (*tp) == SAVE_EXPR)
2997 {
2998 t = *tp;
2999 splay_tree_node n = splay_tree_lookup (target_remap,
3000 (splay_tree_key) t);
3001 if (n)
3002 {
3003 *tp = (tree)n->value;
3004 *walk_subtrees = 0;
3005 }
3006 else
3007 {
3008 copy_tree_r (tp, walk_subtrees, NULL);
3009 splay_tree_insert (target_remap,
3010 (splay_tree_key)t,
3011 (splay_tree_value)*tp);
3012 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
3013 splay_tree_insert (target_remap,
3014 (splay_tree_key)*tp,
3015 (splay_tree_value)*tp);
3016 }
3017 return NULL_TREE;
3018 }
3019
3020 /* Make a copy of this node. */
3021 t = copy_tree_r (tp, walk_subtrees, NULL);
3022 if (TREE_CODE (*tp) == CALL_EXPR || TREE_CODE (*tp) == AGGR_INIT_EXPR)
3023 if (!processing_template_decl)
3024 set_flags_from_callee (*tp);
3025 if (data.clear_location && EXPR_HAS_LOCATION (*tp))
3026 SET_EXPR_LOCATION (*tp, input_location);
3027 return t;
3028 }
3029
3030 /* Replace all remapped VAR_DECLs in T with their new equivalents.
3031 DATA is really a splay-tree mapping old variables to new
3032 variables. */
3033
3034 static tree
3035 bot_replace (tree* t, int* /*walk_subtrees*/, void* data_)
3036 {
3037 bot_data &data = *(bot_data*)data_;
3038 splay_tree target_remap = data.target_remap;
3039
3040 if (VAR_P (*t))
3041 {
3042 splay_tree_node n = splay_tree_lookup (target_remap,
3043 (splay_tree_key) *t);
3044 if (n)
3045 *t = (tree) n->value;
3046 }
3047 else if (TREE_CODE (*t) == PARM_DECL
3048 && DECL_NAME (*t) == this_identifier
3049 && !DECL_CONTEXT (*t))
3050 {
3051 /* In an NSDMI we need to replace the 'this' parameter we used for
3052 parsing with the real one for this function. */
3053 *t = current_class_ptr;
3054 }
3055 else if (TREE_CODE (*t) == CONVERT_EXPR
3056 && CONVERT_EXPR_VBASE_PATH (*t))
3057 {
3058 /* In an NSDMI build_base_path defers building conversions to virtual
3059 bases, and we handle it here. */
3060 tree basetype = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (*t)));
3061 vec<tree, va_gc> *vbases = CLASSTYPE_VBASECLASSES (current_class_type);
3062 int i; tree binfo;
3063 FOR_EACH_VEC_SAFE_ELT (vbases, i, binfo)
3064 if (BINFO_TYPE (binfo) == basetype)
3065 break;
3066 *t = build_base_path (PLUS_EXPR, TREE_OPERAND (*t, 0), binfo, true,
3067 tf_warning_or_error);
3068 }
3069
3070 return NULL_TREE;
3071 }
3072
3073 /* When we parse a default argument expression, we may create
3074 temporary variables via TARGET_EXPRs. When we actually use the
3075 default-argument expression, we make a copy of the expression
3076 and replace the temporaries with appropriate local versions.
3077
3078 If CLEAR_LOCATION is true, override any EXPR_LOCATION with
3079 input_location. */
3080
3081 tree
3082 break_out_target_exprs (tree t, bool clear_location /* = false */)
3083 {
3084 static int target_remap_count;
3085 static splay_tree target_remap;
3086
3087 if (!target_remap_count++)
3088 target_remap = splay_tree_new (splay_tree_compare_pointers,
3089 /*splay_tree_delete_key_fn=*/NULL,
3090 /*splay_tree_delete_value_fn=*/NULL);
3091 bot_data data = { target_remap, clear_location };
3092 if (cp_walk_tree (&t, bot_manip, &data, NULL) == error_mark_node)
3093 t = error_mark_node;
3094 cp_walk_tree (&t, bot_replace, &data, NULL);
3095
3096 if (!--target_remap_count)
3097 {
3098 splay_tree_delete (target_remap);
3099 target_remap = NULL;
3100 }
3101
3102 return t;
3103 }
3104
3105 /* Build an expression for the subobject of OBJ at CONSTRUCTOR index INDEX,
3106 which we expect to have type TYPE. */
3107
3108 tree
3109 build_ctor_subob_ref (tree index, tree type, tree obj)
3110 {
3111 if (index == NULL_TREE)
3112 /* Can't refer to a particular member of a vector. */
3113 obj = NULL_TREE;
3114 else if (TREE_CODE (index) == INTEGER_CST)
3115 obj = cp_build_array_ref (input_location, obj, index, tf_none);
3116 else
3117 obj = build_class_member_access_expr (obj, index, NULL_TREE,
3118 /*reference*/false, tf_none);
3119 if (obj)
3120 {
3121 tree objtype = TREE_TYPE (obj);
3122 if (TREE_CODE (objtype) == ARRAY_TYPE && !TYPE_DOMAIN (objtype))
3123 {
3124 /* When the destination object refers to a flexible array member
3125 verify that it matches the type of the source object except
3126 for its domain and qualifiers. */
3127 gcc_assert (comptypes (TYPE_MAIN_VARIANT (type),
3128 TYPE_MAIN_VARIANT (objtype),
3129 COMPARE_REDECLARATION));
3130 }
3131 else
3132 gcc_assert (same_type_ignoring_top_level_qualifiers_p (type, objtype));
3133 }
3134
3135 return obj;
3136 }
3137
3138 struct replace_placeholders_t
3139 {
3140 tree obj; /* The object to be substituted for a PLACEHOLDER_EXPR. */
3141 tree exp; /* The outermost exp. */
3142 bool seen; /* Whether we've encountered a PLACEHOLDER_EXPR. */
3143 hash_set<tree> *pset; /* To avoid walking same trees multiple times. */
3144 };
3145
3146 /* Like substitute_placeholder_in_expr, but handle C++ tree codes and
3147 build up subexpressions as we go deeper. */
3148
3149 static tree
3150 replace_placeholders_r (tree* t, int* walk_subtrees, void* data_)
3151 {
3152 replace_placeholders_t *d = static_cast<replace_placeholders_t*>(data_);
3153 tree obj = d->obj;
3154
3155 if (TYPE_P (*t) || TREE_CONSTANT (*t))
3156 {
3157 *walk_subtrees = false;
3158 return NULL_TREE;
3159 }
3160
3161 switch (TREE_CODE (*t))
3162 {
3163 case PLACEHOLDER_EXPR:
3164 {
3165 tree x = obj;
3166 for (; !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (*t),
3167 TREE_TYPE (x));
3168 x = TREE_OPERAND (x, 0))
3169 gcc_assert (handled_component_p (x));
3170 *t = unshare_expr (x);
3171 *walk_subtrees = false;
3172 d->seen = true;
3173 }
3174 break;
3175
3176 case CONSTRUCTOR:
3177 {
3178 constructor_elt *ce;
3179 vec<constructor_elt,va_gc> *v = CONSTRUCTOR_ELTS (*t);
3180 /* Don't walk into CONSTRUCTOR_PLACEHOLDER_BOUNDARY ctors
3181 other than the d->exp one, those have PLACEHOLDER_EXPRs
3182 related to another object. */
3183 if ((CONSTRUCTOR_PLACEHOLDER_BOUNDARY (*t)
3184 && *t != d->exp)
3185 || d->pset->add (*t))
3186 {
3187 *walk_subtrees = false;
3188 return NULL_TREE;
3189 }
3190 for (unsigned i = 0; vec_safe_iterate (v, i, &ce); ++i)
3191 {
3192 tree *valp = &ce->value;
3193 tree type = TREE_TYPE (*valp);
3194 tree subob = obj;
3195
3196 /* Elements with RANGE_EXPR index shouldn't have any
3197 placeholders in them. */
3198 if (ce->index && TREE_CODE (ce->index) == RANGE_EXPR)
3199 continue;
3200
3201 if (TREE_CODE (*valp) == CONSTRUCTOR
3202 && AGGREGATE_TYPE_P (type))
3203 {
3204 /* If we're looking at the initializer for OBJ, then build
3205 a sub-object reference. If we're looking at an
3206 initializer for another object, just pass OBJ down. */
3207 if (same_type_ignoring_top_level_qualifiers_p
3208 (TREE_TYPE (*t), TREE_TYPE (obj)))
3209 subob = build_ctor_subob_ref (ce->index, type, obj);
3210 if (TREE_CODE (*valp) == TARGET_EXPR)
3211 valp = &TARGET_EXPR_INITIAL (*valp);
3212 }
3213 d->obj = subob;
3214 cp_walk_tree (valp, replace_placeholders_r, data_, NULL);
3215 d->obj = obj;
3216 }
3217 *walk_subtrees = false;
3218 break;
3219 }
3220
3221 default:
3222 if (d->pset->add (*t))
3223 *walk_subtrees = false;
3224 break;
3225 }
3226
3227 return NULL_TREE;
3228 }
3229
3230 /* Replace PLACEHOLDER_EXPRs in EXP with object OBJ. SEEN_P is set if
3231 a PLACEHOLDER_EXPR has been encountered. */
3232
3233 tree
3234 replace_placeholders (tree exp, tree obj, bool *seen_p /*= NULL*/)
3235 {
3236 /* This is only relevant for C++14. */
3237 if (cxx_dialect < cxx14)
3238 return exp;
3239
3240 /* If the object isn't a (member of a) class, do nothing. */
3241 tree op0 = obj;
3242 while (handled_component_p (op0))
3243 op0 = TREE_OPERAND (op0, 0);
3244 if (!CLASS_TYPE_P (strip_array_types (TREE_TYPE (op0))))
3245 return exp;
3246
3247 tree *tp = &exp;
3248 if (TREE_CODE (exp) == TARGET_EXPR)
3249 tp = &TARGET_EXPR_INITIAL (exp);
3250 hash_set<tree> pset;
3251 replace_placeholders_t data = { obj, *tp, false, &pset };
3252 cp_walk_tree (tp, replace_placeholders_r, &data, NULL);
3253 if (seen_p)
3254 *seen_p = data.seen;
3255 return exp;
3256 }
3257
3258 /* Callback function for find_placeholders. */
3259
3260 static tree
3261 find_placeholders_r (tree *t, int *walk_subtrees, void *)
3262 {
3263 if (TYPE_P (*t) || TREE_CONSTANT (*t))
3264 {
3265 *walk_subtrees = false;
3266 return NULL_TREE;
3267 }
3268
3269 switch (TREE_CODE (*t))
3270 {
3271 case PLACEHOLDER_EXPR:
3272 return *t;
3273
3274 case CONSTRUCTOR:
3275 if (CONSTRUCTOR_PLACEHOLDER_BOUNDARY (*t))
3276 *walk_subtrees = false;
3277 break;
3278
3279 default:
3280 break;
3281 }
3282
3283 return NULL_TREE;
3284 }
3285
3286 /* Return true if EXP contains a PLACEHOLDER_EXPR. Don't walk into
3287 ctors with CONSTRUCTOR_PLACEHOLDER_BOUNDARY flag set. */
3288
3289 bool
3290 find_placeholders (tree exp)
3291 {
3292 /* This is only relevant for C++14. */
3293 if (cxx_dialect < cxx14)
3294 return false;
3295
3296 return cp_walk_tree_without_duplicates (&exp, find_placeholders_r, NULL);
3297 }
3298
3299 /* Similar to `build_nt', but for template definitions of dependent
3300 expressions */
3301
3302 tree
3303 build_min_nt_loc (location_t loc, enum tree_code code, ...)
3304 {
3305 tree t;
3306 int length;
3307 int i;
3308 va_list p;
3309
3310 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3311
3312 va_start (p, code);
3313
3314 t = make_node (code);
3315 SET_EXPR_LOCATION (t, loc);
3316 length = TREE_CODE_LENGTH (code);
3317
3318 for (i = 0; i < length; i++)
3319 TREE_OPERAND (t, i) = va_arg (p, tree);
3320
3321 va_end (p);
3322 return t;
3323 }
3324
3325 /* Similar to `build', but for template definitions. */
3326
3327 tree
3328 build_min (enum tree_code code, tree tt, ...)
3329 {
3330 tree t;
3331 int length;
3332 int i;
3333 va_list p;
3334
3335 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3336
3337 va_start (p, tt);
3338
3339 t = make_node (code);
3340 length = TREE_CODE_LENGTH (code);
3341 TREE_TYPE (t) = tt;
3342
3343 for (i = 0; i < length; i++)
3344 {
3345 tree x = va_arg (p, tree);
3346 TREE_OPERAND (t, i) = x;
3347 if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
3348 TREE_SIDE_EFFECTS (t) = 1;
3349 }
3350
3351 va_end (p);
3352
3353 return t;
3354 }
3355
3356 /* Similar to `build', but for template definitions of non-dependent
3357 expressions. NON_DEP is the non-dependent expression that has been
3358 built. */
3359
3360 tree
3361 build_min_non_dep (enum tree_code code, tree non_dep, ...)
3362 {
3363 tree t;
3364 int length;
3365 int i;
3366 va_list p;
3367
3368 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3369
3370 va_start (p, non_dep);
3371
3372 if (REFERENCE_REF_P (non_dep))
3373 non_dep = TREE_OPERAND (non_dep, 0);
3374
3375 t = make_node (code);
3376 SET_EXPR_LOCATION (t, cp_expr_loc_or_input_loc (non_dep));
3377 length = TREE_CODE_LENGTH (code);
3378 TREE_TYPE (t) = unlowered_expr_type (non_dep);
3379 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
3380
3381 for (i = 0; i < length; i++)
3382 TREE_OPERAND (t, i) = va_arg (p, tree);
3383
3384 if (code == COMPOUND_EXPR && TREE_CODE (non_dep) != COMPOUND_EXPR)
3385 /* This should not be considered a COMPOUND_EXPR, because it
3386 resolves to an overload. */
3387 COMPOUND_EXPR_OVERLOADED (t) = 1;
3388
3389 va_end (p);
3390 return convert_from_reference (t);
3391 }
3392
3393 /* Similar to build_min_nt, but call expressions */
3394
3395 tree
3396 build_min_nt_call_vec (tree fn, vec<tree, va_gc> *args)
3397 {
3398 tree ret, t;
3399 unsigned int ix;
3400
3401 ret = build_vl_exp (CALL_EXPR, vec_safe_length (args) + 3);
3402 CALL_EXPR_FN (ret) = fn;
3403 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
3404 FOR_EACH_VEC_SAFE_ELT (args, ix, t)
3405 CALL_EXPR_ARG (ret, ix) = t;
3406
3407 return ret;
3408 }
3409
3410 /* Similar to `build_min_nt_call_vec', but for template definitions of
3411 non-dependent expressions. NON_DEP is the non-dependent expression
3412 that has been built. */
3413
3414 tree
3415 build_min_non_dep_call_vec (tree non_dep, tree fn, vec<tree, va_gc> *argvec)
3416 {
3417 tree t = build_min_nt_call_vec (fn, argvec);
3418 if (REFERENCE_REF_P (non_dep))
3419 non_dep = TREE_OPERAND (non_dep, 0);
3420 TREE_TYPE (t) = TREE_TYPE (non_dep);
3421 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
3422 return convert_from_reference (t);
3423 }
3424
3425 /* Similar to build_min_non_dep, but for expressions that have been resolved to
3426 a call to an operator overload. OP is the operator that has been
3427 overloaded. NON_DEP is the non-dependent expression that's been built,
3428 which should be a CALL_EXPR or an INDIRECT_REF to a CALL_EXPR. OVERLOAD is
3429 the overload that NON_DEP is calling. */
3430
3431 tree
3432 build_min_non_dep_op_overload (enum tree_code op,
3433 tree non_dep,
3434 tree overload, ...)
3435 {
3436 va_list p;
3437 int nargs, expected_nargs;
3438 tree fn, call;
3439
3440 non_dep = extract_call_expr (non_dep);
3441
3442 nargs = call_expr_nargs (non_dep);
3443
3444 expected_nargs = cp_tree_code_length (op);
3445 if ((op == POSTINCREMENT_EXPR
3446 || op == POSTDECREMENT_EXPR)
3447 /* With -fpermissive non_dep could be operator++(). */
3448 && (!flag_permissive || nargs != expected_nargs))
3449 expected_nargs += 1;
3450 gcc_assert (nargs == expected_nargs);
3451
3452 releasing_vec args;
3453 va_start (p, overload);
3454
3455 if (TREE_CODE (TREE_TYPE (overload)) == FUNCTION_TYPE)
3456 {
3457 fn = overload;
3458 for (int i = 0; i < nargs; i++)
3459 {
3460 tree arg = va_arg (p, tree);
3461 vec_safe_push (args, arg);
3462 }
3463 }
3464 else if (TREE_CODE (TREE_TYPE (overload)) == METHOD_TYPE)
3465 {
3466 tree object = va_arg (p, tree);
3467 tree binfo = TYPE_BINFO (TREE_TYPE (object));
3468 tree method = build_baselink (binfo, binfo, overload, NULL_TREE);
3469 fn = build_min (COMPONENT_REF, TREE_TYPE (overload),
3470 object, method, NULL_TREE);
3471 for (int i = 1; i < nargs; i++)
3472 {
3473 tree arg = va_arg (p, tree);
3474 vec_safe_push (args, arg);
3475 }
3476 }
3477 else
3478 gcc_unreachable ();
3479
3480 va_end (p);
3481 call = build_min_non_dep_call_vec (non_dep, fn, args);
3482
3483 tree call_expr = extract_call_expr (call);
3484 KOENIG_LOOKUP_P (call_expr) = KOENIG_LOOKUP_P (non_dep);
3485 CALL_EXPR_OPERATOR_SYNTAX (call_expr) = true;
3486 CALL_EXPR_ORDERED_ARGS (call_expr) = CALL_EXPR_ORDERED_ARGS (non_dep);
3487 CALL_EXPR_REVERSE_ARGS (call_expr) = CALL_EXPR_REVERSE_ARGS (non_dep);
3488
3489 return call;
3490 }
3491
3492 /* Return a new tree vec copied from VEC, with ELT inserted at index IDX. */
3493
3494 vec<tree, va_gc> *
3495 vec_copy_and_insert (vec<tree, va_gc> *old_vec, tree elt, unsigned idx)
3496 {
3497 unsigned len = vec_safe_length (old_vec);
3498 gcc_assert (idx <= len);
3499
3500 vec<tree, va_gc> *new_vec = NULL;
3501 vec_alloc (new_vec, len + 1);
3502
3503 unsigned i;
3504 for (i = 0; i < len; ++i)
3505 {
3506 if (i == idx)
3507 new_vec->quick_push (elt);
3508 new_vec->quick_push ((*old_vec)[i]);
3509 }
3510 if (i == idx)
3511 new_vec->quick_push (elt);
3512
3513 return new_vec;
3514 }
3515
3516 tree
3517 get_type_decl (tree t)
3518 {
3519 if (TREE_CODE (t) == TYPE_DECL)
3520 return t;
3521 if (TYPE_P (t))
3522 return TYPE_STUB_DECL (t);
3523 gcc_assert (t == error_mark_node);
3524 return t;
3525 }
3526
3527 /* Returns the namespace that contains DECL, whether directly or
3528 indirectly. */
3529
3530 tree
3531 decl_namespace_context (tree decl)
3532 {
3533 while (1)
3534 {
3535 if (TREE_CODE (decl) == NAMESPACE_DECL)
3536 return decl;
3537 else if (TYPE_P (decl))
3538 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
3539 else
3540 decl = CP_DECL_CONTEXT (decl);
3541 }
3542 }
3543
3544 /* Returns true if decl is within an anonymous namespace, however deeply
3545 nested, or false otherwise. */
3546
3547 bool
3548 decl_anon_ns_mem_p (const_tree decl)
3549 {
3550 while (TREE_CODE (decl) != NAMESPACE_DECL)
3551 {
3552 /* Classes inside anonymous namespaces have TREE_PUBLIC == 0. */
3553 if (TYPE_P (decl))
3554 return !TREE_PUBLIC (TYPE_MAIN_DECL (decl));
3555
3556 decl = CP_DECL_CONTEXT (decl);
3557 }
3558 return !TREE_PUBLIC (decl);
3559 }
3560
3561 /* Subroutine of cp_tree_equal: t1 and t2 are the CALL_EXPR_FNs of two
3562 CALL_EXPRS. Return whether they are equivalent. */
3563
3564 static bool
3565 called_fns_equal (tree t1, tree t2)
3566 {
3567 /* Core 1321: dependent names are equivalent even if the overload sets
3568 are different. But do compare explicit template arguments. */
3569 tree name1 = dependent_name (t1);
3570 tree name2 = dependent_name (t2);
3571 if (name1 || name2)
3572 {
3573 tree targs1 = NULL_TREE, targs2 = NULL_TREE;
3574
3575 if (name1 != name2)
3576 return false;
3577
3578 /* FIXME dependent_name currently returns an unqualified name regardless
3579 of whether the function was named with a qualified- or unqualified-id.
3580 Until that's fixed, check that we aren't looking at overload sets from
3581 different scopes. */
3582 if (is_overloaded_fn (t1) && is_overloaded_fn (t2)
3583 && (DECL_CONTEXT (get_first_fn (t1))
3584 != DECL_CONTEXT (get_first_fn (t2))))
3585 return false;
3586
3587 if (TREE_CODE (t1) == TEMPLATE_ID_EXPR)
3588 targs1 = TREE_OPERAND (t1, 1);
3589 if (TREE_CODE (t2) == TEMPLATE_ID_EXPR)
3590 targs2 = TREE_OPERAND (t2, 1);
3591 return cp_tree_equal (targs1, targs2);
3592 }
3593 else
3594 return cp_tree_equal (t1, t2);
3595 }
3596
3597 /* Return truthvalue of whether T1 is the same tree structure as T2.
3598 Return 1 if they are the same. Return 0 if they are different. */
3599
3600 bool
3601 cp_tree_equal (tree t1, tree t2)
3602 {
3603 enum tree_code code1, code2;
3604
3605 if (t1 == t2)
3606 return true;
3607 if (!t1 || !t2)
3608 return false;
3609
3610 code1 = TREE_CODE (t1);
3611 code2 = TREE_CODE (t2);
3612
3613 if (code1 != code2)
3614 return false;
3615
3616 if (CONSTANT_CLASS_P (t1)
3617 && !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3618 return false;
3619
3620 switch (code1)
3621 {
3622 case VOID_CST:
3623 /* There's only a single VOID_CST node, so we should never reach
3624 here. */
3625 gcc_unreachable ();
3626
3627 case INTEGER_CST:
3628 return tree_int_cst_equal (t1, t2);
3629
3630 case REAL_CST:
3631 return real_equal (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
3632
3633 case STRING_CST:
3634 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3635 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3636 TREE_STRING_LENGTH (t1));
3637
3638 case FIXED_CST:
3639 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1),
3640 TREE_FIXED_CST (t2));
3641
3642 case COMPLEX_CST:
3643 return cp_tree_equal (TREE_REALPART (t1), TREE_REALPART (t2))
3644 && cp_tree_equal (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
3645
3646 case VECTOR_CST:
3647 return operand_equal_p (t1, t2, OEP_ONLY_CONST);
3648
3649 case CONSTRUCTOR:
3650 /* We need to do this when determining whether or not two
3651 non-type pointer to member function template arguments
3652 are the same. */
3653 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
3654 || CONSTRUCTOR_NELTS (t1) != CONSTRUCTOR_NELTS (t2))
3655 return false;
3656 {
3657 tree field, value;
3658 unsigned int i;
3659 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, field, value)
3660 {
3661 constructor_elt *elt2 = CONSTRUCTOR_ELT (t2, i);
3662 if (!cp_tree_equal (field, elt2->index)
3663 || !cp_tree_equal (value, elt2->value))
3664 return false;
3665 }
3666 }
3667 return true;
3668
3669 case TREE_LIST:
3670 if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
3671 return false;
3672 if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
3673 return false;
3674 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
3675
3676 case SAVE_EXPR:
3677 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3678
3679 case CALL_EXPR:
3680 {
3681 tree arg1, arg2;
3682 call_expr_arg_iterator iter1, iter2;
3683 if (KOENIG_LOOKUP_P (t1) != KOENIG_LOOKUP_P (t2)
3684 || !called_fns_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2)))
3685 return false;
3686 for (arg1 = first_call_expr_arg (t1, &iter1),
3687 arg2 = first_call_expr_arg (t2, &iter2);
3688 arg1 && arg2;
3689 arg1 = next_call_expr_arg (&iter1),
3690 arg2 = next_call_expr_arg (&iter2))
3691 if (!cp_tree_equal (arg1, arg2))
3692 return false;
3693 if (arg1 || arg2)
3694 return false;
3695 return true;
3696 }
3697
3698 case TARGET_EXPR:
3699 {
3700 tree o1 = TREE_OPERAND (t1, 0);
3701 tree o2 = TREE_OPERAND (t2, 0);
3702
3703 /* Special case: if either target is an unallocated VAR_DECL,
3704 it means that it's going to be unified with whatever the
3705 TARGET_EXPR is really supposed to initialize, so treat it
3706 as being equivalent to anything. */
3707 if (VAR_P (o1) && DECL_NAME (o1) == NULL_TREE
3708 && !DECL_RTL_SET_P (o1))
3709 /*Nop*/;
3710 else if (VAR_P (o2) && DECL_NAME (o2) == NULL_TREE
3711 && !DECL_RTL_SET_P (o2))
3712 /*Nop*/;
3713 else if (!cp_tree_equal (o1, o2))
3714 return false;
3715
3716 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
3717 }
3718
3719 case PARM_DECL:
3720 /* For comparing uses of parameters in late-specified return types
3721 with an out-of-class definition of the function, but can also come
3722 up for expressions that involve 'this' in a member function
3723 template. */
3724
3725 if (comparing_specializations
3726 && DECL_CONTEXT (t1) != DECL_CONTEXT (t2))
3727 /* When comparing hash table entries, only an exact match is
3728 good enough; we don't want to replace 'this' with the
3729 version from another function. But be more flexible
3730 with parameters with identical contexts. */
3731 return false;
3732
3733 if (same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3734 {
3735 if (DECL_ARTIFICIAL (t1) ^ DECL_ARTIFICIAL (t2))
3736 return false;
3737 if (CONSTRAINT_VAR_P (t1) ^ CONSTRAINT_VAR_P (t2))
3738 return false;
3739 if (DECL_ARTIFICIAL (t1)
3740 || (DECL_PARM_LEVEL (t1) == DECL_PARM_LEVEL (t2)
3741 && DECL_PARM_INDEX (t1) == DECL_PARM_INDEX (t2)))
3742 return true;
3743 }
3744 return false;
3745
3746 case VAR_DECL:
3747 case CONST_DECL:
3748 case FIELD_DECL:
3749 case FUNCTION_DECL:
3750 case TEMPLATE_DECL:
3751 case IDENTIFIER_NODE:
3752 case SSA_NAME:
3753 case USING_DECL:
3754 case DEFERRED_PARSE:
3755 return false;
3756
3757 case BASELINK:
3758 return (BASELINK_BINFO (t1) == BASELINK_BINFO (t2)
3759 && BASELINK_ACCESS_BINFO (t1) == BASELINK_ACCESS_BINFO (t2)
3760 && BASELINK_QUALIFIED_P (t1) == BASELINK_QUALIFIED_P (t2)
3761 && cp_tree_equal (BASELINK_FUNCTIONS (t1),
3762 BASELINK_FUNCTIONS (t2)));
3763
3764 case TEMPLATE_PARM_INDEX:
3765 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
3766 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
3767 && (TEMPLATE_PARM_PARAMETER_PACK (t1)
3768 == TEMPLATE_PARM_PARAMETER_PACK (t2))
3769 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
3770 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
3771
3772 case TEMPLATE_ID_EXPR:
3773 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
3774 return false;
3775 if (!comp_template_args (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)))
3776 return false;
3777 return true;
3778
3779 case CONSTRAINT_INFO:
3780 return cp_tree_equal (CI_ASSOCIATED_CONSTRAINTS (t1),
3781 CI_ASSOCIATED_CONSTRAINTS (t2));
3782
3783 case CHECK_CONSTR:
3784 return (CHECK_CONSTR_CONCEPT (t1) == CHECK_CONSTR_CONCEPT (t2)
3785 && comp_template_args (CHECK_CONSTR_ARGS (t1),
3786 CHECK_CONSTR_ARGS (t2)));
3787
3788 case TREE_VEC:
3789 {
3790 unsigned ix;
3791 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3792 return false;
3793 for (ix = TREE_VEC_LENGTH (t1); ix--;)
3794 if (!cp_tree_equal (TREE_VEC_ELT (t1, ix),
3795 TREE_VEC_ELT (t2, ix)))
3796 return false;
3797 return true;
3798 }
3799
3800 case SIZEOF_EXPR:
3801 case ALIGNOF_EXPR:
3802 {
3803 tree o1 = TREE_OPERAND (t1, 0);
3804 tree o2 = TREE_OPERAND (t2, 0);
3805
3806 if (code1 == SIZEOF_EXPR)
3807 {
3808 if (SIZEOF_EXPR_TYPE_P (t1))
3809 o1 = TREE_TYPE (o1);
3810 if (SIZEOF_EXPR_TYPE_P (t2))
3811 o2 = TREE_TYPE (o2);
3812 }
3813
3814 if (TREE_CODE (o1) != TREE_CODE (o2))
3815 return false;
3816
3817 if (ARGUMENT_PACK_P (o1))
3818 return template_args_equal (o1, o2);
3819 else if (TYPE_P (o1))
3820 return same_type_p (o1, o2);
3821 else
3822 return cp_tree_equal (o1, o2);
3823 }
3824
3825 case MODOP_EXPR:
3826 {
3827 tree t1_op1, t2_op1;
3828
3829 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
3830 return false;
3831
3832 t1_op1 = TREE_OPERAND (t1, 1);
3833 t2_op1 = TREE_OPERAND (t2, 1);
3834 if (TREE_CODE (t1_op1) != TREE_CODE (t2_op1))
3835 return false;
3836
3837 return cp_tree_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t2, 2));
3838 }
3839
3840 case PTRMEM_CST:
3841 /* Two pointer-to-members are the same if they point to the same
3842 field or function in the same class. */
3843 if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
3844 return false;
3845
3846 return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
3847
3848 case OVERLOAD:
3849 {
3850 /* Two overloads. Must be exactly the same set of decls. */
3851 lkp_iterator first (t1);
3852 lkp_iterator second (t2);
3853
3854 for (; first && second; ++first, ++second)
3855 if (*first != *second)
3856 return false;
3857 return !(first || second);
3858 }
3859
3860 case TRAIT_EXPR:
3861 if (TRAIT_EXPR_KIND (t1) != TRAIT_EXPR_KIND (t2))
3862 return false;
3863 return same_type_p (TRAIT_EXPR_TYPE1 (t1), TRAIT_EXPR_TYPE1 (t2))
3864 && cp_tree_equal (TRAIT_EXPR_TYPE2 (t1), TRAIT_EXPR_TYPE2 (t2));
3865
3866 case CAST_EXPR:
3867 case STATIC_CAST_EXPR:
3868 case REINTERPRET_CAST_EXPR:
3869 case CONST_CAST_EXPR:
3870 case DYNAMIC_CAST_EXPR:
3871 case IMPLICIT_CONV_EXPR:
3872 case NEW_EXPR:
3873 CASE_CONVERT:
3874 case NON_LVALUE_EXPR:
3875 case VIEW_CONVERT_EXPR:
3876 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
3877 return false;
3878 /* Now compare operands as usual. */
3879 break;
3880
3881 case DEFERRED_NOEXCEPT:
3882 return (cp_tree_equal (DEFERRED_NOEXCEPT_PATTERN (t1),
3883 DEFERRED_NOEXCEPT_PATTERN (t2))
3884 && comp_template_args (DEFERRED_NOEXCEPT_ARGS (t1),
3885 DEFERRED_NOEXCEPT_ARGS (t2)));
3886
3887 case LAMBDA_EXPR:
3888 /* Two lambda-expressions are never considered equivalent. */
3889 return false;
3890
3891 case TYPE_ARGUMENT_PACK:
3892 case NONTYPE_ARGUMENT_PACK:
3893 {
3894 tree p1 = ARGUMENT_PACK_ARGS (t1);
3895 tree p2 = ARGUMENT_PACK_ARGS (t2);
3896 int len = TREE_VEC_LENGTH (p1);
3897 if (TREE_VEC_LENGTH (p2) != len)
3898 return false;
3899
3900 for (int ix = 0; ix != len; ix++)
3901 if (!template_args_equal (TREE_VEC_ELT (p1, ix),
3902 TREE_VEC_ELT (p2, ix)))
3903 return false;
3904 return true;
3905 }
3906
3907 case EXPR_PACK_EXPANSION:
3908 if (!cp_tree_equal (PACK_EXPANSION_PATTERN (t1),
3909 PACK_EXPANSION_PATTERN (t2)))
3910 return false;
3911 if (!comp_template_args (PACK_EXPANSION_EXTRA_ARGS (t1),
3912 PACK_EXPANSION_EXTRA_ARGS (t2)))
3913 return false;
3914 return true;
3915
3916 default:
3917 break;
3918 }
3919
3920 switch (TREE_CODE_CLASS (code1))
3921 {
3922 case tcc_unary:
3923 case tcc_binary:
3924 case tcc_comparison:
3925 case tcc_expression:
3926 case tcc_vl_exp:
3927 case tcc_reference:
3928 case tcc_statement:
3929 {
3930 int n = cp_tree_operand_length (t1);
3931 if (TREE_CODE_CLASS (code1) == tcc_vl_exp
3932 && n != TREE_OPERAND_LENGTH (t2))
3933 return false;
3934
3935 for (int i = 0; i < n; ++i)
3936 if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
3937 return false;
3938
3939 return true;
3940 }
3941
3942 case tcc_type:
3943 return same_type_p (t1, t2);
3944
3945 default:
3946 gcc_unreachable ();
3947 }
3948
3949 /* We can get here with --disable-checking. */
3950 return false;
3951 }
3952
3953 /* The type of ARG when used as an lvalue. */
3954
3955 tree
3956 lvalue_type (tree arg)
3957 {
3958 tree type = TREE_TYPE (arg);
3959 return type;
3960 }
3961
3962 /* The type of ARG for printing error messages; denote lvalues with
3963 reference types. */
3964
3965 tree
3966 error_type (tree arg)
3967 {
3968 tree type = TREE_TYPE (arg);
3969
3970 if (TREE_CODE (type) == ARRAY_TYPE)
3971 ;
3972 else if (TREE_CODE (type) == ERROR_MARK)
3973 ;
3974 else if (lvalue_p (arg))
3975 type = build_reference_type (lvalue_type (arg));
3976 else if (MAYBE_CLASS_TYPE_P (type))
3977 type = lvalue_type (arg);
3978
3979 return type;
3980 }
3981
3982 /* Does FUNCTION use a variable-length argument list? */
3983
3984 int
3985 varargs_function_p (const_tree function)
3986 {
3987 return stdarg_p (TREE_TYPE (function));
3988 }
3989
3990 /* Returns 1 if decl is a member of a class. */
3991
3992 int
3993 member_p (const_tree decl)
3994 {
3995 const_tree const ctx = DECL_CONTEXT (decl);
3996 return (ctx && TYPE_P (ctx));
3997 }
3998
3999 /* Create a placeholder for member access where we don't actually have an
4000 object that the access is against. */
4001
4002 tree
4003 build_dummy_object (tree type)
4004 {
4005 tree decl = build1 (CONVERT_EXPR, build_pointer_type (type), void_node);
4006 return cp_build_fold_indirect_ref (decl);
4007 }
4008
4009 /* We've gotten a reference to a member of TYPE. Return *this if appropriate,
4010 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
4011 binfo path from current_class_type to TYPE, or 0. */
4012
4013 tree
4014 maybe_dummy_object (tree type, tree* binfop)
4015 {
4016 tree decl, context;
4017 tree binfo;
4018 tree current = current_nonlambda_class_type ();
4019
4020 if (current
4021 && (binfo = lookup_base (current, type, ba_any, NULL,
4022 tf_warning_or_error)))
4023 context = current;
4024 else
4025 {
4026 /* Reference from a nested class member function. */
4027 context = type;
4028 binfo = TYPE_BINFO (type);
4029 }
4030
4031 if (binfop)
4032 *binfop = binfo;
4033
4034 if (current_class_ref
4035 /* current_class_ref might not correspond to current_class_type if
4036 we're in tsubst_default_argument or a lambda-declarator; in either
4037 case, we want to use current_class_ref if it matches CONTEXT. */
4038 && (same_type_ignoring_top_level_qualifiers_p
4039 (TREE_TYPE (current_class_ref), context)))
4040 decl = current_class_ref;
4041 else
4042 decl = build_dummy_object (context);
4043
4044 return decl;
4045 }
4046
4047 /* Returns 1 if OB is a placeholder object, or a pointer to one. */
4048
4049 bool
4050 is_dummy_object (const_tree ob)
4051 {
4052 if (INDIRECT_REF_P (ob))
4053 ob = TREE_OPERAND (ob, 0);
4054 return (TREE_CODE (ob) == CONVERT_EXPR
4055 && TREE_OPERAND (ob, 0) == void_node);
4056 }
4057
4058 /* Returns true if TYPE is a character type or std::byte. */
4059
4060 bool
4061 is_byte_access_type (tree type)
4062 {
4063 type = TYPE_MAIN_VARIANT (type);
4064 if (char_type_p (type))
4065 return true;
4066
4067 return (TREE_CODE (type) == ENUMERAL_TYPE
4068 && TYPE_CONTEXT (type) == std_node
4069 && !strcmp ("byte", TYPE_NAME_STRING (type)));
4070 }
4071
4072 /* Returns 1 iff type T is something we want to treat as a scalar type for
4073 the purpose of deciding whether it is trivial/POD/standard-layout. */
4074
4075 bool
4076 scalarish_type_p (const_tree t)
4077 {
4078 if (t == error_mark_node)
4079 return 1;
4080
4081 return (SCALAR_TYPE_P (t) || VECTOR_TYPE_P (t));
4082 }
4083
4084 /* Returns true iff T requires non-trivial default initialization. */
4085
4086 bool
4087 type_has_nontrivial_default_init (const_tree t)
4088 {
4089 t = strip_array_types (CONST_CAST_TREE (t));
4090
4091 if (CLASS_TYPE_P (t))
4092 return TYPE_HAS_COMPLEX_DFLT (t);
4093 else
4094 return 0;
4095 }
4096
4097 /* Track classes with only deleted copy/move constructors so that we can warn
4098 if they are used in call/return by value. */
4099
4100 static GTY(()) hash_set<tree>* deleted_copy_types;
4101 static void
4102 remember_deleted_copy (const_tree t)
4103 {
4104 if (!deleted_copy_types)
4105 deleted_copy_types = hash_set<tree>::create_ggc(37);
4106 deleted_copy_types->add (CONST_CAST_TREE (t));
4107 }
4108 void
4109 maybe_warn_parm_abi (tree t, location_t loc)
4110 {
4111 if (!deleted_copy_types
4112 || !deleted_copy_types->contains (t))
4113 return;
4114
4115 if ((flag_abi_version == 12 || warn_abi_version == 12)
4116 && classtype_has_non_deleted_move_ctor (t))
4117 {
4118 bool w;
4119 auto_diagnostic_group d;
4120 if (flag_abi_version > 12)
4121 w = warning_at (loc, OPT_Wabi, "%<-fabi-version=13%> (GCC 8.2) fixes "
4122 "the calling convention for %qT, which was "
4123 "accidentally changed in 8.1", t);
4124 else
4125 w = warning_at (loc, OPT_Wabi, "%<-fabi-version=12%> (GCC 8.1) accident"
4126 "ally changes the calling convention for %qT", t);
4127 if (w)
4128 inform (location_of (t), " declared here");
4129 return;
4130 }
4131
4132 auto_diagnostic_group d;
4133 if (warning_at (loc, OPT_Wabi, "the calling convention for %qT changes in "
4134 "%<-fabi-version=13%> (GCC 8.2)", t))
4135 inform (location_of (t), " because all of its copy and move "
4136 "constructors are deleted");
4137 }
4138
4139 /* Returns true iff copying an object of type T (including via move
4140 constructor) is non-trivial. That is, T has no non-trivial copy
4141 constructors and no non-trivial move constructors, and not all copy/move
4142 constructors are deleted. This function implements the ABI notion of
4143 non-trivial copy, which has diverged from the one in the standard. */
4144
4145 bool
4146 type_has_nontrivial_copy_init (const_tree type)
4147 {
4148 tree t = strip_array_types (CONST_CAST_TREE (type));
4149
4150 if (CLASS_TYPE_P (t))
4151 {
4152 gcc_assert (COMPLETE_TYPE_P (t));
4153
4154 if (TYPE_HAS_COMPLEX_COPY_CTOR (t)
4155 || TYPE_HAS_COMPLEX_MOVE_CTOR (t))
4156 /* Nontrivial. */
4157 return true;
4158
4159 if (cxx_dialect < cxx11)
4160 /* No deleted functions before C++11. */
4161 return false;
4162
4163 /* Before ABI v12 we did a bitwise copy of types with only deleted
4164 copy/move constructors. */
4165 if (!abi_version_at_least (12)
4166 && !(warn_abi && abi_version_crosses (12)))
4167 return false;
4168
4169 bool saw_copy = false;
4170 bool saw_non_deleted = false;
4171 bool saw_non_deleted_move = false;
4172
4173 if (CLASSTYPE_LAZY_MOVE_CTOR (t))
4174 saw_copy = saw_non_deleted = true;
4175 else if (CLASSTYPE_LAZY_COPY_CTOR (t))
4176 {
4177 saw_copy = true;
4178 if (classtype_has_move_assign_or_move_ctor_p (t, true))
4179 /* [class.copy]/8 If the class definition declares a move
4180 constructor or move assignment operator, the implicitly declared
4181 copy constructor is defined as deleted.... */;
4182 else
4183 /* Any other reason the implicitly-declared function would be
4184 deleted would also cause TYPE_HAS_COMPLEX_COPY_CTOR to be
4185 set. */
4186 saw_non_deleted = true;
4187 }
4188
4189 if (!saw_non_deleted)
4190 for (ovl_iterator iter (CLASSTYPE_CONSTRUCTORS (t)); iter; ++iter)
4191 {
4192 tree fn = *iter;
4193 if (copy_fn_p (fn))
4194 {
4195 saw_copy = true;
4196 if (!DECL_DELETED_FN (fn))
4197 {
4198 /* Not deleted, therefore trivial. */
4199 saw_non_deleted = true;
4200 break;
4201 }
4202 }
4203 else if (move_fn_p (fn))
4204 if (!DECL_DELETED_FN (fn))
4205 saw_non_deleted_move = true;
4206 }
4207
4208 gcc_assert (saw_copy);
4209
4210 /* ABI v12 buggily ignored move constructors. */
4211 bool v11nontriv = false;
4212 bool v12nontriv = !saw_non_deleted;
4213 bool v13nontriv = !saw_non_deleted && !saw_non_deleted_move;
4214 bool nontriv = (abi_version_at_least (13) ? v13nontriv
4215 : flag_abi_version == 12 ? v12nontriv
4216 : v11nontriv);
4217 bool warn_nontriv = (warn_abi_version >= 13 ? v13nontriv
4218 : warn_abi_version == 12 ? v12nontriv
4219 : v11nontriv);
4220 if (nontriv != warn_nontriv)
4221 remember_deleted_copy (t);
4222
4223 return nontriv;
4224 }
4225 else
4226 return 0;
4227 }
4228
4229 /* Returns 1 iff type T is a trivially copyable type, as defined in
4230 [basic.types] and [class]. */
4231
4232 bool
4233 trivially_copyable_p (const_tree t)
4234 {
4235 t = strip_array_types (CONST_CAST_TREE (t));
4236
4237 if (CLASS_TYPE_P (t))
4238 return ((!TYPE_HAS_COPY_CTOR (t)
4239 || !TYPE_HAS_COMPLEX_COPY_CTOR (t))
4240 && !TYPE_HAS_COMPLEX_MOVE_CTOR (t)
4241 && (!TYPE_HAS_COPY_ASSIGN (t)
4242 || !TYPE_HAS_COMPLEX_COPY_ASSIGN (t))
4243 && !TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
4244 && TYPE_HAS_TRIVIAL_DESTRUCTOR (t));
4245 else
4246 /* CWG 2094 makes volatile-qualified scalars trivially copyable again. */
4247 return scalarish_type_p (t);
4248 }
4249
4250 /* Returns 1 iff type T is a trivial type, as defined in [basic.types] and
4251 [class]. */
4252
4253 bool
4254 trivial_type_p (const_tree t)
4255 {
4256 t = strip_array_types (CONST_CAST_TREE (t));
4257
4258 if (CLASS_TYPE_P (t))
4259 return (TYPE_HAS_TRIVIAL_DFLT (t)
4260 && trivially_copyable_p (t));
4261 else
4262 return scalarish_type_p (t);
4263 }
4264
4265 /* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
4266
4267 bool
4268 pod_type_p (const_tree t)
4269 {
4270 /* This CONST_CAST is okay because strip_array_types returns its
4271 argument unmodified and we assign it to a const_tree. */
4272 t = strip_array_types (CONST_CAST_TREE(t));
4273
4274 if (!CLASS_TYPE_P (t))
4275 return scalarish_type_p (t);
4276 else if (cxx_dialect > cxx98)
4277 /* [class]/10: A POD struct is a class that is both a trivial class and a
4278 standard-layout class, and has no non-static data members of type
4279 non-POD struct, non-POD union (or array of such types).
4280
4281 We don't need to check individual members because if a member is
4282 non-std-layout or non-trivial, the class will be too. */
4283 return (std_layout_type_p (t) && trivial_type_p (t));
4284 else
4285 /* The C++98 definition of POD is different. */
4286 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
4287 }
4288
4289 /* Returns true iff T is POD for the purpose of layout, as defined in the
4290 C++ ABI. */
4291
4292 bool
4293 layout_pod_type_p (const_tree t)
4294 {
4295 t = strip_array_types (CONST_CAST_TREE (t));
4296
4297 if (CLASS_TYPE_P (t))
4298 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
4299 else
4300 return scalarish_type_p (t);
4301 }
4302
4303 /* Returns true iff T is a standard-layout type, as defined in
4304 [basic.types]. */
4305
4306 bool
4307 std_layout_type_p (const_tree t)
4308 {
4309 t = strip_array_types (CONST_CAST_TREE (t));
4310
4311 if (CLASS_TYPE_P (t))
4312 return !CLASSTYPE_NON_STD_LAYOUT (t);
4313 else
4314 return scalarish_type_p (t);
4315 }
4316
4317 static bool record_has_unique_obj_representations (const_tree, const_tree);
4318
4319 /* Returns true iff T satisfies std::has_unique_object_representations<T>,
4320 as defined in [meta.unary.prop]. */
4321
4322 bool
4323 type_has_unique_obj_representations (const_tree t)
4324 {
4325 bool ret;
4326
4327 t = strip_array_types (CONST_CAST_TREE (t));
4328
4329 if (!trivially_copyable_p (t))
4330 return false;
4331
4332 if (CLASS_TYPE_P (t) && CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t))
4333 return CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t);
4334
4335 switch (TREE_CODE (t))
4336 {
4337 case INTEGER_TYPE:
4338 case POINTER_TYPE:
4339 case REFERENCE_TYPE:
4340 /* If some backend has any paddings in these types, we should add
4341 a target hook for this and handle it there. */
4342 return true;
4343
4344 case BOOLEAN_TYPE:
4345 /* For bool values other than 0 and 1 should only appear with
4346 undefined behavior. */
4347 return true;
4348
4349 case ENUMERAL_TYPE:
4350 return type_has_unique_obj_representations (ENUM_UNDERLYING_TYPE (t));
4351
4352 case REAL_TYPE:
4353 /* XFmode certainly contains padding on x86, which the CPU doesn't store
4354 when storing long double values, so for that we have to return false.
4355 Other kinds of floating point values are questionable due to +.0/-.0
4356 and NaNs, let's play safe for now. */
4357 return false;
4358
4359 case FIXED_POINT_TYPE:
4360 return false;
4361
4362 case OFFSET_TYPE:
4363 return true;
4364
4365 case COMPLEX_TYPE:
4366 case VECTOR_TYPE:
4367 return type_has_unique_obj_representations (TREE_TYPE (t));
4368
4369 case RECORD_TYPE:
4370 ret = record_has_unique_obj_representations (t, TYPE_SIZE (t));
4371 if (CLASS_TYPE_P (t))
4372 {
4373 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t) = 1;
4374 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t) = ret;
4375 }
4376 return ret;
4377
4378 case UNION_TYPE:
4379 ret = true;
4380 bool any_fields;
4381 any_fields = false;
4382 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4383 if (TREE_CODE (field) == FIELD_DECL)
4384 {
4385 any_fields = true;
4386 if (!type_has_unique_obj_representations (TREE_TYPE (field))
4387 || simple_cst_equal (DECL_SIZE (field), TYPE_SIZE (t)) != 1)
4388 {
4389 ret = false;
4390 break;
4391 }
4392 }
4393 if (!any_fields && !integer_zerop (TYPE_SIZE (t)))
4394 ret = false;
4395 if (CLASS_TYPE_P (t))
4396 {
4397 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS_SET (t) = 1;
4398 CLASSTYPE_UNIQUE_OBJ_REPRESENTATIONS (t) = ret;
4399 }
4400 return ret;
4401
4402 case NULLPTR_TYPE:
4403 return false;
4404
4405 case ERROR_MARK:
4406 return false;
4407
4408 default:
4409 gcc_unreachable ();
4410 }
4411 }
4412
4413 /* Helper function for type_has_unique_obj_representations. */
4414
4415 static bool
4416 record_has_unique_obj_representations (const_tree t, const_tree sz)
4417 {
4418 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4419 if (TREE_CODE (field) != FIELD_DECL)
4420 ;
4421 /* For bases, can't use type_has_unique_obj_representations here, as in
4422 struct S { int i : 24; S (); };
4423 struct T : public S { int j : 8; T (); };
4424 S doesn't have unique obj representations, but T does. */
4425 else if (DECL_FIELD_IS_BASE (field))
4426 {
4427 if (!record_has_unique_obj_representations (TREE_TYPE (field),
4428 DECL_SIZE (field)))
4429 return false;
4430 }
4431 else if (DECL_C_BIT_FIELD (field))
4432 {
4433 tree btype = DECL_BIT_FIELD_TYPE (field);
4434 if (!type_has_unique_obj_representations (btype))
4435 return false;
4436 }
4437 else if (!type_has_unique_obj_representations (TREE_TYPE (field)))
4438 return false;
4439
4440 offset_int cur = 0;
4441 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4442 if (TREE_CODE (field) == FIELD_DECL)
4443 {
4444 offset_int fld = wi::to_offset (DECL_FIELD_OFFSET (field));
4445 offset_int bitpos = wi::to_offset (DECL_FIELD_BIT_OFFSET (field));
4446 fld = fld * BITS_PER_UNIT + bitpos;
4447 if (cur != fld)
4448 return false;
4449 if (DECL_SIZE (field))
4450 {
4451 offset_int size = wi::to_offset (DECL_SIZE (field));
4452 cur += size;
4453 }
4454 }
4455 if (cur != wi::to_offset (sz))
4456 return false;
4457
4458 return true;
4459 }
4460
4461 /* Nonzero iff type T is a class template implicit specialization. */
4462
4463 bool
4464 class_tmpl_impl_spec_p (const_tree t)
4465 {
4466 return CLASS_TYPE_P (t) && CLASSTYPE_TEMPLATE_INSTANTIATION (t);
4467 }
4468
4469 /* Returns 1 iff zero initialization of type T means actually storing
4470 zeros in it. */
4471
4472 int
4473 zero_init_p (const_tree t)
4474 {
4475 /* This CONST_CAST is okay because strip_array_types returns its
4476 argument unmodified and we assign it to a const_tree. */
4477 t = strip_array_types (CONST_CAST_TREE(t));
4478
4479 if (t == error_mark_node)
4480 return 1;
4481
4482 /* NULL pointers to data members are initialized with -1. */
4483 if (TYPE_PTRDATAMEM_P (t))
4484 return 0;
4485
4486 /* Classes that contain types that can't be zero-initialized, cannot
4487 be zero-initialized themselves. */
4488 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
4489 return 0;
4490
4491 return 1;
4492 }
4493
4494 /* Returns true if the expression or initializer T is the result of
4495 zero-initialization for its type, taking pointers to members
4496 into consideration. */
4497
4498 bool
4499 zero_init_expr_p (tree t)
4500 {
4501 tree type = TREE_TYPE (t);
4502 if (!type || uses_template_parms (type))
4503 return false;
4504 if (zero_init_p (type))
4505 return initializer_zerop (t);
4506 if (TYPE_PTRMEM_P (type))
4507 return null_member_pointer_value_p (t);
4508 if (TREE_CODE (t) == CONSTRUCTOR
4509 && CP_AGGREGATE_TYPE_P (type))
4510 {
4511 tree elt_init;
4512 unsigned HOST_WIDE_INT i;
4513 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, elt_init)
4514 if (!zero_init_expr_p (elt_init))
4515 return false;
4516 return true;
4517 }
4518 return false;
4519 }
4520
4521 /* True IFF T is a C++20 structural type (P1907R1) that can be used as a
4522 non-type template parameter. If EXPLAIN, explain why not. */
4523
4524 bool
4525 structural_type_p (tree t, bool explain)
4526 {
4527 /* A structural type is one of the following: */
4528
4529 /* a scalar type, or */
4530 if (SCALAR_TYPE_P (t))
4531 return true;
4532 /* an lvalue reference type, or */
4533 if (TYPE_REF_P (t) && !TYPE_REF_IS_RVALUE (t))
4534 return true;
4535 /* a literal class type with the following properties:
4536 - all base classes and non-static data members are public and non-mutable
4537 and
4538 - the types of all bases classes and non-static data members are
4539 structural types or (possibly multi-dimensional) array thereof. */
4540 if (!CLASS_TYPE_P (t))
4541 return false;
4542 if (!literal_type_p (t))
4543 {
4544 if (explain)
4545 explain_non_literal_class (t);
4546 return false;
4547 }
4548 for (tree m = next_initializable_field (TYPE_FIELDS (t)); m;
4549 m = next_initializable_field (DECL_CHAIN (m)))
4550 {
4551 if (TREE_PRIVATE (m) || TREE_PROTECTED (m))
4552 {
4553 if (explain)
4554 {
4555 if (DECL_FIELD_IS_BASE (m))
4556 inform (location_of (m), "base class %qT is not public",
4557 TREE_TYPE (m));
4558 else
4559 inform (location_of (m), "%qD is not public", m);
4560 }
4561 return false;
4562 }
4563 if (DECL_MUTABLE_P (m))
4564 {
4565 if (explain)
4566 inform (location_of (m), "%qD is mutable", m);
4567 return false;
4568 }
4569 tree mtype = strip_array_types (TREE_TYPE (m));
4570 if (!structural_type_p (mtype))
4571 {
4572 if (explain)
4573 {
4574 inform (location_of (m), "%qD has a non-structural type", m);
4575 structural_type_p (mtype, true);
4576 }
4577 return false;
4578 }
4579 }
4580 return true;
4581 }
4582
4583 /* Handle the C++17 [[nodiscard]] attribute, which is similar to the GNU
4584 warn_unused_result attribute. */
4585
4586 static tree
4587 handle_nodiscard_attribute (tree *node, tree name, tree args,
4588 int /*flags*/, bool *no_add_attrs)
4589 {
4590 if (args && TREE_CODE (TREE_VALUE (args)) != STRING_CST)
4591 {
4592 error ("%qE attribute argument must be a string constant", name);
4593 *no_add_attrs = true;
4594 }
4595 if (TREE_CODE (*node) == FUNCTION_DECL)
4596 {
4597 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (*node)))
4598 && !DECL_CONSTRUCTOR_P (*node))
4599 warning_at (DECL_SOURCE_LOCATION (*node),
4600 OPT_Wattributes, "%qE attribute applied to %qD with void "
4601 "return type", name, *node);
4602 }
4603 else if (OVERLOAD_TYPE_P (*node))
4604 /* OK */;
4605 else
4606 {
4607 warning (OPT_Wattributes, "%qE attribute can only be applied to "
4608 "functions or to class or enumeration types", name);
4609 *no_add_attrs = true;
4610 }
4611 return NULL_TREE;
4612 }
4613
4614 /* Handle a C++20 "no_unique_address" attribute; arguments as in
4615 struct attribute_spec.handler. */
4616 static tree
4617 handle_no_unique_addr_attribute (tree* node,
4618 tree name,
4619 tree /*args*/,
4620 int /*flags*/,
4621 bool* no_add_attrs)
4622 {
4623 if (TREE_CODE (*node) != FIELD_DECL)
4624 {
4625 warning (OPT_Wattributes, "%qE attribute can only be applied to "
4626 "non-static data members", name);
4627 *no_add_attrs = true;
4628 }
4629 else if (DECL_C_BIT_FIELD (*node))
4630 {
4631 warning (OPT_Wattributes, "%qE attribute cannot be applied to "
4632 "a bit-field", name);
4633 *no_add_attrs = true;
4634 }
4635
4636 return NULL_TREE;
4637 }
4638
4639 /* The C++20 [[likely]] and [[unlikely]] attributes on labels map to the GNU
4640 hot/cold attributes. */
4641
4642 static tree
4643 handle_likeliness_attribute (tree *node, tree name, tree args,
4644 int flags, bool *no_add_attrs)
4645 {
4646 *no_add_attrs = true;
4647 if (TREE_CODE (*node) == LABEL_DECL
4648 || TREE_CODE (*node) == FUNCTION_DECL)
4649 {
4650 if (args)
4651 warning (OPT_Wattributes, "%qE attribute takes no arguments", name);
4652 tree bname = (is_attribute_p ("likely", name)
4653 ? get_identifier ("hot") : get_identifier ("cold"));
4654 if (TREE_CODE (*node) == FUNCTION_DECL)
4655 warning (OPT_Wattributes, "ISO C++ %qE attribute does not apply to "
4656 "functions; treating as %<[[gnu::%E]]%>", name, bname);
4657 tree battr = build_tree_list (bname, NULL_TREE);
4658 decl_attributes (node, battr, flags);
4659 return NULL_TREE;
4660 }
4661 else
4662 return error_mark_node;
4663 }
4664
4665 /* Table of valid C++ attributes. */
4666 const struct attribute_spec cxx_attribute_table[] =
4667 {
4668 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
4669 affects_type_identity, handler, exclude } */
4670 { "init_priority", 1, 1, true, false, false, false,
4671 handle_init_priority_attribute, NULL },
4672 { "abi_tag", 1, -1, false, false, false, true,
4673 handle_abi_tag_attribute, NULL },
4674 { NULL, 0, 0, false, false, false, false, NULL, NULL }
4675 };
4676
4677 /* Table of C++ standard attributes. */
4678 const struct attribute_spec std_attribute_table[] =
4679 {
4680 /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
4681 affects_type_identity, handler, exclude } */
4682 { "maybe_unused", 0, 0, false, false, false, false,
4683 handle_unused_attribute, NULL },
4684 { "nodiscard", 0, 1, false, false, false, false,
4685 handle_nodiscard_attribute, NULL },
4686 { "no_unique_address", 0, 0, true, false, false, false,
4687 handle_no_unique_addr_attribute, NULL },
4688 { "likely", 0, 0, false, false, false, false,
4689 handle_likeliness_attribute, attr_cold_hot_exclusions },
4690 { "unlikely", 0, 0, false, false, false, false,
4691 handle_likeliness_attribute, attr_cold_hot_exclusions },
4692 { "noreturn", 0, 0, true, false, false, false,
4693 handle_noreturn_attribute, attr_noreturn_exclusions },
4694 { NULL, 0, 0, false, false, false, false, NULL, NULL }
4695 };
4696
4697 /* Handle an "init_priority" attribute; arguments as in
4698 struct attribute_spec.handler. */
4699 static tree
4700 handle_init_priority_attribute (tree* node,
4701 tree name,
4702 tree args,
4703 int /*flags*/,
4704 bool* no_add_attrs)
4705 {
4706 tree initp_expr = TREE_VALUE (args);
4707 tree decl = *node;
4708 tree type = TREE_TYPE (decl);
4709 int pri;
4710
4711 STRIP_NOPS (initp_expr);
4712 initp_expr = default_conversion (initp_expr);
4713 if (initp_expr)
4714 initp_expr = maybe_constant_value (initp_expr);
4715
4716 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
4717 {
4718 error ("requested %<init_priority%> is not an integer constant");
4719 cxx_constant_value (initp_expr);
4720 *no_add_attrs = true;
4721 return NULL_TREE;
4722 }
4723
4724 pri = TREE_INT_CST_LOW (initp_expr);
4725
4726 type = strip_array_types (type);
4727
4728 if (decl == NULL_TREE
4729 || !VAR_P (decl)
4730 || !TREE_STATIC (decl)
4731 || DECL_EXTERNAL (decl)
4732 || (TREE_CODE (type) != RECORD_TYPE
4733 && TREE_CODE (type) != UNION_TYPE)
4734 /* Static objects in functions are initialized the
4735 first time control passes through that
4736 function. This is not precise enough to pin down an
4737 init_priority value, so don't allow it. */
4738 || current_function_decl)
4739 {
4740 error ("can only use %qE attribute on file-scope definitions "
4741 "of objects of class type", name);
4742 *no_add_attrs = true;
4743 return NULL_TREE;
4744 }
4745
4746 if (pri > MAX_INIT_PRIORITY || pri <= 0)
4747 {
4748 error ("requested %<init_priority%> %i is out of range [0, %i]",
4749 pri, MAX_INIT_PRIORITY);
4750 *no_add_attrs = true;
4751 return NULL_TREE;
4752 }
4753
4754 /* Check for init_priorities that are reserved for
4755 language and runtime support implementations.*/
4756 if (pri <= MAX_RESERVED_INIT_PRIORITY)
4757 {
4758 warning
4759 (0, "requested %<init_priority%> %i is reserved for internal use",
4760 pri);
4761 }
4762
4763 if (SUPPORTS_INIT_PRIORITY)
4764 {
4765 SET_DECL_INIT_PRIORITY (decl, pri);
4766 DECL_HAS_INIT_PRIORITY_P (decl) = 1;
4767 return NULL_TREE;
4768 }
4769 else
4770 {
4771 error ("%qE attribute is not supported on this platform", name);
4772 *no_add_attrs = true;
4773 return NULL_TREE;
4774 }
4775 }
4776
4777 /* DECL is being redeclared; the old declaration had the abi tags in OLD,
4778 and the new one has the tags in NEW_. Give an error if there are tags
4779 in NEW_ that weren't in OLD. */
4780
4781 bool
4782 check_abi_tag_redeclaration (const_tree decl, const_tree old, const_tree new_)
4783 {
4784 if (old && TREE_CODE (TREE_VALUE (old)) == TREE_LIST)
4785 old = TREE_VALUE (old);
4786 if (new_ && TREE_CODE (TREE_VALUE (new_)) == TREE_LIST)
4787 new_ = TREE_VALUE (new_);
4788 bool err = false;
4789 for (const_tree t = new_; t; t = TREE_CHAIN (t))
4790 {
4791 tree str = TREE_VALUE (t);
4792 for (const_tree in = old; in; in = TREE_CHAIN (in))
4793 {
4794 tree ostr = TREE_VALUE (in);
4795 if (cp_tree_equal (str, ostr))
4796 goto found;
4797 }
4798 error ("redeclaration of %qD adds abi tag %qE", decl, str);
4799 err = true;
4800 found:;
4801 }
4802 if (err)
4803 {
4804 inform (DECL_SOURCE_LOCATION (decl), "previous declaration here");
4805 return false;
4806 }
4807 return true;
4808 }
4809
4810 /* The abi_tag attribute with the name NAME was given ARGS. If they are
4811 ill-formed, give an error and return false; otherwise, return true. */
4812
4813 bool
4814 check_abi_tag_args (tree args, tree name)
4815 {
4816 if (!args)
4817 {
4818 error ("the %qE attribute requires arguments", name);
4819 return false;
4820 }
4821 for (tree arg = args; arg; arg = TREE_CHAIN (arg))
4822 {
4823 tree elt = TREE_VALUE (arg);
4824 if (TREE_CODE (elt) != STRING_CST
4825 || (!same_type_ignoring_top_level_qualifiers_p
4826 (strip_array_types (TREE_TYPE (elt)),
4827 char_type_node)))
4828 {
4829 error ("arguments to the %qE attribute must be narrow string "
4830 "literals", name);
4831 return false;
4832 }
4833 const char *begin = TREE_STRING_POINTER (elt);
4834 const char *end = begin + TREE_STRING_LENGTH (elt);
4835 for (const char *p = begin; p != end; ++p)
4836 {
4837 char c = *p;
4838 if (p == begin)
4839 {
4840 if (!ISALPHA (c) && c != '_')
4841 {
4842 error ("arguments to the %qE attribute must contain valid "
4843 "identifiers", name);
4844 inform (input_location, "%<%c%> is not a valid first "
4845 "character for an identifier", c);
4846 return false;
4847 }
4848 }
4849 else if (p == end - 1)
4850 gcc_assert (c == 0);
4851 else
4852 {
4853 if (!ISALNUM (c) && c != '_')
4854 {
4855 error ("arguments to the %qE attribute must contain valid "
4856 "identifiers", name);
4857 inform (input_location, "%<%c%> is not a valid character "
4858 "in an identifier", c);
4859 return false;
4860 }
4861 }
4862 }
4863 }
4864 return true;
4865 }
4866
4867 /* Handle an "abi_tag" attribute; arguments as in
4868 struct attribute_spec.handler. */
4869
4870 static tree
4871 handle_abi_tag_attribute (tree* node, tree name, tree args,
4872 int flags, bool* no_add_attrs)
4873 {
4874 if (!check_abi_tag_args (args, name))
4875 goto fail;
4876
4877 if (TYPE_P (*node))
4878 {
4879 if (!OVERLOAD_TYPE_P (*node))
4880 {
4881 error ("%qE attribute applied to non-class, non-enum type %qT",
4882 name, *node);
4883 goto fail;
4884 }
4885 else if (!(flags & (int)ATTR_FLAG_TYPE_IN_PLACE))
4886 {
4887 error ("%qE attribute applied to %qT after its definition",
4888 name, *node);
4889 goto fail;
4890 }
4891 else if (CLASS_TYPE_P (*node)
4892 && CLASSTYPE_TEMPLATE_INSTANTIATION (*node))
4893 {
4894 warning (OPT_Wattributes, "ignoring %qE attribute applied to "
4895 "template instantiation %qT", name, *node);
4896 goto fail;
4897 }
4898 else if (CLASS_TYPE_P (*node)
4899 && CLASSTYPE_TEMPLATE_SPECIALIZATION (*node))
4900 {
4901 warning (OPT_Wattributes, "ignoring %qE attribute applied to "
4902 "template specialization %qT", name, *node);
4903 goto fail;
4904 }
4905
4906 tree attributes = TYPE_ATTRIBUTES (*node);
4907 tree decl = TYPE_NAME (*node);
4908
4909 /* Make sure all declarations have the same abi tags. */
4910 if (DECL_SOURCE_LOCATION (decl) != input_location)
4911 {
4912 if (!check_abi_tag_redeclaration (decl,
4913 lookup_attribute ("abi_tag",
4914 attributes),
4915 args))
4916 goto fail;
4917 }
4918 }
4919 else
4920 {
4921 if (!VAR_OR_FUNCTION_DECL_P (*node))
4922 {
4923 error ("%qE attribute applied to non-function, non-variable %qD",
4924 name, *node);
4925 goto fail;
4926 }
4927 else if (DECL_LANGUAGE (*node) == lang_c)
4928 {
4929 error ("%qE attribute applied to extern \"C\" declaration %qD",
4930 name, *node);
4931 goto fail;
4932 }
4933 }
4934
4935 return NULL_TREE;
4936
4937 fail:
4938 *no_add_attrs = true;
4939 return NULL_TREE;
4940 }
4941
4942 /* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
4943 thing pointed to by the constant. */
4944
4945 tree
4946 make_ptrmem_cst (tree type, tree member)
4947 {
4948 tree ptrmem_cst = make_node (PTRMEM_CST);
4949 TREE_TYPE (ptrmem_cst) = type;
4950 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
4951 return ptrmem_cst;
4952 }
4953
4954 /* Build a variant of TYPE that has the indicated ATTRIBUTES. May
4955 return an existing type if an appropriate type already exists. */
4956
4957 tree
4958 cp_build_type_attribute_variant (tree type, tree attributes)
4959 {
4960 tree new_type;
4961
4962 new_type = build_type_attribute_variant (type, attributes);
4963 if (FUNC_OR_METHOD_TYPE_P (new_type))
4964 gcc_checking_assert (cxx_type_hash_eq (type, new_type));
4965
4966 /* Making a new main variant of a class type is broken. */
4967 gcc_assert (!CLASS_TYPE_P (type) || new_type == type);
4968
4969 return new_type;
4970 }
4971
4972 /* Return TRUE if TYPE1 and TYPE2 are identical for type hashing purposes.
4973 Called only after doing all language independent checks. */
4974
4975 bool
4976 cxx_type_hash_eq (const_tree typea, const_tree typeb)
4977 {
4978 gcc_assert (FUNC_OR_METHOD_TYPE_P (typea));
4979
4980 if (type_memfn_rqual (typea) != type_memfn_rqual (typeb))
4981 return false;
4982 if (TYPE_HAS_LATE_RETURN_TYPE (typea) != TYPE_HAS_LATE_RETURN_TYPE (typeb))
4983 return false;
4984 return comp_except_specs (TYPE_RAISES_EXCEPTIONS (typea),
4985 TYPE_RAISES_EXCEPTIONS (typeb), ce_exact);
4986 }
4987
4988 /* Copy the language-specific type variant modifiers from TYPEB to TYPEA. For
4989 C++, these are the exception-specifier and ref-qualifier. */
4990
4991 tree
4992 cxx_copy_lang_qualifiers (const_tree typea, const_tree typeb)
4993 {
4994 tree type = CONST_CAST_TREE (typea);
4995 if (FUNC_OR_METHOD_TYPE_P (type))
4996 type = build_cp_fntype_variant (type, type_memfn_rqual (typeb),
4997 TYPE_RAISES_EXCEPTIONS (typeb),
4998 TYPE_HAS_LATE_RETURN_TYPE (typeb));
4999 return type;
5000 }
5001
5002 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
5003 traversal. Called from walk_tree. */
5004
5005 tree
5006 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
5007 void *data, hash_set<tree> *pset)
5008 {
5009 enum tree_code code = TREE_CODE (*tp);
5010 tree result;
5011
5012 #define WALK_SUBTREE(NODE) \
5013 do \
5014 { \
5015 result = cp_walk_tree (&(NODE), func, data, pset); \
5016 if (result) goto out; \
5017 } \
5018 while (0)
5019
5020 if (TYPE_P (*tp))
5021 {
5022 /* Walk into template args without looking through typedefs. */
5023 if (tree ti = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (*tp))
5024 WALK_SUBTREE (TI_ARGS (ti));
5025 /* Don't look through typedefs; walk_tree_fns that want to look through
5026 typedefs (like min_vis_r) need to do that themselves. */
5027 if (typedef_variant_p (*tp))
5028 {
5029 *walk_subtrees_p = 0;
5030 return NULL_TREE;
5031 }
5032 }
5033
5034 /* Not one of the easy cases. We must explicitly go through the
5035 children. */
5036 result = NULL_TREE;
5037 switch (code)
5038 {
5039 case DEFERRED_PARSE:
5040 case TEMPLATE_TEMPLATE_PARM:
5041 case BOUND_TEMPLATE_TEMPLATE_PARM:
5042 case UNBOUND_CLASS_TEMPLATE:
5043 case TEMPLATE_PARM_INDEX:
5044 case TEMPLATE_TYPE_PARM:
5045 case TYPEOF_TYPE:
5046 case UNDERLYING_TYPE:
5047 /* None of these have subtrees other than those already walked
5048 above. */
5049 *walk_subtrees_p = 0;
5050 break;
5051
5052 case TYPENAME_TYPE:
5053 WALK_SUBTREE (TYPE_CONTEXT (*tp));
5054 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (*tp));
5055 *walk_subtrees_p = 0;
5056 break;
5057
5058 case BASELINK:
5059 if (BASELINK_QUALIFIED_P (*tp))
5060 WALK_SUBTREE (BINFO_TYPE (BASELINK_ACCESS_BINFO (*tp)));
5061 WALK_SUBTREE (BASELINK_FUNCTIONS (*tp));
5062 *walk_subtrees_p = 0;
5063 break;
5064
5065 case PTRMEM_CST:
5066 WALK_SUBTREE (TREE_TYPE (*tp));
5067 *walk_subtrees_p = 0;
5068 break;
5069
5070 case TREE_LIST:
5071 WALK_SUBTREE (TREE_PURPOSE (*tp));
5072 break;
5073
5074 case OVERLOAD:
5075 WALK_SUBTREE (OVL_FUNCTION (*tp));
5076 WALK_SUBTREE (OVL_CHAIN (*tp));
5077 *walk_subtrees_p = 0;
5078 break;
5079
5080 case USING_DECL:
5081 WALK_SUBTREE (DECL_NAME (*tp));
5082 WALK_SUBTREE (USING_DECL_SCOPE (*tp));
5083 WALK_SUBTREE (USING_DECL_DECLS (*tp));
5084 *walk_subtrees_p = 0;
5085 break;
5086
5087 case RECORD_TYPE:
5088 if (TYPE_PTRMEMFUNC_P (*tp))
5089 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE_RAW (*tp));
5090 break;
5091
5092 case TYPE_ARGUMENT_PACK:
5093 case NONTYPE_ARGUMENT_PACK:
5094 {
5095 tree args = ARGUMENT_PACK_ARGS (*tp);
5096 int i, len = TREE_VEC_LENGTH (args);
5097 for (i = 0; i < len; i++)
5098 WALK_SUBTREE (TREE_VEC_ELT (args, i));
5099 }
5100 break;
5101
5102 case TYPE_PACK_EXPANSION:
5103 WALK_SUBTREE (TREE_TYPE (*tp));
5104 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
5105 *walk_subtrees_p = 0;
5106 break;
5107
5108 case EXPR_PACK_EXPANSION:
5109 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
5110 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
5111 *walk_subtrees_p = 0;
5112 break;
5113
5114 case CAST_EXPR:
5115 case REINTERPRET_CAST_EXPR:
5116 case STATIC_CAST_EXPR:
5117 case CONST_CAST_EXPR:
5118 case DYNAMIC_CAST_EXPR:
5119 case IMPLICIT_CONV_EXPR:
5120 if (TREE_TYPE (*tp))
5121 WALK_SUBTREE (TREE_TYPE (*tp));
5122
5123 {
5124 int i;
5125 for (i = 0; i < TREE_CODE_LENGTH (TREE_CODE (*tp)); ++i)
5126 WALK_SUBTREE (TREE_OPERAND (*tp, i));
5127 }
5128 *walk_subtrees_p = 0;
5129 break;
5130
5131 case CONSTRUCTOR:
5132 if (COMPOUND_LITERAL_P (*tp))
5133 WALK_SUBTREE (TREE_TYPE (*tp));
5134 break;
5135
5136 case TRAIT_EXPR:
5137 WALK_SUBTREE (TRAIT_EXPR_TYPE1 (*tp));
5138 WALK_SUBTREE (TRAIT_EXPR_TYPE2 (*tp));
5139 *walk_subtrees_p = 0;
5140 break;
5141
5142 case DECLTYPE_TYPE:
5143 ++cp_unevaluated_operand;
5144 /* We can't use WALK_SUBTREE here because of the goto. */
5145 result = cp_walk_tree (&DECLTYPE_TYPE_EXPR (*tp), func, data, pset);
5146 --cp_unevaluated_operand;
5147 *walk_subtrees_p = 0;
5148 break;
5149
5150 case ALIGNOF_EXPR:
5151 case SIZEOF_EXPR:
5152 case NOEXCEPT_EXPR:
5153 ++cp_unevaluated_operand;
5154 result = cp_walk_tree (&TREE_OPERAND (*tp, 0), func, data, pset);
5155 --cp_unevaluated_operand;
5156 *walk_subtrees_p = 0;
5157 break;
5158
5159 case REQUIRES_EXPR:
5160 // Only recurse through the nested expression. Do not
5161 // walk the parameter list. Doing so causes false
5162 // positives in the pack expansion checker since the
5163 // requires parameters are introduced as pack expansions.
5164 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5165 *walk_subtrees_p = 0;
5166 break;
5167
5168 case DECL_EXPR:
5169 /* User variables should be mentioned in BIND_EXPR_VARS
5170 and their initializers and sizes walked when walking
5171 the containing BIND_EXPR. Compiler temporaries are
5172 handled here. And also normal variables in templates,
5173 since do_poplevel doesn't build a BIND_EXPR then. */
5174 if (VAR_P (TREE_OPERAND (*tp, 0))
5175 && (processing_template_decl
5176 || (DECL_ARTIFICIAL (TREE_OPERAND (*tp, 0))
5177 && !TREE_STATIC (TREE_OPERAND (*tp, 0)))))
5178 {
5179 tree decl = TREE_OPERAND (*tp, 0);
5180 WALK_SUBTREE (DECL_INITIAL (decl));
5181 WALK_SUBTREE (DECL_SIZE (decl));
5182 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
5183 }
5184 break;
5185
5186 case LAMBDA_EXPR:
5187 /* Don't walk into the body of the lambda, but the capture initializers
5188 are part of the enclosing context. */
5189 for (tree cap = LAMBDA_EXPR_CAPTURE_LIST (*tp); cap;
5190 cap = TREE_CHAIN (cap))
5191 WALK_SUBTREE (TREE_VALUE (cap));
5192 break;
5193
5194 case CO_YIELD_EXPR:
5195 if (TREE_OPERAND (*tp, 1))
5196 /* Operand 1 is the tree for the relevant co_await which has any
5197 interesting sub-trees. */
5198 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5199 break;
5200
5201 case CO_AWAIT_EXPR:
5202 if (TREE_OPERAND (*tp, 1))
5203 /* Operand 1 is frame variable. */
5204 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5205 if (TREE_OPERAND (*tp, 2))
5206 /* Operand 2 has the initialiser, and we need to walk any subtrees
5207 there. */
5208 WALK_SUBTREE (TREE_OPERAND (*tp, 2));
5209 break;
5210
5211 case CO_RETURN_EXPR:
5212 if (TREE_OPERAND (*tp, 0))
5213 {
5214 if (VOID_TYPE_P (TREE_OPERAND (*tp, 0)))
5215 /* For void expressions, operand 1 is a trivial call, and any
5216 interesting subtrees will be part of operand 0. */
5217 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
5218 else if (TREE_OPERAND (*tp, 1))
5219 /* Interesting sub-trees will be in the return_value () call
5220 arguments. */
5221 WALK_SUBTREE (TREE_OPERAND (*tp, 1));
5222 }
5223 break;
5224
5225 default:
5226 return NULL_TREE;
5227 }
5228
5229 /* We didn't find what we were looking for. */
5230 out:
5231 return result;
5232
5233 #undef WALK_SUBTREE
5234 }
5235
5236 /* Like save_expr, but for C++. */
5237
5238 tree
5239 cp_save_expr (tree expr)
5240 {
5241 /* There is no reason to create a SAVE_EXPR within a template; if
5242 needed, we can create the SAVE_EXPR when instantiating the
5243 template. Furthermore, the middle-end cannot handle C++-specific
5244 tree codes. */
5245 if (processing_template_decl)
5246 return expr;
5247
5248 /* TARGET_EXPRs are only expanded once. */
5249 if (TREE_CODE (expr) == TARGET_EXPR)
5250 return expr;
5251
5252 return save_expr (expr);
5253 }
5254
5255 /* Initialize tree.c. */
5256
5257 void
5258 init_tree (void)
5259 {
5260 list_hash_table = hash_table<list_hasher>::create_ggc (61);
5261 register_scoped_attributes (std_attribute_table, NULL);
5262 }
5263
5264 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
5265 is. Note that sfk_none is zero, so this function can be used as a
5266 predicate to test whether or not DECL is a special function. */
5267
5268 special_function_kind
5269 special_function_p (const_tree decl)
5270 {
5271 /* Rather than doing all this stuff with magic names, we should
5272 probably have a field of type `special_function_kind' in
5273 DECL_LANG_SPECIFIC. */
5274 if (DECL_INHERITED_CTOR (decl))
5275 return sfk_inheriting_constructor;
5276 if (DECL_COPY_CONSTRUCTOR_P (decl))
5277 return sfk_copy_constructor;
5278 if (DECL_MOVE_CONSTRUCTOR_P (decl))
5279 return sfk_move_constructor;
5280 if (DECL_CONSTRUCTOR_P (decl))
5281 return sfk_constructor;
5282 if (DECL_ASSIGNMENT_OPERATOR_P (decl)
5283 && DECL_OVERLOADED_OPERATOR_IS (decl, NOP_EXPR))
5284 {
5285 if (copy_fn_p (decl))
5286 return sfk_copy_assignment;
5287 if (move_fn_p (decl))
5288 return sfk_move_assignment;
5289 }
5290 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
5291 return sfk_destructor;
5292 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
5293 return sfk_complete_destructor;
5294 if (DECL_BASE_DESTRUCTOR_P (decl))
5295 return sfk_base_destructor;
5296 if (DECL_DELETING_DESTRUCTOR_P (decl))
5297 return sfk_deleting_destructor;
5298 if (DECL_CONV_FN_P (decl))
5299 return sfk_conversion;
5300 if (deduction_guide_p (decl))
5301 return sfk_deduction_guide;
5302 if (DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) >= OVL_OP_EQ_EXPR
5303 && DECL_OVERLOADED_OPERATOR_CODE_RAW (decl) <= OVL_OP_SPACESHIP_EXPR)
5304 return sfk_comparison;
5305
5306 return sfk_none;
5307 }
5308
5309 /* As above, but only if DECL is a special member function as per 11.3.3
5310 [special]: default/copy/move ctor, copy/move assignment, or destructor. */
5311
5312 special_function_kind
5313 special_memfn_p (const_tree decl)
5314 {
5315 switch (special_function_kind sfk = special_function_p (decl))
5316 {
5317 case sfk_constructor:
5318 if (!default_ctor_p (decl))
5319 break;
5320 gcc_fallthrough();
5321 case sfk_copy_constructor:
5322 case sfk_copy_assignment:
5323 case sfk_move_assignment:
5324 case sfk_move_constructor:
5325 case sfk_destructor:
5326 return sfk;
5327
5328 default:
5329 break;
5330 }
5331 return sfk_none;
5332 }
5333
5334 /* Returns nonzero if TYPE is a character type, including wchar_t. */
5335
5336 int
5337 char_type_p (tree type)
5338 {
5339 return (same_type_p (type, char_type_node)
5340 || same_type_p (type, unsigned_char_type_node)
5341 || same_type_p (type, signed_char_type_node)
5342 || same_type_p (type, char8_type_node)
5343 || same_type_p (type, char16_type_node)
5344 || same_type_p (type, char32_type_node)
5345 || same_type_p (type, wchar_type_node));
5346 }
5347
5348 /* Returns the kind of linkage associated with the indicated DECL. Th
5349 value returned is as specified by the language standard; it is
5350 independent of implementation details regarding template
5351 instantiation, etc. For example, it is possible that a declaration
5352 to which this function assigns external linkage would not show up
5353 as a global symbol when you run `nm' on the resulting object file. */
5354
5355 linkage_kind
5356 decl_linkage (tree decl)
5357 {
5358 /* This function doesn't attempt to calculate the linkage from first
5359 principles as given in [basic.link]. Instead, it makes use of
5360 the fact that we have already set TREE_PUBLIC appropriately, and
5361 then handles a few special cases. Ideally, we would calculate
5362 linkage first, and then transform that into a concrete
5363 implementation. */
5364
5365 /* Things that don't have names have no linkage. */
5366 if (!DECL_NAME (decl))
5367 return lk_none;
5368
5369 /* Fields have no linkage. */
5370 if (TREE_CODE (decl) == FIELD_DECL)
5371 return lk_none;
5372
5373 /* Things in local scope do not have linkage. */
5374 if (decl_function_context (decl))
5375 return lk_none;
5376
5377 /* Things that are TREE_PUBLIC have external linkage. */
5378 if (TREE_PUBLIC (decl))
5379 return lk_external;
5380
5381 /* maybe_thunk_body clears TREE_PUBLIC on the maybe-in-charge 'tor variants,
5382 check one of the "clones" for the real linkage. */
5383 if (DECL_MAYBE_IN_CHARGE_CDTOR_P (decl)
5384 && DECL_CHAIN (decl)
5385 && DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)))
5386 return decl_linkage (DECL_CHAIN (decl));
5387
5388 if (TREE_CODE (decl) == NAMESPACE_DECL)
5389 return lk_external;
5390
5391 /* Linkage of a CONST_DECL depends on the linkage of the enumeration
5392 type. */
5393 if (TREE_CODE (decl) == CONST_DECL)
5394 return decl_linkage (TYPE_NAME (DECL_CONTEXT (decl)));
5395
5396 /* Members of the anonymous namespace also have TREE_PUBLIC unset, but
5397 are considered to have external linkage for language purposes, as do
5398 template instantiations on targets without weak symbols. DECLs really
5399 meant to have internal linkage have DECL_THIS_STATIC set. */
5400 if (TREE_CODE (decl) == TYPE_DECL)
5401 return lk_external;
5402 if (VAR_OR_FUNCTION_DECL_P (decl))
5403 {
5404 if (!DECL_THIS_STATIC (decl))
5405 return lk_external;
5406
5407 /* Static data members and static member functions from classes
5408 in anonymous namespace also don't have TREE_PUBLIC set. */
5409 if (DECL_CLASS_CONTEXT (decl))
5410 return lk_external;
5411 }
5412
5413 /* Everything else has internal linkage. */
5414 return lk_internal;
5415 }
5416
5417 /* Returns the storage duration of the object or reference associated with
5418 the indicated DECL, which should be a VAR_DECL or PARM_DECL. */
5419
5420 duration_kind
5421 decl_storage_duration (tree decl)
5422 {
5423 if (TREE_CODE (decl) == PARM_DECL)
5424 return dk_auto;
5425 if (TREE_CODE (decl) == FUNCTION_DECL)
5426 return dk_static;
5427 gcc_assert (VAR_P (decl));
5428 if (!TREE_STATIC (decl)
5429 && !DECL_EXTERNAL (decl))
5430 return dk_auto;
5431 if (CP_DECL_THREAD_LOCAL_P (decl))
5432 return dk_thread;
5433 return dk_static;
5434 }
5435 \f
5436 /* EXP is an expression that we want to pre-evaluate. Returns (in
5437 *INITP) an expression that will perform the pre-evaluation. The
5438 value returned by this function is a side-effect free expression
5439 equivalent to the pre-evaluated expression. Callers must ensure
5440 that *INITP is evaluated before EXP. */
5441
5442 tree
5443 stabilize_expr (tree exp, tree* initp)
5444 {
5445 tree init_expr;
5446
5447 if (!TREE_SIDE_EFFECTS (exp))
5448 init_expr = NULL_TREE;
5449 else if (VOID_TYPE_P (TREE_TYPE (exp)))
5450 {
5451 init_expr = exp;
5452 exp = void_node;
5453 }
5454 /* There are no expressions with REFERENCE_TYPE, but there can be call
5455 arguments with such a type; just treat it as a pointer. */
5456 else if (TYPE_REF_P (TREE_TYPE (exp))
5457 || SCALAR_TYPE_P (TREE_TYPE (exp))
5458 || !glvalue_p (exp))
5459 {
5460 init_expr = get_target_expr (exp);
5461 exp = TARGET_EXPR_SLOT (init_expr);
5462 if (CLASS_TYPE_P (TREE_TYPE (exp)))
5463 exp = move (exp);
5464 else
5465 exp = rvalue (exp);
5466 }
5467 else
5468 {
5469 bool xval = !lvalue_p (exp);
5470 exp = cp_build_addr_expr (exp, tf_warning_or_error);
5471 init_expr = get_target_expr (exp);
5472 exp = TARGET_EXPR_SLOT (init_expr);
5473 exp = cp_build_fold_indirect_ref (exp);
5474 if (xval)
5475 exp = move (exp);
5476 }
5477 *initp = init_expr;
5478
5479 gcc_assert (!TREE_SIDE_EFFECTS (exp));
5480 return exp;
5481 }
5482
5483 /* Add NEW_EXPR, an expression whose value we don't care about, after the
5484 similar expression ORIG. */
5485
5486 tree
5487 add_stmt_to_compound (tree orig, tree new_expr)
5488 {
5489 if (!new_expr || !TREE_SIDE_EFFECTS (new_expr))
5490 return orig;
5491 if (!orig || !TREE_SIDE_EFFECTS (orig))
5492 return new_expr;
5493 return build2 (COMPOUND_EXPR, void_type_node, orig, new_expr);
5494 }
5495
5496 /* Like stabilize_expr, but for a call whose arguments we want to
5497 pre-evaluate. CALL is modified in place to use the pre-evaluated
5498 arguments, while, upon return, *INITP contains an expression to
5499 compute the arguments. */
5500
5501 void
5502 stabilize_call (tree call, tree *initp)
5503 {
5504 tree inits = NULL_TREE;
5505 int i;
5506 int nargs = call_expr_nargs (call);
5507
5508 if (call == error_mark_node || processing_template_decl)
5509 {
5510 *initp = NULL_TREE;
5511 return;
5512 }
5513
5514 gcc_assert (TREE_CODE (call) == CALL_EXPR);
5515
5516 for (i = 0; i < nargs; i++)
5517 {
5518 tree init;
5519 CALL_EXPR_ARG (call, i) =
5520 stabilize_expr (CALL_EXPR_ARG (call, i), &init);
5521 inits = add_stmt_to_compound (inits, init);
5522 }
5523
5524 *initp = inits;
5525 }
5526
5527 /* Like stabilize_expr, but for an AGGR_INIT_EXPR whose arguments we want
5528 to pre-evaluate. CALL is modified in place to use the pre-evaluated
5529 arguments, while, upon return, *INITP contains an expression to
5530 compute the arguments. */
5531
5532 static void
5533 stabilize_aggr_init (tree call, tree *initp)
5534 {
5535 tree inits = NULL_TREE;
5536 int i;
5537 int nargs = aggr_init_expr_nargs (call);
5538
5539 if (call == error_mark_node)
5540 return;
5541
5542 gcc_assert (TREE_CODE (call) == AGGR_INIT_EXPR);
5543
5544 for (i = 0; i < nargs; i++)
5545 {
5546 tree init;
5547 AGGR_INIT_EXPR_ARG (call, i) =
5548 stabilize_expr (AGGR_INIT_EXPR_ARG (call, i), &init);
5549 inits = add_stmt_to_compound (inits, init);
5550 }
5551
5552 *initp = inits;
5553 }
5554
5555 /* Like stabilize_expr, but for an initialization.
5556
5557 If the initialization is for an object of class type, this function
5558 takes care not to introduce additional temporaries.
5559
5560 Returns TRUE iff the expression was successfully pre-evaluated,
5561 i.e., if INIT is now side-effect free, except for, possibly, a
5562 single call to a constructor. */
5563
5564 bool
5565 stabilize_init (tree init, tree *initp)
5566 {
5567 tree t = init;
5568
5569 *initp = NULL_TREE;
5570
5571 if (t == error_mark_node || processing_template_decl)
5572 return true;
5573
5574 if (TREE_CODE (t) == INIT_EXPR)
5575 t = TREE_OPERAND (t, 1);
5576 if (TREE_CODE (t) == TARGET_EXPR)
5577 t = TARGET_EXPR_INITIAL (t);
5578
5579 /* If the RHS can be stabilized without breaking copy elision, stabilize
5580 it. We specifically don't stabilize class prvalues here because that
5581 would mean an extra copy, but they might be stabilized below. */
5582 if (TREE_CODE (init) == INIT_EXPR
5583 && TREE_CODE (t) != CONSTRUCTOR
5584 && TREE_CODE (t) != AGGR_INIT_EXPR
5585 && (SCALAR_TYPE_P (TREE_TYPE (t))
5586 || glvalue_p (t)))
5587 {
5588 TREE_OPERAND (init, 1) = stabilize_expr (t, initp);
5589 return true;
5590 }
5591
5592 if (TREE_CODE (t) == COMPOUND_EXPR
5593 && TREE_CODE (init) == INIT_EXPR)
5594 {
5595 tree last = expr_last (t);
5596 /* Handle stabilizing the EMPTY_CLASS_EXPR pattern. */
5597 if (!TREE_SIDE_EFFECTS (last))
5598 {
5599 *initp = t;
5600 TREE_OPERAND (init, 1) = last;
5601 return true;
5602 }
5603 }
5604
5605 if (TREE_CODE (t) == CONSTRUCTOR)
5606 {
5607 /* Aggregate initialization: stabilize each of the field
5608 initializers. */
5609 unsigned i;
5610 constructor_elt *ce;
5611 bool good = true;
5612 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
5613 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
5614 {
5615 tree type = TREE_TYPE (ce->value);
5616 tree subinit;
5617 if (TYPE_REF_P (type)
5618 || SCALAR_TYPE_P (type))
5619 ce->value = stabilize_expr (ce->value, &subinit);
5620 else if (!stabilize_init (ce->value, &subinit))
5621 good = false;
5622 *initp = add_stmt_to_compound (*initp, subinit);
5623 }
5624 return good;
5625 }
5626
5627 if (TREE_CODE (t) == CALL_EXPR)
5628 {
5629 stabilize_call (t, initp);
5630 return true;
5631 }
5632
5633 if (TREE_CODE (t) == AGGR_INIT_EXPR)
5634 {
5635 stabilize_aggr_init (t, initp);
5636 return true;
5637 }
5638
5639 /* The initialization is being performed via a bitwise copy -- and
5640 the item copied may have side effects. */
5641 return !TREE_SIDE_EFFECTS (init);
5642 }
5643
5644 /* Returns true if a cast to TYPE may appear in an integral constant
5645 expression. */
5646
5647 bool
5648 cast_valid_in_integral_constant_expression_p (tree type)
5649 {
5650 return (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
5651 || cxx_dialect >= cxx11
5652 || dependent_type_p (type)
5653 || type == error_mark_node);
5654 }
5655
5656 /* Return true if we need to fix linkage information of DECL. */
5657
5658 static bool
5659 cp_fix_function_decl_p (tree decl)
5660 {
5661 /* Skip if DECL is not externally visible. */
5662 if (!TREE_PUBLIC (decl))
5663 return false;
5664
5665 /* We need to fix DECL if it a appears to be exported but with no
5666 function body. Thunks do not have CFGs and we may need to
5667 handle them specially later. */
5668 if (!gimple_has_body_p (decl)
5669 && !DECL_THUNK_P (decl)
5670 && !DECL_EXTERNAL (decl))
5671 {
5672 struct cgraph_node *node = cgraph_node::get (decl);
5673
5674 /* Don't fix same_body aliases. Although they don't have their own
5675 CFG, they share it with what they alias to. */
5676 if (!node || !node->alias
5677 || !vec_safe_length (node->ref_list.references))
5678 return true;
5679 }
5680
5681 return false;
5682 }
5683
5684 /* Clean the C++ specific parts of the tree T. */
5685
5686 void
5687 cp_free_lang_data (tree t)
5688 {
5689 if (FUNC_OR_METHOD_TYPE_P (t))
5690 {
5691 /* Default args are not interesting anymore. */
5692 tree argtypes = TYPE_ARG_TYPES (t);
5693 while (argtypes)
5694 {
5695 TREE_PURPOSE (argtypes) = 0;
5696 argtypes = TREE_CHAIN (argtypes);
5697 }
5698 }
5699 else if (TREE_CODE (t) == FUNCTION_DECL
5700 && cp_fix_function_decl_p (t))
5701 {
5702 /* If T is used in this translation unit at all, the definition
5703 must exist somewhere else since we have decided to not emit it
5704 in this TU. So make it an external reference. */
5705 DECL_EXTERNAL (t) = 1;
5706 TREE_STATIC (t) = 0;
5707 }
5708 if (TREE_CODE (t) == FUNCTION_DECL)
5709 discard_operator_bindings (t);
5710 if (TREE_CODE (t) == NAMESPACE_DECL)
5711 /* We do not need the leftover chaining of namespaces from the
5712 binding level. */
5713 DECL_CHAIN (t) = NULL_TREE;
5714 }
5715
5716 /* Stub for c-common. Please keep in sync with c-decl.c.
5717 FIXME: If address space support is target specific, then this
5718 should be a C target hook. But currently this is not possible,
5719 because this function is called via REGISTER_TARGET_PRAGMAS. */
5720 void
5721 c_register_addr_space (const char * /*word*/, addr_space_t /*as*/)
5722 {
5723 }
5724
5725 /* Return the number of operands in T that we care about for things like
5726 mangling. */
5727
5728 int
5729 cp_tree_operand_length (const_tree t)
5730 {
5731 enum tree_code code = TREE_CODE (t);
5732
5733 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
5734 return VL_EXP_OPERAND_LENGTH (t);
5735
5736 return cp_tree_code_length (code);
5737 }
5738
5739 /* Like cp_tree_operand_length, but takes a tree_code CODE. */
5740
5741 int
5742 cp_tree_code_length (enum tree_code code)
5743 {
5744 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
5745
5746 switch (code)
5747 {
5748 case PREINCREMENT_EXPR:
5749 case PREDECREMENT_EXPR:
5750 case POSTINCREMENT_EXPR:
5751 case POSTDECREMENT_EXPR:
5752 return 1;
5753
5754 case ARRAY_REF:
5755 return 2;
5756
5757 case EXPR_PACK_EXPANSION:
5758 return 1;
5759
5760 default:
5761 return TREE_CODE_LENGTH (code);
5762 }
5763 }
5764
5765 /* Like EXPR_LOCATION, but also handle some tcc_exceptional that have
5766 locations. */
5767
5768 location_t
5769 cp_expr_location (const_tree t_)
5770 {
5771 tree t = CONST_CAST_TREE (t_);
5772 if (t == NULL_TREE)
5773 return UNKNOWN_LOCATION;
5774 switch (TREE_CODE (t))
5775 {
5776 case LAMBDA_EXPR:
5777 return LAMBDA_EXPR_LOCATION (t);
5778 case STATIC_ASSERT:
5779 return STATIC_ASSERT_SOURCE_LOCATION (t);
5780 case TRAIT_EXPR:
5781 return TRAIT_EXPR_LOCATION (t);
5782 default:
5783 return EXPR_LOCATION (t);
5784 }
5785 }
5786
5787 /* Implement -Wzero_as_null_pointer_constant. Return true if the
5788 conditions for the warning hold, false otherwise. */
5789 bool
5790 maybe_warn_zero_as_null_pointer_constant (tree expr, location_t loc)
5791 {
5792 if (c_inhibit_evaluation_warnings == 0
5793 && !null_node_p (expr) && !NULLPTR_TYPE_P (TREE_TYPE (expr)))
5794 {
5795 warning_at (loc, OPT_Wzero_as_null_pointer_constant,
5796 "zero as null pointer constant");
5797 return true;
5798 }
5799 return false;
5800 }
5801 \f
5802 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
5803 /* Complain that some language-specific thing hanging off a tree
5804 node has been accessed improperly. */
5805
5806 void
5807 lang_check_failed (const char* file, int line, const char* function)
5808 {
5809 internal_error ("%<lang_*%> check: failed in %s, at %s:%d",
5810 function, trim_filename (file), line);
5811 }
5812 #endif /* ENABLE_TREE_CHECKING */
5813
5814 #if CHECKING_P
5815
5816 namespace selftest {
5817
5818 /* Verify that lvalue_kind () works, for various expressions,
5819 and that location wrappers don't affect the results. */
5820
5821 static void
5822 test_lvalue_kind ()
5823 {
5824 location_t loc = BUILTINS_LOCATION;
5825
5826 /* Verify constants and parameters, without and with
5827 location wrappers. */
5828 tree int_cst = build_int_cst (integer_type_node, 42);
5829 ASSERT_EQ (clk_none, lvalue_kind (int_cst));
5830
5831 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc);
5832 ASSERT_TRUE (location_wrapper_p (wrapped_int_cst));
5833 ASSERT_EQ (clk_none, lvalue_kind (wrapped_int_cst));
5834
5835 tree string_lit = build_string (4, "foo");
5836 TREE_TYPE (string_lit) = char_array_type_node;
5837 string_lit = fix_string_type (string_lit);
5838 ASSERT_EQ (clk_ordinary, lvalue_kind (string_lit));
5839
5840 tree wrapped_string_lit = maybe_wrap_with_location (string_lit, loc);
5841 ASSERT_TRUE (location_wrapper_p (wrapped_string_lit));
5842 ASSERT_EQ (clk_ordinary, lvalue_kind (wrapped_string_lit));
5843
5844 tree parm = build_decl (UNKNOWN_LOCATION, PARM_DECL,
5845 get_identifier ("some_parm"),
5846 integer_type_node);
5847 ASSERT_EQ (clk_ordinary, lvalue_kind (parm));
5848
5849 tree wrapped_parm = maybe_wrap_with_location (parm, loc);
5850 ASSERT_TRUE (location_wrapper_p (wrapped_parm));
5851 ASSERT_EQ (clk_ordinary, lvalue_kind (wrapped_parm));
5852
5853 /* Verify that lvalue_kind of std::move on a parm isn't
5854 affected by location wrappers. */
5855 tree rvalue_ref_of_parm = move (parm);
5856 ASSERT_EQ (clk_rvalueref, lvalue_kind (rvalue_ref_of_parm));
5857 tree rvalue_ref_of_wrapped_parm = move (wrapped_parm);
5858 ASSERT_EQ (clk_rvalueref, lvalue_kind (rvalue_ref_of_wrapped_parm));
5859
5860 /* Verify lvalue_p. */
5861 ASSERT_FALSE (lvalue_p (int_cst));
5862 ASSERT_FALSE (lvalue_p (wrapped_int_cst));
5863 ASSERT_TRUE (lvalue_p (parm));
5864 ASSERT_TRUE (lvalue_p (wrapped_parm));
5865 ASSERT_FALSE (lvalue_p (rvalue_ref_of_parm));
5866 ASSERT_FALSE (lvalue_p (rvalue_ref_of_wrapped_parm));
5867 }
5868
5869 /* Run all of the selftests within this file. */
5870
5871 void
5872 cp_tree_c_tests ()
5873 {
5874 test_lvalue_kind ();
5875 }
5876
5877 } // namespace selftest
5878
5879 #endif /* #if CHECKING_P */
5880
5881
5882 #include "gt-cp-tree.h"