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