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