cgraph.h: Update copyrights;
[gcc.git] / gcc / cp / tree.c
1 /* Language-dependent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011,
4 2012
5 Free Software Foundation, Inc.
6 Hacked by Michael Tiemann (tiemann@cygnus.com)
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
14
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "cp-tree.h"
30 #include "flags.h"
31 #include "tree-inline.h"
32 #include "debug.h"
33 #include "convert.h"
34 #include "cgraph.h"
35 #include "splay-tree.h"
36 #include "gimple.h" /* gimple_has_body_p */
37
38 static tree bot_manip (tree *, int *, void *);
39 static tree bot_replace (tree *, int *, void *);
40 static int list_hash_eq (const void *, const void *);
41 static hashval_t list_hash_pieces (tree, tree, tree);
42 static hashval_t list_hash (const void *);
43 static tree build_target_expr (tree, tree, tsubst_flags_t);
44 static tree count_trees_r (tree *, int *, void *);
45 static tree verify_stmt_tree_r (tree *, int *, void *);
46 static tree build_local_temp (tree);
47
48 static tree handle_java_interface_attribute (tree *, tree, tree, int, bool *);
49 static tree handle_com_interface_attribute (tree *, tree, tree, int, bool *);
50 static tree handle_init_priority_attribute (tree *, tree, tree, int, bool *);
51
52 /* If REF is an lvalue, returns the kind of lvalue that REF is.
53 Otherwise, returns clk_none. */
54
55 cp_lvalue_kind
56 lvalue_kind (const_tree ref)
57 {
58 cp_lvalue_kind op1_lvalue_kind = clk_none;
59 cp_lvalue_kind op2_lvalue_kind = clk_none;
60
61 /* Expressions of reference type are sometimes wrapped in
62 INDIRECT_REFs. INDIRECT_REFs are just internal compiler
63 representation, not part of the language, so we have to look
64 through them. */
65 if (REFERENCE_REF_P (ref))
66 return lvalue_kind (TREE_OPERAND (ref, 0));
67
68 if (TREE_TYPE (ref)
69 && TREE_CODE (TREE_TYPE (ref)) == REFERENCE_TYPE)
70 {
71 /* unnamed rvalue references are rvalues */
72 if (TYPE_REF_IS_RVALUE (TREE_TYPE (ref))
73 && TREE_CODE (ref) != PARM_DECL
74 && TREE_CODE (ref) != VAR_DECL
75 && TREE_CODE (ref) != COMPONENT_REF
76 /* Functions are always lvalues. */
77 && TREE_CODE (TREE_TYPE (TREE_TYPE (ref))) != FUNCTION_TYPE)
78 return clk_rvalueref;
79
80 /* lvalue references and named rvalue references are lvalues. */
81 return clk_ordinary;
82 }
83
84 if (ref == current_class_ptr)
85 return clk_none;
86
87 switch (TREE_CODE (ref))
88 {
89 case SAVE_EXPR:
90 return clk_none;
91 /* preincrements and predecrements are valid lvals, provided
92 what they refer to are valid lvals. */
93 case PREINCREMENT_EXPR:
94 case PREDECREMENT_EXPR:
95 case TRY_CATCH_EXPR:
96 case WITH_CLEANUP_EXPR:
97 case REALPART_EXPR:
98 case IMAGPART_EXPR:
99 return lvalue_kind (TREE_OPERAND (ref, 0));
100
101 case COMPONENT_REF:
102 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
103 /* Look at the member designator. */
104 if (!op1_lvalue_kind)
105 ;
106 else if (is_overloaded_fn (TREE_OPERAND (ref, 1)))
107 /* The "field" can be a FUNCTION_DECL or an OVERLOAD in some
108 situations. If we're seeing a COMPONENT_REF, it's a non-static
109 member, so it isn't an lvalue. */
110 op1_lvalue_kind = clk_none;
111 else if (TREE_CODE (TREE_OPERAND (ref, 1)) != FIELD_DECL)
112 /* This can be IDENTIFIER_NODE in a template. */;
113 else if (DECL_C_BIT_FIELD (TREE_OPERAND (ref, 1)))
114 {
115 /* Clear the ordinary bit. If this object was a class
116 rvalue we want to preserve that information. */
117 op1_lvalue_kind &= ~clk_ordinary;
118 /* The lvalue is for a bitfield. */
119 op1_lvalue_kind |= clk_bitfield;
120 }
121 else if (DECL_PACKED (TREE_OPERAND (ref, 1)))
122 op1_lvalue_kind |= clk_packed;
123
124 return op1_lvalue_kind;
125
126 case STRING_CST:
127 case COMPOUND_LITERAL_EXPR:
128 return clk_ordinary;
129
130 case CONST_DECL:
131 /* CONST_DECL without TREE_STATIC are enumeration values and
132 thus not lvalues. With TREE_STATIC they are used by ObjC++
133 in objc_build_string_object and need to be considered as
134 lvalues. */
135 if (! TREE_STATIC (ref))
136 return clk_none;
137 case VAR_DECL:
138 if (TREE_READONLY (ref) && ! TREE_STATIC (ref)
139 && DECL_LANG_SPECIFIC (ref)
140 && DECL_IN_AGGR_P (ref))
141 return clk_none;
142 case INDIRECT_REF:
143 case ARROW_EXPR:
144 case ARRAY_REF:
145 case PARM_DECL:
146 case RESULT_DECL:
147 if (TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE)
148 return clk_ordinary;
149 break;
150
151 /* A scope ref in a template, left as SCOPE_REF to support later
152 access checking. */
153 case SCOPE_REF:
154 gcc_assert (!type_dependent_expression_p (CONST_CAST_TREE (ref)));
155 {
156 tree op = TREE_OPERAND (ref, 1);
157 if (TREE_CODE (op) == FIELD_DECL)
158 return (DECL_C_BIT_FIELD (op) ? clk_bitfield : clk_ordinary);
159 else
160 return lvalue_kind (op);
161 }
162
163 case MAX_EXPR:
164 case MIN_EXPR:
165 /* Disallow <? and >? as lvalues if either argument side-effects. */
166 if (TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 0))
167 || TREE_SIDE_EFFECTS (TREE_OPERAND (ref, 1)))
168 return clk_none;
169 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 0));
170 op2_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 1));
171 break;
172
173 case COND_EXPR:
174 op1_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 1)
175 ? TREE_OPERAND (ref, 1)
176 : TREE_OPERAND (ref, 0));
177 op2_lvalue_kind = lvalue_kind (TREE_OPERAND (ref, 2));
178 break;
179
180 case MODIFY_EXPR:
181 case TYPEID_EXPR:
182 return clk_ordinary;
183
184 case COMPOUND_EXPR:
185 return lvalue_kind (TREE_OPERAND (ref, 1));
186
187 case TARGET_EXPR:
188 return clk_class;
189
190 case VA_ARG_EXPR:
191 return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none);
192
193 case CALL_EXPR:
194 /* We can see calls outside of TARGET_EXPR in templates. */
195 if (CLASS_TYPE_P (TREE_TYPE (ref)))
196 return clk_class;
197 return clk_none;
198
199 case FUNCTION_DECL:
200 /* All functions (except non-static-member functions) are
201 lvalues. */
202 return (DECL_NONSTATIC_MEMBER_FUNCTION_P (ref)
203 ? clk_none : clk_ordinary);
204
205 case BASELINK:
206 /* We now represent a reference to a single static member function
207 with a BASELINK. */
208 /* This CONST_CAST is okay because BASELINK_FUNCTIONS returns
209 its argument unmodified and we assign it to a const_tree. */
210 return lvalue_kind (BASELINK_FUNCTIONS (CONST_CAST_TREE (ref)));
211
212 case NON_DEPENDENT_EXPR:
213 /* We just return clk_ordinary for NON_DEPENDENT_EXPR in C++98, but
214 in C++11 lvalues don't bind to rvalue references, so we need to
215 work harder to avoid bogus errors (c++/44870). */
216 if (cxx_dialect < cxx0x)
217 return clk_ordinary;
218 else
219 return lvalue_kind (TREE_OPERAND (ref, 0));
220
221 default:
222 if (!TREE_TYPE (ref))
223 return clk_none;
224 if (CLASS_TYPE_P (TREE_TYPE (ref)))
225 return clk_class;
226 break;
227 }
228
229 /* If one operand is not an lvalue at all, then this expression is
230 not an lvalue. */
231 if (!op1_lvalue_kind || !op2_lvalue_kind)
232 return clk_none;
233
234 /* Otherwise, it's an lvalue, and it has all the odd properties
235 contributed by either operand. */
236 op1_lvalue_kind = op1_lvalue_kind | op2_lvalue_kind;
237 /* It's not an ordinary lvalue if it involves any other kind. */
238 if ((op1_lvalue_kind & ~clk_ordinary) != clk_none)
239 op1_lvalue_kind &= ~clk_ordinary;
240 /* It can't be both a pseudo-lvalue and a non-addressable lvalue.
241 A COND_EXPR of those should be wrapped in a TARGET_EXPR. */
242 if ((op1_lvalue_kind & (clk_rvalueref|clk_class))
243 && (op1_lvalue_kind & (clk_bitfield|clk_packed)))
244 op1_lvalue_kind = clk_none;
245 return op1_lvalue_kind;
246 }
247
248 /* Returns the kind of lvalue that REF is, in the sense of
249 [basic.lval]. This function should really be named lvalue_p; it
250 computes the C++ definition of lvalue. */
251
252 cp_lvalue_kind
253 real_lvalue_p (const_tree ref)
254 {
255 cp_lvalue_kind kind = lvalue_kind (ref);
256 if (kind & (clk_rvalueref|clk_class))
257 return clk_none;
258 else
259 return kind;
260 }
261
262 /* This differs from real_lvalue_p in that class rvalues are considered
263 lvalues. */
264
265 bool
266 lvalue_p (const_tree ref)
267 {
268 return (lvalue_kind (ref) != clk_none);
269 }
270
271 /* This differs from real_lvalue_p in that rvalues formed by dereferencing
272 rvalue references are considered rvalues. */
273
274 bool
275 lvalue_or_rvalue_with_address_p (const_tree ref)
276 {
277 cp_lvalue_kind kind = lvalue_kind (ref);
278 if (kind & clk_class)
279 return false;
280 else
281 return (kind != clk_none);
282 }
283
284 /* Returns true if REF is an xvalue, false otherwise. */
285
286 bool
287 xvalue_p (const_tree ref)
288 {
289 return (lvalue_kind (ref) == clk_rvalueref);
290 }
291
292 /* Test whether DECL is a builtin that may appear in a
293 constant-expression. */
294
295 bool
296 builtin_valid_in_constant_expr_p (const_tree decl)
297 {
298 /* At present BUILT_IN_CONSTANT_P is the only builtin we're allowing
299 in constant-expressions. We may want to add other builtins later. */
300 return DECL_IS_BUILTIN_CONSTANT_P (decl);
301 }
302
303 /* Build a TARGET_EXPR, initializing the DECL with the VALUE. */
304
305 static tree
306 build_target_expr (tree decl, tree value, tsubst_flags_t complain)
307 {
308 tree t;
309 tree type = TREE_TYPE (decl);
310
311 #ifdef ENABLE_CHECKING
312 gcc_assert (VOID_TYPE_P (TREE_TYPE (value))
313 || TREE_TYPE (decl) == TREE_TYPE (value)
314 /* On ARM ctors return 'this'. */
315 || (TREE_CODE (TREE_TYPE (value)) == POINTER_TYPE
316 && TREE_CODE (value) == CALL_EXPR)
317 || useless_type_conversion_p (TREE_TYPE (decl),
318 TREE_TYPE (value)));
319 #endif
320
321 t = cxx_maybe_build_cleanup (decl, complain);
322 if (t == error_mark_node)
323 return error_mark_node;
324 t = build4 (TARGET_EXPR, type, decl, value, t, NULL_TREE);
325 /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
326 ignore the TARGET_EXPR. If there really turn out to be no
327 side-effects, then the optimizer should be able to get rid of
328 whatever code is generated anyhow. */
329 TREE_SIDE_EFFECTS (t) = 1;
330 if (literal_type_p (type))
331 TREE_CONSTANT (t) = TREE_CONSTANT (value);
332
333 return t;
334 }
335
336 /* Return an undeclared local temporary of type TYPE for use in building a
337 TARGET_EXPR. */
338
339 static tree
340 build_local_temp (tree type)
341 {
342 tree slot = build_decl (input_location,
343 VAR_DECL, NULL_TREE, type);
344 DECL_ARTIFICIAL (slot) = 1;
345 DECL_IGNORED_P (slot) = 1;
346 DECL_CONTEXT (slot) = current_function_decl;
347 layout_decl (slot, 0);
348 return slot;
349 }
350
351 /* Set various status flags when building an AGGR_INIT_EXPR object T. */
352
353 static void
354 process_aggr_init_operands (tree t)
355 {
356 bool side_effects;
357
358 side_effects = TREE_SIDE_EFFECTS (t);
359 if (!side_effects)
360 {
361 int i, n;
362 n = TREE_OPERAND_LENGTH (t);
363 for (i = 1; i < n; i++)
364 {
365 tree op = TREE_OPERAND (t, i);
366 if (op && TREE_SIDE_EFFECTS (op))
367 {
368 side_effects = 1;
369 break;
370 }
371 }
372 }
373 TREE_SIDE_EFFECTS (t) = side_effects;
374 }
375
376 /* Build an AGGR_INIT_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE,
377 FN, and SLOT. NARGS is the number of call arguments which are specified
378 as a tree array ARGS. */
379
380 static tree
381 build_aggr_init_array (tree return_type, tree fn, tree slot, int nargs,
382 tree *args)
383 {
384 tree t;
385 int i;
386
387 t = build_vl_exp (AGGR_INIT_EXPR, nargs + 3);
388 TREE_TYPE (t) = return_type;
389 AGGR_INIT_EXPR_FN (t) = fn;
390 AGGR_INIT_EXPR_SLOT (t) = slot;
391 for (i = 0; i < nargs; i++)
392 AGGR_INIT_EXPR_ARG (t, i) = args[i];
393 process_aggr_init_operands (t);
394 return t;
395 }
396
397 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
398 target. TYPE is the type to be initialized.
399
400 Build an AGGR_INIT_EXPR to represent the initialization. This function
401 differs from build_cplus_new in that an AGGR_INIT_EXPR can only be used
402 to initialize another object, whereas a TARGET_EXPR can either
403 initialize another object or create its own temporary object, and as a
404 result building up a TARGET_EXPR requires that the type's destructor be
405 callable. */
406
407 tree
408 build_aggr_init_expr (tree type, tree init, tsubst_flags_t complain)
409 {
410 tree fn;
411 tree slot;
412 tree rval;
413 int is_ctor;
414
415 /* Make sure that we're not trying to create an instance of an
416 abstract class. */
417 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
418 return error_mark_node;
419
420 if (TREE_CODE (init) == CALL_EXPR)
421 fn = CALL_EXPR_FN (init);
422 else if (TREE_CODE (init) == AGGR_INIT_EXPR)
423 fn = AGGR_INIT_EXPR_FN (init);
424 else
425 return convert (type, init);
426
427 is_ctor = (TREE_CODE (fn) == ADDR_EXPR
428 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
429 && DECL_CONSTRUCTOR_P (TREE_OPERAND (fn, 0)));
430
431 /* We split the CALL_EXPR into its function and its arguments here.
432 Then, in expand_expr, we put them back together. The reason for
433 this is that this expression might be a default argument
434 expression. In that case, we need a new temporary every time the
435 expression is used. That's what break_out_target_exprs does; it
436 replaces every AGGR_INIT_EXPR with a copy that uses a fresh
437 temporary slot. Then, expand_expr builds up a call-expression
438 using the new slot. */
439
440 /* If we don't need to use a constructor to create an object of this
441 type, don't mess with AGGR_INIT_EXPR. */
442 if (is_ctor || TREE_ADDRESSABLE (type))
443 {
444 slot = build_local_temp (type);
445
446 if (TREE_CODE(init) == CALL_EXPR)
447 rval = build_aggr_init_array (void_type_node, fn, slot,
448 call_expr_nargs (init),
449 CALL_EXPR_ARGP (init));
450 else
451 rval = build_aggr_init_array (void_type_node, fn, slot,
452 aggr_init_expr_nargs (init),
453 AGGR_INIT_EXPR_ARGP (init));
454 TREE_SIDE_EFFECTS (rval) = 1;
455 AGGR_INIT_VIA_CTOR_P (rval) = is_ctor;
456 TREE_NOTHROW (rval) = TREE_NOTHROW (init);
457 }
458 else
459 rval = init;
460
461 return rval;
462 }
463
464 /* INIT is a CALL_EXPR or AGGR_INIT_EXPR which needs info about its
465 target. TYPE is the type that this initialization should appear to
466 have.
467
468 Build an encapsulation of the initialization to perform
469 and return it so that it can be processed by language-independent
470 and language-specific expression expanders. */
471
472 tree
473 build_cplus_new (tree type, tree init, tsubst_flags_t complain)
474 {
475 tree rval = build_aggr_init_expr (type, init, complain);
476 tree slot;
477
478 if (TREE_CODE (rval) == AGGR_INIT_EXPR)
479 slot = AGGR_INIT_EXPR_SLOT (rval);
480 else if (TREE_CODE (rval) == CALL_EXPR
481 || TREE_CODE (rval) == CONSTRUCTOR)
482 slot = build_local_temp (type);
483 else
484 return rval;
485
486 rval = build_target_expr (slot, rval, complain);
487
488 if (rval != error_mark_node)
489 TARGET_EXPR_IMPLICIT_P (rval) = 1;
490
491 return rval;
492 }
493
494 /* Subroutine of build_vec_init_expr: Build up a single element
495 intialization as a proxy for the full array initialization to get things
496 marked as used and any appropriate diagnostics.
497
498 Since we're deferring building the actual constructor calls until
499 gimplification time, we need to build one now and throw it away so
500 that the relevant constructor gets mark_used before cgraph decides
501 what functions are needed. Here we assume that init is either
502 NULL_TREE, void_type_node (indicating value-initialization), or
503 another array to copy. */
504
505 static tree
506 build_vec_init_elt (tree type, tree init, tsubst_flags_t complain)
507 {
508 tree inner_type = strip_array_types (type);
509 VEC(tree,gc) *argvec;
510
511 if (integer_zerop (array_type_nelts_total (type))
512 || !CLASS_TYPE_P (inner_type))
513 /* No interesting initialization to do. */
514 return integer_zero_node;
515 else if (init == void_type_node)
516 return build_value_init (inner_type, complain);
517
518 gcc_assert (init == NULL_TREE
519 || (same_type_ignoring_top_level_qualifiers_p
520 (type, TREE_TYPE (init))));
521
522 argvec = make_tree_vector ();
523 if (init)
524 {
525 tree dummy = build_dummy_object (inner_type);
526 if (!real_lvalue_p (init))
527 dummy = move (dummy);
528 VEC_quick_push (tree, argvec, dummy);
529 }
530 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
531 &argvec, inner_type, LOOKUP_NORMAL,
532 complain);
533 release_tree_vector (argvec);
534
535 /* For a trivial constructor, build_over_call creates a TARGET_EXPR. But
536 we don't want one here because we aren't creating a temporary. */
537 if (TREE_CODE (init) == TARGET_EXPR)
538 init = TARGET_EXPR_INITIAL (init);
539
540 return init;
541 }
542
543 /* Return a TARGET_EXPR which expresses the initialization of an array to
544 be named later, either default-initialization or copy-initialization
545 from another array of the same type. */
546
547 tree
548 build_vec_init_expr (tree type, tree init, tsubst_flags_t complain)
549 {
550 tree slot;
551 bool value_init = false;
552 tree elt_init = build_vec_init_elt (type, init, complain);
553
554 if (init == void_type_node)
555 {
556 value_init = true;
557 init = NULL_TREE;
558 }
559
560 slot = build_local_temp (type);
561 init = build2 (VEC_INIT_EXPR, type, slot, init);
562 TREE_SIDE_EFFECTS (init) = true;
563 SET_EXPR_LOCATION (init, input_location);
564
565 if (cxx_dialect >= cxx0x
566 && potential_constant_expression (elt_init))
567 VEC_INIT_EXPR_IS_CONSTEXPR (init) = true;
568 VEC_INIT_EXPR_VALUE_INIT (init) = value_init;
569
570 return init;
571 }
572
573 /* Give a helpful diagnostic for a non-constexpr VEC_INIT_EXPR in a context
574 that requires a constant expression. */
575
576 void
577 diagnose_non_constexpr_vec_init (tree expr)
578 {
579 tree type = TREE_TYPE (VEC_INIT_EXPR_SLOT (expr));
580 tree init, elt_init;
581 if (VEC_INIT_EXPR_VALUE_INIT (expr))
582 init = void_type_node;
583 else
584 init = VEC_INIT_EXPR_INIT (expr);
585
586 elt_init = build_vec_init_elt (type, init, tf_warning_or_error);
587 require_potential_constant_expression (elt_init);
588 }
589
590 tree
591 build_array_copy (tree init)
592 {
593 return build_vec_init_expr (TREE_TYPE (init), init, tf_warning_or_error);
594 }
595
596 /* Build a TARGET_EXPR using INIT to initialize a new temporary of the
597 indicated TYPE. */
598
599 tree
600 build_target_expr_with_type (tree init, tree type, tsubst_flags_t complain)
601 {
602 gcc_assert (!VOID_TYPE_P (type));
603
604 if (TREE_CODE (init) == TARGET_EXPR
605 || init == error_mark_node)
606 return init;
607 else if (CLASS_TYPE_P (type) && type_has_nontrivial_copy_init (type)
608 && !VOID_TYPE_P (TREE_TYPE (init))
609 && TREE_CODE (init) != COND_EXPR
610 && TREE_CODE (init) != CONSTRUCTOR
611 && TREE_CODE (init) != VA_ARG_EXPR)
612 /* We need to build up a copy constructor call. A void initializer
613 means we're being called from bot_manip. COND_EXPR is a special
614 case because we already have copies on the arms and we don't want
615 another one here. A CONSTRUCTOR is aggregate initialization, which
616 is handled separately. A VA_ARG_EXPR is magic creation of an
617 aggregate; there's no additional work to be done. */
618 return force_rvalue (init, complain);
619
620 return force_target_expr (type, init, complain);
621 }
622
623 /* Like the above function, but without the checking. This function should
624 only be used by code which is deliberately trying to subvert the type
625 system, such as call_builtin_trap. Or build_over_call, to avoid
626 infinite recursion. */
627
628 tree
629 force_target_expr (tree type, tree init, tsubst_flags_t complain)
630 {
631 tree slot;
632
633 gcc_assert (!VOID_TYPE_P (type));
634
635 slot = build_local_temp (type);
636 return build_target_expr (slot, init, complain);
637 }
638
639 /* Like build_target_expr_with_type, but use the type of INIT. */
640
641 tree
642 get_target_expr_sfinae (tree init, tsubst_flags_t complain)
643 {
644 if (TREE_CODE (init) == AGGR_INIT_EXPR)
645 return build_target_expr (AGGR_INIT_EXPR_SLOT (init), init, complain);
646 else if (TREE_CODE (init) == VEC_INIT_EXPR)
647 return build_target_expr (VEC_INIT_EXPR_SLOT (init), init, complain);
648 else
649 return build_target_expr_with_type (init, TREE_TYPE (init), complain);
650 }
651
652 tree
653 get_target_expr (tree init)
654 {
655 return get_target_expr_sfinae (init, tf_warning_or_error);
656 }
657
658 /* If EXPR is a bitfield reference, convert it to the declared type of
659 the bitfield, and return the resulting expression. Otherwise,
660 return EXPR itself. */
661
662 tree
663 convert_bitfield_to_declared_type (tree expr)
664 {
665 tree bitfield_type;
666
667 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
668 if (bitfield_type)
669 expr = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type),
670 expr);
671 return expr;
672 }
673
674 /* EXPR is being used in an rvalue context. Return a version of EXPR
675 that is marked as an rvalue. */
676
677 tree
678 rvalue (tree expr)
679 {
680 tree type;
681
682 if (error_operand_p (expr))
683 return expr;
684
685 expr = mark_rvalue_use (expr);
686
687 /* [basic.lval]
688
689 Non-class rvalues always have cv-unqualified types. */
690 type = TREE_TYPE (expr);
691 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
692 type = cv_unqualified (type);
693
694 /* We need to do this for rvalue refs as well to get the right answer
695 from decltype; see c++/36628. */
696 if (!processing_template_decl && lvalue_or_rvalue_with_address_p (expr))
697 expr = build1 (NON_LVALUE_EXPR, type, expr);
698 else if (type != TREE_TYPE (expr))
699 expr = build_nop (type, expr);
700
701 return expr;
702 }
703
704 \f
705 /* Hash an ARRAY_TYPE. K is really of type `tree'. */
706
707 static hashval_t
708 cplus_array_hash (const void* k)
709 {
710 hashval_t hash;
711 const_tree const t = (const_tree) k;
712
713 hash = TYPE_UID (TREE_TYPE (t));
714 if (TYPE_DOMAIN (t))
715 hash ^= TYPE_UID (TYPE_DOMAIN (t));
716 return hash;
717 }
718
719 typedef struct cplus_array_info {
720 tree type;
721 tree domain;
722 } cplus_array_info;
723
724 /* Compare two ARRAY_TYPEs. K1 is really of type `tree', K2 is really
725 of type `cplus_array_info*'. */
726
727 static int
728 cplus_array_compare (const void * k1, const void * k2)
729 {
730 const_tree const t1 = (const_tree) k1;
731 const cplus_array_info *const t2 = (const cplus_array_info*) k2;
732
733 return (TREE_TYPE (t1) == t2->type && TYPE_DOMAIN (t1) == t2->domain);
734 }
735
736 /* Hash table containing dependent array types, which are unsuitable for
737 the language-independent type hash table. */
738 static GTY ((param_is (union tree_node))) htab_t cplus_array_htab;
739
740 /* Like build_array_type, but handle special C++ semantics. */
741
742 tree
743 build_cplus_array_type (tree elt_type, tree index_type)
744 {
745 tree t;
746
747 if (elt_type == error_mark_node || index_type == error_mark_node)
748 return error_mark_node;
749
750 if (processing_template_decl
751 && (dependent_type_p (elt_type)
752 || (index_type && !TREE_CONSTANT (TYPE_MAX_VALUE (index_type)))))
753 {
754 void **e;
755 cplus_array_info cai;
756 hashval_t hash;
757
758 if (cplus_array_htab == NULL)
759 cplus_array_htab = htab_create_ggc (61, &cplus_array_hash,
760 &cplus_array_compare, NULL);
761
762 hash = TYPE_UID (elt_type);
763 if (index_type)
764 hash ^= TYPE_UID (index_type);
765 cai.type = elt_type;
766 cai.domain = index_type;
767
768 e = htab_find_slot_with_hash (cplus_array_htab, &cai, hash, INSERT);
769 if (*e)
770 /* We have found the type: we're done. */
771 return (tree) *e;
772 else
773 {
774 /* Build a new array type. */
775 t = cxx_make_type (ARRAY_TYPE);
776 TREE_TYPE (t) = elt_type;
777 TYPE_DOMAIN (t) = index_type;
778
779 /* Store it in the hash table. */
780 *e = t;
781
782 /* Set the canonical type for this new node. */
783 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
784 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
785 SET_TYPE_STRUCTURAL_EQUALITY (t);
786 else if (TYPE_CANONICAL (elt_type) != elt_type
787 || (index_type
788 && TYPE_CANONICAL (index_type) != index_type))
789 TYPE_CANONICAL (t)
790 = build_cplus_array_type
791 (TYPE_CANONICAL (elt_type),
792 index_type ? TYPE_CANONICAL (index_type) : index_type);
793 else
794 TYPE_CANONICAL (t) = t;
795 }
796 }
797 else
798 t = build_array_type (elt_type, index_type);
799
800 /* We want TYPE_MAIN_VARIANT of an array to strip cv-quals from the
801 element type as well, so fix it up if needed. */
802 if (elt_type != TYPE_MAIN_VARIANT (elt_type))
803 {
804 tree m = build_cplus_array_type (TYPE_MAIN_VARIANT (elt_type),
805 index_type);
806 if (TYPE_MAIN_VARIANT (t) != m)
807 {
808 TYPE_MAIN_VARIANT (t) = m;
809 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
810 TYPE_NEXT_VARIANT (m) = t;
811 }
812 }
813
814 /* Push these needs up so that initialization takes place
815 more easily. */
816 TYPE_NEEDS_CONSTRUCTING (t)
817 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (elt_type));
818 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
819 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (elt_type));
820 return t;
821 }
822
823 /* Return an ARRAY_TYPE with element type ELT and length N. */
824
825 tree
826 build_array_of_n_type (tree elt, int n)
827 {
828 return build_cplus_array_type (elt, build_index_type (size_int (n - 1)));
829 }
830
831 /* Return a reference type node referring to TO_TYPE. If RVAL is
832 true, return an rvalue reference type, otherwise return an lvalue
833 reference type. If a type node exists, reuse it, otherwise create
834 a new one. */
835 tree
836 cp_build_reference_type (tree to_type, bool rval)
837 {
838 tree lvalue_ref, t;
839 lvalue_ref = build_reference_type (to_type);
840 if (!rval)
841 return lvalue_ref;
842
843 /* This code to create rvalue reference types is based on and tied
844 to the code creating lvalue reference types in the middle-end
845 functions build_reference_type_for_mode and build_reference_type.
846
847 It works by putting the rvalue reference type nodes after the
848 lvalue reference nodes in the TYPE_NEXT_REF_TO linked list, so
849 they will effectively be ignored by the middle end. */
850
851 for (t = lvalue_ref; (t = TYPE_NEXT_REF_TO (t)); )
852 if (TYPE_REF_IS_RVALUE (t))
853 return t;
854
855 t = build_distinct_type_copy (lvalue_ref);
856
857 TYPE_REF_IS_RVALUE (t) = true;
858 TYPE_NEXT_REF_TO (t) = TYPE_NEXT_REF_TO (lvalue_ref);
859 TYPE_NEXT_REF_TO (lvalue_ref) = t;
860
861 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
862 SET_TYPE_STRUCTURAL_EQUALITY (t);
863 else if (TYPE_CANONICAL (to_type) != to_type)
864 TYPE_CANONICAL (t)
865 = cp_build_reference_type (TYPE_CANONICAL (to_type), rval);
866 else
867 TYPE_CANONICAL (t) = t;
868
869 layout_type (t);
870
871 return t;
872
873 }
874
875 /* Returns EXPR cast to rvalue reference type, like std::move. */
876
877 tree
878 move (tree expr)
879 {
880 tree type = TREE_TYPE (expr);
881 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
882 type = cp_build_reference_type (type, /*rval*/true);
883 return build_static_cast (type, expr, tf_warning_or_error);
884 }
885
886 /* Used by the C++ front end to build qualified array types. However,
887 the C version of this function does not properly maintain canonical
888 types (which are not used in C). */
889 tree
890 c_build_qualified_type (tree type, int type_quals)
891 {
892 return cp_build_qualified_type (type, type_quals);
893 }
894
895 \f
896 /* Make a variant of TYPE, qualified with the TYPE_QUALS. Handles
897 arrays correctly. In particular, if TYPE is an array of T's, and
898 TYPE_QUALS is non-empty, returns an array of qualified T's.
899
900 FLAGS determines how to deal with ill-formed qualifications. If
901 tf_ignore_bad_quals is set, then bad qualifications are dropped
902 (this is permitted if TYPE was introduced via a typedef or template
903 type parameter). If bad qualifications are dropped and tf_warning
904 is set, then a warning is issued for non-const qualifications. If
905 tf_ignore_bad_quals is not set and tf_error is not set, we
906 return error_mark_node. Otherwise, we issue an error, and ignore
907 the qualifications.
908
909 Qualification of a reference type is valid when the reference came
910 via a typedef or template type argument. [dcl.ref] No such
911 dispensation is provided for qualifying a function type. [dcl.fct]
912 DR 295 queries this and the proposed resolution brings it into line
913 with qualifying a reference. We implement the DR. We also behave
914 in a similar manner for restricting non-pointer types. */
915
916 tree
917 cp_build_qualified_type_real (tree type,
918 int type_quals,
919 tsubst_flags_t complain)
920 {
921 tree result;
922 int bad_quals = TYPE_UNQUALIFIED;
923
924 if (type == error_mark_node)
925 return type;
926
927 if (type_quals == cp_type_quals (type))
928 return type;
929
930 if (TREE_CODE (type) == ARRAY_TYPE)
931 {
932 /* In C++, the qualification really applies to the array element
933 type. Obtain the appropriately qualified element type. */
934 tree t;
935 tree element_type
936 = cp_build_qualified_type_real (TREE_TYPE (type),
937 type_quals,
938 complain);
939
940 if (element_type == error_mark_node)
941 return error_mark_node;
942
943 /* See if we already have an identically qualified type. Tests
944 should be equivalent to those in check_qualified_type. */
945 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
946 if (TREE_TYPE (t) == element_type
947 && TYPE_NAME (t) == TYPE_NAME (type)
948 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
949 && attribute_list_equal (TYPE_ATTRIBUTES (t),
950 TYPE_ATTRIBUTES (type)))
951 break;
952
953 if (!t)
954 {
955 t = build_cplus_array_type (element_type, TYPE_DOMAIN (type));
956
957 /* Keep the typedef name. */
958 if (TYPE_NAME (t) != TYPE_NAME (type))
959 {
960 t = build_variant_type_copy (t);
961 TYPE_NAME (t) = TYPE_NAME (type);
962 }
963 }
964
965 /* Even if we already had this variant, we update
966 TYPE_NEEDS_CONSTRUCTING and TYPE_HAS_NONTRIVIAL_DESTRUCTOR in case
967 they changed since the variant was originally created.
968
969 This seems hokey; if there is some way to use a previous
970 variant *without* coming through here,
971 TYPE_NEEDS_CONSTRUCTING will never be updated. */
972 TYPE_NEEDS_CONSTRUCTING (t)
973 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (element_type));
974 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
975 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (element_type));
976 return t;
977 }
978 else if (TYPE_PTRMEMFUNC_P (type))
979 {
980 /* For a pointer-to-member type, we can't just return a
981 cv-qualified version of the RECORD_TYPE. If we do, we
982 haven't changed the field that contains the actual pointer to
983 a method, and so TYPE_PTRMEMFUNC_FN_TYPE will be wrong. */
984 tree t;
985
986 t = TYPE_PTRMEMFUNC_FN_TYPE (type);
987 t = cp_build_qualified_type_real (t, type_quals, complain);
988 return build_ptrmemfunc_type (t);
989 }
990 else if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
991 {
992 tree t = PACK_EXPANSION_PATTERN (type);
993
994 t = cp_build_qualified_type_real (t, type_quals, complain);
995 return make_pack_expansion (t);
996 }
997
998 /* A reference or method type shall not be cv-qualified.
999 [dcl.ref], [dcl.fct]. This used to be an error, but as of DR 295
1000 (in CD1) we always ignore extra cv-quals on functions. */
1001 if (type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)
1002 && (TREE_CODE (type) == REFERENCE_TYPE
1003 || TREE_CODE (type) == FUNCTION_TYPE
1004 || TREE_CODE (type) == METHOD_TYPE))
1005 {
1006 if (TREE_CODE (type) == REFERENCE_TYPE)
1007 bad_quals |= type_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1008 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
1009 }
1010
1011 /* But preserve any function-cv-quals on a FUNCTION_TYPE. */
1012 if (TREE_CODE (type) == FUNCTION_TYPE)
1013 type_quals |= type_memfn_quals (type);
1014
1015 /* A restrict-qualified type must be a pointer (or reference)
1016 to object or incomplete type. */
1017 if ((type_quals & TYPE_QUAL_RESTRICT)
1018 && TREE_CODE (type) != TEMPLATE_TYPE_PARM
1019 && TREE_CODE (type) != TYPENAME_TYPE
1020 && !POINTER_TYPE_P (type))
1021 {
1022 bad_quals |= TYPE_QUAL_RESTRICT;
1023 type_quals &= ~TYPE_QUAL_RESTRICT;
1024 }
1025
1026 if (bad_quals == TYPE_UNQUALIFIED
1027 || (complain & tf_ignore_bad_quals))
1028 /*OK*/;
1029 else if (!(complain & tf_error))
1030 return error_mark_node;
1031 else
1032 {
1033 tree bad_type = build_qualified_type (ptr_type_node, bad_quals);
1034 error ("%qV qualifiers cannot be applied to %qT",
1035 bad_type, type);
1036 }
1037
1038 /* Retrieve (or create) the appropriately qualified variant. */
1039 result = build_qualified_type (type, type_quals);
1040
1041 /* If this was a pointer-to-method type, and we just made a copy,
1042 then we need to unshare the record that holds the cached
1043 pointer-to-member-function type, because these will be distinct
1044 between the unqualified and qualified types. */
1045 if (result != type
1046 && TREE_CODE (type) == POINTER_TYPE
1047 && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE
1048 && TYPE_LANG_SPECIFIC (result) == TYPE_LANG_SPECIFIC (type))
1049 TYPE_LANG_SPECIFIC (result) = NULL;
1050
1051 /* We may also have ended up building a new copy of the canonical
1052 type of a pointer-to-method type, which could have the same
1053 sharing problem described above. */
1054 if (TYPE_CANONICAL (result) != TYPE_CANONICAL (type)
1055 && TREE_CODE (type) == POINTER_TYPE
1056 && TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE
1057 && (TYPE_LANG_SPECIFIC (TYPE_CANONICAL (result))
1058 == TYPE_LANG_SPECIFIC (TYPE_CANONICAL (type))))
1059 TYPE_LANG_SPECIFIC (TYPE_CANONICAL (result)) = NULL;
1060
1061 return result;
1062 }
1063
1064 /* Return TYPE with const and volatile removed. */
1065
1066 tree
1067 cv_unqualified (tree type)
1068 {
1069 int quals;
1070
1071 if (type == error_mark_node)
1072 return type;
1073
1074 quals = cp_type_quals (type);
1075 quals &= ~(TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE);
1076 return cp_build_qualified_type (type, quals);
1077 }
1078
1079 /* Builds a qualified variant of T that is not a typedef variant.
1080 E.g. consider the following declarations:
1081 typedef const int ConstInt;
1082 typedef ConstInt* PtrConstInt;
1083 If T is PtrConstInt, this function returns a type representing
1084 const int*.
1085 In other words, if T is a typedef, the function returns the underlying type.
1086 The cv-qualification and attributes of the type returned match the
1087 input type.
1088 They will always be compatible types.
1089 The returned type is built so that all of its subtypes
1090 recursively have their typedefs stripped as well.
1091
1092 This is different from just returning TYPE_CANONICAL (T)
1093 Because of several reasons:
1094 * If T is a type that needs structural equality
1095 its TYPE_CANONICAL (T) will be NULL.
1096 * TYPE_CANONICAL (T) desn't carry type attributes
1097 and looses template parameter names. */
1098
1099 tree
1100 strip_typedefs (tree t)
1101 {
1102 tree result = NULL, type = NULL, t0 = NULL;
1103
1104 if (!t || t == error_mark_node || t == TYPE_CANONICAL (t))
1105 return t;
1106
1107 gcc_assert (TYPE_P (t));
1108
1109 switch (TREE_CODE (t))
1110 {
1111 case POINTER_TYPE:
1112 type = strip_typedefs (TREE_TYPE (t));
1113 result = build_pointer_type (type);
1114 break;
1115 case REFERENCE_TYPE:
1116 type = strip_typedefs (TREE_TYPE (t));
1117 result = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
1118 break;
1119 case OFFSET_TYPE:
1120 t0 = strip_typedefs (TYPE_OFFSET_BASETYPE (t));
1121 type = strip_typedefs (TREE_TYPE (t));
1122 result = build_offset_type (t0, type);
1123 break;
1124 case RECORD_TYPE:
1125 if (TYPE_PTRMEMFUNC_P (t))
1126 {
1127 t0 = strip_typedefs (TYPE_PTRMEMFUNC_FN_TYPE (t));
1128 result = build_ptrmemfunc_type (t0);
1129 }
1130 break;
1131 case ARRAY_TYPE:
1132 type = strip_typedefs (TREE_TYPE (t));
1133 t0 = strip_typedefs (TYPE_DOMAIN (t));;
1134 result = build_cplus_array_type (type, t0);
1135 break;
1136 case FUNCTION_TYPE:
1137 case METHOD_TYPE:
1138 {
1139 tree arg_types = NULL, arg_node, arg_type;
1140 for (arg_node = TYPE_ARG_TYPES (t);
1141 arg_node;
1142 arg_node = TREE_CHAIN (arg_node))
1143 {
1144 if (arg_node == void_list_node)
1145 break;
1146 arg_type = strip_typedefs (TREE_VALUE (arg_node));
1147 gcc_assert (arg_type);
1148
1149 arg_types =
1150 tree_cons (TREE_PURPOSE (arg_node), arg_type, arg_types);
1151 }
1152
1153 if (arg_types)
1154 arg_types = nreverse (arg_types);
1155
1156 /* A list of parameters not ending with an ellipsis
1157 must end with void_list_node. */
1158 if (arg_node)
1159 arg_types = chainon (arg_types, void_list_node);
1160
1161 type = strip_typedefs (TREE_TYPE (t));
1162 if (TREE_CODE (t) == METHOD_TYPE)
1163 {
1164 tree class_type = TREE_TYPE (TREE_VALUE (arg_types));
1165 gcc_assert (class_type);
1166 result =
1167 build_method_type_directly (class_type, type,
1168 TREE_CHAIN (arg_types));
1169 }
1170 else
1171 {
1172 result = build_function_type (type,
1173 arg_types);
1174 result = apply_memfn_quals (result, type_memfn_quals (t));
1175 }
1176
1177 if (TYPE_RAISES_EXCEPTIONS (t))
1178 result = build_exception_variant (result,
1179 TYPE_RAISES_EXCEPTIONS (t));
1180 }
1181 break;
1182 case TYPENAME_TYPE:
1183 result = make_typename_type (strip_typedefs (TYPE_CONTEXT (t)),
1184 TYPENAME_TYPE_FULLNAME (t),
1185 typename_type, tf_none);
1186 break;
1187 default:
1188 break;
1189 }
1190
1191 if (!result)
1192 result = TYPE_MAIN_VARIANT (t);
1193 if (TYPE_USER_ALIGN (t) != TYPE_USER_ALIGN (result)
1194 || TYPE_ALIGN (t) != TYPE_ALIGN (result))
1195 {
1196 gcc_assert (TYPE_USER_ALIGN (t));
1197 if (TYPE_ALIGN (t) == TYPE_ALIGN (result))
1198 result = build_variant_type_copy (result);
1199 else
1200 result = build_aligned_type (result, TYPE_ALIGN (t));
1201 TYPE_USER_ALIGN (result) = true;
1202 }
1203 if (TYPE_ATTRIBUTES (t))
1204 result = cp_build_type_attribute_variant (result, TYPE_ATTRIBUTES (t));
1205 return cp_build_qualified_type (result, cp_type_quals (t));
1206 }
1207
1208 /* Makes a copy of BINFO and TYPE, which is to be inherited into a
1209 graph dominated by T. If BINFO is NULL, TYPE is a dependent base,
1210 and we do a shallow copy. If BINFO is non-NULL, we do a deep copy.
1211 VIRT indicates whether TYPE is inherited virtually or not.
1212 IGO_PREV points at the previous binfo of the inheritance graph
1213 order chain. The newly copied binfo's TREE_CHAIN forms this
1214 ordering.
1215
1216 The CLASSTYPE_VBASECLASSES vector of T is constructed in the
1217 correct order. That is in the order the bases themselves should be
1218 constructed in.
1219
1220 The BINFO_INHERITANCE of a virtual base class points to the binfo
1221 of the most derived type. ??? We could probably change this so that
1222 BINFO_INHERITANCE becomes synonymous with BINFO_PRIMARY, and hence
1223 remove a field. They currently can only differ for primary virtual
1224 virtual bases. */
1225
1226 tree
1227 copy_binfo (tree binfo, tree type, tree t, tree *igo_prev, int virt)
1228 {
1229 tree new_binfo;
1230
1231 if (virt)
1232 {
1233 /* See if we've already made this virtual base. */
1234 new_binfo = binfo_for_vbase (type, t);
1235 if (new_binfo)
1236 return new_binfo;
1237 }
1238
1239 new_binfo = make_tree_binfo (binfo ? BINFO_N_BASE_BINFOS (binfo) : 0);
1240 BINFO_TYPE (new_binfo) = type;
1241
1242 /* Chain it into the inheritance graph. */
1243 TREE_CHAIN (*igo_prev) = new_binfo;
1244 *igo_prev = new_binfo;
1245
1246 if (binfo && !BINFO_DEPENDENT_BASE_P (binfo))
1247 {
1248 int ix;
1249 tree base_binfo;
1250
1251 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), type));
1252
1253 BINFO_OFFSET (new_binfo) = BINFO_OFFSET (binfo);
1254 BINFO_VIRTUALS (new_binfo) = BINFO_VIRTUALS (binfo);
1255
1256 /* We do not need to copy the accesses, as they are read only. */
1257 BINFO_BASE_ACCESSES (new_binfo) = BINFO_BASE_ACCESSES (binfo);
1258
1259 /* Recursively copy base binfos of BINFO. */
1260 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1261 {
1262 tree new_base_binfo;
1263 new_base_binfo = copy_binfo (base_binfo, BINFO_TYPE (base_binfo),
1264 t, igo_prev,
1265 BINFO_VIRTUAL_P (base_binfo));
1266
1267 if (!BINFO_INHERITANCE_CHAIN (new_base_binfo))
1268 BINFO_INHERITANCE_CHAIN (new_base_binfo) = new_binfo;
1269 BINFO_BASE_APPEND (new_binfo, new_base_binfo);
1270 }
1271 }
1272 else
1273 BINFO_DEPENDENT_BASE_P (new_binfo) = 1;
1274
1275 if (virt)
1276 {
1277 /* Push it onto the list after any virtual bases it contains
1278 will have been pushed. */
1279 VEC_quick_push (tree, CLASSTYPE_VBASECLASSES (t), new_binfo);
1280 BINFO_VIRTUAL_P (new_binfo) = 1;
1281 BINFO_INHERITANCE_CHAIN (new_binfo) = TYPE_BINFO (t);
1282 }
1283
1284 return new_binfo;
1285 }
1286 \f
1287 /* Hashing of lists so that we don't make duplicates.
1288 The entry point is `list_hash_canon'. */
1289
1290 /* Now here is the hash table. When recording a list, it is added
1291 to the slot whose index is the hash code mod the table size.
1292 Note that the hash table is used for several kinds of lists.
1293 While all these live in the same table, they are completely independent,
1294 and the hash code is computed differently for each of these. */
1295
1296 static GTY ((param_is (union tree_node))) htab_t list_hash_table;
1297
1298 struct list_proxy
1299 {
1300 tree purpose;
1301 tree value;
1302 tree chain;
1303 };
1304
1305 /* Compare ENTRY (an entry in the hash table) with DATA (a list_proxy
1306 for a node we are thinking about adding). */
1307
1308 static int
1309 list_hash_eq (const void* entry, const void* data)
1310 {
1311 const_tree const t = (const_tree) entry;
1312 const struct list_proxy *const proxy = (const struct list_proxy *) data;
1313
1314 return (TREE_VALUE (t) == proxy->value
1315 && TREE_PURPOSE (t) == proxy->purpose
1316 && TREE_CHAIN (t) == proxy->chain);
1317 }
1318
1319 /* Compute a hash code for a list (chain of TREE_LIST nodes
1320 with goodies in the TREE_PURPOSE, TREE_VALUE, and bits of the
1321 TREE_COMMON slots), by adding the hash codes of the individual entries. */
1322
1323 static hashval_t
1324 list_hash_pieces (tree purpose, tree value, tree chain)
1325 {
1326 hashval_t hashcode = 0;
1327
1328 if (chain)
1329 hashcode += TREE_HASH (chain);
1330
1331 if (value)
1332 hashcode += TREE_HASH (value);
1333 else
1334 hashcode += 1007;
1335 if (purpose)
1336 hashcode += TREE_HASH (purpose);
1337 else
1338 hashcode += 1009;
1339 return hashcode;
1340 }
1341
1342 /* Hash an already existing TREE_LIST. */
1343
1344 static hashval_t
1345 list_hash (const void* p)
1346 {
1347 const_tree const t = (const_tree) p;
1348 return list_hash_pieces (TREE_PURPOSE (t),
1349 TREE_VALUE (t),
1350 TREE_CHAIN (t));
1351 }
1352
1353 /* Given list components PURPOSE, VALUE, AND CHAIN, return the canonical
1354 object for an identical list if one already exists. Otherwise, build a
1355 new one, and record it as the canonical object. */
1356
1357 tree
1358 hash_tree_cons (tree purpose, tree value, tree chain)
1359 {
1360 int hashcode = 0;
1361 void **slot;
1362 struct list_proxy proxy;
1363
1364 /* Hash the list node. */
1365 hashcode = list_hash_pieces (purpose, value, chain);
1366 /* Create a proxy for the TREE_LIST we would like to create. We
1367 don't actually create it so as to avoid creating garbage. */
1368 proxy.purpose = purpose;
1369 proxy.value = value;
1370 proxy.chain = chain;
1371 /* See if it is already in the table. */
1372 slot = htab_find_slot_with_hash (list_hash_table, &proxy, hashcode,
1373 INSERT);
1374 /* If not, create a new node. */
1375 if (!*slot)
1376 *slot = tree_cons (purpose, value, chain);
1377 return (tree) *slot;
1378 }
1379
1380 /* Constructor for hashed lists. */
1381
1382 tree
1383 hash_tree_chain (tree value, tree chain)
1384 {
1385 return hash_tree_cons (NULL_TREE, value, chain);
1386 }
1387 \f
1388 void
1389 debug_binfo (tree elem)
1390 {
1391 HOST_WIDE_INT n;
1392 tree virtuals;
1393
1394 fprintf (stderr, "type \"%s\", offset = " HOST_WIDE_INT_PRINT_DEC
1395 "\nvtable type:\n",
1396 TYPE_NAME_STRING (BINFO_TYPE (elem)),
1397 TREE_INT_CST_LOW (BINFO_OFFSET (elem)));
1398 debug_tree (BINFO_TYPE (elem));
1399 if (BINFO_VTABLE (elem))
1400 fprintf (stderr, "vtable decl \"%s\"\n",
1401 IDENTIFIER_POINTER (DECL_NAME (get_vtbl_decl_for_binfo (elem))));
1402 else
1403 fprintf (stderr, "no vtable decl yet\n");
1404 fprintf (stderr, "virtuals:\n");
1405 virtuals = BINFO_VIRTUALS (elem);
1406 n = 0;
1407
1408 while (virtuals)
1409 {
1410 tree fndecl = TREE_VALUE (virtuals);
1411 fprintf (stderr, "%s [%ld =? %ld]\n",
1412 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)),
1413 (long) n, (long) TREE_INT_CST_LOW (DECL_VINDEX (fndecl)));
1414 ++n;
1415 virtuals = TREE_CHAIN (virtuals);
1416 }
1417 }
1418
1419 /* Build a representation for the qualified name SCOPE::NAME. TYPE is
1420 the type of the result expression, if known, or NULL_TREE if the
1421 resulting expression is type-dependent. If TEMPLATE_P is true,
1422 NAME is known to be a template because the user explicitly used the
1423 "template" keyword after the "::".
1424
1425 All SCOPE_REFs should be built by use of this function. */
1426
1427 tree
1428 build_qualified_name (tree type, tree scope, tree name, bool template_p)
1429 {
1430 tree t;
1431 if (type == error_mark_node
1432 || scope == error_mark_node
1433 || name == error_mark_node)
1434 return error_mark_node;
1435 t = build2 (SCOPE_REF, type, scope, name);
1436 QUALIFIED_NAME_IS_TEMPLATE (t) = template_p;
1437 PTRMEM_OK_P (t) = true;
1438 if (type)
1439 t = convert_from_reference (t);
1440 return t;
1441 }
1442
1443 /* Returns nonzero if X is an expression for a (possibly overloaded)
1444 function. If "f" is a function or function template, "f", "c->f",
1445 "c.f", "C::f", and "f<int>" will all be considered possibly
1446 overloaded functions. Returns 2 if the function is actually
1447 overloaded, i.e., if it is impossible to know the type of the
1448 function without performing overload resolution. */
1449
1450 int
1451 is_overloaded_fn (tree x)
1452 {
1453 /* A baselink is also considered an overloaded function. */
1454 if (TREE_CODE (x) == OFFSET_REF
1455 || TREE_CODE (x) == COMPONENT_REF)
1456 x = TREE_OPERAND (x, 1);
1457 if (BASELINK_P (x))
1458 x = BASELINK_FUNCTIONS (x);
1459 if (TREE_CODE (x) == TEMPLATE_ID_EXPR)
1460 x = TREE_OPERAND (x, 0);
1461 if (DECL_FUNCTION_TEMPLATE_P (OVL_CURRENT (x))
1462 || (TREE_CODE (x) == OVERLOAD && OVL_CHAIN (x)))
1463 return 2;
1464 return (TREE_CODE (x) == FUNCTION_DECL
1465 || TREE_CODE (x) == OVERLOAD);
1466 }
1467
1468 /* X is the CALL_EXPR_FN of a CALL_EXPR. If X represents a dependent name
1469 (14.6.2), return the IDENTIFIER_NODE for that name. Otherwise, return
1470 NULL_TREE. */
1471
1472 tree
1473 dependent_name (tree x)
1474 {
1475 if (TREE_CODE (x) == IDENTIFIER_NODE)
1476 return x;
1477 if (TREE_CODE (x) != COMPONENT_REF
1478 && TREE_CODE (x) != OFFSET_REF
1479 && TREE_CODE (x) != BASELINK
1480 && is_overloaded_fn (x))
1481 return DECL_NAME (get_first_fn (x));
1482 return NULL_TREE;
1483 }
1484
1485 /* Returns true iff X is an expression for an overloaded function
1486 whose type cannot be known without performing overload
1487 resolution. */
1488
1489 bool
1490 really_overloaded_fn (tree x)
1491 {
1492 return is_overloaded_fn (x) == 2;
1493 }
1494
1495 tree
1496 get_fns (tree from)
1497 {
1498 gcc_assert (is_overloaded_fn (from));
1499 /* A baselink is also considered an overloaded function. */
1500 if (TREE_CODE (from) == OFFSET_REF
1501 || TREE_CODE (from) == COMPONENT_REF)
1502 from = TREE_OPERAND (from, 1);
1503 if (BASELINK_P (from))
1504 from = BASELINK_FUNCTIONS (from);
1505 if (TREE_CODE (from) == TEMPLATE_ID_EXPR)
1506 from = TREE_OPERAND (from, 0);
1507 return from;
1508 }
1509
1510 tree
1511 get_first_fn (tree from)
1512 {
1513 return OVL_CURRENT (get_fns (from));
1514 }
1515
1516 /* Return a new OVL node, concatenating it with the old one. */
1517
1518 tree
1519 ovl_cons (tree decl, tree chain)
1520 {
1521 tree result = make_node (OVERLOAD);
1522 TREE_TYPE (result) = unknown_type_node;
1523 OVL_FUNCTION (result) = decl;
1524 TREE_CHAIN (result) = chain;
1525
1526 return result;
1527 }
1528
1529 /* Build a new overloaded function. If this is the first one,
1530 just return it; otherwise, ovl_cons the _DECLs */
1531
1532 tree
1533 build_overload (tree decl, tree chain)
1534 {
1535 if (! chain && TREE_CODE (decl) != TEMPLATE_DECL)
1536 return decl;
1537 return ovl_cons (decl, chain);
1538 }
1539
1540 /* Return the scope where the overloaded functions OVL were found. */
1541
1542 tree
1543 ovl_scope (tree ovl)
1544 {
1545 if (TREE_CODE (ovl) == OFFSET_REF
1546 || TREE_CODE (ovl) == COMPONENT_REF)
1547 ovl = TREE_OPERAND (ovl, 1);
1548 if (TREE_CODE (ovl) == BASELINK)
1549 return BINFO_TYPE (BASELINK_BINFO (ovl));
1550 if (TREE_CODE (ovl) == TEMPLATE_ID_EXPR)
1551 ovl = TREE_OPERAND (ovl, 0);
1552 /* Skip using-declarations. */
1553 while (TREE_CODE (ovl) == OVERLOAD && OVL_USED (ovl) && OVL_CHAIN (ovl))
1554 ovl = OVL_CHAIN (ovl);
1555 return CP_DECL_CONTEXT (OVL_CURRENT (ovl));
1556 }
1557
1558 /* Return TRUE if FN is a non-static member function, FALSE otherwise.
1559 This function looks into BASELINK and OVERLOAD nodes. */
1560
1561 bool
1562 non_static_member_function_p (tree fn)
1563 {
1564 if (fn == NULL_TREE)
1565 return false;
1566
1567 if (is_overloaded_fn (fn))
1568 fn = get_first_fn (fn);
1569
1570 return (DECL_P (fn)
1571 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn));
1572 }
1573
1574 \f
1575 #define PRINT_RING_SIZE 4
1576
1577 static const char *
1578 cxx_printable_name_internal (tree decl, int v, bool translate)
1579 {
1580 static unsigned int uid_ring[PRINT_RING_SIZE];
1581 static char *print_ring[PRINT_RING_SIZE];
1582 static bool trans_ring[PRINT_RING_SIZE];
1583 static int ring_counter;
1584 int i;
1585
1586 /* Only cache functions. */
1587 if (v < 2
1588 || TREE_CODE (decl) != FUNCTION_DECL
1589 || DECL_LANG_SPECIFIC (decl) == 0)
1590 return lang_decl_name (decl, v, translate);
1591
1592 /* See if this print name is lying around. */
1593 for (i = 0; i < PRINT_RING_SIZE; i++)
1594 if (uid_ring[i] == DECL_UID (decl) && translate == trans_ring[i])
1595 /* yes, so return it. */
1596 return print_ring[i];
1597
1598 if (++ring_counter == PRINT_RING_SIZE)
1599 ring_counter = 0;
1600
1601 if (current_function_decl != NULL_TREE)
1602 {
1603 /* There may be both translated and untranslated versions of the
1604 name cached. */
1605 for (i = 0; i < 2; i++)
1606 {
1607 if (uid_ring[ring_counter] == DECL_UID (current_function_decl))
1608 ring_counter += 1;
1609 if (ring_counter == PRINT_RING_SIZE)
1610 ring_counter = 0;
1611 }
1612 gcc_assert (uid_ring[ring_counter] != DECL_UID (current_function_decl));
1613 }
1614
1615 free (print_ring[ring_counter]);
1616
1617 print_ring[ring_counter] = xstrdup (lang_decl_name (decl, v, translate));
1618 uid_ring[ring_counter] = DECL_UID (decl);
1619 trans_ring[ring_counter] = translate;
1620 return print_ring[ring_counter];
1621 }
1622
1623 const char *
1624 cxx_printable_name (tree decl, int v)
1625 {
1626 return cxx_printable_name_internal (decl, v, false);
1627 }
1628
1629 const char *
1630 cxx_printable_name_translate (tree decl, int v)
1631 {
1632 return cxx_printable_name_internal (decl, v, true);
1633 }
1634 \f
1635 /* Build the FUNCTION_TYPE or METHOD_TYPE which may throw exceptions
1636 listed in RAISES. */
1637
1638 tree
1639 build_exception_variant (tree type, tree raises)
1640 {
1641 tree v;
1642 int type_quals;
1643
1644 if (comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (type), ce_exact))
1645 return type;
1646
1647 type_quals = TYPE_QUALS (type);
1648 for (v = TYPE_MAIN_VARIANT (type); v; v = TYPE_NEXT_VARIANT (v))
1649 if (check_qualified_type (v, type, type_quals)
1650 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (v), ce_exact))
1651 return v;
1652
1653 /* Need to build a new variant. */
1654 v = build_variant_type_copy (type);
1655 TYPE_RAISES_EXCEPTIONS (v) = raises;
1656 return v;
1657 }
1658
1659 /* Given a TEMPLATE_TEMPLATE_PARM node T, create a new
1660 BOUND_TEMPLATE_TEMPLATE_PARM bound with NEWARGS as its template
1661 arguments. */
1662
1663 tree
1664 bind_template_template_parm (tree t, tree newargs)
1665 {
1666 tree decl = TYPE_NAME (t);
1667 tree t2;
1668
1669 t2 = cxx_make_type (BOUND_TEMPLATE_TEMPLATE_PARM);
1670 decl = build_decl (input_location,
1671 TYPE_DECL, DECL_NAME (decl), NULL_TREE);
1672
1673 /* These nodes have to be created to reflect new TYPE_DECL and template
1674 arguments. */
1675 TEMPLATE_TYPE_PARM_INDEX (t2) = copy_node (TEMPLATE_TYPE_PARM_INDEX (t));
1676 TEMPLATE_PARM_DECL (TEMPLATE_TYPE_PARM_INDEX (t2)) = decl;
1677 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t2)
1678 = build_template_info (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t), newargs);
1679
1680 TREE_TYPE (decl) = t2;
1681 TYPE_NAME (t2) = decl;
1682 TYPE_STUB_DECL (t2) = decl;
1683 TYPE_SIZE (t2) = 0;
1684 SET_TYPE_STRUCTURAL_EQUALITY (t2);
1685
1686 return t2;
1687 }
1688
1689 /* Called from count_trees via walk_tree. */
1690
1691 static tree
1692 count_trees_r (tree *tp, int *walk_subtrees, void *data)
1693 {
1694 ++*((int *) data);
1695
1696 if (TYPE_P (*tp))
1697 *walk_subtrees = 0;
1698
1699 return NULL_TREE;
1700 }
1701
1702 /* Debugging function for measuring the rough complexity of a tree
1703 representation. */
1704
1705 int
1706 count_trees (tree t)
1707 {
1708 int n_trees = 0;
1709 cp_walk_tree_without_duplicates (&t, count_trees_r, &n_trees);
1710 return n_trees;
1711 }
1712
1713 /* Called from verify_stmt_tree via walk_tree. */
1714
1715 static tree
1716 verify_stmt_tree_r (tree* tp,
1717 int* walk_subtrees ATTRIBUTE_UNUSED ,
1718 void* data)
1719 {
1720 tree t = *tp;
1721 htab_t *statements = (htab_t *) data;
1722 void **slot;
1723
1724 if (!STATEMENT_CODE_P (TREE_CODE (t)))
1725 return NULL_TREE;
1726
1727 /* If this statement is already present in the hash table, then
1728 there is a circularity in the statement tree. */
1729 gcc_assert (!htab_find (*statements, t));
1730
1731 slot = htab_find_slot (*statements, t, INSERT);
1732 *slot = t;
1733
1734 return NULL_TREE;
1735 }
1736
1737 /* Debugging function to check that the statement T has not been
1738 corrupted. For now, this function simply checks that T contains no
1739 circularities. */
1740
1741 void
1742 verify_stmt_tree (tree t)
1743 {
1744 htab_t statements;
1745 statements = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
1746 cp_walk_tree (&t, verify_stmt_tree_r, &statements, NULL);
1747 htab_delete (statements);
1748 }
1749
1750 /* Check if the type T depends on a type with no linkage and if so, return
1751 it. If RELAXED_P then do not consider a class type declared within
1752 a vague-linkage function to have no linkage. */
1753
1754 tree
1755 no_linkage_check (tree t, bool relaxed_p)
1756 {
1757 tree r;
1758
1759 /* There's no point in checking linkage on template functions; we
1760 can't know their complete types. */
1761 if (processing_template_decl)
1762 return NULL_TREE;
1763
1764 switch (TREE_CODE (t))
1765 {
1766 case RECORD_TYPE:
1767 if (TYPE_PTRMEMFUNC_P (t))
1768 goto ptrmem;
1769 /* Lambda types that don't have mangling scope have no linkage. We
1770 check CLASSTYPE_LAMBDA_EXPR here rather than LAMBDA_TYPE_P because
1771 when we get here from pushtag none of the lambda information is
1772 set up yet, so we want to assume that the lambda has linkage and
1773 fix it up later if not. */
1774 if (CLASSTYPE_LAMBDA_EXPR (t)
1775 && LAMBDA_TYPE_EXTRA_SCOPE (t) == NULL_TREE)
1776 return t;
1777 /* Fall through. */
1778 case UNION_TYPE:
1779 if (!CLASS_TYPE_P (t))
1780 return NULL_TREE;
1781 /* Fall through. */
1782 case ENUMERAL_TYPE:
1783 /* Only treat anonymous types as having no linkage if they're at
1784 namespace scope. This is core issue 966. */
1785 if (TYPE_ANONYMOUS_P (t) && TYPE_NAMESPACE_SCOPE_P (t))
1786 return t;
1787
1788 for (r = CP_TYPE_CONTEXT (t); ; )
1789 {
1790 /* If we're a nested type of a !TREE_PUBLIC class, we might not
1791 have linkage, or we might just be in an anonymous namespace.
1792 If we're in a TREE_PUBLIC class, we have linkage. */
1793 if (TYPE_P (r) && !TREE_PUBLIC (TYPE_NAME (r)))
1794 return no_linkage_check (TYPE_CONTEXT (t), relaxed_p);
1795 else if (TREE_CODE (r) == FUNCTION_DECL)
1796 {
1797 if (!relaxed_p || !vague_linkage_p (r))
1798 return t;
1799 else
1800 r = CP_DECL_CONTEXT (r);
1801 }
1802 else
1803 break;
1804 }
1805
1806 return NULL_TREE;
1807
1808 case ARRAY_TYPE:
1809 case POINTER_TYPE:
1810 case REFERENCE_TYPE:
1811 return no_linkage_check (TREE_TYPE (t), relaxed_p);
1812
1813 case OFFSET_TYPE:
1814 ptrmem:
1815 r = no_linkage_check (TYPE_PTRMEM_POINTED_TO_TYPE (t),
1816 relaxed_p);
1817 if (r)
1818 return r;
1819 return no_linkage_check (TYPE_PTRMEM_CLASS_TYPE (t), relaxed_p);
1820
1821 case METHOD_TYPE:
1822 r = no_linkage_check (TYPE_METHOD_BASETYPE (t), relaxed_p);
1823 if (r)
1824 return r;
1825 /* Fall through. */
1826 case FUNCTION_TYPE:
1827 {
1828 tree parm;
1829 for (parm = TYPE_ARG_TYPES (t);
1830 parm && parm != void_list_node;
1831 parm = TREE_CHAIN (parm))
1832 {
1833 r = no_linkage_check (TREE_VALUE (parm), relaxed_p);
1834 if (r)
1835 return r;
1836 }
1837 return no_linkage_check (TREE_TYPE (t), relaxed_p);
1838 }
1839
1840 default:
1841 return NULL_TREE;
1842 }
1843 }
1844
1845 #ifdef GATHER_STATISTICS
1846 extern int depth_reached;
1847 #endif
1848
1849 void
1850 cxx_print_statistics (void)
1851 {
1852 print_search_statistics ();
1853 print_class_statistics ();
1854 print_template_statistics ();
1855 #ifdef GATHER_STATISTICS
1856 fprintf (stderr, "maximum template instantiation depth reached: %d\n",
1857 depth_reached);
1858 #endif
1859 }
1860
1861 /* Return, as an INTEGER_CST node, the number of elements for TYPE
1862 (which is an ARRAY_TYPE). This counts only elements of the top
1863 array. */
1864
1865 tree
1866 array_type_nelts_top (tree type)
1867 {
1868 return fold_build2_loc (input_location,
1869 PLUS_EXPR, sizetype,
1870 array_type_nelts (type),
1871 size_one_node);
1872 }
1873
1874 /* Return, as an INTEGER_CST node, the number of elements for TYPE
1875 (which is an ARRAY_TYPE). This one is a recursive count of all
1876 ARRAY_TYPEs that are clumped together. */
1877
1878 tree
1879 array_type_nelts_total (tree type)
1880 {
1881 tree sz = array_type_nelts_top (type);
1882 type = TREE_TYPE (type);
1883 while (TREE_CODE (type) == ARRAY_TYPE)
1884 {
1885 tree n = array_type_nelts_top (type);
1886 sz = fold_build2_loc (input_location,
1887 MULT_EXPR, sizetype, sz, n);
1888 type = TREE_TYPE (type);
1889 }
1890 return sz;
1891 }
1892
1893 /* Called from break_out_target_exprs via mapcar. */
1894
1895 static tree
1896 bot_manip (tree* tp, int* walk_subtrees, void* data)
1897 {
1898 splay_tree target_remap = ((splay_tree) data);
1899 tree t = *tp;
1900
1901 if (!TYPE_P (t) && TREE_CONSTANT (t) && !TREE_SIDE_EFFECTS (t))
1902 {
1903 /* There can't be any TARGET_EXPRs or their slot variables below this
1904 point. But we must make a copy, in case subsequent processing
1905 alters any part of it. For example, during gimplification a cast
1906 of the form (T) &X::f (where "f" is a member function) will lead
1907 to replacing the PTRMEM_CST for &X::f with a VAR_DECL. */
1908 *walk_subtrees = 0;
1909 *tp = unshare_expr (t);
1910 return NULL_TREE;
1911 }
1912 if (TREE_CODE (t) == TARGET_EXPR)
1913 {
1914 tree u;
1915
1916 if (TREE_CODE (TREE_OPERAND (t, 1)) == AGGR_INIT_EXPR)
1917 {
1918 u = build_cplus_new (TREE_TYPE (t), TREE_OPERAND (t, 1),
1919 tf_warning_or_error);
1920 if (AGGR_INIT_ZERO_FIRST (TREE_OPERAND (t, 1)))
1921 AGGR_INIT_ZERO_FIRST (TREE_OPERAND (u, 1)) = true;
1922 }
1923 else
1924 u = build_target_expr_with_type (TREE_OPERAND (t, 1), TREE_TYPE (t),
1925 tf_warning_or_error);
1926
1927 TARGET_EXPR_IMPLICIT_P (u) = TARGET_EXPR_IMPLICIT_P (t);
1928 TARGET_EXPR_LIST_INIT_P (u) = TARGET_EXPR_LIST_INIT_P (t);
1929 TARGET_EXPR_DIRECT_INIT_P (u) = TARGET_EXPR_DIRECT_INIT_P (t);
1930
1931 /* Map the old variable to the new one. */
1932 splay_tree_insert (target_remap,
1933 (splay_tree_key) TREE_OPERAND (t, 0),
1934 (splay_tree_value) TREE_OPERAND (u, 0));
1935
1936 TREE_OPERAND (u, 1) = break_out_target_exprs (TREE_OPERAND (u, 1));
1937
1938 /* Replace the old expression with the new version. */
1939 *tp = u;
1940 /* We don't have to go below this point; the recursive call to
1941 break_out_target_exprs will have handled anything below this
1942 point. */
1943 *walk_subtrees = 0;
1944 return NULL_TREE;
1945 }
1946
1947 /* Make a copy of this node. */
1948 t = copy_tree_r (tp, walk_subtrees, NULL);
1949 if (TREE_CODE (*tp) == CALL_EXPR)
1950 set_flags_from_callee (*tp);
1951 return t;
1952 }
1953
1954 /* Replace all remapped VAR_DECLs in T with their new equivalents.
1955 DATA is really a splay-tree mapping old variables to new
1956 variables. */
1957
1958 static tree
1959 bot_replace (tree* t,
1960 int* walk_subtrees ATTRIBUTE_UNUSED ,
1961 void* data)
1962 {
1963 splay_tree target_remap = ((splay_tree) data);
1964
1965 if (TREE_CODE (*t) == VAR_DECL)
1966 {
1967 splay_tree_node n = splay_tree_lookup (target_remap,
1968 (splay_tree_key) *t);
1969 if (n)
1970 *t = (tree) n->value;
1971 }
1972 else if (TREE_CODE (*t) == PARM_DECL
1973 && DECL_NAME (*t) == this_identifier)
1974 {
1975 /* In an NSDMI we need to replace the 'this' parameter we used for
1976 parsing with the real one for this function. */
1977 *t = current_class_ptr;
1978 }
1979 else if (TREE_CODE (*t) == CONVERT_EXPR
1980 && CONVERT_EXPR_VBASE_PATH (*t))
1981 {
1982 /* In an NSDMI build_base_path defers building conversions to virtual
1983 bases, and we handle it here. */
1984 tree basetype = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (*t)));
1985 VEC(tree,gc) *vbases = CLASSTYPE_VBASECLASSES (current_class_type);
1986 int i; tree binfo;
1987 FOR_EACH_VEC_ELT (tree, vbases, i, binfo)
1988 if (BINFO_TYPE (binfo) == basetype)
1989 break;
1990 *t = build_base_path (PLUS_EXPR, TREE_OPERAND (*t, 0), binfo, true,
1991 tf_warning_or_error);
1992 }
1993
1994 return NULL_TREE;
1995 }
1996
1997 /* When we parse a default argument expression, we may create
1998 temporary variables via TARGET_EXPRs. When we actually use the
1999 default-argument expression, we make a copy of the expression
2000 and replace the temporaries with appropriate local versions. */
2001
2002 tree
2003 break_out_target_exprs (tree t)
2004 {
2005 static int target_remap_count;
2006 static splay_tree target_remap;
2007
2008 if (!target_remap_count++)
2009 target_remap = splay_tree_new (splay_tree_compare_pointers,
2010 /*splay_tree_delete_key_fn=*/NULL,
2011 /*splay_tree_delete_value_fn=*/NULL);
2012 cp_walk_tree (&t, bot_manip, target_remap, NULL);
2013 cp_walk_tree (&t, bot_replace, target_remap, NULL);
2014
2015 if (!--target_remap_count)
2016 {
2017 splay_tree_delete (target_remap);
2018 target_remap = NULL;
2019 }
2020
2021 return t;
2022 }
2023
2024 /* Similar to `build_nt', but for template definitions of dependent
2025 expressions */
2026
2027 tree
2028 build_min_nt (enum tree_code code, ...)
2029 {
2030 tree t;
2031 int length;
2032 int i;
2033 va_list p;
2034
2035 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
2036
2037 va_start (p, code);
2038
2039 t = make_node (code);
2040 length = TREE_CODE_LENGTH (code);
2041
2042 for (i = 0; i < length; i++)
2043 {
2044 tree x = va_arg (p, tree);
2045 TREE_OPERAND (t, i) = x;
2046 }
2047
2048 va_end (p);
2049 return t;
2050 }
2051
2052
2053 /* Similar to `build', but for template definitions. */
2054
2055 tree
2056 build_min (enum tree_code code, tree tt, ...)
2057 {
2058 tree t;
2059 int length;
2060 int i;
2061 va_list p;
2062
2063 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
2064
2065 va_start (p, tt);
2066
2067 t = make_node (code);
2068 length = TREE_CODE_LENGTH (code);
2069 TREE_TYPE (t) = tt;
2070
2071 for (i = 0; i < length; i++)
2072 {
2073 tree x = va_arg (p, tree);
2074 TREE_OPERAND (t, i) = x;
2075 if (x && !TYPE_P (x) && TREE_SIDE_EFFECTS (x))
2076 TREE_SIDE_EFFECTS (t) = 1;
2077 }
2078
2079 va_end (p);
2080 return t;
2081 }
2082
2083 /* Similar to `build', but for template definitions of non-dependent
2084 expressions. NON_DEP is the non-dependent expression that has been
2085 built. */
2086
2087 tree
2088 build_min_non_dep (enum tree_code code, tree non_dep, ...)
2089 {
2090 tree t;
2091 int length;
2092 int i;
2093 va_list p;
2094
2095 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
2096
2097 va_start (p, non_dep);
2098
2099 if (REFERENCE_REF_P (non_dep))
2100 non_dep = TREE_OPERAND (non_dep, 0);
2101
2102 t = make_node (code);
2103 length = TREE_CODE_LENGTH (code);
2104 TREE_TYPE (t) = TREE_TYPE (non_dep);
2105 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
2106
2107 for (i = 0; i < length; i++)
2108 {
2109 tree x = va_arg (p, tree);
2110 TREE_OPERAND (t, i) = x;
2111 }
2112
2113 if (code == COMPOUND_EXPR && TREE_CODE (non_dep) != COMPOUND_EXPR)
2114 /* This should not be considered a COMPOUND_EXPR, because it
2115 resolves to an overload. */
2116 COMPOUND_EXPR_OVERLOADED (t) = 1;
2117
2118 va_end (p);
2119 return convert_from_reference (t);
2120 }
2121
2122 /* Similar to `build_nt_call_vec', but for template definitions of
2123 non-dependent expressions. NON_DEP is the non-dependent expression
2124 that has been built. */
2125
2126 tree
2127 build_min_non_dep_call_vec (tree non_dep, tree fn, VEC(tree,gc) *argvec)
2128 {
2129 tree t = build_nt_call_vec (fn, argvec);
2130 if (REFERENCE_REF_P (non_dep))
2131 non_dep = TREE_OPERAND (non_dep, 0);
2132 TREE_TYPE (t) = TREE_TYPE (non_dep);
2133 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
2134 return convert_from_reference (t);
2135 }
2136
2137 tree
2138 get_type_decl (tree t)
2139 {
2140 if (TREE_CODE (t) == TYPE_DECL)
2141 return t;
2142 if (TYPE_P (t))
2143 return TYPE_STUB_DECL (t);
2144 gcc_assert (t == error_mark_node);
2145 return t;
2146 }
2147
2148 /* Returns the namespace that contains DECL, whether directly or
2149 indirectly. */
2150
2151 tree
2152 decl_namespace_context (tree decl)
2153 {
2154 while (1)
2155 {
2156 if (TREE_CODE (decl) == NAMESPACE_DECL)
2157 return decl;
2158 else if (TYPE_P (decl))
2159 decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
2160 else
2161 decl = CP_DECL_CONTEXT (decl);
2162 }
2163 }
2164
2165 /* Returns true if decl is within an anonymous namespace, however deeply
2166 nested, or false otherwise. */
2167
2168 bool
2169 decl_anon_ns_mem_p (const_tree decl)
2170 {
2171 while (1)
2172 {
2173 if (decl == NULL_TREE || decl == error_mark_node)
2174 return false;
2175 if (TREE_CODE (decl) == NAMESPACE_DECL
2176 && DECL_NAME (decl) == NULL_TREE)
2177 return true;
2178 /* Classes and namespaces inside anonymous namespaces have
2179 TREE_PUBLIC == 0, so we can shortcut the search. */
2180 else if (TYPE_P (decl))
2181 return (TREE_PUBLIC (TYPE_NAME (decl)) == 0);
2182 else if (TREE_CODE (decl) == NAMESPACE_DECL)
2183 return (TREE_PUBLIC (decl) == 0);
2184 else
2185 decl = DECL_CONTEXT (decl);
2186 }
2187 }
2188
2189 /* Subroutine of cp_tree_equal: t1 and t2 are the CALL_EXPR_FNs of two
2190 CALL_EXPRS. Return whether they are equivalent. */
2191
2192 static bool
2193 called_fns_equal (tree t1, tree t2)
2194 {
2195 /* Core 1321: dependent names are equivalent even if the overload sets
2196 are different. But do compare explicit template arguments. */
2197 tree name1 = dependent_name (t1);
2198 tree name2 = dependent_name (t2);
2199 if (name1 || name2)
2200 {
2201 tree targs1 = NULL_TREE, targs2 = NULL_TREE;
2202
2203 if (name1 != name2)
2204 return false;
2205
2206 if (TREE_CODE (t1) == TEMPLATE_ID_EXPR)
2207 targs1 = TREE_OPERAND (t1, 1);
2208 if (TREE_CODE (t2) == TEMPLATE_ID_EXPR)
2209 targs2 = TREE_OPERAND (t2, 1);
2210 return cp_tree_equal (targs1, targs2);
2211 }
2212 else
2213 return cp_tree_equal (t1, t2);
2214 }
2215
2216 /* Return truthvalue of whether T1 is the same tree structure as T2.
2217 Return 1 if they are the same. Return 0 if they are different. */
2218
2219 bool
2220 cp_tree_equal (tree t1, tree t2)
2221 {
2222 enum tree_code code1, code2;
2223
2224 if (t1 == t2)
2225 return true;
2226 if (!t1 || !t2)
2227 return false;
2228
2229 for (code1 = TREE_CODE (t1);
2230 CONVERT_EXPR_CODE_P (code1)
2231 || code1 == NON_LVALUE_EXPR;
2232 code1 = TREE_CODE (t1))
2233 t1 = TREE_OPERAND (t1, 0);
2234 for (code2 = TREE_CODE (t2);
2235 CONVERT_EXPR_CODE_P (code2)
2236 || code1 == NON_LVALUE_EXPR;
2237 code2 = TREE_CODE (t2))
2238 t2 = TREE_OPERAND (t2, 0);
2239
2240 /* They might have become equal now. */
2241 if (t1 == t2)
2242 return true;
2243
2244 if (code1 != code2)
2245 return false;
2246
2247 switch (code1)
2248 {
2249 case INTEGER_CST:
2250 return TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
2251 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2);
2252
2253 case REAL_CST:
2254 return REAL_VALUES_EQUAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2255
2256 case STRING_CST:
2257 return TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2258 && !memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2259 TREE_STRING_LENGTH (t1));
2260
2261 case FIXED_CST:
2262 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1),
2263 TREE_FIXED_CST (t2));
2264
2265 case COMPLEX_CST:
2266 return cp_tree_equal (TREE_REALPART (t1), TREE_REALPART (t2))
2267 && cp_tree_equal (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
2268
2269 case CONSTRUCTOR:
2270 /* We need to do this when determining whether or not two
2271 non-type pointer to member function template arguments
2272 are the same. */
2273 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
2274 || CONSTRUCTOR_NELTS (t1) != CONSTRUCTOR_NELTS (t2))
2275 return false;
2276 {
2277 tree field, value;
2278 unsigned int i;
2279 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, field, value)
2280 {
2281 constructor_elt *elt2 = CONSTRUCTOR_ELT (t2, i);
2282 if (!cp_tree_equal (field, elt2->index)
2283 || !cp_tree_equal (value, elt2->value))
2284 return false;
2285 }
2286 }
2287 return true;
2288
2289 case TREE_LIST:
2290 if (!cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)))
2291 return false;
2292 if (!cp_tree_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
2293 return false;
2294 return cp_tree_equal (TREE_CHAIN (t1), TREE_CHAIN (t2));
2295
2296 case SAVE_EXPR:
2297 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2298
2299 case CALL_EXPR:
2300 {
2301 tree arg1, arg2;
2302 call_expr_arg_iterator iter1, iter2;
2303 if (!called_fns_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2)))
2304 return false;
2305 for (arg1 = first_call_expr_arg (t1, &iter1),
2306 arg2 = first_call_expr_arg (t2, &iter2);
2307 arg1 && arg2;
2308 arg1 = next_call_expr_arg (&iter1),
2309 arg2 = next_call_expr_arg (&iter2))
2310 if (!cp_tree_equal (arg1, arg2))
2311 return false;
2312 if (arg1 || arg2)
2313 return false;
2314 return true;
2315 }
2316
2317 case TARGET_EXPR:
2318 {
2319 tree o1 = TREE_OPERAND (t1, 0);
2320 tree o2 = TREE_OPERAND (t2, 0);
2321
2322 /* Special case: if either target is an unallocated VAR_DECL,
2323 it means that it's going to be unified with whatever the
2324 TARGET_EXPR is really supposed to initialize, so treat it
2325 as being equivalent to anything. */
2326 if (TREE_CODE (o1) == VAR_DECL && DECL_NAME (o1) == NULL_TREE
2327 && !DECL_RTL_SET_P (o1))
2328 /*Nop*/;
2329 else if (TREE_CODE (o2) == VAR_DECL && DECL_NAME (o2) == NULL_TREE
2330 && !DECL_RTL_SET_P (o2))
2331 /*Nop*/;
2332 else if (!cp_tree_equal (o1, o2))
2333 return false;
2334
2335 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
2336 }
2337
2338 case WITH_CLEANUP_EXPR:
2339 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
2340 return false;
2341 return cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
2342
2343 case COMPONENT_REF:
2344 if (TREE_OPERAND (t1, 1) != TREE_OPERAND (t2, 1))
2345 return false;
2346 return cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2347
2348 case PARM_DECL:
2349 /* For comparing uses of parameters in late-specified return types
2350 with an out-of-class definition of the function, but can also come
2351 up for expressions that involve 'this' in a member function
2352 template. */
2353 if (same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
2354 {
2355 if (DECL_ARTIFICIAL (t1) ^ DECL_ARTIFICIAL (t2))
2356 return false;
2357 if (DECL_ARTIFICIAL (t1)
2358 || (DECL_PARM_LEVEL (t1) == DECL_PARM_LEVEL (t2)
2359 && DECL_PARM_INDEX (t1) == DECL_PARM_INDEX (t2)))
2360 return true;
2361 }
2362 return false;
2363
2364 case VAR_DECL:
2365 case CONST_DECL:
2366 case FUNCTION_DECL:
2367 case TEMPLATE_DECL:
2368 case IDENTIFIER_NODE:
2369 case SSA_NAME:
2370 return false;
2371
2372 case BASELINK:
2373 return (BASELINK_BINFO (t1) == BASELINK_BINFO (t2)
2374 && BASELINK_ACCESS_BINFO (t1) == BASELINK_ACCESS_BINFO (t2)
2375 && BASELINK_QUALIFIED_P (t1) == BASELINK_QUALIFIED_P (t2)
2376 && cp_tree_equal (BASELINK_FUNCTIONS (t1),
2377 BASELINK_FUNCTIONS (t2)));
2378
2379 case TEMPLATE_PARM_INDEX:
2380 if (TEMPLATE_PARM_NUM_SIBLINGS (t1)
2381 != TEMPLATE_PARM_NUM_SIBLINGS (t2))
2382 return false;
2383 return (TEMPLATE_PARM_IDX (t1) == TEMPLATE_PARM_IDX (t2)
2384 && TEMPLATE_PARM_LEVEL (t1) == TEMPLATE_PARM_LEVEL (t2)
2385 && (TEMPLATE_PARM_PARAMETER_PACK (t1)
2386 == TEMPLATE_PARM_PARAMETER_PACK (t2))
2387 && same_type_p (TREE_TYPE (TEMPLATE_PARM_DECL (t1)),
2388 TREE_TYPE (TEMPLATE_PARM_DECL (t2))));
2389
2390 case TEMPLATE_ID_EXPR:
2391 return (cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2392 && cp_tree_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2393
2394 case TREE_VEC:
2395 {
2396 unsigned ix;
2397 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2398 return false;
2399 for (ix = TREE_VEC_LENGTH (t1); ix--;)
2400 if (!cp_tree_equal (TREE_VEC_ELT (t1, ix),
2401 TREE_VEC_ELT (t2, ix)))
2402 return false;
2403 return true;
2404 }
2405
2406 case SIZEOF_EXPR:
2407 case ALIGNOF_EXPR:
2408 {
2409 tree o1 = TREE_OPERAND (t1, 0);
2410 tree o2 = TREE_OPERAND (t2, 0);
2411
2412 if (TREE_CODE (o1) != TREE_CODE (o2))
2413 return false;
2414 if (TYPE_P (o1))
2415 return same_type_p (o1, o2);
2416 else
2417 return cp_tree_equal (o1, o2);
2418 }
2419
2420 case MODOP_EXPR:
2421 {
2422 tree t1_op1, t2_op1;
2423
2424 if (!cp_tree_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)))
2425 return false;
2426
2427 t1_op1 = TREE_OPERAND (t1, 1);
2428 t2_op1 = TREE_OPERAND (t2, 1);
2429 if (TREE_CODE (t1_op1) != TREE_CODE (t2_op1))
2430 return false;
2431
2432 return cp_tree_equal (TREE_OPERAND (t1, 2), TREE_OPERAND (t2, 2));
2433 }
2434
2435 case PTRMEM_CST:
2436 /* Two pointer-to-members are the same if they point to the same
2437 field or function in the same class. */
2438 if (PTRMEM_CST_MEMBER (t1) != PTRMEM_CST_MEMBER (t2))
2439 return false;
2440
2441 return same_type_p (PTRMEM_CST_CLASS (t1), PTRMEM_CST_CLASS (t2));
2442
2443 case OVERLOAD:
2444 if (OVL_FUNCTION (t1) != OVL_FUNCTION (t2))
2445 return false;
2446 return cp_tree_equal (OVL_CHAIN (t1), OVL_CHAIN (t2));
2447
2448 case TRAIT_EXPR:
2449 if (TRAIT_EXPR_KIND (t1) != TRAIT_EXPR_KIND (t2))
2450 return false;
2451 return same_type_p (TRAIT_EXPR_TYPE1 (t1), TRAIT_EXPR_TYPE1 (t2))
2452 && same_type_p (TRAIT_EXPR_TYPE2 (t1), TRAIT_EXPR_TYPE2 (t2));
2453
2454 case CAST_EXPR:
2455 case STATIC_CAST_EXPR:
2456 case REINTERPRET_CAST_EXPR:
2457 case CONST_CAST_EXPR:
2458 case DYNAMIC_CAST_EXPR:
2459 case IMPLICIT_CONV_EXPR:
2460 case NEW_EXPR:
2461 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
2462 return false;
2463 /* Now compare operands as usual. */
2464 break;
2465
2466 case DEFERRED_NOEXCEPT:
2467 return (cp_tree_equal (DEFERRED_NOEXCEPT_PATTERN (t1),
2468 DEFERRED_NOEXCEPT_PATTERN (t2))
2469 && comp_template_args (DEFERRED_NOEXCEPT_ARGS (t1),
2470 DEFERRED_NOEXCEPT_ARGS (t2)));
2471 break;
2472
2473 default:
2474 break;
2475 }
2476
2477 switch (TREE_CODE_CLASS (code1))
2478 {
2479 case tcc_unary:
2480 case tcc_binary:
2481 case tcc_comparison:
2482 case tcc_expression:
2483 case tcc_vl_exp:
2484 case tcc_reference:
2485 case tcc_statement:
2486 {
2487 int i, n;
2488
2489 n = cp_tree_operand_length (t1);
2490 if (TREE_CODE_CLASS (code1) == tcc_vl_exp
2491 && n != TREE_OPERAND_LENGTH (t2))
2492 return false;
2493
2494 for (i = 0; i < n; ++i)
2495 if (!cp_tree_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i)))
2496 return false;
2497
2498 return true;
2499 }
2500
2501 case tcc_type:
2502 return same_type_p (t1, t2);
2503 default:
2504 gcc_unreachable ();
2505 }
2506 /* We can get here with --disable-checking. */
2507 return false;
2508 }
2509
2510 /* The type of ARG when used as an lvalue. */
2511
2512 tree
2513 lvalue_type (tree arg)
2514 {
2515 tree type = TREE_TYPE (arg);
2516 return type;
2517 }
2518
2519 /* The type of ARG for printing error messages; denote lvalues with
2520 reference types. */
2521
2522 tree
2523 error_type (tree arg)
2524 {
2525 tree type = TREE_TYPE (arg);
2526
2527 if (TREE_CODE (type) == ARRAY_TYPE)
2528 ;
2529 else if (TREE_CODE (type) == ERROR_MARK)
2530 ;
2531 else if (real_lvalue_p (arg))
2532 type = build_reference_type (lvalue_type (arg));
2533 else if (MAYBE_CLASS_TYPE_P (type))
2534 type = lvalue_type (arg);
2535
2536 return type;
2537 }
2538
2539 /* Does FUNCTION use a variable-length argument list? */
2540
2541 int
2542 varargs_function_p (const_tree function)
2543 {
2544 return stdarg_p (TREE_TYPE (function));
2545 }
2546
2547 /* Returns 1 if decl is a member of a class. */
2548
2549 int
2550 member_p (const_tree decl)
2551 {
2552 const_tree const ctx = DECL_CONTEXT (decl);
2553 return (ctx && TYPE_P (ctx));
2554 }
2555
2556 /* Create a placeholder for member access where we don't actually have an
2557 object that the access is against. */
2558
2559 tree
2560 build_dummy_object (tree type)
2561 {
2562 tree decl = build1 (NOP_EXPR, build_pointer_type (type), void_zero_node);
2563 return cp_build_indirect_ref (decl, RO_NULL, tf_warning_or_error);
2564 }
2565
2566 /* We've gotten a reference to a member of TYPE. Return *this if appropriate,
2567 or a dummy object otherwise. If BINFOP is non-0, it is filled with the
2568 binfo path from current_class_type to TYPE, or 0. */
2569
2570 tree
2571 maybe_dummy_object (tree type, tree* binfop)
2572 {
2573 tree decl, context;
2574 tree binfo;
2575 tree current = current_nonlambda_class_type ();
2576
2577 if (current
2578 && (binfo = lookup_base (current, type, ba_any, NULL)))
2579 context = current;
2580 else
2581 {
2582 /* Reference from a nested class member function. */
2583 context = type;
2584 binfo = TYPE_BINFO (type);
2585 }
2586
2587 if (binfop)
2588 *binfop = binfo;
2589
2590 if (current_class_ref
2591 /* current_class_ref might not correspond to current_class_type if
2592 we're in tsubst_default_argument or a lambda-declarator; in either
2593 case, we want to use current_class_ref if it matches CONTEXT. */
2594 && (same_type_ignoring_top_level_qualifiers_p
2595 (TREE_TYPE (current_class_ref), context)))
2596 decl = current_class_ref;
2597 else if (current != current_class_type
2598 && context == nonlambda_method_basetype ())
2599 /* In a lambda, need to go through 'this' capture. */
2600 decl = (build_x_indirect_ref
2601 ((lambda_expr_this_capture
2602 (CLASSTYPE_LAMBDA_EXPR (current_class_type))),
2603 RO_NULL, tf_warning_or_error));
2604 else
2605 decl = build_dummy_object (context);
2606
2607 return decl;
2608 }
2609
2610 /* Returns 1 if OB is a placeholder object, or a pointer to one. */
2611
2612 int
2613 is_dummy_object (const_tree ob)
2614 {
2615 if (TREE_CODE (ob) == INDIRECT_REF)
2616 ob = TREE_OPERAND (ob, 0);
2617 return (TREE_CODE (ob) == NOP_EXPR
2618 && TREE_OPERAND (ob, 0) == void_zero_node);
2619 }
2620
2621 /* Returns 1 iff type T is something we want to treat as a scalar type for
2622 the purpose of deciding whether it is trivial/POD/standard-layout. */
2623
2624 static bool
2625 scalarish_type_p (const_tree t)
2626 {
2627 if (t == error_mark_node)
2628 return 1;
2629
2630 return (SCALAR_TYPE_P (t)
2631 || TREE_CODE (t) == VECTOR_TYPE);
2632 }
2633
2634 /* Returns true iff T requires non-trivial default initialization. */
2635
2636 bool
2637 type_has_nontrivial_default_init (const_tree t)
2638 {
2639 t = strip_array_types (CONST_CAST_TREE (t));
2640
2641 if (CLASS_TYPE_P (t))
2642 return TYPE_HAS_COMPLEX_DFLT (t);
2643 else
2644 return 0;
2645 }
2646
2647 /* Returns true iff copying an object of type T (including via move
2648 constructor) is non-trivial. That is, T has no non-trivial copy
2649 constructors and no non-trivial move constructors. */
2650
2651 bool
2652 type_has_nontrivial_copy_init (const_tree t)
2653 {
2654 t = strip_array_types (CONST_CAST_TREE (t));
2655
2656 if (CLASS_TYPE_P (t))
2657 {
2658 gcc_assert (COMPLETE_TYPE_P (t));
2659 return ((TYPE_HAS_COPY_CTOR (t)
2660 && TYPE_HAS_COMPLEX_COPY_CTOR (t))
2661 || TYPE_HAS_COMPLEX_MOVE_CTOR (t));
2662 }
2663 else
2664 return 0;
2665 }
2666
2667 /* Returns 1 iff type T is a trivially copyable type, as defined in
2668 [basic.types] and [class]. */
2669
2670 bool
2671 trivially_copyable_p (const_tree t)
2672 {
2673 t = strip_array_types (CONST_CAST_TREE (t));
2674
2675 if (CLASS_TYPE_P (t))
2676 return ((!TYPE_HAS_COPY_CTOR (t)
2677 || !TYPE_HAS_COMPLEX_COPY_CTOR (t))
2678 && !TYPE_HAS_COMPLEX_MOVE_CTOR (t)
2679 && (!TYPE_HAS_COPY_ASSIGN (t)
2680 || !TYPE_HAS_COMPLEX_COPY_ASSIGN (t))
2681 && !TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
2682 && TYPE_HAS_TRIVIAL_DESTRUCTOR (t));
2683 else
2684 return scalarish_type_p (t);
2685 }
2686
2687 /* Returns 1 iff type T is a trivial type, as defined in [basic.types] and
2688 [class]. */
2689
2690 bool
2691 trivial_type_p (const_tree t)
2692 {
2693 t = strip_array_types (CONST_CAST_TREE (t));
2694
2695 if (CLASS_TYPE_P (t))
2696 return (TYPE_HAS_TRIVIAL_DFLT (t)
2697 && trivially_copyable_p (t));
2698 else
2699 return scalarish_type_p (t);
2700 }
2701
2702 /* Returns 1 iff type T is a POD type, as defined in [basic.types]. */
2703
2704 bool
2705 pod_type_p (const_tree t)
2706 {
2707 /* This CONST_CAST is okay because strip_array_types returns its
2708 argument unmodified and we assign it to a const_tree. */
2709 t = strip_array_types (CONST_CAST_TREE(t));
2710
2711 if (!CLASS_TYPE_P (t))
2712 return scalarish_type_p (t);
2713 else if (cxx_dialect > cxx98)
2714 /* [class]/10: A POD struct is a class that is both a trivial class and a
2715 standard-layout class, and has no non-static data members of type
2716 non-POD struct, non-POD union (or array of such types).
2717
2718 We don't need to check individual members because if a member is
2719 non-std-layout or non-trivial, the class will be too. */
2720 return (std_layout_type_p (t) && trivial_type_p (t));
2721 else
2722 /* The C++98 definition of POD is different. */
2723 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
2724 }
2725
2726 /* Returns true iff T is POD for the purpose of layout, as defined in the
2727 C++ ABI. */
2728
2729 bool
2730 layout_pod_type_p (const_tree t)
2731 {
2732 t = strip_array_types (CONST_CAST_TREE (t));
2733
2734 if (CLASS_TYPE_P (t))
2735 return !CLASSTYPE_NON_LAYOUT_POD_P (t);
2736 else
2737 return scalarish_type_p (t);
2738 }
2739
2740 /* Returns true iff T is a standard-layout type, as defined in
2741 [basic.types]. */
2742
2743 bool
2744 std_layout_type_p (const_tree t)
2745 {
2746 t = strip_array_types (CONST_CAST_TREE (t));
2747
2748 if (CLASS_TYPE_P (t))
2749 return !CLASSTYPE_NON_STD_LAYOUT (t);
2750 else
2751 return scalarish_type_p (t);
2752 }
2753
2754 /* Nonzero iff type T is a class template implicit specialization. */
2755
2756 bool
2757 class_tmpl_impl_spec_p (const_tree t)
2758 {
2759 return CLASS_TYPE_P (t) && CLASSTYPE_TEMPLATE_INSTANTIATION (t);
2760 }
2761
2762 /* Returns 1 iff zero initialization of type T means actually storing
2763 zeros in it. */
2764
2765 int
2766 zero_init_p (const_tree t)
2767 {
2768 /* This CONST_CAST is okay because strip_array_types returns its
2769 argument unmodified and we assign it to a const_tree. */
2770 t = strip_array_types (CONST_CAST_TREE(t));
2771
2772 if (t == error_mark_node)
2773 return 1;
2774
2775 /* NULL pointers to data members are initialized with -1. */
2776 if (TYPE_PTRMEM_P (t))
2777 return 0;
2778
2779 /* Classes that contain types that can't be zero-initialized, cannot
2780 be zero-initialized themselves. */
2781 if (CLASS_TYPE_P (t) && CLASSTYPE_NON_ZERO_INIT_P (t))
2782 return 0;
2783
2784 return 1;
2785 }
2786
2787 /* Table of valid C++ attributes. */
2788 const struct attribute_spec cxx_attribute_table[] =
2789 {
2790 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
2791 affects_type_identity } */
2792 { "java_interface", 0, 0, false, false, false,
2793 handle_java_interface_attribute, false },
2794 { "com_interface", 0, 0, false, false, false,
2795 handle_com_interface_attribute, false },
2796 { "init_priority", 1, 1, true, false, false,
2797 handle_init_priority_attribute, false },
2798 { NULL, 0, 0, false, false, false, NULL, false }
2799 };
2800
2801 /* Handle a "java_interface" attribute; arguments as in
2802 struct attribute_spec.handler. */
2803 static tree
2804 handle_java_interface_attribute (tree* node,
2805 tree name,
2806 tree args ATTRIBUTE_UNUSED ,
2807 int flags,
2808 bool* no_add_attrs)
2809 {
2810 if (DECL_P (*node)
2811 || !CLASS_TYPE_P (*node)
2812 || !TYPE_FOR_JAVA (*node))
2813 {
2814 error ("%qE attribute can only be applied to Java class definitions",
2815 name);
2816 *no_add_attrs = true;
2817 return NULL_TREE;
2818 }
2819 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
2820 *node = build_variant_type_copy (*node);
2821 TYPE_JAVA_INTERFACE (*node) = 1;
2822
2823 return NULL_TREE;
2824 }
2825
2826 /* Handle a "com_interface" attribute; arguments as in
2827 struct attribute_spec.handler. */
2828 static tree
2829 handle_com_interface_attribute (tree* node,
2830 tree name,
2831 tree args ATTRIBUTE_UNUSED ,
2832 int flags ATTRIBUTE_UNUSED ,
2833 bool* no_add_attrs)
2834 {
2835 static int warned;
2836
2837 *no_add_attrs = true;
2838
2839 if (DECL_P (*node)
2840 || !CLASS_TYPE_P (*node)
2841 || *node != TYPE_MAIN_VARIANT (*node))
2842 {
2843 warning (OPT_Wattributes, "%qE attribute can only be applied "
2844 "to class definitions", name);
2845 return NULL_TREE;
2846 }
2847
2848 if (!warned++)
2849 warning (0, "%qE is obsolete; g++ vtables are now COM-compatible by default",
2850 name);
2851
2852 return NULL_TREE;
2853 }
2854
2855 /* Handle an "init_priority" attribute; arguments as in
2856 struct attribute_spec.handler. */
2857 static tree
2858 handle_init_priority_attribute (tree* node,
2859 tree name,
2860 tree args,
2861 int flags ATTRIBUTE_UNUSED ,
2862 bool* no_add_attrs)
2863 {
2864 tree initp_expr = TREE_VALUE (args);
2865 tree decl = *node;
2866 tree type = TREE_TYPE (decl);
2867 int pri;
2868
2869 STRIP_NOPS (initp_expr);
2870
2871 if (!initp_expr || TREE_CODE (initp_expr) != INTEGER_CST)
2872 {
2873 error ("requested init_priority is not an integer constant");
2874 *no_add_attrs = true;
2875 return NULL_TREE;
2876 }
2877
2878 pri = TREE_INT_CST_LOW (initp_expr);
2879
2880 type = strip_array_types (type);
2881
2882 if (decl == NULL_TREE
2883 || TREE_CODE (decl) != VAR_DECL
2884 || !TREE_STATIC (decl)
2885 || DECL_EXTERNAL (decl)
2886 || (TREE_CODE (type) != RECORD_TYPE
2887 && TREE_CODE (type) != UNION_TYPE)
2888 /* Static objects in functions are initialized the
2889 first time control passes through that
2890 function. This is not precise enough to pin down an
2891 init_priority value, so don't allow it. */
2892 || current_function_decl)
2893 {
2894 error ("can only use %qE attribute on file-scope definitions "
2895 "of objects of class type", name);
2896 *no_add_attrs = true;
2897 return NULL_TREE;
2898 }
2899
2900 if (pri > MAX_INIT_PRIORITY || pri <= 0)
2901 {
2902 error ("requested init_priority is out of range");
2903 *no_add_attrs = true;
2904 return NULL_TREE;
2905 }
2906
2907 /* Check for init_priorities that are reserved for
2908 language and runtime support implementations.*/
2909 if (pri <= MAX_RESERVED_INIT_PRIORITY)
2910 {
2911 warning
2912 (0, "requested init_priority is reserved for internal use");
2913 }
2914
2915 if (SUPPORTS_INIT_PRIORITY)
2916 {
2917 SET_DECL_INIT_PRIORITY (decl, pri);
2918 DECL_HAS_INIT_PRIORITY_P (decl) = 1;
2919 return NULL_TREE;
2920 }
2921 else
2922 {
2923 error ("%qE attribute is not supported on this platform", name);
2924 *no_add_attrs = true;
2925 return NULL_TREE;
2926 }
2927 }
2928
2929 /* Return a new PTRMEM_CST of the indicated TYPE. The MEMBER is the
2930 thing pointed to by the constant. */
2931
2932 tree
2933 make_ptrmem_cst (tree type, tree member)
2934 {
2935 tree ptrmem_cst = make_node (PTRMEM_CST);
2936 TREE_TYPE (ptrmem_cst) = type;
2937 PTRMEM_CST_MEMBER (ptrmem_cst) = member;
2938 return ptrmem_cst;
2939 }
2940
2941 /* Build a variant of TYPE that has the indicated ATTRIBUTES. May
2942 return an existing type if an appropriate type already exists. */
2943
2944 tree
2945 cp_build_type_attribute_variant (tree type, tree attributes)
2946 {
2947 tree new_type;
2948
2949 new_type = build_type_attribute_variant (type, attributes);
2950 if (TREE_CODE (new_type) == FUNCTION_TYPE
2951 || TREE_CODE (new_type) == METHOD_TYPE)
2952 new_type = build_exception_variant (new_type,
2953 TYPE_RAISES_EXCEPTIONS (type));
2954
2955 /* Making a new main variant of a class type is broken. */
2956 gcc_assert (!CLASS_TYPE_P (type) || new_type == type);
2957
2958 return new_type;
2959 }
2960
2961 /* Return TRUE if TYPE1 and TYPE2 are identical for type hashing purposes.
2962 Called only after doing all language independent checks. Only
2963 to check TYPE_RAISES_EXCEPTIONS for FUNCTION_TYPE, the rest is already
2964 compared in type_hash_eq. */
2965
2966 bool
2967 cxx_type_hash_eq (const_tree typea, const_tree typeb)
2968 {
2969 gcc_assert (TREE_CODE (typea) == FUNCTION_TYPE
2970 || TREE_CODE (typea) == METHOD_TYPE);
2971
2972 return comp_except_specs (TYPE_RAISES_EXCEPTIONS (typea),
2973 TYPE_RAISES_EXCEPTIONS (typeb), ce_exact);
2974 }
2975
2976 /* Apply FUNC to all language-specific sub-trees of TP in a pre-order
2977 traversal. Called from walk_tree. */
2978
2979 tree
2980 cp_walk_subtrees (tree *tp, int *walk_subtrees_p, walk_tree_fn func,
2981 void *data, struct pointer_set_t *pset)
2982 {
2983 enum tree_code code = TREE_CODE (*tp);
2984 tree result;
2985
2986 #define WALK_SUBTREE(NODE) \
2987 do \
2988 { \
2989 result = cp_walk_tree (&(NODE), func, data, pset); \
2990 if (result) goto out; \
2991 } \
2992 while (0)
2993
2994 /* Not one of the easy cases. We must explicitly go through the
2995 children. */
2996 result = NULL_TREE;
2997 switch (code)
2998 {
2999 case DEFAULT_ARG:
3000 case TEMPLATE_TEMPLATE_PARM:
3001 case BOUND_TEMPLATE_TEMPLATE_PARM:
3002 case UNBOUND_CLASS_TEMPLATE:
3003 case TEMPLATE_PARM_INDEX:
3004 case TEMPLATE_TYPE_PARM:
3005 case TYPENAME_TYPE:
3006 case TYPEOF_TYPE:
3007 case UNDERLYING_TYPE:
3008 /* None of these have subtrees other than those already walked
3009 above. */
3010 *walk_subtrees_p = 0;
3011 break;
3012
3013 case BASELINK:
3014 WALK_SUBTREE (BASELINK_FUNCTIONS (*tp));
3015 *walk_subtrees_p = 0;
3016 break;
3017
3018 case PTRMEM_CST:
3019 WALK_SUBTREE (TREE_TYPE (*tp));
3020 *walk_subtrees_p = 0;
3021 break;
3022
3023 case TREE_LIST:
3024 WALK_SUBTREE (TREE_PURPOSE (*tp));
3025 break;
3026
3027 case OVERLOAD:
3028 WALK_SUBTREE (OVL_FUNCTION (*tp));
3029 WALK_SUBTREE (OVL_CHAIN (*tp));
3030 *walk_subtrees_p = 0;
3031 break;
3032
3033 case USING_DECL:
3034 WALK_SUBTREE (DECL_NAME (*tp));
3035 WALK_SUBTREE (USING_DECL_SCOPE (*tp));
3036 WALK_SUBTREE (USING_DECL_DECLS (*tp));
3037 *walk_subtrees_p = 0;
3038 break;
3039
3040 case RECORD_TYPE:
3041 if (TYPE_PTRMEMFUNC_P (*tp))
3042 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (*tp));
3043 break;
3044
3045 case TYPE_ARGUMENT_PACK:
3046 case NONTYPE_ARGUMENT_PACK:
3047 {
3048 tree args = ARGUMENT_PACK_ARGS (*tp);
3049 int i, len = TREE_VEC_LENGTH (args);
3050 for (i = 0; i < len; i++)
3051 WALK_SUBTREE (TREE_VEC_ELT (args, i));
3052 }
3053 break;
3054
3055 case TYPE_PACK_EXPANSION:
3056 WALK_SUBTREE (TREE_TYPE (*tp));
3057 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
3058 *walk_subtrees_p = 0;
3059 break;
3060
3061 case EXPR_PACK_EXPANSION:
3062 WALK_SUBTREE (TREE_OPERAND (*tp, 0));
3063 WALK_SUBTREE (PACK_EXPANSION_EXTRA_ARGS (*tp));
3064 *walk_subtrees_p = 0;
3065 break;
3066
3067 case CAST_EXPR:
3068 case REINTERPRET_CAST_EXPR:
3069 case STATIC_CAST_EXPR:
3070 case CONST_CAST_EXPR:
3071 case DYNAMIC_CAST_EXPR:
3072 case IMPLICIT_CONV_EXPR:
3073 if (TREE_TYPE (*tp))
3074 WALK_SUBTREE (TREE_TYPE (*tp));
3075
3076 {
3077 int i;
3078 for (i = 0; i < TREE_CODE_LENGTH (TREE_CODE (*tp)); ++i)
3079 WALK_SUBTREE (TREE_OPERAND (*tp, i));
3080 }
3081 *walk_subtrees_p = 0;
3082 break;
3083
3084 case TRAIT_EXPR:
3085 WALK_SUBTREE (TRAIT_EXPR_TYPE1 (*tp));
3086 WALK_SUBTREE (TRAIT_EXPR_TYPE2 (*tp));
3087 *walk_subtrees_p = 0;
3088 break;
3089
3090 case DECLTYPE_TYPE:
3091 WALK_SUBTREE (DECLTYPE_TYPE_EXPR (*tp));
3092 *walk_subtrees_p = 0;
3093 break;
3094
3095
3096 default:
3097 return NULL_TREE;
3098 }
3099
3100 /* We didn't find what we were looking for. */
3101 out:
3102 return result;
3103
3104 #undef WALK_SUBTREE
3105 }
3106
3107 /* Like save_expr, but for C++. */
3108
3109 tree
3110 cp_save_expr (tree expr)
3111 {
3112 /* There is no reason to create a SAVE_EXPR within a template; if
3113 needed, we can create the SAVE_EXPR when instantiating the
3114 template. Furthermore, the middle-end cannot handle C++-specific
3115 tree codes. */
3116 if (processing_template_decl)
3117 return expr;
3118 return save_expr (expr);
3119 }
3120
3121 /* Initialize tree.c. */
3122
3123 void
3124 init_tree (void)
3125 {
3126 list_hash_table = htab_create_ggc (31, list_hash, list_hash_eq, NULL);
3127 }
3128
3129 /* Returns the kind of special function that DECL (a FUNCTION_DECL)
3130 is. Note that sfk_none is zero, so this function can be used as a
3131 predicate to test whether or not DECL is a special function. */
3132
3133 special_function_kind
3134 special_function_p (const_tree decl)
3135 {
3136 /* Rather than doing all this stuff with magic names, we should
3137 probably have a field of type `special_function_kind' in
3138 DECL_LANG_SPECIFIC. */
3139 if (DECL_COPY_CONSTRUCTOR_P (decl))
3140 return sfk_copy_constructor;
3141 if (DECL_MOVE_CONSTRUCTOR_P (decl))
3142 return sfk_move_constructor;
3143 if (DECL_CONSTRUCTOR_P (decl))
3144 return sfk_constructor;
3145 if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
3146 {
3147 if (copy_fn_p (decl))
3148 return sfk_copy_assignment;
3149 if (move_fn_p (decl))
3150 return sfk_move_assignment;
3151 }
3152 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
3153 return sfk_destructor;
3154 if (DECL_COMPLETE_DESTRUCTOR_P (decl))
3155 return sfk_complete_destructor;
3156 if (DECL_BASE_DESTRUCTOR_P (decl))
3157 return sfk_base_destructor;
3158 if (DECL_DELETING_DESTRUCTOR_P (decl))
3159 return sfk_deleting_destructor;
3160 if (DECL_CONV_FN_P (decl))
3161 return sfk_conversion;
3162
3163 return sfk_none;
3164 }
3165
3166 /* Returns nonzero if TYPE is a character type, including wchar_t. */
3167
3168 int
3169 char_type_p (tree type)
3170 {
3171 return (same_type_p (type, char_type_node)
3172 || same_type_p (type, unsigned_char_type_node)
3173 || same_type_p (type, signed_char_type_node)
3174 || same_type_p (type, char16_type_node)
3175 || same_type_p (type, char32_type_node)
3176 || same_type_p (type, wchar_type_node));
3177 }
3178
3179 /* Returns the kind of linkage associated with the indicated DECL. Th
3180 value returned is as specified by the language standard; it is
3181 independent of implementation details regarding template
3182 instantiation, etc. For example, it is possible that a declaration
3183 to which this function assigns external linkage would not show up
3184 as a global symbol when you run `nm' on the resulting object file. */
3185
3186 linkage_kind
3187 decl_linkage (tree decl)
3188 {
3189 /* This function doesn't attempt to calculate the linkage from first
3190 principles as given in [basic.link]. Instead, it makes use of
3191 the fact that we have already set TREE_PUBLIC appropriately, and
3192 then handles a few special cases. Ideally, we would calculate
3193 linkage first, and then transform that into a concrete
3194 implementation. */
3195
3196 /* Things that don't have names have no linkage. */
3197 if (!DECL_NAME (decl))
3198 return lk_none;
3199
3200 /* Fields have no linkage. */
3201 if (TREE_CODE (decl) == FIELD_DECL)
3202 return lk_none;
3203
3204 /* Things that are TREE_PUBLIC have external linkage. */
3205 if (TREE_PUBLIC (decl))
3206 return lk_external;
3207
3208 if (TREE_CODE (decl) == NAMESPACE_DECL)
3209 return lk_external;
3210
3211 /* Linkage of a CONST_DECL depends on the linkage of the enumeration
3212 type. */
3213 if (TREE_CODE (decl) == CONST_DECL)
3214 return decl_linkage (TYPE_NAME (TREE_TYPE (decl)));
3215
3216 /* Some things that are not TREE_PUBLIC have external linkage, too.
3217 For example, on targets that don't have weak symbols, we make all
3218 template instantiations have internal linkage (in the object
3219 file), but the symbols should still be treated as having external
3220 linkage from the point of view of the language. */
3221 if ((TREE_CODE (decl) == FUNCTION_DECL
3222 || TREE_CODE (decl) == VAR_DECL)
3223 && DECL_COMDAT (decl))
3224 return lk_external;
3225
3226 /* Things in local scope do not have linkage, if they don't have
3227 TREE_PUBLIC set. */
3228 if (decl_function_context (decl))
3229 return lk_none;
3230
3231 /* Members of the anonymous namespace also have TREE_PUBLIC unset, but
3232 are considered to have external linkage for language purposes. DECLs
3233 really meant to have internal linkage have DECL_THIS_STATIC set. */
3234 if (TREE_CODE (decl) == TYPE_DECL)
3235 return lk_external;
3236 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3237 {
3238 if (!DECL_THIS_STATIC (decl))
3239 return lk_external;
3240
3241 /* Static data members and static member functions from classes
3242 in anonymous namespace also don't have TREE_PUBLIC set. */
3243 if (DECL_CLASS_CONTEXT (decl))
3244 return lk_external;
3245 }
3246
3247 /* Everything else has internal linkage. */
3248 return lk_internal;
3249 }
3250
3251 /* Returns the storage duration of the object or reference associated with
3252 the indicated DECL, which should be a VAR_DECL or PARM_DECL. */
3253
3254 duration_kind
3255 decl_storage_duration (tree decl)
3256 {
3257 if (TREE_CODE (decl) == PARM_DECL)
3258 return dk_auto;
3259 if (TREE_CODE (decl) == FUNCTION_DECL)
3260 return dk_static;
3261 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3262 if (!TREE_STATIC (decl)
3263 && !DECL_EXTERNAL (decl))
3264 return dk_auto;
3265 if (DECL_THREAD_LOCAL_P (decl))
3266 return dk_thread;
3267 return dk_static;
3268 }
3269 \f
3270 /* EXP is an expression that we want to pre-evaluate. Returns (in
3271 *INITP) an expression that will perform the pre-evaluation. The
3272 value returned by this function is a side-effect free expression
3273 equivalent to the pre-evaluated expression. Callers must ensure
3274 that *INITP is evaluated before EXP. */
3275
3276 tree
3277 stabilize_expr (tree exp, tree* initp)
3278 {
3279 tree init_expr;
3280
3281 if (!TREE_SIDE_EFFECTS (exp))
3282 init_expr = NULL_TREE;
3283 /* There are no expressions with REFERENCE_TYPE, but there can be call
3284 arguments with such a type; just treat it as a pointer. */
3285 else if (TREE_CODE (TREE_TYPE (exp)) == REFERENCE_TYPE
3286 || SCALAR_TYPE_P (TREE_TYPE (exp))
3287 || !lvalue_or_rvalue_with_address_p (exp))
3288 {
3289 init_expr = get_target_expr (exp);
3290 exp = TARGET_EXPR_SLOT (init_expr);
3291 }
3292 else
3293 {
3294 bool xval = !real_lvalue_p (exp);
3295 exp = cp_build_addr_expr (exp, tf_warning_or_error);
3296 init_expr = get_target_expr (exp);
3297 exp = TARGET_EXPR_SLOT (init_expr);
3298 exp = cp_build_indirect_ref (exp, RO_NULL, tf_warning_or_error);
3299 if (xval)
3300 exp = move (exp);
3301 }
3302 *initp = init_expr;
3303
3304 gcc_assert (!TREE_SIDE_EFFECTS (exp));
3305 return exp;
3306 }
3307
3308 /* Add NEW_EXPR, an expression whose value we don't care about, after the
3309 similar expression ORIG. */
3310
3311 tree
3312 add_stmt_to_compound (tree orig, tree new_expr)
3313 {
3314 if (!new_expr || !TREE_SIDE_EFFECTS (new_expr))
3315 return orig;
3316 if (!orig || !TREE_SIDE_EFFECTS (orig))
3317 return new_expr;
3318 return build2 (COMPOUND_EXPR, void_type_node, orig, new_expr);
3319 }
3320
3321 /* Like stabilize_expr, but for a call whose arguments we want to
3322 pre-evaluate. CALL is modified in place to use the pre-evaluated
3323 arguments, while, upon return, *INITP contains an expression to
3324 compute the arguments. */
3325
3326 void
3327 stabilize_call (tree call, tree *initp)
3328 {
3329 tree inits = NULL_TREE;
3330 int i;
3331 int nargs = call_expr_nargs (call);
3332
3333 if (call == error_mark_node || processing_template_decl)
3334 {
3335 *initp = NULL_TREE;
3336 return;
3337 }
3338
3339 gcc_assert (TREE_CODE (call) == CALL_EXPR);
3340
3341 for (i = 0; i < nargs; i++)
3342 {
3343 tree init;
3344 CALL_EXPR_ARG (call, i) =
3345 stabilize_expr (CALL_EXPR_ARG (call, i), &init);
3346 inits = add_stmt_to_compound (inits, init);
3347 }
3348
3349 *initp = inits;
3350 }
3351
3352 /* Like stabilize_expr, but for an AGGR_INIT_EXPR whose arguments we want
3353 to pre-evaluate. CALL is modified in place to use the pre-evaluated
3354 arguments, while, upon return, *INITP contains an expression to
3355 compute the arguments. */
3356
3357 void
3358 stabilize_aggr_init (tree call, tree *initp)
3359 {
3360 tree inits = NULL_TREE;
3361 int i;
3362 int nargs = aggr_init_expr_nargs (call);
3363
3364 if (call == error_mark_node)
3365 return;
3366
3367 gcc_assert (TREE_CODE (call) == AGGR_INIT_EXPR);
3368
3369 for (i = 0; i < nargs; i++)
3370 {
3371 tree init;
3372 AGGR_INIT_EXPR_ARG (call, i) =
3373 stabilize_expr (AGGR_INIT_EXPR_ARG (call, i), &init);
3374 inits = add_stmt_to_compound (inits, init);
3375 }
3376
3377 *initp = inits;
3378 }
3379
3380 /* Like stabilize_expr, but for an initialization.
3381
3382 If the initialization is for an object of class type, this function
3383 takes care not to introduce additional temporaries.
3384
3385 Returns TRUE iff the expression was successfully pre-evaluated,
3386 i.e., if INIT is now side-effect free, except for, possible, a
3387 single call to a constructor. */
3388
3389 bool
3390 stabilize_init (tree init, tree *initp)
3391 {
3392 tree t = init;
3393
3394 *initp = NULL_TREE;
3395
3396 if (t == error_mark_node || processing_template_decl)
3397 return true;
3398
3399 if (TREE_CODE (t) == INIT_EXPR
3400 && TREE_CODE (TREE_OPERAND (t, 1)) != TARGET_EXPR
3401 && TREE_CODE (TREE_OPERAND (t, 1)) != CONSTRUCTOR
3402 && TREE_CODE (TREE_OPERAND (t, 1)) != AGGR_INIT_EXPR)
3403 {
3404 TREE_OPERAND (t, 1) = stabilize_expr (TREE_OPERAND (t, 1), initp);
3405 return true;
3406 }
3407
3408 if (TREE_CODE (t) == INIT_EXPR)
3409 t = TREE_OPERAND (t, 1);
3410 if (TREE_CODE (t) == TARGET_EXPR)
3411 t = TARGET_EXPR_INITIAL (t);
3412 if (TREE_CODE (t) == COMPOUND_EXPR)
3413 t = expr_last (t);
3414 if (TREE_CODE (t) == CONSTRUCTOR)
3415 {
3416 /* Aggregate initialization: stabilize each of the field
3417 initializers. */
3418 unsigned i;
3419 constructor_elt *ce;
3420 bool good = true;
3421 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (t);
3422 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
3423 {
3424 tree type = TREE_TYPE (ce->value);
3425 tree subinit;
3426 if (TREE_CODE (type) == REFERENCE_TYPE
3427 || SCALAR_TYPE_P (type))
3428 ce->value = stabilize_expr (ce->value, &subinit);
3429 else if (!stabilize_init (ce->value, &subinit))
3430 good = false;
3431 *initp = add_stmt_to_compound (*initp, subinit);
3432 }
3433 return good;
3434 }
3435
3436 /* If the initializer is a COND_EXPR, we can't preevaluate
3437 anything. */
3438 if (TREE_CODE (t) == COND_EXPR)
3439 return false;
3440
3441 if (TREE_CODE (t) == CALL_EXPR)
3442 {
3443 stabilize_call (t, initp);
3444 return true;
3445 }
3446
3447 if (TREE_CODE (t) == AGGR_INIT_EXPR)
3448 {
3449 stabilize_aggr_init (t, initp);
3450 return true;
3451 }
3452
3453 /* The initialization is being performed via a bitwise copy -- and
3454 the item copied may have side effects. */
3455 return TREE_SIDE_EFFECTS (init);
3456 }
3457
3458 /* Like "fold", but should be used whenever we might be processing the
3459 body of a template. */
3460
3461 tree
3462 fold_if_not_in_template (tree expr)
3463 {
3464 /* In the body of a template, there is never any need to call
3465 "fold". We will call fold later when actually instantiating the
3466 template. Integral constant expressions in templates will be
3467 evaluated via fold_non_dependent_expr, as necessary. */
3468 if (processing_template_decl)
3469 return expr;
3470
3471 /* Fold C++ front-end specific tree codes. */
3472 if (TREE_CODE (expr) == UNARY_PLUS_EXPR)
3473 return fold_convert (TREE_TYPE (expr), TREE_OPERAND (expr, 0));
3474
3475 return fold (expr);
3476 }
3477
3478 /* Returns true if a cast to TYPE may appear in an integral constant
3479 expression. */
3480
3481 bool
3482 cast_valid_in_integral_constant_expression_p (tree type)
3483 {
3484 return (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
3485 || cxx_dialect >= cxx0x
3486 || dependent_type_p (type)
3487 || type == error_mark_node);
3488 }
3489
3490 /* Return true if we need to fix linkage information of DECL. */
3491
3492 static bool
3493 cp_fix_function_decl_p (tree decl)
3494 {
3495 /* Skip if DECL is not externally visible. */
3496 if (!TREE_PUBLIC (decl))
3497 return false;
3498
3499 /* We need to fix DECL if it a appears to be exported but with no
3500 function body. Thunks do not have CFGs and we may need to
3501 handle them specially later. */
3502 if (!gimple_has_body_p (decl)
3503 && !DECL_THUNK_P (decl)
3504 && !DECL_EXTERNAL (decl))
3505 {
3506 struct cgraph_node *node = cgraph_get_node (decl);
3507
3508 /* Don't fix same_body aliases. Although they don't have their own
3509 CFG, they share it with what they alias to. */
3510 if (!node || !node->alias
3511 || !VEC_length (ipa_ref_t, node->symbol.ref_list.references))
3512 return true;
3513 }
3514
3515 return false;
3516 }
3517
3518 /* Clean the C++ specific parts of the tree T. */
3519
3520 void
3521 cp_free_lang_data (tree t)
3522 {
3523 if (TREE_CODE (t) == METHOD_TYPE
3524 || TREE_CODE (t) == FUNCTION_TYPE)
3525 {
3526 /* Default args are not interesting anymore. */
3527 tree argtypes = TYPE_ARG_TYPES (t);
3528 while (argtypes)
3529 {
3530 TREE_PURPOSE (argtypes) = 0;
3531 argtypes = TREE_CHAIN (argtypes);
3532 }
3533 }
3534 else if (TREE_CODE (t) == FUNCTION_DECL
3535 && cp_fix_function_decl_p (t))
3536 {
3537 /* If T is used in this translation unit at all, the definition
3538 must exist somewhere else since we have decided to not emit it
3539 in this TU. So make it an external reference. */
3540 DECL_EXTERNAL (t) = 1;
3541 TREE_STATIC (t) = 0;
3542 }
3543 if (TREE_CODE (t) == NAMESPACE_DECL)
3544 {
3545 /* The list of users of a namespace isn't useful for the middle-end
3546 or debug generators. */
3547 DECL_NAMESPACE_USERS (t) = NULL_TREE;
3548 /* Neither do we need the leftover chaining of namespaces
3549 from the binding level. */
3550 DECL_CHAIN (t) = NULL_TREE;
3551 }
3552 }
3553
3554 /* Stub for c-common. Please keep in sync with c-decl.c.
3555 FIXME: If address space support is target specific, then this
3556 should be a C target hook. But currently this is not possible,
3557 because this function is called via REGISTER_TARGET_PRAGMAS. */
3558 void
3559 c_register_addr_space (const char *word ATTRIBUTE_UNUSED,
3560 addr_space_t as ATTRIBUTE_UNUSED)
3561 {
3562 }
3563
3564 /* Return the number of operands in T that we care about for things like
3565 mangling. */
3566
3567 int
3568 cp_tree_operand_length (const_tree t)
3569 {
3570 enum tree_code code = TREE_CODE (t);
3571
3572 switch (code)
3573 {
3574 case PREINCREMENT_EXPR:
3575 case PREDECREMENT_EXPR:
3576 case POSTINCREMENT_EXPR:
3577 case POSTDECREMENT_EXPR:
3578 return 1;
3579
3580 case ARRAY_REF:
3581 return 2;
3582
3583 case EXPR_PACK_EXPANSION:
3584 return 1;
3585
3586 default:
3587 return TREE_OPERAND_LENGTH (t);
3588 }
3589 }
3590 \f
3591 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
3592 /* Complain that some language-specific thing hanging off a tree
3593 node has been accessed improperly. */
3594
3595 void
3596 lang_check_failed (const char* file, int line, const char* function)
3597 {
3598 internal_error ("lang_* check: failed in %s, at %s:%d",
3599 function, trim_filename (file), line);
3600 }
3601 #endif /* ENABLE_TREE_CHECKING */
3602
3603 #include "gt-cp-tree.h"