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