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