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