]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/init.c
Testsuite, remove alloca header
[thirdparty/gcc.git] / gcc / cp / init.c
CommitLineData
8d08fdba 1/* Handle initialization things in C++.
a5544970 2 Copyright (C) 1987-2019 Free Software Foundation, Inc.
8d08fdba
MS
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
4
f5adbb8d 5This file is part of GCC.
8d08fdba 6
f5adbb8d 7GCC is free software; you can redistribute it and/or modify
8d08fdba 8it under the terms of the GNU General Public License as published by
e77f031d 9the Free Software Foundation; either version 3, or (at your option)
8d08fdba
MS
10any later version.
11
f5adbb8d 12GCC is distributed in the hope that it will be useful,
8d08fdba
MS
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
e77f031d
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
8d08fdba 20
e92cc029 21/* High-level class interface. */
8d08fdba
MS
22
23#include "config.h"
8d052bc7 24#include "system.h"
4977bab6 25#include "coretypes.h"
2adfab87 26#include "target.h"
2adfab87 27#include "cp-tree.h"
d8a2d370
DN
28#include "stringpool.h"
29#include "varasm.h"
45b0be94 30#include "gimplify.h"
46621807 31#include "c-family/c-ubsan.h"
24f12823 32#include "intl.h"
314e6352
ML
33#include "stringpool.h"
34#include "attribs.h"
45b2222a 35#include "asan.h"
8d08fdba 36
2a3398e1
NS
37static bool begin_init_stmts (tree *, tree *);
38static tree finish_init_stmts (bool, tree, tree);
2282d28d 39static void construct_virtual_base (tree, tree);
5ade1ed2
DG
40static void expand_aggr_init_1 (tree, tree, tree, tree, int, tsubst_flags_t);
41static void expand_default_init (tree, tree, tree, tree, int, tsubst_flags_t);
2282d28d 42static void perform_member_init (tree, tree);
362efdc1
NN
43static int member_init_ok_or_else (tree, tree, tree);
44static void expand_virtual_init (tree, tree);
2282d28d 45static tree sort_mem_initializers (tree, tree);
362efdc1
NN
46static tree initializing_context (tree);
47static void expand_cleanup_for_base (tree, tree);
362efdc1 48static tree dfs_initialize_vtbl_ptrs (tree, void *);
362efdc1 49static tree build_field_list (tree, tree, int *);
40bb78ad 50static int diagnose_uninitialized_cst_or_ref_member_1 (tree, tree, bool, bool);
8d08fdba 51
ff502317
BE
52static GTY(()) tree fn;
53
3dbc07b6
MM
54/* We are about to generate some complex initialization code.
55 Conceptually, it is all a single expression. However, we may want
56 to include conditionals, loops, and other such statement-level
57 constructs. Therefore, we build the initialization code inside a
58 statement-expression. This function starts such an expression.
59 STMT_EXPR_P and COMPOUND_STMT_P are filled in by this function;
60 pass them back to finish_init_stmts when the expression is
61 complete. */
62
2a3398e1 63static bool
362efdc1 64begin_init_stmts (tree *stmt_expr_p, tree *compound_stmt_p)
3dbc07b6 65{
38e01f9e 66 bool is_global = !building_stmt_list_p ();
c8094d83 67
2a3398e1 68 *stmt_expr_p = begin_stmt_expr ();
325c3691 69 *compound_stmt_p = begin_compound_stmt (BCS_NO_SCOPE);
2a3398e1
NS
70
71 return is_global;
3dbc07b6
MM
72}
73
74/* Finish out the statement-expression begun by the previous call to
75 begin_init_stmts. Returns the statement-expression itself. */
76
2a3398e1
NS
77static tree
78finish_init_stmts (bool is_global, tree stmt_expr, tree compound_stmt)
c8094d83 79{
7a3397c7 80 finish_compound_stmt (compound_stmt);
c8094d83 81
303b7406 82 stmt_expr = finish_stmt_expr (stmt_expr, true);
3dbc07b6 83
38e01f9e 84 gcc_assert (!building_stmt_list_p () == is_global);
c8094d83 85
3dbc07b6
MM
86 return stmt_expr;
87}
88
89/* Constructors */
90
338d90b8
NS
91/* Called from initialize_vtbl_ptrs via dfs_walk. BINFO is the base
92 which we want to initialize the vtable pointer for, DATA is
93 TREE_LIST whose TREE_VALUE is the this ptr expression. */
7177d104 94
d569399b 95static tree
362efdc1 96dfs_initialize_vtbl_ptrs (tree binfo, void *data)
d569399b 97{
5d5a519f
NS
98 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
99 return dfs_skip_bases;
c8094d83 100
5d5a519f 101 if (!BINFO_PRIMARY_P (binfo) || BINFO_VIRTUAL_P (binfo))
d569399b
MM
102 {
103 tree base_ptr = TREE_VALUE ((tree) data);
7177d104 104
a271590a
PC
105 base_ptr = build_base_path (PLUS_EXPR, base_ptr, binfo, /*nonnull=*/1,
106 tf_warning_or_error);
d569399b
MM
107
108 expand_virtual_init (binfo, base_ptr);
109 }
7177d104 110
d569399b
MM
111 return NULL_TREE;
112}
113
cf2e003b
MM
114/* Initialize all the vtable pointers in the object pointed to by
115 ADDR. */
e92cc029 116
8d08fdba 117void
362efdc1 118initialize_vtbl_ptrs (tree addr)
8d08fdba 119{
cf2e003b
MM
120 tree list;
121 tree type;
122
123 type = TREE_TYPE (TREE_TYPE (addr));
124 list = build_tree_list (type, addr);
d569399b 125
bbd15aac 126 /* Walk through the hierarchy, initializing the vptr in each base
1f5a253a 127 class. We do these in pre-order because we can't find the virtual
3461fba7
NS
128 bases for a class until we've initialized the vtbl for that
129 class. */
5d5a519f 130 dfs_walk_once (TYPE_BINFO (type), dfs_initialize_vtbl_ptrs, NULL, list);
8d08fdba 131}
d569399b 132
17bbb839
MM
133/* Return an expression for the zero-initialization of an object with
134 type T. This expression will either be a constant (in the case
135 that T is a scalar), or a CONSTRUCTOR (in the case that T is an
b43d1bde
PC
136 aggregate), or NULL (in the case that T does not require
137 initialization). In either case, the value can be used as
138 DECL_INITIAL for a decl of the indicated TYPE; it is a valid static
139 initializer. If NELTS is non-NULL, and TYPE is an ARRAY_TYPE, NELTS
140 is the number of elements in the array. If STATIC_STORAGE_P is
141 TRUE, initializers are only generated for entities for which
1cb8292f 142 zero-initialization does not simply mean filling the storage with
e33eba75
JJ
143 zero bytes. FIELD_SIZE, if non-NULL, is the bit size of the field,
144 subfields with bit positions at or above that bit size shouldn't
a8c1d899
JM
145 be added. Note that this only works when the result is assigned
146 to a base COMPONENT_REF; if we only have a pointer to the base subobject,
147 expand_assignment will end up clearing the full size of TYPE. */
94e6e4c4 148
e33eba75
JJ
149static tree
150build_zero_init_1 (tree type, tree nelts, bool static_storage_p,
151 tree field_size)
94e6e4c4 152{
17bbb839
MM
153 tree init = NULL_TREE;
154
155 /* [dcl.init]
156
0fcedd9c 157 To zero-initialize an object of type T means:
17bbb839
MM
158
159 -- if T is a scalar type, the storage is set to the value of zero
0cbd7506 160 converted to T.
17bbb839
MM
161
162 -- if T is a non-union class type, the storage for each nonstatic
0cbd7506 163 data member and each base-class subobject is zero-initialized.
17bbb839
MM
164
165 -- if T is a union type, the storage for its first data member is
0cbd7506 166 zero-initialized.
17bbb839
MM
167
168 -- if T is an array type, the storage for each element is
0cbd7506 169 zero-initialized.
17bbb839
MM
170
171 -- if T is a reference type, no initialization is performed. */
94e6e4c4 172
50bc768d 173 gcc_assert (nelts == NULL_TREE || TREE_CODE (nelts) == INTEGER_CST);
7a1d37e9 174
17bbb839
MM
175 if (type == error_mark_node)
176 ;
177 else if (static_storage_p && zero_init_p (type))
178 /* In order to save space, we do not explicitly build initializers
179 for items that do not need them. GCC's semantics are that
180 items with static storage duration that are not otherwise
181 initialized are initialized to zero. */
182 ;
b2b1ea34 183 else if (TYPE_PTR_OR_PTRMEM_P (type))
cda0a029 184 init = fold (convert (type, nullptr_node));
b2b1ea34
JJ
185 else if (NULLPTR_TYPE_P (type))
186 init = build_int_cst (type, 0);
b8063b29 187 else if (SCALAR_TYPE_P (type))
cda0a029 188 init = fold (convert (type, integer_zero_node));
5621a5d7 189 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (type)))
17bbb839
MM
190 {
191 tree field;
9771b263 192 vec<constructor_elt, va_gc> *v = NULL;
17bbb839 193
17bbb839 194 /* Iterate over the fields, building initializations. */
910ad8de 195 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
17bbb839
MM
196 {
197 if (TREE_CODE (field) != FIELD_DECL)
198 continue;
199
7614d42c
JJ
200 if (TREE_TYPE (field) == error_mark_node)
201 continue;
202
e33eba75
JJ
203 /* Don't add virtual bases for base classes if they are beyond
204 the size of the current field, that means it is present
205 somewhere else in the object. */
206 if (field_size)
207 {
208 tree bitpos = bit_position (field);
209 if (TREE_CODE (bitpos) == INTEGER_CST
210 && !tree_int_cst_lt (bitpos, field_size))
211 continue;
212 }
213
17bbb839
MM
214 /* Note that for class types there will be FIELD_DECLs
215 corresponding to base classes as well. Thus, iterating
216 over TYPE_FIELDs will result in correct initialization of
217 all of the subobjects. */
32a11c08 218 if (!static_storage_p || !zero_init_p (TREE_TYPE (field)))
4038c495 219 {
e33eba75
JJ
220 tree new_field_size
221 = (DECL_FIELD_IS_BASE (field)
222 && DECL_SIZE (field)
223 && TREE_CODE (DECL_SIZE (field)) == INTEGER_CST)
224 ? DECL_SIZE (field) : NULL_TREE;
225 tree value = build_zero_init_1 (TREE_TYPE (field),
226 /*nelts=*/NULL_TREE,
227 static_storage_p,
228 new_field_size);
b43d1bde
PC
229 if (value)
230 CONSTRUCTOR_APPEND_ELT(v, field, value);
4038c495 231 }
17bbb839
MM
232
233 /* For unions, only the first field is initialized. */
234 if (TREE_CODE (type) == UNION_TYPE)
235 break;
236 }
4038c495 237
0fcedd9c
JM
238 /* Build a constructor to contain the initializations. */
239 init = build_constructor (type, v);
17bbb839
MM
240 }
241 else if (TREE_CODE (type) == ARRAY_TYPE)
94e6e4c4 242 {
17bbb839 243 tree max_index;
9771b263 244 vec<constructor_elt, va_gc> *v = NULL;
17bbb839 245
17bbb839 246 /* Iterate over the array elements, building initializations. */
6b6c8106 247 if (nelts)
db3927fb
AH
248 max_index = fold_build2_loc (input_location,
249 MINUS_EXPR, TREE_TYPE (nelts),
7866705a 250 nelts, integer_one_node);
6b6c8106
SB
251 else
252 max_index = array_type_nelts (type);
9bdb04a2
AP
253
254 /* If we have an error_mark here, we should just return error mark
255 as we don't know the size of the array yet. */
256 if (max_index == error_mark_node)
257 return error_mark_node;
50bc768d 258 gcc_assert (TREE_CODE (max_index) == INTEGER_CST);
7a1d37e9 259
a8e6c82a
MM
260 /* A zero-sized array, which is accepted as an extension, will
261 have an upper bound of -1. */
262 if (!tree_int_cst_equal (max_index, integer_minus_one_node))
94763647 263 {
f32682ca 264 constructor_elt ce;
4038c495 265
b01f0d13
AP
266 /* If this is a one element array, we just use a regular init. */
267 if (tree_int_cst_equal (size_zero_node, max_index))
f32682ca 268 ce.index = size_zero_node;
b01f0d13 269 else
f32682ca 270 ce.index = build2 (RANGE_EXPR, sizetype, size_zero_node,
4038c495 271 max_index);
c8094d83 272
f32682ca 273 ce.value = build_zero_init_1 (TREE_TYPE (type),
e33eba75
JJ
274 /*nelts=*/NULL_TREE,
275 static_storage_p, NULL_TREE);
f11c7048
JJ
276 if (ce.value)
277 {
278 vec_alloc (v, 1);
279 v->quick_push (ce);
280 }
94763647 281 }
c8094d83 282
4038c495
GB
283 /* Build a constructor to contain the initializations. */
284 init = build_constructor (type, v);
94e6e4c4 285 }
b55b02ea 286 else if (VECTOR_TYPE_P (type))
e8160c9a 287 init = build_zero_cst (type);
94e6e4c4 288 else
2e1a7ecb 289 {
9f613f06 290 gcc_assert (TYPE_REF_P (type));
2e1a7ecb
AO
291 init = build_zero_cst (type);
292 }
94e6e4c4 293
17bbb839
MM
294 /* In all cases, the initializer is a constant. */
295 if (init)
51eed280 296 TREE_CONSTANT (init) = 1;
94e6e4c4
AO
297
298 return init;
299}
300
e33eba75
JJ
301/* Return an expression for the zero-initialization of an object with
302 type T. This expression will either be a constant (in the case
303 that T is a scalar), or a CONSTRUCTOR (in the case that T is an
304 aggregate), or NULL (in the case that T does not require
305 initialization). In either case, the value can be used as
306 DECL_INITIAL for a decl of the indicated TYPE; it is a valid static
307 initializer. If NELTS is non-NULL, and TYPE is an ARRAY_TYPE, NELTS
308 is the number of elements in the array. If STATIC_STORAGE_P is
309 TRUE, initializers are only generated for entities for which
310 zero-initialization does not simply mean filling the storage with
311 zero bytes. */
312
313tree
314build_zero_init (tree type, tree nelts, bool static_storage_p)
315{
316 return build_zero_init_1 (type, nelts, static_storage_p, NULL_TREE);
317}
318
0fcedd9c 319/* Return a suitable initializer for value-initializing an object of type
8f540f06 320 TYPE, as described in [dcl.init]. */
0fcedd9c 321
8f540f06 322tree
309714d4 323build_value_init (tree type, tsubst_flags_t complain)
0fcedd9c
JM
324{
325 /* [dcl.init]
326
327 To value-initialize an object of type T means:
328
eca7fc57
JM
329 - if T is a class type (clause 9) with either no default constructor
330 (12.1) or a default constructor that is user-provided or deleted,
026c3cfd 331 then the object is default-initialized;
0fcedd9c 332
eca7fc57
JM
333 - if T is a (possibly cv-qualified) class type without a user-provided
334 or deleted default constructor, then the object is zero-initialized
335 and the semantic constraints for default-initialization are checked,
336 and if T has a non-trivial default constructor, the object is
337 default-initialized;
0fcedd9c
JM
338
339 - if T is an array type, then each element is value-initialized;
340
341 - otherwise, the object is zero-initialized.
342
343 A program that calls for default-initialization or
eca7fc57 344 value-initialization of an entity of reference type is ill-formed. */
0fcedd9c 345
95d7bdaa 346 /* The AGGR_INIT_EXPR tweaking below breaks in templates. */
14b1860e
JJ
347 gcc_assert (!processing_template_decl
348 || (SCALAR_TYPE_P (type) || TREE_CODE (type) == ARRAY_TYPE));
95d7bdaa 349
60ff8e16
JM
350 if (CLASS_TYPE_P (type)
351 && type_build_ctor_call (type))
0fcedd9c 352 {
a710f1f8 353 tree ctor =
eca7fc57
JM
354 build_special_member_call (NULL_TREE, complete_ctor_identifier,
355 NULL, type, LOOKUP_NORMAL,
a710f1f8
JM
356 complain);
357 if (ctor == error_mark_node)
358 return ctor;
359 tree fn = NULL_TREE;
360 if (TREE_CODE (ctor) == CALL_EXPR)
361 fn = get_callee_fndecl (ctor);
362 ctor = build_aggr_init_expr (type, ctor);
363 if (fn && user_provided_p (fn))
eca7fc57 364 return ctor;
7b37a0c5 365 else if (TYPE_HAS_COMPLEX_DFLT (type))
8f540f06
JM
366 {
367 /* This is a class that needs constructing, but doesn't have
368 a user-provided constructor. So we need to zero-initialize
369 the object and then call the implicitly defined ctor.
450a927a 370 This will be handled in simplify_aggr_init_expr. */
eca7fc57 371 AGGR_INIT_ZERO_FIRST (ctor) = 1;
8f540f06
JM
372 return ctor;
373 }
fd97a96a 374 }
eca7fc57
JM
375
376 /* Discard any access checking during subobject initialization;
377 the checks are implied by the call to the ctor which we have
378 verified is OK (cpp0x/defaulted46.C). */
379 push_deferring_access_checks (dk_deferred);
380 tree r = build_value_init_noctor (type, complain);
381 pop_deferring_access_checks ();
382 return r;
fd97a96a
JM
383}
384
385/* Like build_value_init, but don't call the constructor for TYPE. Used
386 for base initializers. */
387
388tree
309714d4 389build_value_init_noctor (tree type, tsubst_flags_t complain)
fd97a96a 390{
46a76d4b
JM
391 if (!COMPLETE_TYPE_P (type))
392 {
393 if (complain & tf_error)
394 error ("value-initialization of incomplete type %qT", type);
395 return error_mark_node;
396 }
4ddd8a74
JM
397 /* FIXME the class and array cases should just use digest_init once it is
398 SFINAE-enabled. */
fd97a96a
JM
399 if (CLASS_TYPE_P (type))
400 {
12185846
PC
401 gcc_assert (!TYPE_HAS_COMPLEX_DFLT (type)
402 || errorcount != 0);
fd97a96a
JM
403
404 if (TREE_CODE (type) != UNION_TYPE)
0fcedd9c 405 {
8f540f06 406 tree field;
9771b263 407 vec<constructor_elt, va_gc> *v = NULL;
0fcedd9c
JM
408
409 /* Iterate over the fields, building initializations. */
910ad8de 410 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
0fcedd9c
JM
411 {
412 tree ftype, value;
413
414 if (TREE_CODE (field) != FIELD_DECL)
415 continue;
416
417 ftype = TREE_TYPE (field);
418
a95aef3c
PC
419 if (ftype == error_mark_node)
420 continue;
421
71b6cb2b
JJ
422 /* Ignore flexible array members for value initialization. */
423 if (TREE_CODE (ftype) == ARRAY_TYPE
424 && !COMPLETE_TYPE_P (ftype)
425 && !TYPE_DOMAIN (ftype)
426 && COMPLETE_TYPE_P (TREE_TYPE (ftype))
427 && (next_initializable_field (DECL_CHAIN (field))
428 == NULL_TREE))
429 continue;
430
0fcedd9c
JM
431 /* We could skip vfields and fields of types with
432 user-defined constructors, but I think that won't improve
433 performance at all; it should be simpler in general just
434 to zero out the entire object than try to only zero the
435 bits that actually need it. */
436
437 /* Note that for class types there will be FIELD_DECLs
438 corresponding to base classes as well. Thus, iterating
439 over TYPE_FIELDs will result in correct initialization of
440 all of the subobjects. */
309714d4 441 value = build_value_init (ftype, complain);
c0014b07 442 value = maybe_constant_init (value);
0fcedd9c 443
351ccf20
JM
444 if (value == error_mark_node)
445 return error_mark_node;
446
c0014b07
JM
447 CONSTRUCTOR_APPEND_ELT(v, field, value);
448
449 /* We shouldn't have gotten here for anything that would need
450 non-trivial initialization, and gimplify_init_ctor_preeval
451 would need to be fixed to allow it. */
452 gcc_assert (TREE_CODE (value) != TARGET_EXPR
453 && TREE_CODE (value) != AGGR_INIT_EXPR);
0fcedd9c
JM
454 }
455
456 /* Build a constructor to contain the zero- initializations. */
8f540f06 457 return build_constructor (type, v);
0fcedd9c
JM
458 }
459 }
460 else if (TREE_CODE (type) == ARRAY_TYPE)
461 {
9771b263 462 vec<constructor_elt, va_gc> *v = NULL;
0fcedd9c
JM
463
464 /* Iterate over the array elements, building initializations. */
465 tree max_index = array_type_nelts (type);
466
467 /* If we have an error_mark here, we should just return error mark
468 as we don't know the size of the array yet. */
469 if (max_index == error_mark_node)
462aa169 470 {
e2a009c7
JM
471 if (complain & tf_error)
472 error ("cannot value-initialize array of unknown bound %qT",
473 type);
462aa169
JM
474 return error_mark_node;
475 }
0fcedd9c
JM
476 gcc_assert (TREE_CODE (max_index) == INTEGER_CST);
477
478 /* A zero-sized array, which is accepted as an extension, will
479 have an upper bound of -1. */
480 if (!tree_int_cst_equal (max_index, integer_minus_one_node))
481 {
f32682ca 482 constructor_elt ce;
0fcedd9c 483
0fcedd9c
JM
484 /* If this is a one element array, we just use a regular init. */
485 if (tree_int_cst_equal (size_zero_node, max_index))
f32682ca 486 ce.index = size_zero_node;
0fcedd9c 487 else
f32682ca 488 ce.index = build2 (RANGE_EXPR, sizetype, size_zero_node, max_index);
0fcedd9c 489
f32682ca 490 ce.value = build_value_init (TREE_TYPE (type), complain);
c0014b07
JM
491 ce.value = maybe_constant_init (ce.value);
492 if (ce.value == error_mark_node)
493 return error_mark_node;
9dbd4406 494
c0014b07
JM
495 vec_alloc (v, 1);
496 v->quick_push (ce);
351ccf20 497
c0014b07
JM
498 /* We shouldn't have gotten here for anything that would need
499 non-trivial initialization, and gimplify_init_ctor_preeval
500 would need to be fixed to allow it. */
501 gcc_assert (TREE_CODE (ce.value) != TARGET_EXPR
502 && TREE_CODE (ce.value) != AGGR_INIT_EXPR);
0fcedd9c
JM
503 }
504
505 /* Build a constructor to contain the initializations. */
506 return build_constructor (type, v);
507 }
2b8497cd
JM
508 else if (TREE_CODE (type) == FUNCTION_TYPE)
509 {
510 if (complain & tf_error)
511 error ("value-initialization of function type %qT", type);
512 return error_mark_node;
513 }
9f613f06 514 else if (TYPE_REF_P (type))
351ccf20
JM
515 {
516 if (complain & tf_error)
517 error ("value-initialization of reference type %qT", type);
518 return error_mark_node;
519 }
0fcedd9c
JM
520
521 return build_zero_init (type, NULL_TREE, /*static_storage_p=*/false);
522}
523
238e471c
VV
524/* Initialize current class with INIT, a TREE_LIST of
525 arguments for a target constructor. If TREE_LIST is void_type_node,
526 an empty initializer list was given. */
527
528static void
529perform_target_ctor (tree init)
530{
531 tree decl = current_class_ref;
532 tree type = current_class_type;
533
a624d5fe
PC
534 finish_expr_stmt (build_aggr_init (decl, init,
535 LOOKUP_NORMAL|LOOKUP_DELEGATING_CONS,
536 tf_warning_or_error));
eca7fc57 537 if (type_build_dtor_call (type))
238e471c
VV
538 {
539 tree expr = build_delete (type, decl, sfk_complete_destructor,
540 LOOKUP_NORMAL
541 |LOOKUP_NONVIRTUAL
542 |LOOKUP_DESTRUCTOR,
543 0, tf_warning_or_error);
eca7fc57
JM
544 if (expr != error_mark_node
545 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
238e471c
VV
546 finish_eh_cleanup (expr);
547 }
548}
549
b15ea309
JM
550/* Return the non-static data initializer for FIELD_DECL MEMBER. */
551
21faa101 552static GTY((cache)) tree_cache_map *nsdmi_inst;
12659e10 553
b15ea309 554tree
9fb82e65 555get_nsdmi (tree member, bool in_ctor, tsubst_flags_t complain)
b15ea309
JM
556{
557 tree init;
558 tree save_ccp = current_class_ptr;
559 tree save_ccr = current_class_ref;
04eca83e 560
b15ea309 561 if (DECL_LANG_SPECIFIC (member) && DECL_TEMPLATE_INFO (member))
f4cd9c51 562 {
04eca83e 563 init = DECL_INITIAL (DECL_TI_TEMPLATE (member));
12659e10 564 location_t expr_loc
6bdfada4 565 = cp_expr_loc_or_loc (init, DECL_SOURCE_LOCATION (member));
12659e10 566 tree *slot;
7b49e3da 567 if (TREE_CODE (init) == DEFERRED_PARSE)
9fb82e65 568 /* Unparsed. */;
12659e10
JM
569 else if (nsdmi_inst && (slot = nsdmi_inst->get (member)))
570 init = *slot;
04eca83e 571 /* Check recursive instantiation. */
9fb82e65 572 else if (DECL_INSTANTIATING_NSDMI_P (member))
04eca83e 573 {
9fb82e65 574 if (complain & tf_error)
12659e10
JM
575 error_at (expr_loc, "recursive instantiation of default member "
576 "initializer for %qD", member);
04eca83e
NS
577 init = error_mark_node;
578 }
579 else
580 {
16e723e6 581 cp_evaluated ev;
12659e10
JM
582
583 location_t sloc = input_location;
584 input_location = expr_loc;
585
04eca83e 586 DECL_INSTANTIATING_NSDMI_P (member) = 1;
9fb82e65 587
298434c9
JM
588 bool pushed = false;
589 if (!currently_open_class (DECL_CONTEXT (member)))
590 {
591 push_to_top_level ();
592 push_nested_class (DECL_CONTEXT (member));
593 pushed = true;
594 }
595
596 gcc_checking_assert (!processing_template_decl);
597
12659e10
JM
598 inject_this_parameter (DECL_CONTEXT (member), TYPE_UNQUALIFIED);
599
f44a8dd5
JM
600 start_lambda_scope (member);
601
04eca83e
NS
602 /* Do deferred instantiation of the NSDMI. */
603 init = (tsubst_copy_and_build
604 (init, DECL_TI_ARGS (member),
9fb82e65 605 complain, member, /*function_p=*/false,
04eca83e 606 /*integral_constant_expression_p=*/false));
9fb82e65 607 init = digest_nsdmi_init (member, init, complain);
f44a8dd5
JM
608
609 finish_lambda_scope ();
610
04eca83e 611 DECL_INSTANTIATING_NSDMI_P (member) = 0;
12659e10
JM
612
613 if (init != error_mark_node)
614 {
615 if (!nsdmi_inst)
21faa101 616 nsdmi_inst = tree_cache_map::create_ggc (37);
12659e10
JM
617 nsdmi_inst->put (member, init);
618 }
619
298434c9
JM
620 if (pushed)
621 {
622 pop_nested_class ();
623 pop_from_top_level ();
624 }
625
12659e10 626 input_location = sloc;
04eca83e 627 }
f4cd9c51 628 }
b15ea309 629 else
9fb82e65
JM
630 init = DECL_INITIAL (member);
631
7b49e3da 632 if (init && TREE_CODE (init) == DEFERRED_PARSE)
b15ea309 633 {
9fb82e65 634 if (complain & tf_error)
b15ea309 635 {
9fb82e65
JM
636 error ("default member initializer for %qD required before the end "
637 "of its enclosing class", member);
638 inform (location_of (init), "defined here");
b15ea309 639 DECL_INITIAL (member) = error_mark_node;
b15ea309 640 }
9fb82e65 641 init = error_mark_node;
b15ea309 642 }
9fb82e65 643
12659e10
JM
644 if (in_ctor)
645 {
646 current_class_ptr = save_ccp;
647 current_class_ref = save_ccr;
648 }
649 else
650 {
651 /* Use a PLACEHOLDER_EXPR when we don't have a 'this' parameter to
652 refer to; constexpr evaluation knows what to do with it. */
653 current_class_ref = build0 (PLACEHOLDER_EXPR, DECL_CONTEXT (member));
654 current_class_ptr = build_address (current_class_ref);
655 }
656
9fb82e65
JM
657 /* Strip redundant TARGET_EXPR so we don't need to remap it, and
658 so the aggregate init code below will see a CONSTRUCTOR. */
659 bool simple_target = (init && SIMPLE_TARGET_EXPR_P (init));
660 if (simple_target)
661 init = TARGET_EXPR_INITIAL (init);
45d14461 662 init = break_out_target_exprs (init, /*loc*/true);
9fb82e65
JM
663 if (simple_target && TREE_CODE (init) != CONSTRUCTOR)
664 /* Now put it back so C++17 copy elision works. */
665 init = get_target_expr (init);
666
b15ea309
JM
667 current_class_ptr = save_ccp;
668 current_class_ref = save_ccr;
669 return init;
670}
671
945c17d8
MS
672/* Diagnose the flexible array MEMBER if its INITializer is non-null
673 and return true if so. Otherwise return false. */
674
a232a1cb 675bool
945c17d8
MS
676maybe_reject_flexarray_init (tree member, tree init)
677{
678 tree type = TREE_TYPE (member);
679
680 if (!init
681 || TREE_CODE (type) != ARRAY_TYPE
682 || TYPE_DOMAIN (type))
683 return false;
684
685 /* Point at the flexible array member declaration if it's initialized
686 in-class, and at the ctor if it's initialized in a ctor member
687 initializer list. */
688 location_t loc;
689 if (DECL_INITIAL (member) == init
a232a1cb 690 || !current_function_decl
945c17d8
MS
691 || DECL_DEFAULTED_FN (current_function_decl))
692 loc = DECL_SOURCE_LOCATION (member);
693 else
694 loc = DECL_SOURCE_LOCATION (current_function_decl);
695
696 error_at (loc, "initializer for flexible array member %q#D", member);
697 return true;
698}
699
04eb9c55
JM
700/* If INIT's value can come from a call to std::initializer_list<T>::begin,
701 return that function. Otherwise, NULL_TREE. */
702
703static tree
704find_list_begin (tree init)
705{
706 STRIP_NOPS (init);
707 while (TREE_CODE (init) == COMPOUND_EXPR)
708 init = TREE_OPERAND (init, 1);
709 STRIP_NOPS (init);
710 if (TREE_CODE (init) == COND_EXPR)
711 {
712 tree left = TREE_OPERAND (init, 1);
713 if (!left)
714 left = TREE_OPERAND (init, 0);
715 left = find_list_begin (left);
716 if (left)
717 return left;
718 return find_list_begin (TREE_OPERAND (init, 2));
719 }
720 if (TREE_CODE (init) == CALL_EXPR)
721 if (tree fn = get_callee_fndecl (init))
722 if (id_equal (DECL_NAME (fn), "begin")
723 && is_std_init_list (DECL_CONTEXT (fn)))
724 return fn;
725 return NULL_TREE;
726}
727
728/* If INIT initializing MEMBER is copying the address of the underlying array
729 of an initializer_list, warn. */
730
731static void
732maybe_warn_list_ctor (tree member, tree init)
733{
734 tree memtype = TREE_TYPE (member);
735 if (!init || !TYPE_PTR_P (memtype)
736 || !is_list_ctor (current_function_decl))
737 return;
738
739 tree parms = FUNCTION_FIRST_USER_PARMTYPE (current_function_decl);
740 tree initlist = non_reference (TREE_VALUE (parms));
741 tree targs = CLASSTYPE_TI_ARGS (initlist);
742 tree elttype = TREE_VEC_ELT (targs, 0);
743
744 if (!same_type_ignoring_top_level_qualifiers_p
745 (TREE_TYPE (memtype), elttype))
746 return;
747
748 tree begin = find_list_begin (init);
749 if (!begin)
750 return;
751
f9d0ca40 752 location_t loc = cp_expr_loc_or_input_loc (init);
04eb9c55
JM
753 warning_at (loc, OPT_Winit_list_lifetime,
754 "initializing %qD from %qE does not extend the lifetime "
755 "of the underlying array", member, begin);
756}
757
2282d28d
MM
758/* Initialize MEMBER, a FIELD_DECL, with INIT, a TREE_LIST of
759 arguments. If TREE_LIST is void_type_node, an empty initializer
760 list was given; if NULL_TREE no initializer was given. */
e92cc029 761
8d08fdba 762static void
2282d28d 763perform_member_init (tree member, tree init)
8d08fdba
MS
764{
765 tree decl;
766 tree type = TREE_TYPE (member);
2282d28d 767
0e5f8a59
JM
768 /* Use the non-static data member initializer if there was no
769 mem-initializer for this field. */
770 if (init == NULL_TREE)
9fb82e65 771 init = get_nsdmi (member, /*ctor*/true, tf_warning_or_error);
0e5f8a59 772
a9eba00e
PC
773 if (init == error_mark_node)
774 return;
775
2282d28d
MM
776 /* Effective C++ rule 12 requires that all data members be
777 initialized. */
9dbd4406 778 if (warn_ecpp && init == NULL_TREE && TREE_CODE (type) != ARRAY_TYPE)
c5d75364
MLI
779 warning_at (DECL_SOURCE_LOCATION (current_function_decl), OPT_Weffc__,
780 "%qD should be initialized in the member initialization list",
781 member);
2282d28d 782
2282d28d 783 /* Get an lvalue for the data member. */
50ad9642
MM
784 decl = build_class_member_access_expr (current_class_ref, member,
785 /*access_path=*/NULL_TREE,
5ade1ed2
DG
786 /*preserve_reference=*/true,
787 tf_warning_or_error);
2fbfe9b8
MS
788 if (decl == error_mark_node)
789 return;
790
c11e39b0
JW
791 if (warn_init_self && init && TREE_CODE (init) == TREE_LIST
792 && TREE_CHAIN (init) == NULL_TREE)
793 {
794 tree val = TREE_VALUE (init);
0aa359c1
PC
795 /* Handle references. */
796 if (REFERENCE_REF_P (val))
797 val = TREE_OPERAND (val, 0);
c11e39b0
JW
798 if (TREE_CODE (val) == COMPONENT_REF && TREE_OPERAND (val, 1) == member
799 && TREE_OPERAND (val, 0) == current_class_ref)
800 warning_at (DECL_SOURCE_LOCATION (current_function_decl),
0ccb505d 801 OPT_Winit_self, "%qD is initialized with itself",
c11e39b0
JW
802 member);
803 }
804
9dbd4406
JM
805 if (init == void_type_node)
806 {
807 /* mem() means value-initialization. */
808 if (TREE_CODE (type) == ARRAY_TYPE)
0f737a30 809 {
9c69dcea 810 init = build_vec_init_expr (type, init, tf_warning_or_error);
4de2f020 811 init = build2 (INIT_EXPR, type, decl, init);
0f737a30
JJ
812 finish_expr_stmt (init);
813 }
9dbd4406
JM
814 else
815 {
48e5d119
PC
816 tree value = build_value_init (type, tf_warning_or_error);
817 if (value == error_mark_node)
818 return;
819 init = build2 (INIT_EXPR, type, decl, value);
351ccf20 820 finish_expr_stmt (init);
9dbd4406 821 }
9dbd4406 822 }
6bdb8141
JM
823 /* Deal with this here, as we will get confused if we try to call the
824 assignment op for an anonymous union. This can happen in a
825 synthesized copy constructor. */
9dbd4406 826 else if (ANON_AGGR_TYPE_P (type))
6bdb8141 827 {
ff9f1a5d
MM
828 if (init)
829 {
f293ce4b 830 init = build2 (INIT_EXPR, type, decl, TREE_VALUE (init));
ff9f1a5d
MM
831 finish_expr_stmt (init);
832 }
6bdb8141 833 }
e2df21bf 834 else if (init
9f613f06 835 && (TYPE_REF_P (type)
e2df21bf
JM
836 /* Pre-digested NSDMI. */
837 || (((TREE_CODE (init) == CONSTRUCTOR
838 && TREE_TYPE (init) == type)
839 /* { } mem-initializer. */
840 || (TREE_CODE (init) == TREE_LIST
014397c2 841 && DIRECT_LIST_INIT_P (TREE_VALUE (init))))
e2df21bf
JM
842 && (CP_AGGREGATE_TYPE_P (type)
843 || is_std_init_list (type)))))
844 {
845 /* With references and list-initialization, we need to deal with
846 extending temporary lifetimes. 12.2p5: "A temporary bound to a
847 reference member in a constructor’s ctor-initializer (12.6.2)
848 persists until the constructor exits." */
849 unsigned i; tree t;
cd9cf97b 850 releasing_vec cleanups;
e2df21bf
JM
851 if (TREE_CODE (init) == TREE_LIST)
852 init = build_x_compound_expr_from_list (init, ELK_MEM_INIT,
853 tf_warning_or_error);
854 if (TREE_TYPE (init) != type)
4794d4b5
JM
855 {
856 if (BRACE_ENCLOSED_INITIALIZER_P (init)
857 && CP_AGGREGATE_TYPE_P (type))
858 init = reshape_init (type, init, tf_warning_or_error);
859 init = digest_init (type, init, tf_warning_or_error);
860 }
e2df21bf
JM
861 if (init == error_mark_node)
862 return;
f3fae478
JM
863 /* A FIELD_DECL doesn't really have a suitable lifetime, but
864 make_temporary_var_for_ref_to_temp will treat it as automatic and
865 set_up_extended_ref_temp wants to use the decl in a warning. */
2c6f7927 866 init = extend_ref_init_temps (member, init, &cleanups);
e2df21bf
JM
867 if (TREE_CODE (type) == ARRAY_TYPE
868 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (type)))
869 init = build_vec_init_expr (type, init, tf_warning_or_error);
870 init = build2 (INIT_EXPR, type, decl, init);
871 finish_expr_stmt (init);
9771b263 872 FOR_EACH_VEC_ELT (*cleanups, i, t)
e2df21bf 873 push_cleanup (decl, t, false);
e2df21bf 874 }
a0348261
JM
875 else if (type_build_ctor_call (type)
876 || (init && CLASS_TYPE_P (strip_array_types (type))))
8d08fdba 877 {
534ecb17 878 if (TREE_CODE (type) == ARRAY_TYPE)
8d08fdba 879 {
534ecb17
JM
880 if (init)
881 {
945c17d8
MS
882 /* Check to make sure the member initializer is valid and
883 something like a CONSTRUCTOR in: T a[] = { 1, 2 } and
884 if it isn't, return early to avoid triggering another
885 error below. */
886 if (maybe_reject_flexarray_init (member, init))
887 return;
888
889 if (TREE_CODE (init) != TREE_LIST || TREE_CHAIN (init))
dd56ca9f
JM
890 init = error_mark_node;
891 else
892 init = TREE_VALUE (init);
945c17d8 893
f41349a3
JM
894 if (BRACE_ENCLOSED_INITIALIZER_P (init))
895 init = digest_init (type, init, tf_warning_or_error);
534ecb17
JM
896 }
897 if (init == NULL_TREE
898 || same_type_ignoring_top_level_qualifiers_p (type,
899 TREE_TYPE (init)))
900 {
7e9a3ad3
MS
901 if (TYPE_DOMAIN (type) && TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
902 {
903 /* Initialize the array only if it's not a flexible
904 array member (i.e., if it has an upper bound). */
905 init = build_vec_init_expr (type, init, tf_warning_or_error);
906 init = build2 (INIT_EXPR, type, decl, init);
907 finish_expr_stmt (init);
908 }
534ecb17
JM
909 }
910 else
911 error ("invalid initializer for array member %q#D", member);
8d08fdba
MS
912 }
913 else
b87d79e6 914 {
b8bf6ad9
JM
915 int flags = LOOKUP_NORMAL;
916 if (DECL_DEFAULTED_FN (current_function_decl))
917 flags |= LOOKUP_DEFAULTED;
b87d79e6
JM
918 if (CP_TYPE_CONST_P (type)
919 && init == NULL_TREE
6132bdd7 920 && default_init_uninitialized_part (type))
0df9da03
FC
921 {
922 /* TYPE_NEEDS_CONSTRUCTING can be set just because we have a
923 vtable; still give this diagnostic. */
097f82ec 924 auto_diagnostic_group d;
0df9da03
FC
925 if (permerror (DECL_SOURCE_LOCATION (current_function_decl),
926 "uninitialized const member in %q#T", type))
927 inform (DECL_SOURCE_LOCATION (member),
928 "%q#D should be initialized", member );
929 }
b8bf6ad9 930 finish_expr_stmt (build_aggr_init (decl, init, flags,
b87d79e6
JM
931 tf_warning_or_error));
932 }
8d08fdba
MS
933 }
934 else
935 {
936 if (init == NULL_TREE)
937 {
31d1acec 938 tree core_type;
8d08fdba 939 /* member traversal: note it leaves init NULL */
9f613f06 940 if (TYPE_REF_P (type))
0df9da03 941 {
097f82ec 942 auto_diagnostic_group d;
0df9da03
FC
943 if (permerror (DECL_SOURCE_LOCATION (current_function_decl),
944 "uninitialized reference member in %q#T", type))
945 inform (DECL_SOURCE_LOCATION (member),
946 "%q#D should be initialized", member);
947 }
58ec3cc5 948 else if (CP_TYPE_CONST_P (type))
0df9da03 949 {
097f82ec 950 auto_diagnostic_group d;
0df9da03
FC
951 if (permerror (DECL_SOURCE_LOCATION (current_function_decl),
952 "uninitialized const member in %q#T", type))
953 inform (DECL_SOURCE_LOCATION (member),
954 "%q#D should be initialized", member );
955 }
31d1acec 956
69f36ba6
JM
957 core_type = strip_array_types (type);
958
012e6a1e
JM
959 if (CLASS_TYPE_P (core_type)
960 && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
961 || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
962 diagnose_uninitialized_cst_or_ref_member (core_type,
40bb78ad
FC
963 /*using_new=*/false,
964 /*complain=*/true);
8d08fdba
MS
965 }
966 else if (TREE_CODE (init) == TREE_LIST)
c7b62f14
NS
967 /* There was an explicit member initialization. Do some work
968 in that case. */
d555b1c7
PC
969 init = build_x_compound_expr_from_list (init, ELK_MEM_INIT,
970 tf_warning_or_error);
8d08fdba 971
04eb9c55
JM
972 maybe_warn_list_ctor (member, init);
973
945c17d8
MS
974 /* Reject a member initializer for a flexible array member. */
975 if (init && !maybe_reject_flexarray_init (member, init))
4f2e1536
MP
976 finish_expr_stmt (cp_build_modify_expr (input_location, decl,
977 INIT_EXPR, init,
5ade1ed2 978 tf_warning_or_error));
8d08fdba 979 }
eb66be0e 980
eca7fc57 981 if (type_build_dtor_call (type))
b7484fbe 982 {
de22184b
MS
983 tree expr;
984
50ad9642
MM
985 expr = build_class_member_access_expr (current_class_ref, member,
986 /*access_path=*/NULL_TREE,
5ade1ed2
DG
987 /*preserve_reference=*/false,
988 tf_warning_or_error);
3ec6bad3 989 expr = build_delete (type, expr, sfk_complete_destructor,
574cfaa4
JM
990 LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0,
991 tf_warning_or_error);
b7484fbe 992
eca7fc57
JM
993 if (expr != error_mark_node
994 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
659e5a7a 995 finish_eh_cleanup (expr);
b7484fbe 996 }
8d08fdba
MS
997}
998
ff9f1a5d
MM
999/* Returns a TREE_LIST containing (as the TREE_PURPOSE of each node) all
1000 the FIELD_DECLs on the TYPE_FIELDS list for T, in reverse order. */
1001
c8094d83 1002static tree
a81072c7 1003build_field_list (tree t, tree list, int *uses_unions_or_anon_p)
ff9f1a5d
MM
1004{
1005 tree fields;
1006
1007 /* Note whether or not T is a union. */
1008 if (TREE_CODE (t) == UNION_TYPE)
a81072c7 1009 *uses_unions_or_anon_p = 1;
ff9f1a5d 1010
910ad8de 1011 for (fields = TYPE_FIELDS (t); fields; fields = DECL_CHAIN (fields))
ff9f1a5d 1012 {
535335bf
JM
1013 tree fieldtype;
1014
ff9f1a5d 1015 /* Skip CONST_DECLs for enumeration constants and so forth. */
17bbb839 1016 if (TREE_CODE (fields) != FIELD_DECL || DECL_ARTIFICIAL (fields))
ff9f1a5d 1017 continue;
c8094d83 1018
535335bf 1019 fieldtype = TREE_TYPE (fields);
ff9f1a5d
MM
1020
1021 /* For an anonymous struct or union, we must recursively
1022 consider the fields of the anonymous type. They can be
1023 directly initialized from the constructor. */
535335bf 1024 if (ANON_AGGR_TYPE_P (fieldtype))
ff9f1a5d
MM
1025 {
1026 /* Add this field itself. Synthesized copy constructors
1027 initialize the entire aggregate. */
1028 list = tree_cons (fields, NULL_TREE, list);
1029 /* And now add the fields in the anonymous aggregate. */
a81072c7
JM
1030 list = build_field_list (fieldtype, list, uses_unions_or_anon_p);
1031 *uses_unions_or_anon_p = 1;
ff9f1a5d
MM
1032 }
1033 /* Add this field. */
1034 else if (DECL_NAME (fields))
1035 list = tree_cons (fields, NULL_TREE, list);
1036 }
1037
1038 return list;
1039}
1040
a81072c7
JM
1041/* Return the innermost aggregate scope for FIELD, whether that is
1042 the enclosing class or an anonymous aggregate within it. */
1043
1044static tree
1045innermost_aggr_scope (tree field)
1046{
1047 if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1048 return TREE_TYPE (field);
1049 else
1050 return DECL_CONTEXT (field);
1051}
1052
2282d28d
MM
1053/* The MEM_INITS are a TREE_LIST. The TREE_PURPOSE of each list gives
1054 a FIELD_DECL or BINFO in T that needs initialization. The
1055 TREE_VALUE gives the initializer, or list of initializer arguments.
1056
1057 Return a TREE_LIST containing all of the initializations required
1058 for T, in the order in which they should be performed. The output
1059 list has the same format as the input. */
e92cc029 1060
8d08fdba 1061static tree
2282d28d 1062sort_mem_initializers (tree t, tree mem_inits)
8d08fdba 1063{
ff9f1a5d 1064 tree init;
fa743e8c 1065 tree base, binfo, base_binfo;
2282d28d
MM
1066 tree sorted_inits;
1067 tree next_subobject;
9771b263 1068 vec<tree, va_gc> *vbases;
2282d28d 1069 int i;
a81072c7 1070 int uses_unions_or_anon_p = 0;
ff9f1a5d 1071
2282d28d
MM
1072 /* Build up a list of initializations. The TREE_PURPOSE of entry
1073 will be the subobject (a FIELD_DECL or BINFO) to initialize. The
1074 TREE_VALUE will be the constructor arguments, or NULL if no
1075 explicit initialization was provided. */
1076 sorted_inits = NULL_TREE;
c8094d83 1077
2282d28d 1078 /* Process the virtual bases. */
9ba5ff0f 1079 for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
9771b263 1080 vec_safe_iterate (vbases, i, &base); i++)
58c42dc2 1081 sorted_inits = tree_cons (base, NULL_TREE, sorted_inits);
c8094d83 1082
2282d28d 1083 /* Process the direct bases. */
fa743e8c
NS
1084 for (binfo = TYPE_BINFO (t), i = 0;
1085 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
1086 if (!BINFO_VIRTUAL_P (base_binfo))
1087 sorted_inits = tree_cons (base_binfo, NULL_TREE, sorted_inits);
1088
2282d28d 1089 /* Process the non-static data members. */
a81072c7 1090 sorted_inits = build_field_list (t, sorted_inits, &uses_unions_or_anon_p);
2282d28d
MM
1091 /* Reverse the entire list of initializations, so that they are in
1092 the order that they will actually be performed. */
1093 sorted_inits = nreverse (sorted_inits);
1094
1095 /* If the user presented the initializers in an order different from
1096 that in which they will actually occur, we issue a warning. Keep
1097 track of the next subobject which can be explicitly initialized
1098 without issuing a warning. */
1099 next_subobject = sorted_inits;
1100
1101 /* Go through the explicit initializers, filling in TREE_PURPOSE in
1102 the SORTED_INITS. */
1103 for (init = mem_inits; init; init = TREE_CHAIN (init))
1104 {
1105 tree subobject;
1106 tree subobject_init;
1107
1108 subobject = TREE_PURPOSE (init);
1109
1110 /* If the explicit initializers are in sorted order, then
c8094d83 1111 SUBOBJECT will be NEXT_SUBOBJECT, or something following
2282d28d 1112 it. */
c8094d83
MS
1113 for (subobject_init = next_subobject;
1114 subobject_init;
2282d28d
MM
1115 subobject_init = TREE_CHAIN (subobject_init))
1116 if (TREE_PURPOSE (subobject_init) == subobject)
ff9f1a5d
MM
1117 break;
1118
2282d28d 1119 /* Issue a warning if the explicit initializer order does not
2cfe82fe 1120 match that which will actually occur.
0cbd7506 1121 ??? Are all these on the correct lines? */
2282d28d 1122 if (warn_reorder && !subobject_init)
ff9f1a5d 1123 {
2282d28d 1124 if (TREE_CODE (TREE_PURPOSE (next_subobject)) == FIELD_DECL)
af718670
PC
1125 warning_at (DECL_SOURCE_LOCATION (TREE_PURPOSE (next_subobject)),
1126 OPT_Wreorder, "%qD will be initialized after",
1127 TREE_PURPOSE (next_subobject));
2282d28d 1128 else
b323323f 1129 warning (OPT_Wreorder, "base %qT will be initialized after",
2282d28d
MM
1130 TREE_PURPOSE (next_subobject));
1131 if (TREE_CODE (subobject) == FIELD_DECL)
af718670
PC
1132 warning_at (DECL_SOURCE_LOCATION (subobject),
1133 OPT_Wreorder, " %q#D", subobject);
2282d28d 1134 else
b323323f 1135 warning (OPT_Wreorder, " base %qT", subobject);
c5d75364
MLI
1136 warning_at (DECL_SOURCE_LOCATION (current_function_decl),
1137 OPT_Wreorder, " when initialized here");
ff9f1a5d 1138 }
b7484fbe 1139
2282d28d
MM
1140 /* Look again, from the beginning of the list. */
1141 if (!subobject_init)
ff9f1a5d 1142 {
2282d28d
MM
1143 subobject_init = sorted_inits;
1144 while (TREE_PURPOSE (subobject_init) != subobject)
1145 subobject_init = TREE_CHAIN (subobject_init);
ff9f1a5d 1146 }
c8094d83 1147
2282d28d
MM
1148 /* It is invalid to initialize the same subobject more than
1149 once. */
1150 if (TREE_VALUE (subobject_init))
ff9f1a5d 1151 {
2282d28d 1152 if (TREE_CODE (subobject) == FIELD_DECL)
c5d75364
MLI
1153 error_at (DECL_SOURCE_LOCATION (current_function_decl),
1154 "multiple initializations given for %qD",
1155 subobject);
2282d28d 1156 else
c5d75364
MLI
1157 error_at (DECL_SOURCE_LOCATION (current_function_decl),
1158 "multiple initializations given for base %qT",
1159 subobject);
ff9f1a5d
MM
1160 }
1161
2282d28d
MM
1162 /* Record the initialization. */
1163 TREE_VALUE (subobject_init) = TREE_VALUE (init);
1164 next_subobject = subobject_init;
ff9f1a5d
MM
1165 }
1166
1167 /* [class.base.init]
b7484fbe 1168
ff9f1a5d
MM
1169 If a ctor-initializer specifies more than one mem-initializer for
1170 multiple members of the same union (including members of
57ece258
JM
1171 anonymous unions), the ctor-initializer is ill-formed.
1172
1173 Here we also splice out uninitialized union members. */
a81072c7 1174 if (uses_unions_or_anon_p)
ff9f1a5d 1175 {
3a6a88c8 1176 tree *last_p = NULL;
57ece258
JM
1177 tree *p;
1178 for (p = &sorted_inits; *p; )
8d08fdba 1179 {
ff9f1a5d 1180 tree field;
535335bf 1181 tree ctx;
ff9f1a5d 1182
57ece258
JM
1183 init = *p;
1184
1185 field = TREE_PURPOSE (init);
1186
1187 /* Skip base classes. */
1188 if (TREE_CODE (field) != FIELD_DECL)
1189 goto next;
1190
a81072c7 1191 /* If this is an anonymous aggregate with no explicit initializer,
57ece258 1192 splice it out. */
a81072c7 1193 if (!TREE_VALUE (init) && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
57ece258
JM
1194 goto splice;
1195
ff9f1a5d
MM
1196 /* See if this field is a member of a union, or a member of a
1197 structure contained in a union, etc. */
a81072c7
JM
1198 ctx = innermost_aggr_scope (field);
1199
ff9f1a5d 1200 /* If this field is not a member of a union, skip it. */
a81072c7
JM
1201 if (TREE_CODE (ctx) != UNION_TYPE
1202 && !ANON_AGGR_TYPE_P (ctx))
57ece258
JM
1203 goto next;
1204
3a6a88c8
JM
1205 /* If this union member has no explicit initializer and no NSDMI,
1206 splice it out. */
1207 if (TREE_VALUE (init) || DECL_INITIAL (field))
1208 /* OK. */;
1209 else
57ece258 1210 goto splice;
8d08fdba 1211
ff9f1a5d
MM
1212 /* It's only an error if we have two initializers for the same
1213 union type. */
3a6a88c8 1214 if (!last_p)
6bdb8141 1215 {
3a6a88c8 1216 last_p = p;
57ece258 1217 goto next;
6bdb8141 1218 }
8d08fdba 1219
ff9f1a5d 1220 /* See if LAST_FIELD and the field initialized by INIT are
a81072c7
JM
1221 members of the same union (or the union itself). If so, there's
1222 a problem, unless they're actually members of the same structure
ff9f1a5d 1223 which is itself a member of a union. For example, given:
8d08fdba 1224
ff9f1a5d
MM
1225 union { struct { int i; int j; }; };
1226
1227 initializing both `i' and `j' makes sense. */
a81072c7
JM
1228 ctx = common_enclosing_class
1229 (innermost_aggr_scope (field),
1230 innermost_aggr_scope (TREE_PURPOSE (*last_p)));
3a6a88c8 1231
a81072c7
JM
1232 if (ctx && (TREE_CODE (ctx) == UNION_TYPE
1233 || ctx == TREE_TYPE (TREE_PURPOSE (*last_p))))
8d08fdba 1234 {
3a6a88c8
JM
1235 /* A mem-initializer hides an NSDMI. */
1236 if (TREE_VALUE (init) && !TREE_VALUE (*last_p))
1237 *last_p = TREE_CHAIN (*last_p);
1238 else if (TREE_VALUE (*last_p) && !TREE_VALUE (init))
1239 goto splice;
1240 else
2ef7251f
MP
1241 {
1242 error_at (DECL_SOURCE_LOCATION (current_function_decl),
1243 "initializations for multiple members of %qT",
1244 ctx);
1245 goto splice;
1246 }
8d08fdba 1247 }
ff9f1a5d 1248
3a6a88c8 1249 last_p = p;
57ece258
JM
1250
1251 next:
1252 p = &TREE_CHAIN (*p);
1253 continue;
1254 splice:
1255 *p = TREE_CHAIN (*p);
1256 continue;
b7484fbe
MS
1257 }
1258 }
8d08fdba 1259
2282d28d 1260 return sorted_inits;
b7484fbe
MS
1261}
1262
50bea0c5
JJ
1263/* Callback for cp_walk_tree to mark all PARM_DECLs in a tree as read. */
1264
1265static tree
1266mark_exp_read_r (tree *tp, int *, void *)
1267{
1268 tree t = *tp;
1269 if (TREE_CODE (t) == PARM_DECL)
1270 mark_exp_read (t);
1271 return NULL_TREE;
1272}
1273
2282d28d
MM
1274/* Initialize all bases and members of CURRENT_CLASS_TYPE. MEM_INITS
1275 is a TREE_LIST giving the explicit mem-initializer-list for the
1276 constructor. The TREE_PURPOSE of each entry is a subobject (a
1277 FIELD_DECL or a BINFO) of the CURRENT_CLASS_TYPE. The TREE_VALUE
1278 is a TREE_LIST giving the arguments to the constructor or
1279 void_type_node for an empty list of arguments. */
a9aedbc2 1280
3dbc07b6 1281void
2282d28d 1282emit_mem_initializers (tree mem_inits)
8d08fdba 1283{
b8bf6ad9
JM
1284 int flags = LOOKUP_NORMAL;
1285
72e4661a
PC
1286 /* We will already have issued an error message about the fact that
1287 the type is incomplete. */
1288 if (!COMPLETE_TYPE_P (current_class_type))
1289 return;
c8094d83 1290
238e471c
VV
1291 if (mem_inits
1292 && TYPE_P (TREE_PURPOSE (mem_inits))
1293 && same_type_p (TREE_PURPOSE (mem_inits), current_class_type))
1294 {
1295 /* Delegating constructor. */
1296 gcc_assert (TREE_CHAIN (mem_inits) == NULL_TREE);
1297 perform_target_ctor (TREE_VALUE (mem_inits));
1298 return;
1299 }
1300
85b5d65a 1301 if (DECL_DEFAULTED_FN (current_function_decl)
31f7f784 1302 && ! DECL_INHERITED_CTOR (current_function_decl))
b8bf6ad9
JM
1303 flags |= LOOKUP_DEFAULTED;
1304
2282d28d
MM
1305 /* Sort the mem-initializers into the order in which the
1306 initializations should be performed. */
1307 mem_inits = sort_mem_initializers (current_class_type, mem_inits);
8d08fdba 1308
1f5a253a 1309 in_base_initializer = 1;
c8094d83 1310
2282d28d 1311 /* Initialize base classes. */
3b616f08
PC
1312 for (; (mem_inits
1313 && TREE_CODE (TREE_PURPOSE (mem_inits)) != FIELD_DECL);
1314 mem_inits = TREE_CHAIN (mem_inits))
8d08fdba 1315 {
2282d28d
MM
1316 tree subobject = TREE_PURPOSE (mem_inits);
1317 tree arguments = TREE_VALUE (mem_inits);
1318
3b616f08
PC
1319 /* We already have issued an error message. */
1320 if (arguments == error_mark_node)
1321 continue;
1322
31f7f784
JM
1323 /* Suppress access control when calling the inherited ctor. */
1324 bool inherited_base = (DECL_INHERITED_CTOR (current_function_decl)
1325 && flag_new_inheriting_ctors
1326 && arguments);
1327 if (inherited_base)
1328 push_deferring_access_checks (dk_deferred);
1329
91ea6df3
GDR
1330 if (arguments == NULL_TREE)
1331 {
1332 /* If these initializations are taking place in a copy constructor,
1333 the base class should probably be explicitly initialized if there
1334 is a user-defined constructor in the base class (other than the
1335 default constructor, which will be called anyway). */
1336 if (extra_warnings
1337 && DECL_COPY_CONSTRUCTOR_P (current_function_decl)
1338 && type_has_user_nondefault_constructor (BINFO_TYPE (subobject)))
1339 warning_at (DECL_SOURCE_LOCATION (current_function_decl),
1340 OPT_Wextra, "base class %q#T should be explicitly "
1341 "initialized in the copy constructor",
1342 BINFO_TYPE (subobject));
91ea6df3 1343 }
2282d28d 1344
2282d28d 1345 /* Initialize the base. */
45e2bf2e 1346 if (!BINFO_VIRTUAL_P (subobject))
b7484fbe 1347 {
2282d28d 1348 tree base_addr;
c8094d83 1349
2282d28d 1350 base_addr = build_base_path (PLUS_EXPR, current_class_ptr,
a271590a 1351 subobject, 1, tf_warning_or_error);
2282d28d 1352 expand_aggr_init_1 (subobject, NULL_TREE,
04757a2a 1353 cp_build_fold_indirect_ref (base_addr),
2282d28d 1354 arguments,
b8bf6ad9 1355 flags,
5ade1ed2 1356 tf_warning_or_error);
2282d28d 1357 expand_cleanup_for_base (subobject, NULL_TREE);
8d08fdba 1358 }
45e2bf2e
NS
1359 else if (!ABSTRACT_CLASS_TYPE_P (current_class_type))
1360 /* C++14 DR1658 Means we do not have to construct vbases of
1361 abstract classes. */
1362 construct_virtual_base (subobject, arguments);
e3e9e8ca
JJ
1363 else
1364 /* When not constructing vbases of abstract classes, at least mark
1365 the arguments expressions as read to avoid
1366 -Wunused-but-set-parameter false positives. */
50bea0c5 1367 cp_walk_tree (&arguments, mark_exp_read_r, NULL, NULL);
31f7f784
JM
1368
1369 if (inherited_base)
1370 pop_deferring_access_checks ();
8d08fdba 1371 }
1f5a253a 1372 in_base_initializer = 0;
8d08fdba 1373
2282d28d 1374 /* Initialize the vptrs. */
cf2e003b 1375 initialize_vtbl_ptrs (current_class_ptr);
c8094d83 1376
2282d28d
MM
1377 /* Initialize the data members. */
1378 while (mem_inits)
8d08fdba 1379 {
2282d28d
MM
1380 perform_member_init (TREE_PURPOSE (mem_inits),
1381 TREE_VALUE (mem_inits));
1382 mem_inits = TREE_CHAIN (mem_inits);
b7484fbe 1383 }
8d08fdba
MS
1384}
1385
3ec6bad3
MM
1386/* Returns the address of the vtable (i.e., the value that should be
1387 assigned to the vptr) for BINFO. */
1388
2077db1b 1389tree
362efdc1 1390build_vtbl_address (tree binfo)
3ec6bad3 1391{
9965d119 1392 tree binfo_for = binfo;
3ec6bad3
MM
1393 tree vtbl;
1394
fc6633e0 1395 if (BINFO_VPTR_INDEX (binfo) && BINFO_VIRTUAL_P (binfo))
9965d119
NS
1396 /* If this is a virtual primary base, then the vtable we want to store
1397 is that for the base this is being used as the primary base of. We
1398 can't simply skip the initialization, because we may be expanding the
1399 inits of a subobject constructor where the virtual base layout
1400 can be different. */
fc6633e0
NS
1401 while (BINFO_PRIMARY_P (binfo_for))
1402 binfo_for = BINFO_INHERITANCE_CHAIN (binfo_for);
9965d119 1403
3ec6bad3
MM
1404 /* Figure out what vtable BINFO's vtable is based on, and mark it as
1405 used. */
9965d119 1406 vtbl = get_vtbl_decl_for_binfo (binfo_for);
c3439626 1407 TREE_USED (vtbl) = true;
3ec6bad3
MM
1408
1409 /* Now compute the address to use when initializing the vptr. */
6de9cd9a 1410 vtbl = unshare_expr (BINFO_VTABLE (binfo_for));
5a6ccc94 1411 if (VAR_P (vtbl))
6de9cd9a 1412 vtbl = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (vtbl)), vtbl);
3ec6bad3
MM
1413
1414 return vtbl;
1415}
1416
8d08fdba
MS
1417/* This code sets up the virtual function tables appropriate for
1418 the pointer DECL. It is a one-ply initialization.
1419
1420 BINFO is the exact type that DECL is supposed to be. In
1421 multiple inheritance, this might mean "C's A" if C : A, B. */
e92cc029 1422
8926095f 1423static void
362efdc1 1424expand_virtual_init (tree binfo, tree decl)
8d08fdba 1425{
8d08fdba 1426 tree vtbl, vtbl_ptr;
3ec6bad3 1427 tree vtt_index;
8d08fdba 1428
3ec6bad3
MM
1429 /* Compute the initializer for vptr. */
1430 vtbl = build_vtbl_address (binfo);
1431
3461fba7
NS
1432 /* We may get this vptr from a VTT, if this is a subobject
1433 constructor or subobject destructor. */
3ec6bad3
MM
1434 vtt_index = BINFO_VPTR_INDEX (binfo);
1435 if (vtt_index)
1436 {
1437 tree vtbl2;
1438 tree vtt_parm;
1439
1440 /* Compute the value to use, when there's a VTT. */
e0fff4b3 1441 vtt_parm = current_vtt_parm;
5d49b6a7 1442 vtbl2 = fold_build_pointer_plus (vtt_parm, vtt_index);
04757a2a 1443 vtbl2 = cp_build_fold_indirect_ref (vtbl2);
6de9cd9a 1444 vtbl2 = convert (TREE_TYPE (vtbl), vtbl2);
3ec6bad3
MM
1445
1446 /* The actual initializer is the VTT value only in the subobject
1447 constructor. In maybe_clone_body we'll substitute NULL for
1448 the vtt_parm in the case of the non-subobject constructor. */
eb0dbdc7 1449 vtbl = build_if_in_charge (vtbl, vtbl2);
3ec6bad3 1450 }
70ae3201
MM
1451
1452 /* Compute the location of the vtpr. */
04757a2a 1453 vtbl_ptr = build_vfield_ref (cp_build_fold_indirect_ref (decl),
338d90b8 1454 TREE_TYPE (binfo));
50bc768d 1455 gcc_assert (vtbl_ptr != error_mark_node);
8d08fdba 1456
70ae3201 1457 /* Assign the vtable to the vptr. */
4b978f96 1458 vtbl = convert_force (TREE_TYPE (vtbl_ptr), vtbl, 0, tf_warning_or_error);
4f2e1536
MP
1459 finish_expr_stmt (cp_build_modify_expr (input_location, vtbl_ptr, NOP_EXPR,
1460 vtbl, tf_warning_or_error));
8d08fdba
MS
1461}
1462
f33e32a8
MM
1463/* If an exception is thrown in a constructor, those base classes already
1464 constructed must be destroyed. This function creates the cleanup
0b8a1e58 1465 for BINFO, which has just been constructed. If FLAG is non-NULL,
838dfd8a 1466 it is a DECL which is nonzero when this base needs to be
0b8a1e58 1467 destroyed. */
f33e32a8
MM
1468
1469static void
362efdc1 1470expand_cleanup_for_base (tree binfo, tree flag)
f33e32a8
MM
1471{
1472 tree expr;
1473
eca7fc57 1474 if (!type_build_dtor_call (BINFO_TYPE (binfo)))
f33e32a8
MM
1475 return;
1476
0b8a1e58 1477 /* Call the destructor. */
c8094d83 1478 expr = build_special_member_call (current_class_ref,
4ba126e4 1479 base_dtor_identifier,
c166b898 1480 NULL,
4ba126e4 1481 binfo,
5ade1ed2
DG
1482 LOOKUP_NORMAL | LOOKUP_NONVIRTUAL,
1483 tf_warning_or_error);
eca7fc57
JM
1484
1485 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (BINFO_TYPE (binfo)))
1486 return;
1487
0b8a1e58 1488 if (flag)
db3927fb
AH
1489 expr = fold_build3_loc (input_location,
1490 COND_EXPR, void_type_node,
ba47d38d 1491 c_common_truthvalue_conversion (input_location, flag),
7866705a 1492 expr, integer_zero_node);
0b8a1e58 1493
659e5a7a 1494 finish_eh_cleanup (expr);
f33e32a8
MM
1495}
1496
2282d28d
MM
1497/* Construct the virtual base-class VBASE passing the ARGUMENTS to its
1498 constructor. */
e92cc029 1499
8d08fdba 1500static void
2282d28d 1501construct_virtual_base (tree vbase, tree arguments)
8d08fdba 1502{
2282d28d 1503 tree inner_if_stmt;
2282d28d 1504 tree exp;
c8094d83 1505 tree flag;
2282d28d
MM
1506
1507 /* If there are virtual base classes with destructors, we need to
1508 emit cleanups to destroy them if an exception is thrown during
1509 the construction process. These exception regions (i.e., the
1510 period during which the cleanups must occur) begin from the time
1511 the construction is complete to the end of the function. If we
1512 create a conditional block in which to initialize the
1513 base-classes, then the cleanup region for the virtual base begins
1514 inside a block, and ends outside of that block. This situation
1515 confuses the sjlj exception-handling code. Therefore, we do not
1516 create a single conditional block, but one for each
1517 initialization. (That way the cleanup regions always begin
3b426391 1518 in the outer block.) We trust the back end to figure out
2282d28d
MM
1519 that the FLAG will not change across initializations, and
1520 avoid doing multiple tests. */
910ad8de 1521 flag = DECL_CHAIN (DECL_ARGUMENTS (current_function_decl));
2282d28d
MM
1522 inner_if_stmt = begin_if_stmt ();
1523 finish_if_stmt_cond (flag, inner_if_stmt);
2282d28d
MM
1524
1525 /* Compute the location of the virtual base. If we're
1526 constructing virtual bases, then we must be the most derived
1527 class. Therefore, we don't have to look up the virtual base;
1528 we already know where it is. */
22ed7e5f
MM
1529 exp = convert_to_base_statically (current_class_ref, vbase);
1530
c8094d83 1531 expand_aggr_init_1 (vbase, current_class_ref, exp, arguments,
4b978f96 1532 0, tf_warning_or_error);
2282d28d 1533 finish_then_clause (inner_if_stmt);
325c3691 1534 finish_if_stmt (inner_if_stmt);
2282d28d
MM
1535
1536 expand_cleanup_for_base (vbase, flag);
8d08fdba
MS
1537}
1538
2ee887f2 1539/* Find the context in which this FIELD can be initialized. */
e92cc029 1540
2ee887f2 1541static tree
362efdc1 1542initializing_context (tree field)
2ee887f2
MS
1543{
1544 tree t = DECL_CONTEXT (field);
1545
1546 /* Anonymous union members can be initialized in the first enclosing
1547 non-anonymous union context. */
6bdb8141 1548 while (t && ANON_AGGR_TYPE_P (t))
2ee887f2
MS
1549 t = TYPE_CONTEXT (t);
1550 return t;
1551}
1552
8d08fdba
MS
1553/* Function to give error message if member initialization specification
1554 is erroneous. FIELD is the member we decided to initialize.
1555 TYPE is the type for which the initialization is being performed.
72b7eeff 1556 FIELD must be a member of TYPE.
c8094d83 1557
8d08fdba
MS
1558 MEMBER_NAME is the name of the member. */
1559
1560static int
362efdc1 1561member_init_ok_or_else (tree field, tree type, tree member_name)
8d08fdba
MS
1562{
1563 if (field == error_mark_node)
1564 return 0;
a723baf1 1565 if (!field)
8d08fdba 1566 {
15a7ee29 1567 error ("class %qT does not have any field named %qD", type,
a723baf1 1568 member_name);
8d08fdba
MS
1569 return 0;
1570 }
5a6ccc94 1571 if (VAR_P (field))
b7484fbe 1572 {
15a7ee29 1573 error ("%q#D is a static data member; it can only be "
a723baf1
MM
1574 "initialized at its definition",
1575 field);
1576 return 0;
1577 }
1578 if (TREE_CODE (field) != FIELD_DECL)
1579 {
15a7ee29 1580 error ("%q#D is not a non-static data member of %qT",
a723baf1
MM
1581 field, type);
1582 return 0;
1583 }
1584 if (initializing_context (field) != type)
1585 {
15a7ee29 1586 error ("class %qT does not have any field named %qD", type,
a723baf1 1587 member_name);
b7484fbe
MS
1588 return 0;
1589 }
1590
8d08fdba
MS
1591 return 1;
1592}
1593
2282d28d
MM
1594/* NAME is a FIELD_DECL, an IDENTIFIER_NODE which names a field, or it
1595 is a _TYPE node or TYPE_DECL which names a base for that type.
1f5a253a
NS
1596 Check the validity of NAME, and return either the base _TYPE, base
1597 binfo, or the FIELD_DECL of the member. If NAME is invalid, return
2282d28d 1598 NULL_TREE and issue a diagnostic.
8d08fdba 1599
36a68fe7
NS
1600 An old style unnamed direct single base construction is permitted,
1601 where NAME is NULL. */
8d08fdba 1602
fd74ca0b 1603tree
1f5a253a 1604expand_member_init (tree name)
8d08fdba 1605{
2282d28d
MM
1606 tree basetype;
1607 tree field;
8d08fdba 1608
2282d28d 1609 if (!current_class_ref)
fd74ca0b 1610 return NULL_TREE;
8d08fdba 1611
36a68fe7 1612 if (!name)
90418208 1613 {
36a68fe7
NS
1614 /* This is an obsolete unnamed base class initializer. The
1615 parser will already have warned about its use. */
604a3205 1616 switch (BINFO_N_BASE_BINFOS (TYPE_BINFO (current_class_type)))
36a68fe7
NS
1617 {
1618 case 0:
15a7ee29 1619 error ("unnamed initializer for %qT, which has no base classes",
2282d28d 1620 current_class_type);
36a68fe7
NS
1621 return NULL_TREE;
1622 case 1:
604a3205
NS
1623 basetype = BINFO_TYPE
1624 (BINFO_BASE_BINFO (TYPE_BINFO (current_class_type), 0));
36a68fe7
NS
1625 break;
1626 default:
15a7ee29 1627 error ("unnamed initializer for %qT, which uses multiple inheritance",
2282d28d 1628 current_class_type);
36a68fe7
NS
1629 return NULL_TREE;
1630 }
90418208 1631 }
36a68fe7 1632 else if (TYPE_P (name))
be99da77 1633 {
a82d6da5 1634 basetype = TYPE_MAIN_VARIANT (name);
36a68fe7 1635 name = TYPE_NAME (name);
be99da77 1636 }
36a68fe7
NS
1637 else if (TREE_CODE (name) == TYPE_DECL)
1638 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (name));
2282d28d
MM
1639 else
1640 basetype = NULL_TREE;
8d08fdba 1641
36a68fe7 1642 if (basetype)
41efda8f 1643 {
d9148cf4
MM
1644 tree class_binfo;
1645 tree direct_binfo;
1646 tree virtual_binfo;
1647 int i;
2282d28d 1648
5cd5a78c
JM
1649 if (current_template_parms
1650 || same_type_p (basetype, current_class_type))
238e471c 1651 return basetype;
2282d28d 1652
d9148cf4
MM
1653 class_binfo = TYPE_BINFO (current_class_type);
1654 direct_binfo = NULL_TREE;
1655 virtual_binfo = NULL_TREE;
1656
1657 /* Look for a direct base. */
fa743e8c 1658 for (i = 0; BINFO_BASE_ITERATE (class_binfo, i, direct_binfo); ++i)
539ed333 1659 if (SAME_BINFO_TYPE_P (BINFO_TYPE (direct_binfo), basetype))
fa743e8c
NS
1660 break;
1661
d9148cf4
MM
1662 /* Look for a virtual base -- unless the direct base is itself
1663 virtual. */
809e3e7f 1664 if (!direct_binfo || !BINFO_VIRTUAL_P (direct_binfo))
58c42dc2 1665 virtual_binfo = binfo_for_vbase (basetype, current_class_type);
d9148cf4
MM
1666
1667 /* [class.base.init]
c8094d83 1668
0cbd7506 1669 If a mem-initializer-id is ambiguous because it designates
d9148cf4
MM
1670 both a direct non-virtual base class and an inherited virtual
1671 base class, the mem-initializer is ill-formed. */
1672 if (direct_binfo && virtual_binfo)
1673 {
15a7ee29 1674 error ("%qD is both a direct base and an indirect virtual base",
d9148cf4
MM
1675 basetype);
1676 return NULL_TREE;
1677 }
1678
1679 if (!direct_binfo && !virtual_binfo)
8d08fdba 1680 {
5775a06a 1681 if (CLASSTYPE_VBASECLASSES (current_class_type))
c3115fd2
MM
1682 error ("type %qT is not a direct or virtual base of %qT",
1683 basetype, current_class_type);
41efda8f 1684 else
c3115fd2
MM
1685 error ("type %qT is not a direct base of %qT",
1686 basetype, current_class_type);
fd74ca0b 1687 return NULL_TREE;
41efda8f 1688 }
d9148cf4
MM
1689
1690 return direct_binfo ? direct_binfo : virtual_binfo;
41efda8f
MM
1691 }
1692 else
1693 {
9dc6f476 1694 if (identifier_p (name))
86ac0575 1695 field = lookup_field (current_class_type, name, 1, false);
2282d28d
MM
1696 else
1697 field = name;
8d08fdba 1698
2282d28d 1699 if (member_init_ok_or_else (field, current_class_type, name))
1f5a253a 1700 return field;
41efda8f 1701 }
fd74ca0b 1702
2282d28d 1703 return NULL_TREE;
8d08fdba
MS
1704}
1705
1706/* This is like `expand_member_init', only it stores one aggregate
1707 value into another.
1708
1709 INIT comes in two flavors: it is either a value which
1710 is to be stored in EXP, or it is a parameter list
1711 to go to a constructor, which will operate on EXP.
f30432d7
MS
1712 If INIT is not a parameter list for a constructor, then set
1713 LOOKUP_ONLYCONVERTING.
6060a796
MS
1714 If FLAGS is LOOKUP_ONLYCONVERTING then it is the = init form of
1715 the initializer, if FLAGS is 0, then it is the (init) form.
8d08fdba 1716 If `init' is a CONSTRUCTOR, then we emit a warning message,
59be0cdd 1717 explaining that such initializations are invalid.
8d08fdba 1718
8d08fdba
MS
1719 If INIT resolves to a CALL_EXPR which happens to return
1720 something of the type we are looking for, then we know
1721 that we can safely use that call to perform the
1722 initialization.
1723
1724 The virtual function table pointer cannot be set up here, because
1725 we do not really know its type.
1726
8d08fdba
MS
1727 This never calls operator=().
1728
1729 When initializing, nothing is CONST.
1730
1731 A default copy constructor may have to be used to perform the
1732 initialization.
1733
1734 A constructor or a conversion operator may have to be used to
e92cc029 1735 perform the initialization, but not both, as it would be ambiguous. */
8d08fdba 1736
f1dedc31 1737tree
5ade1ed2 1738build_aggr_init (tree exp, tree init, int flags, tsubst_flags_t complain)
8d08fdba 1739{
f1dedc31
MM
1740 tree stmt_expr;
1741 tree compound_stmt;
1742 int destroy_temps;
8d08fdba
MS
1743 tree type = TREE_TYPE (exp);
1744 int was_const = TREE_READONLY (exp);
f30432d7 1745 int was_volatile = TREE_THIS_VOLATILE (exp);
2a3398e1 1746 int is_global;
8d08fdba
MS
1747
1748 if (init == error_mark_node)
f1dedc31 1749 return error_mark_node;
8d08fdba 1750
d1a73b0b 1751 location_t init_loc = (init
f9d0ca40 1752 ? cp_expr_loc_or_input_loc (init)
d1a73b0b
JM
1753 : location_of (exp));
1754
8d08fdba 1755 TREE_READONLY (exp) = 0;
f30432d7
MS
1756 TREE_THIS_VOLATILE (exp) = 0;
1757
8d08fdba
MS
1758 if (TREE_CODE (type) == ARRAY_TYPE)
1759 {
70f40fea
JJ
1760 tree itype = init ? TREE_TYPE (init) : NULL_TREE;
1761 int from_array = 0;
671cb993 1762
70f40fea 1763 if (VAR_P (exp) && DECL_DECOMPOSITION_P (exp))
0655c6d5
JM
1764 {
1765 from_array = 1;
69ce0c8c 1766 init = mark_rvalue_use (init);
dfd7fdca
DM
1767 if (init
1768 && DECL_P (tree_strip_any_location_wrapper (init))
0655c6d5
JM
1769 && !(flags & LOOKUP_ONLYCONVERTING))
1770 {
1771 /* Wrap the initializer in a CONSTRUCTOR so that build_vec_init
1772 recognizes it as direct-initialization. */
1773 init = build_constructor_single (init_list_type_node,
1774 NULL_TREE, init);
1775 CONSTRUCTOR_IS_DIRECT_INIT (init) = true;
1776 }
1777 }
70f40fea 1778 else
8d08fdba 1779 {
70f40fea
JJ
1780 /* Must arrange to initialize each element of EXP
1781 from elements of INIT. */
1782 if (cv_qualified_p (type))
1783 TREE_TYPE (exp) = cv_unqualified (type);
1784 if (itype && cv_qualified_p (itype))
1785 TREE_TYPE (init) = cv_unqualified (itype);
1786 from_array = (itype && same_type_p (TREE_TYPE (init),
1787 TREE_TYPE (exp)));
d1a73b0b 1788
e278212e
PC
1789 if (init && !BRACE_ENCLOSED_INITIALIZER_P (init)
1790 && (!from_array
1791 || (TREE_CODE (init) != CONSTRUCTOR
1792 /* Can happen, eg, handling the compound-literals
1793 extension (ext/complit12.C). */
1794 && TREE_CODE (init) != TARGET_EXPR)))
d1a73b0b
JM
1795 {
1796 if (complain & tf_error)
e278212e
PC
1797 error_at (init_loc, "array must be initialized "
1798 "with a brace-enclosed initializer");
1799 return error_mark_node;
d1a73b0b 1800 }
8d08fdba 1801 }
70f40fea 1802
a48cccea 1803 stmt_expr = build_vec_init (exp, NULL_TREE, init,
844ae01d 1804 /*explicit_value_init_p=*/false,
70f40fea 1805 from_array,
5ade1ed2 1806 complain);
8d08fdba 1807 TREE_READONLY (exp) = was_const;
f30432d7 1808 TREE_THIS_VOLATILE (exp) = was_volatile;
8d08fdba 1809 TREE_TYPE (exp) = type;
a47c2f62
JM
1810 /* Restore the type of init unless it was used directly. */
1811 if (init && TREE_CODE (stmt_expr) != INIT_EXPR)
f376e137 1812 TREE_TYPE (init) = itype;
f1dedc31 1813 return stmt_expr;
8d08fdba
MS
1814 }
1815
0655c6d5
JM
1816 if (init && init != void_type_node
1817 && TREE_CODE (init) != TREE_LIST
1818 && !(TREE_CODE (init) == TARGET_EXPR
1819 && TARGET_EXPR_DIRECT_INIT_P (init))
1820 && !DIRECT_LIST_INIT_P (init))
1821 flags |= LOOKUP_ONLYCONVERTING;
1822
2a3398e1 1823 is_global = begin_init_stmts (&stmt_expr, &compound_stmt);
f2c5f623 1824 destroy_temps = stmts_are_full_exprs_p ();
ae499cce 1825 current_stmt_tree ()->stmts_are_full_exprs_p = 0;
8d08fdba 1826 expand_aggr_init_1 (TYPE_BINFO (type), exp, exp,
5ade1ed2 1827 init, LOOKUP_NORMAL|flags, complain);
2a3398e1 1828 stmt_expr = finish_init_stmts (is_global, stmt_expr, compound_stmt);
ae499cce 1829 current_stmt_tree ()->stmts_are_full_exprs_p = destroy_temps;
8d08fdba 1830 TREE_READONLY (exp) = was_const;
f30432d7 1831 TREE_THIS_VOLATILE (exp) = was_volatile;
f1dedc31 1832
b46b715d
JM
1833 if ((VAR_P (exp) || TREE_CODE (exp) == PARM_DECL)
1834 && TREE_SIDE_EFFECTS (stmt_expr)
1835 && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (type)))
1836 /* Just know that we've seen something for this node. */
1837 TREE_USED (exp) = 1;
1838
f1dedc31 1839 return stmt_expr;
8d08fdba
MS
1840}
1841
1842static void
5ade1ed2
DG
1843expand_default_init (tree binfo, tree true_exp, tree exp, tree init, int flags,
1844 tsubst_flags_t complain)
8d08fdba 1845{
fc378698
MS
1846 tree type = TREE_TYPE (exp);
1847
8d08fdba
MS
1848 /* It fails because there may not be a constructor which takes
1849 its own type as the first (or only parameter), but which does
1850 take other types via a conversion. So, if the thing initializing
1851 the expression is a unit element of type X, first try X(X&),
1852 followed by initialization by X. If neither of these work
1853 out, then look hard. */
1854 tree rval;
9771b263 1855 vec<tree, va_gc> *parms;
8d08fdba 1856
2061820e
JM
1857 /* If we have direct-initialization from an initializer list, pull
1858 it out of the TREE_LIST so the code below can see it. */
1859 if (init && TREE_CODE (init) == TREE_LIST
014397c2 1860 && DIRECT_LIST_INIT_P (TREE_VALUE (init)))
2061820e
JM
1861 {
1862 gcc_checking_assert ((flags & LOOKUP_ONLYCONVERTING) == 0
1863 && TREE_CHAIN (init) == NULL_TREE);
1864 init = TREE_VALUE (init);
f0516ca4
JJ
1865 /* Only call reshape_init if it has not been called earlier
1866 by the callers. */
1867 if (BRACE_ENCLOSED_INITIALIZER_P (init) && CP_AGGREGATE_TYPE_P (type))
1868 init = reshape_init (type, init, complain);
2061820e
JM
1869 }
1870
4c9b3895
JM
1871 if (init && BRACE_ENCLOSED_INITIALIZER_P (init)
1872 && CP_AGGREGATE_TYPE_P (type))
e08cc018
JM
1873 /* A brace-enclosed initializer for an aggregate. In C++0x this can
1874 happen for direct-initialization, too. */
f0516ca4 1875 init = digest_init (type, init, complain);
e08cc018
JM
1876
1877 /* A CONSTRUCTOR of the target's type is a previously digested
1878 initializer, whether that happened just above or in
1879 cp_parser_late_parsing_nsdmi.
1880
36cbfdb0
JM
1881 A TARGET_EXPR with TARGET_EXPR_DIRECT_INIT_P or TARGET_EXPR_LIST_INIT_P
1882 set represents the whole initialization, so we shouldn't build up
1883 another ctor call. */
e08cc018
JM
1884 if (init
1885 && (TREE_CODE (init) == CONSTRUCTOR
36cbfdb0
JM
1886 || (TREE_CODE (init) == TARGET_EXPR
1887 && (TARGET_EXPR_DIRECT_INIT_P (init)
1888 || TARGET_EXPR_LIST_INIT_P (init))))
e08cc018 1889 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (init), type))
4c9b3895 1890 {
e08cc018
JM
1891 /* Early initialization via a TARGET_EXPR only works for
1892 complete objects. */
1893 gcc_assert (TREE_CODE (init) == CONSTRUCTOR || true_exp == exp);
1894
4c9b3895
JM
1895 init = build2 (INIT_EXPR, TREE_TYPE (exp), exp, init);
1896 TREE_SIDE_EFFECTS (init) = 1;
1897 finish_expr_stmt (init);
1898 return;
1899 }
1900
277294d7 1901 if (init && TREE_CODE (init) != TREE_LIST
faf5394a
MS
1902 && (flags & LOOKUP_ONLYCONVERTING))
1903 {
1904 /* Base subobjects should only get direct-initialization. */
8dc2b103 1905 gcc_assert (true_exp == exp);
faf5394a 1906
c37dc68e
JM
1907 if (flags & DIRECT_BIND)
1908 /* Do nothing. We hit this in two cases: Reference initialization,
1909 where we aren't initializing a real variable, so we don't want
1910 to run a new constructor; and catching an exception, where we
1911 have already built up the constructor call so we could wrap it
1912 in an exception region. */;
1913 else
4b978f96
PC
1914 init = ocp_convert (type, init, CONV_IMPLICIT|CONV_FORCE_TEMP,
1915 flags, complain);
faf5394a 1916
4e8dca1c
JM
1917 if (TREE_CODE (init) == MUST_NOT_THROW_EXPR)
1918 /* We need to protect the initialization of a catch parm with a
1919 call to terminate(), which shows up as a MUST_NOT_THROW_EXPR
c7ae64f2 1920 around the TARGET_EXPR for the copy constructor. See
4e8dca1c
JM
1921 initialize_handler_parm. */
1922 {
f293ce4b
RS
1923 TREE_OPERAND (init, 0) = build2 (INIT_EXPR, TREE_TYPE (exp), exp,
1924 TREE_OPERAND (init, 0));
4e8dca1c
JM
1925 TREE_TYPE (init) = void_type_node;
1926 }
c7ae64f2 1927 else
f293ce4b 1928 init = build2 (INIT_EXPR, TREE_TYPE (exp), exp, init);
c7ae64f2 1929 TREE_SIDE_EFFECTS (init) = 1;
f1dedc31 1930 finish_expr_stmt (init);
faf5394a
MS
1931 return;
1932 }
1933
c166b898
ILT
1934 if (init == NULL_TREE)
1935 parms = NULL;
1936 else if (TREE_CODE (init) == TREE_LIST && !TREE_TYPE (init))
8d08fdba 1937 {
c166b898
ILT
1938 parms = make_tree_vector ();
1939 for (; init != NULL_TREE; init = TREE_CHAIN (init))
9771b263 1940 vec_safe_push (parms, TREE_VALUE (init));
8d08fdba 1941 }
8d08fdba 1942 else
c166b898 1943 parms = make_tree_vector_single (init);
8d08fdba 1944
238e471c
VV
1945 if (exp == current_class_ref && current_function_decl
1946 && DECL_HAS_IN_CHARGE_PARM_P (current_function_decl))
1947 {
1948 /* Delegating constructor. */
1949 tree complete;
1950 tree base;
c4ce224c
JM
1951 tree elt; unsigned i;
1952
1953 /* Unshare the arguments for the second call. */
cd9cf97b 1954 releasing_vec parms2;
9771b263 1955 FOR_EACH_VEC_SAFE_ELT (parms, i, elt)
c4ce224c
JM
1956 {
1957 elt = break_out_target_exprs (elt);
9771b263 1958 vec_safe_push (parms2, elt);
c4ce224c 1959 }
238e471c 1960 complete = build_special_member_call (exp, complete_ctor_identifier,
c4ce224c
JM
1961 &parms2, binfo, flags,
1962 complain);
1963 complete = fold_build_cleanup_point_expr (void_type_node, complete);
c4ce224c 1964
238e471c
VV
1965 base = build_special_member_call (exp, base_ctor_identifier,
1966 &parms, binfo, flags,
1967 complain);
c4ce224c 1968 base = fold_build_cleanup_point_expr (void_type_node, base);
eb0dbdc7 1969 rval = build_if_in_charge (complete, base);
238e471c
VV
1970 }
1971 else
1972 {
d6ef53f2
NS
1973 tree ctor_name = (true_exp == exp
1974 ? complete_ctor_identifier : base_ctor_identifier);
1975
238e471c
VV
1976 rval = build_special_member_call (exp, ctor_name, &parms, binfo, flags,
1977 complain);
c0cdf62c 1978 }
c166b898
ILT
1979
1980 if (parms != NULL)
1981 release_tree_vector (parms);
1982
fa2200cb
JM
1983 if (exp == true_exp && TREE_CODE (rval) == CALL_EXPR)
1984 {
1985 tree fn = get_callee_fndecl (rval);
a76c13bf 1986 if (fn && DECL_DECLARED_CONSTEXPR_P (fn))
fa2200cb 1987 {
3e605b20 1988 tree e = maybe_constant_init (rval, exp);
fa2200cb
JM
1989 if (TREE_CONSTANT (e))
1990 rval = build2 (INIT_EXPR, type, exp, e);
1991 }
1992 }
1993
1994 /* FIXME put back convert_to_void? */
25eb19ff 1995 if (TREE_SIDE_EFFECTS (rval))
fa2200cb 1996 finish_expr_stmt (rval);
8d08fdba
MS
1997}
1998
1999/* This function is responsible for initializing EXP with INIT
2000 (if any).
2001
2002 BINFO is the binfo of the type for who we are performing the
2003 initialization. For example, if W is a virtual base class of A and B,
2004 and C : A, B.
2005 If we are initializing B, then W must contain B's W vtable, whereas
2006 were we initializing C, W must contain C's W vtable.
2007
2008 TRUE_EXP is nonzero if it is the true expression being initialized.
2009 In this case, it may be EXP, or may just contain EXP. The reason we
2010 need this is because if EXP is a base element of TRUE_EXP, we
2011 don't necessarily know by looking at EXP where its virtual
2012 baseclass fields should really be pointing. But we do know
2013 from TRUE_EXP. In constructors, we don't know anything about
2014 the value being initialized.
2015
9f880ef9
MM
2016 FLAGS is just passed to `build_new_method_call'. See that function
2017 for its description. */
8d08fdba
MS
2018
2019static void
5ade1ed2
DG
2020expand_aggr_init_1 (tree binfo, tree true_exp, tree exp, tree init, int flags,
2021 tsubst_flags_t complain)
8d08fdba
MS
2022{
2023 tree type = TREE_TYPE (exp);
8d08fdba 2024
50bc768d 2025 gcc_assert (init != error_mark_node && type != error_mark_node);
38e01f9e 2026 gcc_assert (building_stmt_list_p ());
8d08fdba
MS
2027
2028 /* Use a function returning the desired type to initialize EXP for us.
2029 If the function is a constructor, and its first argument is
2030 NULL_TREE, know that it was meant for us--just slide exp on
2031 in and expand the constructor. Constructors now come
2032 as TARGET_EXPRs. */
faf5394a 2033
5a6ccc94 2034 if (init && VAR_P (exp)
3b2db49f 2035 && COMPOUND_LITERAL_P (init))
faf5394a 2036 {
9771b263 2037 vec<tree, va_gc> *cleanups = NULL;
f1dedc31 2038 /* If store_init_value returns NULL_TREE, the INIT has been
3b2db49f 2039 recorded as the DECL_INITIAL for EXP. That means there's
f1dedc31 2040 nothing more we have to do. */
b25dd954 2041 init = store_init_value (exp, init, &cleanups, flags);
25ebb82a
RH
2042 if (init)
2043 finish_expr_stmt (init);
b25dd954 2044 gcc_assert (!cleanups);
faf5394a
MS
2045 return;
2046 }
2047
f388b7be 2048 /* List-initialization from {} becomes value-initialization for non-aggregate
49b5925f
JM
2049 classes with default constructors. Handle this here when we're
2050 initializing a base, so protected access works. */
2051 if (exp != true_exp && init && TREE_CODE (init) == TREE_LIST)
f388b7be
JM
2052 {
2053 tree elt = TREE_VALUE (init);
2054 if (DIRECT_LIST_INIT_P (elt)
2055 && CONSTRUCTOR_ELTS (elt) == 0
2056 && CLASSTYPE_NON_AGGREGATE (type)
2057 && TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
2058 init = void_type_node;
2059 }
2060
fd97a96a
JM
2061 /* If an explicit -- but empty -- initializer list was present,
2062 that's value-initialization. */
2063 if (init == void_type_node)
2064 {
c2b3ec18
JM
2065 /* If the type has data but no user-provided ctor, we need to zero
2066 out the object. */
2067 if (!type_has_user_provided_constructor (type)
dbcd32f8 2068 && !is_really_empty_class (type, /*ignore_vptr*/true))
fd97a96a 2069 {
1fb0b801
JM
2070 tree field_size = NULL_TREE;
2071 if (exp != true_exp && CLASSTYPE_AS_BASE (type) != type)
2072 /* Don't clobber already initialized virtual bases. */
2073 field_size = TYPE_SIZE (CLASSTYPE_AS_BASE (type));
2074 init = build_zero_init_1 (type, NULL_TREE, /*static_storage_p=*/false,
2075 field_size);
fd97a96a
JM
2076 init = build2 (INIT_EXPR, type, exp, init);
2077 finish_expr_stmt (init);
fd97a96a 2078 }
1fb0b801 2079
fd97a96a 2080 /* If we don't need to mess with the constructor at all,
1fb0b801
JM
2081 then we're done. */
2082 if (! type_build_ctor_call (type))
2083 return;
2084
2085 /* Otherwise fall through and call the constructor. */
fd97a96a
JM
2086 init = NULL_TREE;
2087 }
2088
9e9ff709
MS
2089 /* We know that expand_default_init can handle everything we want
2090 at this point. */
5ade1ed2 2091 expand_default_init (binfo, true_exp, exp, init, flags, complain);
8d08fdba
MS
2092}
2093
9e1e64ec 2094/* Report an error if TYPE is not a user-defined, class type. If
be99da77 2095 OR_ELSE is nonzero, give an error message. */
e92cc029 2096
be99da77 2097int
9e1e64ec 2098is_class_type (tree type, int or_else)
be99da77
MS
2099{
2100 if (type == error_mark_node)
2101 return 0;
2102
9e1e64ec 2103 if (! CLASS_TYPE_P (type))
be99da77
MS
2104 {
2105 if (or_else)
9e1e64ec 2106 error ("%qT is not a class type", type);
be99da77
MS
2107 return 0;
2108 }
2109 return 1;
2110}
2111
8d08fdba 2112tree
362efdc1 2113get_type_value (tree name)
8d08fdba 2114{
8d08fdba
MS
2115 if (name == error_mark_node)
2116 return NULL_TREE;
2117
2118 if (IDENTIFIER_HAS_TYPE_VALUE (name))
2119 return IDENTIFIER_TYPE_VALUE (name);
8d08fdba
MS
2120 else
2121 return NULL_TREE;
2122}
051e6fd7 2123
a5ac359a
MM
2124/* Build a reference to a member of an aggregate. This is not a C++
2125 `&', but really something which can have its address taken, and
2126 then act as a pointer to member, for example TYPE :: FIELD can have
2127 its address taken by saying & TYPE :: FIELD. ADDRESS_P is true if
2128 this expression is the operand of "&".
8d08fdba
MS
2129
2130 @@ Prints out lousy diagnostics for operator <typename>
2131 @@ fields.
2132
51c184be 2133 @@ This function should be rewritten and placed in search.c. */
e92cc029 2134
8d08fdba 2135tree
a378996b
PC
2136build_offset_ref (tree type, tree member, bool address_p,
2137 tsubst_flags_t complain)
8d08fdba 2138{
8d245821 2139 tree decl;
fc378698 2140 tree basebinfo = NULL_TREE;
8d08fdba 2141
5f311aec 2142 /* class templates can come in as TEMPLATE_DECLs here. */
d4f0f205
MM
2143 if (TREE_CODE (member) == TEMPLATE_DECL)
2144 return member;
93cdc044 2145
627bc938
JM
2146 if (dependent_scope_p (type) || type_dependent_expression_p (member))
2147 return build_qualified_name (NULL_TREE, type, member,
2d660b7f 2148 /*template_p=*/false);
5566b478 2149
d4f0f205 2150 gcc_assert (TYPE_P (type));
9e1e64ec 2151 if (! is_class_type (type, 1))
c833d2be
NS
2152 return error_mark_node;
2153
d4f0f205
MM
2154 gcc_assert (DECL_P (member) || BASELINK_P (member));
2155 /* Callers should call mark_used before this point. */
3146f36f 2156 gcc_assert (!DECL_P (member) || TREE_USED (member));
be99da77 2157
627bc938 2158 type = TYPE_MAIN_VARIANT (type);
01628e54 2159 if (!COMPLETE_OR_OPEN_TYPE_P (complete_type (type)))
8d08fdba 2160 {
a378996b
PC
2161 if (complain & tf_error)
2162 error ("incomplete type %qT does not have member %qD", type, member);
a5ac359a
MM
2163 return error_mark_node;
2164 }
2165
d4f0f205 2166 /* Entities other than non-static members need no further
3db45ab5 2167 processing. */
a5ac359a 2168 if (TREE_CODE (member) == TYPE_DECL)
d4f0f205 2169 return member;
5a6ccc94 2170 if (VAR_P (member) || TREE_CODE (member) == CONST_DECL)
d4f0f205 2171 return convert_from_reference (member);
a5ac359a
MM
2172
2173 if (TREE_CODE (member) == FIELD_DECL && DECL_C_BIT_FIELD (member))
2174 {
a378996b
PC
2175 if (complain & tf_error)
2176 error ("invalid pointer to bit-field %qD", member);
a5ac359a
MM
2177 return error_mark_node;
2178 }
2179
d4f0f205
MM
2180 /* Set up BASEBINFO for member lookup. */
2181 decl = maybe_dummy_object (type, &basebinfo);
2182
aa52c1ff 2183 /* A lot of this logic is now handled in lookup_member. */
a5ac359a 2184 if (BASELINK_P (member))
8d08fdba 2185 {
8d08fdba 2186 /* Go from the TREE_BASELINK to the member function info. */
7304fcb4 2187 tree t = BASELINK_FUNCTIONS (member);
8d08fdba 2188
50ad9642 2189 if (TREE_CODE (t) != TEMPLATE_ID_EXPR && !really_overloaded_fn (t))
8d08fdba 2190 {
f4f206f4 2191 /* Get rid of a potential OVERLOAD around it. */
848bf88d 2192 t = OVL_FIRST (t);
2c73f9f5 2193
b54f5338
KL
2194 /* Unique functions are handled easily. */
2195
2196 /* For non-static member of base class, we need a special rule
2197 for access checking [class.protected]:
2198
2199 If the access is to form a pointer to member, the
2200 nested-name-specifier shall name the derived class
2201 (or any class derived from that class). */
080384d6 2202 bool ok;
b54f5338
KL
2203 if (address_p && DECL_P (t)
2204 && DECL_NONSTATIC_MEMBER_P (t))
080384d6
JM
2205 ok = perform_or_defer_access_check (TYPE_BINFO (type), t, t,
2206 complain);
b54f5338 2207 else
080384d6
JM
2208 ok = perform_or_defer_access_check (basebinfo, t, t,
2209 complain);
2210 if (!ok)
2211 return error_mark_node;
848b92e1
JM
2212 if (DECL_STATIC_FUNCTION_P (t))
2213 return t;
a5ac359a
MM
2214 member = t;
2215 }
2216 else
7304fcb4 2217 TREE_TYPE (member) = unknown_type_node;
8d08fdba 2218 }
b54f5338 2219 else if (address_p && TREE_CODE (member) == FIELD_DECL)
080384d6
JM
2220 {
2221 /* We need additional test besides the one in
2222 check_accessibility_of_qualified_id in case it is
2223 a pointer to non-static member. */
2224 if (!perform_or_defer_access_check (TYPE_BINFO (type), member, member,
2225 complain))
2226 return error_mark_node;
2227 }
8d08fdba 2228
a5ac359a 2229 if (!address_p)
8d08fdba 2230 {
a5ac359a
MM
2231 /* If MEMBER is non-static, then the program has fallen afoul of
2232 [expr.prim]:
8d08fdba 2233
a5ac359a
MM
2234 An id-expression that denotes a nonstatic data member or
2235 nonstatic member function of a class can only be used:
8d08fdba 2236
a5ac359a
MM
2237 -- as part of a class member access (_expr.ref_) in which the
2238 object-expression refers to the member's class or a class
2239 derived from that class, or
b7484fbe 2240
a5ac359a
MM
2241 -- to form a pointer to member (_expr.unary.op_), or
2242
2243 -- in the body of a nonstatic member function of that class or
2244 of a class derived from that class (_class.mfct.nonstatic_), or
2245
2246 -- in a mem-initializer for a constructor for that class or for
2247 a class derived from that class (_class.base.init_). */
2248 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (member))
2249 {
39a13be5 2250 /* Build a representation of the qualified name suitable
e9525111
MM
2251 for use as the operand to "&" -- even though the "&" is
2252 not actually present. */
f293ce4b 2253 member = build2 (OFFSET_REF, TREE_TYPE (member), decl, member);
a5ac359a
MM
2254 /* In Microsoft mode, treat a non-static member function as if
2255 it were a pointer-to-member. */
2256 if (flag_ms_extensions)
2257 {
a5ac359a 2258 PTRMEM_OK_P (member) = 1;
a378996b 2259 return cp_build_addr_expr (member, complain);
a5ac359a 2260 }
a378996b
PC
2261 if (complain & tf_error)
2262 error ("invalid use of non-static member function %qD",
2263 TREE_OPERAND (member, 1));
07471dfb 2264 return error_mark_node;
a5ac359a
MM
2265 }
2266 else if (TREE_CODE (member) == FIELD_DECL)
2267 {
a378996b
PC
2268 if (complain & tf_error)
2269 error ("invalid use of non-static data member %qD", member);
a5ac359a
MM
2270 return error_mark_node;
2271 }
2272 return member;
2273 }
8d08fdba 2274
f293ce4b 2275 member = build2 (OFFSET_REF, TREE_TYPE (member), decl, member);
8d245821
MM
2276 PTRMEM_OK_P (member) = 1;
2277 return member;
8d08fdba
MS
2278}
2279
393e756d
MM
2280/* If DECL is a scalar enumeration constant or variable with a
2281 constant initializer, return the initializer (or, its initializers,
69eb4fde
JM
2282 recursively); otherwise, return DECL. If STRICT_P, the
2283 initializer is only returned if DECL is a
90454da1
PC
2284 constant-expression. If RETURN_AGGREGATE_CST_OK_P, it is ok to
2285 return an aggregate constant. */
8d08fdba 2286
393e756d 2287static tree
69eb4fde 2288constant_value_1 (tree decl, bool strict_p, bool return_aggregate_cst_ok_p)
8d08fdba 2289{
f513e31f 2290 while (TREE_CODE (decl) == CONST_DECL
fd338b13
JM
2291 || decl_constant_var_p (decl)
2292 || (!strict_p && VAR_P (decl)
2293 && CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (decl))))
b794e321
MM
2294 {
2295 tree init;
fa2200cb
JM
2296 /* If DECL is a static data member in a template
2297 specialization, we must instantiate it here. The
2298 initializer for the static data member is not processed
2299 until needed; we need it now. */
fd5c817a 2300 mark_used (decl, tf_none);
fa2200cb 2301 init = DECL_INITIAL (decl);
d174af6c 2302 if (init == error_mark_node)
88274c4d 2303 {
cdd669f9
JJ
2304 if (TREE_CODE (decl) == CONST_DECL
2305 || DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
88274c4d
JM
2306 /* Treat the error as a constant to avoid cascading errors on
2307 excessively recursive template instantiation (c++/9335). */
2308 return init;
2309 else
2310 return decl;
2311 }
73ce7fcb
JJ
2312 /* Initializers in templates are generally expanded during
2313 instantiation, so before that for const int i(2)
2314 INIT is a TREE_LIST with the actual initializer as
2315 TREE_VALUE. */
2316 if (processing_template_decl
2317 && init
2318 && TREE_CODE (init) == TREE_LIST
2319 && TREE_CHAIN (init) == NULL_TREE)
2320 init = TREE_VALUE (init);
d1dfa20d
JM
2321 /* Instantiate a non-dependent initializer for user variables. We
2322 mustn't do this for the temporary for an array compound literal;
2323 trying to instatiate the initializer will keep creating new
2324 temporaries until we crash. Probably it's not useful to do it for
2325 other artificial variables, either. */
2326 if (!DECL_ARTIFICIAL (decl))
2327 init = instantiate_non_dependent_or_null (init);
d174af6c 2328 if (!init
b794e321 2329 || !TREE_TYPE (init)
8152661b 2330 || !TREE_CONSTANT (init)
69eb4fde 2331 || (!return_aggregate_cst_ok_p
90454da1
PC
2332 /* Unless RETURN_AGGREGATE_CST_OK_P is true, do not
2333 return an aggregate constant (of which string
2334 literals are a special case), as we do not want
2335 to make inadvertent copies of such entities, and
2336 we must be sure that their addresses are the
2337 same everywhere. */
8152661b
JM
2338 && (TREE_CODE (init) == CONSTRUCTOR
2339 || TREE_CODE (init) == STRING_CST)))
b794e321 2340 break;
62f9ab0d 2341 /* Don't return a CONSTRUCTOR for a variable with partial run-time
5a5da480
JJ
2342 initialization, since it doesn't represent the entire value.
2343 Similarly for VECTOR_CSTs created by cp_folding those
2344 CONSTRUCTORs. */
2345 if ((TREE_CODE (init) == CONSTRUCTOR
2346 || TREE_CODE (init) == VECTOR_CST)
62f9ab0d
JM
2347 && !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
2348 break;
6443c7c0
MP
2349 /* If the variable has a dynamic initializer, don't use its
2350 DECL_INITIAL which doesn't reflect the real value. */
2351 if (VAR_P (decl)
2352 && TREE_STATIC (decl)
2353 && !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl)
2354 && DECL_NONTRIVIALLY_INITIALIZED_P (decl))
2355 break;
57b37fe3 2356 decl = unshare_expr (init);
b794e321 2357 }
8a784e4a
NS
2358 return decl;
2359}
a1652802 2360
69eb4fde
JM
2361/* If DECL is a CONST_DECL, or a constant VAR_DECL initialized by constant
2362 of integral or enumeration type, or a constexpr variable of scalar type,
2363 then return that value. These are those variables permitted in constant
2364 expressions by [5.19/1]. */
a1652802 2365
8a784e4a 2366tree
69eb4fde 2367scalar_constant_value (tree decl)
8a784e4a 2368{
69eb4fde 2369 return constant_value_1 (decl, /*strict_p=*/true,
90454da1 2370 /*return_aggregate_cst_ok_p=*/false);
393e756d 2371}
c8094d83 2372
69eb4fde 2373/* Like scalar_constant_value, but can also return aggregate initializers. */
393e756d
MM
2374
2375tree
69eb4fde 2376decl_really_constant_value (tree decl)
393e756d 2377{
69eb4fde 2378 return constant_value_1 (decl, /*strict_p=*/true,
90454da1
PC
2379 /*return_aggregate_cst_ok_p=*/true);
2380}
2381
69eb4fde
JM
2382/* A more relaxed version of scalar_constant_value, used by the
2383 common C/C++ code. */
90454da1
PC
2384
2385tree
69eb4fde 2386decl_constant_value (tree decl)
90454da1 2387{
69eb4fde
JM
2388 return constant_value_1 (decl, /*strict_p=*/processing_template_decl,
2389 /*return_aggregate_cst_ok_p=*/true);
8d08fdba
MS
2390}
2391\f
8d08fdba 2392/* Common subroutines of build_new and build_vec_delete. */
8d08fdba 2393\f
63c9a190
MM
2394/* Build and return a NEW_EXPR. If NELTS is non-NULL, TYPE[NELTS] is
2395 the type of the object being allocated; otherwise, it's just TYPE.
2396 INIT is the initializer, if any. USE_GLOBAL_NEW is true if the
2397 user explicitly wrote "::operator new". PLACEMENT, if non-NULL, is
c166b898
ILT
2398 a vector of arguments to be provided as arguments to a placement
2399 new operator. This routine performs no semantic checks; it just
2400 creates and returns a NEW_EXPR. */
a0d5fba7 2401
63c9a190 2402static tree
9771b263
DN
2403build_raw_new_expr (vec<tree, va_gc> *placement, tree type, tree nelts,
2404 vec<tree, va_gc> *init, int use_global_new)
743f140d 2405{
c166b898 2406 tree init_list;
63c9a190 2407 tree new_expr;
3db45ab5 2408
c166b898
ILT
2409 /* If INIT is NULL, the we want to store NULL_TREE in the NEW_EXPR.
2410 If INIT is not NULL, then we want to store VOID_ZERO_NODE. This
2411 permits us to distinguish the case of a missing initializer "new
2412 int" from an empty initializer "new int()". */
2413 if (init == NULL)
2414 init_list = NULL_TREE;
9771b263 2415 else if (init->is_empty ())
632f2871 2416 init_list = void_node;
c166b898 2417 else
335a120f 2418 init_list = build_tree_list_vec (init);
c166b898
ILT
2419
2420 new_expr = build4 (NEW_EXPR, build_pointer_type (type),
2421 build_tree_list_vec (placement), type, nelts,
2422 init_list);
63c9a190
MM
2423 NEW_EXPR_USE_GLOBAL (new_expr) = use_global_new;
2424 TREE_SIDE_EFFECTS (new_expr) = 1;
2425
2426 return new_expr;
743f140d
PB
2427}
2428
9d809e8f
FC
2429/* Diagnose uninitialized const members or reference members of type
2430 TYPE. USING_NEW is used to disambiguate the diagnostic between a
40bb78ad
FC
2431 new expression without a new-initializer and a declaration. Returns
2432 the error count. */
9d809e8f 2433
40bb78ad 2434static int
9d809e8f 2435diagnose_uninitialized_cst_or_ref_member_1 (tree type, tree origin,
40bb78ad 2436 bool using_new, bool complain)
9d809e8f
FC
2437{
2438 tree field;
40bb78ad 2439 int error_count = 0;
9d809e8f 2440
10ab8f62 2441 if (type_has_user_provided_constructor (type))
40bb78ad 2442 return 0;
10ab8f62 2443
910ad8de 2444 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
9d809e8f
FC
2445 {
2446 tree field_type;
2447
2448 if (TREE_CODE (field) != FIELD_DECL)
2449 continue;
2450
2451 field_type = strip_array_types (TREE_TYPE (field));
2452
1c682d06
FC
2453 if (type_has_user_provided_constructor (field_type))
2454 continue;
2455
9f613f06 2456 if (TYPE_REF_P (field_type))
9d809e8f 2457 {
40bb78ad
FC
2458 ++ error_count;
2459 if (complain)
2460 {
0e02d8e3
PC
2461 if (DECL_CONTEXT (field) == origin)
2462 {
2463 if (using_new)
2464 error ("uninitialized reference member in %q#T "
2465 "using %<new%> without new-initializer", origin);
2466 else
2467 error ("uninitialized reference member in %q#T", origin);
2468 }
40bb78ad 2469 else
0e02d8e3
PC
2470 {
2471 if (using_new)
2472 error ("uninitialized reference member in base %q#T "
2473 "of %q#T using %<new%> without new-initializer",
2474 DECL_CONTEXT (field), origin);
2475 else
2476 error ("uninitialized reference member in base %q#T "
2477 "of %q#T", DECL_CONTEXT (field), origin);
2478 }
40bb78ad 2479 inform (DECL_SOURCE_LOCATION (field),
816551fe 2480 "%q#D should be initialized", field);
40bb78ad 2481 }
9d809e8f
FC
2482 }
2483
2484 if (CP_TYPE_CONST_P (field_type))
2485 {
40bb78ad
FC
2486 ++ error_count;
2487 if (complain)
2488 {
0e02d8e3
PC
2489 if (DECL_CONTEXT (field) == origin)
2490 {
2491 if (using_new)
2492 error ("uninitialized const member in %q#T "
2493 "using %<new%> without new-initializer", origin);
2494 else
2495 error ("uninitialized const member in %q#T", origin);
2496 }
40bb78ad 2497 else
0e02d8e3
PC
2498 {
2499 if (using_new)
2500 error ("uninitialized const member in base %q#T "
2501 "of %q#T using %<new%> without new-initializer",
2502 DECL_CONTEXT (field), origin);
2503 else
2504 error ("uninitialized const member in base %q#T "
2505 "of %q#T", DECL_CONTEXT (field), origin);
2506 }
40bb78ad 2507 inform (DECL_SOURCE_LOCATION (field),
816551fe 2508 "%q#D should be initialized", field);
40bb78ad 2509 }
9d809e8f
FC
2510 }
2511
2512 if (CLASS_TYPE_P (field_type))
40bb78ad
FC
2513 error_count
2514 += diagnose_uninitialized_cst_or_ref_member_1 (field_type, origin,
2515 using_new, complain);
9d809e8f 2516 }
40bb78ad 2517 return error_count;
9d809e8f
FC
2518}
2519
40bb78ad
FC
2520int
2521diagnose_uninitialized_cst_or_ref_member (tree type, bool using_new, bool complain)
9d809e8f 2522{
40bb78ad 2523 return diagnose_uninitialized_cst_or_ref_member_1 (type, type, using_new, complain);
9d809e8f
FC
2524}
2525
7d5e76c8
JM
2526/* Call __cxa_bad_array_new_length to indicate that the size calculation
2527 overflowed. Pretend it returns sizetype so that it plays nicely in the
2528 COND_EXPR. */
2529
2530tree
2531throw_bad_array_new_length (void)
2532{
4b4b2e58
NS
2533 if (!fn)
2534 {
2535 tree name = get_identifier ("__cxa_throw_bad_array_new_length");
2536
87e3d7cf 2537 fn = get_global_binding (name);
4b4b2e58
NS
2538 if (!fn)
2539 fn = push_throw_library_fn
2540 (name, build_function_type_list (sizetype, NULL_TREE));
2541 }
7d5e76c8
JM
2542
2543 return build_cxx_call (fn, 0, NULL, tf_warning_or_error);
2544}
2545
a8c55cac
JJ
2546/* Attempt to find the initializer for flexible array field T in the
2547 initializer INIT, when non-null. Returns the initializer when
2548 successful and NULL otherwise. */
46cb9332 2549static tree
a8c55cac 2550find_flexarray_init (tree t, tree init)
46cb9332 2551{
a8c55cac 2552 if (!init || init == error_mark_node)
46cb9332
MS
2553 return NULL_TREE;
2554
2555 unsigned HOST_WIDE_INT idx;
2556 tree field, elt;
2557
2558 /* Iterate over all top-level initializer elements. */
2559 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx, field, elt)
a8c55cac
JJ
2560 /* If the member T is found, return it. */
2561 if (field == t)
2562 return elt;
2563
46cb9332
MS
2564 return NULL_TREE;
2565}
2566
e2f5cc96
MS
2567/* Attempt to verify that the argument, OPER, of a placement new expression
2568 refers to an object sufficiently large for an object of TYPE or an array
2569 of NELTS of such objects when NELTS is non-null, and issue a warning when
2570 it does not. SIZE specifies the size needed to construct the object or
2571 array and captures the result of NELTS * sizeof (TYPE). (SIZE could be
2572 greater when the array under construction requires a cookie to store
2573 NELTS. GCC's placement new expression stores the cookie when invoking
2574 a user-defined placement new operator function but not the default one.
2575 Placement new expressions with user-defined placement new operator are
2576 not diagnosed since we don't know how they use the buffer (this could
2577 be a future extension). */
2578static void
2579warn_placement_new_too_small (tree type, tree nelts, tree size, tree oper)
2580{
f9d0ca40 2581 location_t loc = cp_expr_loc_or_input_loc (oper);
e2f5cc96
MS
2582
2583 /* The number of bytes to add to or subtract from the size of the provided
2584 buffer based on an offset into an array or an array element reference.
9ca1eaac
MS
2585 Although intermediate results may be negative (as in a[3] - 2) a valid
2586 final result cannot be. */
2587 offset_int adjust = 0;
e2f5cc96
MS
2588 /* True when the size of the entire destination object should be used
2589 to compute the possibly optimistic estimate of the available space. */
2590 bool use_obj_size = false;
2591 /* True when the reference to the destination buffer is an ADDR_EXPR. */
2592 bool addr_expr = false;
2593
2594 STRIP_NOPS (oper);
2595
2596 /* Using a function argument or a (non-array) variable as an argument
2597 to placement new is not checked since it's unknown what it might
2598 point to. */
2599 if (TREE_CODE (oper) == PARM_DECL
86287716 2600 || VAR_P (oper)
e2f5cc96
MS
2601 || TREE_CODE (oper) == COMPONENT_REF)
2602 return;
2603
2604 /* Evaluate any constant expressions. */
2605 size = fold_non_dependent_expr (size);
2606
2607 /* Handle the common case of array + offset expression when the offset
2608 is a constant. */
2609 if (TREE_CODE (oper) == POINTER_PLUS_EXPR)
2610 {
9ca1eaac 2611 /* If the offset is compile-time constant, use it to compute a more
eb11eb15
MS
2612 accurate estimate of the size of the buffer. Since the operand
2613 of POINTER_PLUS_EXPR is represented as an unsigned type, convert
2614 it to signed first.
2615 Otherwise, use the size of the entire array as an optimistic
2616 estimate (this may lead to false negatives). */
2617 tree adj = TREE_OPERAND (oper, 1);
dfd7fdca 2618 adj = fold_for_warn (adj);
e2f5cc96 2619 if (CONSTANT_CLASS_P (adj))
9ca1eaac 2620 adjust += wi::to_offset (convert (ssizetype, adj));
e2f5cc96
MS
2621 else
2622 use_obj_size = true;
2623
2624 oper = TREE_OPERAND (oper, 0);
2625
2626 STRIP_NOPS (oper);
2627 }
2628
2629 if (TREE_CODE (oper) == TARGET_EXPR)
2630 oper = TREE_OPERAND (oper, 1);
2631 else if (TREE_CODE (oper) == ADDR_EXPR)
2632 {
2633 addr_expr = true;
2634 oper = TREE_OPERAND (oper, 0);
2635 }
2636
2637 STRIP_NOPS (oper);
2638
265149a6
MS
2639 if (TREE_CODE (oper) == ARRAY_REF
2640 && (addr_expr || TREE_CODE (TREE_TYPE (oper)) == ARRAY_TYPE))
e2f5cc96
MS
2641 {
2642 /* Similar to the offset computed above, see if the array index
2643 is a compile-time constant. If so, and unless the offset was
2644 not a compile-time constant, use the index to determine the
2645 size of the buffer. Otherwise, use the entire array as
2646 an optimistic estimate of the size. */
9ca1eaac 2647 const_tree adj = fold_non_dependent_expr (TREE_OPERAND (oper, 1));
e2f5cc96 2648 if (!use_obj_size && CONSTANT_CLASS_P (adj))
9ca1eaac 2649 adjust += wi::to_offset (adj);
e2f5cc96
MS
2650 else
2651 {
2652 use_obj_size = true;
2653 adjust = 0;
2654 }
2655
2656 oper = TREE_OPERAND (oper, 0);
2657 }
2658
46cb9332
MS
2659 /* Refers to the declared object that constains the subobject referenced
2660 by OPER. When the object is initialized, makes it possible to determine
2661 the actual size of a flexible array member used as the buffer passed
2662 as OPER to placement new. */
2663 tree var_decl = NULL_TREE;
2664 /* True when operand is a COMPONENT_REF, to distinguish flexible array
2665 members from arrays of unspecified size. */
2666 bool compref = TREE_CODE (oper) == COMPONENT_REF;
2667
9ca1eaac
MS
2668 /* For COMPONENT_REF (i.e., a struct member) the size of the entire
2669 enclosing struct. Used to validate the adjustment (offset) into
2670 an array at the end of a struct. */
2671 offset_int compsize = 0;
2672
e2f5cc96 2673 /* Descend into a struct or union to find the member whose address
265149a6
MS
2674 is being used as the argument. */
2675 if (TREE_CODE (oper) == COMPONENT_REF)
46cb9332 2676 {
9ca1eaac
MS
2677 tree comptype = TREE_TYPE (TREE_OPERAND (oper, 0));
2678 compsize = wi::to_offset (TYPE_SIZE_UNIT (comptype));
2679
46cb9332
MS
2680 tree op0 = oper;
2681 while (TREE_CODE (op0 = TREE_OPERAND (op0, 0)) == COMPONENT_REF);
dfd7fdca 2682 STRIP_ANY_LOCATION_WRAPPER (op0);
86287716 2683 if (VAR_P (op0))
46cb9332
MS
2684 var_decl = op0;
2685 oper = TREE_OPERAND (oper, 1);
2686 }
e2f5cc96 2687
dfd7fdca 2688 STRIP_ANY_LOCATION_WRAPPER (oper);
9ca1eaac 2689 tree opertype = TREE_TYPE (oper);
71a93b08 2690 if ((addr_expr || !INDIRECT_TYPE_P (opertype))
86287716 2691 && (VAR_P (oper)
e2f5cc96
MS
2692 || TREE_CODE (oper) == FIELD_DECL
2693 || TREE_CODE (oper) == PARM_DECL))
2694 {
2695 /* A possibly optimistic estimate of the number of bytes available
2696 in the destination buffer. */
9ca1eaac 2697 offset_int bytes_avail = 0;
e2f5cc96
MS
2698 /* True when the estimate above is in fact the exact size
2699 of the destination buffer rather than an estimate. */
2700 bool exact_size = true;
2701
2702 /* Treat members of unions and members of structs uniformly, even
2703 though the size of a member of a union may be viewed as extending
2704 to the end of the union itself (it is by __builtin_object_size). */
86287716 2705 if ((VAR_P (oper) || use_obj_size)
0f875435
JJ
2706 && DECL_SIZE_UNIT (oper)
2707 && tree_fits_uhwi_p (DECL_SIZE_UNIT (oper)))
e2f5cc96
MS
2708 {
2709 /* Use the size of the entire array object when the expression
2710 refers to a variable or its size depends on an expression
2711 that's not a compile-time constant. */
9ca1eaac 2712 bytes_avail = wi::to_offset (DECL_SIZE_UNIT (oper));
e2f5cc96
MS
2713 exact_size = !use_obj_size;
2714 }
9ca1eaac 2715 else if (tree opersize = TYPE_SIZE_UNIT (opertype))
e2f5cc96
MS
2716 {
2717 /* Use the size of the type of the destination buffer object
9ca1eaac
MS
2718 as the optimistic estimate of the available space in it.
2719 Use the maximum possible size for zero-size arrays and
2720 flexible array members (except of initialized objects
2721 thereof). */
2722 if (TREE_CODE (opersize) == INTEGER_CST)
2723 bytes_avail = wi::to_offset (opersize);
e2f5cc96 2724 }
9ca1eaac
MS
2725
2726 if (bytes_avail == 0)
906f9ad9 2727 {
9ca1eaac
MS
2728 if (var_decl)
2729 {
2730 /* Constructing into a buffer provided by the flexible array
2731 member of a declared object (which is permitted as a G++
2732 extension). If the array member has been initialized,
2733 determine its size from the initializer. Otherwise,
2734 the array size is zero. */
a8c55cac
JJ
2735 if (tree init = find_flexarray_init (oper,
2736 DECL_INITIAL (var_decl)))
9ca1eaac
MS
2737 bytes_avail = wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (init)));
2738 }
2739 else
2740 bytes_avail = (wi::to_offset (TYPE_MAX_VALUE (ptrdiff_type_node))
2741 - compsize);
906f9ad9 2742 }
e2f5cc96 2743
9ca1eaac 2744 tree_code oper_code = TREE_CODE (opertype);
e2f5cc96 2745
46cb9332
MS
2746 if (compref && oper_code == ARRAY_TYPE)
2747 {
9ca1eaac 2748 tree nelts = array_type_nelts_top (opertype);
46cb9332
MS
2749 tree nelts_cst = maybe_constant_value (nelts);
2750 if (TREE_CODE (nelts_cst) == INTEGER_CST
2751 && integer_onep (nelts_cst)
2752 && !var_decl
2753 && warn_placement_new < 2)
2754 return;
2755 }
8ff04ff9 2756
e2f5cc96
MS
2757 /* Reduce the size of the buffer by the adjustment computed above
2758 from the offset and/or the index into the array. */
9ca1eaac 2759 if (bytes_avail < adjust || adjust < 0)
e2f5cc96
MS
2760 bytes_avail = 0;
2761 else
9ca1eaac
MS
2762 {
2763 tree elttype = (TREE_CODE (opertype) == ARRAY_TYPE
2764 ? TREE_TYPE (opertype) : opertype);
2765 if (tree eltsize = TYPE_SIZE_UNIT (elttype))
2766 {
2767 bytes_avail -= adjust * wi::to_offset (eltsize);
2768 if (bytes_avail < 0)
2769 bytes_avail = 0;
2770 }
2771 }
e2f5cc96
MS
2772
2773 /* The minimum amount of space needed for the allocation. This
2774 is an optimistic estimate that makes it possible to detect
2775 placement new invocation for some undersize buffers but not
2776 others. */
9ca1eaac 2777 offset_int bytes_need;
e2f5cc96 2778
dfd7fdca
DM
2779 if (nelts)
2780 nelts = fold_for_warn (nelts);
2781
e2f5cc96 2782 if (CONSTANT_CLASS_P (size))
9ca1eaac 2783 bytes_need = wi::to_offset (size);
e2f5cc96 2784 else if (nelts && CONSTANT_CLASS_P (nelts))
9ca1eaac
MS
2785 bytes_need = (wi::to_offset (nelts)
2786 * wi::to_offset (TYPE_SIZE_UNIT (type)));
8ff04ff9 2787 else if (tree_fits_uhwi_p (TYPE_SIZE_UNIT (type)))
9ca1eaac 2788 bytes_need = wi::to_offset (TYPE_SIZE_UNIT (type));
8ff04ff9
MS
2789 else
2790 {
2791 /* The type is a VLA. */
2792 return;
2793 }
e2f5cc96
MS
2794
2795 if (bytes_avail < bytes_need)
2796 {
2797 if (nelts)
2798 if (CONSTANT_CLASS_P (nelts))
46cb9332 2799 warning_at (loc, OPT_Wplacement_new_,
e2f5cc96
MS
2800 exact_size ?
2801 "placement new constructing an object of type "
2802 "%<%T [%wu]%> and size %qwu in a region of type %qT "
2803 "and size %qwi"
2804 : "placement new constructing an object of type "
c047b694 2805 "%<%T [%wu]%> and size %qwu in a region of type %qT "
e2f5cc96 2806 "and size at most %qwu",
9ca1eaac
MS
2807 type, tree_to_uhwi (nelts), bytes_need.to_uhwi (),
2808 opertype, bytes_avail.to_uhwi ());
e2f5cc96 2809 else
46cb9332 2810 warning_at (loc, OPT_Wplacement_new_,
e2f5cc96
MS
2811 exact_size ?
2812 "placement new constructing an array of objects "
2813 "of type %qT and size %qwu in a region of type %qT "
2814 "and size %qwi"
2815 : "placement new constructing an array of objects "
2816 "of type %qT and size %qwu in a region of type %qT "
2817 "and size at most %qwu",
9ca1eaac
MS
2818 type, bytes_need.to_uhwi (), opertype,
2819 bytes_avail.to_uhwi ());
e2f5cc96 2820 else
46cb9332 2821 warning_at (loc, OPT_Wplacement_new_,
e2f5cc96
MS
2822 exact_size ?
2823 "placement new constructing an object of type %qT "
2824 "and size %qwu in a region of type %qT and size %qwi"
5995f597 2825 : "placement new constructing an object of type %qT "
e2f5cc96
MS
2826 "and size %qwu in a region of type %qT and size "
2827 "at most %qwu",
9ca1eaac
MS
2828 type, bytes_need.to_uhwi (), opertype,
2829 bytes_avail.to_uhwi ());
e2f5cc96
MS
2830 }
2831 }
2832}
2833
af63ba4b
JM
2834/* True if alignof(T) > __STDCPP_DEFAULT_NEW_ALIGNMENT__. */
2835
2836bool
2837type_has_new_extended_alignment (tree t)
2838{
2e1c20b1
JJ
2839 return (aligned_new_threshold
2840 && TYPE_ALIGN_UNIT (t) > (unsigned)aligned_new_threshold);
af63ba4b
JM
2841}
2842
2ec69f56
JM
2843/* Return the alignment we expect malloc to guarantee. This should just be
2844 MALLOC_ABI_ALIGNMENT, but that macro defaults to only BITS_PER_WORD for some
2845 reason, so don't let the threshold be smaller than max_align_t_align. */
2846
2847unsigned
2848malloc_alignment ()
2849{
2850 return MAX (max_align_t_align(), MALLOC_ABI_ALIGNMENT);
2851}
2852
ece3b7e6 2853/* Determine whether an allocation function is a namespace-scope
cf9847d2 2854 non-replaceable placement new function. See DR 1748. */
8bee092e
JJ
2855static bool
2856std_placement_new_fn_p (tree alloc_fn)
ece3b7e6 2857{
8f2b097e 2858 if (DECL_NAMESPACE_SCOPE_P (alloc_fn))
ece3b7e6
VV
2859 {
2860 tree first_arg = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (alloc_fn)));
2861 if ((TREE_VALUE (first_arg) == ptr_type_node)
2862 && TREE_CHAIN (first_arg) == void_list_node)
2863 return true;
2864 }
2865 return false;
2866}
2867
63c9a190
MM
2868/* Generate code for a new-expression, including calling the "operator
2869 new" function, initializing the object, and, if an exception occurs
2870 during construction, cleaning up. The arguments are as for
685c8340
MS
2871 build_raw_new_expr. This may change PLACEMENT and INIT.
2872 TYPE is the type of the object being constructed, possibly an array
2873 of NELTS elements when NELTS is non-null (in "new T[NELTS]", T may
2874 be an array of the form U[inner], with the whole expression being
2875 "new U[NELTS][inner]"). */
a0d5fba7 2876
834c6dff 2877static tree
9771b263
DN
2878build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
2879 vec<tree, va_gc> **init, bool globally_qualified_p,
c166b898 2880 tsubst_flags_t complain)
a0d5fba7 2881{
d746e87d
MM
2882 tree size, rval;
2883 /* True iff this is a call to "operator new[]" instead of just
c8094d83 2884 "operator new". */
d746e87d 2885 bool array_p = false;
9207099b
JM
2886 /* If ARRAY_P is true, the element type of the array. This is never
2887 an ARRAY_TYPE; for something like "new int[3][4]", the
d746e87d 2888 ELT_TYPE is "int". If ARRAY_P is false, this is the same type as
9207099b 2889 TYPE. */
d746e87d 2890 tree elt_type;
f4f4610e
MM
2891 /* The type of the new-expression. (This type is always a pointer
2892 type.) */
2893 tree pointer_type;
25357d1e 2894 tree non_const_pointer_type;
685c8340 2895 /* The most significant array bound in int[OUTER_NELTS][inner]. */
a48cccea 2896 tree outer_nelts = NULL_TREE;
685c8340
MS
2897 /* For arrays with a non-constant number of elements, a bounds checks
2898 on the NELTS parameter to avoid integer overflow at runtime. */
4a84253c 2899 tree outer_nelts_check = NULL_TREE;
4ebc46e9 2900 bool outer_nelts_from_type = false;
685c8340 2901 /* Number of the "inner" elements in "new T[OUTER_NELTS][inner]". */
807e902e 2902 offset_int inner_nelts_count = 1;
f4f4610e 2903 tree alloc_call, alloc_expr;
685c8340 2904 /* Size of the inner array elements (those with constant dimensions). */
807e902e 2905 offset_int inner_size;
f4f4610e
MM
2906 /* The address returned by the call to "operator new". This node is
2907 a VAR_DECL and is therefore reusable. */
2908 tree alloc_node;
46ff5047 2909 tree alloc_fn;
8b5e2ce4 2910 tree cookie_expr, init_expr;
089d6ea7 2911 int nothrow, check_new;
834c6dff
MM
2912 /* If non-NULL, the number of extra bytes to allocate at the
2913 beginning of the storage allocated for an array-new expression in
2914 order to store the number of elements. */
2915 tree cookie_size = NULL_TREE;
c166b898 2916 tree placement_first;
a9de800a 2917 tree placement_expr = NULL_TREE;
3f41ffd8
MM
2918 /* True if the function we are calling is a placement allocation
2919 function. */
2920 bool placement_allocation_fn_p;
f4f4610e 2921 /* True if the storage must be initialized, either by a constructor
34cd5ae7 2922 or due to an explicit new-initializer. */
f4f4610e
MM
2923 bool is_initialized;
2924 /* The address of the thing allocated, not including any cookie. In
2925 particular, if an array cookie is in use, DATA_ADDR is the
2926 address of the first array element. This node is a VAR_DECL, and
2927 is therefore reusable. */
2928 tree data_addr;
6de9cd9a 2929 tree init_preeval_expr = NULL_TREE;
b75bf8b1 2930 tree orig_type = type;
a0d5fba7 2931
058b15c1 2932 if (nelts)
a0d5fba7 2933 {
058b15c1 2934 outer_nelts = nelts;
d746e87d 2935 array_p = true;
a0d5fba7 2936 }
9207099b 2937 else if (TREE_CODE (type) == ARRAY_TYPE)
d746e87d 2938 {
4ebc46e9
FW
2939 /* Transforms new (T[N]) to new T[N]. The former is a GNU
2940 extension for variable N. (This also covers new T where T is
2941 a VLA typedef.) */
9207099b
JM
2942 array_p = true;
2943 nelts = array_type_nelts_top (type);
2944 outer_nelts = nelts;
2945 type = TREE_TYPE (type);
4ebc46e9 2946 outer_nelts_from_type = true;
d746e87d 2947 }
834c6dff 2948
ea219e6e 2949 /* Lots of logic below depends on whether we have a constant number of
cda0a029 2950 elements, so go ahead and fold it now. */
e56f6629 2951 const_tree cst_outer_nelts = fold_non_dependent_expr (outer_nelts, complain);
cda0a029 2952
8d08fdba
MS
2953 /* If our base type is an array, then make sure we know how many elements
2954 it has. */
d746e87d
MM
2955 for (elt_type = type;
2956 TREE_CODE (elt_type) == ARRAY_TYPE;
2957 elt_type = TREE_TYPE (elt_type))
4ebc46e9
FW
2958 {
2959 tree inner_nelts = array_type_nelts_top (elt_type);
2960 tree inner_nelts_cst = maybe_constant_value (inner_nelts);
e1f10dd9 2961 if (TREE_CODE (inner_nelts_cst) == INTEGER_CST)
4a84253c 2962 {
4a669ac3 2963 wi::overflow_type overflow;
807e902e
KZ
2964 offset_int result = wi::mul (wi::to_offset (inner_nelts_cst),
2965 inner_nelts_count, SIGNED, &overflow);
9be0ac8c 2966 if (overflow)
4a84253c
FW
2967 {
2968 if (complain & tf_error)
2969 error ("integer overflow in array size");
2970 nelts = error_mark_node;
2971 }
2972 inner_nelts_count = result;
2973 }
2974 else
4ebc46e9
FW
2975 {
2976 if (complain & tf_error)
2977 {
f9d0ca40 2978 error_at (cp_expr_loc_or_input_loc (inner_nelts),
b75bf8b1 2979 "array size in new-expression must be constant");
4ebc46e9
FW
2980 cxx_constant_value(inner_nelts);
2981 }
2982 nelts = error_mark_node;
2983 }
2984 if (nelts != error_mark_node)
2985 nelts = cp_build_binary_op (input_location,
2986 MULT_EXPR, nelts,
2987 inner_nelts_cst,
2988 complain);
2989 }
2990
2991 if (variably_modified_type_p (elt_type, NULL_TREE) && (complain & tf_error))
2992 {
b75bf8b1 2993 error ("variably modified type not allowed in new-expression");
4ebc46e9
FW
2994 return error_mark_node;
2995 }
2996
2997 if (nelts == error_mark_node)
2998 return error_mark_node;
2999
3000 /* Warn if we performed the (T[N]) to T[N] transformation and N is
3001 variable. */
3002 if (outer_nelts_from_type
ea219e6e 3003 && !TREE_CONSTANT (cst_outer_nelts))
4ebc46e9
FW
3004 {
3005 if (complain & tf_warning_or_error)
b75bf8b1 3006 {
f9d0ca40 3007 pedwarn (cp_expr_loc_or_input_loc (outer_nelts), OPT_Wvla,
24f12823 3008 typedef_variant_p (orig_type)
324ff1a0 3009 ? G_("non-constant array new length must be specified "
a9c697b8 3010 "directly, not by %<typedef%>")
24f12823
VR
3011 : G_("non-constant array new length must be specified "
3012 "without parentheses around the type-id"));
b75bf8b1 3013 }
4ebc46e9
FW
3014 else
3015 return error_mark_node;
3016 }
5566b478 3017
50e10fa8 3018 if (VOID_TYPE_P (elt_type))
e1cd6e56 3019 {
5ade1ed2 3020 if (complain & tf_error)
a9c697b8 3021 error ("invalid type %<void%> for %<new%>");
e1cd6e56
MS
3022 return error_mark_node;
3023 }
3024
04eb9c55
JM
3025 if (is_std_init_list (elt_type))
3026 warning (OPT_Winit_list_lifetime,
a9c697b8 3027 "%<new%> of %<initializer_list%> does not "
04eb9c55
JM
3028 "extend the lifetime of the underlying array");
3029
2df663cc 3030 if (abstract_virtuals_error_sfinae (ACU_NEW, elt_type, complain))
a7a64a77 3031 return error_mark_node;
8926095f 3032
95552437 3033 is_initialized = (type_build_ctor_call (elt_type) || *init != NULL);
b87d79e6 3034
eca7fc57 3035 if (*init == NULL && cxx_dialect < cxx11)
9d809e8f 3036 {
40bb78ad 3037 bool maybe_uninitialized_error = false;
9d809e8f
FC
3038 /* A program that calls for default-initialization [...] of an
3039 entity of reference type is ill-formed. */
3040 if (CLASSTYPE_REF_FIELDS_NEED_INIT (elt_type))
40bb78ad 3041 maybe_uninitialized_error = true;
9d809e8f
FC
3042
3043 /* A new-expression that creates an object of type T initializes
3044 that object as follows:
3045 - If the new-initializer is omitted:
3046 -- If T is a (possibly cv-qualified) non-POD class type
3047 (or array thereof), the object is default-initialized (8.5).
3048 [...]
3049 -- Otherwise, the object created has indeterminate
3050 value. If T is a const-qualified type, or a (possibly
3051 cv-qualified) POD class type (or array thereof)
3052 containing (directly or indirectly) a member of
3053 const-qualified type, the program is ill-formed; */
3054
3055 if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (elt_type))
40bb78ad 3056 maybe_uninitialized_error = true;
9d809e8f 3057
40bb78ad
FC
3058 if (maybe_uninitialized_error
3059 && diagnose_uninitialized_cst_or_ref_member (elt_type,
3060 /*using_new=*/true,
3061 complain & tf_error))
3062 return error_mark_node;
9d809e8f
FC
3063 }
3064
c166b898 3065 if (CP_TYPE_CONST_P (elt_type) && *init == NULL
6132bdd7 3066 && default_init_uninitialized_part (elt_type))
f4f4610e 3067 {
5ade1ed2
DG
3068 if (complain & tf_error)
3069 error ("uninitialized const in %<new%> of %q#T", elt_type);
f4f4610e
MM
3070 return error_mark_node;
3071 }
3072
d746e87d
MM
3073 size = size_in_bytes (elt_type);
3074 if (array_p)
4a84253c
FW
3075 {
3076 /* Maximum available size in bytes. Half of the address space
3077 minus the cookie size. */
807e902e
KZ
3078 offset_int max_size
3079 = wi::set_bit_in_zero <offset_int> (TYPE_PRECISION (sizetype) - 1);
4a84253c 3080 /* Maximum number of outer elements which can be allocated. */
807e902e 3081 offset_int max_outer_nelts;
4a84253c
FW
3082 tree max_outer_nelts_tree;
3083
3084 gcc_assert (TREE_CODE (size) == INTEGER_CST);
3085 cookie_size = targetm.cxx.get_cookie_size (elt_type);
3086 gcc_assert (TREE_CODE (cookie_size) == INTEGER_CST);
807e902e 3087 gcc_checking_assert (wi::ltu_p (wi::to_offset (cookie_size), max_size));
c65cb8d1 3088 /* Unconditionally subtract the cookie size. This decreases the
4a84253c
FW
3089 maximum object size and is safe even if we choose not to use
3090 a cookie after all. */
807e902e 3091 max_size -= wi::to_offset (cookie_size);
4a669ac3 3092 wi::overflow_type overflow;
807e902e
KZ
3093 inner_size = wi::mul (wi::to_offset (size), inner_nelts_count, SIGNED,
3094 &overflow);
3095 if (overflow || wi::gtu_p (inner_size, max_size))
4a84253c
FW
3096 {
3097 if (complain & tf_error)
28a8cef1
MS
3098 {
3099 cst_size_error error;
3100 if (overflow)
3101 error = cst_size_overflow;
3102 else
3103 {
3104 error = cst_size_too_big;
3105 size = size_binop (MULT_EXPR, size,
3106 wide_int_to_tree (sizetype,
3107 inner_nelts_count));
3108 size = cp_fully_fold (size);
3109 }
3110 invalid_array_size_error (input_location, error, size,
3111 /*name=*/NULL_TREE);
3112 }
4a84253c
FW
3113 return error_mark_node;
3114 }
807e902e
KZ
3115
3116 max_outer_nelts = wi::udiv_trunc (max_size, inner_size);
807e902e 3117 max_outer_nelts_tree = wide_int_to_tree (sizetype, max_outer_nelts);
4a84253c 3118
cda0a029 3119 size = size_binop (MULT_EXPR, size, fold_convert (sizetype, nelts));
685c8340 3120
ea219e6e 3121 if (TREE_CODE (cst_outer_nelts) == INTEGER_CST)
685c8340 3122 {
ea219e6e 3123 if (tree_int_cst_lt (max_outer_nelts_tree, cst_outer_nelts))
685c8340
MS
3124 {
3125 /* When the array size is constant, check it at compile time
3126 to make sure it doesn't exceed the implementation-defined
3127 maximum, as required by C++ 14 (in C++ 11 this requirement
3128 isn't explicitly stated but it's enforced anyway -- see
3129 grokdeclarator in cp/decl.c). */
3130 if (complain & tf_error)
28a8cef1
MS
3131 {
3132 size = cp_fully_fold (size);
3133 invalid_array_size_error (input_location, cst_size_too_big,
3134 size, NULL_TREE);
3135 }
685c8340
MS
3136 return error_mark_node;
3137 }
3138 }
3139 else
3140 {
3141 /* When a runtime check is necessary because the array size
3142 isn't constant, keep only the top-most seven bits (starting
3143 with the most significant non-zero bit) of the maximum size
3144 to compare the array size against, to simplify encoding the
3145 constant maximum size in the instruction stream. */
3146
3147 unsigned shift = (max_outer_nelts.get_precision ()) - 7
3148 - wi::clz (max_outer_nelts);
8de73453 3149 max_outer_nelts = (max_outer_nelts >> shift) << shift;
685c8340
MS
3150
3151 outer_nelts_check = fold_build2 (LE_EXPR, boolean_type_node,
3152 outer_nelts,
3153 max_outer_nelts_tree);
3154 }
4a84253c 3155 }
a28e3c7f 3156
af63ba4b
JM
3157 tree align_arg = NULL_TREE;
3158 if (type_has_new_extended_alignment (elt_type))
3159 align_arg = build_int_cst (align_type_node, TYPE_ALIGN_UNIT (elt_type));
3160
63c9a190
MM
3161 alloc_fn = NULL_TREE;
3162
c166b898
ILT
3163 /* If PLACEMENT is a single simple pointer type not passed by
3164 reference, prepare to capture it in a temporary variable. Do
3165 this now, since PLACEMENT will change in the calls below. */
c166b898 3166 placement_first = NULL_TREE;
9771b263 3167 if (vec_safe_length (*placement) == 1
50e10fa8 3168 && (TYPE_PTR_P (TREE_TYPE ((**placement)[0]))))
9771b263 3169 placement_first = (**placement)[0];
c166b898 3170
e2f5cc96
MS
3171 bool member_new_p = false;
3172
e92cc029 3173 /* Allocate the object. */
bfecd57c
JJ
3174 tree fnname;
3175 tree fns;
6de9cd9a 3176
88a819be 3177 fnname = ovl_op_identifier (false, array_p ? VEC_NEW_EXPR : NEW_EXPR);
71b71b96 3178
bfecd57c
JJ
3179 member_new_p = !globally_qualified_p
3180 && CLASS_TYPE_P (elt_type)
3181 && (array_p
3182 ? TYPE_HAS_ARRAY_NEW_OPERATOR (elt_type)
3183 : TYPE_HAS_NEW_OPERATOR (elt_type));
a3d536f1 3184
bfecd57c
JJ
3185 if (member_new_p)
3186 {
3187 /* Use a class-specific operator new. */
3188 /* If a cookie is required, add some extra space. */
3189 if (array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type))
3190 size = size_binop (PLUS_EXPR, size, cookie_size);
3191 else
b1e5b86c 3192 {
bfecd57c
JJ
3193 cookie_size = NULL_TREE;
3194 /* No size arithmetic necessary, so the size check is
3195 not needed. */
3196 if (outer_nelts_check != NULL && inner_size == 1)
3197 outer_nelts_check = NULL_TREE;
3198 }
3199 /* Perform the overflow check. */
3200 tree errval = TYPE_MAX_VALUE (sizetype);
3201 if (cxx_dialect >= cxx11 && flag_exceptions)
3202 errval = throw_bad_array_new_length ();
3203 if (outer_nelts_check != NULL_TREE)
3204 size = fold_build3 (COND_EXPR, sizetype, outer_nelts_check,
3205 size, errval);
3206 /* Create the argument list. */
3207 vec_safe_insert (*placement, 0, size);
3208 /* Do name-lookup to find the appropriate operator. */
3209 fns = lookup_fnfields (elt_type, fnname, /*protect=*/2);
3210 if (fns == NULL_TREE)
b1e5b86c 3211 {
bfecd57c
JJ
3212 if (complain & tf_error)
3213 error ("no suitable %qD found in class %qT", fnname, elt_type);
6961a592
GB
3214 return error_mark_node;
3215 }
bfecd57c 3216 if (TREE_CODE (fns) == TREE_LIST)
dd125026
JJ
3217 {
3218 if (complain & tf_error)
bfecd57c
JJ
3219 {
3220 error ("request for member %qD is ambiguous", fnname);
3221 print_candidates (fns);
3222 }
dd125026
JJ
3223 return error_mark_node;
3224 }
bfecd57c
JJ
3225 tree dummy = build_dummy_object (elt_type);
3226 alloc_call = NULL_TREE;
3227 if (align_arg)
3228 {
3229 vec<tree, va_gc> *align_args
3230 = vec_copy_and_insert (*placement, align_arg, 1);
3231 alloc_call
3232 = build_new_method_call (dummy, fns, &align_args,
3233 /*conversion_path=*/NULL_TREE,
3234 LOOKUP_NORMAL, &alloc_fn, tf_none);
3235 /* If no matching function is found and the allocated object type
3236 has new-extended alignment, the alignment argument is removed
3237 from the argument list, and overload resolution is performed
3238 again. */
3239 if (alloc_call == error_mark_node)
3240 alloc_call = NULL_TREE;
3241 }
3242 if (!alloc_call)
3243 alloc_call = build_new_method_call (dummy, fns, placement,
3244 /*conversion_path=*/NULL_TREE,
3245 LOOKUP_NORMAL,
3246 &alloc_fn, complain);
360f866c 3247 }
8d08fdba
MS
3248 else
3249 {
bfecd57c
JJ
3250 /* Use a global operator new. */
3251 /* See if a cookie might be required. */
3252 if (!(array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type)))
089d6ea7 3253 {
bfecd57c
JJ
3254 cookie_size = NULL_TREE;
3255 /* No size arithmetic necessary, so the size check is
3256 not needed. */
3257 if (outer_nelts_check != NULL && inner_size == 1)
3258 outer_nelts_check = NULL_TREE;
089d6ea7 3259 }
125e6594 3260
bfecd57c
JJ
3261 alloc_call = build_operator_new_call (fnname, placement,
3262 &size, &cookie_size,
3263 align_arg, outer_nelts_check,
3264 &alloc_fn, complain);
8d08fdba
MS
3265 }
3266
96790071 3267 if (alloc_call == error_mark_node)
2bb5d995
JM
3268 return error_mark_node;
3269
63c9a190
MM
3270 gcc_assert (alloc_fn != NULL_TREE);
3271
2ec69f56
JM
3272 /* Now, check to see if this function is actually a placement
3273 allocation function. This can happen even when PLACEMENT is NULL
3274 because we might have something like:
3275
3276 struct S { void* operator new (size_t, int i = 0); };
3277
3278 A call to `new S' will get this allocation function, even though
3279 there is no explicit placement argument. If there is more than
3280 one argument, or there are variable arguments, then this is a
3281 placement allocation function. */
3282 placement_allocation_fn_p
3283 = (type_num_arguments (TREE_TYPE (alloc_fn)) > 1
3284 || varargs_function_p (alloc_fn));
3285
af63ba4b 3286 if (warn_aligned_new
2ec69f56
JM
3287 && !placement_allocation_fn_p
3288 && TYPE_ALIGN (elt_type) > malloc_alignment ()
af63ba4b
JM
3289 && (warn_aligned_new > 1
3290 || CP_DECL_CONTEXT (alloc_fn) == global_namespace)
3291 && !aligned_allocation_fn_p (alloc_fn))
3292 {
097f82ec 3293 auto_diagnostic_group d;
34d57a10
JW
3294 if (warning (OPT_Waligned_new_, "%<new%> of type %qT with extended "
3295 "alignment %d", elt_type, TYPE_ALIGN_UNIT (elt_type)))
3296 {
3297 inform (input_location, "uses %qD, which does not have an alignment "
3298 "parameter", alloc_fn);
3299 if (!aligned_new_threshold)
3300 inform (input_location, "use %<-faligned-new%> to enable C++17 "
3301 "over-aligned new support");
3302 }
af63ba4b
JM
3303 }
3304
c166b898
ILT
3305 /* If we found a simple case of PLACEMENT_EXPR above, then copy it
3306 into a temporary variable. */
a9de800a 3307 if (!processing_template_decl
a9de800a
JJ
3308 && TREE_CODE (alloc_call) == CALL_EXPR
3309 && call_expr_nargs (alloc_call) == 2
3310 && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 0))) == INTEGER_TYPE
50e10fa8 3311 && TYPE_PTR_P (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 1))))
a9de800a 3312 {
e2f5cc96 3313 tree placement = CALL_EXPR_ARG (alloc_call, 1);
a9de800a 3314
e2f5cc96
MS
3315 if (placement_first != NULL_TREE
3316 && (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (TREE_TYPE (placement)))
3317 || VOID_TYPE_P (TREE_TYPE (TREE_TYPE (placement)))))
a9de800a 3318 {
c166b898 3319 placement_expr = get_target_expr (placement_first);
a9de800a 3320 CALL_EXPR_ARG (alloc_call, 1)
cda0a029 3321 = fold_convert (TREE_TYPE (placement), placement_expr);
e2f5cc96
MS
3322 }
3323
3324 if (!member_new_p
3325 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 1)))))
3326 {
3327 /* Attempt to make the warning point at the operator new argument. */
3328 if (placement_first)
3329 placement = placement_first;
3330
3331 warn_placement_new_too_small (orig_type, nelts, size, placement);
a9de800a
JJ
3332 }
3333 }
3334
a6111661
JM
3335 /* In the simple case, we can stop now. */
3336 pointer_type = build_pointer_type (type);
3337 if (!cookie_size && !is_initialized)
4d7a65ea 3338 return build_nop (pointer_type, alloc_call);
a6111661 3339
10ee5386
JM
3340 /* Store the result of the allocation call in a variable so that we can
3341 use it more than once. */
3342 alloc_expr = get_target_expr (alloc_call);
a6111661
JM
3343 alloc_node = TARGET_EXPR_SLOT (alloc_expr);
3344
3345 /* Strip any COMPOUND_EXPRs from ALLOC_CALL. */
c8094d83 3346 while (TREE_CODE (alloc_call) == COMPOUND_EXPR)
a6111661 3347 alloc_call = TREE_OPERAND (alloc_call, 1);
089d6ea7 3348
a6111661
JM
3349 /* Preevaluate the placement args so that we don't reevaluate them for a
3350 placement delete. */
3351 if (placement_allocation_fn_p)
3352 {
6de9cd9a
DN
3353 tree inits;
3354 stabilize_call (alloc_call, &inits);
a6111661 3355 if (inits)
f293ce4b
RS
3356 alloc_expr = build2 (COMPOUND_EXPR, TREE_TYPE (alloc_expr), inits,
3357 alloc_expr);
a6111661
JM
3358 }
3359
047f64a3
JM
3360 /* unless an allocation function is declared with an empty excep-
3361 tion-specification (_except.spec_), throw(), it indicates failure to
3362 allocate storage by throwing a bad_alloc exception (clause _except_,
3363 _lib.bad.alloc_); it returns a non-null pointer otherwise If the allo-
3364 cation function is declared with an empty exception-specification,
3365 throw(), it returns null to indicate failure to allocate storage and a
3366 non-null pointer otherwise.
3367
3368 So check for a null exception spec on the op new we just called. */
3369
46ff5047 3370 nothrow = TYPE_NOTHROW_P (TREE_TYPE (alloc_fn));
8bee092e
JJ
3371 check_new
3372 = flag_check_new || (nothrow && !std_placement_new_fn_p (alloc_fn));
047f64a3 3373
089d6ea7 3374 if (cookie_size)
8d08fdba 3375 {
96790071 3376 tree cookie;
46e995e0 3377 tree cookie_ptr;
b5119fa1 3378 tree size_ptr_type;
f4f4610e
MM
3379
3380 /* Adjust so we're pointing to the start of the object. */
5d49b6a7 3381 data_addr = fold_build_pointer_plus (alloc_node, cookie_size);
96790071 3382
834c6dff 3383 /* Store the number of bytes allocated so that we can know how
3461fba7
NS
3384 many elements to destroy later. We use the last sizeof
3385 (size_t) bytes to store the number of elements. */
10ee5386 3386 cookie_ptr = size_binop (MINUS_EXPR, cookie_size, size_in_bytes (sizetype));
5d49b6a7
RG
3387 cookie_ptr = fold_build_pointer_plus_loc (input_location,
3388 alloc_node, cookie_ptr);
b5119fa1 3389 size_ptr_type = build_pointer_type (sizetype);
10ee5386 3390 cookie_ptr = fold_convert (size_ptr_type, cookie_ptr);
04757a2a 3391 cookie = cp_build_fold_indirect_ref (cookie_ptr);
1f84ec23 3392
f293ce4b 3393 cookie_expr = build2 (MODIFY_EXPR, sizetype, cookie, nelts);
46e995e0
PB
3394
3395 if (targetm.cxx.cookie_has_size ())
3396 {
3397 /* Also store the element size. */
5d49b6a7 3398 cookie_ptr = fold_build_pointer_plus (cookie_ptr,
db3927fb 3399 fold_build1_loc (input_location,
5d49b6a7
RG
3400 NEGATE_EXPR, sizetype,
3401 size_in_bytes (sizetype)));
b2ec1738 3402
04757a2a 3403 cookie = cp_build_fold_indirect_ref (cookie_ptr);
f293ce4b 3404 cookie = build2 (MODIFY_EXPR, sizetype, cookie,
10ee5386 3405 size_in_bytes (elt_type));
f293ce4b
RS
3406 cookie_expr = build2 (COMPOUND_EXPR, TREE_TYPE (cookie_expr),
3407 cookie, cookie_expr);
46e995e0 3408 }
8d08fdba 3409 }
96790071 3410 else
8b5e2ce4
JM
3411 {
3412 cookie_expr = NULL_TREE;
3413 data_addr = alloc_node;
3414 }
8d08fdba 3415
10ee5386 3416 /* Now use a pointer to the type we've actually allocated. */
25357d1e
JM
3417
3418 /* But we want to operate on a non-const version to start with,
3419 since we'll be modifying the elements. */
3420 non_const_pointer_type = build_pointer_type
a3360e77 3421 (cp_build_qualified_type (type, cp_type_quals (type) & ~TYPE_QUAL_CONST));
25357d1e
JM
3422
3423 data_addr = fold_convert (non_const_pointer_type, data_addr);
9207099b 3424 /* Any further uses of alloc_node will want this type, too. */
25357d1e 3425 alloc_node = fold_convert (non_const_pointer_type, alloc_node);
10ee5386 3426
6de9cd9a
DN
3427 /* Now initialize the allocated object. Note that we preevaluate the
3428 initialization expression, apart from the actual constructor call or
3429 assignment--we do this because we want to delay the allocation as long
3430 as possible in order to minimize the size of the exception region for
3431 placement delete. */
f4f4610e 3432 if (is_initialized)
8d08fdba 3433 {
6de9cd9a 3434 bool stable;
844ae01d 3435 bool explicit_value_init_p = false;
6de9cd9a 3436
9771b263 3437 if (*init != NULL && (*init)->is_empty ())
6de9cd9a 3438 {
c166b898 3439 *init = NULL;
844ae01d
JM
3440 explicit_value_init_p = true;
3441 }
b84f4651 3442
a67e7daa
JM
3443 if (processing_template_decl && explicit_value_init_p)
3444 {
3445 /* build_value_init doesn't work in templates, and we don't need
3446 the initializer anyway since we're going to throw it away and
3447 rebuild it at instantiation time, so just build up a single
3448 constructor call to get any appropriate diagnostics. */
04757a2a 3449 init_expr = cp_build_fold_indirect_ref (data_addr);
95552437 3450 if (type_build_ctor_call (elt_type))
a67e7daa
JM
3451 init_expr = build_special_member_call (init_expr,
3452 complete_ctor_identifier,
3453 init, elt_type,
3454 LOOKUP_NORMAL,
3455 complain);
3456 stable = stabilize_init (init_expr, &init_preeval_expr);
3457 }
3458 else if (array_p)
844ae01d 3459 {
25357d1e 3460 tree vecinit = NULL_TREE;
9771b263 3461 if (vec_safe_length (*init) == 1
014397c2 3462 && DIRECT_LIST_INIT_P ((**init)[0]))
25357d1e 3463 {
9771b263 3464 vecinit = (**init)[0];
1f65a8c8
JM
3465 if (CONSTRUCTOR_NELTS (vecinit) == 0)
3466 /* List-value-initialization, leave it alone. */;
25357d1e
JM
3467 else
3468 {
1f65a8c8
JM
3469 tree arraytype, domain;
3470 if (TREE_CONSTANT (nelts))
3471 domain = compute_array_index_type (NULL_TREE, nelts,
3472 complain);
3473 else
7d5e76c8
JM
3474 /* We'll check the length at runtime. */
3475 domain = NULL_TREE;
1f65a8c8
JM
3476 arraytype = build_cplus_array_type (type, domain);
3477 vecinit = digest_init (arraytype, vecinit, complain);
25357d1e 3478 }
25357d1e
JM
3479 }
3480 else if (*init)
5ade1ed2
DG
3481 {
3482 if (complain & tf_error)
3ec16e36
AO
3483 error ("parenthesized initializer in array new");
3484 return error_mark_node;
5ade1ed2 3485 }
6de9cd9a 3486 init_expr
b73a4704
JM
3487 = build_vec_init (data_addr,
3488 cp_build_binary_op (input_location,
3489 MINUS_EXPR, outer_nelts,
3490 integer_one_node,
3491 complain),
3492 vecinit,
3493 explicit_value_init_p,
3494 /*from_array=*/0,
3495 complain);
6de9cd9a
DN
3496
3497 /* An array initialization is stable because the initialization
3498 of each element is a full-expression, so the temporaries don't
3499 leak out. */
3500 stable = true;
3501 }
f30efcb7 3502 else
8d08fdba 3503 {
04757a2a 3504 init_expr = cp_build_fold_indirect_ref (data_addr);
9207099b 3505
95552437 3506 if (type_build_ctor_call (type) && !explicit_value_init_p)
b84f4651
MM
3507 {
3508 init_expr = build_special_member_call (init_expr,
3509 complete_ctor_identifier,
3510 init, elt_type,
5ade1ed2
DG
3511 LOOKUP_NORMAL,
3512 complain);
844ae01d
JM
3513 }
3514 else if (explicit_value_init_p)
3515 {
1d7bc790
NS
3516 /* Something like `new int()'. NO_CLEANUP is needed so
3517 we don't try and build a (possibly ill-formed)
3518 destructor. */
3519 tree val = build_value_init (type, complain | tf_no_cleanup);
a67e7daa
JM
3520 if (val == error_mark_node)
3521 return error_mark_node;
3522 init_expr = build2 (INIT_EXPR, type, init_expr, val);
b84f4651 3523 }
8dc2b103 3524 else
b84f4651 3525 {
c166b898
ILT
3526 tree ie;
3527
b84f4651
MM
3528 /* We are processing something like `new int (10)', which
3529 means allocate an int, and initialize it with 10. */
3db45ab5 3530
e2e03032
PC
3531 ie = build_x_compound_expr_from_vec (*init, "new initializer",
3532 complain);
4f2e1536
MP
3533 init_expr = cp_build_modify_expr (input_location, init_expr,
3534 INIT_EXPR, ie, complain);
b84f4651 3535 }
817a77e4
JM
3536 /* If the initializer uses C++14 aggregate NSDMI that refer to the
3537 object being initialized, replace them now and don't try to
3538 preevaluate. */
3539 bool had_placeholder = false;
2166aeb3 3540 if (!processing_template_decl
817a77e4
JM
3541 && TREE_CODE (init_expr) == INIT_EXPR)
3542 TREE_OPERAND (init_expr, 1)
3543 = replace_placeholders (TREE_OPERAND (init_expr, 1),
3544 TREE_OPERAND (init_expr, 0),
3545 &had_placeholder);
3546 stable = (!had_placeholder
3547 && stabilize_init (init_expr, &init_preeval_expr));
96790071
JM
3548 }
3549
3550 if (init_expr == error_mark_node)
3551 return error_mark_node;
1f109f0f 3552
20c39572
JM
3553 /* If any part of the object initialization terminates by throwing an
3554 exception and a suitable deallocation function can be found, the
3555 deallocation function is called to free the memory in which the
3556 object was being constructed, after which the exception continues
3557 to propagate in the context of the new-expression. If no
3558 unambiguous matching deallocation function can be found,
3559 propagating the exception does not cause the object's memory to be
3560 freed. */
bfecd57c 3561 if (flag_exceptions)
1f109f0f 3562 {
d746e87d 3563 enum tree_code dcode = array_p ? VEC_DELETE_EXPR : DELETE_EXPR;
96790071 3564 tree cleanup;
a7d87521 3565
5355deec 3566 /* The Standard is unclear here, but the right thing to do
f4f4610e
MM
3567 is to use the same method for finding deallocation
3568 functions that we use for finding allocation functions. */
10ee5386
JM
3569 cleanup = (build_op_delete_call
3570 (dcode,
9207099b 3571 alloc_node,
10ee5386
JM
3572 size,
3573 globally_qualified_p,
3574 placement_allocation_fn_p ? alloc_call : NULL_TREE,
4b978f96
PC
3575 alloc_fn,
3576 complain));
2bb14213 3577
6de9cd9a
DN
3578 if (!cleanup)
3579 /* We're done. */;
3580 else if (stable)
3581 /* This is much simpler if we were able to preevaluate all of
3582 the arguments to the constructor call. */
d665b6e5
MLI
3583 {
3584 /* CLEANUP is compiler-generated, so no diagnostics. */
3585 TREE_NO_WARNING (cleanup) = true;
3586 init_expr = build2 (TRY_CATCH_EXPR, void_type_node,
3587 init_expr, cleanup);
3588 /* Likewise, this try-catch is compiler-generated. */
3589 TREE_NO_WARNING (init_expr) = true;
3590 }
6de9cd9a
DN
3591 else
3592 /* Ack! First we allocate the memory. Then we set our sentry
3593 variable to true, and expand a cleanup that deletes the
3594 memory if sentry is true. Then we run the constructor, and
3595 finally clear the sentry.
3596
3597 We need to do this because we allocate the space first, so
3598 if there are any temporaries with cleanups in the
3599 constructor args and we weren't able to preevaluate them, we
3600 need this EH region to extend until end of full-expression
3601 to preserve nesting. */
da4768fe 3602 {
96790071 3603 tree end, sentry, begin;
2face519
JM
3604
3605 begin = get_target_expr (boolean_true_node);
659e5a7a 3606 CLEANUP_EH_ONLY (begin) = 1;
2face519 3607
659e5a7a
JM
3608 sentry = TARGET_EXPR_SLOT (begin);
3609
d665b6e5
MLI
3610 /* CLEANUP is compiler-generated, so no diagnostics. */
3611 TREE_NO_WARNING (cleanup) = true;
3612
659e5a7a 3613 TARGET_EXPR_CLEANUP (begin)
f293ce4b 3614 = build3 (COND_EXPR, void_type_node, sentry,
632f2871 3615 cleanup, void_node);
2face519 3616
f293ce4b
RS
3617 end = build2 (MODIFY_EXPR, TREE_TYPE (sentry),
3618 sentry, boolean_false_node);
2face519 3619
96790071 3620 init_expr
f293ce4b
RS
3621 = build2 (COMPOUND_EXPR, void_type_node, begin,
3622 build2 (COMPOUND_EXPR, void_type_node, init_expr,
3623 end));
d665b6e5
MLI
3624 /* Likewise, this is compiler-generated. */
3625 TREE_NO_WARNING (init_expr) = true;
da4768fe 3626 }
1f109f0f 3627 }
f4f4610e 3628 }
8b5e2ce4
JM
3629 else
3630 init_expr = NULL_TREE;
3631
3632 /* Now build up the return value in reverse order. */
96790071 3633
8b5e2ce4 3634 rval = data_addr;
2face519 3635
8b5e2ce4 3636 if (init_expr)
f293ce4b 3637 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), init_expr, rval);
8b5e2ce4 3638 if (cookie_expr)
f293ce4b 3639 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), cookie_expr, rval);
8b5e2ce4 3640
10ee5386 3641 if (rval == data_addr)
8b5e2ce4
JM
3642 /* If we don't have an initializer or a cookie, strip the TARGET_EXPR
3643 and return the call (which doesn't need to be adjusted). */
3644 rval = TARGET_EXPR_INITIAL (alloc_expr);
3645 else
d18c083e 3646 {
8b5e2ce4
JM
3647 if (check_new)
3648 {
ba47d38d
AH
3649 tree ifexp = cp_build_binary_op (input_location,
3650 NE_EXPR, alloc_node,
6d96d7ff 3651 nullptr_node,
5ade1ed2 3652 complain);
4cbc4bd7
PC
3653 rval = build_conditional_expr (input_location, ifexp, rval,
3654 alloc_node, complain);
8b5e2ce4 3655 }
d18c083e 3656
8b5e2ce4
JM
3657 /* Perform the allocation before anything else, so that ALLOC_NODE
3658 has been initialized before we start using it. */
f293ce4b 3659 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), alloc_expr, rval);
8b5e2ce4 3660 }
51c184be 3661
6de9cd9a 3662 if (init_preeval_expr)
f293ce4b 3663 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), init_preeval_expr, rval);
6de9cd9a 3664
d04a575f 3665 /* A new-expression is never an lvalue. */
bb19d4af 3666 gcc_assert (!obvalue_p (rval));
058dcc25 3667
25357d1e 3668 return convert (pointer_type, rval);
8d08fdba 3669}
63c9a190 3670
c166b898
ILT
3671/* Generate a representation for a C++ "new" expression. *PLACEMENT
3672 is a vector of placement-new arguments (or NULL if none). If NELTS
3673 is NULL, TYPE is the type of the storage to be allocated. If NELTS
3674 is not NULL, then this is an array-new allocation; TYPE is the type
3675 of the elements in the array and NELTS is the number of elements in
3676 the array. *INIT, if non-NULL, is the initializer for the new
3677 object, or an empty vector to indicate an initializer of "()". If
3678 USE_GLOBAL_NEW is true, then the user explicitly wrote "::new"
3679 rather than just "new". This may change PLACEMENT and INIT. */
63c9a190
MM
3680
3681tree
9771b263
DN
3682build_new (vec<tree, va_gc> **placement, tree type, tree nelts,
3683 vec<tree, va_gc> **init, int use_global_new, tsubst_flags_t complain)
63c9a190
MM
3684{
3685 tree rval;
9771b263 3686 vec<tree, va_gc> *orig_placement = NULL;
c166b898 3687 tree orig_nelts = NULL_TREE;
9771b263 3688 vec<tree, va_gc> *orig_init = NULL;
63c9a190 3689
c166b898 3690 if (type == error_mark_node)
63c9a190
MM
3691 return error_mark_node;
3692
9a642cca 3693 if (nelts == NULL_TREE
c19267cb
JM
3694 /* Don't do auto deduction where it might affect mangling. */
3695 && (!processing_template_decl || at_function_scope_p ()))
86a09a9e
JM
3696 {
3697 tree auto_node = type_uses_auto (type);
2e5748d2
JM
3698 if (auto_node)
3699 {
9a642cca 3700 tree d_init = NULL_TREE;
009bb506
MP
3701 const size_t len = vec_safe_length (*init);
3702 /* E.g. new auto(x) must have exactly one element, or
3703 a {} initializer will have one element. */
3704 if (len == 1)
9a642cca
JM
3705 {
3706 d_init = (**init)[0];
3707 d_init = resolve_nondeduced_context (d_init, complain);
3708 }
009bb506
MP
3709 /* For the rest, e.g. new A(1, 2, 3), create a list. */
3710 else if (len > 1)
3711 {
3712 unsigned int n;
3713 tree t;
3714 tree *pp = &d_init;
3715 FOR_EACH_VEC_ELT (**init, n, t)
3716 {
3717 t = resolve_nondeduced_context (t, complain);
3718 *pp = build_tree_list (NULL_TREE, t);
3719 pp = &TREE_CHAIN (*pp);
3720 }
3721 }
87ca4015 3722 type = do_auto_deduction (type, d_init, auto_node, complain);
2e5748d2 3723 }
86a09a9e
JM
3724 }
3725
63c9a190
MM
3726 if (processing_template_decl)
3727 {
3728 if (dependent_type_p (type)
c166b898 3729 || any_type_dependent_arguments_p (*placement)
63c9a190 3730 || (nelts && type_dependent_expression_p (nelts))
879b0a1d 3731 || (nelts && *init)
c166b898
ILT
3732 || any_type_dependent_arguments_p (*init))
3733 return build_raw_new_expr (*placement, type, nelts, *init,
63c9a190 3734 use_global_new);
c166b898
ILT
3735
3736 orig_placement = make_tree_vector_copy (*placement);
3737 orig_nelts = nelts;
a4bbf910 3738 if (*init)
817a77e4
JM
3739 {
3740 orig_init = make_tree_vector_copy (*init);
3741 /* Also copy any CONSTRUCTORs in *init, since reshape_init and
3742 digest_init clobber them in place. */
3743 for (unsigned i = 0; i < orig_init->length(); ++i)
3744 {
3745 tree e = (**init)[i];
3746 if (TREE_CODE (e) == CONSTRUCTOR)
3747 (**init)[i] = copy_node (e);
3748 }
3749 }
c166b898
ILT
3750
3751 make_args_non_dependent (*placement);
63c9a190
MM
3752 if (nelts)
3753 nelts = build_non_dependent_expr (nelts);
c166b898 3754 make_args_non_dependent (*init);
63c9a190
MM
3755 }
3756
3757 if (nelts)
3758 {
3759 if (!build_expr_type_conversion (WANT_INT | WANT_ENUM, nelts, false))
5ade1ed2
DG
3760 {
3761 if (complain & tf_error)
cbe5f3b3 3762 permerror (input_location, "size in array new must have integral type");
5ade1ed2
DG
3763 else
3764 return error_mark_node;
3765 }
685c8340
MS
3766
3767 /* Try to determine the constant value only for the purposes
3768 of the diagnostic below but continue to use the original
3769 value and handle const folding later. */
e56f6629 3770 const_tree cst_nelts = fold_non_dependent_expr (nelts, complain);
685c8340
MS
3771
3772 /* The expression in a noptr-new-declarator is erroneous if it's of
3773 non-class type and its value before converting to std::size_t is
3774 less than zero. ... If the expression is a constant expression,
3775 the program is ill-fomed. */
ea219e6e 3776 if (TREE_CODE (cst_nelts) == INTEGER_CST
28a8cef1
MS
3777 && !valid_array_size_p (input_location, cst_nelts, NULL_TREE,
3778 complain & tf_error))
3779 return error_mark_node;
685c8340 3780
03a904b5 3781 nelts = mark_rvalue_use (nelts);
4b978f96 3782 nelts = cp_save_expr (cp_convert (sizetype, nelts, complain));
63c9a190
MM
3783 }
3784
3785 /* ``A reference cannot be created by the new operator. A reference
3786 is not an object (8.2.2, 8.4.3), so a pointer to it could not be
3787 returned by new.'' ARM 5.3.3 */
9f613f06 3788 if (TYPE_REF_P (type))
63c9a190 3789 {
5ade1ed2
DG
3790 if (complain & tf_error)
3791 error ("new cannot be applied to a reference type");
3792 else
3793 return error_mark_node;
63c9a190
MM
3794 type = TREE_TYPE (type);
3795 }
3796
3797 if (TREE_CODE (type) == FUNCTION_TYPE)
3798 {
5ade1ed2
DG
3799 if (complain & tf_error)
3800 error ("new cannot be applied to a function type");
63c9a190
MM
3801 return error_mark_node;
3802 }
3803
57ccb546
MM
3804 /* The type allocated must be complete. If the new-type-id was
3805 "T[N]" then we are just checking that "T" is complete here, but
3806 that is equivalent, since the value of "N" doesn't matter. */
309714d4 3807 if (!complete_type_or_maybe_complain (type, NULL_TREE, complain))
39fb9d72
DB
3808 return error_mark_node;
3809
5ade1ed2 3810 rval = build_new_1 (placement, type, nelts, init, use_global_new, complain);
63c9a190
MM
3811 if (rval == error_mark_node)
3812 return error_mark_node;
3813
3814 if (processing_template_decl)
c166b898
ILT
3815 {
3816 tree ret = build_raw_new_expr (orig_placement, type, orig_nelts,
3817 orig_init, use_global_new);
3818 release_tree_vector (orig_placement);
3819 release_tree_vector (orig_init);
3820 return ret;
3821 }
63c9a190
MM
3822
3823 /* Wrap it in a NOP_EXPR so warn_if_unused_value doesn't complain. */
3824 rval = build1 (NOP_EXPR, TREE_TYPE (rval), rval);
3825 TREE_NO_WARNING (rval) = 1;
3826
3827 return rval;
3828}
8d08fdba 3829\f
f30432d7 3830static tree
362efdc1 3831build_vec_delete_1 (tree base, tree maxindex, tree type,
574cfaa4
JM
3832 special_function_kind auto_delete_vec,
3833 int use_global_delete, tsubst_flags_t complain)
f30432d7
MS
3834{
3835 tree virtual_size;
e92cc029 3836 tree ptype = build_pointer_type (type = complete_type (type));
c9b0866a 3837 tree size_exp;
f30432d7
MS
3838
3839 /* Temporary variables used by the loop. */
3840 tree tbase, tbase_init;
3841
3842 /* This is the body of the loop that implements the deletion of a
3843 single element, and moves temp variables to next elements. */
3844 tree body;
3845
3846 /* This is the LOOP_EXPR that governs the deletion of the elements. */
c7b62f14 3847 tree loop = 0;
f30432d7
MS
3848
3849 /* This is the thing that governs what to do after the loop has run. */
3850 tree deallocate_expr = 0;
3851
3852 /* This is the BIND_EXPR which holds the outermost iterator of the
3853 loop. It is convenient to set this variable up and test it before
3854 executing any other code in the loop.
3855 This is also the containing expression returned by this function. */
3856 tree controller = NULL_TREE;
5be014d5 3857 tree tmp;
f30432d7 3858
b2153b98 3859 /* We should only have 1-D arrays here. */
8dc2b103 3860 gcc_assert (TREE_CODE (type) != ARRAY_TYPE);
b2153b98 3861
574cfaa4
JM
3862 if (base == error_mark_node || maxindex == error_mark_node)
3863 return error_mark_node;
3864
c9b0866a
PC
3865 if (!COMPLETE_TYPE_P (type))
3866 {
097f82ec
DM
3867 if (complain & tf_warning)
3868 {
3869 auto_diagnostic_group d;
3870 if (warning (OPT_Wdelete_incomplete,
3871 "possible problem detected in invocation of "
a9c697b8 3872 "operator %<delete []%>"))
097f82ec
DM
3873 {
3874 cxx_incomplete_type_diagnostic (base, type, DK_WARNING);
3875 inform (input_location, "neither the destructor nor the "
a9c697b8 3876 "class-specific operator %<delete []%> will be called, "
097f82ec
DM
3877 "even if they are declared when the class is defined");
3878 }
3879 }
20b06add
JM
3880 /* This size won't actually be used. */
3881 size_exp = size_one_node;
3882 goto no_destructor;
c9b0866a
PC
3883 }
3884
3885 size_exp = size_in_bytes (type);
3886
eca7fc57 3887 if (! MAYBE_CLASS_TYPE_P (type))
c7b62f14 3888 goto no_destructor;
eca7fc57
JM
3889 else if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
3890 {
3891 /* Make sure the destructor is callable. */
3892 if (type_build_dtor_call (type))
3893 {
3894 tmp = build_delete (ptype, base, sfk_complete_destructor,
3895 LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 1,
3896 complain);
3897 if (tmp == error_mark_node)
3898 return error_mark_node;
3899 }
3900 goto no_destructor;
3901 }
f30432d7 3902
708cae97 3903 /* The below is short by the cookie size. */
fed3cef0 3904 virtual_size = size_binop (MULT_EXPR, size_exp,
cda0a029 3905 fold_convert (sizetype, maxindex));
f30432d7 3906
46e8c075 3907 tbase = create_temporary_var (ptype);
5d49b6a7 3908 tbase_init
4f2e1536 3909 = cp_build_modify_expr (input_location, tbase, NOP_EXPR,
5d49b6a7
RG
3910 fold_build_pointer_plus_loc (input_location,
3911 fold_convert (ptype,
3912 base),
3913 virtual_size),
3914 complain);
574cfaa4
JM
3915 if (tbase_init == error_mark_node)
3916 return error_mark_node;
f293ce4b
RS
3917 controller = build3 (BIND_EXPR, void_type_node, tbase,
3918 NULL_TREE, NULL_TREE);
f30432d7 3919 TREE_SIDE_EFFECTS (controller) = 1;
f30432d7 3920
f293ce4b 3921 body = build1 (EXIT_EXPR, void_type_node,
5cd88d68
RS
3922 build2 (EQ_EXPR, boolean_type_node, tbase,
3923 fold_convert (ptype, base)));
db3927fb 3924 tmp = fold_build1_loc (input_location, NEGATE_EXPR, sizetype, size_exp);
5d49b6a7 3925 tmp = fold_build_pointer_plus (tbase, tmp);
4f2e1536 3926 tmp = cp_build_modify_expr (input_location, tbase, NOP_EXPR, tmp, complain);
574cfaa4
JM
3927 if (tmp == error_mark_node)
3928 return error_mark_node;
3929 body = build_compound_expr (input_location, body, tmp);
3930 tmp = build_delete (ptype, tbase, sfk_complete_destructor,
3931 LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 1,
3932 complain);
3933 if (tmp == error_mark_node)
3934 return error_mark_node;
3935 body = build_compound_expr (input_location, body, tmp);
f30432d7 3936
f293ce4b 3937 loop = build1 (LOOP_EXPR, void_type_node, body);
c2255bc4 3938 loop = build_compound_expr (input_location, tbase_init, loop);
f30432d7
MS
3939
3940 no_destructor:
e79a6b40
JM
3941 /* Delete the storage if appropriate. */
3942 if (auto_delete_vec == sfk_deleting_destructor)
f30432d7
MS
3943 {
3944 tree base_tbd;
3945
708cae97 3946 /* The below is short by the cookie size. */
fed3cef0 3947 virtual_size = size_binop (MULT_EXPR, size_exp,
cda0a029 3948 fold_convert (sizetype, maxindex));
f30432d7
MS
3949
3950 if (! TYPE_VEC_NEW_USES_COOKIE (type))
3951 /* no header */
3952 base_tbd = base;
3953 else
3954 {
834c6dff
MM
3955 tree cookie_size;
3956
46e995e0 3957 cookie_size = targetm.cxx.get_cookie_size (type);
574cfaa4
JM
3958 base_tbd = cp_build_binary_op (input_location,
3959 MINUS_EXPR,
3960 cp_convert (string_type_node,
4b978f96 3961 base, complain),
574cfaa4
JM
3962 cookie_size,
3963 complain);
3964 if (base_tbd == error_mark_node)
3965 return error_mark_node;
4b978f96 3966 base_tbd = cp_convert (ptype, base_tbd, complain);
e92cc029 3967 /* True size with header. */
834c6dff 3968 virtual_size = size_binop (PLUS_EXPR, virtual_size, cookie_size);
f30432d7 3969 }
86f45d2c 3970
e79a6b40
JM
3971 deallocate_expr = build_op_delete_call (VEC_DELETE_EXPR,
3972 base_tbd, virtual_size,
3973 use_global_delete & 1,
3974 /*placement=*/NULL_TREE,
4b978f96
PC
3975 /*alloc_fn=*/NULL_TREE,
3976 complain);
f30432d7
MS
3977 }
3978
c7b62f14
NS
3979 body = loop;
3980 if (!deallocate_expr)
3981 ;
3982 else if (!body)
3983 body = deallocate_expr;
f30432d7 3984 else
ee392fc2
NS
3985 /* The delete operator mist be called, even if a destructor
3986 throws. */
3987 body = build2 (TRY_FINALLY_EXPR, void_type_node, body, deallocate_expr);
c8094d83 3988
c7b62f14
NS
3989 if (!body)
3990 body = integer_zero_node;
c8094d83 3991
f30432d7 3992 /* Outermost wrapper: If pointer is null, punt. */
03ca8fb3
JJ
3993 tree cond = build2_loc (input_location, NE_EXPR, boolean_type_node, base,
3994 fold_convert (TREE_TYPE (base), nullptr_node));
03a616ac
JJ
3995 /* This is a compiler generated comparison, don't emit
3996 e.g. -Wnonnull-compare warning for it. */
03ca8fb3
JJ
3997 TREE_NO_WARNING (cond) = 1;
3998 body = build3_loc (input_location, COND_EXPR, void_type_node,
3999 cond, body, integer_zero_node);
d5bcd6d4 4000 COND_EXPR_IS_VEC_DELETE (body) = true;
f30432d7
MS
4001 body = build1 (NOP_EXPR, void_type_node, body);
4002
4003 if (controller)
4004 {
4005 TREE_OPERAND (controller, 1) = body;
4e8dca1c 4006 body = controller;
f30432d7 4007 }
4e8dca1c
JM
4008
4009 if (TREE_CODE (base) == SAVE_EXPR)
4010 /* Pre-evaluate the SAVE_EXPR outside of the BIND_EXPR. */
f293ce4b 4011 body = build2 (COMPOUND_EXPR, void_type_node, base, body);
4e8dca1c 4012
574cfaa4 4013 return convert_to_void (body, ICV_CAST, complain);
f30432d7
MS
4014}
4015
c8094d83 4016/* Create an unnamed variable of the indicated TYPE. */
c395453c 4017
f1dedc31 4018tree
362efdc1 4019create_temporary_var (tree type)
8a72a046 4020{
f1dedc31 4021 tree decl;
c8094d83 4022
c2255bc4
AH
4023 decl = build_decl (input_location,
4024 VAR_DECL, NULL_TREE, type);
f1dedc31
MM
4025 TREE_USED (decl) = 1;
4026 DECL_ARTIFICIAL (decl) = 1;
f1dedc31 4027 DECL_IGNORED_P (decl) = 1;
b35d4555 4028 DECL_CONTEXT (decl) = current_function_decl;
f1dedc31 4029
f1dedc31 4030 return decl;
8a72a046
MM
4031}
4032
f1dedc31
MM
4033/* Create a new temporary variable of the indicated TYPE, initialized
4034 to INIT.
8a72a046 4035
f1dedc31
MM
4036 It is not entered into current_binding_level, because that breaks
4037 things when it comes time to do final cleanups (which take place
4038 "outside" the binding contour of the function). */
4039
fe5b5c36 4040tree
362efdc1 4041get_temp_regvar (tree type, tree init)
f30432d7 4042{
f1dedc31 4043 tree decl;
8a72a046 4044
f1dedc31 4045 decl = create_temporary_var (type);
350fae66 4046 add_decl_expr (decl);
c8094d83 4047
4f2e1536
MP
4048 finish_expr_stmt (cp_build_modify_expr (input_location, decl, INIT_EXPR,
4049 init, tf_warning_or_error));
8a72a046 4050
f1dedc31 4051 return decl;
f30432d7
MS
4052}
4053
024f2d89
JM
4054/* Subroutine of build_vec_init. Returns true if assigning to an array of
4055 INNER_ELT_TYPE from INIT is trivial. */
4056
4057static bool
4058vec_copy_assign_is_trivial (tree inner_elt_type, tree init)
4059{
4060 tree fromtype = inner_elt_type;
72b3e203 4061 if (lvalue_p (init))
024f2d89
JM
4062 fromtype = cp_build_reference_type (fromtype, /*rval*/false);
4063 return is_trivially_xible (MODIFY_EXPR, inner_elt_type, fromtype);
4064}
4065
5a68fae7
JM
4066/* Subroutine of build_vec_init: Check that the array has at least N
4067 elements. Other parameters are local variables in build_vec_init. */
4068
4069void
4070finish_length_check (tree atype, tree iterator, tree obase, unsigned n)
4071{
4072 tree nelts = build_int_cst (ptrdiff_type_node, n - 1);
4073 if (TREE_CODE (atype) != ARRAY_TYPE)
4074 {
4075 if (flag_exceptions)
4076 {
4077 tree c = fold_build2 (LT_EXPR, boolean_type_node, iterator,
4078 nelts);
4079 c = build3 (COND_EXPR, void_type_node, c,
4080 throw_bad_array_new_length (), void_node);
4081 finish_expr_stmt (c);
4082 }
4083 /* Don't check an array new when -fno-exceptions. */
4084 }
f34ebeb2
ML
4085 else if (sanitize_flags_p (SANITIZE_BOUNDS)
4086 && current_function_decl != NULL_TREE)
5a68fae7
JM
4087 {
4088 /* Make sure the last element of the initializer is in bounds. */
4089 finish_expr_stmt
4090 (ubsan_instrument_bounds
4091 (input_location, obase, &nelts, /*ignore_off_by_one*/false));
4092 }
4093}
4094
f1dedc31
MM
4095/* `build_vec_init' returns tree structure that performs
4096 initialization of a vector of aggregate types.
8d08fdba 4097
9207099b
JM
4098 BASE is a reference to the vector, of ARRAY_TYPE, or a pointer
4099 to the first element, of POINTER_TYPE.
a48cccea 4100 MAXINDEX is the maximum index of the array (one less than the
9207099b 4101 number of elements). It is only used if BASE is a pointer or
a48cccea 4102 TYPE_DOMAIN (TREE_TYPE (BASE)) == NULL_TREE.
b84f4651 4103
8d08fdba
MS
4104 INIT is the (possibly NULL) initializer.
4105
844ae01d
JM
4106 If EXPLICIT_VALUE_INIT_P is true, then INIT must be NULL. All
4107 elements in the array are value-initialized.
b84f4651 4108
8d08fdba
MS
4109 FROM_ARRAY is 0 if we should init everything with INIT
4110 (i.e., every element initialized from INIT).
4111 FROM_ARRAY is 1 if we should index into INIT in parallel
4112 with initialization of DECL.
4113 FROM_ARRAY is 2 if we should index into INIT in parallel,
4114 but use assignment instead of initialization. */
4115
4116tree
3db45ab5 4117build_vec_init (tree base, tree maxindex, tree init,
844ae01d 4118 bool explicit_value_init_p,
5ade1ed2 4119 int from_array, tsubst_flags_t complain)
8d08fdba
MS
4120{
4121 tree rval;
8a72a046 4122 tree base2 = NULL_TREE;
e833cb11 4123 tree itype = NULL_TREE;
8a72a046 4124 tree iterator;
9207099b 4125 /* The type of BASE. */
f30efcb7 4126 tree atype = TREE_TYPE (base);
f1dedc31 4127 /* The type of an element in the array. */
f30efcb7 4128 tree type = TREE_TYPE (atype);
c8094d83 4129 /* The element type reached after removing all outer array
b5af3133
MM
4130 types. */
4131 tree inner_elt_type;
f1dedc31
MM
4132 /* The type of a pointer to an element in the array. */
4133 tree ptype;
4134 tree stmt_expr;
4135 tree compound_stmt;
4136 int destroy_temps;
f5984164 4137 tree try_block = NULL_TREE;
faa9232d 4138 HOST_WIDE_INT num_initialized_elts = 0;
2a3398e1 4139 bool is_global;
fa2200cb 4140 tree obase = base;
f91352dc 4141 bool xvalue = false;
574cfaa4 4142 bool errors = false;
f9d0ca40 4143 location_t loc = (init ? cp_expr_loc_or_input_loc (init)
5a68fae7 4144 : location_of (base));
c8094d83 4145
9207099b 4146 if (TREE_CODE (atype) == ARRAY_TYPE && TYPE_DOMAIN (atype))
a48cccea
JM
4147 maxindex = array_type_nelts (atype);
4148
ddffee68 4149 if (maxindex == NULL_TREE || maxindex == error_mark_node)
8d08fdba
MS
4150 return error_mark_node;
4151
cda0a029 4152 maxindex = maybe_constant_value (maxindex);
844ae01d 4153 if (explicit_value_init_p)
b84f4651
MM
4154 gcc_assert (!init);
4155
9207099b 4156 inner_elt_type = strip_array_types (type);
567ef749
JM
4157
4158 /* Look through the TARGET_EXPR around a compound literal. */
4159 if (init && TREE_CODE (init) == TARGET_EXPR
5a4d8044
JM
4160 && TREE_CODE (TARGET_EXPR_INITIAL (init)) == CONSTRUCTOR
4161 && from_array != 2)
567ef749
JM
4162 init = TARGET_EXPR_INITIAL (init);
4163
0655c6d5
JM
4164 bool direct_init = false;
4165 if (from_array && init && BRACE_ENCLOSED_INITIALIZER_P (init)
4166 && CONSTRUCTOR_NELTS (init) == 1)
4167 {
4168 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
4169 if (TREE_CODE (TREE_TYPE (elt)) == ARRAY_TYPE)
4170 {
4171 direct_init = DIRECT_LIST_INIT_P (init);
4172 init = elt;
4173 }
4174 }
4175
5a68fae7 4176 /* If we have a braced-init-list or string constant, make sure that the array
7d5e76c8 4177 is big enough for all the initializers. */
5a68fae7
JM
4178 bool length_check = (init
4179 && (TREE_CODE (init) == STRING_CST
4180 || (TREE_CODE (init) == CONSTRUCTOR
4181 && CONSTRUCTOR_NELTS (init) > 0))
46621807 4182 && !TREE_CONSTANT (maxindex));
7d5e76c8 4183
c8a3d889 4184 if (init
25357d1e 4185 && TREE_CODE (atype) == ARRAY_TYPE
06b76c7f 4186 && TREE_CONSTANT (maxindex)
c8a3d889 4187 && (from_array == 2
024f2d89 4188 ? vec_copy_assign_is_trivial (inner_elt_type, init)
c8a3d889 4189 : !TYPE_NEEDS_CONSTRUCTING (type))
f30efcb7 4190 && ((TREE_CODE (init) == CONSTRUCTOR
d1a73b0b
JM
4191 && (BRACE_ENCLOSED_INITIALIZER_P (init)
4192 || (same_type_ignoring_top_level_qualifiers_p
4193 (atype, TREE_TYPE (init))))
f30efcb7
JM
4194 /* Don't do this if the CONSTRUCTOR might contain something
4195 that might throw and require us to clean up. */
9771b263 4196 && (vec_safe_is_empty (CONSTRUCTOR_ELTS (init))
b5af3133 4197 || ! TYPE_HAS_NONTRIVIAL_DESTRUCTOR (inner_elt_type)))
f30efcb7
JM
4198 || from_array))
4199 {
c32097d8 4200 /* Do non-default initialization of trivial arrays resulting from
f30efcb7
JM
4201 brace-enclosed initializers. In this case, digest_init and
4202 store_constructor will handle the semantics for us. */
4203
a47c2f62
JM
4204 if (BRACE_ENCLOSED_INITIALIZER_P (init))
4205 init = digest_init (atype, init, complain);
f293ce4b 4206 stmt_expr = build2 (INIT_EXPR, atype, base, init);
f30efcb7
JM
4207 return stmt_expr;
4208 }
4209
4b978f96 4210 maxindex = cp_convert (ptrdiff_type_node, maxindex, complain);
cda0a029
JM
4211 maxindex = fold_simple (maxindex);
4212
9207099b
JM
4213 if (TREE_CODE (atype) == ARRAY_TYPE)
4214 {
4215 ptype = build_pointer_type (type);
89fcabaf
PC
4216 base = decay_conversion (base, complain);
4217 if (base == error_mark_node)
4218 return error_mark_node;
4b978f96 4219 base = cp_convert (ptype, base, complain);
9207099b
JM
4220 }
4221 else
4222 ptype = atype;
8d08fdba 4223
f1dedc31 4224 /* The code we are generating looks like:
303b7406 4225 ({
f1dedc31 4226 T* t1 = (T*) base;
f30efcb7 4227 T* rval = t1;
f1dedc31
MM
4228 ptrdiff_t iterator = maxindex;
4229 try {
4977bab6 4230 for (; iterator != -1; --iterator) {
f30efcb7
JM
4231 ... initialize *t1 ...
4232 ++t1;
4977bab6 4233 }
f1dedc31 4234 } catch (...) {
0cbd7506 4235 ... destroy elements that were constructed ...
f1dedc31 4236 }
303b7406
NS
4237 rval;
4238 })
c8094d83 4239
f1dedc31
MM
4240 We can omit the try and catch blocks if we know that the
4241 initialization will never throw an exception, or if the array
f30efcb7 4242 elements do not have destructors. We can omit the loop completely if
c8094d83 4243 the elements of the array do not have constructors.
f1dedc31
MM
4244
4245 We actually wrap the entire body of the above in a STMT_EXPR, for
c8094d83 4246 tidiness.
f1dedc31
MM
4247
4248 When copying from array to another, when the array elements have
4249 only trivial copy constructors, we should use __builtin_memcpy
4250 rather than generating a loop. That way, we could take advantage
3b426391 4251 of whatever cleverness the back end has for dealing with copies
f1dedc31
MM
4252 of blocks of memory. */
4253
2a3398e1 4254 is_global = begin_init_stmts (&stmt_expr, &compound_stmt);
f2c5f623 4255 destroy_temps = stmts_are_full_exprs_p ();
ae499cce 4256 current_stmt_tree ()->stmts_are_full_exprs_p = 0;
f30efcb7 4257 rval = get_temp_regvar (ptype, base);
f1dedc31 4258 base = get_temp_regvar (ptype, rval);
8a72a046 4259 iterator = get_temp_regvar (ptrdiff_type_node, maxindex);
8d08fdba 4260
5a4d8044
JM
4261 /* If initializing one array from another, initialize element by
4262 element. We rely upon the below calls to do the argument
4263 checking. Evaluate the initializer before entering the try block. */
4264 if (from_array && init && TREE_CODE (init) != CONSTRUCTOR)
4265 {
f91352dc
JM
4266 if (lvalue_kind (init) & clk_rvalueref)
4267 xvalue = true;
89fcabaf
PC
4268 base2 = decay_conversion (init, complain);
4269 if (base2 == error_mark_node)
4270 return error_mark_node;
5a4d8044
JM
4271 itype = TREE_TYPE (base2);
4272 base2 = get_temp_regvar (itype, base2);
4273 itype = TREE_TYPE (itype);
4274 }
4275
8a72a046 4276 /* Protect the entire array initialization so that we can destroy
f30efcb7
JM
4277 the partially constructed array if an exception is thrown.
4278 But don't do this if we're assigning. */
4279 if (flag_exceptions && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
4280 && from_array != 2)
ed5511d9
MM
4281 {
4282 try_block = begin_try_block ();
ed5511d9 4283 }
8a72a046 4284
c0014b07
JM
4285 /* Should we try to create a constant initializer? */
4286 bool try_const = (TREE_CODE (atype) == ARRAY_TYPE
4287 && TREE_CONSTANT (maxindex)
a02f26f6
JM
4288 && (init ? TREE_CODE (init) == CONSTRUCTOR
4289 : (type_has_constexpr_default_constructor
4290 (inner_elt_type)))
c0014b07
JM
4291 && (literal_type_p (inner_elt_type)
4292 || TYPE_HAS_CONSTEXPR_CTOR (inner_elt_type)));
4293 vec<constructor_elt, va_gc> *const_vec = NULL;
4294 bool saw_non_const = false;
4295 /* If we're initializing a static array, we want to do static
4296 initialization of any elements with constant initializers even if
4297 some are non-constant. */
4298 bool do_static_init = (DECL_P (obase) && TREE_STATIC (obase));
4299
3bc63227 4300 bool empty_list = false;
1f65a8c8
JM
4301 if (init && BRACE_ENCLOSED_INITIALIZER_P (init)
4302 && CONSTRUCTOR_NELTS (init) == 0)
3bc63227
JM
4303 /* Skip over the handling of non-empty init lists. */
4304 empty_list = true;
1f65a8c8 4305
fa2200cb
JM
4306 /* Maybe pull out constant value when from_array? */
4307
1f65a8c8 4308 else if (init != NULL_TREE && TREE_CODE (init) == CONSTRUCTOR)
8d08fdba 4309 {
c32097d8 4310 /* Do non-default initialization of non-trivial arrays resulting from
f30efcb7 4311 brace-enclosed initializers. */
4038c495 4312 unsigned HOST_WIDE_INT idx;
fa2200cb 4313 tree field, elt;
b25dd954
JM
4314 /* If the constructor already has the array type, it's been through
4315 digest_init, so we shouldn't try to do anything more. */
4316 bool digested = same_type_p (atype, TREE_TYPE (init));
094fe153
JM
4317 from_array = 0;
4318
7d5e76c8 4319 if (length_check)
5a68fae7 4320 finish_length_check (atype, iterator, obase, CONSTRUCTOR_NELTS (init));
7d5e76c8 4321
fa2200cb 4322 if (try_const)
c0014b07 4323 vec_alloc (const_vec, CONSTRUCTOR_NELTS (init));
fa2200cb
JM
4324
4325 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx, field, elt)
8d08fdba 4326 {
f1dedc31 4327 tree baseref = build1 (INDIRECT_REF, type, base);
fa2200cb 4328 tree one_init;
8d08fdba 4329
8a72a046 4330 num_initialized_elts++;
8d08fdba 4331
67c03833 4332 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
b25dd954
JM
4333 if (digested)
4334 one_init = build2 (INIT_EXPR, type, baseref, elt);
4335 else if (MAYBE_CLASS_TYPE_P (type) || TREE_CODE (type) == ARRAY_TYPE)
fa2200cb 4336 one_init = build_aggr_init (baseref, elt, 0, complain);
8a72a046 4337 else
4f2e1536
MP
4338 one_init = cp_build_modify_expr (input_location, baseref,
4339 NOP_EXPR, elt, complain);
574cfaa4
JM
4340 if (one_init == error_mark_node)
4341 errors = true;
fa2200cb
JM
4342 if (try_const)
4343 {
c0014b07 4344 tree e = maybe_constant_init (one_init);
fa2200cb
JM
4345 if (reduced_constant_expression_p (e))
4346 {
c0014b07 4347 CONSTRUCTOR_APPEND_ELT (const_vec, field, e);
fa2200cb
JM
4348 if (do_static_init)
4349 one_init = NULL_TREE;
4350 else
4351 one_init = build2 (INIT_EXPR, type, baseref, e);
fa2200cb
JM
4352 }
4353 else
4354 {
4355 if (do_static_init)
f11c7048
JJ
4356 {
4357 tree value = build_zero_init (TREE_TYPE (e), NULL_TREE,
4358 true);
4359 if (value)
c0014b07 4360 CONSTRUCTOR_APPEND_ELT (const_vec, field, value);
f11c7048 4361 }
fa2200cb
JM
4362 saw_non_const = true;
4363 }
4364 }
4365
4366 if (one_init)
4367 finish_expr_stmt (one_init);
67c03833 4368 current_stmt_tree ()->stmts_are_full_exprs_p = 0;
8a72a046 4369
e51fbec3
MP
4370 one_init = cp_build_unary_op (PREINCREMENT_EXPR, base, false,
4371 complain);
574cfaa4
JM
4372 if (one_init == error_mark_node)
4373 errors = true;
4374 else
4375 finish_expr_stmt (one_init);
4376
e51fbec3 4377 one_init = cp_build_unary_op (PREDECREMENT_EXPR, iterator, false,
574cfaa4
JM
4378 complain);
4379 if (one_init == error_mark_node)
4380 errors = true;
4381 else
4382 finish_expr_stmt (one_init);
8d08fdba 4383 }
8d08fdba 4384
3bc63227
JM
4385 /* Any elements without explicit initializers get T{}. */
4386 empty_list = true;
8d08fdba 4387 }
5a68fae7
JM
4388 else if (init && TREE_CODE (init) == STRING_CST)
4389 {
4390 /* Check that the array is at least as long as the string. */
4391 if (length_check)
4392 finish_length_check (atype, iterator, obase,
4393 TREE_STRING_LENGTH (init));
4394 tree length = build_int_cst (ptrdiff_type_node,
4395 TREE_STRING_LENGTH (init));
4396
4397 /* Copy the string to the first part of the array. */
4398 tree alias_set = build_int_cst (build_pointer_type (type), 0);
4399 tree lhs = build2 (MEM_REF, TREE_TYPE (init), base, alias_set);
4400 tree stmt = build2 (MODIFY_EXPR, void_type_node, lhs, init);
4401 finish_expr_stmt (stmt);
4402
4403 /* Adjust the counter and pointer. */
4404 stmt = cp_build_binary_op (loc, MINUS_EXPR, iterator, length, complain);
4405 stmt = build2 (MODIFY_EXPR, void_type_node, iterator, stmt);
4406 finish_expr_stmt (stmt);
4407
4408 stmt = cp_build_binary_op (loc, PLUS_EXPR, base, length, complain);
4409 stmt = build2 (MODIFY_EXPR, void_type_node, base, stmt);
4410 finish_expr_stmt (stmt);
4411
4412 /* And set the rest of the array to NUL. */
4413 from_array = 0;
4414 explicit_value_init_p = true;
4415 }
8a72a046 4416 else if (from_array)
8d08fdba 4417 {
8a72a046 4418 if (init)
5a4d8044 4419 /* OK, we set base2 above. */;
95552437 4420 else if (CLASS_TYPE_P (type)
8a72a046
MM
4421 && ! TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
4422 {
5ade1ed2
DG
4423 if (complain & tf_error)
4424 error ("initializer ends prematurely");
574cfaa4 4425 errors = true;
8a72a046
MM
4426 }
4427 }
8d08fdba 4428
8a72a046
MM
4429 /* Now, default-initialize any remaining elements. We don't need to
4430 do that if a) the type does not need constructing, or b) we've
094fe153
JM
4431 already initialized all the elements.
4432
4433 We do need to keep going if we're copying an array. */
4434
a02f26f6
JM
4435 if (try_const && !init)
4436 /* With a constexpr default constructor, which we checked for when
4437 setting try_const above, default-initialization is equivalent to
4438 value-initialization, and build_value_init gives us something more
4439 friendly to maybe_constant_init. */
4440 explicit_value_init_p = true;
094fe153 4441 if (from_array
1f65a8c8 4442 || ((type_build_ctor_call (type) || init || explicit_value_init_p)
9541ffee 4443 && ! (tree_fits_shwi_p (maxindex)
05bccae2 4444 && (num_initialized_elts
9439e9a1 4445 == tree_to_shwi (maxindex) + 1))))
8a72a046 4446 {
5453bfed 4447 /* If the ITERATOR is lesser or equal to -1, then we don't have to loop;
8a72a046 4448 we've already initialized all the elements. */
4977bab6 4449 tree for_stmt;
f1dedc31 4450 tree elt_init;
b84f4651 4451 tree to;
f1dedc31 4452
3f43ac31 4453 for_stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
17a9e380 4454 finish_init_stmt (for_stmt);
5453bfed 4455 finish_for_cond (build2 (GT_EXPR, boolean_type_node, iterator,
aab384ae 4456 build_int_cst (TREE_TYPE (iterator), -1)),
170a8bd6 4457 for_stmt, false, 0);
e51fbec3 4458 elt_init = cp_build_unary_op (PREDECREMENT_EXPR, iterator, false,
574cfaa4
JM
4459 complain);
4460 if (elt_init == error_mark_node)
4461 errors = true;
4462 finish_for_expr (elt_init, for_stmt);
8d08fdba 4463
b84f4651
MM
4464 to = build1 (INDIRECT_REF, type, base);
4465
ced2fb08
JM
4466 /* If the initializer is {}, then all elements are initialized from T{}.
4467 But for non-classes, that's the same as value-initialization. */
4468 if (empty_list)
4469 {
4470 if (cxx_dialect >= cxx11 && AGGREGATE_TYPE_P (type))
4471 {
08227658 4472 init = build_constructor (init_list_type_node, NULL);
ced2fb08
JM
4473 }
4474 else
4475 {
4476 init = NULL_TREE;
4477 explicit_value_init_p = true;
4478 }
4479 }
4480
8d08fdba
MS
4481 if (from_array)
4482 {
8d08fdba
MS
4483 tree from;
4484
4485 if (base2)
f91352dc
JM
4486 {
4487 from = build1 (INDIRECT_REF, itype, base2);
4488 if (xvalue)
4489 from = move (from);
70f40fea
JJ
4490 if (direct_init)
4491 from = build_tree_list (NULL_TREE, from);
f91352dc 4492 }
8d08fdba
MS
4493 else
4494 from = NULL_TREE;
4495
e278212e
PC
4496 if (TREE_CODE (type) == ARRAY_TYPE)
4497 elt_init = build_vec_init (to, NULL_TREE, from, /*val_init*/false,
4498 from_array, complain);
4499 else if (from_array == 2)
4f2e1536
MP
4500 elt_init = cp_build_modify_expr (input_location, to, NOP_EXPR,
4501 from, complain);
95552437 4502 else if (type_build_ctor_call (type))
5ade1ed2 4503 elt_init = build_aggr_init (to, from, 0, complain);
8d08fdba 4504 else if (from)
4f2e1536 4505 elt_init = cp_build_modify_expr (input_location, to, NOP_EXPR, from,
5ade1ed2 4506 complain);
8d08fdba 4507 else
8dc2b103 4508 gcc_unreachable ();
8d08fdba
MS
4509 }
4510 else if (TREE_CODE (type) == ARRAY_TYPE)
4511 {
16b53405 4512 if (init && !BRACE_ENCLOSED_INITIALIZER_P (init))
0186f684
AO
4513 {
4514 if ((complain & tf_error))
4515 error_at (loc, "array must be initialized "
4516 "with a brace-enclosed initializer");
4517 elt_init = error_mark_node;
4518 }
4519 else
4520 elt_init = build_vec_init (build1 (INDIRECT_REF, type, base),
4521 0, init,
4522 explicit_value_init_p,
4523 0, complain);
f1dedc31 4524 }
844ae01d 4525 else if (explicit_value_init_p)
309714d4
JM
4526 {
4527 elt_init = build_value_init (type, complain);
574cfaa4 4528 if (elt_init != error_mark_node)
309714d4
JM
4529 elt_init = build2 (INIT_EXPR, type, to, elt_init);
4530 }
f1dedc31 4531 else
844ae01d 4532 {
1f65a8c8
JM
4533 gcc_assert (type_build_ctor_call (type) || init);
4534 if (CLASS_TYPE_P (type))
4535 elt_init = build_aggr_init (to, init, 0, complain);
4536 else
4537 {
4538 if (TREE_CODE (init) == TREE_LIST)
4539 init = build_x_compound_expr_from_list (init, ELK_INIT,
4540 complain);
143aa5cc
PC
4541 elt_init = (init == error_mark_node
4542 ? error_mark_node
4543 : build2 (INIT_EXPR, type, to, init));
1f65a8c8 4544 }
844ae01d 4545 }
c8094d83 4546
574cfaa4
JM
4547 if (elt_init == error_mark_node)
4548 errors = true;
4549
c0014b07
JM
4550 if (try_const)
4551 {
a02f26f6 4552 /* FIXME refs to earlier elts */
c0014b07
JM
4553 tree e = maybe_constant_init (elt_init);
4554 if (reduced_constant_expression_p (e))
4555 {
4556 if (initializer_zerop (e))
4557 /* Don't fill the CONSTRUCTOR with zeros. */
4558 e = NULL_TREE;
4559 if (do_static_init)
4560 elt_init = NULL_TREE;
4561 }
4562 else
4563 {
4564 saw_non_const = true;
4565 if (do_static_init)
4566 e = build_zero_init (TREE_TYPE (e), NULL_TREE, true);
a02f26f6
JM
4567 else
4568 e = NULL_TREE;
c0014b07
JM
4569 }
4570
4571 if (e)
4572 {
faa9232d
JJ
4573 HOST_WIDE_INT last = tree_to_shwi (maxindex);
4574 if (num_initialized_elts <= last)
c0014b07
JM
4575 {
4576 tree field = size_int (num_initialized_elts);
faa9232d
JJ
4577 if (num_initialized_elts != last)
4578 field = build2 (RANGE_EXPR, sizetype, field,
4579 size_int (last));
c0014b07
JM
4580 CONSTRUCTOR_APPEND_ELT (const_vec, field, e);
4581 }
4582 }
4583 }
4584
2a3398e1 4585 current_stmt_tree ()->stmts_are_full_exprs_p = 1;
0186f684 4586 if (elt_init && !errors)
c0014b07 4587 finish_expr_stmt (elt_init);
2a3398e1 4588 current_stmt_tree ()->stmts_are_full_exprs_p = 0;
8d08fdba 4589
e51fbec3 4590 finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base, false,
5ade1ed2 4591 complain));
8d08fdba 4592 if (base2)
e51fbec3 4593 finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base2, false,
5ade1ed2 4594 complain));
0fac6b0b 4595
4977bab6 4596 finish_for_stmt (for_stmt);
8d08fdba 4597 }
8a72a046
MM
4598
4599 /* Make sure to cleanup any partially constructed elements. */
f30efcb7
JM
4600 if (flag_exceptions && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
4601 && from_array != 2)
f1dedc31
MM
4602 {
4603 tree e;
ba47d38d
AH
4604 tree m = cp_build_binary_op (input_location,
4605 MINUS_EXPR, maxindex, iterator,
5ade1ed2 4606 complain);
b2153b98
KL
4607
4608 /* Flatten multi-dimensional array since build_vec_delete only
4609 expects one-dimensional array. */
4610 if (TREE_CODE (type) == ARRAY_TYPE)
ba47d38d
AH
4611 m = cp_build_binary_op (input_location,
4612 MULT_EXPR, m,
99c4346a
JM
4613 /* Avoid mixing signed and unsigned. */
4614 convert (TREE_TYPE (m),
4615 array_type_nelts_total (type)),
5ade1ed2 4616 complain);
8d08fdba 4617
ed5511d9 4618 finish_cleanup_try_block (try_block);
c8094d83 4619 e = build_vec_delete_1 (rval, m,
e79a6b40 4620 inner_elt_type, sfk_complete_destructor,
574cfaa4
JM
4621 /*use_global_delete=*/0, complain);
4622 if (e == error_mark_node)
4623 errors = true;
f1dedc31
MM
4624 finish_cleanup (e, try_block);
4625 }
4626
303b7406
NS
4627 /* The value of the array initialization is the array itself, RVAL
4628 is a pointer to the first element. */
325c3691 4629 finish_stmt_expr_expr (rval, stmt_expr);
f1dedc31 4630
2a3398e1 4631 stmt_expr = finish_init_stmts (is_global, stmt_expr, compound_stmt);
303b7406 4632
5fb4d142
JM
4633 current_stmt_tree ()->stmts_are_full_exprs_p = destroy_temps;
4634
4635 if (errors)
4636 return error_mark_node;
c0014b07
JM
4637
4638 if (try_const)
4639 {
4640 if (!saw_non_const)
4641 {
4642 tree const_init = build_constructor (atype, const_vec);
4643 return build2 (INIT_EXPR, atype, obase, const_init);
4644 }
4645 else if (do_static_init && !vec_safe_is_empty (const_vec))
4646 DECL_INITIAL (obase) = build_constructor (atype, const_vec);
4647 else
4648 vec_free (const_vec);
4649 }
5fb4d142 4650
9207099b
JM
4651 /* Now make the result have the correct type. */
4652 if (TREE_CODE (atype) == ARRAY_TYPE)
4653 {
4654 atype = build_pointer_type (atype);
4655 stmt_expr = build1 (NOP_EXPR, atype, stmt_expr);
04757a2a 4656 stmt_expr = cp_build_fold_indirect_ref (stmt_expr);
311fa510 4657 TREE_NO_WARNING (stmt_expr) = 1;
9207099b 4658 }
c8094d83 4659
f1dedc31 4660 return stmt_expr;
8d08fdba
MS
4661}
4662
86f45d2c
MM
4663/* Call the DTOR_KIND destructor for EXP. FLAGS are as for
4664 build_delete. */
298d6f60
MM
4665
4666static tree
574cfaa4
JM
4667build_dtor_call (tree exp, special_function_kind dtor_kind, int flags,
4668 tsubst_flags_t complain)
298d6f60 4669{
86f45d2c 4670 tree name;
86f45d2c
MM
4671 switch (dtor_kind)
4672 {
4673 case sfk_complete_destructor:
4674 name = complete_dtor_identifier;
4675 break;
4676
4677 case sfk_base_destructor:
4678 name = base_dtor_identifier;
4679 break;
4680
4681 case sfk_deleting_destructor:
4682 name = deleting_dtor_identifier;
4683 break;
4684
4685 default:
8dc2b103 4686 gcc_unreachable ();
86f45d2c 4687 }
4d20f490
JM
4688
4689 return build_special_member_call (exp, name,
4690 /*args=*/NULL,
4691 /*binfo=*/TREE_TYPE (exp),
4692 flags,
4693 complain);
298d6f60
MM
4694}
4695
8d08fdba
MS
4696/* Generate a call to a destructor. TYPE is the type to cast ADDR to.
4697 ADDR is an expression which yields the store to be destroyed.
86f45d2c
MM
4698 AUTO_DELETE is the name of the destructor to call, i.e., either
4699 sfk_complete_destructor, sfk_base_destructor, or
4700 sfk_deleting_destructor.
8d08fdba
MS
4701
4702 FLAGS is the logical disjunction of zero or more LOOKUP_
ade3dc07 4703 flags. See cp-tree.h for more info. */
e92cc029 4704
8d08fdba 4705tree
eca7fc57 4706build_delete (tree otype, tree addr, special_function_kind auto_delete,
574cfaa4 4707 int flags, int use_global_delete, tsubst_flags_t complain)
8d08fdba 4708{
8d08fdba 4709 tree expr;
8d08fdba
MS
4710
4711 if (addr == error_mark_node)
4712 return error_mark_node;
4713
eca7fc57
JM
4714 tree type = TYPE_MAIN_VARIANT (otype);
4715
8d08fdba
MS
4716 /* Can happen when CURRENT_EXCEPTION_OBJECT gets its type
4717 set to `error_mark_node' before it gets properly cleaned up. */
4718 if (type == error_mark_node)
4719 return error_mark_node;
4720
9f613f06 4721 if (TYPE_PTR_P (type))
eca7fc57 4722 type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
8d08fdba 4723
eca7fc57
JM
4724 if (TREE_CODE (type) == ARRAY_TYPE)
4725 {
4726 if (TYPE_DOMAIN (type) == NULL_TREE)
4727 {
4728 if (complain & tf_error)
4729 error ("unknown array size in delete");
4730 return error_mark_node;
4731 }
4732 return build_vec_delete (addr, array_type_nelts (type),
4733 auto_delete, use_global_delete, complain);
4734 }
03a904b5 4735
9cbc7d65
JM
4736 bool deleting = (auto_delete == sfk_deleting_destructor);
4737 gcc_assert (deleting == !(flags & LOOKUP_DESTRUCTOR));
4738
eca7fc57 4739 if (TYPE_PTR_P (otype))
8d08fdba 4740 {
eca7fc57 4741 addr = mark_rvalue_use (addr);
23b4deba 4742
b1e5b86c
GB
4743 /* We don't want to warn about delete of void*, only other
4744 incomplete types. Deleting other incomplete types
4745 invokes undefined behavior, but it is not ill-formed, so
4746 compile to something that would even do The Right Thing
4747 (TM) should the type have a trivial dtor and no delete
4748 operator. */
4749 if (!VOID_TYPE_P (type))
8d08fdba 4750 {
b1e5b86c
GB
4751 complete_type (type);
4752 if (!COMPLETE_TYPE_P (type))
4753 {
097f82ec 4754 if (complain & tf_warning)
71205d17 4755 {
097f82ec
DM
4756 auto_diagnostic_group d;
4757 if (warning (OPT_Wdelete_incomplete,
a9c697b8
MS
4758 "possible problem detected in invocation of "
4759 "%<operator delete%>"))
097f82ec
DM
4760 {
4761 cxx_incomplete_type_diagnostic (addr, type, DK_WARNING);
4762 inform (input_location,
a9c697b8
MS
4763 "neither the destructor nor the class-specific "
4764 "%<operator delete%> will be called, even if "
4765 "they are declared when the class is defined");
097f82ec 4766 }
71205d17 4767 }
b1e5b86c 4768 }
9cbc7d65 4769 else if (deleting && warn_delnonvdtor
e2ab8a0f
JW
4770 && MAYBE_CLASS_TYPE_P (type) && !CLASSTYPE_FINAL (type)
4771 && TYPE_POLYMORPHIC_P (type))
014ab419 4772 {
b2cf76f3 4773 tree dtor = CLASSTYPE_DESTRUCTOR (type);
014ab419
JW
4774 if (!dtor || !DECL_VINDEX (dtor))
4775 {
4776 if (CLASSTYPE_PURE_VIRTUALS (type))
4777 warning (OPT_Wdelete_non_virtual_dtor,
4778 "deleting object of abstract class type %qT"
4779 " which has non-virtual destructor"
9c582551 4780 " will cause undefined behavior", type);
014ab419
JW
4781 else
4782 warning (OPT_Wdelete_non_virtual_dtor,
4783 "deleting object of polymorphic class type %qT"
4784 " which has non-virtual destructor"
9c582551 4785 " might cause undefined behavior", type);
014ab419
JW
4786 }
4787 }
8d08fdba 4788 }
2986ae00 4789
f4f206f4 4790 /* Throw away const and volatile on target type of addr. */
4b978f96 4791 addr = convert_force (build_pointer_type (type), addr, 0, complain);
8d08fdba 4792 }
8d08fdba
MS
4793 else
4794 {
4795 /* Don't check PROTECT here; leave that decision to the
4796 destructor. If the destructor is accessible, call it,
4797 else report error. */
574cfaa4
JM
4798 addr = cp_build_addr_expr (addr, complain);
4799 if (addr == error_mark_node)
4800 return error_mark_node;
8d08fdba 4801
4b978f96 4802 addr = convert_force (build_pointer_type (type), addr, 0, complain);
8d08fdba
MS
4803 }
4804
9cbc7d65
JM
4805 if (deleting)
4806 /* We will use ADDR multiple times so we must save it. */
4807 addr = save_expr (addr);
eca7fc57 4808
cdc18417
JM
4809 bool virtual_p = false;
4810 if (type_build_dtor_call (type))
4811 {
4812 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
4813 lazily_declare_fn (sfk_destructor, type);
4814 virtual_p = DECL_VIRTUAL_P (CLASSTYPE_DESTRUCTOR (type));
4815 }
8d08fdba 4816
9cbc7d65
JM
4817 tree head = NULL_TREE;
4818 tree do_delete = NULL_TREE;
a6bb6b07 4819 bool destroying_delete = false;
9cbc7d65
JM
4820
4821 if (!deleting)
4822 {
4823 /* Leave do_delete null. */
4824 }
cdc18417
JM
4825 /* For `::delete x', we must not use the deleting destructor
4826 since then we would not be sure to get the global `operator
4827 delete'. */
9cbc7d65 4828 else if (use_global_delete)
cdc18417 4829 {
cdc18417
JM
4830 head = get_target_expr (build_headof (addr));
4831 /* Delete the object. */
4832 do_delete = build_op_delete_call (DELETE_EXPR,
4833 head,
4834 cxx_sizeof_nowarn (type),
4835 /*global_p=*/true,
4836 /*placement=*/NULL_TREE,
4837 /*alloc_fn=*/NULL_TREE,
4838 complain);
4839 /* Otherwise, treat this like a complete object destructor
4840 call. */
4841 auto_delete = sfk_complete_destructor;
8d08fdba 4842 }
cdc18417
JM
4843 /* If the destructor is non-virtual, there is no deleting
4844 variant. Instead, we must explicitly call the appropriate
4845 `operator delete' here. */
9cbc7d65 4846 else if (!virtual_p)
8d08fdba 4847 {
cdc18417
JM
4848 /* Build the call. */
4849 do_delete = build_op_delete_call (DELETE_EXPR,
4850 addr,
4851 cxx_sizeof_nowarn (type),
4852 /*global_p=*/false,
4853 /*placement=*/NULL_TREE,
4854 /*alloc_fn=*/NULL_TREE,
4855 complain);
4856 /* Call the complete object destructor. */
4857 auto_delete = sfk_complete_destructor;
a6bb6b07
JM
4858 if (do_delete != error_mark_node)
4859 {
4860 tree fn = get_callee_fndecl (do_delete);
4861 destroying_delete = destroying_delete_p (fn);
4862 }
cdc18417 4863 }
9cbc7d65 4864 else if (TYPE_GETS_REG_DELETE (type))
cdc18417
JM
4865 {
4866 /* Make sure we have access to the member op delete, even though
4867 we'll actually be calling it from the destructor. */
4868 build_op_delete_call (DELETE_EXPR, addr, cxx_sizeof_nowarn (type),
4869 /*global_p=*/false,
4870 /*placement=*/NULL_TREE,
4871 /*alloc_fn=*/NULL_TREE,
4872 complain);
4873 }
700f8a87 4874
a6bb6b07 4875 if (!destroying_delete && type_build_dtor_call (type))
cdc18417
JM
4876 expr = build_dtor_call (cp_build_fold_indirect_ref (addr),
4877 auto_delete, flags, complain);
4878 else
4879 expr = build_trivial_dtor_call (addr);
4880 if (expr == error_mark_node)
4881 return error_mark_node;
ade3dc07 4882
9cbc7d65
JM
4883 if (!deleting)
4884 return expr;
4885
cdc18417
JM
4886 if (do_delete && !TREE_SIDE_EFFECTS (expr))
4887 expr = do_delete;
4888 else if (do_delete)
4889 /* The delete operator must be called, regardless of whether
4890 the destructor throws.
8d08fdba 4891
cdc18417
JM
4892 [expr.delete]/7 The deallocation function is called
4893 regardless of whether the destructor for the object or some
4894 element of the array throws an exception. */
4895 expr = build2 (TRY_FINALLY_EXPR, void_type_node, expr, do_delete);
8d08fdba 4896
cdc18417
JM
4897 /* We need to calculate this before the dtor changes the vptr. */
4898 if (head)
4899 expr = build2 (COMPOUND_EXPR, void_type_node, head, expr);
8d08fdba 4900
9cbc7d65
JM
4901 /* Handle deleting a null pointer. */
4902 warning_sentinel s (warn_address);
4903 tree ifexp = cp_build_binary_op (input_location, NE_EXPR, addr,
4904 nullptr_node, complain);
4905 ifexp = cp_fully_fold (ifexp);
4906
4907 if (ifexp == error_mark_node)
4908 return error_mark_node;
4909 /* This is a compiler generated comparison, don't emit
4910 e.g. -Wnonnull-compare warning for it. */
4911 else if (TREE_CODE (ifexp) == NE_EXPR)
4912 TREE_NO_WARNING (ifexp) = 1;
cdc18417 4913
9cbc7d65 4914 if (!integer_nonzerop (ifexp))
cdc18417
JM
4915 expr = build3 (COND_EXPR, void_type_node, ifexp, expr, void_node);
4916
4917 return expr;
ade3dc07 4918}
8d08fdba 4919
ade3dc07
JM
4920/* At the beginning of a destructor, push cleanups that will call the
4921 destructors for our base classes and members.
2a2480e1 4922
a29e1034 4923 Called from begin_destructor_body. */
8d08fdba 4924
ade3dc07 4925void
edaf3e03 4926push_base_cleanups (void)
ade3dc07 4927{
fa743e8c
NS
4928 tree binfo, base_binfo;
4929 int i;
ade3dc07
JM
4930 tree member;
4931 tree expr;
9771b263 4932 vec<tree, va_gc> *vbases;
8d08fdba 4933
ade3dc07 4934 /* Run destructors for all virtual baseclasses. */
45e2bf2e
NS
4935 if (!ABSTRACT_CLASS_TYPE_P (current_class_type)
4936 && CLASSTYPE_VBASECLASSES (current_class_type))
ade3dc07 4937 {
ade3dc07 4938 tree cond = (condition_conversion
f293ce4b
RS
4939 (build2 (BIT_AND_EXPR, integer_type_node,
4940 current_in_charge_parm,
4941 integer_two_node)));
8d08fdba 4942
58c42dc2 4943 /* The CLASSTYPE_VBASECLASSES vector is in initialization
ade3dc07 4944 order, which is also the right order for pushing cleanups. */
9ba5ff0f 4945 for (vbases = CLASSTYPE_VBASECLASSES (current_class_type), i = 0;
9771b263 4946 vec_safe_iterate (vbases, i, &base_binfo); i++)
8d08fdba 4947 {
eca7fc57 4948 if (type_build_dtor_call (BINFO_TYPE (base_binfo)))
8d08fdba 4949 {
c8094d83 4950 expr = build_special_member_call (current_class_ref,
4ba126e4 4951 base_dtor_identifier,
c166b898 4952 NULL,
9ba5ff0f 4953 base_binfo,
c8094d83 4954 (LOOKUP_NORMAL
5ade1ed2 4955 | LOOKUP_NONVIRTUAL),
eca7fc57
JM
4956 tf_warning_or_error);
4957 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (BINFO_TYPE (base_binfo)))
4958 {
4959 expr = build3 (COND_EXPR, void_type_node, cond,
632f2871 4960 expr, void_node);
eca7fc57
JM
4961 finish_decl_cleanup (NULL_TREE, expr);
4962 }
8d08fdba
MS
4963 }
4964 }
ade3dc07
JM
4965 }
4966
ade3dc07 4967 /* Take care of the remaining baseclasses. */
fa743e8c
NS
4968 for (binfo = TYPE_BINFO (current_class_type), i = 0;
4969 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
ade3dc07 4970 {
eca7fc57
JM
4971 if (BINFO_VIRTUAL_P (base_binfo)
4972 || !type_build_dtor_call (BINFO_TYPE (base_binfo)))
ade3dc07
JM
4973 continue;
4974
c8094d83 4975 expr = build_special_member_call (current_class_ref,
4ba126e4 4976 base_dtor_identifier,
c166b898 4977 NULL, base_binfo,
5ade1ed2
DG
4978 LOOKUP_NORMAL | LOOKUP_NONVIRTUAL,
4979 tf_warning_or_error);
eca7fc57
JM
4980 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (BINFO_TYPE (base_binfo)))
4981 finish_decl_cleanup (NULL_TREE, expr);
ade3dc07
JM
4982 }
4983
57ece258
JM
4984 /* Don't automatically destroy union members. */
4985 if (TREE_CODE (current_class_type) == UNION_TYPE)
4986 return;
4987
ade3dc07 4988 for (member = TYPE_FIELDS (current_class_type); member;
910ad8de 4989 member = DECL_CHAIN (member))
ade3dc07 4990 {
57ece258
JM
4991 tree this_type = TREE_TYPE (member);
4992 if (this_type == error_mark_node
2e5d2970
VR
4993 || TREE_CODE (member) != FIELD_DECL
4994 || DECL_ARTIFICIAL (member))
ade3dc07 4995 continue;
04056396 4996 if (ANON_AGGR_TYPE_P (this_type))
57ece258 4997 continue;
eca7fc57 4998 if (type_build_dtor_call (this_type))
ade3dc07 4999 {
c8094d83
MS
5000 tree this_member = (build_class_member_access_expr
5001 (current_class_ref, member,
50ad9642 5002 /*access_path=*/NULL_TREE,
5ade1ed2
DG
5003 /*preserve_reference=*/false,
5004 tf_warning_or_error));
ade3dc07
JM
5005 expr = build_delete (this_type, this_member,
5006 sfk_complete_destructor,
5007 LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL,
574cfaa4 5008 0, tf_warning_or_error);
eca7fc57
JM
5009 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (this_type))
5010 finish_decl_cleanup (NULL_TREE, expr);
ade3dc07 5011 }
8d08fdba
MS
5012 }
5013}
5014
8d08fdba
MS
5015/* Build a C++ vector delete expression.
5016 MAXINDEX is the number of elements to be deleted.
5017 ELT_SIZE is the nominal size of each element in the vector.
5018 BASE is the expression that should yield the store to be deleted.
8d08fdba
MS
5019 This function expands (or synthesizes) these calls itself.
5020 AUTO_DELETE_VEC says whether the container (vector) should be deallocated.
8d08fdba
MS
5021
5022 This also calls delete for virtual baseclasses of elements of the vector.
5023
5024 Update: MAXINDEX is no longer needed. The size can be extracted from the
5025 start of the vector for pointers, and from the type for arrays. We still
5026 use MAXINDEX for arrays because it happens to already have one of the
5027 values we'd have to extract. (We could use MAXINDEX with pointers to
5028 confirm the size, and trap if the numbers differ; not clear that it'd
5029 be worth bothering.) */
e92cc029 5030
8d08fdba 5031tree
362efdc1 5032build_vec_delete (tree base, tree maxindex,
574cfaa4
JM
5033 special_function_kind auto_delete_vec,
5034 int use_global_delete, tsubst_flags_t complain)
8d08fdba 5035{
f30432d7 5036 tree type;
49b7aacb
JM
5037 tree rval;
5038 tree base_init = NULL_TREE;
8d08fdba 5039
f30432d7 5040 type = TREE_TYPE (base);
c407792d 5041
50e10fa8 5042 if (TYPE_PTR_P (type))
8d08fdba
MS
5043 {
5044 /* Step back one from start of vector, and read dimension. */
834c6dff 5045 tree cookie_addr;
726a989a 5046 tree size_ptr_type = build_pointer_type (sizetype);
834c6dff 5047
3c784bca 5048 base = mark_rvalue_use (base);
6742d92b 5049 if (TREE_SIDE_EFFECTS (base))
49b7aacb
JM
5050 {
5051 base_init = get_target_expr (base);
5052 base = TARGET_EXPR_SLOT (base_init);
5053 }
708cae97 5054 type = strip_array_types (TREE_TYPE (type));
db3927fb
AH
5055 cookie_addr = fold_build1_loc (input_location, NEGATE_EXPR,
5056 sizetype, TYPE_SIZE_UNIT (sizetype));
5d49b6a7
RG
5057 cookie_addr = fold_build_pointer_plus (fold_convert (size_ptr_type, base),
5058 cookie_addr);
04757a2a 5059 maxindex = cp_build_fold_indirect_ref (cookie_addr);
8d08fdba 5060 }
f30432d7 5061 else if (TREE_CODE (type) == ARRAY_TYPE)
8d08fdba 5062 {
f4f206f4
KH
5063 /* Get the total number of things in the array, maxindex is a
5064 bad name. */
f30432d7 5065 maxindex = array_type_nelts_total (type);
834c6dff 5066 type = strip_array_types (type);
16b53405 5067 base = decay_conversion (base, complain);
574cfaa4
JM
5068 if (base == error_mark_node)
5069 return error_mark_node;
6742d92b 5070 if (TREE_SIDE_EFFECTS (base))
49b7aacb
JM
5071 {
5072 base_init = get_target_expr (base);
5073 base = TARGET_EXPR_SLOT (base_init);
5074 }
8d08fdba
MS
5075 }
5076 else
5077 {
574cfaa4 5078 if (base != error_mark_node && !(complain & tf_error))
8251199e 5079 error ("type to vector delete is neither pointer or array type");
8d08fdba
MS
5080 return error_mark_node;
5081 }
8d08fdba 5082
49b7aacb 5083 rval = build_vec_delete_1 (base, maxindex, type, auto_delete_vec,
574cfaa4
JM
5084 use_global_delete, complain);
5085 if (base_init && rval != error_mark_node)
f293ce4b 5086 rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), base_init, rval);
49b7aacb
JM
5087
5088 return rval;
8d08fdba 5089}
ff502317
BE
5090
5091#include "gt-cp-init.h"