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