]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/init.c
m32c.c (m32c_compare_redundant): Avoid removing compares that may be indirectly affec...
[thirdparty/gcc.git] / gcc / cp / init.c
CommitLineData
8d08fdba 1/* Handle initialization things in C++.
d6a8bdff 2 Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
66647d44 3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
058dcc25 4 Free Software Foundation, Inc.
8d08fdba
MS
5 Contributed 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 22
e92cc029 23/* High-level class interface. */
8d08fdba
MS
24
25#include "config.h"
8d052bc7 26#include "system.h"
4977bab6
ZW
27#include "coretypes.h"
28#include "tm.h"
8d08fdba
MS
29#include "tree.h"
30#include "rtl.h"
8f17b5c5 31#include "expr.h"
8d08fdba
MS
32#include "cp-tree.h"
33#include "flags.h"
e8abc66f 34#include "output.h"
eb66be0e 35#include "except.h"
54f92bfb 36#include "toplev.h"
46e995e0 37#include "target.h"
8d08fdba 38
2a3398e1
NS
39static bool begin_init_stmts (tree *, tree *);
40static tree finish_init_stmts (bool, tree, tree);
2282d28d 41static void construct_virtual_base (tree, tree);
5ade1ed2
DG
42static void expand_aggr_init_1 (tree, tree, tree, tree, int, tsubst_flags_t);
43static void expand_default_init (tree, tree, tree, tree, int, tsubst_flags_t);
362efdc1 44static tree build_vec_delete_1 (tree, tree, tree, special_function_kind, int);
2282d28d 45static void perform_member_init (tree, tree);
362efdc1
NN
46static tree build_builtin_delete_call (tree);
47static int member_init_ok_or_else (tree, tree, tree);
48static void expand_virtual_init (tree, tree);
2282d28d 49static tree sort_mem_initializers (tree, tree);
362efdc1
NN
50static tree initializing_context (tree);
51static void expand_cleanup_for_base (tree, tree);
52static tree get_temp_regvar (tree, tree);
53static tree dfs_initialize_vtbl_ptrs (tree, void *);
362efdc1
NN
54static tree build_dtor_call (tree, special_function_kind, int);
55static tree build_field_list (tree, tree, int *);
56static tree build_vtbl_address (tree);
8d08fdba 57
3dbc07b6
MM
58/* We are about to generate some complex initialization code.
59 Conceptually, it is all a single expression. However, we may want
60 to include conditionals, loops, and other such statement-level
61 constructs. Therefore, we build the initialization code inside a
62 statement-expression. This function starts such an expression.
63 STMT_EXPR_P and COMPOUND_STMT_P are filled in by this function;
64 pass them back to finish_init_stmts when the expression is
65 complete. */
66
2a3398e1 67static bool
362efdc1 68begin_init_stmts (tree *stmt_expr_p, tree *compound_stmt_p)
3dbc07b6 69{
2a3398e1 70 bool is_global = !building_stmt_tree ();
c8094d83 71
2a3398e1 72 *stmt_expr_p = begin_stmt_expr ();
325c3691 73 *compound_stmt_p = begin_compound_stmt (BCS_NO_SCOPE);
2a3398e1
NS
74
75 return is_global;
3dbc07b6
MM
76}
77
78/* Finish out the statement-expression begun by the previous call to
79 begin_init_stmts. Returns the statement-expression itself. */
80
2a3398e1
NS
81static tree
82finish_init_stmts (bool is_global, tree stmt_expr, tree compound_stmt)
c8094d83 83{
7a3397c7 84 finish_compound_stmt (compound_stmt);
c8094d83 85
303b7406 86 stmt_expr = finish_stmt_expr (stmt_expr, true);
3dbc07b6 87
50bc768d 88 gcc_assert (!building_stmt_tree () == is_global);
c8094d83 89
3dbc07b6
MM
90 return stmt_expr;
91}
92
93/* Constructors */
94
338d90b8
NS
95/* Called from initialize_vtbl_ptrs via dfs_walk. BINFO is the base
96 which we want to initialize the vtable pointer for, DATA is
97 TREE_LIST whose TREE_VALUE is the this ptr expression. */
7177d104 98
d569399b 99static tree
362efdc1 100dfs_initialize_vtbl_ptrs (tree binfo, void *data)
d569399b 101{
5d5a519f
NS
102 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
103 return dfs_skip_bases;
c8094d83 104
5d5a519f 105 if (!BINFO_PRIMARY_P (binfo) || BINFO_VIRTUAL_P (binfo))
d569399b
MM
106 {
107 tree base_ptr = TREE_VALUE ((tree) data);
7177d104 108
338d90b8 109 base_ptr = build_base_path (PLUS_EXPR, base_ptr, binfo, /*nonnull=*/1);
d569399b
MM
110
111 expand_virtual_init (binfo, base_ptr);
112 }
7177d104 113
d569399b
MM
114 return NULL_TREE;
115}
116
cf2e003b
MM
117/* Initialize all the vtable pointers in the object pointed to by
118 ADDR. */
e92cc029 119
8d08fdba 120void
362efdc1 121initialize_vtbl_ptrs (tree addr)
8d08fdba 122{
cf2e003b
MM
123 tree list;
124 tree type;
125
126 type = TREE_TYPE (TREE_TYPE (addr));
127 list = build_tree_list (type, addr);
d569399b 128
bbd15aac 129 /* Walk through the hierarchy, initializing the vptr in each base
1f5a253a 130 class. We do these in pre-order because we can't find the virtual
3461fba7
NS
131 bases for a class until we've initialized the vtbl for that
132 class. */
5d5a519f 133 dfs_walk_once (TYPE_BINFO (type), dfs_initialize_vtbl_ptrs, NULL, list);
8d08fdba 134}
d569399b 135
17bbb839
MM
136/* Return an expression for the zero-initialization of an object with
137 type T. This expression will either be a constant (in the case
138 that T is a scalar), or a CONSTRUCTOR (in the case that T is an
b43d1bde
PC
139 aggregate), or NULL (in the case that T does not require
140 initialization). In either case, the value can be used as
141 DECL_INITIAL for a decl of the indicated TYPE; it is a valid static
142 initializer. If NELTS is non-NULL, and TYPE is an ARRAY_TYPE, NELTS
143 is the number of elements in the array. If STATIC_STORAGE_P is
144 TRUE, initializers are only generated for entities for which
1cb8292f
MM
145 zero-initialization does not simply mean filling the storage with
146 zero bytes. */
94e6e4c4
AO
147
148tree
1cb8292f 149build_zero_init (tree type, tree nelts, bool static_storage_p)
94e6e4c4 150{
17bbb839
MM
151 tree init = NULL_TREE;
152
153 /* [dcl.init]
154
0fcedd9c 155 To zero-initialize an object of type T means:
17bbb839
MM
156
157 -- if T is a scalar type, the storage is set to the value of zero
0cbd7506 158 converted to T.
17bbb839
MM
159
160 -- if T is a non-union class type, the storage for each nonstatic
0cbd7506 161 data member and each base-class subobject is zero-initialized.
17bbb839
MM
162
163 -- if T is a union type, the storage for its first data member is
0cbd7506 164 zero-initialized.
17bbb839
MM
165
166 -- if T is an array type, the storage for each element is
0cbd7506 167 zero-initialized.
17bbb839
MM
168
169 -- if T is a reference type, no initialization is performed. */
94e6e4c4 170
50bc768d 171 gcc_assert (nelts == NULL_TREE || TREE_CODE (nelts) == INTEGER_CST);
7a1d37e9 172
17bbb839
MM
173 if (type == error_mark_node)
174 ;
175 else if (static_storage_p && zero_init_p (type))
176 /* In order to save space, we do not explicitly build initializers
177 for items that do not need them. GCC's semantics are that
178 items with static storage duration that are not otherwise
179 initialized are initialized to zero. */
180 ;
b8063b29 181 else if (SCALAR_TYPE_P (type))
17bbb839
MM
182 init = convert (type, integer_zero_node);
183 else if (CLASS_TYPE_P (type))
184 {
185 tree field;
4038c495 186 VEC(constructor_elt,gc) *v = NULL;
17bbb839 187
17bbb839 188 /* Iterate over the fields, building initializations. */
17bbb839
MM
189 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
190 {
191 if (TREE_CODE (field) != FIELD_DECL)
192 continue;
193
194 /* Note that for class types there will be FIELD_DECLs
195 corresponding to base classes as well. Thus, iterating
196 over TYPE_FIELDs will result in correct initialization of
197 all of the subobjects. */
32a11c08 198 if (!static_storage_p || !zero_init_p (TREE_TYPE (field)))
4038c495
GB
199 {
200 tree value = build_zero_init (TREE_TYPE (field),
201 /*nelts=*/NULL_TREE,
202 static_storage_p);
b43d1bde
PC
203 if (value)
204 CONSTRUCTOR_APPEND_ELT(v, field, value);
4038c495 205 }
17bbb839
MM
206
207 /* For unions, only the first field is initialized. */
208 if (TREE_CODE (type) == UNION_TYPE)
209 break;
210 }
4038c495 211
0fcedd9c
JM
212 /* Build a constructor to contain the initializations. */
213 init = build_constructor (type, v);
17bbb839
MM
214 }
215 else if (TREE_CODE (type) == ARRAY_TYPE)
94e6e4c4 216 {
17bbb839 217 tree max_index;
4038c495 218 VEC(constructor_elt,gc) *v = NULL;
17bbb839 219
17bbb839 220 /* Iterate over the array elements, building initializations. */
6b6c8106 221 if (nelts)
7866705a
SB
222 max_index = fold_build2 (MINUS_EXPR, TREE_TYPE (nelts),
223 nelts, integer_one_node);
6b6c8106
SB
224 else
225 max_index = array_type_nelts (type);
9bdb04a2
AP
226
227 /* If we have an error_mark here, we should just return error mark
228 as we don't know the size of the array yet. */
229 if (max_index == error_mark_node)
230 return error_mark_node;
50bc768d 231 gcc_assert (TREE_CODE (max_index) == INTEGER_CST);
7a1d37e9 232
a8e6c82a
MM
233 /* A zero-sized array, which is accepted as an extension, will
234 have an upper bound of -1. */
235 if (!tree_int_cst_equal (max_index, integer_minus_one_node))
94763647 236 {
4038c495
GB
237 constructor_elt *ce;
238
239 v = VEC_alloc (constructor_elt, gc, 1);
240 ce = VEC_quick_push (constructor_elt, v, NULL);
c8094d83 241
b01f0d13
AP
242 /* If this is a one element array, we just use a regular init. */
243 if (tree_int_cst_equal (size_zero_node, max_index))
4038c495 244 ce->index = size_zero_node;
b01f0d13 245 else
4038c495
GB
246 ce->index = build2 (RANGE_EXPR, sizetype, size_zero_node,
247 max_index);
c8094d83 248
4038c495
GB
249 ce->value = build_zero_init (TREE_TYPE (type),
250 /*nelts=*/NULL_TREE,
251 static_storage_p);
94763647 252 }
c8094d83 253
4038c495
GB
254 /* Build a constructor to contain the initializations. */
255 init = build_constructor (type, v);
94e6e4c4 256 }
c846e8cd
AP
257 else if (TREE_CODE (type) == VECTOR_TYPE)
258 init = fold_convert (type, integer_zero_node);
94e6e4c4 259 else
8dc2b103 260 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
94e6e4c4 261
17bbb839
MM
262 /* In all cases, the initializer is a constant. */
263 if (init)
51eed280 264 TREE_CONSTANT (init) = 1;
94e6e4c4
AO
265
266 return init;
267}
268
0fcedd9c 269/* Return a suitable initializer for value-initializing an object of type
8f540f06 270 TYPE, as described in [dcl.init]. */
0fcedd9c 271
8f540f06
JM
272tree
273build_value_init (tree type)
0fcedd9c
JM
274{
275 /* [dcl.init]
276
277 To value-initialize an object of type T means:
278
279 - if T is a class type (clause 9) with a user-provided constructor
280 (12.1), then the default constructor for T is called (and the
281 initialization is ill-formed if T has no accessible default
282 constructor);
283
284 - if T is a non-union class type without a user-provided constructor,
285 then every non-static data member and base-class component of T is
286 value-initialized;92)
287
288 - if T is an array type, then each element is value-initialized;
289
290 - otherwise, the object is zero-initialized.
291
292 A program that calls for default-initialization or
293 value-initialization of an entity of reference type is ill-formed.
294
295 92) Value-initialization for such a class object may be implemented by
296 zero-initializing the object and then calling the default
297 constructor. */
298
299 if (CLASS_TYPE_P (type))
300 {
8f540f06 301 if (type_has_user_provided_constructor (type))
844ae01d 302 return build_aggr_init_expr
0fcedd9c
JM
303 (type,
304 build_special_member_call (NULL_TREE, complete_ctor_identifier,
c166b898 305 NULL, type, LOOKUP_NORMAL,
5ade1ed2 306 tf_warning_or_error));
8f540f06
JM
307 else if (TREE_CODE (type) != UNION_TYPE && TYPE_NEEDS_CONSTRUCTING (type))
308 {
309 /* This is a class that needs constructing, but doesn't have
310 a user-provided constructor. So we need to zero-initialize
311 the object and then call the implicitly defined ctor.
450a927a 312 This will be handled in simplify_aggr_init_expr. */
8f540f06
JM
313 tree ctor = build_special_member_call
314 (NULL_TREE, complete_ctor_identifier,
c166b898 315 NULL, type, LOOKUP_NORMAL, tf_warning_or_error);
8f540f06 316
450a927a
JM
317 ctor = build_aggr_init_expr (type, ctor);
318 AGGR_INIT_ZERO_FIRST (ctor) = 1;
8f540f06
JM
319 return ctor;
320 }
fd97a96a
JM
321 }
322 return build_value_init_noctor (type);
323}
324
325/* Like build_value_init, but don't call the constructor for TYPE. Used
326 for base initializers. */
327
328tree
329build_value_init_noctor (tree type)
330{
331 if (CLASS_TYPE_P (type))
332 {
333 gcc_assert (!TYPE_NEEDS_CONSTRUCTING (type));
334
335 if (TREE_CODE (type) != UNION_TYPE)
0fcedd9c 336 {
8f540f06 337 tree field;
0fcedd9c 338 VEC(constructor_elt,gc) *v = NULL;
0fcedd9c
JM
339
340 /* Iterate over the fields, building initializations. */
341 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
342 {
343 tree ftype, value;
344
345 if (TREE_CODE (field) != FIELD_DECL)
346 continue;
347
348 ftype = TREE_TYPE (field);
349
350 if (TREE_CODE (ftype) == REFERENCE_TYPE)
351 error ("value-initialization of reference");
352
353 /* We could skip vfields and fields of types with
354 user-defined constructors, but I think that won't improve
355 performance at all; it should be simpler in general just
356 to zero out the entire object than try to only zero the
357 bits that actually need it. */
358
359 /* Note that for class types there will be FIELD_DECLs
360 corresponding to base classes as well. Thus, iterating
361 over TYPE_FIELDs will result in correct initialization of
362 all of the subobjects. */
8f540f06 363 value = build_value_init (ftype);
0fcedd9c
JM
364
365 if (value)
366 CONSTRUCTOR_APPEND_ELT(v, field, value);
367 }
368
369 /* Build a constructor to contain the zero- initializations. */
8f540f06 370 return build_constructor (type, v);
0fcedd9c
JM
371 }
372 }
373 else if (TREE_CODE (type) == ARRAY_TYPE)
374 {
375 VEC(constructor_elt,gc) *v = NULL;
376
377 /* Iterate over the array elements, building initializations. */
378 tree max_index = array_type_nelts (type);
379
380 /* If we have an error_mark here, we should just return error mark
381 as we don't know the size of the array yet. */
382 if (max_index == error_mark_node)
383 return error_mark_node;
384 gcc_assert (TREE_CODE (max_index) == INTEGER_CST);
385
386 /* A zero-sized array, which is accepted as an extension, will
387 have an upper bound of -1. */
388 if (!tree_int_cst_equal (max_index, integer_minus_one_node))
389 {
390 constructor_elt *ce;
391
392 v = VEC_alloc (constructor_elt, gc, 1);
393 ce = VEC_quick_push (constructor_elt, v, NULL);
394
395 /* If this is a one element array, we just use a regular init. */
396 if (tree_int_cst_equal (size_zero_node, max_index))
397 ce->index = size_zero_node;
398 else
399 ce->index = build2 (RANGE_EXPR, sizetype, size_zero_node,
400 max_index);
401
8f540f06 402 ce->value = build_value_init (TREE_TYPE (type));
9dbd4406
JM
403
404 /* The gimplifier can't deal with a RANGE_EXPR of TARGET_EXPRs. */
405 gcc_assert (TREE_CODE (ce->value) != TARGET_EXPR
406 && TREE_CODE (ce->value) != AGGR_INIT_EXPR);
0fcedd9c
JM
407 }
408
409 /* Build a constructor to contain the initializations. */
410 return build_constructor (type, v);
411 }
412
413 return build_zero_init (type, NULL_TREE, /*static_storage_p=*/false);
414}
415
2282d28d
MM
416/* Initialize MEMBER, a FIELD_DECL, with INIT, a TREE_LIST of
417 arguments. If TREE_LIST is void_type_node, an empty initializer
418 list was given; if NULL_TREE no initializer was given. */
e92cc029 419
8d08fdba 420static void
2282d28d 421perform_member_init (tree member, tree init)
8d08fdba
MS
422{
423 tree decl;
424 tree type = TREE_TYPE (member);
2282d28d
MM
425
426 /* Effective C++ rule 12 requires that all data members be
427 initialized. */
9dbd4406 428 if (warn_ecpp && init == NULL_TREE && TREE_CODE (type) != ARRAY_TYPE)
c5d75364
MLI
429 warning_at (DECL_SOURCE_LOCATION (current_function_decl), OPT_Weffc__,
430 "%qD should be initialized in the member initialization list",
431 member);
2282d28d 432
2282d28d 433 /* Get an lvalue for the data member. */
50ad9642
MM
434 decl = build_class_member_access_expr (current_class_ref, member,
435 /*access_path=*/NULL_TREE,
5ade1ed2
DG
436 /*preserve_reference=*/true,
437 tf_warning_or_error);
2fbfe9b8
MS
438 if (decl == error_mark_node)
439 return;
440
9dbd4406
JM
441 if (init == void_type_node)
442 {
443 /* mem() means value-initialization. */
444 if (TREE_CODE (type) == ARRAY_TYPE)
0f737a30
JJ
445 {
446 init = build_vec_init (decl, NULL_TREE, NULL_TREE,
447 /*explicit_value_init_p=*/true,
448 /* from_array=*/0,
449 tf_warning_or_error);
450 finish_expr_stmt (init);
451 }
9dbd4406
JM
452 else
453 {
454 if (TREE_CODE (type) == REFERENCE_TYPE)
c5d75364
MLI
455 permerror (DECL_SOURCE_LOCATION (current_function_decl),
456 "value-initialization of %q#D, which has reference type",
457 member);
0f737a30
JJ
458 else
459 {
460 init = build2 (INIT_EXPR, type, decl, build_value_init (type));
461 finish_expr_stmt (init);
462 }
9dbd4406 463 }
9dbd4406 464 }
6bdb8141
JM
465 /* Deal with this here, as we will get confused if we try to call the
466 assignment op for an anonymous union. This can happen in a
467 synthesized copy constructor. */
9dbd4406 468 else if (ANON_AGGR_TYPE_P (type))
6bdb8141 469 {
ff9f1a5d
MM
470 if (init)
471 {
f293ce4b 472 init = build2 (INIT_EXPR, type, decl, TREE_VALUE (init));
ff9f1a5d
MM
473 finish_expr_stmt (init);
474 }
6bdb8141 475 }
92a62aad 476 else if (TYPE_NEEDS_CONSTRUCTING (type))
8d08fdba 477 {
9dbd4406 478 if (init != NULL_TREE
8d08fdba 479 && TREE_CODE (type) == ARRAY_TYPE
8d08fdba
MS
480 && TREE_CHAIN (init) == NULL_TREE
481 && TREE_CODE (TREE_TYPE (TREE_VALUE (init))) == ARRAY_TYPE)
482 {
483 /* Initialization of one array from another. */
a48cccea 484 finish_expr_stmt (build_vec_init (decl, NULL_TREE, TREE_VALUE (init),
844ae01d 485 /*explicit_value_init_p=*/false,
5ade1ed2
DG
486 /* from_array=*/1,
487 tf_warning_or_error));
8d08fdba
MS
488 }
489 else
b87d79e6
JM
490 {
491 if (CP_TYPE_CONST_P (type)
492 && init == NULL_TREE
493 && !type_has_user_provided_default_constructor (type))
494 /* TYPE_NEEDS_CONSTRUCTING can be set just because we have a
495 vtable; still give this diagnostic. */
c5d75364
MLI
496 permerror (DECL_SOURCE_LOCATION (current_function_decl),
497 "uninitialized member %qD with %<const%> type %qT",
498 member, type);
b87d79e6
JM
499 finish_expr_stmt (build_aggr_init (decl, init, 0,
500 tf_warning_or_error));
501 }
8d08fdba
MS
502 }
503 else
504 {
505 if (init == NULL_TREE)
506 {
8d08fdba 507 /* member traversal: note it leaves init NULL */
9dbd4406 508 if (TREE_CODE (type) == REFERENCE_TYPE)
c5d75364
MLI
509 permerror (DECL_SOURCE_LOCATION (current_function_decl),
510 "uninitialized reference member %qD",
511 member);
58ec3cc5 512 else if (CP_TYPE_CONST_P (type))
c5d75364
MLI
513 permerror (DECL_SOURCE_LOCATION (current_function_decl),
514 "uninitialized member %qD with %<const%> type %qT",
515 member, type);
8d08fdba
MS
516 }
517 else if (TREE_CODE (init) == TREE_LIST)
c7b62f14
NS
518 /* There was an explicit member initialization. Do some work
519 in that case. */
520 init = build_x_compound_expr_from_list (init, "member initializer");
8d08fdba 521
4f0aa416 522 if (init)
5ade1ed2
DG
523 finish_expr_stmt (cp_build_modify_expr (decl, INIT_EXPR, init,
524 tf_warning_or_error));
8d08fdba 525 }
eb66be0e 526
834c6dff 527 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
b7484fbe 528 {
de22184b
MS
529 tree expr;
530
50ad9642
MM
531 expr = build_class_member_access_expr (current_class_ref, member,
532 /*access_path=*/NULL_TREE,
5ade1ed2
DG
533 /*preserve_reference=*/false,
534 tf_warning_or_error);
3ec6bad3 535 expr = build_delete (type, expr, sfk_complete_destructor,
b7484fbe
MS
536 LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
537
538 if (expr != error_mark_node)
659e5a7a 539 finish_eh_cleanup (expr);
b7484fbe 540 }
8d08fdba
MS
541}
542
ff9f1a5d
MM
543/* Returns a TREE_LIST containing (as the TREE_PURPOSE of each node) all
544 the FIELD_DECLs on the TYPE_FIELDS list for T, in reverse order. */
545
c8094d83 546static tree
362efdc1 547build_field_list (tree t, tree list, int *uses_unions_p)
ff9f1a5d
MM
548{
549 tree fields;
550
01c3fb15
JM
551 *uses_unions_p = 0;
552
ff9f1a5d
MM
553 /* Note whether or not T is a union. */
554 if (TREE_CODE (t) == UNION_TYPE)
555 *uses_unions_p = 1;
556
557 for (fields = TYPE_FIELDS (t); fields; fields = TREE_CHAIN (fields))
558 {
559 /* Skip CONST_DECLs for enumeration constants and so forth. */
17bbb839 560 if (TREE_CODE (fields) != FIELD_DECL || DECL_ARTIFICIAL (fields))
ff9f1a5d 561 continue;
c8094d83 562
ff9f1a5d
MM
563 /* Keep track of whether or not any fields are unions. */
564 if (TREE_CODE (TREE_TYPE (fields)) == UNION_TYPE)
565 *uses_unions_p = 1;
566
567 /* For an anonymous struct or union, we must recursively
568 consider the fields of the anonymous type. They can be
569 directly initialized from the constructor. */
570 if (ANON_AGGR_TYPE_P (TREE_TYPE (fields)))
571 {
572 /* Add this field itself. Synthesized copy constructors
573 initialize the entire aggregate. */
574 list = tree_cons (fields, NULL_TREE, list);
575 /* And now add the fields in the anonymous aggregate. */
c8094d83 576 list = build_field_list (TREE_TYPE (fields), list,
ff9f1a5d
MM
577 uses_unions_p);
578 }
579 /* Add this field. */
580 else if (DECL_NAME (fields))
581 list = tree_cons (fields, NULL_TREE, list);
582 }
583
584 return list;
585}
586
2282d28d
MM
587/* The MEM_INITS are a TREE_LIST. The TREE_PURPOSE of each list gives
588 a FIELD_DECL or BINFO in T that needs initialization. The
589 TREE_VALUE gives the initializer, or list of initializer arguments.
590
591 Return a TREE_LIST containing all of the initializations required
592 for T, in the order in which they should be performed. The output
593 list has the same format as the input. */
e92cc029 594
8d08fdba 595static tree
2282d28d 596sort_mem_initializers (tree t, tree mem_inits)
8d08fdba 597{
ff9f1a5d 598 tree init;
fa743e8c 599 tree base, binfo, base_binfo;
2282d28d
MM
600 tree sorted_inits;
601 tree next_subobject;
d4e6fecb 602 VEC(tree,gc) *vbases;
2282d28d 603 int i;
ff9f1a5d
MM
604 int uses_unions_p;
605
2282d28d
MM
606 /* Build up a list of initializations. The TREE_PURPOSE of entry
607 will be the subobject (a FIELD_DECL or BINFO) to initialize. The
608 TREE_VALUE will be the constructor arguments, or NULL if no
609 explicit initialization was provided. */
610 sorted_inits = NULL_TREE;
c8094d83 611
2282d28d 612 /* Process the virtual bases. */
9ba5ff0f
NS
613 for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
614 VEC_iterate (tree, vbases, i, base); i++)
58c42dc2 615 sorted_inits = tree_cons (base, NULL_TREE, sorted_inits);
c8094d83 616
2282d28d 617 /* Process the direct bases. */
fa743e8c
NS
618 for (binfo = TYPE_BINFO (t), i = 0;
619 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
620 if (!BINFO_VIRTUAL_P (base_binfo))
621 sorted_inits = tree_cons (base_binfo, NULL_TREE, sorted_inits);
622
2282d28d
MM
623 /* Process the non-static data members. */
624 sorted_inits = build_field_list (t, sorted_inits, &uses_unions_p);
625 /* Reverse the entire list of initializations, so that they are in
626 the order that they will actually be performed. */
627 sorted_inits = nreverse (sorted_inits);
628
629 /* If the user presented the initializers in an order different from
630 that in which they will actually occur, we issue a warning. Keep
631 track of the next subobject which can be explicitly initialized
632 without issuing a warning. */
633 next_subobject = sorted_inits;
634
635 /* Go through the explicit initializers, filling in TREE_PURPOSE in
636 the SORTED_INITS. */
637 for (init = mem_inits; init; init = TREE_CHAIN (init))
638 {
639 tree subobject;
640 tree subobject_init;
641
642 subobject = TREE_PURPOSE (init);
643
644 /* If the explicit initializers are in sorted order, then
c8094d83 645 SUBOBJECT will be NEXT_SUBOBJECT, or something following
2282d28d 646 it. */
c8094d83
MS
647 for (subobject_init = next_subobject;
648 subobject_init;
2282d28d
MM
649 subobject_init = TREE_CHAIN (subobject_init))
650 if (TREE_PURPOSE (subobject_init) == subobject)
ff9f1a5d
MM
651 break;
652
2282d28d 653 /* Issue a warning if the explicit initializer order does not
2cfe82fe 654 match that which will actually occur.
0cbd7506 655 ??? Are all these on the correct lines? */
2282d28d 656 if (warn_reorder && !subobject_init)
ff9f1a5d 657 {
2282d28d 658 if (TREE_CODE (TREE_PURPOSE (next_subobject)) == FIELD_DECL)
b323323f 659 warning (OPT_Wreorder, "%q+D will be initialized after",
dee15844 660 TREE_PURPOSE (next_subobject));
2282d28d 661 else
b323323f 662 warning (OPT_Wreorder, "base %qT will be initialized after",
2282d28d
MM
663 TREE_PURPOSE (next_subobject));
664 if (TREE_CODE (subobject) == FIELD_DECL)
b323323f 665 warning (OPT_Wreorder, " %q+#D", subobject);
2282d28d 666 else
b323323f 667 warning (OPT_Wreorder, " base %qT", subobject);
c5d75364
MLI
668 warning_at (DECL_SOURCE_LOCATION (current_function_decl),
669 OPT_Wreorder, " when initialized here");
ff9f1a5d 670 }
b7484fbe 671
2282d28d
MM
672 /* Look again, from the beginning of the list. */
673 if (!subobject_init)
ff9f1a5d 674 {
2282d28d
MM
675 subobject_init = sorted_inits;
676 while (TREE_PURPOSE (subobject_init) != subobject)
677 subobject_init = TREE_CHAIN (subobject_init);
ff9f1a5d 678 }
c8094d83 679
2282d28d
MM
680 /* It is invalid to initialize the same subobject more than
681 once. */
682 if (TREE_VALUE (subobject_init))
ff9f1a5d 683 {
2282d28d 684 if (TREE_CODE (subobject) == FIELD_DECL)
c5d75364
MLI
685 error_at (DECL_SOURCE_LOCATION (current_function_decl),
686 "multiple initializations given for %qD",
687 subobject);
2282d28d 688 else
c5d75364
MLI
689 error_at (DECL_SOURCE_LOCATION (current_function_decl),
690 "multiple initializations given for base %qT",
691 subobject);
ff9f1a5d
MM
692 }
693
2282d28d
MM
694 /* Record the initialization. */
695 TREE_VALUE (subobject_init) = TREE_VALUE (init);
696 next_subobject = subobject_init;
ff9f1a5d
MM
697 }
698
699 /* [class.base.init]
b7484fbe 700
ff9f1a5d
MM
701 If a ctor-initializer specifies more than one mem-initializer for
702 multiple members of the same union (including members of
703 anonymous unions), the ctor-initializer is ill-formed. */
704 if (uses_unions_p)
705 {
2282d28d
MM
706 tree last_field = NULL_TREE;
707 for (init = sorted_inits; init; init = TREE_CHAIN (init))
8d08fdba 708 {
ff9f1a5d
MM
709 tree field;
710 tree field_type;
711 int done;
712
2282d28d 713 /* Skip uninitialized members and base classes. */
c8094d83 714 if (!TREE_VALUE (init)
2282d28d 715 || TREE_CODE (TREE_PURPOSE (init)) != FIELD_DECL)
ff9f1a5d
MM
716 continue;
717 /* See if this field is a member of a union, or a member of a
718 structure contained in a union, etc. */
719 field = TREE_PURPOSE (init);
720 for (field_type = DECL_CONTEXT (field);
721 !same_type_p (field_type, t);
722 field_type = TYPE_CONTEXT (field_type))
723 if (TREE_CODE (field_type) == UNION_TYPE)
724 break;
725 /* If this field is not a member of a union, skip it. */
726 if (TREE_CODE (field_type) != UNION_TYPE)
8d08fdba 727 continue;
8d08fdba 728
ff9f1a5d
MM
729 /* It's only an error if we have two initializers for the same
730 union type. */
731 if (!last_field)
6bdb8141 732 {
ff9f1a5d
MM
733 last_field = field;
734 continue;
6bdb8141 735 }
8d08fdba 736
ff9f1a5d
MM
737 /* See if LAST_FIELD and the field initialized by INIT are
738 members of the same union. If so, there's a problem,
739 unless they're actually members of the same structure
740 which is itself a member of a union. For example, given:
8d08fdba 741
ff9f1a5d
MM
742 union { struct { int i; int j; }; };
743
744 initializing both `i' and `j' makes sense. */
745 field_type = DECL_CONTEXT (field);
746 done = 0;
747 do
8d08fdba 748 {
ff9f1a5d
MM
749 tree last_field_type;
750
751 last_field_type = DECL_CONTEXT (last_field);
752 while (1)
00595019 753 {
ff9f1a5d 754 if (same_type_p (last_field_type, field_type))
00595019 755 {
ff9f1a5d 756 if (TREE_CODE (field_type) == UNION_TYPE)
c5d75364
MLI
757 error_at (DECL_SOURCE_LOCATION (current_function_decl),
758 "initializations for multiple members of %qT",
759 last_field_type);
ff9f1a5d
MM
760 done = 1;
761 break;
00595019 762 }
8d08fdba 763
ff9f1a5d
MM
764 if (same_type_p (last_field_type, t))
765 break;
8d08fdba 766
ff9f1a5d
MM
767 last_field_type = TYPE_CONTEXT (last_field_type);
768 }
c8094d83 769
ff9f1a5d
MM
770 /* If we've reached the outermost class, then we're
771 done. */
772 if (same_type_p (field_type, t))
773 break;
8d08fdba 774
ff9f1a5d 775 field_type = TYPE_CONTEXT (field_type);
8d08fdba 776 }
ff9f1a5d
MM
777 while (!done);
778
779 last_field = field;
b7484fbe
MS
780 }
781 }
8d08fdba 782
2282d28d 783 return sorted_inits;
b7484fbe
MS
784}
785
2282d28d
MM
786/* Initialize all bases and members of CURRENT_CLASS_TYPE. MEM_INITS
787 is a TREE_LIST giving the explicit mem-initializer-list for the
788 constructor. The TREE_PURPOSE of each entry is a subobject (a
789 FIELD_DECL or a BINFO) of the CURRENT_CLASS_TYPE. The TREE_VALUE
790 is a TREE_LIST giving the arguments to the constructor or
791 void_type_node for an empty list of arguments. */
a9aedbc2 792
3dbc07b6 793void
2282d28d 794emit_mem_initializers (tree mem_inits)
8d08fdba 795{
72e4661a
PC
796 /* We will already have issued an error message about the fact that
797 the type is incomplete. */
798 if (!COMPLETE_TYPE_P (current_class_type))
799 return;
c8094d83 800
2282d28d
MM
801 /* Sort the mem-initializers into the order in which the
802 initializations should be performed. */
803 mem_inits = sort_mem_initializers (current_class_type, mem_inits);
8d08fdba 804
1f5a253a 805 in_base_initializer = 1;
c8094d83 806
2282d28d 807 /* Initialize base classes. */
c8094d83 808 while (mem_inits
2282d28d 809 && TREE_CODE (TREE_PURPOSE (mem_inits)) != FIELD_DECL)
8d08fdba 810 {
2282d28d
MM
811 tree subobject = TREE_PURPOSE (mem_inits);
812 tree arguments = TREE_VALUE (mem_inits);
813
8c95264b
MLI
814 /* If these initializations are taking place in a copy constructor,
815 the base class should probably be explicitly initialized if there
816 is a user-defined constructor in the base class (other than the
817 default constructor, which will be called anyway). */
c8094d83 818 if (extra_warnings && !arguments
2282d28d 819 && DECL_COPY_CONSTRUCTOR_P (current_function_decl)
8c95264b 820 && type_has_user_nondefault_constructor (BINFO_TYPE (subobject)))
c5d75364
MLI
821 warning_at (DECL_SOURCE_LOCATION (current_function_decl), OPT_Wextra,
822 "base class %q#T should be explicitly initialized in the "
823 "copy constructor",
824 BINFO_TYPE (subobject));
2282d28d 825
2282d28d 826 /* Initialize the base. */
809e3e7f 827 if (BINFO_VIRTUAL_P (subobject))
2282d28d
MM
828 construct_virtual_base (subobject, arguments);
829 else
b7484fbe 830 {
2282d28d 831 tree base_addr;
c8094d83 832
2282d28d
MM
833 base_addr = build_base_path (PLUS_EXPR, current_class_ptr,
834 subobject, 1);
835 expand_aggr_init_1 (subobject, NULL_TREE,
5ade1ed2
DG
836 cp_build_indirect_ref (base_addr, NULL,
837 tf_warning_or_error),
2282d28d 838 arguments,
5ade1ed2
DG
839 LOOKUP_NORMAL,
840 tf_warning_or_error);
2282d28d 841 expand_cleanup_for_base (subobject, NULL_TREE);
8d08fdba 842 }
8d08fdba 843
2282d28d 844 mem_inits = TREE_CHAIN (mem_inits);
8d08fdba 845 }
1f5a253a 846 in_base_initializer = 0;
8d08fdba 847
2282d28d 848 /* Initialize the vptrs. */
cf2e003b 849 initialize_vtbl_ptrs (current_class_ptr);
c8094d83 850
2282d28d
MM
851 /* Initialize the data members. */
852 while (mem_inits)
8d08fdba 853 {
2282d28d
MM
854 perform_member_init (TREE_PURPOSE (mem_inits),
855 TREE_VALUE (mem_inits));
856 mem_inits = TREE_CHAIN (mem_inits);
b7484fbe 857 }
8d08fdba
MS
858}
859
3ec6bad3
MM
860/* Returns the address of the vtable (i.e., the value that should be
861 assigned to the vptr) for BINFO. */
862
863static tree
362efdc1 864build_vtbl_address (tree binfo)
3ec6bad3 865{
9965d119 866 tree binfo_for = binfo;
3ec6bad3
MM
867 tree vtbl;
868
fc6633e0 869 if (BINFO_VPTR_INDEX (binfo) && BINFO_VIRTUAL_P (binfo))
9965d119
NS
870 /* If this is a virtual primary base, then the vtable we want to store
871 is that for the base this is being used as the primary base of. We
872 can't simply skip the initialization, because we may be expanding the
873 inits of a subobject constructor where the virtual base layout
874 can be different. */
fc6633e0
NS
875 while (BINFO_PRIMARY_P (binfo_for))
876 binfo_for = BINFO_INHERITANCE_CHAIN (binfo_for);
9965d119 877
3ec6bad3
MM
878 /* Figure out what vtable BINFO's vtable is based on, and mark it as
879 used. */
9965d119 880 vtbl = get_vtbl_decl_for_binfo (binfo_for);
3ec6bad3
MM
881 TREE_USED (vtbl) = 1;
882
883 /* Now compute the address to use when initializing the vptr. */
6de9cd9a 884 vtbl = unshare_expr (BINFO_VTABLE (binfo_for));
3ec6bad3 885 if (TREE_CODE (vtbl) == VAR_DECL)
6de9cd9a 886 vtbl = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (vtbl)), vtbl);
3ec6bad3
MM
887
888 return vtbl;
889}
890
8d08fdba
MS
891/* This code sets up the virtual function tables appropriate for
892 the pointer DECL. It is a one-ply initialization.
893
894 BINFO is the exact type that DECL is supposed to be. In
895 multiple inheritance, this might mean "C's A" if C : A, B. */
e92cc029 896
8926095f 897static void
362efdc1 898expand_virtual_init (tree binfo, tree decl)
8d08fdba 899{
8d08fdba 900 tree vtbl, vtbl_ptr;
3ec6bad3 901 tree vtt_index;
8d08fdba 902
3ec6bad3
MM
903 /* Compute the initializer for vptr. */
904 vtbl = build_vtbl_address (binfo);
905
3461fba7
NS
906 /* We may get this vptr from a VTT, if this is a subobject
907 constructor or subobject destructor. */
3ec6bad3
MM
908 vtt_index = BINFO_VPTR_INDEX (binfo);
909 if (vtt_index)
910 {
911 tree vtbl2;
912 tree vtt_parm;
913
914 /* Compute the value to use, when there's a VTT. */
e0fff4b3 915 vtt_parm = current_vtt_parm;
5be014d5 916 vtbl2 = build2 (POINTER_PLUS_EXPR,
c8094d83 917 TREE_TYPE (vtt_parm),
f293ce4b
RS
918 vtt_parm,
919 vtt_index);
5ade1ed2 920 vtbl2 = cp_build_indirect_ref (vtbl2, NULL, tf_warning_or_error);
6de9cd9a 921 vtbl2 = convert (TREE_TYPE (vtbl), vtbl2);
3ec6bad3
MM
922
923 /* The actual initializer is the VTT value only in the subobject
924 constructor. In maybe_clone_body we'll substitute NULL for
925 the vtt_parm in the case of the non-subobject constructor. */
c8094d83
MS
926 vtbl = build3 (COND_EXPR,
927 TREE_TYPE (vtbl),
f293ce4b
RS
928 build2 (EQ_EXPR, boolean_type_node,
929 current_in_charge_parm, integer_zero_node),
c8094d83 930 vtbl2,
f293ce4b 931 vtbl);
3ec6bad3 932 }
70ae3201
MM
933
934 /* Compute the location of the vtpr. */
5ade1ed2
DG
935 vtbl_ptr = build_vfield_ref (cp_build_indirect_ref (decl, NULL,
936 tf_warning_or_error),
338d90b8 937 TREE_TYPE (binfo));
50bc768d 938 gcc_assert (vtbl_ptr != error_mark_node);
8d08fdba 939
70ae3201 940 /* Assign the vtable to the vptr. */
6060a796 941 vtbl = convert_force (TREE_TYPE (vtbl_ptr), vtbl, 0);
5ade1ed2
DG
942 finish_expr_stmt (cp_build_modify_expr (vtbl_ptr, NOP_EXPR, vtbl,
943 tf_warning_or_error));
8d08fdba
MS
944}
945
f33e32a8
MM
946/* If an exception is thrown in a constructor, those base classes already
947 constructed must be destroyed. This function creates the cleanup
0b8a1e58 948 for BINFO, which has just been constructed. If FLAG is non-NULL,
838dfd8a 949 it is a DECL which is nonzero when this base needs to be
0b8a1e58 950 destroyed. */
f33e32a8
MM
951
952static void
362efdc1 953expand_cleanup_for_base (tree binfo, tree flag)
f33e32a8
MM
954{
955 tree expr;
956
834c6dff 957 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (BINFO_TYPE (binfo)))
f33e32a8
MM
958 return;
959
0b8a1e58 960 /* Call the destructor. */
c8094d83 961 expr = build_special_member_call (current_class_ref,
4ba126e4 962 base_dtor_identifier,
c166b898 963 NULL,
4ba126e4 964 binfo,
5ade1ed2
DG
965 LOOKUP_NORMAL | LOOKUP_NONVIRTUAL,
966 tf_warning_or_error);
0b8a1e58 967 if (flag)
7866705a 968 expr = fold_build3 (COND_EXPR, void_type_node,
ba47d38d 969 c_common_truthvalue_conversion (input_location, flag),
7866705a 970 expr, integer_zero_node);
0b8a1e58 971
659e5a7a 972 finish_eh_cleanup (expr);
f33e32a8
MM
973}
974
2282d28d
MM
975/* Construct the virtual base-class VBASE passing the ARGUMENTS to its
976 constructor. */
e92cc029 977
8d08fdba 978static void
2282d28d 979construct_virtual_base (tree vbase, tree arguments)
8d08fdba 980{
2282d28d 981 tree inner_if_stmt;
2282d28d 982 tree exp;
c8094d83 983 tree flag;
2282d28d
MM
984
985 /* If there are virtual base classes with destructors, we need to
986 emit cleanups to destroy them if an exception is thrown during
987 the construction process. These exception regions (i.e., the
988 period during which the cleanups must occur) begin from the time
989 the construction is complete to the end of the function. If we
990 create a conditional block in which to initialize the
991 base-classes, then the cleanup region for the virtual base begins
992 inside a block, and ends outside of that block. This situation
993 confuses the sjlj exception-handling code. Therefore, we do not
994 create a single conditional block, but one for each
995 initialization. (That way the cleanup regions always begin
3b426391 996 in the outer block.) We trust the back end to figure out
2282d28d
MM
997 that the FLAG will not change across initializations, and
998 avoid doing multiple tests. */
999 flag = TREE_CHAIN (DECL_ARGUMENTS (current_function_decl));
1000 inner_if_stmt = begin_if_stmt ();
1001 finish_if_stmt_cond (flag, inner_if_stmt);
2282d28d
MM
1002
1003 /* Compute the location of the virtual base. If we're
1004 constructing virtual bases, then we must be the most derived
1005 class. Therefore, we don't have to look up the virtual base;
1006 we already know where it is. */
22ed7e5f
MM
1007 exp = convert_to_base_statically (current_class_ref, vbase);
1008
c8094d83 1009 expand_aggr_init_1 (vbase, current_class_ref, exp, arguments,
5ade1ed2 1010 LOOKUP_COMPLAIN, tf_warning_or_error);
2282d28d 1011 finish_then_clause (inner_if_stmt);
325c3691 1012 finish_if_stmt (inner_if_stmt);
2282d28d
MM
1013
1014 expand_cleanup_for_base (vbase, flag);
8d08fdba
MS
1015}
1016
2ee887f2 1017/* Find the context in which this FIELD can be initialized. */
e92cc029 1018
2ee887f2 1019static tree
362efdc1 1020initializing_context (tree field)
2ee887f2
MS
1021{
1022 tree t = DECL_CONTEXT (field);
1023
1024 /* Anonymous union members can be initialized in the first enclosing
1025 non-anonymous union context. */
6bdb8141 1026 while (t && ANON_AGGR_TYPE_P (t))
2ee887f2
MS
1027 t = TYPE_CONTEXT (t);
1028 return t;
1029}
1030
8d08fdba
MS
1031/* Function to give error message if member initialization specification
1032 is erroneous. FIELD is the member we decided to initialize.
1033 TYPE is the type for which the initialization is being performed.
72b7eeff 1034 FIELD must be a member of TYPE.
c8094d83 1035
8d08fdba
MS
1036 MEMBER_NAME is the name of the member. */
1037
1038static int
362efdc1 1039member_init_ok_or_else (tree field, tree type, tree member_name)
8d08fdba
MS
1040{
1041 if (field == error_mark_node)
1042 return 0;
a723baf1 1043 if (!field)
8d08fdba 1044 {
15a7ee29 1045 error ("class %qT does not have any field named %qD", type,
a723baf1 1046 member_name);
8d08fdba
MS
1047 return 0;
1048 }
a723baf1 1049 if (TREE_CODE (field) == VAR_DECL)
b7484fbe 1050 {
15a7ee29 1051 error ("%q#D is a static data member; it can only be "
a723baf1
MM
1052 "initialized at its definition",
1053 field);
1054 return 0;
1055 }
1056 if (TREE_CODE (field) != FIELD_DECL)
1057 {
15a7ee29 1058 error ("%q#D is not a non-static data member of %qT",
a723baf1
MM
1059 field, type);
1060 return 0;
1061 }
1062 if (initializing_context (field) != type)
1063 {
15a7ee29 1064 error ("class %qT does not have any field named %qD", type,
a723baf1 1065 member_name);
b7484fbe
MS
1066 return 0;
1067 }
1068
8d08fdba
MS
1069 return 1;
1070}
1071
2282d28d
MM
1072/* NAME is a FIELD_DECL, an IDENTIFIER_NODE which names a field, or it
1073 is a _TYPE node or TYPE_DECL which names a base for that type.
1f5a253a
NS
1074 Check the validity of NAME, and return either the base _TYPE, base
1075 binfo, or the FIELD_DECL of the member. If NAME is invalid, return
2282d28d 1076 NULL_TREE and issue a diagnostic.
8d08fdba 1077
36a68fe7
NS
1078 An old style unnamed direct single base construction is permitted,
1079 where NAME is NULL. */
8d08fdba 1080
fd74ca0b 1081tree
1f5a253a 1082expand_member_init (tree name)
8d08fdba 1083{
2282d28d
MM
1084 tree basetype;
1085 tree field;
8d08fdba 1086
2282d28d 1087 if (!current_class_ref)
fd74ca0b 1088 return NULL_TREE;
8d08fdba 1089
36a68fe7 1090 if (!name)
90418208 1091 {
36a68fe7
NS
1092 /* This is an obsolete unnamed base class initializer. The
1093 parser will already have warned about its use. */
604a3205 1094 switch (BINFO_N_BASE_BINFOS (TYPE_BINFO (current_class_type)))
36a68fe7
NS
1095 {
1096 case 0:
15a7ee29 1097 error ("unnamed initializer for %qT, which has no base classes",
2282d28d 1098 current_class_type);
36a68fe7
NS
1099 return NULL_TREE;
1100 case 1:
604a3205
NS
1101 basetype = BINFO_TYPE
1102 (BINFO_BASE_BINFO (TYPE_BINFO (current_class_type), 0));
36a68fe7
NS
1103 break;
1104 default:
15a7ee29 1105 error ("unnamed initializer for %qT, which uses multiple inheritance",
2282d28d 1106 current_class_type);
36a68fe7
NS
1107 return NULL_TREE;
1108 }
90418208 1109 }
36a68fe7 1110 else if (TYPE_P (name))
be99da77 1111 {
a82d6da5 1112 basetype = TYPE_MAIN_VARIANT (name);
36a68fe7 1113 name = TYPE_NAME (name);
be99da77 1114 }
36a68fe7
NS
1115 else if (TREE_CODE (name) == TYPE_DECL)
1116 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (name));
2282d28d
MM
1117 else
1118 basetype = NULL_TREE;
8d08fdba 1119
36a68fe7 1120 if (basetype)
41efda8f 1121 {
d9148cf4
MM
1122 tree class_binfo;
1123 tree direct_binfo;
1124 tree virtual_binfo;
1125 int i;
2282d28d 1126
36a68fe7 1127 if (current_template_parms)
1f5a253a 1128 return basetype;
2282d28d 1129
d9148cf4
MM
1130 class_binfo = TYPE_BINFO (current_class_type);
1131 direct_binfo = NULL_TREE;
1132 virtual_binfo = NULL_TREE;
1133
1134 /* Look for a direct base. */
fa743e8c 1135 for (i = 0; BINFO_BASE_ITERATE (class_binfo, i, direct_binfo); ++i)
539ed333 1136 if (SAME_BINFO_TYPE_P (BINFO_TYPE (direct_binfo), basetype))
fa743e8c
NS
1137 break;
1138
d9148cf4
MM
1139 /* Look for a virtual base -- unless the direct base is itself
1140 virtual. */
809e3e7f 1141 if (!direct_binfo || !BINFO_VIRTUAL_P (direct_binfo))
58c42dc2 1142 virtual_binfo = binfo_for_vbase (basetype, current_class_type);
d9148cf4
MM
1143
1144 /* [class.base.init]
c8094d83 1145
0cbd7506 1146 If a mem-initializer-id is ambiguous because it designates
d9148cf4
MM
1147 both a direct non-virtual base class and an inherited virtual
1148 base class, the mem-initializer is ill-formed. */
1149 if (direct_binfo && virtual_binfo)
1150 {
15a7ee29 1151 error ("%qD is both a direct base and an indirect virtual base",
d9148cf4
MM
1152 basetype);
1153 return NULL_TREE;
1154 }
1155
1156 if (!direct_binfo && !virtual_binfo)
8d08fdba 1157 {
5775a06a 1158 if (CLASSTYPE_VBASECLASSES (current_class_type))
c3115fd2
MM
1159 error ("type %qT is not a direct or virtual base of %qT",
1160 basetype, current_class_type);
41efda8f 1161 else
c3115fd2
MM
1162 error ("type %qT is not a direct base of %qT",
1163 basetype, current_class_type);
fd74ca0b 1164 return NULL_TREE;
41efda8f 1165 }
d9148cf4
MM
1166
1167 return direct_binfo ? direct_binfo : virtual_binfo;
41efda8f
MM
1168 }
1169 else
1170 {
2282d28d 1171 if (TREE_CODE (name) == IDENTIFIER_NODE)
86ac0575 1172 field = lookup_field (current_class_type, name, 1, false);
2282d28d
MM
1173 else
1174 field = name;
8d08fdba 1175
2282d28d 1176 if (member_init_ok_or_else (field, current_class_type, name))
1f5a253a 1177 return field;
41efda8f 1178 }
fd74ca0b 1179
2282d28d 1180 return NULL_TREE;
8d08fdba
MS
1181}
1182
1183/* This is like `expand_member_init', only it stores one aggregate
1184 value into another.
1185
1186 INIT comes in two flavors: it is either a value which
1187 is to be stored in EXP, or it is a parameter list
1188 to go to a constructor, which will operate on EXP.
f30432d7
MS
1189 If INIT is not a parameter list for a constructor, then set
1190 LOOKUP_ONLYCONVERTING.
6060a796
MS
1191 If FLAGS is LOOKUP_ONLYCONVERTING then it is the = init form of
1192 the initializer, if FLAGS is 0, then it is the (init) form.
8d08fdba 1193 If `init' is a CONSTRUCTOR, then we emit a warning message,
59be0cdd 1194 explaining that such initializations are invalid.
8d08fdba 1195
8d08fdba
MS
1196 If INIT resolves to a CALL_EXPR which happens to return
1197 something of the type we are looking for, then we know
1198 that we can safely use that call to perform the
1199 initialization.
1200
1201 The virtual function table pointer cannot be set up here, because
1202 we do not really know its type.
1203
8d08fdba
MS
1204 This never calls operator=().
1205
1206 When initializing, nothing is CONST.
1207
1208 A default copy constructor may have to be used to perform the
1209 initialization.
1210
1211 A constructor or a conversion operator may have to be used to
e92cc029 1212 perform the initialization, but not both, as it would be ambiguous. */
8d08fdba 1213
f1dedc31 1214tree
5ade1ed2 1215build_aggr_init (tree exp, tree init, int flags, tsubst_flags_t complain)
8d08fdba 1216{
f1dedc31
MM
1217 tree stmt_expr;
1218 tree compound_stmt;
1219 int destroy_temps;
8d08fdba
MS
1220 tree type = TREE_TYPE (exp);
1221 int was_const = TREE_READONLY (exp);
f30432d7 1222 int was_volatile = TREE_THIS_VOLATILE (exp);
2a3398e1 1223 int is_global;
8d08fdba
MS
1224
1225 if (init == error_mark_node)
f1dedc31 1226 return error_mark_node;
8d08fdba
MS
1227
1228 TREE_READONLY (exp) = 0;
f30432d7
MS
1229 TREE_THIS_VOLATILE (exp) = 0;
1230
1231 if (init && TREE_CODE (init) != TREE_LIST)
1232 flags |= LOOKUP_ONLYCONVERTING;
8d08fdba
MS
1233
1234 if (TREE_CODE (type) == ARRAY_TYPE)
1235 {
671cb993
MM
1236 tree itype;
1237
92a62aad
MM
1238 /* An array may not be initialized use the parenthesized
1239 initialization form -- unless the initializer is "()". */
1240 if (init && TREE_CODE (init) == TREE_LIST)
8d08fdba 1241 {
5ade1ed2
DG
1242 if (complain & tf_error)
1243 error ("bad array initializer");
f1dedc31 1244 return error_mark_node;
8d08fdba 1245 }
92a62aad
MM
1246 /* Must arrange to initialize each element of EXP
1247 from elements of INIT. */
671cb993 1248 itype = init ? TREE_TYPE (init) : NULL_TREE;
89d684bb 1249 if (cp_type_quals (type) != TYPE_UNQUALIFIED)
b2153b98
KL
1250 TREE_TYPE (exp) = TYPE_MAIN_VARIANT (type);
1251 if (itype && cp_type_quals (itype) != TYPE_UNQUALIFIED)
92a62aad 1252 itype = TREE_TYPE (init) = TYPE_MAIN_VARIANT (itype);
a48cccea 1253 stmt_expr = build_vec_init (exp, NULL_TREE, init,
844ae01d 1254 /*explicit_value_init_p=*/false,
92a62aad 1255 itype && same_type_p (itype,
5ade1ed2
DG
1256 TREE_TYPE (exp)),
1257 complain);
8d08fdba 1258 TREE_READONLY (exp) = was_const;
f30432d7 1259 TREE_THIS_VOLATILE (exp) = was_volatile;
8d08fdba 1260 TREE_TYPE (exp) = type;
f376e137
MS
1261 if (init)
1262 TREE_TYPE (init) = itype;
f1dedc31 1263 return stmt_expr;
8d08fdba
MS
1264 }
1265
1266 if (TREE_CODE (exp) == VAR_DECL || TREE_CODE (exp) == PARM_DECL)
f4f206f4 1267 /* Just know that we've seen something for this node. */
8d08fdba
MS
1268 TREE_USED (exp) = 1;
1269
2a3398e1 1270 is_global = begin_init_stmts (&stmt_expr, &compound_stmt);
f2c5f623 1271 destroy_temps = stmts_are_full_exprs_p ();
ae499cce 1272 current_stmt_tree ()->stmts_are_full_exprs_p = 0;
8d08fdba 1273 expand_aggr_init_1 (TYPE_BINFO (type), exp, exp,
5ade1ed2 1274 init, LOOKUP_NORMAL|flags, complain);
2a3398e1 1275 stmt_expr = finish_init_stmts (is_global, stmt_expr, compound_stmt);
ae499cce 1276 current_stmt_tree ()->stmts_are_full_exprs_p = destroy_temps;
8d08fdba 1277 TREE_READONLY (exp) = was_const;
f30432d7 1278 TREE_THIS_VOLATILE (exp) = was_volatile;
f1dedc31
MM
1279
1280 return stmt_expr;
8d08fdba
MS
1281}
1282
1283static void
5ade1ed2
DG
1284expand_default_init (tree binfo, tree true_exp, tree exp, tree init, int flags,
1285 tsubst_flags_t complain)
8d08fdba 1286{
fc378698 1287 tree type = TREE_TYPE (exp);
9eb71d8c 1288 tree ctor_name;
fc378698 1289
8d08fdba
MS
1290 /* It fails because there may not be a constructor which takes
1291 its own type as the first (or only parameter), but which does
1292 take other types via a conversion. So, if the thing initializing
1293 the expression is a unit element of type X, first try X(X&),
1294 followed by initialization by X. If neither of these work
1295 out, then look hard. */
1296 tree rval;
c166b898 1297 VEC(tree,gc) *parms;
8d08fdba 1298
277294d7 1299 if (init && TREE_CODE (init) != TREE_LIST
faf5394a
MS
1300 && (flags & LOOKUP_ONLYCONVERTING))
1301 {
1302 /* Base subobjects should only get direct-initialization. */
8dc2b103 1303 gcc_assert (true_exp == exp);
faf5394a 1304
c37dc68e
JM
1305 if (flags & DIRECT_BIND)
1306 /* Do nothing. We hit this in two cases: Reference initialization,
1307 where we aren't initializing a real variable, so we don't want
1308 to run a new constructor; and catching an exception, where we
1309 have already built up the constructor call so we could wrap it
1310 in an exception region. */;
09357846
JM
1311 else if (BRACE_ENCLOSED_INITIALIZER_P (init)
1312 && CP_AGGREGATE_TYPE_P (type))
8e3df2de 1313 {
b216f69b 1314 /* A brace-enclosed initializer for an aggregate. */
4038c495 1315 init = digest_init (type, init);
8e3df2de 1316 }
c37dc68e 1317 else
37c46b43 1318 init = ocp_convert (type, init, CONV_IMPLICIT|CONV_FORCE_TEMP, flags);
faf5394a 1319
4e8dca1c
JM
1320 if (TREE_CODE (init) == MUST_NOT_THROW_EXPR)
1321 /* We need to protect the initialization of a catch parm with a
1322 call to terminate(), which shows up as a MUST_NOT_THROW_EXPR
c7ae64f2 1323 around the TARGET_EXPR for the copy constructor. See
4e8dca1c
JM
1324 initialize_handler_parm. */
1325 {
f293ce4b
RS
1326 TREE_OPERAND (init, 0) = build2 (INIT_EXPR, TREE_TYPE (exp), exp,
1327 TREE_OPERAND (init, 0));
4e8dca1c
JM
1328 TREE_TYPE (init) = void_type_node;
1329 }
c7ae64f2 1330 else
f293ce4b 1331 init = build2 (INIT_EXPR, TREE_TYPE (exp), exp, init);
c7ae64f2 1332 TREE_SIDE_EFFECTS (init) = 1;
f1dedc31 1333 finish_expr_stmt (init);
faf5394a
MS
1334 return;
1335 }
1336
c166b898
ILT
1337 if (init == NULL_TREE)
1338 parms = NULL;
1339 else if (TREE_CODE (init) == TREE_LIST && !TREE_TYPE (init))
8d08fdba 1340 {
c166b898
ILT
1341 parms = make_tree_vector ();
1342 for (; init != NULL_TREE; init = TREE_CHAIN (init))
1343 VEC_safe_push (tree, gc, parms, TREE_VALUE (init));
8d08fdba 1344 }
8d08fdba 1345 else
c166b898 1346 parms = make_tree_vector_single (init);
8d08fdba 1347
9eb71d8c
MM
1348 if (true_exp == exp)
1349 ctor_name = complete_ctor_identifier;
1350 else
1351 ctor_name = base_ctor_identifier;
8d08fdba 1352
c166b898 1353 rval = build_special_member_call (exp, ctor_name, &parms, binfo, flags,
5ade1ed2 1354 complain);
c166b898
ILT
1355
1356 if (parms != NULL)
1357 release_tree_vector (parms);
1358
25eb19ff 1359 if (TREE_SIDE_EFFECTS (rval))
5ade1ed2 1360 finish_expr_stmt (convert_to_void (rval, NULL, complain));
8d08fdba
MS
1361}
1362
1363/* This function is responsible for initializing EXP with INIT
1364 (if any).
1365
1366 BINFO is the binfo of the type for who we are performing the
1367 initialization. For example, if W is a virtual base class of A and B,
1368 and C : A, B.
1369 If we are initializing B, then W must contain B's W vtable, whereas
1370 were we initializing C, W must contain C's W vtable.
1371
1372 TRUE_EXP is nonzero if it is the true expression being initialized.
1373 In this case, it may be EXP, or may just contain EXP. The reason we
1374 need this is because if EXP is a base element of TRUE_EXP, we
1375 don't necessarily know by looking at EXP where its virtual
1376 baseclass fields should really be pointing. But we do know
1377 from TRUE_EXP. In constructors, we don't know anything about
1378 the value being initialized.
1379
9f880ef9
MM
1380 FLAGS is just passed to `build_new_method_call'. See that function
1381 for its description. */
8d08fdba
MS
1382
1383static void
5ade1ed2
DG
1384expand_aggr_init_1 (tree binfo, tree true_exp, tree exp, tree init, int flags,
1385 tsubst_flags_t complain)
8d08fdba
MS
1386{
1387 tree type = TREE_TYPE (exp);
8d08fdba 1388
50bc768d
NS
1389 gcc_assert (init != error_mark_node && type != error_mark_node);
1390 gcc_assert (building_stmt_tree ());
8d08fdba
MS
1391
1392 /* Use a function returning the desired type to initialize EXP for us.
1393 If the function is a constructor, and its first argument is
1394 NULL_TREE, know that it was meant for us--just slide exp on
1395 in and expand the constructor. Constructors now come
1396 as TARGET_EXPRs. */
faf5394a
MS
1397
1398 if (init && TREE_CODE (exp) == VAR_DECL
3b2db49f 1399 && COMPOUND_LITERAL_P (init))
faf5394a 1400 {
f1dedc31 1401 /* If store_init_value returns NULL_TREE, the INIT has been
3b2db49f 1402 recorded as the DECL_INITIAL for EXP. That means there's
f1dedc31 1403 nothing more we have to do. */
e57d93c6 1404 init = store_init_value (exp, init, flags);
25ebb82a
RH
1405 if (init)
1406 finish_expr_stmt (init);
faf5394a
MS
1407 return;
1408 }
1409
fd97a96a
JM
1410 /* If an explicit -- but empty -- initializer list was present,
1411 that's value-initialization. */
1412 if (init == void_type_node)
1413 {
1414 /* If there's a user-provided constructor, we just call that. */
1415 if (type_has_user_provided_constructor (type))
1416 /* Fall through. */;
1417 /* If there isn't, but we still need to call the constructor,
1418 zero out the object first. */
1419 else if (TYPE_NEEDS_CONSTRUCTING (type))
1420 {
1421 init = build_zero_init (type, NULL_TREE, /*static_storage_p=*/false);
1422 init = build2 (INIT_EXPR, type, exp, init);
1423 finish_expr_stmt (init);
1424 /* And then call the constructor. */
1425 }
1426 /* If we don't need to mess with the constructor at all,
1427 then just zero out the object and we're done. */
1428 else
1429 {
1430 init = build2 (INIT_EXPR, type, exp, build_value_init_noctor (type));
1431 finish_expr_stmt (init);
1432 return;
1433 }
1434 init = NULL_TREE;
1435 }
1436
9e9ff709
MS
1437 /* We know that expand_default_init can handle everything we want
1438 at this point. */
5ade1ed2 1439 expand_default_init (binfo, true_exp, exp, init, flags, complain);
8d08fdba
MS
1440}
1441
9e1e64ec 1442/* Report an error if TYPE is not a user-defined, class type. If
be99da77 1443 OR_ELSE is nonzero, give an error message. */
e92cc029 1444
be99da77 1445int
9e1e64ec 1446is_class_type (tree type, int or_else)
be99da77
MS
1447{
1448 if (type == error_mark_node)
1449 return 0;
1450
9e1e64ec 1451 if (! CLASS_TYPE_P (type))
be99da77
MS
1452 {
1453 if (or_else)
9e1e64ec 1454 error ("%qT is not a class type", type);
be99da77
MS
1455 return 0;
1456 }
1457 return 1;
1458}
1459
8d08fdba 1460tree
362efdc1 1461get_type_value (tree name)
8d08fdba 1462{
8d08fdba
MS
1463 if (name == error_mark_node)
1464 return NULL_TREE;
1465
1466 if (IDENTIFIER_HAS_TYPE_VALUE (name))
1467 return IDENTIFIER_TYPE_VALUE (name);
8d08fdba
MS
1468 else
1469 return NULL_TREE;
1470}
051e6fd7 1471
a5ac359a
MM
1472/* Build a reference to a member of an aggregate. This is not a C++
1473 `&', but really something which can have its address taken, and
1474 then act as a pointer to member, for example TYPE :: FIELD can have
1475 its address taken by saying & TYPE :: FIELD. ADDRESS_P is true if
1476 this expression is the operand of "&".
8d08fdba
MS
1477
1478 @@ Prints out lousy diagnostics for operator <typename>
1479 @@ fields.
1480
51c184be 1481 @@ This function should be rewritten and placed in search.c. */
e92cc029 1482
8d08fdba 1483tree
d4f0f205 1484build_offset_ref (tree type, tree member, bool address_p)
8d08fdba 1485{
8d245821 1486 tree decl;
fc378698 1487 tree basebinfo = NULL_TREE;
8d08fdba 1488
5f311aec 1489 /* class templates can come in as TEMPLATE_DECLs here. */
d4f0f205
MM
1490 if (TREE_CODE (member) == TEMPLATE_DECL)
1491 return member;
93cdc044 1492
d4f0f205 1493 if (dependent_type_p (type) || type_dependent_expression_p (member))
3db45ab5 1494 return build_qualified_name (NULL_TREE, type, member,
02ed62dd 1495 /*template_p=*/false);
5566b478 1496
d4f0f205 1497 gcc_assert (TYPE_P (type));
9e1e64ec 1498 if (! is_class_type (type, 1))
c833d2be
NS
1499 return error_mark_node;
1500
d4f0f205
MM
1501 gcc_assert (DECL_P (member) || BASELINK_P (member));
1502 /* Callers should call mark_used before this point. */
1503 gcc_assert (!DECL_P (member) || TREE_USED (member));
be99da77 1504
d0f062fb 1505 if (!COMPLETE_TYPE_P (complete_type (type))
61a127b3 1506 && !TYPE_BEING_DEFINED (type))
8d08fdba 1507 {
d4f0f205 1508 error ("incomplete type %qT does not have member %qD", type, member);
a5ac359a
MM
1509 return error_mark_node;
1510 }
1511
d4f0f205 1512 /* Entities other than non-static members need no further
3db45ab5 1513 processing. */
a5ac359a 1514 if (TREE_CODE (member) == TYPE_DECL)
d4f0f205 1515 return member;
a5ac359a 1516 if (TREE_CODE (member) == VAR_DECL || TREE_CODE (member) == CONST_DECL)
d4f0f205 1517 return convert_from_reference (member);
a5ac359a
MM
1518
1519 if (TREE_CODE (member) == FIELD_DECL && DECL_C_BIT_FIELD (member))
1520 {
15a7ee29 1521 error ("invalid pointer to bit-field %qD", member);
a5ac359a
MM
1522 return error_mark_node;
1523 }
1524
d4f0f205
MM
1525 /* Set up BASEBINFO for member lookup. */
1526 decl = maybe_dummy_object (type, &basebinfo);
1527
aa52c1ff 1528 /* A lot of this logic is now handled in lookup_member. */
a5ac359a 1529 if (BASELINK_P (member))
8d08fdba 1530 {
8d08fdba 1531 /* Go from the TREE_BASELINK to the member function info. */
7304fcb4 1532 tree t = BASELINK_FUNCTIONS (member);
8d08fdba 1533
50ad9642 1534 if (TREE_CODE (t) != TEMPLATE_ID_EXPR && !really_overloaded_fn (t))
8d08fdba 1535 {
f4f206f4 1536 /* Get rid of a potential OVERLOAD around it. */
2c73f9f5
ML
1537 t = OVL_CURRENT (t);
1538
b54f5338
KL
1539 /* Unique functions are handled easily. */
1540
1541 /* For non-static member of base class, we need a special rule
1542 for access checking [class.protected]:
1543
1544 If the access is to form a pointer to member, the
1545 nested-name-specifier shall name the derived class
1546 (or any class derived from that class). */
1547 if (address_p && DECL_P (t)
1548 && DECL_NONSTATIC_MEMBER_P (t))
02022f3a 1549 perform_or_defer_access_check (TYPE_BINFO (type), t, t);
b54f5338 1550 else
02022f3a 1551 perform_or_defer_access_check (basebinfo, t, t);
b54f5338 1552
848b92e1
JM
1553 if (DECL_STATIC_FUNCTION_P (t))
1554 return t;
a5ac359a
MM
1555 member = t;
1556 }
1557 else
7304fcb4 1558 TREE_TYPE (member) = unknown_type_node;
8d08fdba 1559 }
b54f5338
KL
1560 else if (address_p && TREE_CODE (member) == FIELD_DECL)
1561 /* We need additional test besides the one in
1562 check_accessibility_of_qualified_id in case it is
1563 a pointer to non-static member. */
02022f3a 1564 perform_or_defer_access_check (TYPE_BINFO (type), member, member);
8d08fdba 1565
a5ac359a 1566 if (!address_p)
8d08fdba 1567 {
a5ac359a
MM
1568 /* If MEMBER is non-static, then the program has fallen afoul of
1569 [expr.prim]:
8d08fdba 1570
a5ac359a
MM
1571 An id-expression that denotes a nonstatic data member or
1572 nonstatic member function of a class can only be used:
8d08fdba 1573
a5ac359a
MM
1574 -- as part of a class member access (_expr.ref_) in which the
1575 object-expression refers to the member's class or a class
1576 derived from that class, or
b7484fbe 1577
a5ac359a
MM
1578 -- to form a pointer to member (_expr.unary.op_), or
1579
1580 -- in the body of a nonstatic member function of that class or
1581 of a class derived from that class (_class.mfct.nonstatic_), or
1582
1583 -- in a mem-initializer for a constructor for that class or for
1584 a class derived from that class (_class.base.init_). */
1585 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (member))
1586 {
39a13be5 1587 /* Build a representation of the qualified name suitable
e9525111
MM
1588 for use as the operand to "&" -- even though the "&" is
1589 not actually present. */
f293ce4b 1590 member = build2 (OFFSET_REF, TREE_TYPE (member), decl, member);
a5ac359a
MM
1591 /* In Microsoft mode, treat a non-static member function as if
1592 it were a pointer-to-member. */
1593 if (flag_ms_extensions)
1594 {
a5ac359a 1595 PTRMEM_OK_P (member) = 1;
5ade1ed2
DG
1596 return cp_build_unary_op (ADDR_EXPR, member, 0,
1597 tf_warning_or_error);
a5ac359a 1598 }
c8094d83 1599 error ("invalid use of non-static member function %qD",
e9525111 1600 TREE_OPERAND (member, 1));
07471dfb 1601 return error_mark_node;
a5ac359a
MM
1602 }
1603 else if (TREE_CODE (member) == FIELD_DECL)
1604 {
15a7ee29 1605 error ("invalid use of non-static data member %qD", member);
a5ac359a
MM
1606 return error_mark_node;
1607 }
1608 return member;
1609 }
8d08fdba 1610
f293ce4b 1611 member = build2 (OFFSET_REF, TREE_TYPE (member), decl, member);
8d245821
MM
1612 PTRMEM_OK_P (member) = 1;
1613 return member;
8d08fdba
MS
1614}
1615
393e756d
MM
1616/* If DECL is a scalar enumeration constant or variable with a
1617 constant initializer, return the initializer (or, its initializers,
1618 recursively); otherwise, return DECL. If INTEGRAL_P, the
1619 initializer is only returned if DECL is an integral
1620 constant-expression. */
8d08fdba 1621
393e756d
MM
1622static tree
1623constant_value_1 (tree decl, bool integral_p)
8d08fdba 1624{
f513e31f 1625 while (TREE_CODE (decl) == CONST_DECL
3db45ab5 1626 || (integral_p
393e756d
MM
1627 ? DECL_INTEGRAL_CONSTANT_VAR_P (decl)
1628 : (TREE_CODE (decl) == VAR_DECL
1629 && CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (decl)))))
b794e321
MM
1630 {
1631 tree init;
2d22db1f
MM
1632 /* Static data members in template classes may have
1633 non-dependent initializers. References to such non-static
d174af6c 1634 data members are not value-dependent, so we must retrieve the
2d22db1f
MM
1635 initializer here. The DECL_INITIAL will have the right type,
1636 but will not have been folded because that would prevent us
1637 from performing all appropriate semantic checks at
1638 instantiation time. */
1639 if (DECL_CLASS_SCOPE_P (decl)
1640 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
3db45ab5 1641 && uses_template_parms (CLASSTYPE_TI_ARGS
2d22db1f 1642 (DECL_CONTEXT (decl))))
d174af6c
MM
1643 {
1644 ++processing_template_decl;
1645 init = fold_non_dependent_expr (DECL_INITIAL (decl));
1646 --processing_template_decl;
1647 }
2d22db1f
MM
1648 else
1649 {
1650 /* If DECL is a static data member in a template
1651 specialization, we must instantiate it here. The
1652 initializer for the static data member is not processed
1653 until needed; we need it now. */
1654 mark_used (decl);
1655 init = DECL_INITIAL (decl);
1656 }
d174af6c 1657 if (init == error_mark_node)
1ac8104c 1658 return decl;
73ce7fcb
JJ
1659 /* Initializers in templates are generally expanded during
1660 instantiation, so before that for const int i(2)
1661 INIT is a TREE_LIST with the actual initializer as
1662 TREE_VALUE. */
1663 if (processing_template_decl
1664 && init
1665 && TREE_CODE (init) == TREE_LIST
1666 && TREE_CHAIN (init) == NULL_TREE)
1667 init = TREE_VALUE (init);
d174af6c 1668 if (!init
b794e321 1669 || !TREE_TYPE (init)
393e756d
MM
1670 || (integral_p
1671 ? !INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (init))
1672 : (!TREE_CONSTANT (init)
1673 /* Do not return an aggregate constant (of which
1674 string literals are a special case), as we do not
dd36d4e1 1675 want to make inadvertent copies of such entities,
393e756d
MM
1676 and we must be sure that their addresses are the
1677 same everywhere. */
1678 || TREE_CODE (init) == CONSTRUCTOR
1679 || TREE_CODE (init) == STRING_CST)))
b794e321 1680 break;
57b37fe3 1681 decl = unshare_expr (init);
b794e321 1682 }
8a784e4a
NS
1683 return decl;
1684}
a1652802 1685
393e756d
MM
1686/* If DECL is a CONST_DECL, or a constant VAR_DECL initialized by
1687 constant of integral or enumeration type, then return that value.
1688 These are those variables permitted in constant expressions by
1689 [5.19/1]. */
a1652802 1690
8a784e4a 1691tree
393e756d 1692integral_constant_value (tree decl)
8a784e4a 1693{
393e756d
MM
1694 return constant_value_1 (decl, /*integral_p=*/true);
1695}
c8094d83 1696
393e756d 1697/* A more relaxed version of integral_constant_value, used by the
3b426391 1698 common C/C++ code and by the C++ front end for optimization
393e756d
MM
1699 purposes. */
1700
1701tree
1702decl_constant_value (tree decl)
1703{
3db45ab5 1704 return constant_value_1 (decl,
393e756d 1705 /*integral_p=*/processing_template_decl);
8d08fdba
MS
1706}
1707\f
8d08fdba
MS
1708/* Common subroutines of build_new and build_vec_delete. */
1709
c787dd82 1710/* Call the global __builtin_delete to delete ADDR. */
8d08fdba 1711
bd6dd845 1712static tree
362efdc1 1713build_builtin_delete_call (tree addr)
8d08fdba 1714{
a6ecf8b6 1715 mark_used (global_delete_fndecl);
94a0dd7b 1716 return build_call_n (global_delete_fndecl, 1, addr);
8d08fdba
MS
1717}
1718\f
63c9a190
MM
1719/* Build and return a NEW_EXPR. If NELTS is non-NULL, TYPE[NELTS] is
1720 the type of the object being allocated; otherwise, it's just TYPE.
1721 INIT is the initializer, if any. USE_GLOBAL_NEW is true if the
1722 user explicitly wrote "::operator new". PLACEMENT, if non-NULL, is
c166b898
ILT
1723 a vector of arguments to be provided as arguments to a placement
1724 new operator. This routine performs no semantic checks; it just
1725 creates and returns a NEW_EXPR. */
a0d5fba7 1726
63c9a190 1727static tree
c166b898
ILT
1728build_raw_new_expr (VEC(tree,gc) *placement, tree type, tree nelts,
1729 VEC(tree,gc) *init, int use_global_new)
743f140d 1730{
c166b898 1731 tree init_list;
63c9a190 1732 tree new_expr;
3db45ab5 1733
c166b898
ILT
1734 /* If INIT is NULL, the we want to store NULL_TREE in the NEW_EXPR.
1735 If INIT is not NULL, then we want to store VOID_ZERO_NODE. This
1736 permits us to distinguish the case of a missing initializer "new
1737 int" from an empty initializer "new int()". */
1738 if (init == NULL)
1739 init_list = NULL_TREE;
1740 else if (VEC_empty (tree, init))
1741 init_list = void_zero_node;
1742 else
1743 init_list = build_tree_list_vec (init);
1744
1745 new_expr = build4 (NEW_EXPR, build_pointer_type (type),
1746 build_tree_list_vec (placement), type, nelts,
1747 init_list);
63c9a190
MM
1748 NEW_EXPR_USE_GLOBAL (new_expr) = use_global_new;
1749 TREE_SIDE_EFFECTS (new_expr) = 1;
1750
1751 return new_expr;
743f140d
PB
1752}
1753
63c9a190
MM
1754/* Generate code for a new-expression, including calling the "operator
1755 new" function, initializing the object, and, if an exception occurs
1756 during construction, cleaning up. The arguments are as for
c166b898 1757 build_raw_new_expr. This may change PLACEMENT and INIT. */
a0d5fba7 1758
834c6dff 1759static tree
c166b898
ILT
1760build_new_1 (VEC(tree,gc) **placement, tree type, tree nelts,
1761 VEC(tree,gc) **init, bool globally_qualified_p,
1762 tsubst_flags_t complain)
a0d5fba7 1763{
d746e87d
MM
1764 tree size, rval;
1765 /* True iff this is a call to "operator new[]" instead of just
c8094d83 1766 "operator new". */
d746e87d 1767 bool array_p = false;
9207099b
JM
1768 /* If ARRAY_P is true, the element type of the array. This is never
1769 an ARRAY_TYPE; for something like "new int[3][4]", the
d746e87d 1770 ELT_TYPE is "int". If ARRAY_P is false, this is the same type as
9207099b 1771 TYPE. */
d746e87d 1772 tree elt_type;
f4f4610e
MM
1773 /* The type of the new-expression. (This type is always a pointer
1774 type.) */
1775 tree pointer_type;
25357d1e 1776 tree non_const_pointer_type;
a48cccea 1777 tree outer_nelts = NULL_TREE;
f4f4610e
MM
1778 tree alloc_call, alloc_expr;
1779 /* The address returned by the call to "operator new". This node is
1780 a VAR_DECL and is therefore reusable. */
1781 tree alloc_node;
46ff5047 1782 tree alloc_fn;
8b5e2ce4 1783 tree cookie_expr, init_expr;
089d6ea7 1784 int nothrow, check_new;
743f140d 1785 int use_java_new = 0;
834c6dff
MM
1786 /* If non-NULL, the number of extra bytes to allocate at the
1787 beginning of the storage allocated for an array-new expression in
1788 order to store the number of elements. */
1789 tree cookie_size = NULL_TREE;
c166b898 1790 tree placement_first;
a9de800a 1791 tree placement_expr = NULL_TREE;
3f41ffd8
MM
1792 /* True if the function we are calling is a placement allocation
1793 function. */
1794 bool placement_allocation_fn_p;
f4f4610e 1795 /* True if the storage must be initialized, either by a constructor
34cd5ae7 1796 or due to an explicit new-initializer. */
f4f4610e
MM
1797 bool is_initialized;
1798 /* The address of the thing allocated, not including any cookie. In
1799 particular, if an array cookie is in use, DATA_ADDR is the
1800 address of the first array element. This node is a VAR_DECL, and
1801 is therefore reusable. */
1802 tree data_addr;
6de9cd9a 1803 tree init_preeval_expr = NULL_TREE;
a0d5fba7 1804
058b15c1 1805 if (nelts)
a0d5fba7 1806 {
058b15c1 1807 outer_nelts = nelts;
d746e87d 1808 array_p = true;
a0d5fba7 1809 }
9207099b 1810 else if (TREE_CODE (type) == ARRAY_TYPE)
d746e87d 1811 {
9207099b
JM
1812 array_p = true;
1813 nelts = array_type_nelts_top (type);
1814 outer_nelts = nelts;
1815 type = TREE_TYPE (type);
d746e87d 1816 }
834c6dff 1817
8d08fdba
MS
1818 /* If our base type is an array, then make sure we know how many elements
1819 it has. */
d746e87d
MM
1820 for (elt_type = type;
1821 TREE_CODE (elt_type) == ARRAY_TYPE;
1822 elt_type = TREE_TYPE (elt_type))
ba47d38d
AH
1823 nelts = cp_build_binary_op (input_location,
1824 MULT_EXPR, nelts,
5ade1ed2
DG
1825 array_type_nelts_top (elt_type),
1826 complain);
5566b478 1827
d746e87d 1828 if (TREE_CODE (elt_type) == VOID_TYPE)
e1cd6e56 1829 {
5ade1ed2
DG
1830 if (complain & tf_error)
1831 error ("invalid type %<void%> for new");
e1cd6e56
MS
1832 return error_mark_node;
1833 }
1834
d746e87d 1835 if (abstract_virtuals_error (NULL_TREE, elt_type))
a7a64a77 1836 return error_mark_node;
8926095f 1837
c166b898 1838 is_initialized = (TYPE_NEEDS_CONSTRUCTING (elt_type) || *init != NULL);
b87d79e6 1839
c166b898 1840 if (CP_TYPE_CONST_P (elt_type) && *init == NULL
b87d79e6 1841 && !type_has_user_provided_default_constructor (elt_type))
f4f4610e 1842 {
5ade1ed2
DG
1843 if (complain & tf_error)
1844 error ("uninitialized const in %<new%> of %q#T", elt_type);
f4f4610e
MM
1845 return error_mark_node;
1846 }
1847
d746e87d
MM
1848 size = size_in_bytes (elt_type);
1849 if (array_p)
9207099b 1850 size = size_binop (MULT_EXPR, size, convert (sizetype, nelts));
a28e3c7f 1851
63c9a190
MM
1852 alloc_fn = NULL_TREE;
1853
c166b898
ILT
1854 /* If PLACEMENT is a single simple pointer type not passed by
1855 reference, prepare to capture it in a temporary variable. Do
1856 this now, since PLACEMENT will change in the calls below. */
c166b898
ILT
1857 placement_first = NULL_TREE;
1858 if (VEC_length (tree, *placement) == 1
1859 && (TREE_CODE (TREE_TYPE (VEC_index (tree, *placement, 0)))
1860 == POINTER_TYPE))
1861 placement_first = VEC_index (tree, *placement, 0);
1862
e92cc029 1863 /* Allocate the object. */
c166b898 1864 if (VEC_empty (tree, *placement) && TYPE_FOR_JAVA (elt_type))
743f140d 1865 {
63c9a190 1866 tree class_addr;
d746e87d 1867 tree class_decl = build_java_class_ref (elt_type);
8b60264b 1868 static const char alloc_name[] = "_Jv_AllocObject";
6de9cd9a 1869
a3d536f1
VR
1870 if (class_decl == error_mark_node)
1871 return error_mark_node;
1872
743f140d 1873 use_java_new = 1;
c8094d83 1874 if (!get_global_value_if_present (get_identifier (alloc_name),
63c9a190 1875 &alloc_fn))
b1e5b86c 1876 {
5ade1ed2
DG
1877 if (complain & tf_error)
1878 error ("call to Java constructor with %qs undefined", alloc_name);
6961a592
GB
1879 return error_mark_node;
1880 }
63c9a190 1881 else if (really_overloaded_fn (alloc_fn))
b1e5b86c 1882 {
5ade1ed2
DG
1883 if (complain & tf_error)
1884 error ("%qD should never be overloaded", alloc_fn);
6961a592
GB
1885 return error_mark_node;
1886 }
63c9a190 1887 alloc_fn = OVL_CURRENT (alloc_fn);
743f140d 1888 class_addr = build1 (ADDR_EXPR, jclass_node, class_decl);
5ade1ed2 1889 alloc_call = (cp_build_function_call
63c9a190 1890 (alloc_fn,
5ade1ed2
DG
1891 build_tree_list (NULL_TREE, class_addr),
1892 complain));
743f140d 1893 }
9e1e64ec 1894 else if (TYPE_FOR_JAVA (elt_type) && MAYBE_CLASS_TYPE_P (elt_type))
360f866c
JJ
1895 {
1896 error ("Java class %q#T object allocated using placement new", elt_type);
1897 return error_mark_node;
1898 }
8d08fdba
MS
1899 else
1900 {
834c6dff 1901 tree fnname;
9f880ef9 1902 tree fns;
834c6dff 1903
d746e87d 1904 fnname = ansi_opname (array_p ? VEC_NEW_EXPR : NEW_EXPR);
834c6dff 1905
c8094d83 1906 if (!globally_qualified_p
d746e87d
MM
1907 && CLASS_TYPE_P (elt_type)
1908 && (array_p
1909 ? TYPE_HAS_ARRAY_NEW_OPERATOR (elt_type)
1910 : TYPE_HAS_NEW_OPERATOR (elt_type)))
089d6ea7
MM
1911 {
1912 /* Use a class-specific operator new. */
1913 /* If a cookie is required, add some extra space. */
d746e87d 1914 if (array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type))
089d6ea7 1915 {
d746e87d 1916 cookie_size = targetm.cxx.get_cookie_size (elt_type);
089d6ea7
MM
1917 size = size_binop (PLUS_EXPR, size, cookie_size);
1918 }
1919 /* Create the argument list. */
c166b898 1920 VEC_safe_insert (tree, gc, *placement, 0, size);
9f880ef9 1921 /* Do name-lookup to find the appropriate operator. */
d746e87d 1922 fns = lookup_fnfields (elt_type, fnname, /*protect=*/2);
a85cb0d7
VR
1923 if (fns == NULL_TREE)
1924 {
5ade1ed2
DG
1925 if (complain & tf_error)
1926 error ("no suitable %qD found in class %qT", fnname, elt_type);
a85cb0d7
VR
1927 return error_mark_node;
1928 }
9f880ef9
MM
1929 if (TREE_CODE (fns) == TREE_LIST)
1930 {
5ade1ed2
DG
1931 if (complain & tf_error)
1932 {
1933 error ("request for member %qD is ambiguous", fnname);
1934 print_candidates (fns);
1935 }
9f880ef9
MM
1936 return error_mark_node;
1937 }
d746e87d 1938 alloc_call = build_new_method_call (build_dummy_object (elt_type),
c166b898 1939 fns, placement,
9f880ef9 1940 /*conversion_path=*/NULL_TREE,
63c9a190 1941 LOOKUP_NORMAL,
5ade1ed2
DG
1942 &alloc_fn,
1943 complain);
089d6ea7 1944 }
834c6dff 1945 else
089d6ea7
MM
1946 {
1947 /* Use a global operator new. */
125e6594 1948 /* See if a cookie might be required. */
d746e87d
MM
1949 if (array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type))
1950 cookie_size = targetm.cxx.get_cookie_size (elt_type);
125e6594
MM
1951 else
1952 cookie_size = NULL_TREE;
1953
c8094d83 1954 alloc_call = build_operator_new_call (fnname, placement,
63c9a190
MM
1955 &size, &cookie_size,
1956 &alloc_fn);
089d6ea7 1957 }
8d08fdba
MS
1958 }
1959
96790071 1960 if (alloc_call == error_mark_node)
2bb5d995
JM
1961 return error_mark_node;
1962
63c9a190
MM
1963 gcc_assert (alloc_fn != NULL_TREE);
1964
c166b898
ILT
1965 /* If we found a simple case of PLACEMENT_EXPR above, then copy it
1966 into a temporary variable. */
a9de800a 1967 if (!processing_template_decl
c166b898 1968 && placement_first != NULL_TREE
a9de800a
JJ
1969 && TREE_CODE (alloc_call) == CALL_EXPR
1970 && call_expr_nargs (alloc_call) == 2
1971 && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 0))) == INTEGER_TYPE
1972 && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 1))) == POINTER_TYPE)
1973 {
1974 tree placement_arg = CALL_EXPR_ARG (alloc_call, 1);
1975
550a799d 1976 if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (TREE_TYPE (placement_arg)))
a9de800a
JJ
1977 || VOID_TYPE_P (TREE_TYPE (TREE_TYPE (placement_arg))))
1978 {
c166b898 1979 placement_expr = get_target_expr (placement_first);
a9de800a
JJ
1980 CALL_EXPR_ARG (alloc_call, 1)
1981 = convert (TREE_TYPE (placement_arg), placement_expr);
1982 }
1983 }
1984
a6111661
JM
1985 /* In the simple case, we can stop now. */
1986 pointer_type = build_pointer_type (type);
1987 if (!cookie_size && !is_initialized)
4d7a65ea 1988 return build_nop (pointer_type, alloc_call);
a6111661 1989
10ee5386
JM
1990 /* Store the result of the allocation call in a variable so that we can
1991 use it more than once. */
1992 alloc_expr = get_target_expr (alloc_call);
a6111661
JM
1993 alloc_node = TARGET_EXPR_SLOT (alloc_expr);
1994
1995 /* Strip any COMPOUND_EXPRs from ALLOC_CALL. */
c8094d83 1996 while (TREE_CODE (alloc_call) == COMPOUND_EXPR)
a6111661 1997 alloc_call = TREE_OPERAND (alloc_call, 1);
089d6ea7 1998
3f41ffd8
MM
1999 /* Now, check to see if this function is actually a placement
2000 allocation function. This can happen even when PLACEMENT is NULL
2001 because we might have something like:
2002
2003 struct S { void* operator new (size_t, int i = 0); };
2004
2005 A call to `new S' will get this allocation function, even though
2006 there is no explicit placement argument. If there is more than
2007 one argument, or there are variable arguments, then this is a
2008 placement allocation function. */
c8094d83
MS
2009 placement_allocation_fn_p
2010 = (type_num_arguments (TREE_TYPE (alloc_fn)) > 1
46ff5047 2011 || varargs_function_p (alloc_fn));
96790071 2012
a6111661
JM
2013 /* Preevaluate the placement args so that we don't reevaluate them for a
2014 placement delete. */
2015 if (placement_allocation_fn_p)
2016 {
6de9cd9a
DN
2017 tree inits;
2018 stabilize_call (alloc_call, &inits);
a6111661 2019 if (inits)
f293ce4b
RS
2020 alloc_expr = build2 (COMPOUND_EXPR, TREE_TYPE (alloc_expr), inits,
2021 alloc_expr);
a6111661
JM
2022 }
2023
047f64a3
JM
2024 /* unless an allocation function is declared with an empty excep-
2025 tion-specification (_except.spec_), throw(), it indicates failure to
2026 allocate storage by throwing a bad_alloc exception (clause _except_,
2027 _lib.bad.alloc_); it returns a non-null pointer otherwise If the allo-
2028 cation function is declared with an empty exception-specification,
2029 throw(), it returns null to indicate failure to allocate storage and a
2030 non-null pointer otherwise.
2031
2032 So check for a null exception spec on the op new we just called. */
2033
46ff5047 2034 nothrow = TYPE_NOTHROW_P (TREE_TYPE (alloc_fn));
743f140d 2035 check_new = (flag_check_new || nothrow) && ! use_java_new;
047f64a3 2036
089d6ea7 2037 if (cookie_size)
8d08fdba 2038 {
96790071 2039 tree cookie;
46e995e0 2040 tree cookie_ptr;
b5119fa1 2041 tree size_ptr_type;
f4f4610e
MM
2042
2043 /* Adjust so we're pointing to the start of the object. */
10ee5386
JM
2044 data_addr = build2 (POINTER_PLUS_EXPR, TREE_TYPE (alloc_node),
2045 alloc_node, cookie_size);
96790071 2046
834c6dff 2047 /* Store the number of bytes allocated so that we can know how
3461fba7
NS
2048 many elements to destroy later. We use the last sizeof
2049 (size_t) bytes to store the number of elements. */
10ee5386
JM
2050 cookie_ptr = size_binop (MINUS_EXPR, cookie_size, size_in_bytes (sizetype));
2051 cookie_ptr = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (alloc_node),
2052 alloc_node, cookie_ptr);
b5119fa1 2053 size_ptr_type = build_pointer_type (sizetype);
10ee5386 2054 cookie_ptr = fold_convert (size_ptr_type, cookie_ptr);
5ade1ed2 2055 cookie = cp_build_indirect_ref (cookie_ptr, NULL, complain);
1f84ec23 2056
f293ce4b 2057 cookie_expr = build2 (MODIFY_EXPR, sizetype, cookie, nelts);
46e995e0
PB
2058
2059 if (targetm.cxx.cookie_has_size ())
2060 {
2061 /* Also store the element size. */
b2ec1738
DD
2062 cookie_ptr = build2 (POINTER_PLUS_EXPR, size_ptr_type, cookie_ptr,
2063 fold_build1 (NEGATE_EXPR, sizetype,
2064 size_in_bytes (sizetype)));
2065
5ade1ed2 2066 cookie = cp_build_indirect_ref (cookie_ptr, NULL, complain);
f293ce4b 2067 cookie = build2 (MODIFY_EXPR, sizetype, cookie,
10ee5386 2068 size_in_bytes (elt_type));
f293ce4b
RS
2069 cookie_expr = build2 (COMPOUND_EXPR, TREE_TYPE (cookie_expr),
2070 cookie, cookie_expr);
46e995e0 2071 }
8d08fdba 2072 }
96790071 2073 else
8b5e2ce4
JM
2074 {
2075 cookie_expr = NULL_TREE;
2076 data_addr = alloc_node;
2077 }
8d08fdba 2078
10ee5386 2079 /* Now use a pointer to the type we've actually allocated. */
25357d1e
JM
2080
2081 /* But we want to operate on a non-const version to start with,
2082 since we'll be modifying the elements. */
2083 non_const_pointer_type = build_pointer_type
2084 (cp_build_qualified_type (type, TYPE_QUALS (type) & ~TYPE_QUAL_CONST));
2085
2086 data_addr = fold_convert (non_const_pointer_type, data_addr);
9207099b 2087 /* Any further uses of alloc_node will want this type, too. */
25357d1e 2088 alloc_node = fold_convert (non_const_pointer_type, alloc_node);
10ee5386 2089
6de9cd9a
DN
2090 /* Now initialize the allocated object. Note that we preevaluate the
2091 initialization expression, apart from the actual constructor call or
2092 assignment--we do this because we want to delay the allocation as long
2093 as possible in order to minimize the size of the exception region for
2094 placement delete. */
f4f4610e 2095 if (is_initialized)
8d08fdba 2096 {
6de9cd9a 2097 bool stable;
844ae01d 2098 bool explicit_value_init_p = false;
6de9cd9a 2099
c166b898 2100 if (*init != NULL && VEC_empty (tree, *init))
6de9cd9a 2101 {
c166b898 2102 *init = NULL;
844ae01d
JM
2103 explicit_value_init_p = true;
2104 }
b84f4651 2105
844ae01d
JM
2106 if (array_p)
2107 {
25357d1e
JM
2108 tree vecinit = NULL_TREE;
2109 if (*init && VEC_length (tree, *init) == 1
2110 && BRACE_ENCLOSED_INITIALIZER_P (VEC_index (tree, *init, 0))
2111 && CONSTRUCTOR_IS_DIRECT_INIT (VEC_index (tree, *init, 0)))
2112 {
2113 tree arraytype, domain;
2114 vecinit = VEC_index (tree, *init, 0);
2115 if (TREE_CONSTANT (nelts))
2116 domain = compute_array_index_type (NULL_TREE, nelts);
2117 else
2118 {
2119 domain = NULL_TREE;
2120 if (CONSTRUCTOR_NELTS (vecinit) > 0)
2121 warning (0, "non-constant array size in new, unable to "
2122 "verify length of initializer-list");
2123 }
2124 arraytype = build_cplus_array_type (type, domain);
2125 vecinit = digest_init (arraytype, vecinit);
2126 }
2127 else if (*init)
5ade1ed2
DG
2128 {
2129 if (complain & tf_error)
cbe5f3b3 2130 permerror (input_location, "ISO C++ forbids initialization in array new");
5ade1ed2
DG
2131 else
2132 return error_mark_node;
25357d1e 2133 vecinit = build_tree_list_vec (*init);
5ade1ed2 2134 }
6de9cd9a 2135 init_expr
9207099b 2136 = build_vec_init (data_addr,
ba47d38d
AH
2137 cp_build_binary_op (input_location,
2138 MINUS_EXPR, outer_nelts,
5ade1ed2
DG
2139 integer_one_node,
2140 complain),
25357d1e 2141 vecinit,
844ae01d 2142 explicit_value_init_p,
5ade1ed2
DG
2143 /*from_array=*/0,
2144 complain);
6de9cd9a
DN
2145
2146 /* An array initialization is stable because the initialization
2147 of each element is a full-expression, so the temporaries don't
2148 leak out. */
2149 stable = true;
2150 }
f30efcb7 2151 else
8d08fdba 2152 {
9207099b
JM
2153 init_expr = cp_build_indirect_ref (data_addr, NULL, complain);
2154
844ae01d 2155 if (TYPE_NEEDS_CONSTRUCTING (type) && !explicit_value_init_p)
b84f4651
MM
2156 {
2157 init_expr = build_special_member_call (init_expr,
2158 complete_ctor_identifier,
2159 init, elt_type,
5ade1ed2
DG
2160 LOOKUP_NORMAL,
2161 complain);
844ae01d
JM
2162 }
2163 else if (explicit_value_init_p)
2164 {
2165 /* Something like `new int()'. */
9207099b
JM
2166 init_expr = build2 (INIT_EXPR, type,
2167 init_expr, build_value_init (type));
b84f4651 2168 }
8dc2b103 2169 else
b84f4651 2170 {
c166b898
ILT
2171 tree ie;
2172
b84f4651
MM
2173 /* We are processing something like `new int (10)', which
2174 means allocate an int, and initialize it with 10. */
3db45ab5 2175
c166b898
ILT
2176 ie = build_x_compound_expr_from_vec (*init, "new initializer");
2177 init_expr = cp_build_modify_expr (init_expr, INIT_EXPR, ie,
5ade1ed2 2178 complain);
b84f4651 2179 }
844ae01d 2180 stable = stabilize_init (init_expr, &init_preeval_expr);
96790071
JM
2181 }
2182
2183 if (init_expr == error_mark_node)
2184 return error_mark_node;
1f109f0f 2185
20c39572
JM
2186 /* If any part of the object initialization terminates by throwing an
2187 exception and a suitable deallocation function can be found, the
2188 deallocation function is called to free the memory in which the
2189 object was being constructed, after which the exception continues
2190 to propagate in the context of the new-expression. If no
2191 unambiguous matching deallocation function can be found,
2192 propagating the exception does not cause the object's memory to be
2193 freed. */
96790071 2194 if (flag_exceptions && ! use_java_new)
1f109f0f 2195 {
d746e87d 2196 enum tree_code dcode = array_p ? VEC_DELETE_EXPR : DELETE_EXPR;
96790071 2197 tree cleanup;
a7d87521 2198
5355deec 2199 /* The Standard is unclear here, but the right thing to do
f4f4610e
MM
2200 is to use the same method for finding deallocation
2201 functions that we use for finding allocation functions. */
10ee5386
JM
2202 cleanup = (build_op_delete_call
2203 (dcode,
9207099b 2204 alloc_node,
10ee5386
JM
2205 size,
2206 globally_qualified_p,
2207 placement_allocation_fn_p ? alloc_call : NULL_TREE,
2208 alloc_fn));
2bb14213 2209
6de9cd9a
DN
2210 if (!cleanup)
2211 /* We're done. */;
2212 else if (stable)
2213 /* This is much simpler if we were able to preevaluate all of
2214 the arguments to the constructor call. */
d665b6e5
MLI
2215 {
2216 /* CLEANUP is compiler-generated, so no diagnostics. */
2217 TREE_NO_WARNING (cleanup) = true;
2218 init_expr = build2 (TRY_CATCH_EXPR, void_type_node,
2219 init_expr, cleanup);
2220 /* Likewise, this try-catch is compiler-generated. */
2221 TREE_NO_WARNING (init_expr) = true;
2222 }
6de9cd9a
DN
2223 else
2224 /* Ack! First we allocate the memory. Then we set our sentry
2225 variable to true, and expand a cleanup that deletes the
2226 memory if sentry is true. Then we run the constructor, and
2227 finally clear the sentry.
2228
2229 We need to do this because we allocate the space first, so
2230 if there are any temporaries with cleanups in the
2231 constructor args and we weren't able to preevaluate them, we
2232 need this EH region to extend until end of full-expression
2233 to preserve nesting. */
da4768fe 2234 {
96790071 2235 tree end, sentry, begin;
2face519
JM
2236
2237 begin = get_target_expr (boolean_true_node);
659e5a7a 2238 CLEANUP_EH_ONLY (begin) = 1;
2face519 2239
659e5a7a
JM
2240 sentry = TARGET_EXPR_SLOT (begin);
2241
d665b6e5
MLI
2242 /* CLEANUP is compiler-generated, so no diagnostics. */
2243 TREE_NO_WARNING (cleanup) = true;
2244
659e5a7a 2245 TARGET_EXPR_CLEANUP (begin)
f293ce4b
RS
2246 = build3 (COND_EXPR, void_type_node, sentry,
2247 cleanup, void_zero_node);
2face519 2248
f293ce4b
RS
2249 end = build2 (MODIFY_EXPR, TREE_TYPE (sentry),
2250 sentry, boolean_false_node);
2face519 2251
96790071 2252 init_expr
f293ce4b
RS
2253 = build2 (COMPOUND_EXPR, void_type_node, begin,
2254 build2 (COMPOUND_EXPR, void_type_node, init_expr,
2255 end));
d665b6e5
MLI
2256 /* Likewise, this is compiler-generated. */
2257 TREE_NO_WARNING (init_expr) = true;
da4768fe 2258 }
1f109f0f 2259 }
f4f4610e 2260 }
8b5e2ce4
JM
2261 else
2262 init_expr = NULL_TREE;
2263
2264 /* Now build up the return value in reverse order. */
96790071 2265
8b5e2ce4 2266 rval = data_addr;
2face519 2267
8b5e2ce4 2268 if (init_expr)
f293ce4b 2269 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), init_expr, rval);
8b5e2ce4 2270 if (cookie_expr)
f293ce4b 2271 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), cookie_expr, rval);
8b5e2ce4 2272
10ee5386 2273 if (rval == data_addr)
8b5e2ce4
JM
2274 /* If we don't have an initializer or a cookie, strip the TARGET_EXPR
2275 and return the call (which doesn't need to be adjusted). */
2276 rval = TARGET_EXPR_INITIAL (alloc_expr);
2277 else
d18c083e 2278 {
8b5e2ce4
JM
2279 if (check_new)
2280 {
ba47d38d
AH
2281 tree ifexp = cp_build_binary_op (input_location,
2282 NE_EXPR, alloc_node,
5ade1ed2
DG
2283 integer_zero_node,
2284 complain);
2285 rval = build_conditional_expr (ifexp, rval, alloc_node,
2286 complain);
8b5e2ce4 2287 }
d18c083e 2288
8b5e2ce4
JM
2289 /* Perform the allocation before anything else, so that ALLOC_NODE
2290 has been initialized before we start using it. */
f293ce4b 2291 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), alloc_expr, rval);
8b5e2ce4 2292 }
51c184be 2293
6de9cd9a 2294 if (init_preeval_expr)
f293ce4b 2295 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), init_preeval_expr, rval);
6de9cd9a 2296
d04a575f 2297 /* A new-expression is never an lvalue. */
41990f96 2298 gcc_assert (!lvalue_p (rval));
058dcc25 2299
25357d1e 2300 return convert (pointer_type, rval);
8d08fdba 2301}
63c9a190 2302
c166b898
ILT
2303/* Generate a representation for a C++ "new" expression. *PLACEMENT
2304 is a vector of placement-new arguments (or NULL if none). If NELTS
2305 is NULL, TYPE is the type of the storage to be allocated. If NELTS
2306 is not NULL, then this is an array-new allocation; TYPE is the type
2307 of the elements in the array and NELTS is the number of elements in
2308 the array. *INIT, if non-NULL, is the initializer for the new
2309 object, or an empty vector to indicate an initializer of "()". If
2310 USE_GLOBAL_NEW is true, then the user explicitly wrote "::new"
2311 rather than just "new". This may change PLACEMENT and INIT. */
63c9a190
MM
2312
2313tree
c166b898
ILT
2314build_new (VEC(tree,gc) **placement, tree type, tree nelts,
2315 VEC(tree,gc) **init, int use_global_new, tsubst_flags_t complain)
63c9a190
MM
2316{
2317 tree rval;
c166b898
ILT
2318 VEC(tree,gc) *orig_placement = NULL;
2319 tree orig_nelts = NULL_TREE;
2320 VEC(tree,gc) *orig_init = NULL;
63c9a190 2321
c166b898 2322 if (type == error_mark_node)
63c9a190
MM
2323 return error_mark_node;
2324
c166b898 2325 if (nelts == NULL_TREE && VEC_length (tree, *init) == 1)
86a09a9e
JM
2326 {
2327 tree auto_node = type_uses_auto (type);
c166b898
ILT
2328 if (auto_node && describable_type (VEC_index (tree, *init, 0)))
2329 type = do_auto_deduction (type, VEC_index (tree, *init, 0), auto_node);
86a09a9e
JM
2330 }
2331
63c9a190
MM
2332 if (processing_template_decl)
2333 {
2334 if (dependent_type_p (type)
c166b898 2335 || any_type_dependent_arguments_p (*placement)
63c9a190 2336 || (nelts && type_dependent_expression_p (nelts))
c166b898
ILT
2337 || any_type_dependent_arguments_p (*init))
2338 return build_raw_new_expr (*placement, type, nelts, *init,
63c9a190 2339 use_global_new);
c166b898
ILT
2340
2341 orig_placement = make_tree_vector_copy (*placement);
2342 orig_nelts = nelts;
2343 orig_init = make_tree_vector_copy (*init);
2344
2345 make_args_non_dependent (*placement);
63c9a190
MM
2346 if (nelts)
2347 nelts = build_non_dependent_expr (nelts);
c166b898 2348 make_args_non_dependent (*init);
63c9a190
MM
2349 }
2350
2351 if (nelts)
2352 {
2353 if (!build_expr_type_conversion (WANT_INT | WANT_ENUM, nelts, false))
5ade1ed2
DG
2354 {
2355 if (complain & tf_error)
cbe5f3b3 2356 permerror (input_location, "size in array new must have integral type");
5ade1ed2
DG
2357 else
2358 return error_mark_node;
2359 }
b655f214 2360 nelts = cp_save_expr (cp_convert (sizetype, nelts));
63c9a190
MM
2361 }
2362
2363 /* ``A reference cannot be created by the new operator. A reference
2364 is not an object (8.2.2, 8.4.3), so a pointer to it could not be
2365 returned by new.'' ARM 5.3.3 */
2366 if (TREE_CODE (type) == REFERENCE_TYPE)
2367 {
5ade1ed2
DG
2368 if (complain & tf_error)
2369 error ("new cannot be applied to a reference type");
2370 else
2371 return error_mark_node;
63c9a190
MM
2372 type = TREE_TYPE (type);
2373 }
2374
2375 if (TREE_CODE (type) == FUNCTION_TYPE)
2376 {
5ade1ed2
DG
2377 if (complain & tf_error)
2378 error ("new cannot be applied to a function type");
63c9a190
MM
2379 return error_mark_node;
2380 }
2381
57ccb546
MM
2382 /* The type allocated must be complete. If the new-type-id was
2383 "T[N]" then we are just checking that "T" is complete here, but
2384 that is equivalent, since the value of "N" doesn't matter. */
39fb9d72
DB
2385 if (!complete_type_or_else (type, NULL_TREE))
2386 return error_mark_node;
2387
5ade1ed2 2388 rval = build_new_1 (placement, type, nelts, init, use_global_new, complain);
63c9a190
MM
2389 if (rval == error_mark_node)
2390 return error_mark_node;
2391
2392 if (processing_template_decl)
c166b898
ILT
2393 {
2394 tree ret = build_raw_new_expr (orig_placement, type, orig_nelts,
2395 orig_init, use_global_new);
2396 release_tree_vector (orig_placement);
2397 release_tree_vector (orig_init);
2398 return ret;
2399 }
63c9a190
MM
2400
2401 /* Wrap it in a NOP_EXPR so warn_if_unused_value doesn't complain. */
2402 rval = build1 (NOP_EXPR, TREE_TYPE (rval), rval);
2403 TREE_NO_WARNING (rval) = 1;
2404
2405 return rval;
2406}
2407
2408/* Given a Java class, return a decl for the corresponding java.lang.Class. */
2409
2410tree
2411build_java_class_ref (tree type)
2412{
2413 tree name = NULL_TREE, class_decl;
2414 static tree CL_suffix = NULL_TREE;
2415 if (CL_suffix == NULL_TREE)
2416 CL_suffix = get_identifier("class$");
2417 if (jclass_node == NULL_TREE)
2418 {
2419 jclass_node = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
2420 if (jclass_node == NULL_TREE)
a3d536f1
VR
2421 {
2422 error ("call to Java constructor, while %<jclass%> undefined");
2423 return error_mark_node;
2424 }
63c9a190
MM
2425 jclass_node = TREE_TYPE (jclass_node);
2426 }
2427
2428 /* Mangle the class$ field. */
2429 {
2430 tree field;
2431 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
2432 if (DECL_NAME (field) == CL_suffix)
2433 {
2434 mangle_decl (field);
2435 name = DECL_ASSEMBLER_NAME (field);
2436 break;
2437 }
2438 if (!field)
a3d536f1
VR
2439 {
2440 error ("can't find %<class$%> in %qT", type);
2441 return error_mark_node;
2442 }
2443 }
63c9a190
MM
2444
2445 class_decl = IDENTIFIER_GLOBAL_VALUE (name);
2446 if (class_decl == NULL_TREE)
2447 {
c2255bc4
AH
2448 class_decl = build_decl (input_location,
2449 VAR_DECL, name, TREE_TYPE (jclass_node));
63c9a190
MM
2450 TREE_STATIC (class_decl) = 1;
2451 DECL_EXTERNAL (class_decl) = 1;
2452 TREE_PUBLIC (class_decl) = 1;
2453 DECL_ARTIFICIAL (class_decl) = 1;
2454 DECL_IGNORED_P (class_decl) = 1;
2455 pushdecl_top_level (class_decl);
2456 make_decl_rtl (class_decl);
2457 }
2458 return class_decl;
2459}
8d08fdba 2460\f
f30432d7 2461static tree
362efdc1
NN
2462build_vec_delete_1 (tree base, tree maxindex, tree type,
2463 special_function_kind auto_delete_vec, int use_global_delete)
f30432d7
MS
2464{
2465 tree virtual_size;
e92cc029 2466 tree ptype = build_pointer_type (type = complete_type (type));
f30432d7
MS
2467 tree size_exp = size_in_bytes (type);
2468
2469 /* Temporary variables used by the loop. */
2470 tree tbase, tbase_init;
2471
2472 /* This is the body of the loop that implements the deletion of a
2473 single element, and moves temp variables to next elements. */
2474 tree body;
2475
2476 /* This is the LOOP_EXPR that governs the deletion of the elements. */
c7b62f14 2477 tree loop = 0;
f30432d7
MS
2478
2479 /* This is the thing that governs what to do after the loop has run. */
2480 tree deallocate_expr = 0;
2481
2482 /* This is the BIND_EXPR which holds the outermost iterator of the
2483 loop. It is convenient to set this variable up and test it before
2484 executing any other code in the loop.
2485 This is also the containing expression returned by this function. */
2486 tree controller = NULL_TREE;
5be014d5 2487 tree tmp;
f30432d7 2488
b2153b98 2489 /* We should only have 1-D arrays here. */
8dc2b103 2490 gcc_assert (TREE_CODE (type) != ARRAY_TYPE);
b2153b98 2491
9e1e64ec 2492 if (! MAYBE_CLASS_TYPE_P (type) || TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
c7b62f14 2493 goto no_destructor;
f30432d7 2494
708cae97 2495 /* The below is short by the cookie size. */
fed3cef0
RK
2496 virtual_size = size_binop (MULT_EXPR, size_exp,
2497 convert (sizetype, maxindex));
f30432d7 2498
46e8c075 2499 tbase = create_temporary_var (ptype);
5ade1ed2
DG
2500 tbase_init = cp_build_modify_expr (tbase, NOP_EXPR,
2501 fold_build2 (POINTER_PLUS_EXPR, ptype,
2502 fold_convert (ptype, base),
2503 virtual_size),
2504 tf_warning_or_error);
f30432d7 2505 DECL_REGISTER (tbase) = 1;
f293ce4b
RS
2506 controller = build3 (BIND_EXPR, void_type_node, tbase,
2507 NULL_TREE, NULL_TREE);
f30432d7 2508 TREE_SIDE_EFFECTS (controller) = 1;
f30432d7 2509
f293ce4b 2510 body = build1 (EXIT_EXPR, void_type_node,
5cd88d68
RS
2511 build2 (EQ_EXPR, boolean_type_node, tbase,
2512 fold_convert (ptype, base)));
5be014d5 2513 tmp = fold_build1 (NEGATE_EXPR, sizetype, size_exp);
c7b62f14 2514 body = build_compound_expr
c2255bc4
AH
2515 (input_location,
2516 body, cp_build_modify_expr (tbase, NOP_EXPR,
5ade1ed2 2517 build2 (POINTER_PLUS_EXPR, ptype, tbase, tmp),
525521b6 2518 tf_warning_or_error));
c7b62f14 2519 body = build_compound_expr
c2255bc4
AH
2520 (input_location,
2521 body, build_delete (ptype, tbase, sfk_complete_destructor,
525521b6 2522 LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 1));
f30432d7 2523
f293ce4b 2524 loop = build1 (LOOP_EXPR, void_type_node, body);
c2255bc4 2525 loop = build_compound_expr (input_location, tbase_init, loop);
f30432d7
MS
2526
2527 no_destructor:
2528 /* If the delete flag is one, or anything else with the low bit set,
2529 delete the storage. */
86f45d2c 2530 if (auto_delete_vec != sfk_base_destructor)
f30432d7
MS
2531 {
2532 tree base_tbd;
2533
708cae97 2534 /* The below is short by the cookie size. */
fed3cef0
RK
2535 virtual_size = size_binop (MULT_EXPR, size_exp,
2536 convert (sizetype, maxindex));
f30432d7
MS
2537
2538 if (! TYPE_VEC_NEW_USES_COOKIE (type))
2539 /* no header */
2540 base_tbd = base;
2541 else
2542 {
834c6dff
MM
2543 tree cookie_size;
2544
46e995e0 2545 cookie_size = targetm.cxx.get_cookie_size (type);
c8094d83 2546 base_tbd
834c6dff 2547 = cp_convert (ptype,
ba47d38d
AH
2548 cp_build_binary_op (input_location,
2549 MINUS_EXPR,
c8094d83 2550 cp_convert (string_type_node,
ab76ca54 2551 base),
5ade1ed2
DG
2552 cookie_size,
2553 tf_warning_or_error));
e92cc029 2554 /* True size with header. */
834c6dff 2555 virtual_size = size_binop (PLUS_EXPR, virtual_size, cookie_size);
f30432d7 2556 }
86f45d2c
MM
2557
2558 if (auto_delete_vec == sfk_deleting_destructor)
1c71c747
VR
2559 deallocate_expr = build_op_delete_call (VEC_DELETE_EXPR,
2560 base_tbd, virtual_size,
2561 use_global_delete & 1,
3db45ab5 2562 /*placement=*/NULL_TREE,
63c9a190 2563 /*alloc_fn=*/NULL_TREE);
f30432d7
MS
2564 }
2565
c7b62f14
NS
2566 body = loop;
2567 if (!deallocate_expr)
2568 ;
2569 else if (!body)
2570 body = deallocate_expr;
f30432d7 2571 else
c2255bc4 2572 body = build_compound_expr (input_location, body, deallocate_expr);
c8094d83 2573
c7b62f14
NS
2574 if (!body)
2575 body = integer_zero_node;
c8094d83 2576
f30432d7 2577 /* Outermost wrapper: If pointer is null, punt. */
7866705a
SB
2578 body = fold_build3 (COND_EXPR, void_type_node,
2579 fold_build2 (NE_EXPR, boolean_type_node, base,
2580 convert (TREE_TYPE (base),
2581 integer_zero_node)),
2582 body, integer_zero_node);
f30432d7
MS
2583 body = build1 (NOP_EXPR, void_type_node, body);
2584
2585 if (controller)
2586 {
2587 TREE_OPERAND (controller, 1) = body;
4e8dca1c 2588 body = controller;
f30432d7 2589 }
4e8dca1c
JM
2590
2591 if (TREE_CODE (base) == SAVE_EXPR)
2592 /* Pre-evaluate the SAVE_EXPR outside of the BIND_EXPR. */
f293ce4b 2593 body = build2 (COMPOUND_EXPR, void_type_node, base, body);
4e8dca1c 2594
5ade1ed2 2595 return convert_to_void (body, /*implicit=*/NULL, tf_warning_or_error);
f30432d7
MS
2596}
2597
c8094d83 2598/* Create an unnamed variable of the indicated TYPE. */
c395453c 2599
f1dedc31 2600tree
362efdc1 2601create_temporary_var (tree type)
8a72a046 2602{
f1dedc31 2603 tree decl;
c8094d83 2604
c2255bc4
AH
2605 decl = build_decl (input_location,
2606 VAR_DECL, NULL_TREE, type);
f1dedc31
MM
2607 TREE_USED (decl) = 1;
2608 DECL_ARTIFICIAL (decl) = 1;
f1dedc31 2609 DECL_IGNORED_P (decl) = 1;
b35d4555 2610 DECL_CONTEXT (decl) = current_function_decl;
f1dedc31 2611
f1dedc31 2612 return decl;
8a72a046
MM
2613}
2614
f1dedc31
MM
2615/* Create a new temporary variable of the indicated TYPE, initialized
2616 to INIT.
8a72a046 2617
f1dedc31
MM
2618 It is not entered into current_binding_level, because that breaks
2619 things when it comes time to do final cleanups (which take place
2620 "outside" the binding contour of the function). */
2621
2622static tree
362efdc1 2623get_temp_regvar (tree type, tree init)
f30432d7 2624{
f1dedc31 2625 tree decl;
8a72a046 2626
f1dedc31 2627 decl = create_temporary_var (type);
350fae66 2628 add_decl_expr (decl);
c8094d83 2629
5ade1ed2
DG
2630 finish_expr_stmt (cp_build_modify_expr (decl, INIT_EXPR, init,
2631 tf_warning_or_error));
8a72a046 2632
f1dedc31 2633 return decl;
f30432d7
MS
2634}
2635
f1dedc31
MM
2636/* `build_vec_init' returns tree structure that performs
2637 initialization of a vector of aggregate types.
8d08fdba 2638
9207099b
JM
2639 BASE is a reference to the vector, of ARRAY_TYPE, or a pointer
2640 to the first element, of POINTER_TYPE.
a48cccea 2641 MAXINDEX is the maximum index of the array (one less than the
9207099b 2642 number of elements). It is only used if BASE is a pointer or
a48cccea 2643 TYPE_DOMAIN (TREE_TYPE (BASE)) == NULL_TREE.
b84f4651 2644
8d08fdba
MS
2645 INIT is the (possibly NULL) initializer.
2646
844ae01d
JM
2647 If EXPLICIT_VALUE_INIT_P is true, then INIT must be NULL. All
2648 elements in the array are value-initialized.
b84f4651 2649
8d08fdba
MS
2650 FROM_ARRAY is 0 if we should init everything with INIT
2651 (i.e., every element initialized from INIT).
2652 FROM_ARRAY is 1 if we should index into INIT in parallel
2653 with initialization of DECL.
2654 FROM_ARRAY is 2 if we should index into INIT in parallel,
2655 but use assignment instead of initialization. */
2656
2657tree
3db45ab5 2658build_vec_init (tree base, tree maxindex, tree init,
844ae01d 2659 bool explicit_value_init_p,
5ade1ed2 2660 int from_array, tsubst_flags_t complain)
8d08fdba
MS
2661{
2662 tree rval;
8a72a046 2663 tree base2 = NULL_TREE;
8d08fdba 2664 tree size;
e833cb11 2665 tree itype = NULL_TREE;
8a72a046 2666 tree iterator;
9207099b 2667 /* The type of BASE. */
f30efcb7 2668 tree atype = TREE_TYPE (base);
f1dedc31 2669 /* The type of an element in the array. */
f30efcb7 2670 tree type = TREE_TYPE (atype);
c8094d83 2671 /* The element type reached after removing all outer array
b5af3133
MM
2672 types. */
2673 tree inner_elt_type;
f1dedc31
MM
2674 /* The type of a pointer to an element in the array. */
2675 tree ptype;
2676 tree stmt_expr;
2677 tree compound_stmt;
2678 int destroy_temps;
f5984164 2679 tree try_block = NULL_TREE;
8a72a046 2680 int num_initialized_elts = 0;
2a3398e1 2681 bool is_global;
c8094d83 2682
9207099b 2683 if (TREE_CODE (atype) == ARRAY_TYPE && TYPE_DOMAIN (atype))
a48cccea
JM
2684 maxindex = array_type_nelts (atype);
2685
2686 if (maxindex == NULL_TREE || maxindex == error_mark_node)
8d08fdba
MS
2687 return error_mark_node;
2688
844ae01d 2689 if (explicit_value_init_p)
b84f4651
MM
2690 gcc_assert (!init);
2691
9207099b 2692 inner_elt_type = strip_array_types (type);
c8a3d889 2693 if (init
25357d1e 2694 && TREE_CODE (atype) == ARRAY_TYPE
c8a3d889 2695 && (from_array == 2
c8094d83 2696 ? (!CLASS_TYPE_P (inner_elt_type)
b5af3133 2697 || !TYPE_HAS_COMPLEX_ASSIGN_REF (inner_elt_type))
c8a3d889 2698 : !TYPE_NEEDS_CONSTRUCTING (type))
f30efcb7
JM
2699 && ((TREE_CODE (init) == CONSTRUCTOR
2700 /* Don't do this if the CONSTRUCTOR might contain something
2701 that might throw and require us to clean up. */
4038c495 2702 && (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init))
b5af3133 2703 || ! TYPE_HAS_NONTRIVIAL_DESTRUCTOR (inner_elt_type)))
f30efcb7
JM
2704 || from_array))
2705 {
2706 /* Do non-default initialization of POD arrays resulting from
2707 brace-enclosed initializers. In this case, digest_init and
2708 store_constructor will handle the semantics for us. */
2709
f293ce4b 2710 stmt_expr = build2 (INIT_EXPR, atype, base, init);
f30efcb7
JM
2711 return stmt_expr;
2712 }
2713
2714 maxindex = cp_convert (ptrdiff_type_node, maxindex);
8d08fdba 2715 size = size_in_bytes (type);
9207099b
JM
2716 if (TREE_CODE (atype) == ARRAY_TYPE)
2717 {
2718 ptype = build_pointer_type (type);
2719 base = cp_convert (ptype, decay_conversion (base));
2720 }
2721 else
2722 ptype = atype;
8d08fdba 2723
f1dedc31 2724 /* The code we are generating looks like:
303b7406 2725 ({
f1dedc31 2726 T* t1 = (T*) base;
f30efcb7 2727 T* rval = t1;
f1dedc31
MM
2728 ptrdiff_t iterator = maxindex;
2729 try {
4977bab6 2730 for (; iterator != -1; --iterator) {
f30efcb7
JM
2731 ... initialize *t1 ...
2732 ++t1;
4977bab6 2733 }
f1dedc31 2734 } catch (...) {
0cbd7506 2735 ... destroy elements that were constructed ...
f1dedc31 2736 }
303b7406
NS
2737 rval;
2738 })
c8094d83 2739
f1dedc31
MM
2740 We can omit the try and catch blocks if we know that the
2741 initialization will never throw an exception, or if the array
f30efcb7 2742 elements do not have destructors. We can omit the loop completely if
c8094d83 2743 the elements of the array do not have constructors.
f1dedc31
MM
2744
2745 We actually wrap the entire body of the above in a STMT_EXPR, for
c8094d83 2746 tidiness.
f1dedc31
MM
2747
2748 When copying from array to another, when the array elements have
2749 only trivial copy constructors, we should use __builtin_memcpy
2750 rather than generating a loop. That way, we could take advantage
3b426391 2751 of whatever cleverness the back end has for dealing with copies
f1dedc31
MM
2752 of blocks of memory. */
2753
2a3398e1 2754 is_global = begin_init_stmts (&stmt_expr, &compound_stmt);
f2c5f623 2755 destroy_temps = stmts_are_full_exprs_p ();
ae499cce 2756 current_stmt_tree ()->stmts_are_full_exprs_p = 0;
f30efcb7 2757 rval = get_temp_regvar (ptype, base);
f1dedc31 2758 base = get_temp_regvar (ptype, rval);
8a72a046 2759 iterator = get_temp_regvar (ptrdiff_type_node, maxindex);
8d08fdba 2760
8a72a046 2761 /* Protect the entire array initialization so that we can destroy
f30efcb7
JM
2762 the partially constructed array if an exception is thrown.
2763 But don't do this if we're assigning. */
2764 if (flag_exceptions && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
2765 && from_array != 2)
ed5511d9
MM
2766 {
2767 try_block = begin_try_block ();
ed5511d9 2768 }
8a72a046 2769
f30efcb7 2770 if (init != NULL_TREE && TREE_CODE (init) == CONSTRUCTOR)
8d08fdba 2771 {
f30efcb7
JM
2772 /* Do non-default initialization of non-POD arrays resulting from
2773 brace-enclosed initializers. */
4038c495
GB
2774 unsigned HOST_WIDE_INT idx;
2775 tree elt;
094fe153
JM
2776 from_array = 0;
2777
4038c495 2778 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
8d08fdba 2779 {
f1dedc31 2780 tree baseref = build1 (INDIRECT_REF, type, base);
8d08fdba 2781
8a72a046 2782 num_initialized_elts++;
8d08fdba 2783
67c03833 2784 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
9e1e64ec 2785 if (MAYBE_CLASS_TYPE_P (type) || TREE_CODE (type) == ARRAY_TYPE)
5ade1ed2 2786 finish_expr_stmt (build_aggr_init (baseref, elt, 0, complain));
8a72a046 2787 else
5ade1ed2
DG
2788 finish_expr_stmt (cp_build_modify_expr (baseref, NOP_EXPR,
2789 elt, complain));
67c03833 2790 current_stmt_tree ()->stmts_are_full_exprs_p = 0;
8a72a046 2791
5ade1ed2
DG
2792 finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base, 0,
2793 complain));
2794 finish_expr_stmt (cp_build_unary_op (PREDECREMENT_EXPR, iterator, 0,
2795 complain));
8d08fdba 2796 }
8d08fdba 2797
8a72a046
MM
2798 /* Clear out INIT so that we don't get confused below. */
2799 init = NULL_TREE;
8d08fdba 2800 }
8a72a046 2801 else if (from_array)
8d08fdba 2802 {
8a72a046
MM
2803 /* If initializing one array from another, initialize element by
2804 element. We rely upon the below calls the do argument
c8094d83 2805 checking. */
8a72a046
MM
2806 if (init)
2807 {
0a72704b 2808 base2 = decay_conversion (init);
8a72a046
MM
2809 itype = TREE_TYPE (base2);
2810 base2 = get_temp_regvar (itype, base2);
2811 itype = TREE_TYPE (itype);
2812 }
2813 else if (TYPE_LANG_SPECIFIC (type)
2814 && TYPE_NEEDS_CONSTRUCTING (type)
2815 && ! TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
2816 {
5ade1ed2
DG
2817 if (complain & tf_error)
2818 error ("initializer ends prematurely");
8a72a046
MM
2819 return error_mark_node;
2820 }
2821 }
8d08fdba 2822
8a72a046
MM
2823 /* Now, default-initialize any remaining elements. We don't need to
2824 do that if a) the type does not need constructing, or b) we've
094fe153
JM
2825 already initialized all the elements.
2826
2827 We do need to keep going if we're copying an array. */
2828
2829 if (from_array
844ae01d 2830 || ((TYPE_NEEDS_CONSTRUCTING (type) || explicit_value_init_p)
665f2503 2831 && ! (host_integerp (maxindex, 0)
05bccae2 2832 && (num_initialized_elts
665f2503 2833 == tree_low_cst (maxindex, 0) + 1))))
8a72a046 2834 {
37e05cd5 2835 /* If the ITERATOR is equal to -1, then we don't have to loop;
8a72a046 2836 we've already initialized all the elements. */
4977bab6 2837 tree for_stmt;
f1dedc31 2838 tree elt_init;
b84f4651 2839 tree to;
f1dedc31 2840
4977bab6
ZW
2841 for_stmt = begin_for_stmt ();
2842 finish_for_init_stmt (for_stmt);
aab384ae
RG
2843 finish_for_cond (build2 (NE_EXPR, boolean_type_node, iterator,
2844 build_int_cst (TREE_TYPE (iterator), -1)),
4977bab6 2845 for_stmt);
5ade1ed2
DG
2846 finish_for_expr (cp_build_unary_op (PREDECREMENT_EXPR, iterator, 0,
2847 complain),
4977bab6 2848 for_stmt);
8d08fdba 2849
b84f4651
MM
2850 to = build1 (INDIRECT_REF, type, base);
2851
8d08fdba
MS
2852 if (from_array)
2853 {
8d08fdba
MS
2854 tree from;
2855
2856 if (base2)
2857 from = build1 (INDIRECT_REF, itype, base2);
2858 else
2859 from = NULL_TREE;
2860
2861 if (from_array == 2)
5ade1ed2
DG
2862 elt_init = cp_build_modify_expr (to, NOP_EXPR, from,
2863 complain);
8d08fdba 2864 else if (TYPE_NEEDS_CONSTRUCTING (type))
5ade1ed2 2865 elt_init = build_aggr_init (to, from, 0, complain);
8d08fdba 2866 else if (from)
5ade1ed2
DG
2867 elt_init = cp_build_modify_expr (to, NOP_EXPR, from,
2868 complain);
8d08fdba 2869 else
8dc2b103 2870 gcc_unreachable ();
8d08fdba
MS
2871 }
2872 else if (TREE_CODE (type) == ARRAY_TYPE)
2873 {
2874 if (init != 0)
f30efcb7
JM
2875 sorry
2876 ("cannot initialize multi-dimensional array with initializer");
2877 elt_init = build_vec_init (build1 (INDIRECT_REF, type, base),
3db45ab5 2878 0, 0,
844ae01d 2879 explicit_value_init_p,
5ade1ed2 2880 0, complain);
f1dedc31 2881 }
844ae01d
JM
2882 else if (explicit_value_init_p)
2883 elt_init = build2 (INIT_EXPR, type, to,
2884 build_value_init (type));
f1dedc31 2885 else
844ae01d
JM
2886 {
2887 gcc_assert (TYPE_NEEDS_CONSTRUCTING (type));
2888 elt_init = build_aggr_init (to, init, 0, complain);
2889 }
c8094d83 2890
2a3398e1
NS
2891 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
2892 finish_expr_stmt (elt_init);
2893 current_stmt_tree ()->stmts_are_full_exprs_p = 0;
8d08fdba 2894
5ade1ed2
DG
2895 finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base, 0,
2896 complain));
8d08fdba 2897 if (base2)
5ade1ed2
DG
2898 finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base2, 0,
2899 complain));
0fac6b0b 2900
4977bab6 2901 finish_for_stmt (for_stmt);
8d08fdba 2902 }
8a72a046
MM
2903
2904 /* Make sure to cleanup any partially constructed elements. */
f30efcb7
JM
2905 if (flag_exceptions && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
2906 && from_array != 2)
f1dedc31
MM
2907 {
2908 tree e;
ba47d38d
AH
2909 tree m = cp_build_binary_op (input_location,
2910 MINUS_EXPR, maxindex, iterator,
5ade1ed2 2911 complain);
b2153b98
KL
2912
2913 /* Flatten multi-dimensional array since build_vec_delete only
2914 expects one-dimensional array. */
2915 if (TREE_CODE (type) == ARRAY_TYPE)
ba47d38d
AH
2916 m = cp_build_binary_op (input_location,
2917 MULT_EXPR, m,
5ade1ed2
DG
2918 array_type_nelts_total (type),
2919 complain);
8d08fdba 2920
ed5511d9 2921 finish_cleanup_try_block (try_block);
c8094d83 2922 e = build_vec_delete_1 (rval, m,
b5af3133 2923 inner_elt_type, sfk_base_destructor,
f1dedc31 2924 /*use_global_delete=*/0);
f1dedc31
MM
2925 finish_cleanup (e, try_block);
2926 }
2927
303b7406
NS
2928 /* The value of the array initialization is the array itself, RVAL
2929 is a pointer to the first element. */
325c3691 2930 finish_stmt_expr_expr (rval, stmt_expr);
f1dedc31 2931
2a3398e1 2932 stmt_expr = finish_init_stmts (is_global, stmt_expr, compound_stmt);
303b7406 2933
9207099b
JM
2934 /* Now make the result have the correct type. */
2935 if (TREE_CODE (atype) == ARRAY_TYPE)
2936 {
2937 atype = build_pointer_type (atype);
2938 stmt_expr = build1 (NOP_EXPR, atype, stmt_expr);
2939 stmt_expr = cp_build_indirect_ref (stmt_expr, NULL, complain);
311fa510 2940 TREE_NO_WARNING (stmt_expr) = 1;
9207099b 2941 }
c8094d83 2942
ae499cce 2943 current_stmt_tree ()->stmts_are_full_exprs_p = destroy_temps;
f1dedc31 2944 return stmt_expr;
8d08fdba
MS
2945}
2946
86f45d2c
MM
2947/* Call the DTOR_KIND destructor for EXP. FLAGS are as for
2948 build_delete. */
298d6f60
MM
2949
2950static tree
362efdc1 2951build_dtor_call (tree exp, special_function_kind dtor_kind, int flags)
298d6f60 2952{
86f45d2c 2953 tree name;
ee76b931 2954 tree fn;
86f45d2c
MM
2955 switch (dtor_kind)
2956 {
2957 case sfk_complete_destructor:
2958 name = complete_dtor_identifier;
2959 break;
2960
2961 case sfk_base_destructor:
2962 name = base_dtor_identifier;
2963 break;
2964
2965 case sfk_deleting_destructor:
2966 name = deleting_dtor_identifier;
2967 break;
2968
2969 default:
8dc2b103 2970 gcc_unreachable ();
86f45d2c 2971 }
ee76b931 2972 fn = lookup_fnfields (TREE_TYPE (exp), name, /*protect=*/2);
c8094d83 2973 return build_new_method_call (exp, fn,
c166b898 2974 /*args=*/NULL,
ee76b931 2975 /*conversion_path=*/NULL_TREE,
63c9a190 2976 flags,
5ade1ed2
DG
2977 /*fn_p=*/NULL,
2978 tf_warning_or_error);
298d6f60
MM
2979}
2980
8d08fdba
MS
2981/* Generate a call to a destructor. TYPE is the type to cast ADDR to.
2982 ADDR is an expression which yields the store to be destroyed.
86f45d2c
MM
2983 AUTO_DELETE is the name of the destructor to call, i.e., either
2984 sfk_complete_destructor, sfk_base_destructor, or
2985 sfk_deleting_destructor.
8d08fdba
MS
2986
2987 FLAGS is the logical disjunction of zero or more LOOKUP_
ade3dc07 2988 flags. See cp-tree.h for more info. */
e92cc029 2989
8d08fdba 2990tree
362efdc1
NN
2991build_delete (tree type, tree addr, special_function_kind auto_delete,
2992 int flags, int use_global_delete)
8d08fdba 2993{
8d08fdba 2994 tree expr;
8d08fdba
MS
2995
2996 if (addr == error_mark_node)
2997 return error_mark_node;
2998
2999 /* Can happen when CURRENT_EXCEPTION_OBJECT gets its type
3000 set to `error_mark_node' before it gets properly cleaned up. */
3001 if (type == error_mark_node)
3002 return error_mark_node;
3003
3004 type = TYPE_MAIN_VARIANT (type);
3005
3006 if (TREE_CODE (type) == POINTER_TYPE)
3007 {
b1e5b86c
GB
3008 bool complete_p = true;
3009
2986ae00 3010 type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
8d08fdba
MS
3011 if (TREE_CODE (type) == ARRAY_TYPE)
3012 goto handle_array;
23b4deba 3013
b1e5b86c
GB
3014 /* We don't want to warn about delete of void*, only other
3015 incomplete types. Deleting other incomplete types
3016 invokes undefined behavior, but it is not ill-formed, so
3017 compile to something that would even do The Right Thing
3018 (TM) should the type have a trivial dtor and no delete
3019 operator. */
3020 if (!VOID_TYPE_P (type))
8d08fdba 3021 {
b1e5b86c
GB
3022 complete_type (type);
3023 if (!COMPLETE_TYPE_P (type))
3024 {
71205d17
MLI
3025 if (warning (0, "possible problem detected in invocation of "
3026 "delete operator:"))
3027 {
3028 cxx_incomplete_type_diagnostic (addr, type, DK_WARNING);
1f5b3869 3029 inform (input_location, "neither the destructor nor the class-specific "
71205d17
MLI
3030 "operator delete will be called, even if they are "
3031 "declared when the class is defined.");
3032 }
b1e5b86c
GB
3033 complete_p = false;
3034 }
8d08fdba 3035 }
9e1e64ec 3036 if (VOID_TYPE_P (type) || !complete_p || !MAYBE_CLASS_TYPE_P (type))
b1e5b86c
GB
3037 /* Call the builtin operator delete. */
3038 return build_builtin_delete_call (addr);
8d08fdba
MS
3039 if (TREE_SIDE_EFFECTS (addr))
3040 addr = save_expr (addr);
2986ae00 3041
f4f206f4 3042 /* Throw away const and volatile on target type of addr. */
6060a796 3043 addr = convert_force (build_pointer_type (type), addr, 0);
8d08fdba
MS
3044 }
3045 else if (TREE_CODE (type) == ARRAY_TYPE)
3046 {
3047 handle_array:
c8094d83 3048
c407792d
RK
3049 if (TYPE_DOMAIN (type) == NULL_TREE)
3050 {
8251199e 3051 error ("unknown array size in delete");
c407792d
RK
3052 return error_mark_node;
3053 }
8d08fdba 3054 return build_vec_delete (addr, array_type_nelts (type),
c7edeea3 3055 auto_delete, use_global_delete);
8d08fdba
MS
3056 }
3057 else
3058 {
3059 /* Don't check PROTECT here; leave that decision to the
3060 destructor. If the destructor is accessible, call it,
3061 else report error. */
5ade1ed2 3062 addr = cp_build_unary_op (ADDR_EXPR, addr, 0, tf_warning_or_error);
8d08fdba
MS
3063 if (TREE_SIDE_EFFECTS (addr))
3064 addr = save_expr (addr);
3065
60696c53 3066 addr = convert_force (build_pointer_type (type), addr, 0);
8d08fdba
MS
3067 }
3068
9e1e64ec 3069 gcc_assert (MAYBE_CLASS_TYPE_P (type));
8d08fdba 3070
834c6dff 3071 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
8d08fdba 3072 {
60696c53 3073 if (auto_delete != sfk_deleting_destructor)
8d08fdba
MS
3074 return void_zero_node;
3075
3db45ab5
MS
3076 return build_op_delete_call (DELETE_EXPR, addr,
3077 cxx_sizeof_nowarn (type),
63c9a190
MM
3078 use_global_delete,
3079 /*placement=*/NULL_TREE,
3080 /*alloc_fn=*/NULL_TREE);
8d08fdba 3081 }
ade3dc07 3082 else
8d08fdba 3083 {
6f06d231 3084 tree head = NULL_TREE;
700f8a87 3085 tree do_delete = NULL_TREE;
bd6dd845 3086 tree ifexp;
700f8a87 3087
9f4faeae
MM
3088 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
3089 lazily_declare_fn (sfk_destructor, type);
ade3dc07 3090
52682a1b
MM
3091 /* For `::delete x', we must not use the deleting destructor
3092 since then we would not be sure to get the global `operator
3093 delete'. */
86f45d2c 3094 if (use_global_delete && auto_delete == sfk_deleting_destructor)
700f8a87 3095 {
1b4a93f7
MM
3096 /* We will use ADDR multiple times so we must save it. */
3097 addr = save_expr (addr);
6f06d231 3098 head = get_target_expr (build_headof (addr));
c6002625 3099 /* Delete the object. */
6f06d231 3100 do_delete = build_builtin_delete_call (head);
86f45d2c
MM
3101 /* Otherwise, treat this like a complete object destructor
3102 call. */
3103 auto_delete = sfk_complete_destructor;
700f8a87 3104 }
52682a1b
MM
3105 /* If the destructor is non-virtual, there is no deleting
3106 variant. Instead, we must explicitly call the appropriate
3107 `operator delete' here. */
3108 else if (!DECL_VIRTUAL_P (CLASSTYPE_DESTRUCTORS (type))
3109 && auto_delete == sfk_deleting_destructor)
3110 {
1b4a93f7
MM
3111 /* We will use ADDR multiple times so we must save it. */
3112 addr = save_expr (addr);
3113 /* Build the call. */
52682a1b
MM
3114 do_delete = build_op_delete_call (DELETE_EXPR,
3115 addr,
ea793912 3116 cxx_sizeof_nowarn (type),
5bd61841 3117 /*global_p=*/false,
63c9a190
MM
3118 /*placement=*/NULL_TREE,
3119 /*alloc_fn=*/NULL_TREE);
52682a1b
MM
3120 /* Call the complete object destructor. */
3121 auto_delete = sfk_complete_destructor;
3122 }
e3fe84e5
JM
3123 else if (auto_delete == sfk_deleting_destructor
3124 && TYPE_GETS_REG_DELETE (type))
3125 {
3126 /* Make sure we have access to the member op delete, even though
3127 we'll actually be calling it from the destructor. */
ea793912 3128 build_op_delete_call (DELETE_EXPR, addr, cxx_sizeof_nowarn (type),
3db45ab5 3129 /*global_p=*/false,
63c9a190
MM
3130 /*placement=*/NULL_TREE,
3131 /*alloc_fn=*/NULL_TREE);
e3fe84e5 3132 }
8d08fdba 3133
5ade1ed2
DG
3134 expr = build_dtor_call (cp_build_indirect_ref (addr, NULL,
3135 tf_warning_or_error),
1b4a93f7 3136 auto_delete, flags);
bd6dd845 3137 if (do_delete)
f293ce4b 3138 expr = build2 (COMPOUND_EXPR, void_type_node, expr, do_delete);
9e9ff709 3139
6f06d231
JM
3140 /* We need to calculate this before the dtor changes the vptr. */
3141 if (head)
3142 expr = build2 (COMPOUND_EXPR, void_type_node, head, expr);
3143
bd6dd845
MS
3144 if (flags & LOOKUP_DESTRUCTOR)
3145 /* Explicit destructor call; don't check for null pointer. */
3146 ifexp = integer_one_node;
8d08fdba 3147 else
bd6dd845 3148 /* Handle deleting a null pointer. */
ba47d38d
AH
3149 ifexp = fold (cp_build_binary_op (input_location,
3150 NE_EXPR, addr, integer_zero_node,
5ade1ed2 3151 tf_warning_or_error));
8d08fdba 3152
bd6dd845 3153 if (ifexp != integer_one_node)
f293ce4b
RS
3154 expr = build3 (COND_EXPR, void_type_node,
3155 ifexp, expr, void_zero_node);
8d08fdba 3156
8d08fdba
MS
3157 return expr;
3158 }
ade3dc07 3159}
8d08fdba 3160
ade3dc07
JM
3161/* At the beginning of a destructor, push cleanups that will call the
3162 destructors for our base classes and members.
2a2480e1 3163
a29e1034 3164 Called from begin_destructor_body. */
8d08fdba 3165
ade3dc07 3166void
edaf3e03 3167push_base_cleanups (void)
ade3dc07 3168{
fa743e8c
NS
3169 tree binfo, base_binfo;
3170 int i;
ade3dc07
JM
3171 tree member;
3172 tree expr;
d4e6fecb 3173 VEC(tree,gc) *vbases;
8d08fdba 3174
ade3dc07 3175 /* Run destructors for all virtual baseclasses. */
5775a06a 3176 if (CLASSTYPE_VBASECLASSES (current_class_type))
ade3dc07 3177 {
ade3dc07 3178 tree cond = (condition_conversion
f293ce4b
RS
3179 (build2 (BIT_AND_EXPR, integer_type_node,
3180 current_in_charge_parm,
3181 integer_two_node)));
8d08fdba 3182
58c42dc2 3183 /* The CLASSTYPE_VBASECLASSES vector is in initialization
ade3dc07 3184 order, which is also the right order for pushing cleanups. */
9ba5ff0f
NS
3185 for (vbases = CLASSTYPE_VBASECLASSES (current_class_type), i = 0;
3186 VEC_iterate (tree, vbases, i, base_binfo); i++)
8d08fdba 3187 {
9ba5ff0f 3188 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (BINFO_TYPE (base_binfo)))
8d08fdba 3189 {
c8094d83 3190 expr = build_special_member_call (current_class_ref,
4ba126e4 3191 base_dtor_identifier,
c166b898 3192 NULL,
9ba5ff0f 3193 base_binfo,
c8094d83 3194 (LOOKUP_NORMAL
5ade1ed2
DG
3195 | LOOKUP_NONVIRTUAL),
3196 tf_warning_or_error);
f293ce4b
RS
3197 expr = build3 (COND_EXPR, void_type_node, cond,
3198 expr, void_zero_node);
ade3dc07 3199 finish_decl_cleanup (NULL_TREE, expr);
8d08fdba
MS
3200 }
3201 }
ade3dc07
JM
3202 }
3203
ade3dc07 3204 /* Take care of the remaining baseclasses. */
fa743e8c
NS
3205 for (binfo = TYPE_BINFO (current_class_type), i = 0;
3206 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
ade3dc07 3207 {
ade3dc07 3208 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (BINFO_TYPE (base_binfo))
809e3e7f 3209 || BINFO_VIRTUAL_P (base_binfo))
ade3dc07
JM
3210 continue;
3211
c8094d83 3212 expr = build_special_member_call (current_class_ref,
4ba126e4 3213 base_dtor_identifier,
c166b898 3214 NULL, base_binfo,
5ade1ed2
DG
3215 LOOKUP_NORMAL | LOOKUP_NONVIRTUAL,
3216 tf_warning_or_error);
ade3dc07
JM
3217 finish_decl_cleanup (NULL_TREE, expr);
3218 }
3219
3220 for (member = TYPE_FIELDS (current_class_type); member;
3221 member = TREE_CHAIN (member))
3222 {
2e5d2970
VR
3223 if (TREE_TYPE (member) == error_mark_node
3224 || TREE_CODE (member) != FIELD_DECL
3225 || DECL_ARTIFICIAL (member))
ade3dc07
JM
3226 continue;
3227 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (member)))
3228 {
c8094d83
MS
3229 tree this_member = (build_class_member_access_expr
3230 (current_class_ref, member,
50ad9642 3231 /*access_path=*/NULL_TREE,
5ade1ed2
DG
3232 /*preserve_reference=*/false,
3233 tf_warning_or_error));
ade3dc07
JM
3234 tree this_type = TREE_TYPE (member);
3235 expr = build_delete (this_type, this_member,
3236 sfk_complete_destructor,
3237 LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL,
3238 0);
3239 finish_decl_cleanup (NULL_TREE, expr);
3240 }
8d08fdba
MS
3241 }
3242}
3243
8d08fdba
MS
3244/* Build a C++ vector delete expression.
3245 MAXINDEX is the number of elements to be deleted.
3246 ELT_SIZE is the nominal size of each element in the vector.
3247 BASE is the expression that should yield the store to be deleted.
8d08fdba
MS
3248 This function expands (or synthesizes) these calls itself.
3249 AUTO_DELETE_VEC says whether the container (vector) should be deallocated.
8d08fdba
MS
3250
3251 This also calls delete for virtual baseclasses of elements of the vector.
3252
3253 Update: MAXINDEX is no longer needed. The size can be extracted from the
3254 start of the vector for pointers, and from the type for arrays. We still
3255 use MAXINDEX for arrays because it happens to already have one of the
3256 values we'd have to extract. (We could use MAXINDEX with pointers to
3257 confirm the size, and trap if the numbers differ; not clear that it'd
3258 be worth bothering.) */
e92cc029 3259
8d08fdba 3260tree
362efdc1
NN
3261build_vec_delete (tree base, tree maxindex,
3262 special_function_kind auto_delete_vec, int use_global_delete)
8d08fdba 3263{
f30432d7 3264 tree type;
49b7aacb
JM
3265 tree rval;
3266 tree base_init = NULL_TREE;
8d08fdba 3267
f30432d7 3268 type = TREE_TYPE (base);
c407792d 3269
f30432d7 3270 if (TREE_CODE (type) == POINTER_TYPE)
8d08fdba
MS
3271 {
3272 /* Step back one from start of vector, and read dimension. */
834c6dff 3273 tree cookie_addr;
726a989a 3274 tree size_ptr_type = build_pointer_type (sizetype);
834c6dff 3275
6742d92b 3276 if (TREE_SIDE_EFFECTS (base))
49b7aacb
JM
3277 {
3278 base_init = get_target_expr (base);
3279 base = TARGET_EXPR_SLOT (base_init);
3280 }
708cae97 3281 type = strip_array_types (TREE_TYPE (type));
5be014d5
AP
3282 cookie_addr = fold_build1 (NEGATE_EXPR, sizetype, TYPE_SIZE_UNIT (sizetype));
3283 cookie_addr = build2 (POINTER_PLUS_EXPR,
726a989a
RB
3284 size_ptr_type,
3285 fold_convert (size_ptr_type, base),
5be014d5 3286 cookie_addr);
5ade1ed2 3287 maxindex = cp_build_indirect_ref (cookie_addr, NULL, tf_warning_or_error);
8d08fdba 3288 }
f30432d7 3289 else if (TREE_CODE (type) == ARRAY_TYPE)
8d08fdba 3290 {
f4f206f4
KH
3291 /* Get the total number of things in the array, maxindex is a
3292 bad name. */
f30432d7 3293 maxindex = array_type_nelts_total (type);
834c6dff 3294 type = strip_array_types (type);
5ade1ed2 3295 base = cp_build_unary_op (ADDR_EXPR, base, 1, tf_warning_or_error);
6742d92b 3296 if (TREE_SIDE_EFFECTS (base))
49b7aacb
JM
3297 {
3298 base_init = get_target_expr (base);
3299 base = TARGET_EXPR_SLOT (base_init);
3300 }
8d08fdba
MS
3301 }
3302 else
3303 {
9e9ff709 3304 if (base != error_mark_node)
8251199e 3305 error ("type to vector delete is neither pointer or array type");
8d08fdba
MS
3306 return error_mark_node;
3307 }
8d08fdba 3308
49b7aacb 3309 rval = build_vec_delete_1 (base, maxindex, type, auto_delete_vec,
f30432d7 3310 use_global_delete);
49b7aacb 3311 if (base_init)
f293ce4b 3312 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), base_init, rval);
49b7aacb
JM
3313
3314 return rval;
8d08fdba 3315}