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