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