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