C++: fix-it hint for missing parentheses
[gcc.git] / gcc / cp / typeck2.c
1 /* Report error messages, build initializers, and perform
2 some front-end optimizations for C++ compiler.
3 Copyright (C) 1987-2018 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
37 static tree
38 process_init_constructor (tree type, tree init, int nested,
39 tsubst_flags_t complain);
40
41
42 /* Print an error message stemming from an attempt to use
43 BASETYPE as a base class for TYPE. */
44
45 tree
46 error_not_base_type (tree basetype, tree type)
47 {
48 if (TREE_CODE (basetype) == FUNCTION_DECL)
49 basetype = DECL_CONTEXT (basetype);
50 error ("type %qT is not a base type for type %qT", basetype, type);
51 return error_mark_node;
52 }
53
54 tree
55 binfo_or_else (tree base, tree type)
56 {
57 tree binfo = lookup_base (type, base, ba_unique,
58 NULL, tf_warning_or_error);
59
60 if (binfo == error_mark_node)
61 return NULL_TREE;
62 else if (!binfo)
63 error_not_base_type (base, type);
64 return binfo;
65 }
66
67 /* According to ARM $7.1.6, "A `const' object may be initialized, but its
68 value may not be changed thereafter. */
69
70 void
71 cxx_readonly_error (location_t loc, tree arg, enum lvalue_use errstring)
72 {
73
74 /* This macro is used to emit diagnostics to ensure that all format
75 strings are complete sentences, visible to gettext and checked at
76 compile time. */
77
78 #define ERROR_FOR_ASSIGNMENT(LOC, AS, ASM, IN, DE, ARG) \
79 do { \
80 switch (errstring) \
81 { \
82 case lv_assign: \
83 error_at (LOC, AS, ARG); \
84 break; \
85 case lv_asm: \
86 error_at (LOC, ASM, ARG); \
87 break; \
88 case lv_increment: \
89 error_at (LOC, IN, ARG); \
90 break; \
91 case lv_decrement: \
92 error_at (LOC, DE, ARG); \
93 break; \
94 default: \
95 gcc_unreachable (); \
96 } \
97 } while (0)
98
99 /* Handle C++-specific things first. */
100
101 if (VAR_P (arg)
102 && DECL_LANG_SPECIFIC (arg)
103 && DECL_IN_AGGR_P (arg)
104 && !TREE_STATIC (arg))
105 ERROR_FOR_ASSIGNMENT (loc,
106 G_("assignment of constant field %qD"),
107 G_("constant field %qD used as %<asm%> output"),
108 G_("increment of constant field %qD"),
109 G_("decrement of constant field %qD"),
110 arg);
111 else if (INDIRECT_REF_P (arg)
112 && TYPE_REF_P (TREE_TYPE (TREE_OPERAND (arg, 0)))
113 && (VAR_P (TREE_OPERAND (arg, 0))
114 || TREE_CODE (TREE_OPERAND (arg, 0)) == PARM_DECL))
115 ERROR_FOR_ASSIGNMENT (loc,
116 G_("assignment of read-only reference %qD"),
117 G_("read-only reference %qD used as %<asm%> output"),
118 G_("increment of read-only reference %qD"),
119 G_("decrement of read-only reference %qD"),
120 TREE_OPERAND (arg, 0));
121 else
122 readonly_error (loc, arg, errstring);
123 }
124 \f
125 /* Structure that holds information about declarations whose type was
126 incomplete and we could not check whether it was abstract or not. */
127
128 struct GTY((chain_next ("%h.next"), for_user)) pending_abstract_type {
129 /* Declaration which we are checking for abstractness. It is either
130 a DECL node, or an IDENTIFIER_NODE if we do not have a full
131 declaration available. */
132 tree decl;
133
134 /* Type which will be checked for abstractness. */
135 tree type;
136
137 /* Kind of use in an unnamed declarator. */
138 enum abstract_class_use use;
139
140 /* Position of the declaration. This is only needed for IDENTIFIER_NODEs,
141 because DECLs already carry locus information. */
142 location_t locus;
143
144 /* Link to the next element in list. */
145 struct pending_abstract_type* next;
146 };
147
148 struct abstract_type_hasher : ggc_ptr_hash<pending_abstract_type>
149 {
150 typedef tree compare_type;
151 static hashval_t hash (pending_abstract_type *);
152 static bool equal (pending_abstract_type *, tree);
153 };
154
155 /* Compute the hash value of the node VAL. This function is used by the
156 hash table abstract_pending_vars. */
157
158 hashval_t
159 abstract_type_hasher::hash (pending_abstract_type *pat)
160 {
161 return (hashval_t) TYPE_UID (pat->type);
162 }
163
164
165 /* Compare node VAL1 with the type VAL2. This function is used by the
166 hash table abstract_pending_vars. */
167
168 bool
169 abstract_type_hasher::equal (pending_abstract_type *pat1, tree type2)
170 {
171 return (pat1->type == type2);
172 }
173
174 /* Hash table that maintains pending_abstract_type nodes, for which we still
175 need to check for type abstractness. The key of the table is the type
176 of the declaration. */
177 static GTY (()) hash_table<abstract_type_hasher> *abstract_pending_vars = NULL;
178
179 static int abstract_virtuals_error_sfinae (tree, tree, abstract_class_use, tsubst_flags_t);
180
181 /* This function is called after TYPE is completed, and will check if there
182 are pending declarations for which we still need to verify the abstractness
183 of TYPE, and emit a diagnostic (through abstract_virtuals_error) if TYPE
184 turned out to be incomplete. */
185
186 void
187 complete_type_check_abstract (tree type)
188 {
189 struct pending_abstract_type *pat;
190 location_t cur_loc = input_location;
191
192 gcc_assert (COMPLETE_TYPE_P (type));
193
194 if (!abstract_pending_vars)
195 return;
196
197 /* Retrieve the list of pending declarations for this type. */
198 pending_abstract_type **slot
199 = abstract_pending_vars->find_slot_with_hash (type, TYPE_UID (type),
200 NO_INSERT);
201 if (!slot)
202 return;
203 pat = *slot;
204 gcc_assert (pat);
205
206 /* If the type is not abstract, do not do anything. */
207 if (CLASSTYPE_PURE_VIRTUALS (type))
208 {
209 struct pending_abstract_type *prev = 0, *next;
210
211 /* Reverse the list to emit the errors in top-down order. */
212 for (; pat; pat = next)
213 {
214 next = pat->next;
215 pat->next = prev;
216 prev = pat;
217 }
218 pat = prev;
219
220 /* Go through the list, and call abstract_virtuals_error for each
221 element: it will issue a diagnostic if the type is abstract. */
222 while (pat)
223 {
224 gcc_assert (type == pat->type);
225
226 /* Tweak input_location so that the diagnostic appears at the correct
227 location. Notice that this is only needed if the decl is an
228 IDENTIFIER_NODE. */
229 input_location = pat->locus;
230 abstract_virtuals_error_sfinae (pat->decl, pat->type, pat->use,
231 tf_warning_or_error);
232 pat = pat->next;
233 }
234 }
235
236 abstract_pending_vars->clear_slot (slot);
237
238 input_location = cur_loc;
239 }
240
241
242 /* If TYPE has abstract virtual functions, issue an error about trying
243 to create an object of that type. DECL is the object declared, or
244 NULL_TREE if the declaration is unavailable, in which case USE specifies
245 the kind of invalid use. Returns 1 if an error occurred; zero if
246 all was well. */
247
248 static int
249 abstract_virtuals_error_sfinae (tree decl, tree type, abstract_class_use use,
250 tsubst_flags_t complain)
251 {
252 vec<tree, va_gc> *pure;
253
254 /* This function applies only to classes. Any other entity can never
255 be abstract. */
256 if (!CLASS_TYPE_P (type))
257 return 0;
258 type = TYPE_MAIN_VARIANT (type);
259
260 #if 0
261 /* Instantiation here seems to be required by the standard,
262 but breaks e.g. boost::bind. FIXME! */
263 /* In SFINAE, non-N3276 context, force instantiation. */
264 if (!(complain & (tf_error|tf_decltype)))
265 complete_type (type);
266 #endif
267
268 /* If the type is incomplete, we register it within a hash table,
269 so that we can check again once it is completed. This makes sense
270 only for objects for which we have a declaration or at least a
271 name. */
272 if (!COMPLETE_TYPE_P (type) && (complain & tf_error))
273 {
274 struct pending_abstract_type *pat;
275
276 gcc_assert (!decl || DECL_P (decl) || identifier_p (decl));
277
278 if (!abstract_pending_vars)
279 abstract_pending_vars
280 = hash_table<abstract_type_hasher>::create_ggc (31);
281
282 pending_abstract_type **slot
283 = abstract_pending_vars->find_slot_with_hash (type, TYPE_UID (type),
284 INSERT);
285
286 pat = ggc_alloc<pending_abstract_type> ();
287 pat->type = type;
288 pat->decl = decl;
289 pat->use = use;
290 pat->locus = ((decl && DECL_P (decl))
291 ? DECL_SOURCE_LOCATION (decl)
292 : input_location);
293
294 pat->next = *slot;
295 *slot = pat;
296
297 return 0;
298 }
299
300 if (!TYPE_SIZE (type))
301 /* TYPE is being defined, and during that time
302 CLASSTYPE_PURE_VIRTUALS holds the inline friends. */
303 return 0;
304
305 pure = CLASSTYPE_PURE_VIRTUALS (type);
306 if (!pure)
307 return 0;
308
309 if (!(complain & tf_error))
310 return 1;
311
312 auto_diagnostic_group d;
313 if (decl)
314 {
315 if (VAR_P (decl))
316 error ("cannot declare variable %q+D to be of abstract "
317 "type %qT", decl, type);
318 else if (TREE_CODE (decl) == PARM_DECL)
319 {
320 if (DECL_NAME (decl))
321 error ("cannot declare parameter %q+D to be of abstract type %qT",
322 decl, type);
323 else
324 error ("cannot declare parameter to be of abstract type %qT",
325 type);
326 }
327 else if (TREE_CODE (decl) == FIELD_DECL)
328 error ("cannot declare field %q+D to be of abstract type %qT",
329 decl, type);
330 else if (TREE_CODE (decl) == FUNCTION_DECL
331 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
332 error ("invalid abstract return type for member function %q+#D", decl);
333 else if (TREE_CODE (decl) == FUNCTION_DECL)
334 error ("invalid abstract return type for function %q+#D", decl);
335 else if (identifier_p (decl))
336 /* Here we do not have location information. */
337 error ("invalid abstract type %qT for %qE", type, decl);
338 else
339 error ("invalid abstract type for %q+D", decl);
340 }
341 else switch (use)
342 {
343 case ACU_ARRAY:
344 error ("creating array of %qT, which is an abstract class type", type);
345 break;
346 case ACU_CAST:
347 error ("invalid cast to abstract class type %qT", type);
348 break;
349 case ACU_NEW:
350 error ("invalid new-expression of abstract class type %qT", type);
351 break;
352 case ACU_RETURN:
353 error ("invalid abstract return type %qT", type);
354 break;
355 case ACU_PARM:
356 error ("invalid abstract parameter type %qT", type);
357 break;
358 case ACU_THROW:
359 error ("expression of abstract class type %qT cannot "
360 "be used in throw-expression", type);
361 break;
362 case ACU_CATCH:
363 error ("cannot declare catch parameter to be of abstract "
364 "class type %qT", type);
365 break;
366 default:
367 error ("cannot allocate an object of abstract type %qT", type);
368 }
369
370 /* Only go through this once. */
371 if (pure->length ())
372 {
373 unsigned ix;
374 tree fn;
375
376 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)),
377 " because the following virtual functions are pure within %qT:",
378 type);
379
380 FOR_EACH_VEC_ELT (*pure, ix, fn)
381 if (! DECL_CLONED_FUNCTION_P (fn)
382 || DECL_COMPLETE_DESTRUCTOR_P (fn))
383 inform (DECL_SOURCE_LOCATION (fn), "\t%#qD", fn);
384
385 /* Now truncate the vector. This leaves it non-null, so we know
386 there are pure virtuals, but empty so we don't list them out
387 again. */
388 pure->truncate (0);
389 }
390
391 return 1;
392 }
393
394 int
395 abstract_virtuals_error_sfinae (tree decl, tree type, tsubst_flags_t complain)
396 {
397 return abstract_virtuals_error_sfinae (decl, type, ACU_UNKNOWN, complain);
398 }
399
400 int
401 abstract_virtuals_error_sfinae (abstract_class_use use, tree type,
402 tsubst_flags_t complain)
403 {
404 return abstract_virtuals_error_sfinae (NULL_TREE, type, use, complain);
405 }
406
407
408 /* Wrapper for the above function in the common case of wanting errors. */
409
410 int
411 abstract_virtuals_error (tree decl, tree type)
412 {
413 return abstract_virtuals_error_sfinae (decl, type, tf_warning_or_error);
414 }
415
416 int
417 abstract_virtuals_error (abstract_class_use use, tree type)
418 {
419 return abstract_virtuals_error_sfinae (use, type, tf_warning_or_error);
420 }
421
422 /* Print an inform about the declaration of the incomplete type TYPE. */
423
424 void
425 cxx_incomplete_type_inform (const_tree type)
426 {
427 if (!TYPE_MAIN_DECL (type))
428 return;
429
430 location_t loc = DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type));
431 tree ptype = strip_top_quals (CONST_CAST_TREE (type));
432
433 if (current_class_type
434 && TYPE_BEING_DEFINED (current_class_type)
435 && same_type_p (ptype, current_class_type))
436 inform (loc, "definition of %q#T is not complete until "
437 "the closing brace", ptype);
438 else if (!TYPE_TEMPLATE_INFO (ptype))
439 inform (loc, "forward declaration of %q#T", ptype);
440 else
441 inform (loc, "declaration of %q#T", ptype);
442 }
443
444 /* Print an error message for invalid use of an incomplete type.
445 VALUE is the expression that was used (or 0 if that isn't known)
446 and TYPE is the type that was invalid. DIAG_KIND indicates the
447 type of diagnostic (see diagnostic.def). */
448
449 void
450 cxx_incomplete_type_diagnostic (location_t loc, const_tree value,
451 const_tree type, diagnostic_t diag_kind)
452 {
453 bool is_decl = false, complained = false;
454
455 gcc_assert (diag_kind == DK_WARNING
456 || diag_kind == DK_PEDWARN
457 || diag_kind == DK_ERROR);
458
459 /* Avoid duplicate error message. */
460 if (TREE_CODE (type) == ERROR_MARK)
461 return;
462
463 if (value != 0 && (VAR_P (value)
464 || TREE_CODE (value) == PARM_DECL
465 || TREE_CODE (value) == FIELD_DECL))
466 {
467 complained = emit_diagnostic (diag_kind, DECL_SOURCE_LOCATION (value), 0,
468 "%qD has incomplete type", value);
469 is_decl = true;
470 }
471 retry:
472 /* We must print an error message. Be clever about what it says. */
473
474 switch (TREE_CODE (type))
475 {
476 case RECORD_TYPE:
477 case UNION_TYPE:
478 case ENUMERAL_TYPE:
479 if (!is_decl)
480 complained = emit_diagnostic (diag_kind, loc, 0,
481 "invalid use of incomplete type %q#T",
482 type);
483 if (complained)
484 cxx_incomplete_type_inform (type);
485 break;
486
487 case VOID_TYPE:
488 emit_diagnostic (diag_kind, loc, 0,
489 "invalid use of %qT", type);
490 break;
491
492 case ARRAY_TYPE:
493 if (TYPE_DOMAIN (type))
494 {
495 type = TREE_TYPE (type);
496 goto retry;
497 }
498 emit_diagnostic (diag_kind, loc, 0,
499 "invalid use of array with unspecified bounds");
500 break;
501
502 case OFFSET_TYPE:
503 bad_member:
504 {
505 tree member = TREE_OPERAND (value, 1);
506 if (is_overloaded_fn (member))
507 member = get_first_fn (member);
508
509 if (DECL_FUNCTION_MEMBER_P (member)
510 && ! flag_ms_extensions)
511 {
512 gcc_rich_location richloc (loc);
513 /* If "member" has no arguments (other than "this"), then
514 add a fix-it hint. */
515 if (type_num_arguments (TREE_TYPE (member)) == 1)
516 richloc.add_fixit_insert_after ("()");
517 emit_diagnostic (diag_kind, &richloc, 0,
518 "invalid use of member function %qD "
519 "(did you forget the %<()%> ?)", member);
520 }
521 else
522 emit_diagnostic (diag_kind, loc, 0,
523 "invalid use of member %qD "
524 "(did you forget the %<&%> ?)", member);
525 }
526 break;
527
528 case TEMPLATE_TYPE_PARM:
529 if (is_auto (type))
530 {
531 if (CLASS_PLACEHOLDER_TEMPLATE (type))
532 emit_diagnostic (diag_kind, loc, 0,
533 "invalid use of placeholder %qT", type);
534 else
535 emit_diagnostic (diag_kind, loc, 0,
536 "invalid use of %qT", type);
537 }
538 else
539 emit_diagnostic (diag_kind, loc, 0,
540 "invalid use of template type parameter %qT", type);
541 break;
542
543 case BOUND_TEMPLATE_TEMPLATE_PARM:
544 emit_diagnostic (diag_kind, loc, 0,
545 "invalid use of template template parameter %qT",
546 TYPE_NAME (type));
547 break;
548
549 case TYPENAME_TYPE:
550 case DECLTYPE_TYPE:
551 emit_diagnostic (diag_kind, loc, 0,
552 "invalid use of dependent type %qT", type);
553 break;
554
555 case LANG_TYPE:
556 if (type == init_list_type_node)
557 {
558 emit_diagnostic (diag_kind, loc, 0,
559 "invalid use of brace-enclosed initializer list");
560 break;
561 }
562 gcc_assert (type == unknown_type_node);
563 if (value && TREE_CODE (value) == COMPONENT_REF)
564 goto bad_member;
565 else if (value && TREE_CODE (value) == ADDR_EXPR)
566 emit_diagnostic (diag_kind, loc, 0,
567 "address of overloaded function with no contextual "
568 "type information");
569 else if (value && TREE_CODE (value) == OVERLOAD)
570 emit_diagnostic (diag_kind, loc, 0,
571 "overloaded function with no contextual type information");
572 else
573 emit_diagnostic (diag_kind, loc, 0,
574 "insufficient contextual information to determine type");
575 break;
576
577 default:
578 gcc_unreachable ();
579 }
580 }
581
582 /* Print an error message for invalid use of an incomplete type.
583 VALUE is the expression that was used (or 0 if that isn't known)
584 and TYPE is the type that was invalid. */
585
586 void
587 cxx_incomplete_type_error (location_t loc, const_tree value, const_tree type)
588 {
589 cxx_incomplete_type_diagnostic (loc, value, type, DK_ERROR);
590 }
591
592 \f
593 /* The recursive part of split_nonconstant_init. DEST is an lvalue
594 expression to which INIT should be assigned. INIT is a CONSTRUCTOR.
595 Return true if the whole of the value was initialized by the
596 generated statements. */
597
598 static bool
599 split_nonconstant_init_1 (tree dest, tree init)
600 {
601 unsigned HOST_WIDE_INT idx;
602 tree field_index, value;
603 tree type = TREE_TYPE (dest);
604 tree inner_type = NULL;
605 bool array_type_p = false;
606 bool complete_p = true;
607 HOST_WIDE_INT num_split_elts = 0;
608
609 switch (TREE_CODE (type))
610 {
611 case ARRAY_TYPE:
612 inner_type = TREE_TYPE (type);
613 array_type_p = true;
614 if ((TREE_SIDE_EFFECTS (init)
615 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
616 || vla_type_p (type))
617 {
618 /* For an array, we only need/want a single cleanup region rather
619 than one per element. */
620 tree code = build_vec_init (dest, NULL_TREE, init, false, 1,
621 tf_warning_or_error);
622 add_stmt (code);
623 return true;
624 }
625 /* FALLTHRU */
626
627 case RECORD_TYPE:
628 case UNION_TYPE:
629 case QUAL_UNION_TYPE:
630 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx,
631 field_index, value)
632 {
633 /* The current implementation of this algorithm assumes that
634 the field was set for all the elements. This is usually done
635 by process_init_constructor. */
636 gcc_assert (field_index);
637
638 if (!array_type_p)
639 inner_type = TREE_TYPE (field_index);
640
641 if (TREE_CODE (value) == CONSTRUCTOR)
642 {
643 tree sub;
644
645 if (array_type_p)
646 sub = build4 (ARRAY_REF, inner_type, dest, field_index,
647 NULL_TREE, NULL_TREE);
648 else
649 sub = build3 (COMPONENT_REF, inner_type, dest, field_index,
650 NULL_TREE);
651
652 if (!split_nonconstant_init_1 (sub, value))
653 complete_p = false;
654 else
655 CONSTRUCTOR_ELTS (init)->ordered_remove (idx--);
656 num_split_elts++;
657 }
658 else if (!initializer_constant_valid_p (value, inner_type))
659 {
660 tree code;
661 tree sub;
662
663 /* FIXME: Ordered removal is O(1) so the whole function is
664 worst-case quadratic. This could be fixed using an aside
665 bitmap to record which elements must be removed and remove
666 them all at the same time. Or by merging
667 split_non_constant_init into process_init_constructor_array,
668 that is separating constants from non-constants while building
669 the vector. */
670 CONSTRUCTOR_ELTS (init)->ordered_remove (idx);
671 --idx;
672
673 if (TREE_CODE (field_index) == RANGE_EXPR)
674 {
675 /* Use build_vec_init to initialize a range. */
676 tree low = TREE_OPERAND (field_index, 0);
677 tree hi = TREE_OPERAND (field_index, 1);
678 sub = build4 (ARRAY_REF, inner_type, dest, low,
679 NULL_TREE, NULL_TREE);
680 sub = cp_build_addr_expr (sub, tf_warning_or_error);
681 tree max = size_binop (MINUS_EXPR, hi, low);
682 code = build_vec_init (sub, max, value, false, 0,
683 tf_warning_or_error);
684 add_stmt (code);
685 if (tree_fits_shwi_p (max))
686 num_split_elts += tree_to_shwi (max);
687 }
688 else
689 {
690 if (array_type_p)
691 sub = build4 (ARRAY_REF, inner_type, dest, field_index,
692 NULL_TREE, NULL_TREE);
693 else
694 sub = build3 (COMPONENT_REF, inner_type, dest, field_index,
695 NULL_TREE);
696
697 code = build2 (INIT_EXPR, inner_type, sub, value);
698 code = build_stmt (input_location, EXPR_STMT, code);
699 code = maybe_cleanup_point_expr_void (code);
700 add_stmt (code);
701 if (tree cleanup
702 = cxx_maybe_build_cleanup (sub, tf_warning_or_error))
703 finish_eh_cleanup (cleanup);
704 }
705
706 num_split_elts++;
707 }
708 }
709 break;
710
711 case VECTOR_TYPE:
712 if (!initializer_constant_valid_p (init, type))
713 {
714 tree code;
715 tree cons = copy_node (init);
716 CONSTRUCTOR_ELTS (init) = NULL;
717 code = build2 (MODIFY_EXPR, type, dest, cons);
718 code = build_stmt (input_location, EXPR_STMT, code);
719 add_stmt (code);
720 num_split_elts += CONSTRUCTOR_NELTS (init);
721 }
722 break;
723
724 default:
725 gcc_unreachable ();
726 }
727
728 /* The rest of the initializer is now a constant. */
729 TREE_CONSTANT (init) = 1;
730
731 /* We didn't split out anything. */
732 if (num_split_elts == 0)
733 return false;
734
735 return complete_p && complete_ctor_at_level_p (TREE_TYPE (init),
736 num_split_elts, inner_type);
737 }
738
739 /* A subroutine of store_init_value. Splits non-constant static
740 initializer INIT into a constant part and generates code to
741 perform the non-constant part of the initialization to DEST.
742 Returns the code for the runtime init. */
743
744 tree
745 split_nonconstant_init (tree dest, tree init)
746 {
747 tree code;
748
749 if (TREE_CODE (init) == TARGET_EXPR)
750 init = TARGET_EXPR_INITIAL (init);
751 if (TREE_CODE (init) == CONSTRUCTOR)
752 {
753 init = cp_fully_fold (init);
754 code = push_stmt_list ();
755 if (split_nonconstant_init_1 (dest, init))
756 init = NULL_TREE;
757 code = pop_stmt_list (code);
758 DECL_INITIAL (dest) = init;
759 TREE_READONLY (dest) = 0;
760 }
761 else if (TREE_CODE (init) == STRING_CST
762 && array_of_runtime_bound_p (TREE_TYPE (dest)))
763 code = build_vec_init (dest, NULL_TREE, init, /*value-init*/false,
764 /*from array*/1, tf_warning_or_error);
765 else
766 code = build2 (INIT_EXPR, TREE_TYPE (dest), dest, init);
767
768 return code;
769 }
770
771 /* Perform appropriate conversions on the initial value of a variable,
772 store it in the declaration DECL,
773 and print any error messages that are appropriate.
774 If the init is invalid, store an ERROR_MARK.
775
776 C++: Note that INIT might be a TREE_LIST, which would mean that it is
777 a base class initializer for some aggregate type, hopefully compatible
778 with DECL. If INIT is a single element, and DECL is an aggregate
779 type, we silently convert INIT into a TREE_LIST, allowing a constructor
780 to be called.
781
782 If INIT is a TREE_LIST and there is no constructor, turn INIT
783 into a CONSTRUCTOR and use standard initialization techniques.
784 Perhaps a warning should be generated?
785
786 Returns code to be executed if initialization could not be performed
787 for static variable. In that case, caller must emit the code. */
788
789 tree
790 store_init_value (tree decl, tree init, vec<tree, va_gc>** cleanups, int flags)
791 {
792 tree value, type;
793
794 /* If variable's type was invalidly declared, just ignore it. */
795
796 type = TREE_TYPE (decl);
797 if (TREE_CODE (type) == ERROR_MARK)
798 return NULL_TREE;
799
800 if (MAYBE_CLASS_TYPE_P (type))
801 {
802 if (TREE_CODE (init) == TREE_LIST)
803 {
804 error ("constructor syntax used, but no constructor declared "
805 "for type %qT", type);
806 init = build_constructor_from_list (init_list_type_node, nreverse (init));
807 }
808 }
809
810 /* End of special C++ code. */
811
812 if (flags & LOOKUP_ALREADY_DIGESTED)
813 value = init;
814 else
815 /* Digest the specified initializer into an expression. */
816 value = digest_init_flags (type, init, flags, tf_warning_or_error);
817
818 if (TREE_CODE (type) == ARRAY_TYPE
819 && TYPE_STRING_FLAG (TREE_TYPE (type))
820 && TREE_CODE (value) == CONSTRUCTOR)
821 value = braced_list_to_string (type, value);
822
823 value = extend_ref_init_temps (decl, value, cleanups);
824
825 /* In C++11 constant expression is a semantic, not syntactic, property.
826 In C++98, make sure that what we thought was a constant expression at
827 template definition time is still constant and otherwise perform this
828 as optimization, e.g. to fold SIZEOF_EXPRs in the initializer. */
829 if (decl_maybe_constant_var_p (decl) || TREE_STATIC (decl))
830 {
831 bool const_init;
832 tree oldval = value;
833 value = fold_non_dependent_expr (value);
834 if (DECL_DECLARED_CONSTEXPR_P (decl)
835 || (DECL_IN_AGGR_P (decl)
836 && DECL_INITIALIZED_IN_CLASS_P (decl)
837 && !DECL_VAR_DECLARED_INLINE_P (decl)))
838 {
839 /* Diagnose a non-constant initializer for constexpr variable or
840 non-inline in-class-initialized static data member. */
841 if (!require_constant_expression (value))
842 value = error_mark_node;
843 else
844 value = cxx_constant_init (value, decl);
845 }
846 else
847 value = maybe_constant_init (value, decl, true);
848 if (TREE_CODE (value) == CONSTRUCTOR && cp_has_mutable_p (type))
849 /* Poison this CONSTRUCTOR so it can't be copied to another
850 constexpr variable. */
851 CONSTRUCTOR_MUTABLE_POISON (value) = true;
852 const_init = (reduced_constant_expression_p (value)
853 || error_operand_p (value));
854 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = const_init;
855 /* FIXME setting TREE_CONSTANT on refs breaks the back end. */
856 if (!TYPE_REF_P (type))
857 TREE_CONSTANT (decl) = const_init && decl_maybe_constant_var_p (decl);
858 if (!const_init)
859 value = oldval;
860 }
861 value = cp_fully_fold (value);
862
863 /* Handle aggregate NSDMI in non-constant initializers, too. */
864 value = replace_placeholders (value, decl);
865
866 /* DECL may change value; purge caches. */
867 clear_cv_and_fold_caches ();
868
869 /* If the initializer is not a constant, fill in DECL_INITIAL with
870 the bits that are constant, and then return an expression that
871 will perform the dynamic initialization. */
872 if (value != error_mark_node
873 && (TREE_SIDE_EFFECTS (value)
874 || vla_type_p (type)
875 || ! reduced_constant_expression_p (value)))
876 return split_nonconstant_init (decl, value);
877 /* If the value is a constant, just put it in DECL_INITIAL. If DECL
878 is an automatic variable, the middle end will turn this into a
879 dynamic initialization later. */
880 DECL_INITIAL (decl) = value;
881 return NULL_TREE;
882 }
883
884 \f
885 /* Give diagnostic about narrowing conversions within { }, or as part of
886 a converted constant expression. If CONST_ONLY, only check
887 constants. */
888
889 bool
890 check_narrowing (tree type, tree init, tsubst_flags_t complain, bool const_only)
891 {
892 tree ftype = unlowered_expr_type (init);
893 bool ok = true;
894 REAL_VALUE_TYPE d;
895
896 if (((!warn_narrowing || !(complain & tf_warning))
897 && cxx_dialect == cxx98)
898 || !ARITHMETIC_TYPE_P (type)
899 /* Don't emit bogus warnings with e.g. value-dependent trees. */
900 || instantiation_dependent_expression_p (init))
901 return ok;
902
903 if (BRACE_ENCLOSED_INITIALIZER_P (init)
904 && TREE_CODE (type) == COMPLEX_TYPE)
905 {
906 tree elttype = TREE_TYPE (type);
907 if (CONSTRUCTOR_NELTS (init) > 0)
908 ok &= check_narrowing (elttype, CONSTRUCTOR_ELT (init, 0)->value,
909 complain);
910 if (CONSTRUCTOR_NELTS (init) > 1)
911 ok &= check_narrowing (elttype, CONSTRUCTOR_ELT (init, 1)->value,
912 complain);
913 return ok;
914 }
915
916 init = maybe_constant_value (init);
917
918 /* If we were asked to only check constants, return early. */
919 if (const_only && !TREE_CONSTANT (init))
920 return ok;
921
922 if (CP_INTEGRAL_TYPE_P (type)
923 && TREE_CODE (ftype) == REAL_TYPE)
924 ok = false;
925 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype)
926 && CP_INTEGRAL_TYPE_P (type))
927 {
928 if (TREE_CODE (ftype) == ENUMERAL_TYPE)
929 /* Check for narrowing based on the values of the enumeration. */
930 ftype = ENUM_UNDERLYING_TYPE (ftype);
931 if ((tree_int_cst_lt (TYPE_MAX_VALUE (type),
932 TYPE_MAX_VALUE (ftype))
933 || tree_int_cst_lt (TYPE_MIN_VALUE (ftype),
934 TYPE_MIN_VALUE (type)))
935 && (TREE_CODE (init) != INTEGER_CST
936 || !int_fits_type_p (init, type)))
937 ok = false;
938 }
939 else if (TREE_CODE (ftype) == REAL_TYPE
940 && TREE_CODE (type) == REAL_TYPE)
941 {
942 if (TYPE_PRECISION (type) < TYPE_PRECISION (ftype))
943 {
944 if (TREE_CODE (init) == REAL_CST)
945 {
946 /* Issue 703: Loss of precision is OK as long as the value is
947 within the representable range of the new type. */
948 REAL_VALUE_TYPE r;
949 d = TREE_REAL_CST (init);
950 real_convert (&r, TYPE_MODE (type), &d);
951 if (real_isinf (&r))
952 ok = false;
953 }
954 else
955 ok = false;
956 }
957 }
958 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype)
959 && TREE_CODE (type) == REAL_TYPE)
960 {
961 ok = false;
962 if (TREE_CODE (init) == INTEGER_CST)
963 {
964 d = real_value_from_int_cst (0, init);
965 if (exact_real_truncate (TYPE_MODE (type), &d))
966 ok = true;
967 }
968 }
969
970 bool almost_ok = ok;
971 if (!ok && !CONSTANT_CLASS_P (init) && (complain & tf_warning_or_error))
972 {
973 tree folded = cp_fully_fold (init);
974 if (TREE_CONSTANT (folded) && check_narrowing (type, folded, tf_none))
975 almost_ok = true;
976 }
977
978 if (!ok)
979 {
980 location_t loc = cp_expr_loc_or_loc (init, input_location);
981 if (cxx_dialect == cxx98)
982 {
983 if (complain & tf_warning)
984 warning_at (loc, OPT_Wnarrowing, "narrowing conversion of %qE "
985 "from %qH to %qI is ill-formed in C++11",
986 init, ftype, type);
987 ok = true;
988 }
989 else if (!CONSTANT_CLASS_P (init))
990 {
991 if (complain & tf_warning_or_error)
992 {
993 auto_diagnostic_group d;
994 if ((!almost_ok || pedantic)
995 && pedwarn (loc, OPT_Wnarrowing,
996 "narrowing conversion of %qE from %qH to %qI",
997 init, ftype, type)
998 && almost_ok)
999 inform (loc, " the expression has a constant value but is not "
1000 "a C++ constant-expression");
1001 ok = true;
1002 }
1003 }
1004 else if (complain & tf_error)
1005 {
1006 int savederrorcount = errorcount;
1007 global_dc->pedantic_errors = 1;
1008 pedwarn (loc, OPT_Wnarrowing,
1009 "narrowing conversion of %qE from %qH to %qI ",
1010 init, ftype, type);
1011 if (errorcount == savederrorcount)
1012 ok = true;
1013 global_dc->pedantic_errors = flag_pedantic_errors;
1014 }
1015 }
1016
1017 return ok;
1018 }
1019
1020 /* Process the initializer INIT for a variable of type TYPE, emitting
1021 diagnostics for invalid initializers and converting the initializer as
1022 appropriate.
1023
1024 For aggregate types, it assumes that reshape_init has already run, thus the
1025 initializer will have the right shape (brace elision has been undone).
1026
1027 NESTED is non-zero iff we are being called for an element of a CONSTRUCTOR,
1028 2 iff the element of a CONSTRUCTOR is inside another CONSTRUCTOR. */
1029
1030 static tree
1031 digest_init_r (tree type, tree init, int nested, int flags,
1032 tsubst_flags_t complain)
1033 {
1034 enum tree_code code = TREE_CODE (type);
1035
1036 if (error_operand_p (init))
1037 return error_mark_node;
1038
1039 gcc_assert (init);
1040
1041 /* We must strip the outermost array type when completing the type,
1042 because the its bounds might be incomplete at the moment. */
1043 if (!complete_type_or_maybe_complain (code == ARRAY_TYPE
1044 ? TREE_TYPE (type) : type, NULL_TREE,
1045 complain))
1046 return error_mark_node;
1047
1048 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue
1049 (g++.old-deja/g++.law/casts2.C). */
1050 if (TREE_CODE (init) == NON_LVALUE_EXPR)
1051 init = TREE_OPERAND (init, 0);
1052
1053 location_t loc = cp_expr_loc_or_loc (init, input_location);
1054
1055 /* Initialization of an array of chars from a string constant. The initializer
1056 can be optionally enclosed in braces, but reshape_init has already removed
1057 them if they were present. */
1058 if (code == ARRAY_TYPE)
1059 {
1060 if (nested && !TYPE_DOMAIN (type))
1061 /* C++ flexible array members have a null domain. */
1062 pedwarn (loc, OPT_Wpedantic,
1063 "initialization of a flexible array member");
1064
1065 tree typ1 = TYPE_MAIN_VARIANT (TREE_TYPE (type));
1066 if (char_type_p (typ1)
1067 /*&& init */
1068 && TREE_CODE (init) == STRING_CST)
1069 {
1070 tree char_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (init)));
1071
1072 if (TYPE_PRECISION (typ1) == BITS_PER_UNIT)
1073 {
1074 if (char_type != char_type_node
1075 && char_type != signed_char_type_node
1076 && char_type != unsigned_char_type_node)
1077 {
1078 if (complain & tf_error)
1079 error_at (loc, "char-array initialized from wide string");
1080 return error_mark_node;
1081 }
1082 }
1083 else
1084 {
1085 if (char_type == char_type_node
1086 || char_type == signed_char_type_node
1087 || char_type == unsigned_char_type_node)
1088 {
1089 if (complain & tf_error)
1090 error_at (loc,
1091 "int-array initialized from non-wide string");
1092 return error_mark_node;
1093 }
1094 else if (char_type != typ1)
1095 {
1096 if (complain & tf_error)
1097 error_at (loc, "int-array initialized from incompatible "
1098 "wide string");
1099 return error_mark_node;
1100 }
1101 }
1102
1103 if (nested == 2 && !TYPE_DOMAIN (type))
1104 {
1105 if (complain & tf_error)
1106 error_at (loc, "initialization of flexible array member "
1107 "in a nested context");
1108 return error_mark_node;
1109 }
1110
1111 if (type != TREE_TYPE (init)
1112 && !variably_modified_type_p (type, NULL_TREE))
1113 {
1114 init = copy_node (init);
1115 TREE_TYPE (init) = type;
1116 }
1117 if (TYPE_DOMAIN (type) && TREE_CONSTANT (TYPE_SIZE (type)))
1118 {
1119 /* Not a flexible array member. */
1120 int size = TREE_INT_CST_LOW (TYPE_SIZE (type));
1121 size = (size + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
1122 /* In C it is ok to subtract 1 from the length of the string
1123 because it's ok to ignore the terminating null char that is
1124 counted in the length of the constant, but in C++ this would
1125 be invalid. */
1126 if (size < TREE_STRING_LENGTH (init))
1127 {
1128 permerror (loc, "initializer-string for array "
1129 "of chars is too long");
1130
1131 init = build_string (size, TREE_STRING_POINTER (init));
1132 TREE_TYPE (init) = type;
1133 }
1134 }
1135 return init;
1136 }
1137 }
1138
1139 /* Handle scalar types (including conversions) and references. */
1140 if ((code != COMPLEX_TYPE || BRACE_ENCLOSED_INITIALIZER_P (init))
1141 && (SCALAR_TYPE_P (type) || code == REFERENCE_TYPE))
1142 {
1143 if (nested)
1144 flags |= LOOKUP_NO_NARROWING;
1145 init = convert_for_initialization (0, type, init, flags,
1146 ICR_INIT, NULL_TREE, 0,
1147 complain);
1148
1149 return init;
1150 }
1151
1152 /* Come here only for aggregates: records, arrays, unions, complex numbers
1153 and vectors. */
1154 gcc_assert (code == ARRAY_TYPE
1155 || VECTOR_TYPE_P (type)
1156 || code == RECORD_TYPE
1157 || code == UNION_TYPE
1158 || code == COMPLEX_TYPE);
1159
1160 /* "If T is a class type and the initializer list has a single
1161 element of type cv U, where U is T or a class derived from T,
1162 the object is initialized from that element." */
1163 if (flag_checking
1164 && cxx_dialect >= cxx11
1165 && BRACE_ENCLOSED_INITIALIZER_P (init)
1166 && CONSTRUCTOR_NELTS (init) == 1
1167 && ((CLASS_TYPE_P (type) && !CLASSTYPE_NON_AGGREGATE (type))
1168 || VECTOR_TYPE_P (type)))
1169 {
1170 tree elt = CONSTRUCTOR_ELT (init, 0)->value;
1171 if (reference_related_p (type, TREE_TYPE (elt)))
1172 /* We should have fixed this in reshape_init. */
1173 gcc_unreachable ();
1174 }
1175
1176 if (BRACE_ENCLOSED_INITIALIZER_P (init)
1177 && !TYPE_NON_AGGREGATE_CLASS (type))
1178 return process_init_constructor (type, init, nested, complain);
1179 else
1180 {
1181 if (COMPOUND_LITERAL_P (init) && code == ARRAY_TYPE)
1182 {
1183 if (complain & tf_error)
1184 error_at (loc, "cannot initialize aggregate of type %qT with "
1185 "a compound literal", type);
1186
1187 return error_mark_node;
1188 }
1189
1190 if (code == ARRAY_TYPE
1191 && !BRACE_ENCLOSED_INITIALIZER_P (init))
1192 {
1193 /* Allow the result of build_array_copy and of
1194 build_value_init_noctor. */
1195 if ((TREE_CODE (init) == VEC_INIT_EXPR
1196 || TREE_CODE (init) == CONSTRUCTOR)
1197 && (same_type_ignoring_top_level_qualifiers_p
1198 (type, TREE_TYPE (init))))
1199 return init;
1200
1201 if (complain & tf_error)
1202 error_at (loc, "array must be initialized with a brace-enclosed"
1203 " initializer");
1204 return error_mark_node;
1205 }
1206
1207 return convert_for_initialization (NULL_TREE, type, init,
1208 flags,
1209 ICR_INIT, NULL_TREE, 0,
1210 complain);
1211 }
1212 }
1213
1214 tree
1215 digest_init (tree type, tree init, tsubst_flags_t complain)
1216 {
1217 return digest_init_r (type, init, 0, LOOKUP_IMPLICIT, complain);
1218 }
1219
1220 tree
1221 digest_init_flags (tree type, tree init, int flags, tsubst_flags_t complain)
1222 {
1223 return digest_init_r (type, init, 0, flags, complain);
1224 }
1225
1226 /* Process the initializer INIT for an NSDMI DECL (a FIELD_DECL). */
1227 tree
1228 digest_nsdmi_init (tree decl, tree init, tsubst_flags_t complain)
1229 {
1230 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1231
1232 tree type = TREE_TYPE (decl);
1233 int flags = LOOKUP_IMPLICIT;
1234 if (DIRECT_LIST_INIT_P (init))
1235 flags = LOOKUP_NORMAL;
1236 if (BRACE_ENCLOSED_INITIALIZER_P (init)
1237 && CP_AGGREGATE_TYPE_P (type))
1238 init = reshape_init (type, init, complain);
1239 init = digest_init_flags (type, init, flags, complain);
1240 if (TREE_CODE (init) == TARGET_EXPR)
1241 /* This represents the whole initialization. */
1242 TARGET_EXPR_DIRECT_INIT_P (init) = true;
1243 return init;
1244 }
1245 \f
1246 /* Set of flags used within process_init_constructor to describe the
1247 initializers. */
1248 #define PICFLAG_ERRONEOUS 1
1249 #define PICFLAG_NOT_ALL_CONSTANT 2
1250 #define PICFLAG_NOT_ALL_SIMPLE 4
1251 #define PICFLAG_SIDE_EFFECTS 8
1252
1253 /* Given an initializer INIT, return the flag (PICFLAG_*) which better
1254 describe it. */
1255
1256 static int
1257 picflag_from_initializer (tree init)
1258 {
1259 if (init == error_mark_node)
1260 return PICFLAG_ERRONEOUS;
1261 else if (!TREE_CONSTANT (init))
1262 {
1263 if (TREE_SIDE_EFFECTS (init))
1264 return PICFLAG_SIDE_EFFECTS;
1265 else
1266 return PICFLAG_NOT_ALL_CONSTANT;
1267 }
1268 else if (!initializer_constant_valid_p (init, TREE_TYPE (init)))
1269 return PICFLAG_NOT_ALL_SIMPLE;
1270 return 0;
1271 }
1272
1273 /* Adjust INIT for going into a CONSTRUCTOR. */
1274
1275 static tree
1276 massage_init_elt (tree type, tree init, int nested, tsubst_flags_t complain)
1277 {
1278 init = digest_init_r (type, init, nested ? 2 : 1, LOOKUP_IMPLICIT, complain);
1279 /* Strip a simple TARGET_EXPR when we know this is an initializer. */
1280 if (SIMPLE_TARGET_EXPR_P (init))
1281 init = TARGET_EXPR_INITIAL (init);
1282 /* When we defer constant folding within a statement, we may want to
1283 defer this folding as well. */
1284 tree t = fold_non_dependent_expr (init, complain);
1285 t = maybe_constant_init (t);
1286 if (TREE_CONSTANT (t))
1287 init = t;
1288 return init;
1289 }
1290
1291 /* Subroutine of process_init_constructor, which will process an initializer
1292 INIT for an array or vector of type TYPE. Returns the flags (PICFLAG_*)
1293 which describe the initializers. */
1294
1295 static int
1296 process_init_constructor_array (tree type, tree init, int nested,
1297 tsubst_flags_t complain)
1298 {
1299 unsigned HOST_WIDE_INT i, len = 0;
1300 int flags = 0;
1301 bool unbounded = false;
1302 constructor_elt *ce;
1303 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (init);
1304
1305 gcc_assert (TREE_CODE (type) == ARRAY_TYPE
1306 || VECTOR_TYPE_P (type));
1307
1308 if (TREE_CODE (type) == ARRAY_TYPE)
1309 {
1310 /* C++ flexible array members have a null domain. */
1311 tree domain = TYPE_DOMAIN (type);
1312 if (domain && TREE_CONSTANT (TYPE_MAX_VALUE (domain)))
1313 len = wi::ext (wi::to_offset (TYPE_MAX_VALUE (domain))
1314 - wi::to_offset (TYPE_MIN_VALUE (domain)) + 1,
1315 TYPE_PRECISION (TREE_TYPE (domain)),
1316 TYPE_SIGN (TREE_TYPE (domain))).to_uhwi ();
1317 else
1318 unbounded = true; /* Take as many as there are. */
1319
1320 if (nested == 2 && !domain && !vec_safe_is_empty (v))
1321 {
1322 if (complain & tf_error)
1323 error_at (cp_expr_loc_or_loc (init, input_location),
1324 "initialization of flexible array member "
1325 "in a nested context");
1326 return PICFLAG_ERRONEOUS;
1327 }
1328 }
1329 else
1330 /* Vectors are like simple fixed-size arrays. */
1331 unbounded = !TYPE_VECTOR_SUBPARTS (type).is_constant (&len);
1332
1333 /* There must not be more initializers than needed. */
1334 if (!unbounded && vec_safe_length (v) > len)
1335 {
1336 if (complain & tf_error)
1337 error ("too many initializers for %qT", type);
1338 else
1339 return PICFLAG_ERRONEOUS;
1340 }
1341
1342 FOR_EACH_VEC_SAFE_ELT (v, i, ce)
1343 {
1344 if (!ce->index)
1345 ce->index = size_int (i);
1346 else if (!check_array_designated_initializer (ce, i))
1347 ce->index = error_mark_node;
1348 gcc_assert (ce->value);
1349 ce->value
1350 = massage_init_elt (TREE_TYPE (type), ce->value, nested, complain);
1351
1352 gcc_checking_assert
1353 (ce->value == error_mark_node
1354 || (same_type_ignoring_top_level_qualifiers_p
1355 (strip_array_types (TREE_TYPE (type)),
1356 strip_array_types (TREE_TYPE (ce->value)))));
1357
1358 flags |= picflag_from_initializer (ce->value);
1359 }
1360
1361 /* No more initializers. If the array is unbounded, we are done. Otherwise,
1362 we must add initializers ourselves. */
1363 if (!unbounded)
1364 for (; i < len; ++i)
1365 {
1366 tree next;
1367
1368 if (type_build_ctor_call (TREE_TYPE (type)))
1369 {
1370 /* If this type needs constructors run for default-initialization,
1371 we can't rely on the back end to do it for us, so make the
1372 initialization explicit by list-initializing from T{}. */
1373 next = build_constructor (init_list_type_node, NULL);
1374 next = massage_init_elt (TREE_TYPE (type), next, nested, complain);
1375 if (initializer_zerop (next))
1376 /* The default zero-initialization is fine for us; don't
1377 add anything to the CONSTRUCTOR. */
1378 next = NULL_TREE;
1379 }
1380 else if (!zero_init_p (TREE_TYPE (type)))
1381 next = build_zero_init (TREE_TYPE (type),
1382 /*nelts=*/NULL_TREE,
1383 /*static_storage_p=*/false);
1384 else
1385 /* The default zero-initialization is fine for us; don't
1386 add anything to the CONSTRUCTOR. */
1387 next = NULL_TREE;
1388
1389 if (next)
1390 {
1391 flags |= picflag_from_initializer (next);
1392 if (len > i+1
1393 && (initializer_constant_valid_p (next, TREE_TYPE (next))
1394 == null_pointer_node))
1395 {
1396 tree range = build2 (RANGE_EXPR, size_type_node,
1397 build_int_cst (size_type_node, i),
1398 build_int_cst (size_type_node, len - 1));
1399 CONSTRUCTOR_APPEND_ELT (v, range, next);
1400 break;
1401 }
1402 else
1403 CONSTRUCTOR_APPEND_ELT (v, size_int (i), next);
1404 }
1405 else
1406 /* Don't bother checking all the other elements. */
1407 break;
1408 }
1409
1410 CONSTRUCTOR_ELTS (init) = v;
1411 return flags;
1412 }
1413
1414 /* Subroutine of process_init_constructor, which will process an initializer
1415 INIT for a class of type TYPE. Returns the flags (PICFLAG_*) which describe
1416 the initializers. */
1417
1418 static int
1419 process_init_constructor_record (tree type, tree init, int nested,
1420 tsubst_flags_t complain)
1421 {
1422 vec<constructor_elt, va_gc> *v = NULL;
1423 tree field;
1424 int skipped = 0;
1425
1426 gcc_assert (TREE_CODE (type) == RECORD_TYPE);
1427 gcc_assert (!CLASSTYPE_VBASECLASSES (type));
1428 gcc_assert (!TYPE_BINFO (type)
1429 || cxx_dialect >= cxx17
1430 || !BINFO_N_BASE_BINFOS (TYPE_BINFO (type)));
1431 gcc_assert (!TYPE_POLYMORPHIC_P (type));
1432
1433 restart:
1434 int flags = 0;
1435 unsigned HOST_WIDE_INT idx = 0;
1436 int designator_skip = -1;
1437 /* Generally, we will always have an index for each initializer (which is
1438 a FIELD_DECL, put by reshape_init), but compound literals don't go trough
1439 reshape_init. So we need to handle both cases. */
1440 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
1441 {
1442 tree next;
1443 tree type;
1444
1445 if (TREE_CODE (field) != FIELD_DECL
1446 || (DECL_ARTIFICIAL (field)
1447 && !(cxx_dialect >= cxx17 && DECL_FIELD_IS_BASE (field))))
1448 continue;
1449
1450 if (DECL_UNNAMED_BIT_FIELD (field))
1451 continue;
1452
1453 /* If this is a bitfield, first convert to the declared type. */
1454 type = TREE_TYPE (field);
1455 if (DECL_BIT_FIELD_TYPE (field))
1456 type = DECL_BIT_FIELD_TYPE (field);
1457 if (type == error_mark_node)
1458 return PICFLAG_ERRONEOUS;
1459
1460 next = NULL_TREE;
1461 if (idx < CONSTRUCTOR_NELTS (init))
1462 {
1463 constructor_elt *ce = &(*CONSTRUCTOR_ELTS (init))[idx];
1464 if (ce->index)
1465 {
1466 /* We can have either a FIELD_DECL or an IDENTIFIER_NODE. The
1467 latter case can happen in templates where lookup has to be
1468 deferred. */
1469 gcc_assert (TREE_CODE (ce->index) == FIELD_DECL
1470 || identifier_p (ce->index));
1471 if (ce->index == field || ce->index == DECL_NAME (field))
1472 next = ce->value;
1473 else if (ANON_AGGR_TYPE_P (type)
1474 && search_anon_aggr (type,
1475 TREE_CODE (ce->index) == FIELD_DECL
1476 ? DECL_NAME (ce->index)
1477 : ce->index))
1478 /* If the element is an anonymous union object and the
1479 initializer list is a designated-initializer-list, the
1480 anonymous union object is initialized by the
1481 designated-initializer-list { D }, where D is the
1482 designated-initializer-clause naming a member of the
1483 anonymous union object. */
1484 next = build_constructor_single (init_list_type_node,
1485 ce->index, ce->value);
1486 else
1487 {
1488 ce = NULL;
1489 if (designator_skip == -1)
1490 designator_skip = 1;
1491 }
1492 }
1493 else
1494 {
1495 designator_skip = 0;
1496 next = ce->value;
1497 }
1498
1499 if (ce)
1500 {
1501 gcc_assert (ce->value);
1502 next = massage_init_elt (type, next, nested, complain);
1503 ++idx;
1504 }
1505 }
1506 if (next)
1507 /* Already handled above. */;
1508 else if (DECL_INITIAL (field))
1509 {
1510 if (skipped > 0)
1511 {
1512 /* We're using an NSDMI past a field with implicit
1513 zero-init. Go back and make it explicit. */
1514 skipped = -1;
1515 vec_safe_truncate (v, 0);
1516 goto restart;
1517 }
1518 /* C++14 aggregate NSDMI. */
1519 next = get_nsdmi (field, /*ctor*/false, complain);
1520 if (!CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init)
1521 && find_placeholders (next))
1522 CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = 1;
1523 }
1524 else if (type_build_ctor_call (TREE_TYPE (field)))
1525 {
1526 /* If this type needs constructors run for
1527 default-initialization, we can't rely on the back end to do it
1528 for us, so build up TARGET_EXPRs. If the type in question is
1529 a class, just build one up; if it's an array, recurse. */
1530 next = build_constructor (init_list_type_node, NULL);
1531 next = massage_init_elt (TREE_TYPE (field), next, nested, complain);
1532
1533 /* Warn when some struct elements are implicitly initialized. */
1534 if ((complain & tf_warning)
1535 && !EMPTY_CONSTRUCTOR_P (init))
1536 warning (OPT_Wmissing_field_initializers,
1537 "missing initializer for member %qD", field);
1538 }
1539 else
1540 {
1541 const_tree fldtype = TREE_TYPE (field);
1542 if (TYPE_REF_P (fldtype))
1543 {
1544 if (complain & tf_error)
1545 error ("member %qD is uninitialized reference", field);
1546 else
1547 return PICFLAG_ERRONEOUS;
1548 }
1549 else if (CLASSTYPE_REF_FIELDS_NEED_INIT (fldtype))
1550 {
1551 if (complain & tf_error)
1552 error ("member %qD with uninitialized reference fields", field);
1553 else
1554 return PICFLAG_ERRONEOUS;
1555 }
1556
1557 /* Warn when some struct elements are implicitly initialized
1558 to zero. However, avoid issuing the warning for flexible
1559 array members since they need not have any elements. */
1560 if ((TREE_CODE (fldtype) != ARRAY_TYPE || TYPE_DOMAIN (fldtype))
1561 && (complain & tf_warning)
1562 && !EMPTY_CONSTRUCTOR_P (init))
1563 warning (OPT_Wmissing_field_initializers,
1564 "missing initializer for member %qD", field);
1565
1566 if (!zero_init_p (fldtype)
1567 || skipped < 0)
1568 next = build_zero_init (TREE_TYPE (field), /*nelts=*/NULL_TREE,
1569 /*static_storage_p=*/false);
1570 else
1571 {
1572 /* The default zero-initialization is fine for us; don't
1573 add anything to the CONSTRUCTOR. */
1574 skipped = 1;
1575 continue;
1576 }
1577 }
1578
1579 /* If this is a bitfield, now convert to the lowered type. */
1580 if (type != TREE_TYPE (field))
1581 next = cp_convert_and_check (TREE_TYPE (field), next, complain);
1582 flags |= picflag_from_initializer (next);
1583 CONSTRUCTOR_APPEND_ELT (v, field, next);
1584 }
1585
1586 if (idx < CONSTRUCTOR_NELTS (init))
1587 {
1588 if (complain & tf_error)
1589 {
1590 constructor_elt *ce = &(*CONSTRUCTOR_ELTS (init))[idx];
1591 /* For better diagnostics, try to find out if it is really
1592 the case of too many initializers or if designators are
1593 in incorrect order. */
1594 if (designator_skip == 1 && ce->index)
1595 {
1596 gcc_assert (TREE_CODE (ce->index) == FIELD_DECL
1597 || identifier_p (ce->index));
1598 for (field = TYPE_FIELDS (type);
1599 field; field = DECL_CHAIN (field))
1600 {
1601 if (TREE_CODE (field) != FIELD_DECL
1602 || (DECL_ARTIFICIAL (field)
1603 && !(cxx_dialect >= cxx17
1604 && DECL_FIELD_IS_BASE (field))))
1605 continue;
1606
1607 if (DECL_UNNAMED_BIT_FIELD (field))
1608 continue;
1609
1610 if (ce->index == field || ce->index == DECL_NAME (field))
1611 break;
1612 if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1613 {
1614 tree t
1615 = search_anon_aggr (TREE_TYPE (field),
1616 TREE_CODE (ce->index) == FIELD_DECL
1617 ? DECL_NAME (ce->index)
1618 : ce->index);
1619 if (t)
1620 {
1621 field = t;
1622 break;
1623 }
1624 }
1625 }
1626 }
1627 if (field)
1628 error ("designator order for field %qD does not match declaration "
1629 "order in %qT", field, type);
1630 else
1631 error ("too many initializers for %qT", type);
1632 }
1633 else
1634 return PICFLAG_ERRONEOUS;
1635 }
1636
1637 CONSTRUCTOR_ELTS (init) = v;
1638 return flags;
1639 }
1640
1641 /* Subroutine of process_init_constructor, which will process a single
1642 initializer INIT for a union of type TYPE. Returns the flags (PICFLAG_*)
1643 which describe the initializer. */
1644
1645 static int
1646 process_init_constructor_union (tree type, tree init, int nested,
1647 tsubst_flags_t complain)
1648 {
1649 constructor_elt *ce;
1650 int len;
1651
1652 /* If the initializer was empty, use the union's NSDMI if it has one.
1653 Otherwise use default zero initialization. */
1654 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init)))
1655 {
1656 for (tree field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1657 {
1658 if (TREE_CODE (field) == FIELD_DECL
1659 && DECL_INITIAL (field) != NULL_TREE)
1660 {
1661 tree val = get_nsdmi (field, /*in_ctor=*/false, complain);
1662 if (!CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init)
1663 && find_placeholders (val))
1664 CONSTRUCTOR_PLACEHOLDER_BOUNDARY (init) = 1;
1665 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (init), field, val);
1666 break;
1667 }
1668 }
1669
1670 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init)))
1671 return 0;
1672 }
1673
1674 len = CONSTRUCTOR_ELTS (init)->length ();
1675 if (len > 1)
1676 {
1677 if (!(complain & tf_error))
1678 return PICFLAG_ERRONEOUS;
1679 error ("too many initializers for %qT", type);
1680 CONSTRUCTOR_ELTS (init)->block_remove (1, len-1);
1681 }
1682
1683 ce = &(*CONSTRUCTOR_ELTS (init))[0];
1684
1685 /* If this element specifies a field, initialize via that field. */
1686 if (ce->index)
1687 {
1688 if (TREE_CODE (ce->index) == FIELD_DECL)
1689 ;
1690 else if (identifier_p (ce->index))
1691 {
1692 /* This can happen within a cast, see g++.dg/opt/cse2.C. */
1693 tree name = ce->index;
1694 tree field;
1695 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1696 if (DECL_NAME (field) == name)
1697 break;
1698 if (!field)
1699 {
1700 if (complain & tf_error)
1701 error ("no field %qD found in union being initialized",
1702 field);
1703 ce->value = error_mark_node;
1704 }
1705 ce->index = field;
1706 }
1707 else
1708 {
1709 gcc_assert (TREE_CODE (ce->index) == INTEGER_CST
1710 || TREE_CODE (ce->index) == RANGE_EXPR);
1711 if (complain & tf_error)
1712 error ("index value instead of field name in union initializer");
1713 ce->value = error_mark_node;
1714 }
1715 }
1716 else
1717 {
1718 /* Find the first named field. ANSI decided in September 1990
1719 that only named fields count here. */
1720 tree field = TYPE_FIELDS (type);
1721 while (field && (!DECL_NAME (field) || TREE_CODE (field) != FIELD_DECL))
1722 field = TREE_CHAIN (field);
1723 if (field == NULL_TREE)
1724 {
1725 if (complain & tf_error)
1726 error ("too many initializers for %qT", type);
1727 ce->value = error_mark_node;
1728 }
1729 ce->index = field;
1730 }
1731
1732 if (ce->value && ce->value != error_mark_node)
1733 ce->value = massage_init_elt (TREE_TYPE (ce->index), ce->value, nested,
1734 complain);
1735
1736 return picflag_from_initializer (ce->value);
1737 }
1738
1739 /* Process INIT, a constructor for a variable of aggregate type TYPE. The
1740 constructor is a brace-enclosed initializer, and will be modified in-place.
1741
1742 Each element is converted to the right type through digest_init, and
1743 missing initializers are added following the language rules (zero-padding,
1744 etc.).
1745
1746 After the execution, the initializer will have TREE_CONSTANT if all elts are
1747 constant, and TREE_STATIC set if, in addition, all elts are simple enough
1748 constants that the assembler and linker can compute them.
1749
1750 The function returns the initializer itself, or error_mark_node in case
1751 of error. */
1752
1753 static tree
1754 process_init_constructor (tree type, tree init, int nested,
1755 tsubst_flags_t complain)
1756 {
1757 int flags;
1758
1759 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
1760
1761 if (TREE_CODE (type) == ARRAY_TYPE || VECTOR_TYPE_P (type))
1762 flags = process_init_constructor_array (type, init, nested, complain);
1763 else if (TREE_CODE (type) == RECORD_TYPE)
1764 flags = process_init_constructor_record (type, init, nested, complain);
1765 else if (TREE_CODE (type) == UNION_TYPE)
1766 flags = process_init_constructor_union (type, init, nested, complain);
1767 else
1768 gcc_unreachable ();
1769
1770 if (flags & PICFLAG_ERRONEOUS)
1771 return error_mark_node;
1772
1773 TREE_TYPE (init) = type;
1774 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == NULL_TREE)
1775 cp_complete_array_type (&TREE_TYPE (init), init, /*do_default=*/0);
1776 if (flags & PICFLAG_SIDE_EFFECTS)
1777 {
1778 TREE_CONSTANT (init) = false;
1779 TREE_SIDE_EFFECTS (init) = true;
1780 }
1781 else if (flags & PICFLAG_NOT_ALL_CONSTANT)
1782 /* Make sure TREE_CONSTANT isn't set from build_constructor. */
1783 TREE_CONSTANT (init) = false;
1784 else
1785 {
1786 TREE_CONSTANT (init) = 1;
1787 if (!(flags & PICFLAG_NOT_ALL_SIMPLE))
1788 TREE_STATIC (init) = 1;
1789 }
1790 return init;
1791 }
1792 \f
1793 /* Given a structure or union value DATUM, construct and return
1794 the structure or union component which results from narrowing
1795 that value to the base specified in BASETYPE. For example, given the
1796 hierarchy
1797
1798 class L { int ii; };
1799 class A : L { ... };
1800 class B : L { ... };
1801 class C : A, B { ... };
1802
1803 and the declaration
1804
1805 C x;
1806
1807 then the expression
1808
1809 x.A::ii refers to the ii member of the L part of
1810 the A part of the C object named by X. In this case,
1811 DATUM would be x, and BASETYPE would be A.
1812
1813 I used to think that this was nonconformant, that the standard specified
1814 that first we look up ii in A, then convert x to an L& and pull out the
1815 ii part. But in fact, it does say that we convert x to an A&; A here
1816 is known as the "naming class". (jason 2000-12-19)
1817
1818 BINFO_P points to a variable initialized either to NULL_TREE or to the
1819 binfo for the specific base subobject we want to convert to. */
1820
1821 tree
1822 build_scoped_ref (tree datum, tree basetype, tree* binfo_p)
1823 {
1824 tree binfo;
1825
1826 if (datum == error_mark_node)
1827 return error_mark_node;
1828 if (*binfo_p)
1829 binfo = *binfo_p;
1830 else
1831 binfo = lookup_base (TREE_TYPE (datum), basetype, ba_check,
1832 NULL, tf_warning_or_error);
1833
1834 if (!binfo || binfo == error_mark_node)
1835 {
1836 *binfo_p = NULL_TREE;
1837 if (!binfo)
1838 error_not_base_type (basetype, TREE_TYPE (datum));
1839 return error_mark_node;
1840 }
1841
1842 *binfo_p = binfo;
1843 return build_base_path (PLUS_EXPR, datum, binfo, 1,
1844 tf_warning_or_error);
1845 }
1846
1847 /* Build a reference to an object specified by the C++ `->' operator.
1848 Usually this just involves dereferencing the object, but if the
1849 `->' operator is overloaded, then such overloads must be
1850 performed until an object which does not have the `->' operator
1851 overloaded is found. An error is reported when circular pointer
1852 delegation is detected. */
1853
1854 tree
1855 build_x_arrow (location_t loc, tree expr, tsubst_flags_t complain)
1856 {
1857 tree orig_expr = expr;
1858 tree type = TREE_TYPE (expr);
1859 tree last_rval = NULL_TREE;
1860 vec<tree, va_gc> *types_memoized = NULL;
1861
1862 if (type == error_mark_node)
1863 return error_mark_node;
1864
1865 if (processing_template_decl)
1866 {
1867 if (type && TYPE_PTR_P (type)
1868 && !dependent_scope_p (TREE_TYPE (type)))
1869 /* Pointer to current instantiation, don't treat as dependent. */;
1870 else if (type_dependent_expression_p (expr))
1871 return build_min_nt_loc (loc, ARROW_EXPR, expr);
1872 expr = build_non_dependent_expr (expr);
1873 }
1874
1875 if (MAYBE_CLASS_TYPE_P (type))
1876 {
1877 struct tinst_level *actual_inst = current_instantiation ();
1878 tree fn = NULL;
1879
1880 while ((expr = build_new_op (loc, COMPONENT_REF,
1881 LOOKUP_NORMAL, expr, NULL_TREE, NULL_TREE,
1882 &fn, complain)))
1883 {
1884 if (expr == error_mark_node)
1885 return error_mark_node;
1886
1887 /* This provides a better instantiation backtrace in case of
1888 error. */
1889 if (fn && DECL_USE_TEMPLATE (fn))
1890 push_tinst_level_loc (fn,
1891 (current_instantiation () != actual_inst)
1892 ? DECL_SOURCE_LOCATION (fn)
1893 : input_location);
1894 fn = NULL;
1895
1896 if (vec_member (TREE_TYPE (expr), types_memoized))
1897 {
1898 if (complain & tf_error)
1899 error ("circular pointer delegation detected");
1900 return error_mark_node;
1901 }
1902
1903 vec_safe_push (types_memoized, TREE_TYPE (expr));
1904 last_rval = expr;
1905 }
1906
1907 while (current_instantiation () != actual_inst)
1908 pop_tinst_level ();
1909
1910 if (last_rval == NULL_TREE)
1911 {
1912 if (complain & tf_error)
1913 error ("base operand of %<->%> has non-pointer type %qT", type);
1914 return error_mark_node;
1915 }
1916
1917 if (TYPE_REF_P (TREE_TYPE (last_rval)))
1918 last_rval = convert_from_reference (last_rval);
1919 }
1920 else
1921 last_rval = decay_conversion (expr, complain);
1922
1923 if (TYPE_PTR_P (TREE_TYPE (last_rval)))
1924 {
1925 if (processing_template_decl)
1926 {
1927 expr = build_min (ARROW_EXPR, TREE_TYPE (TREE_TYPE (last_rval)),
1928 orig_expr);
1929 TREE_SIDE_EFFECTS (expr) = TREE_SIDE_EFFECTS (last_rval);
1930 return expr;
1931 }
1932
1933 return cp_build_indirect_ref (last_rval, RO_ARROW, complain);
1934 }
1935
1936 if (complain & tf_error)
1937 {
1938 if (types_memoized)
1939 error ("result of %<operator->()%> yields non-pointer result");
1940 else
1941 error ("base operand of %<->%> is not a pointer");
1942 }
1943 return error_mark_node;
1944 }
1945
1946 /* Return an expression for "DATUM .* COMPONENT". DATUM has not
1947 already been checked out to be of aggregate type. */
1948
1949 tree
1950 build_m_component_ref (tree datum, tree component, tsubst_flags_t complain)
1951 {
1952 tree ptrmem_type;
1953 tree objtype;
1954 tree type;
1955 tree binfo;
1956 tree ctype;
1957
1958 if (error_operand_p (datum) || error_operand_p (component))
1959 return error_mark_node;
1960
1961 datum = mark_lvalue_use (datum);
1962 component = mark_rvalue_use (component);
1963
1964 ptrmem_type = TREE_TYPE (component);
1965 if (!TYPE_PTRMEM_P (ptrmem_type))
1966 {
1967 if (complain & tf_error)
1968 error ("%qE cannot be used as a member pointer, since it is of "
1969 "type %qT", component, ptrmem_type);
1970 return error_mark_node;
1971 }
1972
1973 objtype = TYPE_MAIN_VARIANT (TREE_TYPE (datum));
1974 if (! MAYBE_CLASS_TYPE_P (objtype))
1975 {
1976 if (complain & tf_error)
1977 error ("cannot apply member pointer %qE to %qE, which is of "
1978 "non-class type %qT", component, datum, objtype);
1979 return error_mark_node;
1980 }
1981
1982 type = TYPE_PTRMEM_POINTED_TO_TYPE (ptrmem_type);
1983 ctype = complete_type (TYPE_PTRMEM_CLASS_TYPE (ptrmem_type));
1984
1985 if (!COMPLETE_TYPE_P (ctype))
1986 {
1987 if (!same_type_p (ctype, objtype))
1988 goto mismatch;
1989 binfo = NULL;
1990 }
1991 else
1992 {
1993 binfo = lookup_base (objtype, ctype, ba_check, NULL, complain);
1994
1995 if (!binfo)
1996 {
1997 mismatch:
1998 if (complain & tf_error)
1999 error ("pointer to member type %qT incompatible with object "
2000 "type %qT", type, objtype);
2001 return error_mark_node;
2002 }
2003 else if (binfo == error_mark_node)
2004 return error_mark_node;
2005 }
2006
2007 if (TYPE_PTRDATAMEM_P (ptrmem_type))
2008 {
2009 bool is_lval = real_lvalue_p (datum);
2010 tree ptype;
2011
2012 /* Compute the type of the field, as described in [expr.ref].
2013 There's no such thing as a mutable pointer-to-member, so
2014 things are not as complex as they are for references to
2015 non-static data members. */
2016 type = cp_build_qualified_type (type,
2017 (cp_type_quals (type)
2018 | cp_type_quals (TREE_TYPE (datum))));
2019
2020 datum = build_address (datum);
2021
2022 /* Convert object to the correct base. */
2023 if (binfo)
2024 {
2025 datum = build_base_path (PLUS_EXPR, datum, binfo, 1, complain);
2026 if (datum == error_mark_node)
2027 return error_mark_node;
2028 }
2029
2030 /* Build an expression for "object + offset" where offset is the
2031 value stored in the pointer-to-data-member. */
2032 ptype = build_pointer_type (type);
2033 datum = fold_build_pointer_plus (fold_convert (ptype, datum), component);
2034 datum = cp_build_fold_indirect_ref (datum);
2035 if (datum == error_mark_node)
2036 return error_mark_node;
2037
2038 /* If the object expression was an rvalue, return an rvalue. */
2039 if (!is_lval)
2040 datum = move (datum);
2041 return datum;
2042 }
2043 else
2044 {
2045 /* 5.5/6: In a .* expression whose object expression is an rvalue, the
2046 program is ill-formed if the second operand is a pointer to member
2047 function with ref-qualifier & (for C++2A: unless its cv-qualifier-seq
2048 is const). In a .* expression whose object expression is an lvalue,
2049 the program is ill-formed if the second operand is a pointer to member
2050 function with ref-qualifier &&. */
2051 if (FUNCTION_REF_QUALIFIED (type))
2052 {
2053 bool lval = lvalue_p (datum);
2054 if (lval && FUNCTION_RVALUE_QUALIFIED (type))
2055 {
2056 if (complain & tf_error)
2057 error ("pointer-to-member-function type %qT requires an rvalue",
2058 ptrmem_type);
2059 return error_mark_node;
2060 }
2061 else if (!lval && !FUNCTION_RVALUE_QUALIFIED (type))
2062 {
2063 if ((type_memfn_quals (type)
2064 & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE))
2065 != TYPE_QUAL_CONST)
2066 {
2067 if (complain & tf_error)
2068 error ("pointer-to-member-function type %qT requires "
2069 "an lvalue", ptrmem_type);
2070 return error_mark_node;
2071 }
2072 else if (cxx_dialect < cxx2a)
2073 {
2074 if (complain & tf_warning_or_error)
2075 pedwarn (input_location, OPT_Wpedantic,
2076 "pointer-to-member-function type %qT requires "
2077 "an lvalue before C++2a", ptrmem_type);
2078 else
2079 return error_mark_node;
2080 }
2081 }
2082 }
2083 return build2 (OFFSET_REF, type, datum, component);
2084 }
2085 }
2086
2087 /* Return a tree node for the expression TYPENAME '(' PARMS ')'. */
2088
2089 tree
2090 build_functional_cast (tree exp, tree parms, tsubst_flags_t complain)
2091 {
2092 /* This is either a call to a constructor,
2093 or a C cast in C++'s `functional' notation. */
2094
2095 /* The type to which we are casting. */
2096 tree type;
2097 vec<tree, va_gc> *parmvec;
2098
2099 if (error_operand_p (exp) || parms == error_mark_node)
2100 return error_mark_node;
2101
2102 if (TREE_CODE (exp) == TYPE_DECL)
2103 {
2104 type = TREE_TYPE (exp);
2105
2106 if (DECL_ARTIFICIAL (exp))
2107 cp_warn_deprecated_use (type);
2108 }
2109 else
2110 type = exp;
2111
2112 /* We need to check this explicitly, since value-initialization of
2113 arrays is allowed in other situations. */
2114 if (TREE_CODE (type) == ARRAY_TYPE)
2115 {
2116 if (complain & tf_error)
2117 error ("functional cast to array type %qT", type);
2118 return error_mark_node;
2119 }
2120
2121 if (tree anode = type_uses_auto (type))
2122 {
2123 if (!CLASS_PLACEHOLDER_TEMPLATE (anode))
2124 {
2125 if (complain & tf_error)
2126 error_at (DECL_SOURCE_LOCATION (TEMPLATE_TYPE_DECL (anode)),
2127 "invalid use of %qT", anode);
2128 return error_mark_node;
2129 }
2130 else if (!parms)
2131 {
2132 if (complain & tf_error)
2133 error ("cannot deduce template arguments for %qT from ()", anode);
2134 return error_mark_node;
2135 }
2136 else
2137 type = do_auto_deduction (type, parms, anode, complain,
2138 adc_variable_type);
2139 }
2140
2141 if (processing_template_decl)
2142 {
2143 tree t;
2144
2145 /* Diagnose this even in a template. We could also try harder
2146 to give all the usual errors when the type and args are
2147 non-dependent... */
2148 if (TYPE_REF_P (type) && !parms)
2149 {
2150 if (complain & tf_error)
2151 error ("invalid value-initialization of reference type");
2152 return error_mark_node;
2153 }
2154
2155 t = build_min (CAST_EXPR, type, parms);
2156 /* We don't know if it will or will not have side effects. */
2157 TREE_SIDE_EFFECTS (t) = 1;
2158 return t;
2159 }
2160
2161 if (! MAYBE_CLASS_TYPE_P (type))
2162 {
2163 if (parms == NULL_TREE)
2164 {
2165 if (VOID_TYPE_P (type))
2166 return void_node;
2167 return build_value_init (cv_unqualified (type), complain);
2168 }
2169
2170 /* This must build a C cast. */
2171 parms = build_x_compound_expr_from_list (parms, ELK_FUNC_CAST, complain);
2172 return cp_build_c_cast (type, parms, complain);
2173 }
2174
2175 /* Prepare to evaluate as a call to a constructor. If this expression
2176 is actually used, for example,
2177
2178 return X (arg1, arg2, ...);
2179
2180 then the slot being initialized will be filled in. */
2181
2182 if (!complete_type_or_maybe_complain (type, NULL_TREE, complain))
2183 return error_mark_node;
2184 if (abstract_virtuals_error_sfinae (ACU_CAST, type, complain))
2185 return error_mark_node;
2186
2187 /* [expr.type.conv]
2188
2189 If the expression list is a single-expression, the type
2190 conversion is equivalent (in definedness, and if defined in
2191 meaning) to the corresponding cast expression. */
2192 if (parms && TREE_CHAIN (parms) == NULL_TREE)
2193 return cp_build_c_cast (type, TREE_VALUE (parms), complain);
2194
2195 /* [expr.type.conv]
2196
2197 The expression T(), where T is a simple-type-specifier for a
2198 non-array complete object type or the (possibly cv-qualified)
2199 void type, creates an rvalue of the specified type, which is
2200 value-initialized. */
2201
2202 if (parms == NULL_TREE)
2203 {
2204 exp = build_value_init (type, complain);
2205 exp = get_target_expr_sfinae (exp, complain);
2206 return exp;
2207 }
2208
2209 /* Call the constructor. */
2210 parmvec = make_tree_vector ();
2211 for (; parms != NULL_TREE; parms = TREE_CHAIN (parms))
2212 vec_safe_push (parmvec, TREE_VALUE (parms));
2213 exp = build_special_member_call (NULL_TREE, complete_ctor_identifier,
2214 &parmvec, type, LOOKUP_NORMAL, complain);
2215 release_tree_vector (parmvec);
2216
2217 if (exp == error_mark_node)
2218 return error_mark_node;
2219
2220 return build_cplus_new (type, exp, complain);
2221 }
2222 \f
2223
2224 /* Add new exception specifier SPEC, to the LIST we currently have.
2225 If it's already in LIST then do nothing.
2226 Moan if it's bad and we're allowed to. COMPLAIN < 0 means we
2227 know what we're doing. */
2228
2229 tree
2230 add_exception_specifier (tree list, tree spec, tsubst_flags_t complain)
2231 {
2232 bool ok;
2233 tree core = spec;
2234 bool is_ptr;
2235 diagnostic_t diag_type = DK_UNSPECIFIED; /* none */
2236
2237 if (spec == error_mark_node)
2238 return list;
2239
2240 gcc_assert (spec && (!list || TREE_VALUE (list)));
2241
2242 /* [except.spec] 1, type in an exception specifier shall not be
2243 incomplete, or pointer or ref to incomplete other than pointer
2244 to cv void. */
2245 is_ptr = TYPE_PTR_P (core);
2246 if (is_ptr || TYPE_REF_P (core))
2247 core = TREE_TYPE (core);
2248 if (complain < 0)
2249 ok = true;
2250 else if (VOID_TYPE_P (core))
2251 ok = is_ptr;
2252 else if (TREE_CODE (core) == TEMPLATE_TYPE_PARM)
2253 ok = true;
2254 else if (processing_template_decl)
2255 ok = true;
2256 else
2257 {
2258 ok = true;
2259 /* 15.4/1 says that types in an exception specifier must be complete,
2260 but it seems more reasonable to only require this on definitions
2261 and calls. So just give a pedwarn at this point; we will give an
2262 error later if we hit one of those two cases. */
2263 if (!COMPLETE_TYPE_P (complete_type (core)))
2264 diag_type = DK_PEDWARN; /* pedwarn */
2265 }
2266
2267 if (ok)
2268 {
2269 tree probe;
2270
2271 for (probe = list; probe; probe = TREE_CHAIN (probe))
2272 if (same_type_p (TREE_VALUE (probe), spec))
2273 break;
2274 if (!probe)
2275 list = tree_cons (NULL_TREE, spec, list);
2276 }
2277 else
2278 diag_type = DK_ERROR; /* error */
2279
2280 if (diag_type != DK_UNSPECIFIED
2281 && (complain & tf_warning_or_error))
2282 cxx_incomplete_type_diagnostic (NULL_TREE, core, diag_type);
2283
2284 return list;
2285 }
2286
2287 /* Like nothrow_spec_p, but don't abort on deferred noexcept. */
2288
2289 static bool
2290 nothrow_spec_p_uninst (const_tree spec)
2291 {
2292 if (DEFERRED_NOEXCEPT_SPEC_P (spec))
2293 return false;
2294 return nothrow_spec_p (spec);
2295 }
2296
2297 /* Combine the two exceptions specifier lists LIST and ADD, and return
2298 their union. */
2299
2300 tree
2301 merge_exception_specifiers (tree list, tree add)
2302 {
2303 tree noex, orig_list;
2304
2305 /* No exception-specifier or noexcept(false) are less strict than
2306 anything else. Prefer the newer variant (LIST). */
2307 if (!list || list == noexcept_false_spec)
2308 return list;
2309 else if (!add || add == noexcept_false_spec)
2310 return add;
2311
2312 /* noexcept(true) and throw() are stricter than anything else.
2313 As above, prefer the more recent one (LIST). */
2314 if (nothrow_spec_p_uninst (add))
2315 return list;
2316
2317 /* Two implicit noexcept specs (e.g. on a destructor) are equivalent. */
2318 if (UNEVALUATED_NOEXCEPT_SPEC_P (add)
2319 && UNEVALUATED_NOEXCEPT_SPEC_P (list))
2320 return list;
2321 /* We should have instantiated other deferred noexcept specs by now. */
2322 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (add));
2323
2324 if (nothrow_spec_p_uninst (list))
2325 return add;
2326 noex = TREE_PURPOSE (list);
2327 gcc_checking_assert (!TREE_PURPOSE (add)
2328 || errorcount || !flag_exceptions
2329 || cp_tree_equal (noex, TREE_PURPOSE (add)));
2330
2331 /* Combine the dynamic-exception-specifiers, if any. */
2332 orig_list = list;
2333 for (; add && TREE_VALUE (add); add = TREE_CHAIN (add))
2334 {
2335 tree spec = TREE_VALUE (add);
2336 tree probe;
2337
2338 for (probe = orig_list; probe && TREE_VALUE (probe);
2339 probe = TREE_CHAIN (probe))
2340 if (same_type_p (TREE_VALUE (probe), spec))
2341 break;
2342 if (!probe)
2343 {
2344 spec = build_tree_list (NULL_TREE, spec);
2345 TREE_CHAIN (spec) = list;
2346 list = spec;
2347 }
2348 }
2349
2350 /* Keep the noexcept-specifier at the beginning of the list. */
2351 if (noex != TREE_PURPOSE (list))
2352 list = tree_cons (noex, TREE_VALUE (list), TREE_CHAIN (list));
2353
2354 return list;
2355 }
2356
2357 /* Subroutine of build_call. Ensure that each of the types in the
2358 exception specification is complete. Technically, 15.4/1 says that
2359 they need to be complete when we see a declaration of the function,
2360 but we should be able to get away with only requiring this when the
2361 function is defined or called. See also add_exception_specifier. */
2362
2363 void
2364 require_complete_eh_spec_types (tree fntype, tree decl)
2365 {
2366 tree raises;
2367 /* Don't complain about calls to op new. */
2368 if (decl && DECL_ARTIFICIAL (decl))
2369 return;
2370 for (raises = TYPE_RAISES_EXCEPTIONS (fntype); raises;
2371 raises = TREE_CHAIN (raises))
2372 {
2373 tree type = TREE_VALUE (raises);
2374 if (type && !COMPLETE_TYPE_P (type))
2375 {
2376 if (decl)
2377 error
2378 ("call to function %qD which throws incomplete type %q#T",
2379 decl, type);
2380 else
2381 error ("call to function which throws incomplete type %q#T",
2382 decl);
2383 }
2384 }
2385 }
2386
2387 \f
2388 #include "gt-cp-typeck2.h"