Branch data Line data Source code
1 : : /* Report error messages, build initializers, and perform
2 : : some front-end optimizations for C++ compiler.
3 : : Copyright (C) 1987-2024 Free Software Foundation, Inc.
4 : : Hacked by Michael Tiemann (tiemann@cygnus.com)
5 : :
6 : : This file is part of GCC.
7 : :
8 : : GCC is free software; you can redistribute it and/or modify
9 : : it under the terms of the GNU General Public License as published by
10 : : the Free Software Foundation; either version 3, or (at your option)
11 : : any later version.
12 : :
13 : : GCC is distributed in the hope that it will be useful,
14 : : but WITHOUT ANY WARRANTY; without even the implied warranty of
15 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 : : GNU General Public License for more details.
17 : :
18 : : You should have received a copy of the GNU General Public License
19 : : along with GCC; see the file COPYING3. If not see
20 : : <http://www.gnu.org/licenses/>. */
21 : :
22 : :
23 : : /* This file is part of the C++ front end.
24 : : It contains routines to build C++ expressions given their operands,
25 : : including computing the types of the result, C and C++ specific error
26 : : checks, and some optimization. */
27 : :
28 : : #include "config.h"
29 : : #include "system.h"
30 : : #include "coretypes.h"
31 : : #include "cp-tree.h"
32 : : #include "stor-layout.h"
33 : : #include "varasm.h"
34 : : #include "intl.h"
35 : : #include "gcc-rich-location.h"
36 : : #include "target.h"
37 : :
38 : : static tree
39 : : process_init_constructor (tree type, tree init, int nested, int flags,
40 : : tsubst_flags_t complain);
41 : :
42 : :
43 : : /* Print an error message stemming from an attempt to use
44 : : BASETYPE as a base class for TYPE. */
45 : :
46 : : tree
47 : 26 : error_not_base_type (tree basetype, tree type)
48 : : {
49 : 26 : if (TREE_CODE (basetype) == FUNCTION_DECL)
50 : 0 : basetype = DECL_CONTEXT (basetype);
51 : 26 : error ("type %qT is not a base type for type %qT", basetype, type);
52 : 26 : return error_mark_node;
53 : : }
54 : :
55 : : tree
56 : 1300 : binfo_or_else (tree base, tree type)
57 : : {
58 : 1300 : tree binfo = lookup_base (type, base, ba_unique,
59 : : NULL, tf_warning_or_error);
60 : :
61 : 1300 : if (binfo == error_mark_node)
62 : : return NULL_TREE;
63 : 1300 : else if (!binfo)
64 : 0 : error_not_base_type (base, type);
65 : : return binfo;
66 : : }
67 : :
68 : : /* According to ARM $7.1.6, "A `const' object may be initialized, but its
69 : : value may not be changed thereafter. */
70 : :
71 : : void
72 : 144 : cxx_readonly_error (location_t loc, tree arg, enum lvalue_use errstring)
73 : : {
74 : :
75 : : /* This macro is used to emit diagnostics to ensure that all format
76 : : strings are complete sentences, visible to gettext and checked at
77 : : compile time. */
78 : :
79 : : #define ERROR_FOR_ASSIGNMENT(LOC, AS, ASM, IN, DE, ARG) \
80 : : do { \
81 : : switch (errstring) \
82 : : { \
83 : : case lv_assign: \
84 : : error_at (LOC, AS, ARG); \
85 : : break; \
86 : : case lv_asm: \
87 : : error_at (LOC, ASM, ARG); \
88 : : break; \
89 : : case lv_increment: \
90 : : error_at (LOC, IN, ARG); \
91 : : break; \
92 : : case lv_decrement: \
93 : : error_at (LOC, DE, ARG); \
94 : : break; \
95 : : default: \
96 : : gcc_unreachable (); \
97 : : } \
98 : : } while (0)
99 : :
100 : : /* Handle C++-specific things first. */
101 : :
102 : 144 : if (VAR_P (arg)
103 : 15 : && DECL_LANG_SPECIFIC (arg)
104 : 0 : && DECL_IN_AGGR_P (arg)
105 : 144 : && !TREE_STATIC (arg))
106 : 0 : ERROR_FOR_ASSIGNMENT (loc,
107 : : G_("assignment of constant field %qD"),
108 : : G_("constant field %qD used as %<asm%> output"),
109 : : G_("increment of constant field %qD"),
110 : : G_("decrement of constant field %qD"),
111 : : arg);
112 : 144 : else if (INDIRECT_REF_P (arg)
113 : 24 : && TYPE_REF_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
114 : 162 : && (VAR_P (TREE_OPERAND (arg, 0))
115 : 5 : || TREE_CODE (TREE_OPERAND (arg, 0)) == PARM_DECL))
116 : 13 : ERROR_FOR_ASSIGNMENT (loc,
117 : : G_("assignment of read-only reference %qD"),
118 : : G_("read-only reference %qD used as %<asm%> output"),
119 : : G_("increment of read-only reference %qD"),
120 : : G_("decrement of read-only reference %qD"),
121 : : TREE_OPERAND (arg, 0));
122 : : else
123 : 131 : readonly_error (loc, arg, errstring);
124 : 144 : }
125 : :
126 : : /* If TYPE has abstract virtual functions, issue an error about trying
127 : : to create an object of that type. DECL is the object declared, or
128 : : NULL_TREE if the declaration is unavailable, in which case USE specifies
129 : : the kind of invalid use. Returns 1 if an error occurred; zero if
130 : : all was well. */
131 : :
132 : : static int
133 : 303573698 : abstract_virtuals_error (tree decl, tree type, abstract_class_use use,
134 : : tsubst_flags_t complain)
135 : : {
136 : 303573698 : vec<tree, va_gc> *pure;
137 : :
138 : 303573698 : if (TREE_CODE (type) == ARRAY_TYPE)
139 : : {
140 : 724568 : decl = NULL_TREE;
141 : 724568 : use = ACU_ARRAY;
142 : 724568 : type = strip_array_types (type);
143 : : }
144 : :
145 : : /* This function applies only to classes. Any other entity can never
146 : : be abstract. */
147 : 303573698 : if (!CLASS_TYPE_P (type))
148 : : return 0;
149 : 44598379 : type = TYPE_MAIN_VARIANT (type);
150 : :
151 : : #if 0
152 : : /* Instantiation here seems to be required by the standard,
153 : : but breaks e.g. boost::bind. FIXME! */
154 : : /* In SFINAE, non-N3276 context, force instantiation. */
155 : : if (!(complain & (tf_error|tf_decltype)))
156 : : complete_type (type);
157 : : #endif
158 : :
159 : 44598379 : if (!TYPE_SIZE (type))
160 : : /* TYPE is being defined, and during that time
161 : : CLASSTYPE_PURE_VIRTUALS holds the inline friends. */
162 : : return 0;
163 : :
164 : 44598318 : pure = CLASSTYPE_PURE_VIRTUALS (type);
165 : 44598318 : if (!pure)
166 : : return 0;
167 : :
168 : 126 : if (!(complain & tf_error))
169 : : return 1;
170 : :
171 : 102 : auto_diagnostic_group d;
172 : 102 : if (decl)
173 : : {
174 : 51 : if (VAR_P (decl))
175 : 9 : error ("cannot declare variable %q+D to be of abstract "
176 : : "type %qT", decl, type);
177 : 42 : else if (TREE_CODE (decl) == PARM_DECL)
178 : : {
179 : 27 : if (DECL_NAME (decl))
180 : 24 : error ("cannot declare parameter %q+D to be of abstract type %qT",
181 : : decl, type);
182 : : else
183 : 3 : error ("cannot declare parameter to be of abstract type %qT",
184 : : type);
185 : : }
186 : 15 : else if (TREE_CODE (decl) == FIELD_DECL)
187 : 12 : error ("cannot declare field %q+D to be of abstract type %qT",
188 : : decl, type);
189 : 3 : else if (TREE_CODE (decl) == FUNCTION_DECL
190 : 3 : && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
191 : 0 : error ("invalid abstract return type for member function %q+#D", decl);
192 : 3 : else if (TREE_CODE (decl) == FUNCTION_DECL)
193 : 3 : error ("invalid abstract return type for function %q+#D", decl);
194 : 0 : else if (identifier_p (decl))
195 : : /* Here we do not have location information. */
196 : 0 : error ("invalid abstract type %qT for %qE", type, decl);
197 : : else
198 : 0 : error ("invalid abstract type for %q+D", decl);
199 : : }
200 : 51 : else switch (use)
201 : : {
202 : 9 : case ACU_ARRAY:
203 : 9 : error ("creating array of %qT, which is an abstract class type", type);
204 : 9 : break;
205 : 9 : case ACU_CAST:
206 : 9 : error ("invalid cast to abstract class type %qT", type);
207 : 9 : break;
208 : 0 : case ACU_NEW:
209 : 0 : error ("invalid new-expression of abstract class type %qT", type);
210 : 0 : break;
211 : 0 : case ACU_RETURN:
212 : 0 : error ("invalid abstract return type %qT", type);
213 : 0 : break;
214 : 0 : case ACU_PARM:
215 : 0 : error ("invalid abstract parameter type %qT", type);
216 : 0 : break;
217 : 6 : case ACU_THROW:
218 : 6 : error ("expression of abstract class type %qT cannot "
219 : : "be used in throw-expression", type);
220 : 6 : break;
221 : 3 : case ACU_CATCH:
222 : 3 : error ("cannot declare %<catch%> parameter to be of abstract "
223 : : "class type %qT", type);
224 : 3 : break;
225 : 24 : default:
226 : 24 : error ("cannot allocate an object of abstract type %qT", type);
227 : : }
228 : :
229 : : /* Only go through this once. */
230 : 102 : if (pure->length ())
231 : : {
232 : 42 : unsigned ix;
233 : 42 : tree fn;
234 : :
235 : 42 : inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
236 : : " because the following virtual functions are pure within %qT:",
237 : : type);
238 : :
239 : 126 : FOR_EACH_VEC_ELT (*pure, ix, fn)
240 : 84 : if (! DECL_CLONED_FUNCTION_P (fn)
241 : 42 : || DECL_COMPLETE_DESTRUCTOR_P (fn))
242 : 42 : inform (DECL_SOURCE_LOCATION (fn), " %#qD", fn);
243 : :
244 : : /* Now truncate the vector. This leaves it non-null, so we know
245 : : there are pure virtuals, but empty so we don't list them out
246 : : again. */
247 : 42 : pure->truncate (0);
248 : : }
249 : :
250 : 102 : return 1;
251 : 102 : }
252 : :
253 : : int
254 : 262081139 : abstract_virtuals_error (tree decl, tree type,
255 : : tsubst_flags_t complain /* = tf_warning_or_error */)
256 : : {
257 : 262081139 : return abstract_virtuals_error (decl, type, ACU_UNKNOWN, complain);
258 : : }
259 : :
260 : : int
261 : 41492559 : abstract_virtuals_error (abstract_class_use use, tree type,
262 : : tsubst_flags_t complain /* = tf_warning_or_error */)
263 : : {
264 : 41492559 : return abstract_virtuals_error (NULL_TREE, type, use, complain);
265 : : }
266 : :
267 : :
268 : : /* Print an inform about the declaration of the incomplete type TYPE. */
269 : :
270 : : void
271 : 895 : cxx_incomplete_type_inform (const_tree type)
272 : : {
273 : 895 : if (!TYPE_MAIN_DECL (type))
274 : : return;
275 : :
276 : 808 : location_t loc = DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type));
277 : 808 : tree ptype = strip_top_quals (CONST_CAST_TREE (type));
278 : :
279 : 808 : if (current_class_type
280 : 261 : && TYPE_BEING_DEFINED (current_class_type)
281 : 1019 : && same_type_p (ptype, current_class_type))
282 : 87 : inform (loc, "definition of %q#T is not complete until "
283 : : "the closing brace", ptype);
284 : 721 : else if (!TYPE_TEMPLATE_INFO (ptype))
285 : 575 : inform (loc, "forward declaration of %q#T", ptype);
286 : : else
287 : 146 : inform (loc, "declaration of %q#T", ptype);
288 : : }
289 : :
290 : : /* Print an error message for invalid use of an incomplete type.
291 : : VALUE is the expression that was used (or 0 if that isn't known)
292 : : and TYPE is the type that was invalid. DIAG_KIND indicates the
293 : : type of diagnostic (see diagnostic.def). */
294 : :
295 : : bool
296 : 921 : cxx_incomplete_type_diagnostic (location_t loc, const_tree value,
297 : : const_tree type, diagnostic_t diag_kind)
298 : : {
299 : 921 : bool is_decl = false, complained = false;
300 : :
301 : : /* Avoid duplicate error message. */
302 : 921 : if (TREE_CODE (type) == ERROR_MARK)
303 : : return false;
304 : :
305 : 921 : auto_diagnostic_group d;
306 : 921 : if (value)
307 : : {
308 : 383 : STRIP_ANY_LOCATION_WRAPPER (value);
309 : :
310 : 383 : if (VAR_P (value)
311 : 338 : || TREE_CODE (value) == PARM_DECL
312 : 296 : || TREE_CODE (value) == FIELD_DECL)
313 : : {
314 : 117 : complained = emit_diagnostic (diag_kind, DECL_SOURCE_LOCATION (value), 0,
315 : : "%qD has incomplete type", value);
316 : 117 : is_decl = true;
317 : : }
318 : : }
319 : 921 : retry:
320 : : /* We must print an error message. Be clever about what it says. */
321 : :
322 : 927 : switch (TREE_CODE (type))
323 : : {
324 : 660 : case RECORD_TYPE:
325 : 660 : case UNION_TYPE:
326 : 660 : case ENUMERAL_TYPE:
327 : 660 : if (!is_decl)
328 : 564 : complained = emit_diagnostic (diag_kind, loc, 0,
329 : : "invalid use of incomplete type %q#T",
330 : : type);
331 : 660 : if (complained)
332 : 657 : cxx_incomplete_type_inform (type);
333 : : break;
334 : :
335 : 10 : case VOID_TYPE:
336 : 10 : complained = emit_diagnostic (diag_kind, loc, 0,
337 : : "invalid use of %qT", type);
338 : 10 : break;
339 : :
340 : 60 : case ARRAY_TYPE:
341 : 60 : if (TYPE_DOMAIN (type))
342 : : {
343 : 6 : type = TREE_TYPE (type);
344 : 6 : goto retry;
345 : : }
346 : 54 : complained = emit_diagnostic (diag_kind, loc, 0,
347 : : "invalid use of array with unspecified bounds");
348 : 54 : break;
349 : :
350 : 72 : case OFFSET_TYPE:
351 : 72 : bad_member:
352 : 72 : {
353 : 72 : tree member = TREE_OPERAND (value, 1);
354 : 72 : if (is_overloaded_fn (member) && !flag_ms_extensions)
355 : : {
356 : 69 : gcc_rich_location richloc (loc);
357 : : /* If "member" has no arguments (other than "this"), then
358 : : add a fix-it hint. */
359 : 69 : member = MAYBE_BASELINK_FUNCTIONS (member);
360 : 69 : if (TREE_CODE (member) == FUNCTION_DECL
361 : 57 : && DECL_OBJECT_MEMBER_FUNCTION_P (member)
362 : 126 : && type_num_arguments (TREE_TYPE (member)) == 1)
363 : 54 : richloc.add_fixit_insert_after ("()");
364 : 69 : complained = emit_diagnostic (diag_kind, &richloc, 0,
365 : : "invalid use of member function %qD "
366 : : "(did you forget the %<()%> ?)", member);
367 : 69 : }
368 : : else
369 : 3 : complained = emit_diagnostic (diag_kind, loc, 0,
370 : : "invalid use of member %qD "
371 : : "(did you forget the %<&%> ?)", member);
372 : : }
373 : : break;
374 : :
375 : 32 : case TEMPLATE_TYPE_PARM:
376 : 32 : if (is_auto (type))
377 : : {
378 : 20 : if (CLASS_PLACEHOLDER_TEMPLATE (type))
379 : 3 : complained = emit_diagnostic (diag_kind, loc, 0,
380 : : "invalid use of placeholder %qT", type);
381 : : else
382 : 17 : complained = emit_diagnostic (diag_kind, loc, 0,
383 : : "invalid use of %qT", type);
384 : : }
385 : : else
386 : 12 : complained = emit_diagnostic (diag_kind, loc, 0,
387 : : "invalid use of template type parameter %qT", type);
388 : : break;
389 : :
390 : 3 : case BOUND_TEMPLATE_TEMPLATE_PARM:
391 : 6 : complained = emit_diagnostic (diag_kind, loc, 0,
392 : : "invalid use of template template parameter %qT",
393 : 3 : TYPE_NAME (type));
394 : 3 : break;
395 : :
396 : 0 : case TYPE_PACK_EXPANSION:
397 : 0 : complained = emit_diagnostic (diag_kind, loc, 0,
398 : : "invalid use of pack expansion %qT", type);
399 : 0 : break;
400 : :
401 : 18 : case TYPENAME_TYPE:
402 : 18 : case DECLTYPE_TYPE:
403 : 18 : complained = emit_diagnostic (diag_kind, loc, 0,
404 : : "invalid use of dependent type %qT", type);
405 : 18 : break;
406 : :
407 : 144 : case LANG_TYPE:
408 : 144 : if (type == init_list_type_node)
409 : : {
410 : 3 : complained = emit_diagnostic (diag_kind, loc, 0,
411 : : "invalid use of brace-enclosed initializer list");
412 : 3 : break;
413 : : }
414 : 141 : gcc_assert (type == unknown_type_node);
415 : 141 : if (value && TREE_CODE (value) == COMPONENT_REF)
416 : 72 : goto bad_member;
417 : 69 : else if (value && TREE_CODE (value) == ADDR_EXPR)
418 : 27 : complained = emit_diagnostic (diag_kind, loc, 0,
419 : : "address of overloaded function with no contextual "
420 : : "type information");
421 : 42 : else if (value && TREE_CODE (value) == OVERLOAD)
422 : 42 : complained = emit_diagnostic (diag_kind, loc, 0,
423 : : "overloaded function with no contextual type information");
424 : : else
425 : 0 : complained = emit_diagnostic (diag_kind, loc, 0,
426 : : "insufficient contextual information to determine type");
427 : : break;
428 : :
429 : 0 : default:
430 : 0 : gcc_unreachable ();
431 : : }
432 : :
433 : 921 : return complained;
434 : 921 : }
435 : :
436 : : /* Print an error message for invalid use of an incomplete type.
437 : : VALUE is the expression that was used (or 0 if that isn't known)
438 : : and TYPE is the type that was invalid. */
439 : :
440 : : void
441 : 57 : cxx_incomplete_type_error (location_t loc, const_tree value, const_tree type)
442 : : {
443 : 57 : cxx_incomplete_type_diagnostic (loc, value, type, DK_ERROR);
444 : 57 : }
445 : :
446 : :
447 : : /* We've just initialized subobject SUB; also insert a TARGET_EXPR with an
448 : : EH-only cleanup for SUB. Because of EH region nesting issues, we need to
449 : : make the cleanup conditional on a flag that we will clear once the object is
450 : : fully initialized, so push a new flag onto FLAGS. */
451 : :
452 : : static void
453 : 308751 : maybe_push_temp_cleanup (tree sub, vec<tree,va_gc> **flags)
454 : : {
455 : 308751 : if (!flag_exceptions)
456 : : return;
457 : 614826 : if (tree cleanup
458 : 307413 : = cxx_maybe_build_cleanup (sub, tf_warning_or_error))
459 : : {
460 : 71 : tree tx = get_target_expr (boolean_true_node);
461 : 71 : tree flag = TARGET_EXPR_SLOT (tx);
462 : 71 : CLEANUP_EH_ONLY (tx) = true;
463 : 71 : TARGET_EXPR_CLEANUP (tx) = build3 (COND_EXPR, void_type_node,
464 : : flag, cleanup, void_node);
465 : 71 : add_stmt (tx);
466 : 71 : vec_safe_push (*flags, flag);
467 : : }
468 : : }
469 : :
470 : : /* F is something added to a cleanup flags vec by maybe_push_temp_cleanup or
471 : : build_vec_init. Return the code to disable the cleanup it controls. */
472 : :
473 : : tree
474 : 300 : build_disable_temp_cleanup (tree f)
475 : : {
476 : 300 : tree d = f;
477 : 300 : tree i = boolean_false_node;
478 : 300 : if (TREE_CODE (f) == TREE_LIST)
479 : : {
480 : : /* To disable a build_vec_init cleanup, set
481 : : iterator = maxindex. */
482 : 229 : d = TREE_PURPOSE (f);
483 : 229 : i = TREE_VALUE (f);
484 : 229 : ggc_free (f);
485 : : }
486 : 300 : return build2 (MODIFY_EXPR, TREE_TYPE (d), d, i);
487 : : }
488 : :
489 : : /* The recursive part of split_nonconstant_init. DEST is an lvalue
490 : : expression to which INIT should be assigned. INIT is a CONSTRUCTOR.
491 : : Return true if the whole of the value was initialized by the
492 : : generated statements. */
493 : :
494 : : static bool
495 : 238217 : split_nonconstant_init_1 (tree dest, tree init, bool last,
496 : : vec<tree,va_gc> **flags)
497 : : {
498 : 238217 : unsigned HOST_WIDE_INT idx, tidx = HOST_WIDE_INT_M1U;
499 : 238217 : tree field_index, value;
500 : 238217 : tree type = TREE_TYPE (dest);
501 : 238217 : tree inner_type = NULL;
502 : 238217 : bool array_type_p = false;
503 : 238217 : bool complete_p = true;
504 : 238217 : HOST_WIDE_INT num_split_elts = 0;
505 : 238217 : tree last_split_elt = NULL_TREE;
506 : :
507 : 238217 : switch (TREE_CODE (type))
508 : : {
509 : 3226 : case ARRAY_TYPE:
510 : 3226 : inner_type = TREE_TYPE (type);
511 : 3226 : array_type_p = true;
512 : 3226 : if ((TREE_SIDE_EFFECTS (init)
513 : 514 : && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
514 : 3552 : || vla_type_p (type))
515 : : {
516 : 255 : if (!TYPE_DOMAIN (type)
517 : 3 : && TREE_CODE (init) == CONSTRUCTOR
518 : 258 : && CONSTRUCTOR_NELTS (init))
519 : : {
520 : : /* Flexible array. */
521 : 3 : cp_complete_array_type (&type, init, /*default*/true);
522 : 3 : dest = build1 (VIEW_CONVERT_EXPR, type, dest);
523 : : }
524 : :
525 : : /* For an array, we only need/want a single cleanup region rather
526 : : than one per element. build_vec_init will handle it. */
527 : 255 : tree code = build_vec_init (dest, NULL_TREE, init, false, 1,
528 : : tf_warning_or_error, flags);
529 : 255 : add_stmt (code);
530 : 255 : return true;
531 : : }
532 : : /* FALLTHRU */
533 : :
534 : 236919 : case RECORD_TYPE:
535 : 236919 : case UNION_TYPE:
536 : 236919 : case QUAL_UNION_TYPE:
537 : 777367 : FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx,
538 : : field_index, value)
539 : : {
540 : : /* The current implementation of this algorithm assumes that
541 : : the field was set for all the elements. This is usually done
542 : : by process_init_constructor. */
543 : 540448 : gcc_assert (field_index);
544 : :
545 : 540448 : if (!array_type_p)
546 : 535051 : inner_type = TREE_TYPE (field_index);
547 : :
548 : 540448 : tree sub;
549 : 540448 : if (array_type_p)
550 : 5397 : sub = build4 (ARRAY_REF, inner_type, dest, field_index,
551 : : NULL_TREE, NULL_TREE);
552 : : else
553 : 535051 : sub = build3 (COMPONENT_REF, inner_type, dest, field_index,
554 : : NULL_TREE);
555 : :
556 : 1619158 : bool elt_last = last && idx == CONSTRUCTOR_NELTS (init) - 1;
557 : :
558 : : /* We need to see sub-array TARGET_EXPR before cp_fold_r so we can
559 : : handle cleanup flags properly. */
560 : 540448 : gcc_checking_assert (!target_expr_needs_replace (value));
561 : :
562 : 540448 : if (TREE_CODE (value) == CONSTRUCTOR)
563 : : {
564 : 591 : if (!split_nonconstant_init_1 (sub, value, elt_last, flags)
565 : : /* For flexible array member with initializer we
566 : : can't remove the initializer, because only the
567 : : initializer determines how many elements the
568 : : flexible array member has. */
569 : 591 : || (!array_type_p
570 : 170 : && TREE_CODE (inner_type) == ARRAY_TYPE
571 : 84 : && TYPE_DOMAIN (inner_type) == NULL
572 : 49 : && TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
573 : 49 : && COMPLETE_TYPE_P (TREE_TYPE (value))
574 : 49 : && !integer_zerop (TYPE_SIZE (TREE_TYPE (value)))
575 : 49 : && elt_last
576 : 49 : && TYPE_HAS_TRIVIAL_DESTRUCTOR
577 : : (strip_array_types (inner_type))))
578 : : complete_p = false;
579 : : else
580 : : {
581 : : /* Mark element for removal. */
582 : 164 : last_split_elt = field_index;
583 : 164 : CONSTRUCTOR_ELT (init, idx)->index = NULL_TREE;
584 : 164 : if (idx < tidx)
585 : : tidx = idx;
586 : 164 : num_split_elts++;
587 : : }
588 : : }
589 : 539857 : else if (tree vi = get_vec_init_expr (value))
590 : : {
591 : 31 : add_stmt (expand_vec_init_expr (sub, vi, tf_warning_or_error,
592 : : flags));
593 : :
594 : : /* Mark element for removal. */
595 : 31 : last_split_elt = field_index;
596 : 31 : CONSTRUCTOR_ELT (init, idx)->index = NULL_TREE;
597 : 31 : if (idx < tidx)
598 : : tidx = idx;
599 : 31 : num_split_elts++;
600 : : }
601 : 539826 : else if (!initializer_constant_valid_p (value, inner_type))
602 : : {
603 : 439553 : tree code;
604 : :
605 : : /* Push cleanups for any preceding members with constant
606 : : initialization. */
607 : 439553 : if (CLASS_TYPE_P (type))
608 : 870120 : for (tree prev = (last_split_elt ?
609 : 208386 : DECL_CHAIN (last_split_elt)
610 : 226674 : : TYPE_FIELDS (type));
611 : 1276 : ; prev = DECL_CHAIN (prev))
612 : : {
613 : 436336 : prev = next_aggregate_field (prev);
614 : 436336 : if (prev == field_index)
615 : : break;
616 : 1276 : tree ptype = TREE_TYPE (prev);
617 : 1276 : if (TYPE_P (ptype) && type_build_dtor_call (ptype))
618 : : {
619 : 24 : tree pcref = build3 (COMPONENT_REF, ptype, dest, prev,
620 : : NULL_TREE);
621 : 24 : maybe_push_temp_cleanup (pcref, flags);
622 : : }
623 : 1276 : }
624 : :
625 : : /* Mark element for removal. */
626 : 439553 : CONSTRUCTOR_ELT (init, idx)->index = NULL_TREE;
627 : 439553 : if (idx < tidx)
628 : : tidx = idx;
629 : :
630 : 439553 : if (TREE_CODE (field_index) == RANGE_EXPR)
631 : : {
632 : : /* Use build_vec_init to initialize a range. */
633 : 0 : tree low = TREE_OPERAND (field_index, 0);
634 : 0 : tree hi = TREE_OPERAND (field_index, 1);
635 : 0 : sub = build4 (ARRAY_REF, inner_type, dest, low,
636 : : NULL_TREE, NULL_TREE);
637 : 0 : sub = cp_build_addr_expr (sub, tf_warning_or_error);
638 : 0 : tree max = size_binop (MINUS_EXPR, hi, low);
639 : 0 : code = build_vec_init (sub, max, value, false, 0,
640 : : tf_warning_or_error);
641 : 0 : add_stmt (code);
642 : 0 : if (tree_fits_shwi_p (max))
643 : 0 : num_split_elts += tree_to_shwi (max);
644 : : }
645 : : else
646 : : {
647 : : /* We may need to add a copy constructor call if
648 : : the field has [[no_unique_address]]. */
649 : 439553 : if (unsafe_return_slot_p (sub))
650 : : {
651 : : /* But not if the initializer is an implicit ctor call
652 : : we just built in digest_init. */
653 : 180 : if (TREE_CODE (value) == TARGET_EXPR
654 : 180 : && TARGET_EXPR_LIST_INIT_P (value)
655 : 199 : && make_safe_copy_elision (sub, value))
656 : 19 : goto build_init;
657 : :
658 : 161 : tree name = (DECL_FIELD_IS_BASE (field_index)
659 : 161 : ? base_ctor_identifier
660 : 161 : : complete_ctor_identifier);
661 : 161 : releasing_vec args = make_tree_vector_single (value);
662 : 161 : code = build_special_member_call
663 : 161 : (sub, name, &args, inner_type,
664 : : LOOKUP_NORMAL, tf_warning_or_error);
665 : 161 : }
666 : : else
667 : : {
668 : 439373 : build_init:
669 : 439392 : code = cp_build_init_expr (sub, value);
670 : : }
671 : 439553 : code = build_stmt (input_location, EXPR_STMT, code);
672 : 439553 : add_stmt (code);
673 : 439553 : if (!elt_last)
674 : 308727 : maybe_push_temp_cleanup (sub, flags);
675 : : }
676 : :
677 : 439553 : last_split_elt = field_index;
678 : 439553 : num_split_elts++;
679 : : }
680 : : }
681 : 236919 : if (num_split_elts == 1)
682 : 114628 : CONSTRUCTOR_ELTS (init)->ordered_remove (tidx);
683 : 122291 : else if (num_split_elts > 1)
684 : : {
685 : : /* Perform the delayed ordered removal of non-constant elements
686 : : we split out. */
687 : 880924 : for (idx = tidx; idx < CONSTRUCTOR_NELTS (init); ++idx)
688 : 325365 : if (CONSTRUCTOR_ELT (init, idx)->index == NULL_TREE)
689 : : ;
690 : : else
691 : : {
692 : 245 : *CONSTRUCTOR_ELT (init, tidx) = *CONSTRUCTOR_ELT (init, idx);
693 : 245 : ++tidx;
694 : : }
695 : 115097 : vec_safe_truncate (CONSTRUCTOR_ELTS (init), tidx);
696 : : }
697 : : break;
698 : :
699 : 1043 : case VECTOR_TYPE:
700 : 1043 : if (!initializer_constant_valid_p (init, type))
701 : : {
702 : 1038 : tree code;
703 : 1038 : tree cons = copy_node (init);
704 : 1038 : CONSTRUCTOR_ELTS (init) = NULL;
705 : 1038 : code = build2 (MODIFY_EXPR, type, dest, cons);
706 : 1038 : code = build_stmt (input_location, EXPR_STMT, code);
707 : 1038 : add_stmt (code);
708 : 1038 : num_split_elts += CONSTRUCTOR_NELTS (init);
709 : : }
710 : : break;
711 : :
712 : 0 : default:
713 : 0 : gcc_unreachable ();
714 : : }
715 : :
716 : : /* The rest of the initializer is now a constant. */
717 : 237962 : TREE_CONSTANT (init) = 1;
718 : 237962 : TREE_SIDE_EFFECTS (init) = 0;
719 : :
720 : : /* We didn't split out anything. */
721 : 237962 : if (num_split_elts == 0)
722 : : return false;
723 : :
724 : 229725 : return complete_p && complete_ctor_at_level_p (TREE_TYPE (init),
725 : : num_split_elts, inner_type);
726 : : }
727 : :
728 : : /* A subroutine of store_init_value. Splits non-constant static
729 : : initializer INIT into a constant part and generates code to
730 : : perform the non-constant part of the initialization to DEST.
731 : : Returns the code for the runtime init. */
732 : :
733 : : tree
734 : 12212498 : split_nonconstant_init (tree dest, tree init)
735 : : {
736 : 12212498 : tree code;
737 : :
738 : 12212498 : if (TREE_CODE (init) == TARGET_EXPR)
739 : 210380 : init = TARGET_EXPR_INITIAL (init);
740 : 12212498 : if (TREE_CODE (init) == CONSTRUCTOR)
741 : : {
742 : : /* Subobject initializers are not full-expressions. */
743 : 237626 : auto fe = (make_temp_override
744 : 237626 : (current_stmt_tree ()->stmts_are_full_exprs_p, 0));
745 : :
746 : 237626 : init = cp_fully_fold_init (init);
747 : 237626 : code = push_stmt_list ();
748 : :
749 : : /* If the complete object is an array, build_vec_init's cleanup is
750 : : enough. Otherwise, collect flags for disabling subobject
751 : : cleanups once the complete object is fully constructed. */
752 : 237626 : vec<tree, va_gc> *flags = nullptr;
753 : 237626 : if (TREE_CODE (TREE_TYPE (dest)) != ARRAY_TYPE)
754 : 234593 : flags = make_tree_vector ();
755 : :
756 : 237626 : if (split_nonconstant_init_1 (dest, init, true, &flags))
757 : 130548 : init = NULL_TREE;
758 : :
759 : 707433 : for (tree f : flags)
760 : 275 : add_stmt (build_disable_temp_cleanup (f));
761 : 237626 : release_tree_vector (flags);
762 : :
763 : 237626 : code = pop_stmt_list (code);
764 : 237626 : if (VAR_P (dest) && !is_local_temp (dest))
765 : : {
766 : 236995 : DECL_INITIAL (dest) = init;
767 : 236995 : TREE_READONLY (dest) = 0;
768 : : }
769 : 631 : else if (init)
770 : : {
771 : 254 : tree ie = cp_build_init_expr (dest, init);
772 : 254 : code = add_stmt_to_compound (ie, code);
773 : : }
774 : 237626 : }
775 : 11974872 : else if (TREE_CODE (init) == STRING_CST
776 : 11974872 : && array_of_runtime_bound_p (TREE_TYPE (dest)))
777 : 25 : code = build_vec_init (dest, NULL_TREE, init, /*value-init*/false,
778 : : /*from array*/1, tf_warning_or_error);
779 : : else
780 : 11974847 : code = cp_build_init_expr (dest, init);
781 : :
782 : 12212498 : return code;
783 : : }
784 : :
785 : : /* T is the initializer of a constexpr variable. Set CONSTRUCTOR_MUTABLE_POISON
786 : : for any CONSTRUCTOR within T that contains (directly or indirectly) a mutable
787 : : member, thereby poisoning it so it can't be copied to another a constexpr
788 : : variable or read during constexpr evaluation. */
789 : :
790 : : static void
791 : 18251457 : poison_mutable_constructors (tree t)
792 : : {
793 : 18251457 : if (TREE_CODE (t) != CONSTRUCTOR)
794 : : return;
795 : :
796 : 989677 : if (cp_has_mutable_p (TREE_TYPE (t)))
797 : : {
798 : 159 : CONSTRUCTOR_MUTABLE_POISON (t) = true;
799 : :
800 : 159 : if (vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (t))
801 : 341 : for (const constructor_elt &ce : *elts)
802 : 188 : poison_mutable_constructors (ce.value);
803 : : }
804 : : }
805 : :
806 : : /* Perform appropriate conversions on the initial value of a variable,
807 : : store it in the declaration DECL,
808 : : and print any error messages that are appropriate.
809 : : If the init is invalid, store an ERROR_MARK.
810 : :
811 : : C++: Note that INIT might be a TREE_LIST, which would mean that it is
812 : : a base class initializer for some aggregate type, hopefully compatible
813 : : with DECL. If INIT is a single element, and DECL is an aggregate
814 : : type, we silently convert INIT into a TREE_LIST, allowing a constructor
815 : : to be called.
816 : :
817 : : If INIT is a TREE_LIST and there is no constructor, turn INIT
818 : : into a CONSTRUCTOR and use standard initialization techniques.
819 : : Perhaps a warning should be generated?
820 : :
821 : : Returns code to be executed if initialization could not be performed
822 : : for static variable. In that case, caller must emit the code. */
823 : :
824 : : tree
825 : 33013518 : store_init_value (tree decl, tree init, vec<tree, va_gc>** cleanups, int flags)
826 : : {
827 : 33013518 : tree value, type;
828 : :
829 : : /* If variable's type was invalidly declared, just ignore it. */
830 : :
831 : 33013518 : type = TREE_TYPE (decl);
832 : 33013518 : if (TREE_CODE (type) == ERROR_MARK)
833 : : return NULL_TREE;
834 : :
835 : 2100124 : if (MAYBE_CLASS_TYPE_P (type))
836 : : {
837 : 2069550 : if (TREE_CODE (init) == TREE_LIST)
838 : : {
839 : 0 : error ("constructor syntax used, but no constructor declared "
840 : : "for type %qT", type);
841 : 0 : init = build_constructor_from_list (init_list_type_node, nreverse (init));
842 : : }
843 : : }
844 : :
845 : : /* End of special C++ code. */
846 : :
847 : 33013518 : if (flags & LOOKUP_ALREADY_DIGESTED)
848 : : value = init;
849 : : else
850 : : {
851 : 31595042 : if (TREE_STATIC (decl))
852 : 14628732 : flags |= LOOKUP_ALLOW_FLEXARRAY_INIT;
853 : : /* Digest the specified initializer into an expression. */
854 : 31595042 : value = digest_init_flags (type, init, flags, tf_warning_or_error);
855 : : }
856 : :
857 : : /* Look for braced array initializers for character arrays and
858 : : recursively convert them into STRING_CSTs. */
859 : 33013518 : value = braced_lists_to_strings (type, value);
860 : :
861 : 33013518 : current_ref_temp_count = 0;
862 : 33013518 : value = extend_ref_init_temps (decl, value, cleanups);
863 : :
864 : : /* In C++11 constant expression is a semantic, not syntactic, property.
865 : : In C++98, make sure that what we thought was a constant expression at
866 : : template definition time is still constant and otherwise perform this
867 : : as optimization, e.g. to fold SIZEOF_EXPRs in the initializer. */
868 : 33013518 : if (decl_maybe_constant_var_p (decl) || TREE_STATIC (decl))
869 : : {
870 : 18253966 : bool const_init;
871 : 18253966 : tree oldval = value;
872 : 18253966 : if (DECL_DECLARED_CONSTEXPR_P (decl)
873 : 5069627 : || DECL_DECLARED_CONSTINIT_P (decl)
874 : 23323315 : || (DECL_IN_AGGR_P (decl)
875 : 1108864 : && DECL_INITIALIZED_IN_CLASS_P (decl)))
876 : : {
877 : 14293355 : value = fold_non_dependent_expr (value, tf_warning_or_error,
878 : : /*manifestly_const_eval=*/true,
879 : : decl);
880 : 14290658 : if (value == error_mark_node)
881 : : ;
882 : : /* Diagnose a non-constant initializer for constexpr variable or
883 : : non-inline in-class-initialized static data member. */
884 : 14290456 : else if (!is_constant_expression (value))
885 : : {
886 : : /* Maybe we want to give this message for constexpr variables as
887 : : well, but that will mean a lot of testsuite adjustment. */
888 : 158 : if (DECL_DECLARED_CONSTINIT_P (decl))
889 : 60 : error_at (location_of (decl),
890 : : "%<constinit%> variable %qD does not have a "
891 : : "constant initializer", decl);
892 : 158 : require_constant_expression (value);
893 : 158 : value = error_mark_node;
894 : : }
895 : : else
896 : : {
897 : 14290298 : value = maybe_constant_init (value, decl, true);
898 : :
899 : : /* In a template we might not have done the necessary
900 : : transformations to make value actually constant,
901 : : e.g. extend_ref_init_temps. */
902 : 14290298 : if (!processing_template_decl
903 : 14290298 : && !TREE_CONSTANT (value))
904 : : {
905 : 1352 : if (DECL_DECLARED_CONSTINIT_P (decl))
906 : 36 : error_at (location_of (decl),
907 : : "%<constinit%> variable %qD does not have a "
908 : : "constant initializer", decl);
909 : 1352 : value = cxx_constant_init (value, decl);
910 : : }
911 : : }
912 : : }
913 : : else
914 : 3960611 : value = fold_non_dependent_init (value, tf_warning_or_error,
915 : : /*manifestly_const_eval=*/true, decl);
916 : 18251269 : poison_mutable_constructors (value);
917 : 18251269 : const_init = (reduced_constant_expression_p (value)
918 : 18251269 : || error_operand_p (value));
919 : 18251269 : DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = const_init;
920 : : /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
921 : 18251269 : if (!TYPE_REF_P (type))
922 : 20450602 : TREE_CONSTANT (decl) = const_init && decl_maybe_constant_var_p (decl);
923 : 18251269 : if (!const_init)
924 : 16661679 : value = oldval;
925 : : }
926 : : /* Don't fold initializers of automatic variables in constexpr functions,
927 : : that might fold away something that needs to be diagnosed at constexpr
928 : : evaluation time. */
929 : 33010821 : if (!current_function_decl
930 : 18313262 : || !DECL_DECLARED_CONSTEXPR_P (current_function_decl)
931 : 35850319 : || TREE_STATIC (decl))
932 : 30171389 : value = cp_fully_fold_init (value);
933 : :
934 : : /* Handle aggregate NSDMI in non-constant initializers, too. */
935 : 33010821 : value = replace_placeholders (value, decl);
936 : :
937 : : /* A COMPOUND_LITERAL_P CONSTRUCTOR is the syntactic form; by the time we get
938 : : here it should have been digested into an actual value for the type. */
939 : 33010821 : gcc_checking_assert (TREE_CODE (value) != CONSTRUCTOR
940 : : || processing_template_decl
941 : : || VECTOR_TYPE_P (type)
942 : : || !TREE_HAS_CONSTRUCTOR (value));
943 : :
944 : : /* If the initializer is not a constant, fill in DECL_INITIAL with
945 : : the bits that are constant, and then return an expression that
946 : : will perform the dynamic initialization. */
947 : 33010821 : if (value != error_mark_node
948 : 33006582 : && !processing_template_decl
949 : 64295335 : && (TREE_SIDE_EFFECTS (value)
950 : 25941710 : || vla_type_p (type)
951 : 25941618 : || ! reduced_constant_expression_p (value)))
952 : 12204621 : return split_nonconstant_init (decl, value);
953 : :
954 : : /* DECL may change value; purge caches. */
955 : 20806200 : clear_cv_and_fold_caches ();
956 : :
957 : : /* If the value is a constant, just put it in DECL_INITIAL. If DECL
958 : : is an automatic variable, the middle end will turn this into a
959 : : dynamic initialization later. */
960 : 20806200 : DECL_INITIAL (decl) = value;
961 : 20806200 : return NULL_TREE;
962 : : }
963 : :
964 : :
965 : : /* Give diagnostic about narrowing conversions within { }, or as part of
966 : : a converted constant expression. If CONST_ONLY, only check
967 : : constants. */
968 : :
969 : : bool
970 : 13578608 : check_narrowing (tree type, tree init, tsubst_flags_t complain,
971 : : bool const_only/*= false*/)
972 : : {
973 : 13578608 : tree ftype = unlowered_expr_type (init);
974 : 13578608 : bool ok = true;
975 : 13578608 : REAL_VALUE_TYPE d;
976 : :
977 : 13536229 : if (((!warn_narrowing || !(complain & tf_warning))
978 : 2376119 : && cxx_dialect == cxx98)
979 : 13537052 : || !ARITHMETIC_TYPE_P (type)
980 : : /* Don't emit bogus warnings with e.g. value-dependent trees. */
981 : 26998856 : || instantiation_dependent_expression_p (init))
982 : 227335 : return ok;
983 : :
984 : 14 : if (BRACE_ENCLOSED_INITIALIZER_P (init)
985 : 13351273 : && TREE_CODE (type) == COMPLEX_TYPE)
986 : : {
987 : 0 : tree elttype = TREE_TYPE (type);
988 : 0 : if (CONSTRUCTOR_NELTS (init) > 0)
989 : 0 : ok &= check_narrowing (elttype, CONSTRUCTOR_ELT (init, 0)->value,
990 : : complain);
991 : 0 : if (CONSTRUCTOR_NELTS (init) > 1)
992 : 0 : ok &= check_narrowing (elttype, CONSTRUCTOR_ELT (init, 1)->value,
993 : : complain);
994 : 0 : return ok;
995 : : }
996 : :
997 : : /* Even non-dependent expressions can still have template
998 : : codes like CAST_EXPR, so use *_non_dependent_expr to cope. */
999 : 13351273 : init = fold_non_dependent_expr (init, complain, /*manifest*/true);
1000 : 13351273 : if (init == error_mark_node)
1001 : : return ok;
1002 : :
1003 : : /* If we were asked to only check constants, return early. */
1004 : 13351270 : if (const_only && !TREE_CONSTANT (init))
1005 : : return ok;
1006 : :
1007 : 13349895 : if (CP_INTEGRAL_TYPE_P (type)
1008 : 13340933 : && SCALAR_FLOAT_TYPE_P (ftype))
1009 : : ok = false;
1010 : 13349673 : else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype)
1011 : 13297538 : && CP_INTEGRAL_TYPE_P (type))
1012 : : {
1013 : 13295377 : if (TREE_CODE (ftype) == ENUMERAL_TYPE)
1014 : : /* Check for narrowing based on the values of the enumeration. */
1015 : 863683 : ftype = ENUM_UNDERLYING_TYPE (ftype);
1016 : : /* Undo convert_bitfield_to_declared_type (STRIP_NOPS isn't enough). */
1017 : 13295377 : tree op = init;
1018 : 13295525 : while (CONVERT_EXPR_P (op))
1019 : 148 : op = TREE_OPERAND (op, 0);
1020 : : /* Core 2627 says that we shouldn't warn when "the source is a bit-field
1021 : : whose width w is less than that of its type (or, for an enumeration
1022 : : type, its underlying type) and the target type can represent all the
1023 : : values of a hypothetical extended integer type with width w and with
1024 : : the same signedness as the original type". */
1025 : 13295377 : if (is_bitfield_expr_with_lowered_type (op)
1026 : 13295377 : && TYPE_PRECISION (TREE_TYPE (op)) < TYPE_PRECISION (ftype))
1027 : 70 : ftype = TREE_TYPE (op);
1028 : 13295377 : if ((tree_int_cst_lt (TYPE_MAX_VALUE (type),
1029 : 13295377 : TYPE_MAX_VALUE (ftype))
1030 : 13050847 : || tree_int_cst_lt (TYPE_MIN_VALUE (ftype),
1031 : 13050847 : TYPE_MIN_VALUE (type)))
1032 : 24558681 : && (TREE_CODE (init) != INTEGER_CST
1033 : 11507716 : || !int_fits_type_p (init, type)))
1034 : : ok = false;
1035 : : }
1036 : : /* [dcl.init.list]#7.2: "from long double to double or float, or from
1037 : : double to float". */
1038 : 54296 : else if (SCALAR_FLOAT_TYPE_P (ftype)
1039 : 6801 : && SCALAR_FLOAT_TYPE_P (type))
1040 : : {
1041 : 13620 : if ((extended_float_type_p (ftype) || extended_float_type_p (type))
1042 : 6789 : ? /* "from a floating-point type T to another floating-point type
1043 : : whose floating-point conversion rank is neither greater than
1044 : : nor equal to that of T".
1045 : : So, it is ok if
1046 : : cp_compare_floating_point_conversion_ranks (ftype, type)
1047 : : returns -2 (type has greater conversion rank than ftype)
1048 : : or [-1..1] (type has equal conversion rank as ftype, possibly
1049 : : different subrank. Only do this if at least one of the
1050 : : types is extended floating-point type, otherwise keep doing
1051 : : what we did before (for the sake of non-standard
1052 : : backend types). */
1053 : 204 : cp_compare_floating_point_conversion_ranks (ftype, type) >= 2
1054 : 6585 : : ((same_type_p (ftype, long_double_type_node)
1055 : 144 : && (same_type_p (type, double_type_node)
1056 : 133 : || same_type_p (type, float_type_node)))
1057 : 6572 : || (same_type_p (ftype, double_type_node)
1058 : 5921 : && same_type_p (type, float_type_node))
1059 : 8174 : || (TYPE_PRECISION (type) < TYPE_PRECISION (ftype))))
1060 : : {
1061 : 5052 : if (TREE_CODE (init) == REAL_CST)
1062 : : {
1063 : : /* Issue 703: Loss of precision is OK as long as the value is
1064 : : within the representable range of the new type. */
1065 : 4976 : REAL_VALUE_TYPE r;
1066 : 4976 : d = TREE_REAL_CST (init);
1067 : 4976 : real_convert (&r, TYPE_MODE (type), &d);
1068 : 4976 : if (real_isinf (&r))
1069 : 0 : ok = false;
1070 : : }
1071 : : else
1072 : : ok = false;
1073 : : }
1074 : : }
1075 : 47507 : else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype)
1076 : 2161 : && SCALAR_FLOAT_TYPE_P (type))
1077 : : {
1078 : 2126 : ok = false;
1079 : 2126 : if (TREE_CODE (init) == INTEGER_CST)
1080 : : {
1081 : 2086 : d = real_value_from_int_cst (0, init);
1082 : 2086 : if (exact_real_truncate (TYPE_MODE (type), &d))
1083 : 3639 : ok = true;
1084 : : }
1085 : : }
1086 : 45381 : else if (TREE_CODE (type) == BOOLEAN_TYPE
1087 : 45381 : && (TYPE_PTR_P (ftype) || TYPE_PTRMEM_P (ftype)))
1088 : : /* C++20 P1957R2: converting from a pointer type or a pointer-to-member
1089 : : type to bool should be considered narrowing. This is a DR so is not
1090 : : limited to C++20 only. */
1091 : : ok = false;
1092 : :
1093 : 13349895 : bool almost_ok = ok;
1094 : 13349895 : if (!ok && !CONSTANT_CLASS_P (init) && (complain & tf_warning_or_error))
1095 : : {
1096 : 161 : tree folded = cp_fully_fold (init);
1097 : 161 : if (TREE_CONSTANT (folded) && check_narrowing (type, folded, tf_none))
1098 : : almost_ok = true;
1099 : : }
1100 : :
1101 : 13349895 : if (!ok)
1102 : : {
1103 : 853 : location_t loc = cp_expr_loc_or_input_loc (init);
1104 : 853 : if (cxx_dialect == cxx98)
1105 : : {
1106 : 1 : if (complain & tf_warning)
1107 : 1 : warning_at (loc, OPT_Wnarrowing, "narrowing conversion of %qE "
1108 : : "from %qH to %qI is ill-formed in C++11",
1109 : : init, ftype, type);
1110 : : ok = true;
1111 : : }
1112 : 852 : else if (!CONSTANT_CLASS_P (init))
1113 : : {
1114 : 292 : if (complain & tf_warning_or_error)
1115 : : {
1116 : 161 : auto_diagnostic_group d;
1117 : 4 : if ((!almost_ok || pedantic)
1118 : 161 : && pedwarn (loc, OPT_Wnarrowing,
1119 : : "narrowing conversion of %qE from %qH to %qI",
1120 : : init, ftype, type)
1121 : 306 : && almost_ok)
1122 : 2 : inform (loc, " the expression has a constant value but is not "
1123 : : "a C++ constant-expression");
1124 : 161 : ok = true;
1125 : 161 : }
1126 : : }
1127 : 560 : else if (complain & tf_error)
1128 : : {
1129 : 549 : int savederrorcount = errorcount;
1130 : 549 : permerror_opt (loc, OPT_Wnarrowing,
1131 : : "narrowing conversion of %qE from %qH to %qI",
1132 : : init, ftype, type);
1133 : 549 : if (errorcount == savederrorcount)
1134 : 13578002 : ok = true;
1135 : : }
1136 : : }
1137 : :
1138 : : return ok;
1139 : : }
1140 : :
1141 : : /* True iff TYPE is a C++20 "ordinary" character type. */
1142 : :
1143 : : bool
1144 : 38757 : ordinary_char_type_p (tree type)
1145 : : {
1146 : 38757 : type = TYPE_MAIN_VARIANT (type);
1147 : 38757 : return (type == char_type_node
1148 : 19437 : || type == signed_char_type_node
1149 : 58172 : || type == unsigned_char_type_node);
1150 : : }
1151 : :
1152 : : /* True iff the string literal INIT has a type suitable for initializing array
1153 : : TYPE. */
1154 : :
1155 : : bool
1156 : 526213 : array_string_literal_compatible_p (tree type, tree init)
1157 : : {
1158 : 526213 : tree to_char_type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
1159 : 526213 : tree from_char_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (init)));
1160 : :
1161 : 526213 : if (to_char_type == from_char_type)
1162 : : return true;
1163 : : /* The array element type does not match the initializing string
1164 : : literal element type; this is only allowed when both types are
1165 : : ordinary character type. There are no string literals of
1166 : : signed or unsigned char type in the language, but we can get
1167 : : them internally from converting braced-init-lists to
1168 : : STRING_CST. */
1169 : 19423 : if (ordinary_char_type_p (to_char_type)
1170 : 19423 : && ordinary_char_type_p (from_char_type))
1171 : : return true;
1172 : :
1173 : : /* P2513 (C++20/C++23): "an array of char or unsigned char may
1174 : : be initialized by a UTF-8 string literal, or by such a string
1175 : : literal enclosed in braces." */
1176 : 137 : if (from_char_type == char8_type_node
1177 : 36 : && (to_char_type == char_type_node
1178 : 23 : || to_char_type == unsigned_char_type_node))
1179 : : return true;
1180 : :
1181 : : return false;
1182 : : }
1183 : :
1184 : : /* Process the initializer INIT for a variable of type TYPE, emitting
1185 : : diagnostics for invalid initializers and converting the initializer as
1186 : : appropriate.
1187 : :
1188 : : For aggregate types, it assumes that reshape_init has already run, thus the
1189 : : initializer will have the right shape (brace elision has been undone).
1190 : :
1191 : : NESTED is non-zero iff we are being called for an element of a CONSTRUCTOR,
1192 : : 2 iff the element of a CONSTRUCTOR is inside another CONSTRUCTOR. */
1193 : :
1194 : : static tree
1195 : 51754177 : digest_init_r (tree type, tree init, int nested, int flags,
1196 : : tsubst_flags_t complain)
1197 : : {
1198 : 51754177 : enum tree_code code = TREE_CODE (type);
1199 : :
1200 : 51754177 : if (error_operand_p (init))
1201 : 1750 : return error_mark_node;
1202 : :
1203 : 51752427 : gcc_assert (init);
1204 : :
1205 : : /* We must strip the outermost array type when completing the type,
1206 : : because the its bounds might be incomplete at the moment. */
1207 : 52565855 : if (!complete_type_or_maybe_complain (code == ARRAY_TYPE
1208 : 813428 : ? TREE_TYPE (type) : type, NULL_TREE,
1209 : : complain))
1210 : 27 : return error_mark_node;
1211 : :
1212 : 51752400 : location_t loc = cp_expr_loc_or_input_loc (init);
1213 : :
1214 : 51752400 : tree stripped_init = init;
1215 : :
1216 : 7633483 : if (BRACE_ENCLOSED_INITIALIZER_P (init)
1217 : 59382524 : && CONSTRUCTOR_IS_PAREN_INIT (init))
1218 : 1231 : flags |= LOOKUP_AGGREGATE_PAREN_INIT;
1219 : :
1220 : : /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue
1221 : : (g++.old-deja/g++.law/casts2.C). */
1222 : 51752400 : if (TREE_CODE (init) == NON_LVALUE_EXPR)
1223 : 11564810 : stripped_init = TREE_OPERAND (init, 0);
1224 : :
1225 : 51752400 : stripped_init = tree_strip_any_location_wrapper (stripped_init);
1226 : :
1227 : : /* Initialization of an array of chars from a string constant. The initializer
1228 : : can be optionally enclosed in braces, but reshape_init has already removed
1229 : : them if they were present. */
1230 : 51752400 : if (code == ARRAY_TYPE)
1231 : : {
1232 : 939526 : if (nested && !TYPE_DOMAIN (type))
1233 : : /* C++ flexible array members have a null domain. */
1234 : : {
1235 : 436 : if (flags & LOOKUP_ALLOW_FLEXARRAY_INIT)
1236 : 385 : pedwarn (loc, OPT_Wpedantic,
1237 : : "initialization of a flexible array member");
1238 : : else
1239 : : {
1240 : 51 : if (complain & tf_error)
1241 : 51 : error_at (loc, "non-static initialization of"
1242 : : " a flexible array member");
1243 : 51 : return error_mark_node;
1244 : : }
1245 : : }
1246 : :
1247 : 813377 : tree typ1 = TYPE_MAIN_VARIANT (TREE_TYPE (type));
1248 : 813377 : if (char_type_p (typ1)
1249 : 813377 : && TREE_CODE (stripped_init) == STRING_CST)
1250 : : {
1251 : 526168 : if (!array_string_literal_compatible_p (type, init))
1252 : : {
1253 : 111 : if (complain & tf_error)
1254 : 111 : error_at (loc, "cannot initialize array of %qT from "
1255 : : "a string literal with type array of %qT",
1256 : : typ1,
1257 : 111 : TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (init))));
1258 : 111 : return error_mark_node;
1259 : : }
1260 : :
1261 : 526430 : if (nested == 2 && !TYPE_DOMAIN (type))
1262 : : {
1263 : 24 : if (complain & tf_error)
1264 : 24 : error_at (loc, "initialization of flexible array member "
1265 : : "in a nested context");
1266 : 24 : return error_mark_node;
1267 : : }
1268 : :
1269 : 526033 : if (type != TREE_TYPE (init)
1270 : 526033 : && !variably_modified_type_p (type, NULL_TREE))
1271 : : {
1272 : 21436 : init = copy_node (init);
1273 : 21436 : TREE_TYPE (init) = type;
1274 : : /* If we have a location wrapper, then also copy the wrapped
1275 : : node, and update the copy's type. */
1276 : 21436 : if (location_wrapper_p (init))
1277 : : {
1278 : 20577 : stripped_init = copy_node (stripped_init);
1279 : 20577 : TREE_OPERAND (init, 0) = stripped_init;
1280 : 20577 : TREE_TYPE (stripped_init) = type;
1281 : : }
1282 : : }
1283 : 526033 : if (TYPE_DOMAIN (type) && TREE_CONSTANT (TYPE_SIZE (type)))
1284 : : {
1285 : : /* Not a flexible array member. */
1286 : 525963 : int size = TREE_INT_CST_LOW (TYPE_SIZE (type));
1287 : 525963 : size = (size + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
1288 : : /* In C it is ok to subtract 1 from the length of the string
1289 : : because it's ok to ignore the terminating null char that is
1290 : : counted in the length of the constant, but in C++ this would
1291 : : be invalid. */
1292 : 525963 : if (size < TREE_STRING_LENGTH (stripped_init))
1293 : : {
1294 : 159 : permerror (loc, "initializer-string for %qT is too long",
1295 : : type);
1296 : :
1297 : 159 : init = build_string (size,
1298 : 159 : TREE_STRING_POINTER (stripped_init));
1299 : 159 : TREE_TYPE (init) = type;
1300 : : }
1301 : : }
1302 : 526033 : return init;
1303 : : }
1304 : : }
1305 : :
1306 : : /* Handle scalar types (including conversions) and references. */
1307 : 1016 : if ((code != COMPLEX_TYPE || BRACE_ENCLOSED_INITIALIZER_P (stripped_init))
1308 : 51226223 : && (SCALAR_TYPE_P (type) || code == REFERENCE_TYPE))
1309 : : {
1310 : : /* Narrowing is OK when initializing an aggregate from
1311 : : a parenthesized list. */
1312 : 43739370 : if (nested && !(flags & LOOKUP_AGGREGATE_PAREN_INIT))
1313 : 13176872 : flags |= LOOKUP_NO_NARROWING;
1314 : 43739370 : init = convert_for_initialization (0, type, init, flags,
1315 : : ICR_INIT, NULL_TREE, 0,
1316 : : complain);
1317 : :
1318 : 43739370 : return init;
1319 : : }
1320 : :
1321 : : /* Come here only for aggregates: records, arrays, unions, complex numbers
1322 : : and vectors. */
1323 : 7486811 : gcc_assert (code == ARRAY_TYPE
1324 : : || VECTOR_TYPE_P (type)
1325 : : || code == RECORD_TYPE
1326 : : || code == UNION_TYPE
1327 : : || code == OPAQUE_TYPE
1328 : : || code == COMPLEX_TYPE);
1329 : :
1330 : : /* "If T is a class type and the initializer list has a single
1331 : : element of type cv U, where U is T or a class derived from T,
1332 : : the object is initialized from that element." */
1333 : 7486811 : if (cxx_dialect >= cxx11
1334 : 7460300 : && BRACE_ENCLOSED_INITIALIZER_P (stripped_init)
1335 : 7254765 : && !CONSTRUCTOR_IS_DESIGNATED_INIT (stripped_init)
1336 : 7014229 : && CONSTRUCTOR_NELTS (stripped_init) == 1
1337 : 7851582 : && ((CLASS_TYPE_P (type) && !CLASSTYPE_NON_AGGREGATE (type))
1338 : 36744 : || VECTOR_TYPE_P (type)))
1339 : : {
1340 : 328305 : tree elt = CONSTRUCTOR_ELT (stripped_init, 0)->value;
1341 : 328305 : if (reference_related_p (type, TREE_TYPE (elt)))
1342 : : {
1343 : : /* In C++17, aggregates can have bases, thus participate in
1344 : : aggregate initialization. In the following case:
1345 : :
1346 : : struct B { int c; };
1347 : : struct D : B { };
1348 : : D d{{D{{42}}}};
1349 : :
1350 : : there's an extra set of braces, so the D temporary initializes
1351 : : the first element of d, which is the B base subobject. The base
1352 : : of type B is copy-initialized from the D temporary, causing
1353 : : object slicing. */
1354 : 30 : tree field = next_aggregate_field (TYPE_FIELDS (type));
1355 : 60 : if (field && DECL_FIELD_IS_BASE (field))
1356 : : {
1357 : 30 : if (warning_at (loc, 0, "initializing a base class of type %qT "
1358 : 30 : "results in object slicing", TREE_TYPE (field)))
1359 : 30 : inform (loc, "remove %<{ }%> around initializer");
1360 : : }
1361 : 0 : else if (flag_checking)
1362 : : /* We should have fixed this in reshape_init. */
1363 : 0 : gcc_unreachable ();
1364 : : }
1365 : : }
1366 : :
1367 : 7486811 : if (SIMPLE_TARGET_EXPR_P (stripped_init))
1368 : 8097 : stripped_init = TARGET_EXPR_INITIAL (stripped_init);
1369 : :
1370 : 7274120 : if (BRACE_ENCLOSED_INITIALIZER_P (stripped_init)
1371 : 14756676 : && !TYPE_NON_AGGREGATE_CLASS (type))
1372 : 6987760 : return process_init_constructor (type, stripped_init, nested, flags,
1373 : 6987760 : complain);
1374 : : else
1375 : : {
1376 : 499051 : if (COMPOUND_LITERAL_P (stripped_init) && code == ARRAY_TYPE)
1377 : : {
1378 : 0 : if (complain & tf_error)
1379 : 0 : error_at (loc, "cannot initialize aggregate of type %qT with "
1380 : : "a compound literal", type);
1381 : :
1382 : 0 : return error_mark_node;
1383 : : }
1384 : :
1385 : 499051 : if (code == ARRAY_TYPE
1386 : 499051 : && !BRACE_ENCLOSED_INITIALIZER_P (stripped_init))
1387 : : {
1388 : : /* Allow the result of build_array_copy and of
1389 : : build_value_init_noctor. */
1390 : 88 : if ((TREE_CODE (stripped_init) == VEC_INIT_EXPR
1391 : 69 : || TREE_CODE (stripped_init) == CONSTRUCTOR)
1392 : 132 : && (same_type_ignoring_top_level_qualifiers_p
1393 : 44 : (type, TREE_TYPE (init))))
1394 : : return init;
1395 : :
1396 : 53 : if (complain & tf_error)
1397 : 53 : error_at (loc, "array must be initialized with a brace-enclosed"
1398 : : " initializer");
1399 : 53 : return error_mark_node;
1400 : : }
1401 : :
1402 : 498963 : return convert_for_initialization (NULL_TREE, type, init,
1403 : : flags,
1404 : : ICR_INIT, NULL_TREE, 0,
1405 : 498963 : complain);
1406 : : }
1407 : : }
1408 : :
1409 : : tree
1410 : 1039310 : digest_init (tree type, tree init, tsubst_flags_t complain)
1411 : : {
1412 : 1039310 : return digest_init_r (type, init, 0, LOOKUP_IMPLICIT, complain);
1413 : : }
1414 : :
1415 : : tree
1416 : 35445213 : digest_init_flags (tree type, tree init, int flags, tsubst_flags_t complain)
1417 : : {
1418 : 35445213 : return digest_init_r (type, init, 0, flags, complain);
1419 : : }
1420 : :
1421 : : /* Callback to replace PLACEHOLDER_EXPRs in a TARGET_EXPR (which isn't used
1422 : : in the context of guaranteed copy elision). */
1423 : :
1424 : : static tree
1425 : 2164728 : replace_placeholders_for_class_temp_r (tree *tp, int *, void *)
1426 : : {
1427 : 2164728 : tree t = *tp;
1428 : :
1429 : : /* We're looking for a TARGET_EXPR nested in the whole expression. */
1430 : 2164728 : if (TREE_CODE (t) == TARGET_EXPR
1431 : : /* That serves as temporary materialization, not an initializer. */
1432 : 2164728 : && !TARGET_EXPR_ELIDING_P (t))
1433 : : {
1434 : 449 : tree init = TARGET_EXPR_INITIAL (t);
1435 : 452 : while (TREE_CODE (init) == COMPOUND_EXPR)
1436 : 3 : init = TREE_OPERAND (init, 1);
1437 : 449 : if (TREE_CODE (init) == CONSTRUCTOR
1438 : 449 : && CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init))
1439 : : {
1440 : 129 : tree obj = TARGET_EXPR_SLOT (t);
1441 : 129 : replace_placeholders (init, obj);
1442 : : /* We should have dealt with all PLACEHOLDER_EXPRs. */
1443 : 129 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = false;
1444 : 129 : gcc_checking_assert (!find_placeholders (init));
1445 : : }
1446 : : }
1447 : :
1448 : 2164728 : return NULL_TREE;
1449 : : }
1450 : :
1451 : : /* Process the initializer INIT for an NSDMI DECL (a FIELD_DECL). */
1452 : : tree
1453 : 432137 : digest_nsdmi_init (tree decl, tree init, tsubst_flags_t complain)
1454 : : {
1455 : 432137 : gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1456 : :
1457 : 432137 : tree type = TREE_TYPE (decl);
1458 : 432137 : if (DECL_BIT_FIELD_TYPE (decl))
1459 : 2786 : type = DECL_BIT_FIELD_TYPE (decl);
1460 : 432137 : int flags = LOOKUP_IMPLICIT;
1461 : 432137 : if (DIRECT_LIST_INIT_P (init))
1462 : : {
1463 : 44205 : flags = LOOKUP_NORMAL;
1464 : 44205 : complain |= tf_no_cleanup;
1465 : : }
1466 : 157705 : if (BRACE_ENCLOSED_INITIALIZER_P (init)
1467 : 589842 : && CP_AGGREGATE_TYPE_P (type))
1468 : 126906 : init = reshape_init (type, init, complain);
1469 : 432137 : init = digest_init_flags (type, init, flags, complain);
1470 : 432137 : set_target_expr_eliding (init);
1471 : :
1472 : : /* We may have temporary materialization in a NSDMI, if the initializer
1473 : : has something like A{} in it. Digesting the {} could have introduced
1474 : : a PLACEHOLDER_EXPR referring to A. Now that we've got a TARGET_EXPR,
1475 : : we have an object we can refer to. The reason we bother doing this
1476 : : here is for code like
1477 : :
1478 : : struct A {
1479 : : int x;
1480 : : int y = x;
1481 : : };
1482 : :
1483 : : struct B {
1484 : : int x = 0;
1485 : : int y = A{x}.y; // #1
1486 : : };
1487 : :
1488 : : where in #1 we don't want to end up with two PLACEHOLDER_EXPRs for
1489 : : different types on the same level in a {} when lookup_placeholder
1490 : : wouldn't find a named object for the PLACEHOLDER_EXPR for A. Note,
1491 : : temporary materialization does not occur when initializing an object
1492 : : from a prvalue of the same type, therefore we must not replace the
1493 : : placeholder with a temporary object so that it can be elided. */
1494 : 432137 : cp_walk_tree_without_duplicates (&init, replace_placeholders_for_class_temp_r,
1495 : : nullptr);
1496 : :
1497 : 432137 : return init;
1498 : : }
1499 : :
1500 : : /* Set of flags used within process_init_constructor to describe the
1501 : : initializers. */
1502 : : #define PICFLAG_ERRONEOUS 1
1503 : : #define PICFLAG_NOT_ALL_CONSTANT 2
1504 : : #define PICFLAG_NOT_ALL_SIMPLE 4
1505 : : #define PICFLAG_SIDE_EFFECTS 8
1506 : : #define PICFLAG_VEC_INIT 16
1507 : :
1508 : : /* Given an initializer INIT, return the flag (PICFLAG_*) which better
1509 : : describe it. */
1510 : :
1511 : : static int
1512 : 15740047 : picflag_from_initializer (tree init)
1513 : : {
1514 : 15740047 : if (init == error_mark_node)
1515 : : return PICFLAG_ERRONEOUS;
1516 : 15739626 : else if (!TREE_CONSTANT (init))
1517 : : {
1518 : 1154091 : if (TREE_SIDE_EFFECTS (init))
1519 : : return PICFLAG_SIDE_EFFECTS;
1520 : : else
1521 : 1084084 : return PICFLAG_NOT_ALL_CONSTANT;
1522 : : }
1523 : 14585535 : else if (!initializer_constant_valid_p (init, TREE_TYPE (init)))
1524 : 12280 : return PICFLAG_NOT_ALL_SIMPLE;
1525 : : return 0;
1526 : : }
1527 : :
1528 : : /* Adjust INIT for going into a CONSTRUCTOR. */
1529 : :
1530 : : static tree
1531 : 15269654 : massage_init_elt (tree type, tree init, int nested, int flags,
1532 : : tsubst_flags_t complain)
1533 : : {
1534 : 15269654 : int new_flags = LOOKUP_IMPLICIT;
1535 : 15269654 : if (flags & LOOKUP_ALLOW_FLEXARRAY_INIT)
1536 : 11773957 : new_flags |= LOOKUP_ALLOW_FLEXARRAY_INIT;
1537 : 15269654 : if (flags & LOOKUP_AGGREGATE_PAREN_INIT)
1538 : 1953 : new_flags |= LOOKUP_AGGREGATE_PAREN_INIT;
1539 : 26403743 : init = digest_init_r (type, init, nested ? 2 : 1, new_flags, complain);
1540 : : /* When we defer constant folding within a statement, we may want to
1541 : : defer this folding as well. Don't call this on CONSTRUCTORs because
1542 : : their elements have already been folded, and we must avoid folding
1543 : : the result of get_nsdmi. */
1544 : 15269654 : if (TREE_CODE (init) != CONSTRUCTOR)
1545 : : {
1546 : 13480009 : tree t = fold_non_dependent_init (init, complain);
1547 : 13480009 : if (TREE_CONSTANT (t))
1548 : 12315680 : init = t;
1549 : 13480009 : set_target_expr_eliding (init);
1550 : : }
1551 : 15269654 : return init;
1552 : : }
1553 : :
1554 : : /* Subroutine of process_init_constructor, which will process an initializer
1555 : : INIT for an array or vector of type TYPE. Returns the flags (PICFLAG_*)
1556 : : which describe the initializers. */
1557 : :
1558 : : static int
1559 : 328061 : process_init_constructor_array (tree type, tree init, int nested, int flags,
1560 : : tsubst_flags_t complain)
1561 : : {
1562 : 328061 : unsigned HOST_WIDE_INT i, len = 0;
1563 : 328061 : int picflags = 0;
1564 : 328061 : bool unbounded = false;
1565 : 328061 : constructor_elt *ce;
1566 : 328061 : vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (init);
1567 : :
1568 : 328061 : gcc_assert (TREE_CODE (type) == ARRAY_TYPE
1569 : : || VECTOR_TYPE_P (type));
1570 : :
1571 : 328061 : if (TREE_CODE (type) == ARRAY_TYPE)
1572 : : {
1573 : : /* C++ flexible array members have a null domain. */
1574 : 287121 : tree domain = TYPE_DOMAIN (type);
1575 : 287121 : if (domain && TREE_CONSTANT (TYPE_MAX_VALUE (domain)))
1576 : 573406 : len = wi::ext (wi::to_offset (TYPE_MAX_VALUE (domain))
1577 : 573406 : - wi::to_offset (TYPE_MIN_VALUE (domain)) + 1,
1578 : 286703 : TYPE_PRECISION (TREE_TYPE (domain)),
1579 : 573406 : TYPE_SIGN (TREE_TYPE (domain))).to_uhwi ();
1580 : : else
1581 : : unbounded = true; /* Take as many as there are. */
1582 : :
1583 : 287121 : if (nested == 2 && !domain && !vec_safe_is_empty (v))
1584 : : {
1585 : 69 : if (complain & tf_error)
1586 : 138 : error_at (cp_expr_loc_or_input_loc (init),
1587 : : "initialization of flexible array member "
1588 : : "in a nested context");
1589 : 69 : return PICFLAG_ERRONEOUS;
1590 : : }
1591 : : }
1592 : : else
1593 : : /* Vectors are like simple fixed-size arrays. */
1594 : 40940 : unbounded = !TYPE_VECTOR_SUBPARTS (type).is_constant (&len);
1595 : :
1596 : : /* There must not be more initializers than needed. */
1597 : 327992 : if (!unbounded && vec_safe_length (v) > len)
1598 : : {
1599 : 13 : if (complain & tf_error)
1600 : 13 : error ("too many initializers for %qT", type);
1601 : : else
1602 : : return PICFLAG_ERRONEOUS;
1603 : : }
1604 : :
1605 : 9601252 : FOR_EACH_VEC_SAFE_ELT (v, i, ce)
1606 : : {
1607 : 9273260 : if (!ce->index)
1608 : 530 : ce->index = size_int (i);
1609 : 9272730 : else if (!check_array_designated_initializer (ce, i))
1610 : 0 : ce->index = error_mark_node;
1611 : 9273260 : gcc_assert (ce->value);
1612 : 9273260 : ce->value
1613 : 9273260 : = massage_init_elt (TREE_TYPE (type), ce->value, nested, flags,
1614 : : complain);
1615 : :
1616 : 9273260 : gcc_checking_assert
1617 : : (ce->value == error_mark_node
1618 : : || (same_type_ignoring_top_level_qualifiers_p
1619 : : (strip_array_types (TREE_TYPE (type)),
1620 : : strip_array_types (TREE_TYPE (ce->value)))));
1621 : :
1622 : 9273260 : picflags |= picflag_from_initializer (ce->value);
1623 : : /* Propagate CONSTRUCTOR_PLACEHOLDER_BOUNDARY to outer
1624 : : CONSTRUCTOR. */
1625 : 9273260 : if (TREE_CODE (ce->value) == CONSTRUCTOR
1626 : 9273260 : && CONSTRUCTOR_PLACEHOLDER_BOUNDARY (ce->value))
1627 : : {
1628 : 17 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = 1;
1629 : 17 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (ce->value) = 0;
1630 : : }
1631 : : }
1632 : :
1633 : : /* No more initializers. If the array is unbounded, we are done. Otherwise,
1634 : : we must add initializers ourselves. */
1635 : 327992 : if (!unbounded)
1636 : 327721 : for (; i < len; ++i)
1637 : : {
1638 : 20953 : tree next;
1639 : :
1640 : 20953 : if (type_build_ctor_call (TREE_TYPE (type)))
1641 : : {
1642 : : /* If this type needs constructors run for default-initialization,
1643 : : we can't rely on the back end to do it for us, so make the
1644 : : initialization explicit by list-initializing from T{}. */
1645 : 367 : next = build_constructor (init_list_type_node, NULL);
1646 : 367 : next = massage_init_elt (TREE_TYPE (type), next, nested, flags,
1647 : : complain);
1648 : 367 : if (initializer_zerop (next))
1649 : : /* The default zero-initialization is fine for us; don't
1650 : : add anything to the CONSTRUCTOR. */
1651 : : next = NULL_TREE;
1652 : : }
1653 : 20586 : else if (!zero_init_p (TREE_TYPE (type)))
1654 : 138 : next = build_zero_init (TREE_TYPE (type),
1655 : : /*nelts=*/NULL_TREE,
1656 : : /*static_storage_p=*/false);
1657 : : else
1658 : : /* The default zero-initialization is fine for us; don't
1659 : : add anything to the CONSTRUCTOR. */
1660 : : next = NULL_TREE;
1661 : :
1662 : 290 : if (next)
1663 : : {
1664 : 290 : if (next != error_mark_node
1665 : 290 : && (initializer_constant_valid_p (next, TREE_TYPE (next))
1666 : 278 : != null_pointer_node))
1667 : : {
1668 : : /* Use VEC_INIT_EXPR for non-constant initialization of
1669 : : trailing elements with no explicit initializers. */
1670 : 130 : picflags |= PICFLAG_VEC_INIT;
1671 : 130 : break;
1672 : : }
1673 : :
1674 : 160 : picflags |= picflag_from_initializer (next);
1675 : : /* Propagate CONSTRUCTOR_PLACEHOLDER_BOUNDARY to outer
1676 : : CONSTRUCTOR. */
1677 : 160 : if (TREE_CODE (next) == CONSTRUCTOR
1678 : 160 : && CONSTRUCTOR_PLACEHOLDER_BOUNDARY (next))
1679 : : {
1680 : 0 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = 1;
1681 : 0 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (next) = 0;
1682 : : }
1683 : 160 : if (len > i+1)
1684 : : {
1685 : 82 : tree range = build2 (RANGE_EXPR, size_type_node,
1686 : : build_int_cst (size_type_node, i),
1687 : 82 : build_int_cst (size_type_node, len - 1));
1688 : 82 : CONSTRUCTOR_APPEND_ELT (v, range, next);
1689 : 82 : break;
1690 : : }
1691 : : else
1692 : 78 : CONSTRUCTOR_APPEND_ELT (v, size_int (i), next);
1693 : : }
1694 : : else
1695 : : /* Don't bother checking all the other elements. */
1696 : : break;
1697 : : }
1698 : :
1699 : 327992 : CONSTRUCTOR_ELTS (init) = v;
1700 : 327992 : return picflags;
1701 : : }
1702 : :
1703 : : /* Subroutine of process_init_constructor, which will process an initializer
1704 : : INIT for a class of type TYPE. Returns the flags (PICFLAG_*) which describe
1705 : : the initializers. */
1706 : :
1707 : : static int
1708 : 6543004 : process_init_constructor_record (tree type, tree init, int nested, int flags,
1709 : : tsubst_flags_t complain)
1710 : : {
1711 : 6543004 : vec<constructor_elt, va_gc> *v = NULL;
1712 : 6543004 : tree field;
1713 : 6543004 : int skipped = 0;
1714 : :
1715 : 6543004 : gcc_assert (TREE_CODE (type) == RECORD_TYPE);
1716 : 6543004 : gcc_assert (!CLASSTYPE_VBASECLASSES (type));
1717 : 6543004 : gcc_assert (!TYPE_BINFO (type)
1718 : : || cxx_dialect >= cxx17
1719 : : || !BINFO_N_BASE_BINFOS (TYPE_BINFO (type)));
1720 : 6543004 : gcc_assert (!TYPE_POLYMORPHIC_P (type));
1721 : :
1722 : 6543004 : restart:
1723 : 6578809 : int picflags = 0;
1724 : 6578809 : unsigned HOST_WIDE_INT idx = 0;
1725 : 6578809 : int designator_skip = -1;
1726 : : /* Generally, we will always have an index for each initializer (which is
1727 : : a FIELD_DECL, put by reshape_init), but compound literals don't go trough
1728 : : reshape_init. So we need to handle both cases. */
1729 : 61732040 : for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
1730 : : {
1731 : 55189564 : tree next;
1732 : :
1733 : 102965728 : if (TREE_CODE (field) != FIELD_DECL
1734 : 55189564 : || (DECL_ARTIFICIAL (field)
1735 : 390011 : && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field))))
1736 : 47776164 : continue;
1737 : :
1738 : 7413400 : if (DECL_UNNAMED_BIT_FIELD (field))
1739 : 113 : continue;
1740 : :
1741 : : /* If this is a bitfield, first convert to the declared type. */
1742 : 7413287 : tree fldtype = TREE_TYPE (field);
1743 : 7413287 : if (DECL_BIT_FIELD_TYPE (field))
1744 : 715388 : fldtype = DECL_BIT_FIELD_TYPE (field);
1745 : 7413287 : if (fldtype == error_mark_node)
1746 : : return PICFLAG_ERRONEOUS;
1747 : :
1748 : 7413272 : next = NULL_TREE;
1749 : 13301310 : if (idx < CONSTRUCTOR_NELTS (init))
1750 : : {
1751 : 5886070 : constructor_elt *ce = &(*CONSTRUCTOR_ELTS (init))[idx];
1752 : 5886070 : if (ce->index)
1753 : : {
1754 : : /* We can have either a FIELD_DECL or an IDENTIFIER_NODE. The
1755 : : latter case can happen in templates where lookup has to be
1756 : : deferred. */
1757 : 5884664 : gcc_assert (TREE_CODE (ce->index) == FIELD_DECL
1758 : : || identifier_p (ce->index));
1759 : 5884664 : if (ce->index == field || ce->index == DECL_NAME (field))
1760 : 5884559 : next = ce->value;
1761 : : else
1762 : : {
1763 : 105 : ce = NULL;
1764 : 105 : if (designator_skip == -1)
1765 : 86 : designator_skip = 1;
1766 : : }
1767 : : }
1768 : : else
1769 : : {
1770 : 1406 : designator_skip = 0;
1771 : 1406 : next = ce->value;
1772 : : }
1773 : :
1774 : 5886070 : if (ce)
1775 : : {
1776 : 5885965 : gcc_assert (ce->value);
1777 : 5885965 : next = massage_init_elt (fldtype, next, nested, flags, complain);
1778 : 5885965 : ++idx;
1779 : : }
1780 : : }
1781 : 7413272 : if (next == error_mark_node)
1782 : : /* We skip initializers for empty bases/fields, so skipping an invalid
1783 : : one could make us accept invalid code. */
1784 : : return PICFLAG_ERRONEOUS;
1785 : 7412759 : else if (next)
1786 : : /* Already handled above. */;
1787 : 1527307 : else if (DECL_INITIAL (field))
1788 : : {
1789 : 78376 : if (skipped > 0)
1790 : : {
1791 : : /* We're using an NSDMI past a field with implicit
1792 : : zero-init. Go back and make it explicit. */
1793 : 35805 : skipped = -1;
1794 : 35805 : vec_safe_truncate (v, 0);
1795 : 35805 : goto restart;
1796 : : }
1797 : : /* C++14 aggregate NSDMI. */
1798 : 42571 : next = get_nsdmi (field, /*ctor*/false, complain);
1799 : 42571 : if (!CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init)
1800 : 42571 : && find_placeholders (next))
1801 : 847 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = 1;
1802 : : }
1803 : 1448931 : else if (type_build_ctor_call (fldtype))
1804 : : {
1805 : : /* If this type needs constructors run for
1806 : : default-initialization, we can't rely on the back end to do it
1807 : : for us, so build up TARGET_EXPRs. If the type in question is
1808 : : a class, just build one up; if it's an array, recurse. */
1809 : 2900 : next = build_constructor (init_list_type_node, NULL);
1810 : 2900 : next = massage_init_elt (fldtype, next, nested, flags, complain);
1811 : 2900 : if (TREE_CODE (next) == TARGET_EXPR
1812 : 2900 : && unsafe_copy_elision_p (field, next))
1813 : 0 : TARGET_EXPR_ELIDING_P (next) = false;
1814 : :
1815 : : /* Warn when some struct elements are implicitly initialized. */
1816 : 2900 : if ((complain & tf_warning)
1817 : 2787 : && !cp_unevaluated_operand
1818 : 5663 : && !EMPTY_CONSTRUCTOR_P (init))
1819 : 24 : warning (OPT_Wmissing_field_initializers,
1820 : : "missing initializer for member %qD", field);
1821 : : }
1822 : : else
1823 : : {
1824 : 1446031 : if (TYPE_REF_P (fldtype))
1825 : : {
1826 : 21 : if (complain & tf_error)
1827 : 21 : error ("member %qD is uninitialized reference", field);
1828 : : else
1829 : : return PICFLAG_ERRONEOUS;
1830 : : }
1831 : 1446010 : else if (CLASSTYPE_REF_FIELDS_NEED_INIT (fldtype))
1832 : : {
1833 : 1 : if (complain & tf_error)
1834 : 1 : error ("member %qD with uninitialized reference fields", field);
1835 : : else
1836 : : return PICFLAG_ERRONEOUS;
1837 : : }
1838 : : /* Do nothing for flexible array members since they need not have any
1839 : : elements. Don't worry about 'skipped' because a flexarray has to
1840 : : be the last field. */
1841 : 1446009 : else if (TREE_CODE (fldtype) == ARRAY_TYPE && !TYPE_DOMAIN (fldtype))
1842 : 103 : continue;
1843 : :
1844 : : /* Warn when some struct elements are implicitly initialized
1845 : : to zero. */
1846 : 1445928 : if ((complain & tf_warning)
1847 : 1321612 : && !cp_unevaluated_operand
1848 : 1321079 : && !EMPTY_CONSTRUCTOR_P (init)
1849 : 1447080 : && !is_really_empty_class (fldtype, /*ignore_vptr*/false))
1850 : 1075 : warning (OPT_Wmissing_field_initializers,
1851 : : "missing initializer for member %qD", field);
1852 : :
1853 : 1445928 : if (!zero_init_p (fldtype) || skipped < 0)
1854 : : {
1855 : 428749 : if (TYPE_REF_P (fldtype))
1856 : 3 : next = build_zero_cst (fldtype);
1857 : : else
1858 : 428746 : next = build_zero_init (fldtype, /*nelts=*/NULL_TREE,
1859 : : /*static_storage_p=*/false);
1860 : : }
1861 : : else
1862 : : {
1863 : : /* The default zero-initialization is fine for us; don't
1864 : : add anything to the CONSTRUCTOR. */
1865 : 1017179 : skipped = 1;
1866 : 1017179 : continue;
1867 : : }
1868 : : }
1869 : :
1870 : : /* We can't actually elide the temporary when initializing a
1871 : : potentially-overlapping field from a function that returns by
1872 : : value. */
1873 : 6359672 : if (TREE_CODE (next) == TARGET_EXPR
1874 : 6359672 : && unsafe_copy_elision_p (field, next))
1875 : 25 : TARGET_EXPR_ELIDING_P (next) = false;
1876 : :
1877 : 6359672 : if (is_empty_field (field)
1878 : 6359672 : && !TREE_SIDE_EFFECTS (next))
1879 : : /* Don't add trivial initialization of an empty base/field to the
1880 : : constructor, as they might not be ordered the way the back-end
1881 : : expects. */
1882 : 208 : continue;
1883 : :
1884 : : /* If this is a bitfield, now convert to the lowered type. */
1885 : 6359464 : if (fldtype != TREE_TYPE (field))
1886 : 357998 : next = cp_convert_and_check (TREE_TYPE (field), next, complain);
1887 : 6359464 : picflags |= picflag_from_initializer (next);
1888 : : /* Propagate CONSTRUCTOR_PLACEHOLDER_BOUNDARY to outer CONSTRUCTOR. */
1889 : 6359464 : if (TREE_CODE (next) == CONSTRUCTOR
1890 : 6359464 : && CONSTRUCTOR_PLACEHOLDER_BOUNDARY (next))
1891 : : {
1892 : 66 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = 1;
1893 : 66 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (next) = 0;
1894 : : }
1895 : 61512695 : CONSTRUCTOR_APPEND_ELT (v, field, next);
1896 : : }
1897 : :
1898 : 9258796 : if (idx < CONSTRUCTOR_NELTS (init))
1899 : : {
1900 : 81 : if (complain & tf_error)
1901 : : {
1902 : 24 : constructor_elt *ce = &(*CONSTRUCTOR_ELTS (init))[idx];
1903 : : /* For better diagnostics, try to find out if it is really
1904 : : the case of too many initializers or if designators are
1905 : : in incorrect order. */
1906 : 24 : if (designator_skip == 1 && ce->index)
1907 : : {
1908 : 15 : gcc_assert (TREE_CODE (ce->index) == FIELD_DECL
1909 : : || identifier_p (ce->index));
1910 : 15 : for (field = TYPE_FIELDS (type);
1911 : 54 : field; field = DECL_CHAIN (field))
1912 : : {
1913 : 90 : if (TREE_CODE (field) != FIELD_DECL
1914 : 54 : || (DECL_ARTIFICIAL (field)
1915 : 0 : && !(cxx_dialect >= cxx17
1916 : 0 : && DECL_FIELD_IS_BASE (field))))
1917 : 36 : continue;
1918 : :
1919 : 18 : if (DECL_UNNAMED_BIT_FIELD (field))
1920 : 0 : continue;
1921 : :
1922 : 18 : if (ce->index == field || ce->index == DECL_NAME (field))
1923 : : break;
1924 : : }
1925 : : }
1926 : 24 : if (field)
1927 : 15 : error ("designator order for field %qD does not match declaration "
1928 : : "order in %qT", field, type);
1929 : : else
1930 : 9 : error ("too many initializers for %qT", type);
1931 : : }
1932 : : else
1933 : : return PICFLAG_ERRONEOUS;
1934 : : }
1935 : :
1936 : 6542419 : CONSTRUCTOR_ELTS (init) = v;
1937 : 6542419 : return picflags;
1938 : : }
1939 : :
1940 : : /* Subroutine of process_init_constructor, which will process a single
1941 : : initializer INIT for a union of type TYPE. Returns the flags (PICFLAG_*)
1942 : : which describe the initializer. */
1943 : :
1944 : : static int
1945 : 116695 : process_init_constructor_union (tree type, tree init, int nested, int flags,
1946 : : tsubst_flags_t complain)
1947 : : {
1948 : 116695 : constructor_elt *ce;
1949 : 116695 : int len;
1950 : :
1951 : : /* If the initializer was empty, use the union's NSDMI if it has one.
1952 : : Otherwise use default zero initialization. */
1953 : 116695 : if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init)))
1954 : : {
1955 : 105028 : for (tree field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1956 : : {
1957 : 95496 : if (TREE_CODE (field) == FIELD_DECL
1958 : 95496 : && DECL_INITIAL (field) != NULL_TREE)
1959 : : {
1960 : 26 : tree val = get_nsdmi (field, /*in_ctor=*/false, complain);
1961 : 26 : if (!CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init)
1962 : 26 : && find_placeholders (val))
1963 : 20 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = 1;
1964 : 26 : CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (init), field, val);
1965 : 26 : break;
1966 : : }
1967 : : }
1968 : :
1969 : 9558 : if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init)))
1970 : : return 0;
1971 : : }
1972 : :
1973 : 107163 : len = CONSTRUCTOR_ELTS (init)->length ();
1974 : 107163 : if (len > 1)
1975 : : {
1976 : 3 : if (!(complain & tf_error))
1977 : : return PICFLAG_ERRONEOUS;
1978 : 3 : error ("too many initializers for %qT", type);
1979 : 3 : CONSTRUCTOR_ELTS (init)->block_remove (1, len-1);
1980 : : }
1981 : :
1982 : 107163 : ce = &(*CONSTRUCTOR_ELTS (init))[0];
1983 : :
1984 : : /* If this element specifies a field, initialize via that field. */
1985 : 107163 : if (ce->index)
1986 : : {
1987 : 107155 : if (TREE_CODE (ce->index) == FIELD_DECL)
1988 : : ;
1989 : 0 : else if (identifier_p (ce->index))
1990 : : {
1991 : : /* This can happen within a cast, see g++.dg/opt/cse2.C. */
1992 : 0 : tree name = ce->index;
1993 : 0 : tree field;
1994 : 0 : for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1995 : 0 : if (DECL_NAME (field) == name)
1996 : : break;
1997 : 0 : if (!field)
1998 : : {
1999 : 0 : if (complain & tf_error)
2000 : 0 : error ("no field %qD found in union being initialized",
2001 : : field);
2002 : 0 : ce->value = error_mark_node;
2003 : : }
2004 : 0 : ce->index = field;
2005 : : }
2006 : : else
2007 : : {
2008 : 0 : gcc_assert (TREE_CODE (ce->index) == INTEGER_CST
2009 : : || TREE_CODE (ce->index) == RANGE_EXPR);
2010 : 0 : if (complain & tf_error)
2011 : 0 : error ("index value instead of field name in union initializer");
2012 : 0 : ce->value = error_mark_node;
2013 : : }
2014 : : }
2015 : : else
2016 : : {
2017 : : /* Find the first named field. ANSI decided in September 1990
2018 : : that only named fields count here. */
2019 : 8 : tree field = TYPE_FIELDS (type);
2020 : 90 : while (field && (!DECL_NAME (field) || TREE_CODE (field) != FIELD_DECL))
2021 : 82 : field = TREE_CHAIN (field);
2022 : 8 : if (field == NULL_TREE)
2023 : : {
2024 : 1 : if (complain & tf_error)
2025 : 1 : error ("too many initializers for %qT", type);
2026 : 1 : ce->value = error_mark_node;
2027 : : }
2028 : 8 : ce->index = field;
2029 : : }
2030 : :
2031 : 107163 : if (ce->value && ce->value != error_mark_node)
2032 : 107162 : ce->value = massage_init_elt (TREE_TYPE (ce->index), ce->value, nested,
2033 : : flags, complain);
2034 : :
2035 : : /* Propagate CONSTRUCTOR_PLACEHOLDER_BOUNDARY to outer CONSTRUCTOR. */
2036 : 107163 : if (ce->value
2037 : 107163 : && TREE_CODE (ce->value) == CONSTRUCTOR
2038 : 174539 : && CONSTRUCTOR_PLACEHOLDER_BOUNDARY (ce->value))
2039 : : {
2040 : 0 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = 1;
2041 : 0 : CONSTRUCTOR_PLACEHOLDER_BOUNDARY (ce->value) = 0;
2042 : : }
2043 : 107163 : return picflag_from_initializer (ce->value);
2044 : : }
2045 : :
2046 : : /* Process INIT, a constructor for a variable of aggregate type TYPE. The
2047 : : constructor is a brace-enclosed initializer, and will be modified in-place.
2048 : :
2049 : : Each element is converted to the right type through digest_init, and
2050 : : missing initializers are added following the language rules (zero-padding,
2051 : : etc.).
2052 : :
2053 : : After the execution, the initializer will have TREE_CONSTANT if all elts are
2054 : : constant, and TREE_STATIC set if, in addition, all elts are simple enough
2055 : : constants that the assembler and linker can compute them.
2056 : :
2057 : : The function returns the initializer itself, or error_mark_node in case
2058 : : of error. */
2059 : :
2060 : : static tree
2061 : 6987760 : process_init_constructor (tree type, tree init, int nested, int flags,
2062 : : tsubst_flags_t complain)
2063 : : {
2064 : 6987760 : int picflags;
2065 : :
2066 : 6987760 : gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
2067 : :
2068 : 6987760 : if (TREE_CODE (type) == ARRAY_TYPE || VECTOR_TYPE_P (type))
2069 : 328061 : picflags = process_init_constructor_array (type, init, nested, flags,
2070 : : complain);
2071 : 6659699 : else if (TREE_CODE (type) == RECORD_TYPE)
2072 : 6543004 : picflags = process_init_constructor_record (type, init, nested, flags,
2073 : : complain);
2074 : 116695 : else if (TREE_CODE (type) == UNION_TYPE)
2075 : 116695 : picflags = process_init_constructor_union (type, init, nested, flags,
2076 : : complain);
2077 : : else
2078 : 0 : gcc_unreachable ();
2079 : :
2080 : 6987760 : if (picflags & PICFLAG_ERRONEOUS)
2081 : 1016 : return error_mark_node;
2082 : :
2083 : 6986744 : TREE_TYPE (init) = type;
2084 : 6986744 : if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == NULL_TREE)
2085 : 288 : cp_complete_array_type (&TREE_TYPE (init), init, /*do_default=*/0);
2086 : 6986744 : if (picflags & PICFLAG_SIDE_EFFECTS)
2087 : : {
2088 : 50370 : TREE_CONSTANT (init) = false;
2089 : 50370 : TREE_SIDE_EFFECTS (init) = true;
2090 : : }
2091 : 6936374 : else if (picflags & PICFLAG_NOT_ALL_CONSTANT)
2092 : : {
2093 : : /* Make sure TREE_CONSTANT isn't set from build_constructor. */
2094 : 682713 : TREE_CONSTANT (init) = false;
2095 : 682713 : TREE_SIDE_EFFECTS (init) = false;
2096 : : }
2097 : : else
2098 : : {
2099 : 6253661 : TREE_CONSTANT (init) = 1;
2100 : 6253661 : TREE_SIDE_EFFECTS (init) = false;
2101 : 6253661 : if (!(picflags & PICFLAG_NOT_ALL_SIMPLE))
2102 : 6241458 : TREE_STATIC (init) = 1;
2103 : : }
2104 : 6986744 : if (picflags & PICFLAG_VEC_INIT)
2105 : : {
2106 : : /* Defer default-initialization of array elements with no corresponding
2107 : : initializer-clause until later so we can use a loop. */
2108 : 130 : TREE_TYPE (init) = init_list_type_node;
2109 : 130 : init = build_vec_init_expr (type, init, complain);
2110 : 130 : init = get_target_expr (init);
2111 : : }
2112 : : return init;
2113 : : }
2114 : :
2115 : : /* Given a structure or union value DATUM, construct and return
2116 : : the structure or union component which results from narrowing
2117 : : that value to the base specified in BASETYPE. For example, given the
2118 : : hierarchy
2119 : :
2120 : : class L { int ii; };
2121 : : class A : L { ... };
2122 : : class B : L { ... };
2123 : : class C : A, B { ... };
2124 : :
2125 : : and the declaration
2126 : :
2127 : : C x;
2128 : :
2129 : : then the expression
2130 : :
2131 : : x.A::ii refers to the ii member of the L part of
2132 : : the A part of the C object named by X. In this case,
2133 : : DATUM would be x, and BASETYPE would be A.
2134 : :
2135 : : I used to think that this was nonconformant, that the standard specified
2136 : : that first we look up ii in A, then convert x to an L& and pull out the
2137 : : ii part. But in fact, it does say that we convert x to an A&; A here
2138 : : is known as the "naming class". (jason 2000-12-19)
2139 : :
2140 : : BINFO_P points to a variable initialized either to NULL_TREE or to the
2141 : : binfo for the specific base subobject we want to convert to. */
2142 : :
2143 : : tree
2144 : 13665 : build_scoped_ref (tree datum, tree basetype, tree* binfo_p)
2145 : : {
2146 : 13665 : tree binfo;
2147 : :
2148 : 13665 : if (datum == error_mark_node)
2149 : : return error_mark_node;
2150 : 13665 : if (*binfo_p)
2151 : : binfo = *binfo_p;
2152 : : else
2153 : 13665 : binfo = lookup_base (TREE_TYPE (datum), basetype, ba_check,
2154 : : NULL, tf_warning_or_error);
2155 : :
2156 : 13665 : if (!binfo || binfo == error_mark_node)
2157 : : {
2158 : 6 : *binfo_p = NULL_TREE;
2159 : 6 : if (!binfo)
2160 : 0 : error_not_base_type (basetype, TREE_TYPE (datum));
2161 : 6 : return error_mark_node;
2162 : : }
2163 : :
2164 : 13659 : *binfo_p = binfo;
2165 : 13659 : return build_base_path (PLUS_EXPR, datum, binfo, 1,
2166 : 13659 : tf_warning_or_error);
2167 : : }
2168 : :
2169 : : /* Build a reference to an object specified by the C++ `->' operator.
2170 : : Usually this just involves dereferencing the object, but if the
2171 : : `->' operator is overloaded, then such overloads must be
2172 : : performed until an object which does not have the `->' operator
2173 : : overloaded is found. An error is reported when circular pointer
2174 : : delegation is detected. */
2175 : :
2176 : : tree
2177 : 32597225 : build_x_arrow (location_t loc, tree expr, tsubst_flags_t complain)
2178 : : {
2179 : 32597225 : tree orig_expr = expr;
2180 : 32597225 : tree type = TREE_TYPE (expr);
2181 : 32597225 : tree last_rval = NULL_TREE;
2182 : 32597225 : vec<tree, va_gc> *types_memoized = NULL;
2183 : :
2184 : 32597225 : if (type == error_mark_node)
2185 : : return error_mark_node;
2186 : :
2187 : 32597171 : if (processing_template_decl)
2188 : : {
2189 : 28738310 : tree ttype = NULL_TREE;
2190 : 28738310 : if (type && TYPE_PTR_P (type))
2191 : 26084451 : ttype = TREE_TYPE (type);
2192 : 26084451 : if (ttype && !dependent_scope_p (ttype))
2193 : : /* Pointer to current instantiation, don't treat as dependent. */;
2194 : 7046909 : else if (type_dependent_expression_p (expr))
2195 : : {
2196 : 6974963 : expr = build_min_nt_loc (loc, ARROW_EXPR, expr);
2197 : 6974963 : TREE_TYPE (expr) = ttype;
2198 : 6974963 : return expr;
2199 : : }
2200 : : }
2201 : :
2202 : 25622208 : if (MAYBE_CLASS_TYPE_P (type))
2203 : : {
2204 : 179047 : struct tinst_level *actual_inst = current_instantiation ();
2205 : 179047 : tree fn = NULL;
2206 : :
2207 : 360776 : while ((expr = build_new_op (loc, COMPONENT_REF,
2208 : : LOOKUP_NORMAL, expr, NULL_TREE, NULL_TREE,
2209 : : NULL_TREE, &fn, complain)))
2210 : : {
2211 : 181745 : if (expr == error_mark_node)
2212 : 22 : return error_mark_node;
2213 : :
2214 : : /* This provides a better instantiation backtrace in case of
2215 : : error. */
2216 : 181729 : if (fn && DECL_USE_TEMPLATE (fn))
2217 : 151093 : push_tinst_level_loc (fn,
2218 : 148390 : (current_instantiation () != actual_inst)
2219 : 2703 : ? DECL_SOURCE_LOCATION (fn)
2220 : : : input_location);
2221 : 181729 : fn = NULL;
2222 : :
2223 : 181729 : if (vec_member (TREE_TYPE (expr), types_memoized))
2224 : : {
2225 : 0 : if (complain & tf_error)
2226 : 0 : error ("circular pointer delegation detected");
2227 : 0 : return error_mark_node;
2228 : : }
2229 : :
2230 : 181729 : vec_safe_push (types_memoized, TREE_TYPE (expr));
2231 : 181729 : last_rval = expr;
2232 : : }
2233 : :
2234 : 324718 : while (current_instantiation () != actual_inst)
2235 : 145690 : pop_tinst_level ();
2236 : :
2237 : 179028 : if (last_rval == NULL_TREE)
2238 : : {
2239 : 6 : if (complain & tf_error)
2240 : 6 : error ("base operand of %<->%> has non-pointer type %qT", type);
2241 : 6 : return error_mark_node;
2242 : : }
2243 : :
2244 : 179022 : if (TYPE_REF_P (TREE_TYPE (last_rval)))
2245 : 0 : last_rval = convert_from_reference (last_rval);
2246 : : }
2247 : : else
2248 : : {
2249 : 25443161 : last_rval = decay_conversion (expr, complain);
2250 : 25443161 : if (last_rval == error_mark_node)
2251 : : return error_mark_node;
2252 : : }
2253 : :
2254 : 25622180 : if (TYPE_PTR_P (TREE_TYPE (last_rval)))
2255 : : {
2256 : 25622177 : if (processing_template_decl)
2257 : : {
2258 : 21763344 : expr = build_min (ARROW_EXPR, TREE_TYPE (TREE_TYPE (last_rval)),
2259 : : orig_expr);
2260 : 21763344 : TREE_SIDE_EFFECTS (expr) = TREE_SIDE_EFFECTS (last_rval);
2261 : 21763344 : return expr;
2262 : : }
2263 : :
2264 : 3858833 : return cp_build_indirect_ref (loc, last_rval, RO_ARROW, complain);
2265 : : }
2266 : :
2267 : 3 : if (complain & tf_error)
2268 : : {
2269 : 3 : if (types_memoized)
2270 : 0 : error ("result of %<operator->()%> yields non-pointer result");
2271 : : else
2272 : 3 : error ("base operand of %<->%> is not a pointer");
2273 : : }
2274 : 3 : return error_mark_node;
2275 : : }
2276 : :
2277 : : /* Return an expression for "DATUM .* COMPONENT". DATUM has not
2278 : : already been checked out to be of aggregate type. */
2279 : :
2280 : : tree
2281 : 107006 : build_m_component_ref (tree datum, tree component, tsubst_flags_t complain)
2282 : : {
2283 : 107006 : tree ptrmem_type;
2284 : 107006 : tree objtype;
2285 : 107006 : tree type;
2286 : 107006 : tree binfo;
2287 : 107006 : tree ctype;
2288 : :
2289 : 107006 : datum = mark_lvalue_use (datum);
2290 : 107006 : component = mark_rvalue_use (component);
2291 : :
2292 : 107006 : if (error_operand_p (datum) || error_operand_p (component))
2293 : 79 : return error_mark_node;
2294 : :
2295 : 106927 : ptrmem_type = TREE_TYPE (component);
2296 : 106927 : if (!TYPE_PTRMEM_P (ptrmem_type))
2297 : : {
2298 : 6 : if (complain & tf_error)
2299 : 3 : error ("%qE cannot be used as a member pointer, since it is of "
2300 : : "type %qT", component, ptrmem_type);
2301 : 6 : return error_mark_node;
2302 : : }
2303 : :
2304 : 106921 : objtype = TYPE_MAIN_VARIANT (TREE_TYPE (datum));
2305 : 106921 : if (! MAYBE_CLASS_TYPE_P (objtype))
2306 : : {
2307 : 12 : if (complain & tf_error)
2308 : 0 : error ("cannot apply member pointer %qE to %qE, which is of "
2309 : : "non-class type %qT", component, datum, objtype);
2310 : 12 : return error_mark_node;
2311 : : }
2312 : :
2313 : 106909 : type = TYPE_PTRMEM_POINTED_TO_TYPE (ptrmem_type);
2314 : 106909 : ctype = complete_type (TYPE_PTRMEM_CLASS_TYPE (ptrmem_type));
2315 : :
2316 : 106909 : if (!COMPLETE_TYPE_P (ctype))
2317 : : {
2318 : 91 : if (!same_type_p (ctype, objtype))
2319 : 0 : goto mismatch;
2320 : : binfo = NULL;
2321 : : }
2322 : : else
2323 : : {
2324 : 106818 : binfo = lookup_base (objtype, ctype, ba_check, NULL, complain);
2325 : :
2326 : 106818 : if (!binfo)
2327 : : {
2328 : 30 : mismatch:
2329 : 30 : if (complain & tf_error)
2330 : 0 : error ("pointer to member type %qT incompatible with object "
2331 : : "type %qT", type, objtype);
2332 : 30 : return error_mark_node;
2333 : : }
2334 : 106788 : else if (binfo == error_mark_node)
2335 : : return error_mark_node;
2336 : : }
2337 : :
2338 : 106870 : if (TYPE_PTRDATAMEM_P (ptrmem_type))
2339 : : {
2340 : 1479 : bool is_lval = real_lvalue_p (datum);
2341 : 1479 : tree ptype;
2342 : :
2343 : : /* Compute the type of the field, as described in [expr.ref].
2344 : : There's no such thing as a mutable pointer-to-member, so
2345 : : things are not as complex as they are for references to
2346 : : non-static data members. */
2347 : 1479 : type = cp_build_qualified_type (type,
2348 : 1479 : (cp_type_quals (type)
2349 : 1479 : | cp_type_quals (TREE_TYPE (datum))));
2350 : :
2351 : 1479 : datum = build_address (datum);
2352 : :
2353 : : /* Convert object to the correct base. */
2354 : 1479 : if (binfo)
2355 : : {
2356 : 1446 : datum = build_base_path (PLUS_EXPR, datum, binfo, 1, complain);
2357 : 1446 : if (datum == error_mark_node)
2358 : : return error_mark_node;
2359 : : }
2360 : :
2361 : : /* Build an expression for "object + offset" where offset is the
2362 : : value stored in the pointer-to-data-member. */
2363 : 1479 : ptype = build_pointer_type (type);
2364 : 1479 : datum = convert (ptype, datum);
2365 : 1479 : if (!processing_template_decl)
2366 : 1458 : datum = build2 (POINTER_PLUS_EXPR, ptype,
2367 : : datum, convert_to_ptrofftype (component));
2368 : 1479 : datum = cp_fully_fold (datum);
2369 : 1479 : datum = cp_build_fold_indirect_ref (datum);
2370 : 1479 : if (datum == error_mark_node)
2371 : : return error_mark_node;
2372 : :
2373 : : /* If the object expression was an rvalue, return an rvalue. */
2374 : 1479 : if (!is_lval)
2375 : 115 : datum = move (datum);
2376 : 1479 : return datum;
2377 : : }
2378 : : else
2379 : : {
2380 : : /* 5.5/6: In a .* expression whose object expression is an rvalue, the
2381 : : program is ill-formed if the second operand is a pointer to member
2382 : : function with ref-qualifier & (for C++20: unless its cv-qualifier-seq
2383 : : is const). In a .* expression whose object expression is an lvalue,
2384 : : the program is ill-formed if the second operand is a pointer to member
2385 : : function with ref-qualifier &&. */
2386 : 105391 : if (FUNCTION_REF_QUALIFIED (type))
2387 : : {
2388 : 116 : bool lval = lvalue_p (datum);
2389 : 116 : if (lval && FUNCTION_RVALUE_QUALIFIED (type))
2390 : : {
2391 : 9 : if (complain & tf_error)
2392 : 6 : error ("pointer-to-member-function type %qT requires an rvalue",
2393 : : ptrmem_type);
2394 : 9 : return error_mark_node;
2395 : : }
2396 : 107 : else if (!lval && !FUNCTION_RVALUE_QUALIFIED (type))
2397 : : {
2398 : 33 : if ((type_memfn_quals (type)
2399 : 33 : & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE))
2400 : : != TYPE_QUAL_CONST)
2401 : : {
2402 : 27 : if (complain & tf_error)
2403 : 24 : error ("pointer-to-member-function type %qT requires "
2404 : : "an lvalue", ptrmem_type);
2405 : 27 : return error_mark_node;
2406 : : }
2407 : 6 : else if (cxx_dialect < cxx20)
2408 : : {
2409 : 4 : if (complain & tf_warning_or_error)
2410 : 4 : pedwarn (input_location, OPT_Wpedantic,
2411 : : "pointer-to-member-function type %qT requires "
2412 : : "an lvalue before C++20", ptrmem_type);
2413 : : else
2414 : 0 : return error_mark_node;
2415 : : }
2416 : : }
2417 : : }
2418 : 105355 : return build2 (OFFSET_REF, type, datum, component);
2419 : : }
2420 : : }
2421 : :
2422 : : /* Return a tree node for the expression TYPENAME '(' PARMS ')'. */
2423 : :
2424 : : static tree
2425 : 63084036 : build_functional_cast_1 (location_t loc, tree exp, tree parms,
2426 : : tsubst_flags_t complain)
2427 : : {
2428 : : /* This is either a call to a constructor,
2429 : : or a C cast in C++'s `functional' notation. */
2430 : :
2431 : : /* The type to which we are casting. */
2432 : 63084036 : tree type;
2433 : :
2434 : 63084036 : if (error_operand_p (exp) || parms == error_mark_node)
2435 : 1367 : return error_mark_node;
2436 : :
2437 : 63082669 : if (TREE_CODE (exp) == TYPE_DECL)
2438 : : {
2439 : 35883610 : type = TREE_TYPE (exp);
2440 : :
2441 : 35883610 : if (DECL_ARTIFICIAL (exp))
2442 : 24113621 : cp_handle_deprecated_or_unavailable (type);
2443 : : }
2444 : : else
2445 : : type = exp;
2446 : :
2447 : : /* We need to check this explicitly, since value-initialization of
2448 : : arrays is allowed in other situations. */
2449 : 63082669 : if (TREE_CODE (type) == ARRAY_TYPE)
2450 : : {
2451 : 12 : if (complain & tf_error)
2452 : 6 : error_at (loc, "functional cast to array type %qT", type);
2453 : 12 : return error_mark_node;
2454 : : }
2455 : :
2456 : 63082657 : if (tree anode = type_uses_auto (type))
2457 : : {
2458 : 153414 : tree init;
2459 : 153414 : if (CLASS_PLACEHOLDER_TEMPLATE (anode))
2460 : : init = parms;
2461 : : /* C++23 auto(x). */
2462 : 5570 : else if (!AUTO_IS_DECLTYPE (anode)
2463 : 5570 : && list_length (parms) == 1)
2464 : : {
2465 : 5559 : init = TREE_VALUE (parms);
2466 : 5559 : if (is_constrained_auto (anode))
2467 : : {
2468 : 2 : if (complain & tf_error)
2469 : 2 : error_at (loc, "%<auto(x)%> cannot be constrained");
2470 : 2 : return error_mark_node;
2471 : : }
2472 : 5557 : else if (cxx_dialect < cxx23)
2473 : 18 : pedwarn (loc, OPT_Wc__23_extensions,
2474 : : "%<auto(x)%> only available with "
2475 : : "%<-std=c++2b%> or %<-std=gnu++2b%>");
2476 : : }
2477 : : else
2478 : : {
2479 : 11 : if (complain & tf_error)
2480 : 11 : error_at (loc, "invalid use of %qT", anode);
2481 : 11 : return error_mark_node;
2482 : : }
2483 : 153401 : type = do_auto_deduction (type, init, anode, complain,
2484 : : adc_variable_type);
2485 : 153401 : if (type == error_mark_node)
2486 : : return error_mark_node;
2487 : : }
2488 : :
2489 : 63082548 : if (processing_template_decl)
2490 : : {
2491 : 34226398 : tree t;
2492 : :
2493 : : /* Diagnose this even in a template. We could also try harder
2494 : : to give all the usual errors when the type and args are
2495 : : non-dependent... */
2496 : 34226398 : if (TYPE_REF_P (type) && !parms)
2497 : : {
2498 : 3 : if (complain & tf_error)
2499 : 3 : error_at (loc, "invalid value-initialization of reference type");
2500 : 3 : return error_mark_node;
2501 : : }
2502 : :
2503 : 34226395 : t = build_min (CAST_EXPR, type, parms);
2504 : : /* We don't know if it will or will not have side effects. */
2505 : 34226395 : TREE_SIDE_EFFECTS (t) = 1;
2506 : 34226395 : return t;
2507 : : }
2508 : :
2509 : 28856150 : if (! MAYBE_CLASS_TYPE_P (type))
2510 : : {
2511 : 26431172 : if (parms == NULL_TREE)
2512 : : {
2513 : 468903 : if (VOID_TYPE_P (type))
2514 : 4033 : return void_node;
2515 : 464870 : return build_value_init (cv_unqualified (type), complain);
2516 : : }
2517 : :
2518 : : /* This must build a C cast. */
2519 : 25962269 : parms = build_x_compound_expr_from_list (parms, ELK_FUNC_CAST, complain);
2520 : 25962269 : return cp_build_c_cast (loc, type, parms, complain);
2521 : : }
2522 : :
2523 : : /* Prepare to evaluate as a call to a constructor. If this expression
2524 : : is actually used, for example,
2525 : :
2526 : : return X (arg1, arg2, ...);
2527 : :
2528 : : then the slot being initialized will be filled in. */
2529 : :
2530 : 2424978 : if (!complete_type_or_maybe_complain (type, NULL_TREE, complain))
2531 : 18 : return error_mark_node;
2532 : 2424957 : if (abstract_virtuals_error (ACU_CAST, type, complain))
2533 : 15 : return error_mark_node;
2534 : :
2535 : : /* [expr.type.conv]
2536 : :
2537 : : If the expression list is a single-expression, the type
2538 : : conversion is equivalent (in definedness, and if defined in
2539 : : meaning) to the corresponding cast expression. */
2540 : 2424942 : if (parms && TREE_CHAIN (parms) == NULL_TREE)
2541 : 1219326 : return cp_build_c_cast (loc, type, TREE_VALUE (parms), complain);
2542 : :
2543 : : /* [expr.type.conv]
2544 : :
2545 : : The expression T(), where T is a simple-type-specifier for a
2546 : : non-array complete object type or the (possibly cv-qualified)
2547 : : void type, creates an rvalue of the specified type, which is
2548 : : value-initialized. */
2549 : :
2550 : 1205616 : if (parms == NULL_TREE)
2551 : : {
2552 : 871067 : exp = build_value_init (type, complain);
2553 : 871067 : exp = get_target_expr (exp, complain);
2554 : 871067 : return exp;
2555 : : }
2556 : :
2557 : : /* Call the constructor. */
2558 : 334549 : releasing_vec parmvec;
2559 : 1038750 : for (; parms != NULL_TREE; parms = TREE_CHAIN (parms))
2560 : 704201 : vec_safe_push (parmvec, TREE_VALUE (parms));
2561 : 334549 : exp = build_special_member_call (NULL_TREE, complete_ctor_identifier,
2562 : : &parmvec, type, LOOKUP_NORMAL, complain);
2563 : :
2564 : 334549 : if (exp == error_mark_node)
2565 : : return error_mark_node;
2566 : :
2567 : 334534 : return build_cplus_new (type, exp, complain);
2568 : 334549 : }
2569 : :
2570 : : tree
2571 : 63084036 : build_functional_cast (location_t loc, tree exp, tree parms,
2572 : : tsubst_flags_t complain)
2573 : : {
2574 : 63084036 : tree result = build_functional_cast_1 (loc, exp, parms, complain);
2575 : 63084033 : protected_set_expr_location (result, loc);
2576 : 63084033 : return result;
2577 : : }
2578 : :
2579 : :
2580 : : /* Add new exception specifier SPEC, to the LIST we currently have.
2581 : : If it's already in LIST then do nothing.
2582 : : Moan if it's bad and we're allowed to. COMPLAIN < 0 means we
2583 : : know what we're doing. */
2584 : :
2585 : : tree
2586 : 14959 : add_exception_specifier (tree list, tree spec, tsubst_flags_t complain)
2587 : : {
2588 : 14959 : bool ok;
2589 : 14959 : tree core = spec;
2590 : 14959 : bool is_ptr;
2591 : 14959 : diagnostic_t diag_type = DK_UNSPECIFIED; /* none */
2592 : :
2593 : 14959 : if (spec == error_mark_node)
2594 : : return list;
2595 : :
2596 : 14984 : gcc_assert (spec && (!list || TREE_VALUE (list)));
2597 : :
2598 : : /* [except.spec] 1, type in an exception specifier shall not be
2599 : : incomplete, or pointer or ref to incomplete other than pointer
2600 : : to cv void. */
2601 : 14945 : is_ptr = TYPE_PTR_P (core);
2602 : 14945 : if (is_ptr || TYPE_REF_P (core))
2603 : 19 : core = TREE_TYPE (core);
2604 : 14945 : if (complain < 0)
2605 : : ok = true;
2606 : 1356 : else if (VOID_TYPE_P (core))
2607 : : ok = is_ptr;
2608 : 1348 : else if (TREE_CODE (core) == TEMPLATE_TYPE_PARM)
2609 : : ok = true;
2610 : 1338 : else if (processing_template_decl)
2611 : : ok = true;
2612 : 1301 : else if (!verify_type_context (input_location, TCTX_EXCEPTIONS, core,
2613 : 1301 : !(complain & tf_error)))
2614 : 0 : return error_mark_node;
2615 : : else
2616 : : {
2617 : 1301 : ok = true;
2618 : : /* 15.4/1 says that types in an exception specifier must be complete,
2619 : : but it seems more reasonable to only require this on definitions
2620 : : and calls. So just give a pedwarn at this point; we will give an
2621 : : error later if we hit one of those two cases. */
2622 : 1301 : if (!COMPLETE_TYPE_P (complete_type (core)))
2623 : 14945 : diag_type = DK_PEDWARN; /* pedwarn */
2624 : : }
2625 : :
2626 : 14945 : if (ok)
2627 : : {
2628 : : tree probe;
2629 : :
2630 : 14984 : for (probe = list; probe; probe = TREE_CHAIN (probe))
2631 : 47 : if (same_type_p (TREE_VALUE (probe), spec))
2632 : : break;
2633 : 14939 : if (!probe)
2634 : 14937 : list = tree_cons (NULL_TREE, spec, list);
2635 : : }
2636 : : else
2637 : : diag_type = DK_ERROR; /* error */
2638 : :
2639 : 14939 : if (diag_type != DK_UNSPECIFIED
2640 : 12 : && (complain & tf_warning_or_error))
2641 : 10 : cxx_incomplete_type_diagnostic (NULL_TREE, core, diag_type);
2642 : :
2643 : : return list;
2644 : : }
2645 : :
2646 : : /* Like nothrow_spec_p, but don't abort on deferred noexcept. */
2647 : :
2648 : : static bool
2649 : 3813939 : nothrow_spec_p_uninst (const_tree spec)
2650 : : {
2651 : 7627878 : if (DEFERRED_NOEXCEPT_SPEC_P (spec))
2652 : : return false;
2653 : 3813937 : return nothrow_spec_p (spec);
2654 : : }
2655 : :
2656 : : /* Combine the two exceptions specifier lists LIST and ADD, and return
2657 : : their union. */
2658 : :
2659 : : tree
2660 : 11261867 : merge_exception_specifiers (tree list, tree add)
2661 : : {
2662 : 11261867 : tree noex, orig_list;
2663 : :
2664 : 11261867 : if (list == error_mark_node || add == error_mark_node)
2665 : : return error_mark_node;
2666 : :
2667 : : /* No exception-specifier or noexcept(false) are less strict than
2668 : : anything else. Prefer the newer variant (LIST). */
2669 : 11261867 : if (!list || list == noexcept_false_spec)
2670 : : return list;
2671 : 3875464 : else if (!add || add == noexcept_false_spec)
2672 : : return add;
2673 : :
2674 : : /* noexcept(true) and throw() are stricter than anything else.
2675 : : As above, prefer the more recent one (LIST). */
2676 : 3775581 : if (nothrow_spec_p_uninst (add))
2677 : : return list;
2678 : :
2679 : : /* Two implicit noexcept specs (e.g. on a destructor) are equivalent. */
2680 : 38360 : if (UNEVALUATED_NOEXCEPT_SPEC_P (add)
2681 : 2 : && UNEVALUATED_NOEXCEPT_SPEC_P (list))
2682 : : return list;
2683 : : /* We should have instantiated other deferred noexcept specs by now. */
2684 : 38358 : gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (add));
2685 : :
2686 : 38358 : if (nothrow_spec_p_uninst (list))
2687 : : return add;
2688 : 38355 : noex = TREE_PURPOSE (list);
2689 : 38355 : gcc_checking_assert (!TREE_PURPOSE (add)
2690 : : || errorcount || !flag_exceptions
2691 : : || cp_tree_equal (noex, TREE_PURPOSE (add)));
2692 : :
2693 : : /* Combine the dynamic-exception-specifiers, if any. */
2694 : : orig_list = list;
2695 : 76745 : for (; add && TREE_VALUE (add); add = TREE_CHAIN (add))
2696 : : {
2697 : 40 : tree spec = TREE_VALUE (add);
2698 : : tree probe;
2699 : :
2700 : 74 : for (probe = orig_list; probe && TREE_VALUE (probe);
2701 : 12 : probe = TREE_CHAIN (probe))
2702 : 34 : if (same_type_p (TREE_VALUE (probe), spec))
2703 : : break;
2704 : 28 : if (!probe)
2705 : : {
2706 : 6 : spec = build_tree_list (NULL_TREE, spec);
2707 : 6 : TREE_CHAIN (spec) = list;
2708 : 6 : list = spec;
2709 : : }
2710 : : }
2711 : :
2712 : : /* Keep the noexcept-specifier at the beginning of the list. */
2713 : 38355 : if (noex != TREE_PURPOSE (list))
2714 : 0 : list = tree_cons (noex, TREE_VALUE (list), TREE_CHAIN (list));
2715 : :
2716 : : return list;
2717 : : }
2718 : :
2719 : : /* Subroutine of build_call. Ensure that each of the types in the
2720 : : exception specification is complete. Technically, 15.4/1 says that
2721 : : they need to be complete when we see a declaration of the function,
2722 : : but we should be able to get away with only requiring this when the
2723 : : function is defined or called. See also add_exception_specifier. */
2724 : :
2725 : : void
2726 : 106394097 : require_complete_eh_spec_types (tree fntype, tree decl)
2727 : : {
2728 : 106394097 : tree raises;
2729 : : /* Don't complain about calls to op new. */
2730 : 106394097 : if (decl && DECL_ARTIFICIAL (decl))
2731 : : return;
2732 : 145775683 : for (raises = TYPE_RAISES_EXCEPTIONS (fntype); raises;
2733 : 49329200 : raises = TREE_CHAIN (raises))
2734 : : {
2735 : 49329200 : tree type = TREE_VALUE (raises);
2736 : 49329200 : if (type && !COMPLETE_TYPE_P (type))
2737 : : {
2738 : 1 : if (decl)
2739 : 1 : error
2740 : 1 : ("call to function %qD which throws incomplete type %q#T",
2741 : : decl, type);
2742 : : else
2743 : 0 : error ("call to function which throws incomplete type %q#T",
2744 : : decl);
2745 : : }
2746 : : }
2747 : : }
2748 : :
2749 : : /* Record that any TARGET_EXPR in T are going to be elided in
2750 : : cp_gimplify_init_expr (or sooner). */
2751 : :
2752 : : void
2753 : 91719409 : set_target_expr_eliding (tree t)
2754 : : {
2755 : 93462754 : if (!t)
2756 : : return;
2757 : 92827924 : switch (TREE_CODE (t))
2758 : : {
2759 : 8221677 : case TARGET_EXPR:
2760 : 8221677 : TARGET_EXPR_ELIDING_P (t) = true;
2761 : 8221677 : break;
2762 : 805144 : case COMPOUND_EXPR:
2763 : 805144 : set_target_expr_eliding (TREE_OPERAND (t, 1));
2764 : 805144 : break;
2765 : 938201 : case COND_EXPR:
2766 : 938201 : set_target_expr_eliding (TREE_OPERAND (t, 1));
2767 : 938201 : set_target_expr_eliding (TREE_OPERAND (t, 2));
2768 : 938201 : break;
2769 : :
2770 : : default:
2771 : : break;
2772 : : }
2773 : : }
2774 : :
2775 : : /* Call the above in the process of building an INIT_EXPR. */
2776 : :
2777 : : tree
2778 : 48331963 : cp_build_init_expr (location_t loc, tree target, tree init)
2779 : : {
2780 : 48331963 : set_target_expr_eliding (init);
2781 : 48331963 : tree ie = build2_loc (loc, INIT_EXPR, TREE_TYPE (target),
2782 : : target, init);
2783 : 48331963 : TREE_SIDE_EFFECTS (ie) = true;
2784 : 48331963 : return ie;
2785 : : }
|