1 /* Report error messages, build initializers, and perform
2 some front-end optimizations for C++ compiler.
3 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 Hacked by Michael Tiemann (tiemann@cygnus.com)
6 This file is part of GCC.
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)
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.
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/>. */
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. */
30 #include "coretypes.h"
33 #include "stor-layout.h"
38 #include "diagnostic-core.h"
42 process_init_constructor (tree type
, tree init
, tsubst_flags_t complain
);
45 /* Print an error message stemming from an attempt to use
46 BASETYPE as a base class for TYPE. */
49 error_not_base_type (tree basetype
, tree type
)
51 if (TREE_CODE (basetype
) == FUNCTION_DECL
)
52 basetype
= DECL_CONTEXT (basetype
);
53 error ("type %qT is not a base type for type %qT", basetype
, type
);
54 return error_mark_node
;
58 binfo_or_else (tree base
, tree type
)
60 tree binfo
= lookup_base (type
, base
, ba_unique
,
61 NULL
, tf_warning_or_error
);
63 if (binfo
== error_mark_node
)
66 error_not_base_type (base
, type
);
70 /* According to ARM $7.1.6, "A `const' object may be initialized, but its
71 value may not be changed thereafter. */
74 cxx_readonly_error (tree arg
, enum lvalue_use errstring
)
77 /* This macro is used to emit diagnostics to ensure that all format
78 strings are complete sentences, visible to gettext and checked at
81 #define ERROR_FOR_ASSIGNMENT(AS, ASM, IN, DE, ARG) \
102 /* Handle C++-specific things first. */
105 && DECL_LANG_SPECIFIC (arg
)
106 && DECL_IN_AGGR_P (arg
)
107 && !TREE_STATIC (arg
))
108 ERROR_FOR_ASSIGNMENT (G_("assignment of "
109 "constant field %qD"),
110 G_("constant field %qD "
111 "used as %<asm%> output"),
113 "constant field %qD"),
115 "constant field %qD"),
117 else if (INDIRECT_REF_P (arg
)
118 && TREE_CODE (TREE_TYPE (TREE_OPERAND (arg
, 0))) == REFERENCE_TYPE
119 && (VAR_P (TREE_OPERAND (arg
, 0))
120 || TREE_CODE (TREE_OPERAND (arg
, 0)) == PARM_DECL
))
121 ERROR_FOR_ASSIGNMENT (G_("assignment of "
122 "read-only reference %qD"),
123 G_("read-only reference %qD "
124 "used as %<asm%> output"),
126 "read-only reference %qD"),
128 "read-only reference %qD"),
129 TREE_OPERAND (arg
, 0));
131 readonly_error (input_location
, arg
, errstring
);
135 /* Structure that holds information about declarations whose type was
136 incomplete and we could not check whether it was abstract or not. */
138 struct GTY((chain_next ("%h.next"))) pending_abstract_type
{
139 /* Declaration which we are checking for abstractness. It is either
140 a DECL node, or an IDENTIFIER_NODE if we do not have a full
141 declaration available. */
144 /* Type which will be checked for abstractness. */
147 /* Kind of use in an unnamed declarator. */
148 abstract_class_use use
;
150 /* Position of the declaration. This is only needed for IDENTIFIER_NODEs,
151 because DECLs already carry locus information. */
154 /* Link to the next element in list. */
155 struct pending_abstract_type
* next
;
159 /* Compute the hash value of the node VAL. This function is used by the
160 hash table abstract_pending_vars. */
163 pat_calc_hash (const void* val
)
165 const struct pending_abstract_type
*pat
=
166 (const struct pending_abstract_type
*) val
;
167 return (hashval_t
) TYPE_UID (pat
->type
);
171 /* Compare node VAL1 with the type VAL2. This function is used by the
172 hash table abstract_pending_vars. */
175 pat_compare (const void* val1
, const void* val2
)
177 const struct pending_abstract_type
*const pat1
=
178 (const struct pending_abstract_type
*) val1
;
179 const_tree
const type2
= (const_tree
)val2
;
181 return (pat1
->type
== type2
);
184 /* Hash table that maintains pending_abstract_type nodes, for which we still
185 need to check for type abstractness. The key of the table is the type
186 of the declaration. */
187 static GTY ((param_is (struct pending_abstract_type
)))
188 htab_t abstract_pending_vars
= NULL
;
190 static int abstract_virtuals_error_sfinae (tree
, tree
, abstract_class_use
, tsubst_flags_t
);
192 /* This function is called after TYPE is completed, and will check if there
193 are pending declarations for which we still need to verify the abstractness
194 of TYPE, and emit a diagnostic (through abstract_virtuals_error) if TYPE
195 turned out to be incomplete. */
198 complete_type_check_abstract (tree type
)
201 struct pending_abstract_type
*pat
;
202 location_t cur_loc
= input_location
;
204 gcc_assert (COMPLETE_TYPE_P (type
));
206 if (!abstract_pending_vars
)
209 /* Retrieve the list of pending declarations for this type. */
210 slot
= htab_find_slot_with_hash (abstract_pending_vars
, type
,
211 (hashval_t
)TYPE_UID (type
), NO_INSERT
);
214 pat
= (struct pending_abstract_type
*)*slot
;
217 /* If the type is not abstract, do not do anything. */
218 if (CLASSTYPE_PURE_VIRTUALS (type
))
220 struct pending_abstract_type
*prev
= 0, *next
;
222 /* Reverse the list to emit the errors in top-down order. */
223 for (; pat
; pat
= next
)
231 /* Go through the list, and call abstract_virtuals_error for each
232 element: it will issue a diagnostic if the type is abstract. */
235 gcc_assert (type
== pat
->type
);
237 /* Tweak input_location so that the diagnostic appears at the correct
238 location. Notice that this is only needed if the decl is an
240 input_location
= pat
->locus
;
241 abstract_virtuals_error_sfinae (pat
->decl
, pat
->type
, pat
->use
,
242 tf_warning_or_error
);
247 htab_clear_slot (abstract_pending_vars
, slot
);
249 input_location
= cur_loc
;
253 /* If TYPE has abstract virtual functions, issue an error about trying
254 to create an object of that type. DECL is the object declared, or
255 NULL_TREE if the declaration is unavailable, in which case USE specifies
256 the kind of invalid use. Returns 1 if an error occurred; zero if
260 abstract_virtuals_error_sfinae (tree decl
, tree type
, abstract_class_use use
,
261 tsubst_flags_t complain
)
263 vec
<tree
, va_gc
> *pure
;
265 /* This function applies only to classes. Any other entity can never
267 if (!CLASS_TYPE_P (type
))
269 type
= TYPE_MAIN_VARIANT (type
);
272 /* Instantiation here seems to be required by the standard,
273 but breaks e.g. boost::bind. FIXME! */
274 /* In SFINAE, non-N3276 context, force instantiation. */
275 if (!(complain
& (tf_error
|tf_decltype
)))
276 complete_type (type
);
279 /* If the type is incomplete, we register it within a hash table,
280 so that we can check again once it is completed. This makes sense
281 only for objects for which we have a declaration or at least a
283 if (!COMPLETE_TYPE_P (type
) && (complain
& tf_error
))
286 struct pending_abstract_type
*pat
;
288 gcc_assert (!decl
|| DECL_P (decl
) || identifier_p (decl
));
290 if (!abstract_pending_vars
)
291 abstract_pending_vars
= htab_create_ggc (31, &pat_calc_hash
,
294 slot
= htab_find_slot_with_hash (abstract_pending_vars
, type
,
295 (hashval_t
)TYPE_UID (type
), INSERT
);
297 pat
= ggc_alloc
<pending_abstract_type
> ();
301 pat
->locus
= ((decl
&& DECL_P (decl
))
302 ? DECL_SOURCE_LOCATION (decl
)
305 pat
->next
= (struct pending_abstract_type
*) *slot
;
311 if (!TYPE_SIZE (type
))
312 /* TYPE is being defined, and during that time
313 CLASSTYPE_PURE_VIRTUALS holds the inline friends. */
316 pure
= CLASSTYPE_PURE_VIRTUALS (type
);
320 if (!(complain
& tf_error
))
326 error ("cannot declare variable %q+D to be of abstract "
327 "type %qT", decl
, type
);
328 else if (TREE_CODE (decl
) == PARM_DECL
)
330 if (DECL_NAME (decl
))
331 error ("cannot declare parameter %q+D to be of abstract type %qT",
334 error ("cannot declare parameter to be of abstract type %qT",
337 else if (TREE_CODE (decl
) == FIELD_DECL
)
338 error ("cannot declare field %q+D to be of abstract type %qT",
340 else if (TREE_CODE (decl
) == FUNCTION_DECL
341 && TREE_CODE (TREE_TYPE (decl
)) == METHOD_TYPE
)
342 error ("invalid abstract return type for member function %q+#D", decl
);
343 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
344 error ("invalid abstract return type for function %q+#D", decl
);
345 else if (identifier_p (decl
))
346 /* Here we do not have location information. */
347 error ("invalid abstract type %qT for %qE", type
, decl
);
349 error ("invalid abstract type for %q+D", decl
);
354 error ("creating array of %qT, which is an abstract class type", type
);
357 error ("invalid cast to abstract class type %qT", type
);
360 error ("invalid new-expression of abstract class type %qT", type
);
363 error ("invalid abstract return type %qT", type
);
366 error ("invalid abstract parameter type %qT", type
);
369 error ("expression of abstract class type %qT cannot "
370 "be used in throw-expression", type
);
373 error ("cannot declare catch parameter to be of abstract "
374 "class type %qT", type
);
377 error ("cannot allocate an object of abstract type %qT", type
);
380 /* Only go through this once. */
386 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type
)),
387 " because the following virtual functions are pure within %qT:",
390 FOR_EACH_VEC_ELT (*pure
, ix
, fn
)
391 if (! DECL_CLONED_FUNCTION_P (fn
)
392 || DECL_COMPLETE_DESTRUCTOR_P (fn
))
393 inform (input_location
, "\t%+#D", fn
);
395 /* Now truncate the vector. This leaves it non-null, so we know
396 there are pure virtuals, but empty so we don't list them out
405 abstract_virtuals_error_sfinae (tree decl
, tree type
, tsubst_flags_t complain
)
407 return abstract_virtuals_error_sfinae (decl
, type
, ACU_UNKNOWN
, complain
);
411 abstract_virtuals_error_sfinae (abstract_class_use use
, tree type
,
412 tsubst_flags_t complain
)
414 return abstract_virtuals_error_sfinae (NULL_TREE
, type
, use
, complain
);
418 /* Wrapper for the above function in the common case of wanting errors. */
421 abstract_virtuals_error (tree decl
, tree type
)
423 return abstract_virtuals_error_sfinae (decl
, type
, tf_warning_or_error
);
427 abstract_virtuals_error (abstract_class_use use
, tree type
)
429 return abstract_virtuals_error_sfinae (use
, type
, tf_warning_or_error
);
432 /* Print an inform about the declaration of the incomplete type TYPE. */
435 cxx_incomplete_type_inform (const_tree type
)
437 if (!TYPE_MAIN_DECL (type
))
440 location_t loc
= DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type
));
441 tree ptype
= strip_top_quals (CONST_CAST_TREE (type
));
443 if (current_class_type
444 && TYPE_BEING_DEFINED (current_class_type
)
445 && same_type_p (ptype
, current_class_type
))
446 inform (loc
, "definition of %q#T is not complete until "
447 "the closing brace", ptype
);
448 else if (!TYPE_TEMPLATE_INFO (ptype
))
449 inform (loc
, "forward declaration of %q#T", ptype
);
451 inform (loc
, "declaration of %q#T", ptype
);
454 /* Print an error message for invalid use of an incomplete type.
455 VALUE is the expression that was used (or 0 if that isn't known)
456 and TYPE is the type that was invalid. DIAG_KIND indicates the
457 type of diagnostic (see diagnostic.def). */
460 cxx_incomplete_type_diagnostic (const_tree value
, const_tree type
,
461 diagnostic_t diag_kind
)
463 bool is_decl
= false, complained
= false;
465 gcc_assert (diag_kind
== DK_WARNING
466 || diag_kind
== DK_PEDWARN
467 || diag_kind
== DK_ERROR
);
469 /* Avoid duplicate error message. */
470 if (TREE_CODE (type
) == ERROR_MARK
)
473 if (value
!= 0 && (VAR_P (value
)
474 || TREE_CODE (value
) == PARM_DECL
475 || TREE_CODE (value
) == FIELD_DECL
))
477 complained
= emit_diagnostic (diag_kind
, input_location
, 0,
478 "%q+D has incomplete type", value
);
482 /* We must print an error message. Be clever about what it says. */
484 switch (TREE_CODE (type
))
490 complained
= emit_diagnostic (diag_kind
, input_location
, 0,
491 "invalid use of incomplete type %q#T",
494 cxx_incomplete_type_inform (type
);
498 emit_diagnostic (diag_kind
, input_location
, 0,
499 "invalid use of %qT", type
);
503 if (TYPE_DOMAIN (type
))
505 type
= TREE_TYPE (type
);
508 emit_diagnostic (diag_kind
, input_location
, 0,
509 "invalid use of array with unspecified bounds");
515 tree member
= TREE_OPERAND (value
, 1);
516 if (is_overloaded_fn (member
))
517 member
= get_first_fn (member
);
518 if (DECL_FUNCTION_MEMBER_P (member
)
519 && ! flag_ms_extensions
)
520 emit_diagnostic (diag_kind
, input_location
, 0,
521 "invalid use of member function "
522 "(did you forget the %<()%> ?)");
524 emit_diagnostic (diag_kind
, input_location
, 0,
525 "invalid use of member "
526 "(did you forget the %<&%> ?)");
530 case TEMPLATE_TYPE_PARM
:
532 emit_diagnostic (diag_kind
, input_location
, 0,
533 "invalid use of %<auto%>");
535 emit_diagnostic (diag_kind
, input_location
, 0,
536 "invalid use of template type parameter %qT", type
);
539 case BOUND_TEMPLATE_TEMPLATE_PARM
:
540 emit_diagnostic (diag_kind
, input_location
, 0,
541 "invalid use of template template parameter %qT",
546 emit_diagnostic (diag_kind
, input_location
, 0,
547 "invalid use of dependent type %qT", type
);
551 if (type
== init_list_type_node
)
553 emit_diagnostic (diag_kind
, input_location
, 0,
554 "invalid use of brace-enclosed initializer list");
557 gcc_assert (type
== unknown_type_node
);
558 if (value
&& TREE_CODE (value
) == COMPONENT_REF
)
560 else if (value
&& TREE_CODE (value
) == ADDR_EXPR
)
561 emit_diagnostic (diag_kind
, input_location
, 0,
562 "address of overloaded function with no contextual "
564 else if (value
&& TREE_CODE (value
) == OVERLOAD
)
565 emit_diagnostic (diag_kind
, input_location
, 0,
566 "overloaded function with no contextual type information");
568 emit_diagnostic (diag_kind
, input_location
, 0,
569 "insufficient contextual information to determine type");
577 /* Backward-compatibility interface to incomplete_type_diagnostic;
578 required by ../tree.c. */
579 #undef cxx_incomplete_type_error
581 cxx_incomplete_type_error (const_tree value
, const_tree type
)
583 cxx_incomplete_type_diagnostic (value
, type
, DK_ERROR
);
587 /* The recursive part of split_nonconstant_init. DEST is an lvalue
588 expression to which INIT should be assigned. INIT is a CONSTRUCTOR.
589 Return true if the whole of the value was initialized by the
590 generated statements. */
593 split_nonconstant_init_1 (tree dest
, tree init
)
595 unsigned HOST_WIDE_INT idx
;
596 tree field_index
, value
;
597 tree type
= TREE_TYPE (dest
);
598 tree inner_type
= NULL
;
599 bool array_type_p
= false;
600 bool complete_p
= true;
601 HOST_WIDE_INT num_split_elts
= 0;
603 switch (TREE_CODE (type
))
606 inner_type
= TREE_TYPE (type
);
612 case QUAL_UNION_TYPE
:
613 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init
), idx
,
616 /* The current implementation of this algorithm assumes that
617 the field was set for all the elements. This is usually done
618 by process_init_constructor. */
619 gcc_assert (field_index
);
622 inner_type
= TREE_TYPE (field_index
);
624 if (TREE_CODE (value
) == CONSTRUCTOR
)
629 sub
= build4 (ARRAY_REF
, inner_type
, dest
, field_index
,
630 NULL_TREE
, NULL_TREE
);
632 sub
= build3 (COMPONENT_REF
, inner_type
, dest
, field_index
,
635 if (!split_nonconstant_init_1 (sub
, value
))
639 else if (!initializer_constant_valid_p (value
, inner_type
))
644 /* FIXME: Ordered removal is O(1) so the whole function is
645 worst-case quadratic. This could be fixed using an aside
646 bitmap to record which elements must be removed and remove
647 them all at the same time. Or by merging
648 split_non_constant_init into process_init_constructor_array,
649 that is separating constants from non-constants while building
651 CONSTRUCTOR_ELTS (init
)->ordered_remove (idx
);
654 if (TREE_CODE (field_index
) == RANGE_EXPR
)
656 /* Use build_vec_init to initialize a range. */
657 tree low
= TREE_OPERAND (field_index
, 0);
658 tree hi
= TREE_OPERAND (field_index
, 1);
659 sub
= build4 (ARRAY_REF
, inner_type
, dest
, low
,
660 NULL_TREE
, NULL_TREE
);
661 sub
= cp_build_addr_expr (sub
, tf_warning_or_error
);
662 tree max
= size_binop (MINUS_EXPR
, hi
, low
);
663 code
= build_vec_init (sub
, max
, value
, false, 0,
664 tf_warning_or_error
);
666 if (tree_fits_shwi_p (max
))
667 num_split_elts
+= tree_to_shwi (max
);
672 sub
= build4 (ARRAY_REF
, inner_type
, dest
, field_index
,
673 NULL_TREE
, NULL_TREE
);
675 sub
= build3 (COMPONENT_REF
, inner_type
, dest
, field_index
,
678 code
= build2 (INIT_EXPR
, inner_type
, sub
, value
);
679 code
= build_stmt (input_location
, EXPR_STMT
, code
);
680 code
= maybe_cleanup_point_expr_void (code
);
682 if (type_build_dtor_call (inner_type
))
684 code
= (build_special_member_call
685 (sub
, complete_dtor_identifier
, NULL
, inner_type
,
686 LOOKUP_NORMAL
, tf_warning_or_error
));
687 if (!TYPE_HAS_TRIVIAL_DESTRUCTOR (inner_type
))
688 finish_eh_cleanup (code
);
698 if (!initializer_constant_valid_p (init
, type
))
701 tree cons
= copy_node (init
);
702 CONSTRUCTOR_ELTS (init
) = NULL
;
703 code
= build2 (MODIFY_EXPR
, type
, dest
, cons
);
704 code
= build_stmt (input_location
, EXPR_STMT
, code
);
706 num_split_elts
+= CONSTRUCTOR_NELTS (init
);
714 /* The rest of the initializer is now a constant. */
715 TREE_CONSTANT (init
) = 1;
716 return complete_p
&& complete_ctor_at_level_p (TREE_TYPE (init
),
717 num_split_elts
, inner_type
);
720 /* A subroutine of store_init_value. Splits non-constant static
721 initializer INIT into a constant part and generates code to
722 perform the non-constant part of the initialization to DEST.
723 Returns the code for the runtime init. */
726 split_nonconstant_init (tree dest
, tree init
)
730 if (TREE_CODE (init
) == CONSTRUCTOR
)
732 code
= push_stmt_list ();
733 if (split_nonconstant_init_1 (dest
, init
))
735 code
= pop_stmt_list (code
);
736 DECL_INITIAL (dest
) = init
;
737 TREE_READONLY (dest
) = 0;
740 code
= build2 (INIT_EXPR
, TREE_TYPE (dest
), dest
, init
);
745 /* Perform appropriate conversions on the initial value of a variable,
746 store it in the declaration DECL,
747 and print any error messages that are appropriate.
748 If the init is invalid, store an ERROR_MARK.
750 C++: Note that INIT might be a TREE_LIST, which would mean that it is
751 a base class initializer for some aggregate type, hopefully compatible
752 with DECL. If INIT is a single element, and DECL is an aggregate
753 type, we silently convert INIT into a TREE_LIST, allowing a constructor
756 If INIT is a TREE_LIST and there is no constructor, turn INIT
757 into a CONSTRUCTOR and use standard initialization techniques.
758 Perhaps a warning should be generated?
760 Returns code to be executed if initialization could not be performed
761 for static variable. In that case, caller must emit the code. */
764 store_init_value (tree decl
, tree init
, vec
<tree
, va_gc
>** cleanups
, int flags
)
768 /* If variable's type was invalidly declared, just ignore it. */
770 type
= TREE_TYPE (decl
);
771 if (TREE_CODE (type
) == ERROR_MARK
)
774 if (MAYBE_CLASS_TYPE_P (type
))
776 if (TREE_CODE (init
) == TREE_LIST
)
778 error ("constructor syntax used, but no constructor declared "
779 "for type %qT", type
);
780 init
= build_constructor_from_list (init_list_type_node
, nreverse (init
));
784 /* End of special C++ code. */
786 if (flags
& LOOKUP_ALREADY_DIGESTED
)
789 /* Digest the specified initializer into an expression. */
790 value
= digest_init_flags (type
, init
, flags
);
792 value
= extend_ref_init_temps (decl
, value
, cleanups
);
794 /* In C++0x constant expression is a semantic, not syntactic, property.
795 In C++98, make sure that what we thought was a constant expression at
796 template definition time is still constant and otherwise perform this
797 as optimization, e.g. to fold SIZEOF_EXPRs in the initializer. */
798 if (decl_maybe_constant_var_p (decl
) || TREE_STATIC (decl
))
801 value
= fold_non_dependent_expr (value
);
802 if (DECL_DECLARED_CONSTEXPR_P (decl
)
803 || DECL_IN_AGGR_P (decl
))
805 /* Diagnose a non-constant initializer for constexpr. */
806 if (processing_template_decl
807 && !require_potential_constant_expression (value
))
808 value
= error_mark_node
;
810 value
= cxx_constant_value (value
);
812 value
= maybe_constant_init (value
);
813 const_init
= (reduced_constant_expression_p (value
)
814 || error_operand_p (value
));
815 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
) = const_init
;
816 TREE_CONSTANT (decl
) = const_init
&& decl_maybe_constant_var_p (decl
);
819 /* If the initializer is not a constant, fill in DECL_INITIAL with
820 the bits that are constant, and then return an expression that
821 will perform the dynamic initialization. */
822 if (value
!= error_mark_node
823 && (TREE_SIDE_EFFECTS (value
)
824 || array_of_runtime_bound_p (type
)
825 || ! reduced_constant_expression_p (value
)))
827 if (TREE_CODE (type
) == ARRAY_TYPE
828 && (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (type
))
829 || array_of_runtime_bound_p (type
)))
830 /* For an array, we only need/want a single cleanup region rather
831 than one per element. */
832 return build_vec_init (decl
, NULL_TREE
, value
, false, 1,
833 tf_warning_or_error
);
835 return split_nonconstant_init (decl
, value
);
837 /* If the value is a constant, just put it in DECL_INITIAL. If DECL
838 is an automatic variable, the middle end will turn this into a
839 dynamic initialization later. */
840 DECL_INITIAL (decl
) = value
;
845 /* Give diagnostic about narrowing conversions within { }. */
848 check_narrowing (tree type
, tree init
, tsubst_flags_t complain
)
850 tree ftype
= unlowered_expr_type (init
);
854 if (((!warn_narrowing
|| !(complain
& tf_warning
))
855 && cxx_dialect
== cxx98
)
856 || !ARITHMETIC_TYPE_P (type
))
859 if (BRACE_ENCLOSED_INITIALIZER_P (init
)
860 && TREE_CODE (type
) == COMPLEX_TYPE
)
862 tree elttype
= TREE_TYPE (type
);
863 if (CONSTRUCTOR_NELTS (init
) > 0)
864 ok
&= check_narrowing (elttype
, CONSTRUCTOR_ELT (init
, 0)->value
,
866 if (CONSTRUCTOR_NELTS (init
) > 1)
867 ok
&= check_narrowing (elttype
, CONSTRUCTOR_ELT (init
, 1)->value
,
872 init
= maybe_constant_value (fold_non_dependent_expr_sfinae (init
, tf_none
));
874 if (TREE_CODE (type
) == INTEGER_TYPE
875 && TREE_CODE (ftype
) == REAL_TYPE
)
877 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype
)
878 && CP_INTEGRAL_TYPE_P (type
))
880 if (TREE_CODE (ftype
) == ENUMERAL_TYPE
)
881 /* Check for narrowing based on the values of the enumeration. */
882 ftype
= ENUM_UNDERLYING_TYPE (ftype
);
883 if ((tree_int_cst_lt (TYPE_MAX_VALUE (type
),
884 TYPE_MAX_VALUE (ftype
))
885 || tree_int_cst_lt (TYPE_MIN_VALUE (ftype
),
886 TYPE_MIN_VALUE (type
)))
887 && (TREE_CODE (init
) != INTEGER_CST
888 || !int_fits_type_p (init
, type
)))
891 else if (TREE_CODE (ftype
) == REAL_TYPE
892 && TREE_CODE (type
) == REAL_TYPE
)
894 if (TYPE_PRECISION (type
) < TYPE_PRECISION (ftype
))
896 if (TREE_CODE (init
) == REAL_CST
)
898 /* Issue 703: Loss of precision is OK as long as the value is
899 within the representable range of the new type. */
901 d
= TREE_REAL_CST (init
);
902 real_convert (&r
, TYPE_MODE (type
), &d
);
910 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype
)
911 && TREE_CODE (type
) == REAL_TYPE
)
914 if (TREE_CODE (init
) == INTEGER_CST
)
916 d
= real_value_from_int_cst (0, init
);
917 if (exact_real_truncate (TYPE_MODE (type
), &d
))
924 if (cxx_dialect
== cxx98
)
925 warning_at (EXPR_LOC_OR_LOC (init
, input_location
), OPT_Wnarrowing
,
926 "narrowing conversion of %qE from %qT to %qT inside { } "
927 "is ill-formed in C++11", init
, ftype
, type
);
928 else if (!TREE_CONSTANT (init
))
930 if (complain
& tf_warning_or_error
)
932 pedwarn (EXPR_LOC_OR_LOC (init
, input_location
), OPT_Wnarrowing
,
933 "narrowing conversion of %qE from %qT to %qT inside { }",
938 else if (complain
& tf_error
)
939 error_at (EXPR_LOC_OR_LOC (init
, input_location
),
940 "narrowing conversion of %qE from %qT to %qT inside { }",
944 return cxx_dialect
== cxx98
|| ok
;
947 /* Process the initializer INIT for a variable of type TYPE, emitting
948 diagnostics for invalid initializers and converting the initializer as
951 For aggregate types, it assumes that reshape_init has already run, thus the
952 initializer will have the right shape (brace elision has been undone).
954 NESTED is true iff we are being called for an element of a CONSTRUCTOR. */
957 digest_init_r (tree type
, tree init
, bool nested
, int flags
,
958 tsubst_flags_t complain
)
960 enum tree_code code
= TREE_CODE (type
);
962 if (error_operand_p (init
))
963 return error_mark_node
;
967 /* We must strip the outermost array type when completing the type,
968 because the its bounds might be incomplete at the moment. */
969 if (!complete_type_or_maybe_complain (TREE_CODE (type
) == ARRAY_TYPE
970 ? TREE_TYPE (type
) : type
, NULL_TREE
,
972 return error_mark_node
;
974 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue
975 (g++.old-deja/g++.law/casts2.C). */
976 if (TREE_CODE (init
) == NON_LVALUE_EXPR
)
977 init
= TREE_OPERAND (init
, 0);
979 /* Initialization of an array of chars from a string constant. The initializer
980 can be optionally enclosed in braces, but reshape_init has already removed
981 them if they were present. */
982 if (code
== ARRAY_TYPE
)
984 tree typ1
= TYPE_MAIN_VARIANT (TREE_TYPE (type
));
985 if (char_type_p (typ1
)
987 && TREE_CODE (init
) == STRING_CST
)
989 tree char_type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (init
)));
991 if (TYPE_PRECISION (typ1
) == BITS_PER_UNIT
)
993 if (char_type
!= char_type_node
)
995 if (complain
& tf_error
)
996 error ("char-array initialized from wide string");
997 return error_mark_node
;
1002 if (char_type
== char_type_node
)
1004 if (complain
& tf_error
)
1005 error ("int-array initialized from non-wide string");
1006 return error_mark_node
;
1008 else if (char_type
!= typ1
)
1010 if (complain
& tf_error
)
1011 error ("int-array initialized from incompatible "
1013 return error_mark_node
;
1017 if (type
!= TREE_TYPE (init
))
1019 init
= copy_node (init
);
1020 TREE_TYPE (init
) = type
;
1022 if (TYPE_DOMAIN (type
) != 0 && TREE_CONSTANT (TYPE_SIZE (type
)))
1024 int size
= TREE_INT_CST_LOW (TYPE_SIZE (type
));
1025 size
= (size
+ BITS_PER_UNIT
- 1) / BITS_PER_UNIT
;
1026 /* In C it is ok to subtract 1 from the length of the string
1027 because it's ok to ignore the terminating null char that is
1028 counted in the length of the constant, but in C++ this would
1030 if (size
< TREE_STRING_LENGTH (init
))
1031 permerror (input_location
, "initializer-string for array "
1032 "of chars is too long");
1038 /* Handle scalar types (including conversions) and references. */
1039 if ((TREE_CODE (type
) != COMPLEX_TYPE
1040 || BRACE_ENCLOSED_INITIALIZER_P (init
))
1041 && (SCALAR_TYPE_P (type
) || code
== REFERENCE_TYPE
))
1046 flags
|= LOOKUP_NO_NARROWING
;
1047 init
= convert_for_initialization (0, type
, init
, flags
,
1048 ICR_INIT
, NULL_TREE
, 0,
1052 /* Skip any conversions since we'll be outputting the underlying
1054 while (CONVERT_EXPR_P (*exp
)
1055 || TREE_CODE (*exp
) == NON_LVALUE_EXPR
)
1056 exp
= &TREE_OPERAND (*exp
, 0);
1058 *exp
= cplus_expand_constant (*exp
);
1063 /* Come here only for aggregates: records, arrays, unions, complex numbers
1065 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
1066 || TREE_CODE (type
) == VECTOR_TYPE
1067 || TREE_CODE (type
) == RECORD_TYPE
1068 || TREE_CODE (type
) == UNION_TYPE
1069 || TREE_CODE (type
) == COMPLEX_TYPE
);
1071 if (BRACE_ENCLOSED_INITIALIZER_P (init
)
1072 && !TYPE_NON_AGGREGATE_CLASS (type
))
1073 return process_init_constructor (type
, init
, complain
);
1076 if (COMPOUND_LITERAL_P (init
) && TREE_CODE (type
) == ARRAY_TYPE
)
1078 if (complain
& tf_error
)
1079 error ("cannot initialize aggregate of type %qT with "
1080 "a compound literal", type
);
1082 return error_mark_node
;
1085 if (TREE_CODE (type
) == ARRAY_TYPE
1086 && !BRACE_ENCLOSED_INITIALIZER_P (init
))
1088 /* Allow the result of build_array_copy and of
1089 build_value_init_noctor. */
1090 if ((TREE_CODE (init
) == VEC_INIT_EXPR
1091 || TREE_CODE (init
) == CONSTRUCTOR
)
1092 && (same_type_ignoring_top_level_qualifiers_p
1093 (type
, TREE_TYPE (init
))))
1096 if (complain
& tf_error
)
1097 error ("array must be initialized with a brace-enclosed"
1099 return error_mark_node
;
1102 return convert_for_initialization (NULL_TREE
, type
, init
,
1104 ICR_INIT
, NULL_TREE
, 0,
1110 digest_init (tree type
, tree init
, tsubst_flags_t complain
)
1112 return digest_init_r (type
, init
, false, LOOKUP_IMPLICIT
, complain
);
1116 digest_init_flags (tree type
, tree init
, int flags
)
1118 return digest_init_r (type
, init
, false, flags
, tf_warning_or_error
);
1121 /* Process the initializer INIT for an NSDMI DECL (a FIELD_DECL). */
1123 digest_nsdmi_init (tree decl
, tree init
)
1125 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
);
1127 int flags
= LOOKUP_IMPLICIT
;
1128 if (DIRECT_LIST_INIT_P (init
))
1129 flags
= LOOKUP_NORMAL
;
1130 init
= digest_init_flags (TREE_TYPE (decl
), init
, flags
);
1131 if (TREE_CODE (init
) == TARGET_EXPR
)
1132 /* This represents the whole initialization. */
1133 TARGET_EXPR_DIRECT_INIT_P (init
) = true;
1137 /* Set of flags used within process_init_constructor to describe the
1139 #define PICFLAG_ERRONEOUS 1
1140 #define PICFLAG_NOT_ALL_CONSTANT 2
1141 #define PICFLAG_NOT_ALL_SIMPLE 4
1142 #define PICFLAG_SIDE_EFFECTS 8
1144 /* Given an initializer INIT, return the flag (PICFLAG_*) which better
1148 picflag_from_initializer (tree init
)
1150 if (init
== error_mark_node
)
1151 return PICFLAG_ERRONEOUS
;
1152 else if (!TREE_CONSTANT (init
))
1154 if (TREE_SIDE_EFFECTS (init
))
1155 return PICFLAG_SIDE_EFFECTS
;
1157 return PICFLAG_NOT_ALL_CONSTANT
;
1159 else if (!initializer_constant_valid_p (init
, TREE_TYPE (init
)))
1160 return PICFLAG_NOT_ALL_SIMPLE
;
1164 /* Adjust INIT for going into a CONSTRUCTOR. */
1167 massage_init_elt (tree type
, tree init
, tsubst_flags_t complain
)
1169 init
= digest_init_r (type
, init
, true, LOOKUP_IMPLICIT
, complain
);
1170 /* Strip a simple TARGET_EXPR when we know this is an initializer. */
1171 if (TREE_CODE (init
) == TARGET_EXPR
1172 && !VOID_TYPE_P (TREE_TYPE (TARGET_EXPR_INITIAL (init
))))
1173 init
= TARGET_EXPR_INITIAL (init
);
1174 /* When we defer constant folding within a statement, we may want to
1175 defer this folding as well. */
1176 tree t
= fold_non_dependent_expr_sfinae (init
, complain
);
1177 t
= maybe_constant_init (t
);
1178 if (TREE_CONSTANT (t
))
1183 /* Subroutine of process_init_constructor, which will process an initializer
1184 INIT for an array or vector of type TYPE. Returns the flags (PICFLAG_*)
1185 which describe the initializers. */
1188 process_init_constructor_array (tree type
, tree init
,
1189 tsubst_flags_t complain
)
1191 unsigned HOST_WIDE_INT i
, len
= 0;
1193 bool unbounded
= false;
1194 constructor_elt
*ce
;
1195 vec
<constructor_elt
, va_gc
> *v
= CONSTRUCTOR_ELTS (init
);
1197 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
1198 || TREE_CODE (type
) == VECTOR_TYPE
);
1200 if (TREE_CODE (type
) == ARRAY_TYPE
)
1202 tree domain
= TYPE_DOMAIN (type
);
1203 if (domain
&& TREE_CONSTANT (TYPE_MAX_VALUE (domain
)))
1204 len
= wi::ext (wi::to_offset (TYPE_MAX_VALUE (domain
))
1205 - wi::to_offset (TYPE_MIN_VALUE (domain
)) + 1,
1206 TYPE_PRECISION (TREE_TYPE (domain
)),
1207 TYPE_SIGN (TREE_TYPE (domain
))).to_uhwi ();
1209 unbounded
= true; /* Take as many as there are. */
1212 /* Vectors are like simple fixed-size arrays. */
1213 len
= TYPE_VECTOR_SUBPARTS (type
);
1215 /* There must not be more initializers than needed. */
1216 if (!unbounded
&& vec_safe_length (v
) > len
)
1218 if (complain
& tf_error
)
1219 error ("too many initializers for %qT", type
);
1221 return PICFLAG_ERRONEOUS
;
1224 FOR_EACH_VEC_SAFE_ELT (v
, i
, ce
)
1228 gcc_assert (TREE_CODE (ce
->index
) == INTEGER_CST
);
1229 if (compare_tree_int (ce
->index
, i
) != 0)
1231 ce
->value
= error_mark_node
;
1232 sorry ("non-trivial designated initializers not supported");
1236 ce
->index
= size_int (i
);
1237 gcc_assert (ce
->value
);
1238 ce
->value
= massage_init_elt (TREE_TYPE (type
), ce
->value
, complain
);
1240 if (ce
->value
!= error_mark_node
)
1241 gcc_assert (same_type_ignoring_top_level_qualifiers_p
1242 (TREE_TYPE (type
), TREE_TYPE (ce
->value
)));
1244 flags
|= picflag_from_initializer (ce
->value
);
1247 /* No more initializers. If the array is unbounded, we are done. Otherwise,
1248 we must add initializers ourselves. */
1250 for (; i
< len
; ++i
)
1254 if (type_build_ctor_call (TREE_TYPE (type
)))
1256 /* If this type needs constructors run for default-initialization,
1257 we can't rely on the back end to do it for us, so make the
1258 initialization explicit by list-initializing from T{}. */
1259 next
= build_constructor (init_list_type_node
, NULL
);
1260 CONSTRUCTOR_IS_DIRECT_INIT (next
) = true;
1261 next
= massage_init_elt (TREE_TYPE (type
), next
, complain
);
1262 if (initializer_zerop (next
))
1263 /* The default zero-initialization is fine for us; don't
1264 add anything to the CONSTRUCTOR. */
1267 else if (!zero_init_p (TREE_TYPE (type
)))
1268 next
= build_zero_init (TREE_TYPE (type
),
1269 /*nelts=*/NULL_TREE
,
1270 /*static_storage_p=*/false);
1272 /* The default zero-initialization is fine for us; don't
1273 add anything to the CONSTRUCTOR. */
1278 flags
|= picflag_from_initializer (next
);
1279 CONSTRUCTOR_APPEND_ELT (v
, size_int (i
), next
);
1283 CONSTRUCTOR_ELTS (init
) = v
;
1287 /* Subroutine of process_init_constructor, which will process an initializer
1288 INIT for a class of type TYPE. Returns the flags (PICFLAG_*) which describe
1289 the initializers. */
1292 process_init_constructor_record (tree type
, tree init
,
1293 tsubst_flags_t complain
)
1295 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1298 unsigned HOST_WIDE_INT idx
= 0;
1300 gcc_assert (TREE_CODE (type
) == RECORD_TYPE
);
1301 gcc_assert (!CLASSTYPE_VBASECLASSES (type
));
1302 gcc_assert (!TYPE_BINFO (type
)
1303 || !BINFO_N_BASE_BINFOS (TYPE_BINFO (type
)));
1304 gcc_assert (!TYPE_POLYMORPHIC_P (type
));
1306 /* Generally, we will always have an index for each initializer (which is
1307 a FIELD_DECL, put by reshape_init), but compound literals don't go trough
1308 reshape_init. So we need to handle both cases. */
1309 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
1314 if (!DECL_NAME (field
) && DECL_C_BIT_FIELD (field
))
1317 if (TREE_CODE (field
) != FIELD_DECL
|| DECL_ARTIFICIAL (field
))
1320 /* If this is a bitfield, first convert to the declared type. */
1321 type
= TREE_TYPE (field
);
1322 if (DECL_BIT_FIELD_TYPE (field
))
1323 type
= DECL_BIT_FIELD_TYPE (field
);
1324 if (type
== error_mark_node
)
1325 return PICFLAG_ERRONEOUS
;
1327 if (idx
< vec_safe_length (CONSTRUCTOR_ELTS (init
)))
1329 constructor_elt
*ce
= &(*CONSTRUCTOR_ELTS (init
))[idx
];
1332 /* We can have either a FIELD_DECL or an IDENTIFIER_NODE. The
1333 latter case can happen in templates where lookup has to be
1335 gcc_assert (TREE_CODE (ce
->index
) == FIELD_DECL
1336 || identifier_p (ce
->index
));
1337 if (ce
->index
!= field
1338 && ce
->index
!= DECL_NAME (field
))
1340 ce
->value
= error_mark_node
;
1341 sorry ("non-trivial designated initializers not supported");
1345 gcc_assert (ce
->value
);
1346 next
= massage_init_elt (type
, ce
->value
, complain
);
1349 else if (type_build_ctor_call (TREE_TYPE (field
)))
1351 /* If this type needs constructors run for
1352 default-initialization, we can't rely on the back end to do it
1353 for us, so build up TARGET_EXPRs. If the type in question is
1354 a class, just build one up; if it's an array, recurse. */
1355 next
= build_constructor (init_list_type_node
, NULL
);
1356 /* Call this direct-initialization pending DR 1518 resolution so
1357 that explicit default ctors don't break valid C++03 code. */
1358 CONSTRUCTOR_IS_DIRECT_INIT (next
) = true;
1359 next
= massage_init_elt (TREE_TYPE (field
), next
, complain
);
1361 /* Warn when some struct elements are implicitly initialized. */
1362 if ((complain
& tf_warning
)
1363 && !EMPTY_CONSTRUCTOR_P (init
))
1364 warning (OPT_Wmissing_field_initializers
,
1365 "missing initializer for member %qD", field
);
1369 if (TREE_CODE (TREE_TYPE (field
)) == REFERENCE_TYPE
)
1371 if (complain
& tf_error
)
1372 error ("member %qD is uninitialized reference", field
);
1374 return PICFLAG_ERRONEOUS
;
1376 else if (CLASSTYPE_REF_FIELDS_NEED_INIT (TREE_TYPE (field
)))
1378 if (complain
& tf_error
)
1379 error ("member %qD with uninitialized reference fields", field
);
1381 return PICFLAG_ERRONEOUS
;
1384 /* Warn when some struct elements are implicitly initialized
1386 if ((complain
& tf_warning
)
1387 && !EMPTY_CONSTRUCTOR_P (init
))
1388 warning (OPT_Wmissing_field_initializers
,
1389 "missing initializer for member %qD", field
);
1391 if (!zero_init_p (TREE_TYPE (field
)))
1392 next
= build_zero_init (TREE_TYPE (field
), /*nelts=*/NULL_TREE
,
1393 /*static_storage_p=*/false);
1395 /* The default zero-initialization is fine for us; don't
1396 add anything to the CONSTRUCTOR. */
1400 /* If this is a bitfield, now convert to the lowered type. */
1401 if (type
!= TREE_TYPE (field
))
1402 next
= cp_convert_and_check (TREE_TYPE (field
), next
, complain
);
1403 flags
|= picflag_from_initializer (next
);
1404 CONSTRUCTOR_APPEND_ELT (v
, field
, next
);
1407 if (idx
< vec_safe_length (CONSTRUCTOR_ELTS (init
)))
1409 if (complain
& tf_error
)
1410 error ("too many initializers for %qT", type
);
1412 return PICFLAG_ERRONEOUS
;
1415 CONSTRUCTOR_ELTS (init
) = v
;
1419 /* Subroutine of process_init_constructor, which will process a single
1420 initializer INIT for a union of type TYPE. Returns the flags (PICFLAG_*)
1421 which describe the initializer. */
1424 process_init_constructor_union (tree type
, tree init
,
1425 tsubst_flags_t complain
)
1427 constructor_elt
*ce
;
1430 /* If the initializer was empty, use default zero initialization. */
1431 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init
)))
1434 len
= CONSTRUCTOR_ELTS (init
)->length ();
1437 if (!(complain
& tf_error
))
1438 return PICFLAG_ERRONEOUS
;
1439 error ("too many initializers for %qT", type
);
1440 CONSTRUCTOR_ELTS (init
)->block_remove (1, len
-1);
1443 ce
= &(*CONSTRUCTOR_ELTS (init
))[0];
1445 /* If this element specifies a field, initialize via that field. */
1448 if (TREE_CODE (ce
->index
) == FIELD_DECL
)
1450 else if (identifier_p (ce
->index
))
1452 /* This can happen within a cast, see g++.dg/opt/cse2.C. */
1453 tree name
= ce
->index
;
1455 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
1456 if (DECL_NAME (field
) == name
)
1460 if (complain
& tf_error
)
1461 error ("no field %qD found in union being initialized",
1463 ce
->value
= error_mark_node
;
1469 gcc_assert (TREE_CODE (ce
->index
) == INTEGER_CST
1470 || TREE_CODE (ce
->index
) == RANGE_EXPR
);
1471 if (complain
& tf_error
)
1472 error ("index value instead of field name in union initializer");
1473 ce
->value
= error_mark_node
;
1478 /* Find the first named field. ANSI decided in September 1990
1479 that only named fields count here. */
1480 tree field
= TYPE_FIELDS (type
);
1481 while (field
&& (!DECL_NAME (field
) || TREE_CODE (field
) != FIELD_DECL
))
1482 field
= TREE_CHAIN (field
);
1483 if (field
== NULL_TREE
)
1485 if (complain
& tf_error
)
1486 error ("too many initializers for %qT", type
);
1487 ce
->value
= error_mark_node
;
1492 if (ce
->value
&& ce
->value
!= error_mark_node
)
1493 ce
->value
= massage_init_elt (TREE_TYPE (ce
->index
), ce
->value
, complain
);
1495 return picflag_from_initializer (ce
->value
);
1498 /* Process INIT, a constructor for a variable of aggregate type TYPE. The
1499 constructor is a brace-enclosed initializer, and will be modified in-place.
1501 Each element is converted to the right type through digest_init, and
1502 missing initializers are added following the language rules (zero-padding,
1505 After the execution, the initializer will have TREE_CONSTANT if all elts are
1506 constant, and TREE_STATIC set if, in addition, all elts are simple enough
1507 constants that the assembler and linker can compute them.
1509 The function returns the initializer itself, or error_mark_node in case
1513 process_init_constructor (tree type
, tree init
, tsubst_flags_t complain
)
1517 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init
));
1519 if (TREE_CODE (type
) == ARRAY_TYPE
|| TREE_CODE (type
) == VECTOR_TYPE
)
1520 flags
= process_init_constructor_array (type
, init
, complain
);
1521 else if (TREE_CODE (type
) == RECORD_TYPE
)
1522 flags
= process_init_constructor_record (type
, init
, complain
);
1523 else if (TREE_CODE (type
) == UNION_TYPE
)
1524 flags
= process_init_constructor_union (type
, init
, complain
);
1528 if (flags
& PICFLAG_ERRONEOUS
)
1529 return error_mark_node
;
1531 TREE_TYPE (init
) = type
;
1532 if (TREE_CODE (type
) == ARRAY_TYPE
&& TYPE_DOMAIN (type
) == NULL_TREE
)
1533 cp_complete_array_type (&TREE_TYPE (init
), init
, /*do_default=*/0);
1534 if (flags
& PICFLAG_SIDE_EFFECTS
)
1536 TREE_CONSTANT (init
) = false;
1537 TREE_SIDE_EFFECTS (init
) = true;
1539 else if (flags
& PICFLAG_NOT_ALL_CONSTANT
)
1540 /* Make sure TREE_CONSTANT isn't set from build_constructor. */
1541 TREE_CONSTANT (init
) = false;
1544 TREE_CONSTANT (init
) = 1;
1545 if (!(flags
& PICFLAG_NOT_ALL_SIMPLE
))
1546 TREE_STATIC (init
) = 1;
1551 /* Given a structure or union value DATUM, construct and return
1552 the structure or union component which results from narrowing
1553 that value to the base specified in BASETYPE. For example, given the
1556 class L { int ii; };
1557 class A : L { ... };
1558 class B : L { ... };
1559 class C : A, B { ... };
1567 x.A::ii refers to the ii member of the L part of
1568 the A part of the C object named by X. In this case,
1569 DATUM would be x, and BASETYPE would be A.
1571 I used to think that this was nonconformant, that the standard specified
1572 that first we look up ii in A, then convert x to an L& and pull out the
1573 ii part. But in fact, it does say that we convert x to an A&; A here
1574 is known as the "naming class". (jason 2000-12-19)
1576 BINFO_P points to a variable initialized either to NULL_TREE or to the
1577 binfo for the specific base subobject we want to convert to. */
1580 build_scoped_ref (tree datum
, tree basetype
, tree
* binfo_p
)
1584 if (datum
== error_mark_node
)
1585 return error_mark_node
;
1589 binfo
= lookup_base (TREE_TYPE (datum
), basetype
, ba_check
,
1590 NULL
, tf_warning_or_error
);
1592 if (!binfo
|| binfo
== error_mark_node
)
1594 *binfo_p
= NULL_TREE
;
1596 error_not_base_type (basetype
, TREE_TYPE (datum
));
1597 return error_mark_node
;
1601 return build_base_path (PLUS_EXPR
, datum
, binfo
, 1,
1602 tf_warning_or_error
);
1605 /* Build a reference to an object specified by the C++ `->' operator.
1606 Usually this just involves dereferencing the object, but if the
1607 `->' operator is overloaded, then such overloads must be
1608 performed until an object which does not have the `->' operator
1609 overloaded is found. An error is reported when circular pointer
1610 delegation is detected. */
1613 build_x_arrow (location_t loc
, tree expr
, tsubst_flags_t complain
)
1615 tree orig_expr
= expr
;
1616 tree type
= TREE_TYPE (expr
);
1617 tree last_rval
= NULL_TREE
;
1618 vec
<tree
, va_gc
> *types_memoized
= NULL
;
1620 if (type
== error_mark_node
)
1621 return error_mark_node
;
1623 if (processing_template_decl
)
1625 if (type_dependent_expression_p (expr
))
1626 return build_min_nt_loc (loc
, ARROW_EXPR
, expr
);
1627 expr
= build_non_dependent_expr (expr
);
1630 if (MAYBE_CLASS_TYPE_P (type
))
1632 struct tinst_level
*actual_inst
= current_instantiation ();
1635 while ((expr
= build_new_op (loc
, COMPONENT_REF
,
1636 LOOKUP_NORMAL
, expr
, NULL_TREE
, NULL_TREE
,
1639 if (expr
== error_mark_node
)
1640 return error_mark_node
;
1642 if (fn
&& DECL_USE_TEMPLATE (fn
))
1643 push_tinst_level (fn
);
1646 if (vec_member (TREE_TYPE (expr
), types_memoized
))
1648 if (complain
& tf_error
)
1649 error ("circular pointer delegation detected");
1650 return error_mark_node
;
1653 vec_safe_push (types_memoized
, TREE_TYPE (expr
));
1657 while (current_instantiation () != actual_inst
)
1660 if (last_rval
== NULL_TREE
)
1662 if (complain
& tf_error
)
1663 error ("base operand of %<->%> has non-pointer type %qT", type
);
1664 return error_mark_node
;
1667 if (TREE_CODE (TREE_TYPE (last_rval
)) == REFERENCE_TYPE
)
1668 last_rval
= convert_from_reference (last_rval
);
1671 last_rval
= decay_conversion (expr
, complain
);
1673 if (TYPE_PTR_P (TREE_TYPE (last_rval
)))
1675 if (processing_template_decl
)
1677 expr
= build_min (ARROW_EXPR
, TREE_TYPE (TREE_TYPE (last_rval
)),
1679 TREE_SIDE_EFFECTS (expr
) = TREE_SIDE_EFFECTS (last_rval
);
1683 return cp_build_indirect_ref (last_rval
, RO_NULL
, complain
);
1686 if (complain
& tf_error
)
1689 error ("result of %<operator->()%> yields non-pointer result");
1691 error ("base operand of %<->%> is not a pointer");
1693 return error_mark_node
;
1696 /* Return an expression for "DATUM .* COMPONENT". DATUM has not
1697 already been checked out to be of aggregate type. */
1700 build_m_component_ref (tree datum
, tree component
, tsubst_flags_t complain
)
1708 if (error_operand_p (datum
) || error_operand_p (component
))
1709 return error_mark_node
;
1711 datum
= mark_lvalue_use (datum
);
1712 component
= mark_rvalue_use (component
);
1714 ptrmem_type
= TREE_TYPE (component
);
1715 if (!TYPE_PTRMEM_P (ptrmem_type
))
1717 if (complain
& tf_error
)
1718 error ("%qE cannot be used as a member pointer, since it is of "
1719 "type %qT", component
, ptrmem_type
);
1720 return error_mark_node
;
1723 objtype
= TYPE_MAIN_VARIANT (TREE_TYPE (datum
));
1724 if (! MAYBE_CLASS_TYPE_P (objtype
))
1726 if (complain
& tf_error
)
1727 error ("cannot apply member pointer %qE to %qE, which is of "
1728 "non-class type %qT", component
, datum
, objtype
);
1729 return error_mark_node
;
1732 type
= TYPE_PTRMEM_POINTED_TO_TYPE (ptrmem_type
);
1733 ctype
= complete_type (TYPE_PTRMEM_CLASS_TYPE (ptrmem_type
));
1735 if (!COMPLETE_TYPE_P (ctype
))
1737 if (!same_type_p (ctype
, objtype
))
1743 binfo
= lookup_base (objtype
, ctype
, ba_check
, NULL
, complain
);
1748 if (complain
& tf_error
)
1749 error ("pointer to member type %qT incompatible with object "
1750 "type %qT", type
, objtype
);
1751 return error_mark_node
;
1753 else if (binfo
== error_mark_node
)
1754 return error_mark_node
;
1757 if (TYPE_PTRDATAMEM_P (ptrmem_type
))
1759 cp_lvalue_kind kind
= lvalue_kind (datum
);
1762 /* Compute the type of the field, as described in [expr.ref].
1763 There's no such thing as a mutable pointer-to-member, so
1764 things are not as complex as they are for references to
1765 non-static data members. */
1766 type
= cp_build_qualified_type (type
,
1767 (cp_type_quals (type
)
1768 | cp_type_quals (TREE_TYPE (datum
))));
1770 datum
= build_address (datum
);
1772 /* Convert object to the correct base. */
1775 datum
= build_base_path (PLUS_EXPR
, datum
, binfo
, 1, complain
);
1776 if (datum
== error_mark_node
)
1777 return error_mark_node
;
1780 /* Build an expression for "object + offset" where offset is the
1781 value stored in the pointer-to-data-member. */
1782 ptype
= build_pointer_type (type
);
1783 datum
= fold_build_pointer_plus (fold_convert (ptype
, datum
), component
);
1784 datum
= cp_build_indirect_ref (datum
, RO_NULL
, complain
);
1785 if (datum
== error_mark_node
)
1786 return error_mark_node
;
1788 /* If the object expression was an rvalue, return an rvalue. */
1789 if (kind
& clk_class
)
1790 datum
= rvalue (datum
);
1791 else if (kind
& clk_rvalueref
)
1792 datum
= move (datum
);
1797 /* 5.5/6: In a .* expression whose object expression is an rvalue, the
1798 program is ill-formed if the second operand is a pointer to member
1799 function with ref-qualifier &. In a .* expression whose object
1800 expression is an lvalue, the program is ill-formed if the second
1801 operand is a pointer to member function with ref-qualifier &&. */
1802 if (FUNCTION_REF_QUALIFIED (type
))
1804 bool lval
= real_lvalue_p (datum
);
1805 if (lval
&& FUNCTION_RVALUE_QUALIFIED (type
))
1807 if (complain
& tf_error
)
1808 error ("pointer-to-member-function type %qT requires an rvalue",
1810 return error_mark_node
;
1812 else if (!lval
&& !FUNCTION_RVALUE_QUALIFIED (type
))
1814 if (complain
& tf_error
)
1815 error ("pointer-to-member-function type %qT requires an lvalue",
1817 return error_mark_node
;
1820 return build2 (OFFSET_REF
, type
, datum
, component
);
1824 /* Return a tree node for the expression TYPENAME '(' PARMS ')'. */
1827 build_functional_cast (tree exp
, tree parms
, tsubst_flags_t complain
)
1829 /* This is either a call to a constructor,
1830 or a C cast in C++'s `functional' notation. */
1832 /* The type to which we are casting. */
1834 vec
<tree
, va_gc
> *parmvec
;
1836 if (error_operand_p (exp
) || parms
== error_mark_node
)
1837 return error_mark_node
;
1839 if (TREE_CODE (exp
) == TYPE_DECL
)
1841 type
= TREE_TYPE (exp
);
1843 if (complain
& tf_warning
1844 && TREE_DEPRECATED (type
)
1845 && DECL_ARTIFICIAL (exp
))
1846 warn_deprecated_use (type
, NULL_TREE
);
1851 /* We need to check this explicitly, since value-initialization of
1852 arrays is allowed in other situations. */
1853 if (TREE_CODE (type
) == ARRAY_TYPE
)
1855 if (complain
& tf_error
)
1856 error ("functional cast to array type %qT", type
);
1857 return error_mark_node
;
1860 if (type_uses_auto (type
))
1862 if (complain
& tf_error
)
1863 error ("invalid use of %<auto%>");
1864 return error_mark_node
;
1867 if (processing_template_decl
)
1871 /* Diagnose this even in a template. We could also try harder
1872 to give all the usual errors when the type and args are
1874 if (TREE_CODE (type
) == REFERENCE_TYPE
&& !parms
)
1876 if (complain
& tf_error
)
1877 error ("invalid value-initialization of reference type");
1878 return error_mark_node
;
1881 t
= build_min (CAST_EXPR
, type
, parms
);
1882 /* We don't know if it will or will not have side effects. */
1883 TREE_SIDE_EFFECTS (t
) = 1;
1887 if (! MAYBE_CLASS_TYPE_P (type
))
1889 if (parms
== NULL_TREE
)
1891 if (VOID_TYPE_P (type
))
1893 return build_value_init (cv_unqualified (type
), complain
);
1896 /* This must build a C cast. */
1897 parms
= build_x_compound_expr_from_list (parms
, ELK_FUNC_CAST
, complain
);
1898 return cp_build_c_cast (type
, parms
, complain
);
1901 /* Prepare to evaluate as a call to a constructor. If this expression
1902 is actually used, for example,
1904 return X (arg1, arg2, ...);
1906 then the slot being initialized will be filled in. */
1908 if (!complete_type_or_maybe_complain (type
, NULL_TREE
, complain
))
1909 return error_mark_node
;
1910 if (abstract_virtuals_error_sfinae (ACU_CAST
, type
, complain
))
1911 return error_mark_node
;
1915 If the expression list is a single-expression, the type
1916 conversion is equivalent (in definedness, and if defined in
1917 meaning) to the corresponding cast expression. */
1918 if (parms
&& TREE_CHAIN (parms
) == NULL_TREE
)
1919 return cp_build_c_cast (type
, TREE_VALUE (parms
), complain
);
1923 The expression T(), where T is a simple-type-specifier for a
1924 non-array complete object type or the (possibly cv-qualified)
1925 void type, creates an rvalue of the specified type, which is
1926 value-initialized. */
1928 if (parms
== NULL_TREE
)
1930 exp
= build_value_init (type
, complain
);
1931 exp
= get_target_expr_sfinae (exp
, complain
);
1935 /* Call the constructor. */
1936 parmvec
= make_tree_vector ();
1937 for (; parms
!= NULL_TREE
; parms
= TREE_CHAIN (parms
))
1938 vec_safe_push (parmvec
, TREE_VALUE (parms
));
1939 exp
= build_special_member_call (NULL_TREE
, complete_ctor_identifier
,
1940 &parmvec
, type
, LOOKUP_NORMAL
, complain
);
1941 release_tree_vector (parmvec
);
1943 if (exp
== error_mark_node
)
1944 return error_mark_node
;
1946 return build_cplus_new (type
, exp
, complain
);
1950 /* Add new exception specifier SPEC, to the LIST we currently have.
1951 If it's already in LIST then do nothing.
1952 Moan if it's bad and we're allowed to. COMPLAIN < 0 means we
1953 know what we're doing. */
1956 add_exception_specifier (tree list
, tree spec
, int complain
)
1961 diagnostic_t diag_type
= DK_UNSPECIFIED
; /* none */
1963 if (spec
== error_mark_node
)
1966 gcc_assert (spec
&& (!list
|| TREE_VALUE (list
)));
1968 /* [except.spec] 1, type in an exception specifier shall not be
1969 incomplete, or pointer or ref to incomplete other than pointer
1971 is_ptr
= TYPE_PTR_P (core
);
1972 if (is_ptr
|| TREE_CODE (core
) == REFERENCE_TYPE
)
1973 core
= TREE_TYPE (core
);
1976 else if (VOID_TYPE_P (core
))
1978 else if (TREE_CODE (core
) == TEMPLATE_TYPE_PARM
)
1980 else if (processing_template_decl
)
1985 /* 15.4/1 says that types in an exception specifier must be complete,
1986 but it seems more reasonable to only require this on definitions
1987 and calls. So just give a pedwarn at this point; we will give an
1988 error later if we hit one of those two cases. */
1989 if (!COMPLETE_TYPE_P (complete_type (core
)))
1990 diag_type
= DK_PEDWARN
; /* pedwarn */
1997 for (probe
= list
; probe
; probe
= TREE_CHAIN (probe
))
1998 if (same_type_p (TREE_VALUE (probe
), spec
))
2001 list
= tree_cons (NULL_TREE
, spec
, list
);
2004 diag_type
= DK_ERROR
; /* error */
2006 if (diag_type
!= DK_UNSPECIFIED
2007 && (complain
& tf_warning_or_error
))
2008 cxx_incomplete_type_diagnostic (NULL_TREE
, core
, diag_type
);
2013 /* Like nothrow_spec_p, but don't abort on deferred noexcept. */
2016 nothrow_spec_p_uninst (const_tree spec
)
2018 if (DEFERRED_NOEXCEPT_SPEC_P (spec
))
2020 return nothrow_spec_p (spec
);
2023 /* Combine the two exceptions specifier lists LIST and ADD, and return
2027 merge_exception_specifiers (tree list
, tree add
)
2029 tree noex
, orig_list
;
2031 /* No exception-specifier or noexcept(false) are less strict than
2032 anything else. Prefer the newer variant (LIST). */
2033 if (!list
|| list
== noexcept_false_spec
)
2035 else if (!add
|| add
== noexcept_false_spec
)
2038 /* noexcept(true) and throw() are stricter than anything else.
2039 As above, prefer the more recent one (LIST). */
2040 if (nothrow_spec_p_uninst (add
))
2043 /* Two implicit noexcept specs (e.g. on a destructor) are equivalent. */
2044 if (UNEVALUATED_NOEXCEPT_SPEC_P (add
)
2045 && UNEVALUATED_NOEXCEPT_SPEC_P (list
))
2047 /* We should have instantiated other deferred noexcept specs by now. */
2048 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (add
));
2050 if (nothrow_spec_p_uninst (list
))
2052 noex
= TREE_PURPOSE (list
);
2053 gcc_checking_assert (!TREE_PURPOSE (add
)
2054 || cp_tree_equal (noex
, TREE_PURPOSE (add
)));
2056 /* Combine the dynamic-exception-specifiers, if any. */
2058 for (; add
&& TREE_VALUE (add
); add
= TREE_CHAIN (add
))
2060 tree spec
= TREE_VALUE (add
);
2063 for (probe
= orig_list
; probe
&& TREE_VALUE (probe
);
2064 probe
= TREE_CHAIN (probe
))
2065 if (same_type_p (TREE_VALUE (probe
), spec
))
2069 spec
= build_tree_list (NULL_TREE
, spec
);
2070 TREE_CHAIN (spec
) = list
;
2075 /* Keep the noexcept-specifier at the beginning of the list. */
2076 if (noex
!= TREE_PURPOSE (list
))
2077 list
= tree_cons (noex
, TREE_VALUE (list
), TREE_CHAIN (list
));
2082 /* Subroutine of build_call. Ensure that each of the types in the
2083 exception specification is complete. Technically, 15.4/1 says that
2084 they need to be complete when we see a declaration of the function,
2085 but we should be able to get away with only requiring this when the
2086 function is defined or called. See also add_exception_specifier. */
2089 require_complete_eh_spec_types (tree fntype
, tree decl
)
2092 /* Don't complain about calls to op new. */
2093 if (decl
&& DECL_ARTIFICIAL (decl
))
2095 for (raises
= TYPE_RAISES_EXCEPTIONS (fntype
); raises
;
2096 raises
= TREE_CHAIN (raises
))
2098 tree type
= TREE_VALUE (raises
);
2099 if (type
&& !COMPLETE_TYPE_P (type
))
2103 ("call to function %qD which throws incomplete type %q#T",
2106 error ("call to function which throws incomplete type %q#T",
2113 #include "gt-cp-typeck2.h"