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