1 /* Functions related to invoking methods and overloaded functions.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com) and
4 modified by Brendan Kehoe (brendan@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 /* High-level class interface. */
27 #include "coretypes.h"
30 #include "stor-layout.h"
31 #include "trans-mem.h"
32 #include "stringpool.h"
36 #include "diagnostic-core.h"
40 #include "langhooks.h"
41 #include "c-family/c-objc.h"
46 /* The various kinds of conversion. */
48 typedef enum conversion_kind
{
64 /* The rank of the conversion. Order of the enumerals matters; better
65 conversions should come earlier in the list. */
67 typedef enum conversion_rank
{
78 /* An implicit conversion sequence, in the sense of [over.best.ics].
79 The first conversion to be performed is at the end of the chain.
80 That conversion is always a cr_identity conversion. */
82 typedef struct conversion conversion
;
84 /* The kind of conversion represented by this step. */
86 /* The rank of this conversion. */
88 BOOL_BITFIELD user_conv_p
: 1;
89 BOOL_BITFIELD ellipsis_p
: 1;
90 BOOL_BITFIELD this_p
: 1;
91 /* True if this conversion would be permitted with a bending of
92 language standards, e.g. disregarding pointer qualifiers or
93 converting integers to pointers. */
94 BOOL_BITFIELD bad_p
: 1;
95 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
96 temporary should be created to hold the result of the
98 BOOL_BITFIELD need_temporary_p
: 1;
99 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
100 from a pointer-to-derived to pointer-to-base is being performed. */
101 BOOL_BITFIELD base_p
: 1;
102 /* If KIND is ck_ref_bind, true when either an lvalue reference is
103 being bound to an lvalue expression or an rvalue reference is
104 being bound to an rvalue expression. If KIND is ck_rvalue,
105 true when we should treat an lvalue as an rvalue (12.8p33). If
106 KIND is ck_base, always false. */
107 BOOL_BITFIELD rvaluedness_matches_p
: 1;
108 BOOL_BITFIELD check_narrowing
: 1;
109 /* The type of the expression resulting from the conversion. */
112 /* The next conversion in the chain. Since the conversions are
113 arranged from outermost to innermost, the NEXT conversion will
114 actually be performed before this conversion. This variant is
115 used only when KIND is neither ck_identity, ck_ambig nor
116 ck_list. Please use the next_conversion function instead
117 of using this field directly. */
119 /* The expression at the beginning of the conversion chain. This
120 variant is used only if KIND is ck_identity or ck_ambig. */
122 /* The array of conversions for an initializer_list, so this
123 variant is used only when KIN D is ck_list. */
126 /* The function candidate corresponding to this conversion
127 sequence. This field is only used if KIND is ck_user. */
128 struct z_candidate
*cand
;
131 #define CONVERSION_RANK(NODE) \
132 ((NODE)->bad_p ? cr_bad \
133 : (NODE)->ellipsis_p ? cr_ellipsis \
134 : (NODE)->user_conv_p ? cr_user \
137 #define BAD_CONVERSION_RANK(NODE) \
138 ((NODE)->ellipsis_p ? cr_ellipsis \
139 : (NODE)->user_conv_p ? cr_user \
142 static struct obstack conversion_obstack
;
143 static bool conversion_obstack_initialized
;
144 struct rejection_reason
;
146 static struct z_candidate
* tourney (struct z_candidate
*, tsubst_flags_t
);
147 static int equal_functions (tree
, tree
);
148 static int joust (struct z_candidate
*, struct z_candidate
*, bool,
150 static int compare_ics (conversion
*, conversion
*);
151 static tree
build_over_call (struct z_candidate
*, int, tsubst_flags_t
);
152 static tree
build_java_interface_fn_ref (tree
, tree
);
153 #define convert_like(CONV, EXPR, COMPLAIN) \
154 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
155 /*issue_conversion_warnings=*/true, \
156 /*c_cast_p=*/false, (COMPLAIN))
157 #define convert_like_with_context(CONV, EXPR, FN, ARGNO, COMPLAIN ) \
158 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
159 /*issue_conversion_warnings=*/true, \
160 /*c_cast_p=*/false, (COMPLAIN))
161 static tree
convert_like_real (conversion
*, tree
, tree
, int, int, bool,
162 bool, tsubst_flags_t
);
163 static void op_error (location_t
, enum tree_code
, enum tree_code
, tree
,
165 static struct z_candidate
*build_user_type_conversion_1 (tree
, tree
, int,
167 static void print_z_candidate (location_t
, const char *, struct z_candidate
*);
168 static void print_z_candidates (location_t
, struct z_candidate
*);
169 static tree
build_this (tree
);
170 static struct z_candidate
*splice_viable (struct z_candidate
*, bool, bool *);
171 static bool any_strictly_viable (struct z_candidate
*);
172 static struct z_candidate
*add_template_candidate
173 (struct z_candidate
**, tree
, tree
, tree
, tree
, const vec
<tree
, va_gc
> *,
174 tree
, tree
, tree
, int, unification_kind_t
, tsubst_flags_t
);
175 static struct z_candidate
*add_template_candidate_real
176 (struct z_candidate
**, tree
, tree
, tree
, tree
, const vec
<tree
, va_gc
> *,
177 tree
, tree
, tree
, int, tree
, unification_kind_t
, tsubst_flags_t
);
178 static struct z_candidate
*add_template_conv_candidate
179 (struct z_candidate
**, tree
, tree
, tree
, const vec
<tree
, va_gc
> *,
180 tree
, tree
, tree
, tsubst_flags_t
);
181 static void add_builtin_candidates
182 (struct z_candidate
**, enum tree_code
, enum tree_code
,
183 tree
, tree
*, int, tsubst_flags_t
);
184 static void add_builtin_candidate
185 (struct z_candidate
**, enum tree_code
, enum tree_code
,
186 tree
, tree
, tree
, tree
*, tree
*, int, tsubst_flags_t
);
187 static bool is_complete (tree
);
188 static void build_builtin_candidate
189 (struct z_candidate
**, tree
, tree
, tree
, tree
*, tree
*,
190 int, tsubst_flags_t
);
191 static struct z_candidate
*add_conv_candidate
192 (struct z_candidate
**, tree
, tree
, tree
, const vec
<tree
, va_gc
> *, tree
,
193 tree
, tsubst_flags_t
);
194 static struct z_candidate
*add_function_candidate
195 (struct z_candidate
**, tree
, tree
, tree
, const vec
<tree
, va_gc
> *, tree
,
196 tree
, int, tsubst_flags_t
);
197 static conversion
*implicit_conversion (tree
, tree
, tree
, bool, int,
199 static conversion
*standard_conversion (tree
, tree
, tree
, bool, int);
200 static conversion
*reference_binding (tree
, tree
, tree
, bool, int,
202 static conversion
*build_conv (conversion_kind
, tree
, conversion
*);
203 static conversion
*build_list_conv (tree
, tree
, int, tsubst_flags_t
);
204 static conversion
*next_conversion (conversion
*);
205 static bool is_subseq (conversion
*, conversion
*);
206 static conversion
*maybe_handle_ref_bind (conversion
**);
207 static void maybe_handle_implicit_object (conversion
**);
208 static struct z_candidate
*add_candidate
209 (struct z_candidate
**, tree
, tree
, const vec
<tree
, va_gc
> *, size_t,
210 conversion
**, tree
, tree
, int, struct rejection_reason
*, int);
211 static tree
source_type (conversion
*);
212 static void add_warning (struct z_candidate
*, struct z_candidate
*);
213 static bool reference_compatible_p (tree
, tree
);
214 static conversion
*direct_reference_binding (tree
, conversion
*);
215 static bool promoted_arithmetic_type_p (tree
);
216 static conversion
*conditional_conversion (tree
, tree
, tsubst_flags_t
);
217 static char *name_as_c_string (tree
, tree
, bool *);
218 static tree
prep_operand (tree
);
219 static void add_candidates (tree
, tree
, const vec
<tree
, va_gc
> *, tree
, tree
,
220 bool, tree
, tree
, int, struct z_candidate
**,
222 static conversion
*merge_conversion_sequences (conversion
*, conversion
*);
223 static tree
build_temp (tree
, tree
, int, diagnostic_t
*, tsubst_flags_t
);
225 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
226 NAME can take many forms... */
229 check_dtor_name (tree basetype
, tree name
)
231 /* Just accept something we've already complained about. */
232 if (name
== error_mark_node
)
235 if (TREE_CODE (name
) == TYPE_DECL
)
236 name
= TREE_TYPE (name
);
237 else if (TYPE_P (name
))
239 else if (identifier_p (name
))
241 if ((MAYBE_CLASS_TYPE_P (basetype
)
242 && name
== constructor_name (basetype
))
243 || (TREE_CODE (basetype
) == ENUMERAL_TYPE
244 && name
== TYPE_IDENTIFIER (basetype
)))
247 name
= get_type_value (name
);
253 template <class T> struct S { ~S(); };
257 NAME will be a class template. */
258 gcc_assert (DECL_CLASS_TEMPLATE_P (name
));
262 if (!name
|| name
== error_mark_node
)
264 return same_type_p (TYPE_MAIN_VARIANT (basetype
), TYPE_MAIN_VARIANT (name
));
267 /* We want the address of a function or method. We avoid creating a
268 pointer-to-member function. */
271 build_addr_func (tree function
, tsubst_flags_t complain
)
273 tree type
= TREE_TYPE (function
);
275 /* We have to do these by hand to avoid real pointer to member
277 if (TREE_CODE (type
) == METHOD_TYPE
)
279 if (TREE_CODE (function
) == OFFSET_REF
)
281 tree object
= build_address (TREE_OPERAND (function
, 0));
282 return get_member_function_from_ptrfunc (&object
,
283 TREE_OPERAND (function
, 1),
286 function
= build_address (function
);
289 function
= decay_conversion (function
, complain
);
294 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
295 POINTER_TYPE to those. Note, pointer to member function types
296 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
297 two variants. build_call_a is the primitive taking an array of
298 arguments, while build_call_n is a wrapper that handles varargs. */
301 build_call_n (tree function
, int n
, ...)
304 return build_call_a (function
, 0, NULL
);
307 tree
*argarray
= XALLOCAVEC (tree
, n
);
312 for (i
= 0; i
< n
; i
++)
313 argarray
[i
] = va_arg (ap
, tree
);
315 return build_call_a (function
, n
, argarray
);
319 /* Update various flags in cfun and the call itself based on what is being
320 called. Split out of build_call_a so that bot_manip can use it too. */
323 set_flags_from_callee (tree call
)
326 tree decl
= get_callee_fndecl (call
);
328 /* We check both the decl and the type; a function may be known not to
329 throw without being declared throw(). */
330 nothrow
= ((decl
&& TREE_NOTHROW (decl
))
331 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (call
)))));
333 if (!nothrow
&& at_function_scope_p () && cfun
&& cp_function_chain
)
334 cp_function_chain
->can_throw
= 1;
336 if (decl
&& TREE_THIS_VOLATILE (decl
) && cfun
&& cp_function_chain
)
337 current_function_returns_abnormally
= 1;
339 TREE_NOTHROW (call
) = nothrow
;
343 build_call_a (tree function
, int n
, tree
*argarray
)
350 function
= build_addr_func (function
, tf_warning_or_error
);
352 gcc_assert (TYPE_PTR_P (TREE_TYPE (function
)));
353 fntype
= TREE_TYPE (TREE_TYPE (function
));
354 gcc_assert (TREE_CODE (fntype
) == FUNCTION_TYPE
355 || TREE_CODE (fntype
) == METHOD_TYPE
);
356 result_type
= TREE_TYPE (fntype
);
357 /* An rvalue has no cv-qualifiers. */
358 if (SCALAR_TYPE_P (result_type
) || VOID_TYPE_P (result_type
))
359 result_type
= cv_unqualified (result_type
);
361 function
= build_call_array_loc (input_location
,
362 result_type
, function
, n
, argarray
);
363 set_flags_from_callee (function
);
365 decl
= get_callee_fndecl (function
);
367 if (decl
&& !TREE_USED (decl
))
369 /* We invoke build_call directly for several library
370 functions. These may have been declared normally if
371 we're building libgcc, so we can't just check
373 gcc_assert (DECL_ARTIFICIAL (decl
)
374 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl
)),
379 if (decl
&& TREE_DEPRECATED (decl
))
380 warn_deprecated_use (decl
, NULL_TREE
);
381 require_complete_eh_spec_types (fntype
, decl
);
383 TREE_HAS_CONSTRUCTOR (function
) = (decl
&& DECL_CONSTRUCTOR_P (decl
));
385 /* Don't pass empty class objects by value. This is useful
386 for tags in STL, which are used to control overload resolution.
387 We don't need to handle other cases of copying empty classes. */
388 if (! decl
|| ! DECL_BUILT_IN (decl
))
389 for (i
= 0; i
< n
; i
++)
391 tree arg
= CALL_EXPR_ARG (function
, i
);
392 if (is_empty_class (TREE_TYPE (arg
))
393 && ! TREE_ADDRESSABLE (TREE_TYPE (arg
)))
395 tree t
= build0 (EMPTY_CLASS_EXPR
, TREE_TYPE (arg
));
396 arg
= build2 (COMPOUND_EXPR
, TREE_TYPE (t
), arg
, t
);
397 CALL_EXPR_ARG (function
, i
) = arg
;
404 /* Build something of the form ptr->method (args)
405 or object.method (args). This can also build
406 calls to constructors, and find friends.
408 Member functions always take their class variable
411 INSTANCE is a class instance.
413 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
415 PARMS help to figure out what that NAME really refers to.
417 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
418 down to the real instance type to use for access checking. We need this
419 information to get protected accesses correct.
421 FLAGS is the logical disjunction of zero or more LOOKUP_
422 flags. See cp-tree.h for more info.
424 If this is all OK, calls build_function_call with the resolved
427 This function must also handle being called to perform
428 initialization, promotion/coercion of arguments, and
429 instantiation of default parameters.
431 Note that NAME may refer to an instance variable name. If
432 `operator()()' is defined for the type of that field, then we return
435 /* New overloading code. */
437 typedef struct z_candidate z_candidate
;
439 typedef struct candidate_warning candidate_warning
;
440 struct candidate_warning
{
442 candidate_warning
*next
;
445 /* Information for providing diagnostics about why overloading failed. */
447 enum rejection_reason_code
{
450 rr_explicit_conversion
,
451 rr_template_conversion
,
453 rr_bad_arg_conversion
,
454 rr_template_unification
,
458 struct conversion_info
{
459 /* The index of the argument, 0-based. */
461 /* The actual argument or its type. */
463 /* The type of the parameter. */
467 struct rejection_reason
{
468 enum rejection_reason_code code
;
470 /* Information about an arity mismatch. */
472 /* The expected number of arguments. */
474 /* The actual number of arguments in the call. */
476 /* Whether the call was a varargs call. */
479 /* Information about an argument conversion mismatch. */
480 struct conversion_info conversion
;
481 /* Same, but for bad argument conversions. */
482 struct conversion_info bad_conversion
;
483 /* Information about template unification failures. These are the
484 parameters passed to fn_type_unification. */
492 unification_kind_t strict
;
494 } template_unification
;
495 /* Information about template instantiation failures. These are the
496 parameters passed to instantiate_template. */
500 } template_instantiation
;
505 /* The FUNCTION_DECL that will be called if this candidate is
506 selected by overload resolution. */
508 /* If not NULL_TREE, the first argument to use when calling this
511 /* The rest of the arguments to use when calling this function. If
512 there are no further arguments this may be NULL or it may be an
514 const vec
<tree
, va_gc
> *args
;
515 /* The implicit conversion sequences for each of the arguments to
518 /* The number of implicit conversion sequences. */
520 /* If FN is a user-defined conversion, the standard conversion
521 sequence from the type returned by FN to the desired destination
523 conversion
*second_conv
;
524 struct rejection_reason
*reason
;
525 /* If FN is a member function, the binfo indicating the path used to
526 qualify the name of FN at the call site. This path is used to
527 determine whether or not FN is accessible if it is selected by
528 overload resolution. The DECL_CONTEXT of FN will always be a
529 (possibly improper) base of this binfo. */
531 /* If FN is a non-static member function, the binfo indicating the
532 subobject to which the `this' pointer should be converted if FN
533 is selected by overload resolution. The type pointed to by
534 the `this' pointer must correspond to the most derived class
535 indicated by the CONVERSION_PATH. */
536 tree conversion_path
;
539 candidate_warning
*warnings
;
543 /* The flags active in add_candidate. */
547 /* Returns true iff T is a null pointer constant in the sense of
551 null_ptr_cst_p (tree t
)
555 A null pointer constant is an integral constant expression
556 (_expr.const_) rvalue of integer type that evaluates to zero or
557 an rvalue of type std::nullptr_t. */
558 if (NULLPTR_TYPE_P (TREE_TYPE (t
)))
560 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t
)))
562 /* Core issue 903 says only literal 0 is a null pointer constant. */
563 if (cxx_dialect
< cxx11
)
564 t
= maybe_constant_value (fold_non_dependent_expr_sfinae (t
, tf_none
));
566 if (integer_zerop (t
) && !TREE_OVERFLOW (t
))
572 /* Returns true iff T is a null member pointer value (4.11). */
575 null_member_pointer_value_p (tree t
)
577 tree type
= TREE_TYPE (t
);
580 else if (TYPE_PTRMEMFUNC_P (type
))
581 return (TREE_CODE (t
) == CONSTRUCTOR
582 && integer_zerop (CONSTRUCTOR_ELT (t
, 0)->value
));
583 else if (TYPE_PTRDATAMEM_P (type
))
584 return integer_all_onesp (t
);
589 /* Returns nonzero if PARMLIST consists of only default parms,
590 ellipsis, and/or undeduced parameter packs. */
593 sufficient_parms_p (const_tree parmlist
)
595 for (; parmlist
&& parmlist
!= void_list_node
;
596 parmlist
= TREE_CHAIN (parmlist
))
597 if (!TREE_PURPOSE (parmlist
)
598 && !PACK_EXPANSION_P (TREE_VALUE (parmlist
)))
603 /* Allocate N bytes of memory from the conversion obstack. The memory
604 is zeroed before being returned. */
607 conversion_obstack_alloc (size_t n
)
610 if (!conversion_obstack_initialized
)
612 gcc_obstack_init (&conversion_obstack
);
613 conversion_obstack_initialized
= true;
615 p
= obstack_alloc (&conversion_obstack
, n
);
620 /* Allocate rejection reasons. */
622 static struct rejection_reason
*
623 alloc_rejection (enum rejection_reason_code code
)
625 struct rejection_reason
*p
;
626 p
= (struct rejection_reason
*) conversion_obstack_alloc (sizeof *p
);
631 static struct rejection_reason
*
632 arity_rejection (tree first_arg
, int expected
, int actual
)
634 struct rejection_reason
*r
= alloc_rejection (rr_arity
);
635 int adjust
= first_arg
!= NULL_TREE
;
636 r
->u
.arity
.expected
= expected
- adjust
;
637 r
->u
.arity
.actual
= actual
- adjust
;
641 static struct rejection_reason
*
642 arg_conversion_rejection (tree first_arg
, int n_arg
, tree from
, tree to
)
644 struct rejection_reason
*r
= alloc_rejection (rr_arg_conversion
);
645 int adjust
= first_arg
!= NULL_TREE
;
646 r
->u
.conversion
.n_arg
= n_arg
- adjust
;
647 r
->u
.conversion
.from
= from
;
648 r
->u
.conversion
.to_type
= to
;
652 static struct rejection_reason
*
653 bad_arg_conversion_rejection (tree first_arg
, int n_arg
, tree from
, tree to
)
655 struct rejection_reason
*r
= alloc_rejection (rr_bad_arg_conversion
);
656 int adjust
= first_arg
!= NULL_TREE
;
657 r
->u
.bad_conversion
.n_arg
= n_arg
- adjust
;
658 r
->u
.bad_conversion
.from
= from
;
659 r
->u
.bad_conversion
.to_type
= to
;
663 static struct rejection_reason
*
664 explicit_conversion_rejection (tree from
, tree to
)
666 struct rejection_reason
*r
= alloc_rejection (rr_explicit_conversion
);
667 r
->u
.conversion
.n_arg
= 0;
668 r
->u
.conversion
.from
= from
;
669 r
->u
.conversion
.to_type
= to
;
673 static struct rejection_reason
*
674 template_conversion_rejection (tree from
, tree to
)
676 struct rejection_reason
*r
= alloc_rejection (rr_template_conversion
);
677 r
->u
.conversion
.n_arg
= 0;
678 r
->u
.conversion
.from
= from
;
679 r
->u
.conversion
.to_type
= to
;
683 static struct rejection_reason
*
684 template_unification_rejection (tree tmpl
, tree explicit_targs
, tree targs
,
685 const tree
*args
, unsigned int nargs
,
686 tree return_type
, unification_kind_t strict
,
689 size_t args_n_bytes
= sizeof (*args
) * nargs
;
690 tree
*args1
= (tree
*) conversion_obstack_alloc (args_n_bytes
);
691 struct rejection_reason
*r
= alloc_rejection (rr_template_unification
);
692 r
->u
.template_unification
.tmpl
= tmpl
;
693 r
->u
.template_unification
.explicit_targs
= explicit_targs
;
694 r
->u
.template_unification
.num_targs
= TREE_VEC_LENGTH (targs
);
695 /* Copy args to our own storage. */
696 memcpy (args1
, args
, args_n_bytes
);
697 r
->u
.template_unification
.args
= args1
;
698 r
->u
.template_unification
.nargs
= nargs
;
699 r
->u
.template_unification
.return_type
= return_type
;
700 r
->u
.template_unification
.strict
= strict
;
701 r
->u
.template_unification
.flags
= flags
;
705 static struct rejection_reason
*
706 template_unification_error_rejection (void)
708 return alloc_rejection (rr_template_unification
);
711 static struct rejection_reason
*
712 invalid_copy_with_fn_template_rejection (void)
714 struct rejection_reason
*r
= alloc_rejection (rr_invalid_copy
);
718 /* Dynamically allocate a conversion. */
721 alloc_conversion (conversion_kind kind
)
724 c
= (conversion
*) conversion_obstack_alloc (sizeof (conversion
));
729 #ifdef ENABLE_CHECKING
731 /* Make sure that all memory on the conversion obstack has been
735 validate_conversion_obstack (void)
737 if (conversion_obstack_initialized
)
738 gcc_assert ((obstack_next_free (&conversion_obstack
)
739 == obstack_base (&conversion_obstack
)));
742 #endif /* ENABLE_CHECKING */
744 /* Dynamically allocate an array of N conversions. */
747 alloc_conversions (size_t n
)
749 return (conversion
**) conversion_obstack_alloc (n
* sizeof (conversion
*));
753 build_conv (conversion_kind code
, tree type
, conversion
*from
)
756 conversion_rank rank
= CONVERSION_RANK (from
);
758 /* Note that the caller is responsible for filling in t->cand for
759 user-defined conversions. */
760 t
= alloc_conversion (code
);
783 t
->user_conv_p
= (code
== ck_user
|| from
->user_conv_p
);
784 t
->bad_p
= from
->bad_p
;
789 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
790 specialization of std::initializer_list<T>, if such a conversion is
794 build_list_conv (tree type
, tree ctor
, int flags
, tsubst_flags_t complain
)
796 tree elttype
= TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type
), 0);
797 unsigned len
= CONSTRUCTOR_NELTS (ctor
);
798 conversion
**subconvs
= alloc_conversions (len
);
803 /* Within a list-initialization we can have more user-defined
805 flags
&= ~LOOKUP_NO_CONVERSION
;
806 /* But no narrowing conversions. */
807 flags
|= LOOKUP_NO_NARROWING
;
809 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), i
, val
)
812 = implicit_conversion (elttype
, TREE_TYPE (val
), val
,
813 false, flags
, complain
);
820 t
= alloc_conversion (ck_list
);
822 t
->u
.list
= subconvs
;
825 for (i
= 0; i
< len
; ++i
)
827 conversion
*sub
= subconvs
[i
];
828 if (sub
->rank
> t
->rank
)
830 if (sub
->user_conv_p
)
831 t
->user_conv_p
= true;
839 /* Return the next conversion of the conversion chain (if applicable),
840 or NULL otherwise. Please use this function instead of directly
841 accessing fields of struct conversion. */
844 next_conversion (conversion
*conv
)
847 || conv
->kind
== ck_identity
848 || conv
->kind
== ck_ambig
849 || conv
->kind
== ck_list
)
854 /* Subroutine of build_aggr_conv: check whether CTOR, a braced-init-list,
855 is a valid aggregate initializer for array type ATYPE. */
858 can_convert_array (tree atype
, tree ctor
, int flags
, tsubst_flags_t complain
)
861 tree elttype
= TREE_TYPE (atype
);
862 for (i
= 0; i
< CONSTRUCTOR_NELTS (ctor
); ++i
)
864 tree val
= CONSTRUCTOR_ELT (ctor
, i
)->value
;
866 if (TREE_CODE (elttype
) == ARRAY_TYPE
867 && TREE_CODE (val
) == CONSTRUCTOR
)
868 ok
= can_convert_array (elttype
, val
, flags
, complain
);
870 ok
= can_convert_arg (elttype
, TREE_TYPE (val
), val
, flags
,
878 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
879 aggregate class, if such a conversion is possible. */
882 build_aggr_conv (tree type
, tree ctor
, int flags
, tsubst_flags_t complain
)
884 unsigned HOST_WIDE_INT i
= 0;
886 tree field
= next_initializable_field (TYPE_FIELDS (type
));
887 tree empty_ctor
= NULL_TREE
;
889 ctor
= reshape_init (type
, ctor
, tf_none
);
890 if (ctor
== error_mark_node
)
893 /* The conversions within the init-list aren't affected by the enclosing
894 context; they're always simple copy-initialization. */
895 flags
= LOOKUP_IMPLICIT
|LOOKUP_NO_NARROWING
;
897 for (; field
; field
= next_initializable_field (DECL_CHAIN (field
)))
899 tree ftype
= TREE_TYPE (field
);
903 if (i
< CONSTRUCTOR_NELTS (ctor
))
904 val
= CONSTRUCTOR_ELT (ctor
, i
)->value
;
905 else if (TREE_CODE (ftype
) == REFERENCE_TYPE
)
906 /* Value-initialization of reference is ill-formed. */
910 if (empty_ctor
== NULL_TREE
)
911 empty_ctor
= build_constructor (init_list_type_node
, NULL
);
916 if (TREE_CODE (ftype
) == ARRAY_TYPE
917 && TREE_CODE (val
) == CONSTRUCTOR
)
918 ok
= can_convert_array (ftype
, val
, flags
, complain
);
920 ok
= can_convert_arg (ftype
, TREE_TYPE (val
), val
, flags
,
926 if (TREE_CODE (type
) == UNION_TYPE
)
930 if (i
< CONSTRUCTOR_NELTS (ctor
))
933 c
= alloc_conversion (ck_aggr
);
936 c
->user_conv_p
= true;
937 c
->check_narrowing
= true;
942 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
943 array type, if such a conversion is possible. */
946 build_array_conv (tree type
, tree ctor
, int flags
, tsubst_flags_t complain
)
949 unsigned HOST_WIDE_INT len
= CONSTRUCTOR_NELTS (ctor
);
950 tree elttype
= TREE_TYPE (type
);
955 enum conversion_rank rank
= cr_exact
;
957 /* We might need to propagate the size from the element to the array. */
958 complete_type (type
);
960 if (TYPE_DOMAIN (type
)
961 && !variably_modified_type_p (TYPE_DOMAIN (type
), NULL_TREE
))
963 unsigned HOST_WIDE_INT alen
= tree_to_uhwi (array_type_nelts_top (type
));
968 flags
= LOOKUP_IMPLICIT
|LOOKUP_NO_NARROWING
;
970 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), i
, val
)
973 = implicit_conversion (elttype
, TREE_TYPE (val
), val
,
974 false, flags
, complain
);
978 if (sub
->rank
> rank
)
980 if (sub
->user_conv_p
)
986 c
= alloc_conversion (ck_aggr
);
989 c
->user_conv_p
= user
;
995 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
996 complex type, if such a conversion is possible. */
999 build_complex_conv (tree type
, tree ctor
, int flags
,
1000 tsubst_flags_t complain
)
1003 unsigned HOST_WIDE_INT len
= CONSTRUCTOR_NELTS (ctor
);
1004 tree elttype
= TREE_TYPE (type
);
1009 enum conversion_rank rank
= cr_exact
;
1014 flags
= LOOKUP_IMPLICIT
|LOOKUP_NO_NARROWING
;
1016 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), i
, val
)
1019 = implicit_conversion (elttype
, TREE_TYPE (val
), val
,
1020 false, flags
, complain
);
1024 if (sub
->rank
> rank
)
1026 if (sub
->user_conv_p
)
1032 c
= alloc_conversion (ck_aggr
);
1035 c
->user_conv_p
= user
;
1041 /* Build a representation of the identity conversion from EXPR to
1042 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
1045 build_identity_conv (tree type
, tree expr
)
1049 c
= alloc_conversion (ck_identity
);
1056 /* Converting from EXPR to TYPE was ambiguous in the sense that there
1057 were multiple user-defined conversions to accomplish the job.
1058 Build a conversion that indicates that ambiguity. */
1061 build_ambiguous_conv (tree type
, tree expr
)
1065 c
= alloc_conversion (ck_ambig
);
1073 strip_top_quals (tree t
)
1075 if (TREE_CODE (t
) == ARRAY_TYPE
)
1077 return cp_build_qualified_type (t
, 0);
1080 /* Returns the standard conversion path (see [conv]) from type FROM to type
1081 TO, if any. For proper handling of null pointer constants, you must
1082 also pass the expression EXPR to convert from. If C_CAST_P is true,
1083 this conversion is coming from a C-style cast. */
1086 standard_conversion (tree to
, tree from
, tree expr
, bool c_cast_p
,
1089 enum tree_code fcode
, tcode
;
1091 bool fromref
= false;
1094 to
= non_reference (to
);
1095 if (TREE_CODE (from
) == REFERENCE_TYPE
)
1098 from
= TREE_TYPE (from
);
1101 to
= strip_top_quals (to
);
1102 from
= strip_top_quals (from
);
1104 if ((TYPE_PTRFN_P (to
) || TYPE_PTRMEMFUNC_P (to
))
1105 && expr
&& type_unknown_p (expr
))
1107 tsubst_flags_t tflags
= tf_conv
;
1108 expr
= instantiate_type (to
, expr
, tflags
);
1109 if (expr
== error_mark_node
)
1111 from
= TREE_TYPE (expr
);
1114 fcode
= TREE_CODE (from
);
1115 tcode
= TREE_CODE (to
);
1117 conv
= build_identity_conv (from
, expr
);
1118 if (fcode
== FUNCTION_TYPE
|| fcode
== ARRAY_TYPE
)
1120 from
= type_decays_to (from
);
1121 fcode
= TREE_CODE (from
);
1122 conv
= build_conv (ck_lvalue
, from
, conv
);
1124 else if (fromref
|| (expr
&& lvalue_p (expr
)))
1129 bitfield_type
= is_bitfield_expr_with_lowered_type (expr
);
1132 from
= strip_top_quals (bitfield_type
);
1133 fcode
= TREE_CODE (from
);
1136 conv
= build_conv (ck_rvalue
, from
, conv
);
1137 if (flags
& LOOKUP_PREFER_RVALUE
)
1138 conv
->rvaluedness_matches_p
= true;
1141 /* Allow conversion between `__complex__' data types. */
1142 if (tcode
== COMPLEX_TYPE
&& fcode
== COMPLEX_TYPE
)
1144 /* The standard conversion sequence to convert FROM to TO is
1145 the standard conversion sequence to perform componentwise
1147 conversion
*part_conv
= standard_conversion
1148 (TREE_TYPE (to
), TREE_TYPE (from
), NULL_TREE
, c_cast_p
, flags
);
1152 conv
= build_conv (part_conv
->kind
, to
, conv
);
1153 conv
->rank
= part_conv
->rank
;
1161 if (same_type_p (from
, to
))
1163 if (CLASS_TYPE_P (to
) && conv
->kind
== ck_rvalue
)
1164 conv
->type
= qualified_to
;
1169 A null pointer constant can be converted to a pointer type; ... A
1170 null pointer constant of integral type can be converted to an
1171 rvalue of type std::nullptr_t. */
1172 if ((tcode
== POINTER_TYPE
|| TYPE_PTRMEM_P (to
)
1173 || NULLPTR_TYPE_P (to
))
1174 && expr
&& null_ptr_cst_p (expr
))
1175 conv
= build_conv (ck_std
, to
, conv
);
1176 else if ((tcode
== INTEGER_TYPE
&& fcode
== POINTER_TYPE
)
1177 || (tcode
== POINTER_TYPE
&& fcode
== INTEGER_TYPE
))
1179 /* For backwards brain damage compatibility, allow interconversion of
1180 pointers and integers with a pedwarn. */
1181 conv
= build_conv (ck_std
, to
, conv
);
1184 else if (UNSCOPED_ENUM_P (to
) && fcode
== INTEGER_TYPE
)
1186 /* For backwards brain damage compatibility, allow interconversion of
1187 enums and integers with a pedwarn. */
1188 conv
= build_conv (ck_std
, to
, conv
);
1191 else if ((tcode
== POINTER_TYPE
&& fcode
== POINTER_TYPE
)
1192 || (TYPE_PTRDATAMEM_P (to
) && TYPE_PTRDATAMEM_P (from
)))
1197 if (tcode
== POINTER_TYPE
1198 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from
),
1201 else if (VOID_TYPE_P (TREE_TYPE (to
))
1202 && !TYPE_PTRDATAMEM_P (from
)
1203 && TREE_CODE (TREE_TYPE (from
)) != FUNCTION_TYPE
)
1205 tree nfrom
= TREE_TYPE (from
);
1206 /* Don't try to apply restrict to void. */
1207 int quals
= cp_type_quals (nfrom
) & ~TYPE_QUAL_RESTRICT
;
1208 from
= build_pointer_type
1209 (cp_build_qualified_type (void_type_node
, quals
));
1210 conv
= build_conv (ck_ptr
, from
, conv
);
1212 else if (TYPE_PTRDATAMEM_P (from
))
1214 tree fbase
= TYPE_PTRMEM_CLASS_TYPE (from
);
1215 tree tbase
= TYPE_PTRMEM_CLASS_TYPE (to
);
1217 if (DERIVED_FROM_P (fbase
, tbase
)
1218 && (same_type_ignoring_top_level_qualifiers_p
1219 (TYPE_PTRMEM_POINTED_TO_TYPE (from
),
1220 TYPE_PTRMEM_POINTED_TO_TYPE (to
))))
1222 from
= build_ptrmem_type (tbase
,
1223 TYPE_PTRMEM_POINTED_TO_TYPE (from
));
1224 conv
= build_conv (ck_pmem
, from
, conv
);
1226 else if (!same_type_p (fbase
, tbase
))
1229 else if (CLASS_TYPE_P (TREE_TYPE (from
))
1230 && CLASS_TYPE_P (TREE_TYPE (to
))
1233 An rvalue of type "pointer to cv D," where D is a
1234 class type, can be converted to an rvalue of type
1235 "pointer to cv B," where B is a base class (clause
1236 _class.derived_) of D. If B is an inaccessible
1237 (clause _class.access_) or ambiguous
1238 (_class.member.lookup_) base class of D, a program
1239 that necessitates this conversion is ill-formed.
1240 Therefore, we use DERIVED_FROM_P, and do not check
1241 access or uniqueness. */
1242 && DERIVED_FROM_P (TREE_TYPE (to
), TREE_TYPE (from
)))
1245 cp_build_qualified_type (TREE_TYPE (to
),
1246 cp_type_quals (TREE_TYPE (from
)));
1247 from
= build_pointer_type (from
);
1248 conv
= build_conv (ck_ptr
, from
, conv
);
1249 conv
->base_p
= true;
1252 if (tcode
== POINTER_TYPE
)
1254 to_pointee
= TREE_TYPE (to
);
1255 from_pointee
= TREE_TYPE (from
);
1259 to_pointee
= TYPE_PTRMEM_POINTED_TO_TYPE (to
);
1260 from_pointee
= TYPE_PTRMEM_POINTED_TO_TYPE (from
);
1263 if (same_type_p (from
, to
))
1265 else if (c_cast_p
&& comp_ptr_ttypes_const (to
, from
))
1266 /* In a C-style cast, we ignore CV-qualification because we
1267 are allowed to perform a static_cast followed by a
1269 conv
= build_conv (ck_qual
, to
, conv
);
1270 else if (!c_cast_p
&& comp_ptr_ttypes (to_pointee
, from_pointee
))
1271 conv
= build_conv (ck_qual
, to
, conv
);
1272 else if (expr
&& string_conv_p (to
, expr
, 0))
1273 /* converting from string constant to char *. */
1274 conv
= build_conv (ck_qual
, to
, conv
);
1275 /* Allow conversions among compatible ObjC pointer types (base
1276 conversions have been already handled above). */
1277 else if (c_dialect_objc ()
1278 && objc_compare_types (to
, from
, -4, NULL_TREE
))
1279 conv
= build_conv (ck_ptr
, to
, conv
);
1280 else if (ptr_reasonably_similar (to_pointee
, from_pointee
))
1282 conv
= build_conv (ck_ptr
, to
, conv
);
1290 else if (TYPE_PTRMEMFUNC_P (to
) && TYPE_PTRMEMFUNC_P (from
))
1292 tree fromfn
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from
));
1293 tree tofn
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to
));
1294 tree fbase
= class_of_this_parm (fromfn
);
1295 tree tbase
= class_of_this_parm (tofn
);
1297 if (!DERIVED_FROM_P (fbase
, tbase
)
1298 || !same_type_p (static_fn_type (fromfn
),
1299 static_fn_type (tofn
)))
1302 from
= build_memfn_type (fromfn
,
1304 cp_type_quals (tbase
),
1305 type_memfn_rqual (tofn
));
1306 from
= build_ptrmemfunc_type (build_pointer_type (from
));
1307 conv
= build_conv (ck_pmem
, from
, conv
);
1308 conv
->base_p
= true;
1310 else if (tcode
== BOOLEAN_TYPE
)
1314 A prvalue of arithmetic, unscoped enumeration, pointer, or pointer
1315 to member type can be converted to a prvalue of type bool. ...
1316 For direct-initialization (8.5 [dcl.init]), a prvalue of type
1317 std::nullptr_t can be converted to a prvalue of type bool; */
1318 if (ARITHMETIC_TYPE_P (from
)
1319 || UNSCOPED_ENUM_P (from
)
1320 || fcode
== POINTER_TYPE
1321 || TYPE_PTRMEM_P (from
)
1322 || NULLPTR_TYPE_P (from
))
1324 conv
= build_conv (ck_std
, to
, conv
);
1325 if (fcode
== POINTER_TYPE
1326 || TYPE_PTRDATAMEM_P (from
)
1327 || (TYPE_PTRMEMFUNC_P (from
)
1328 && conv
->rank
< cr_pbool
)
1329 || NULLPTR_TYPE_P (from
))
1330 conv
->rank
= cr_pbool
;
1331 if (NULLPTR_TYPE_P (from
) && (flags
& LOOKUP_ONLYCONVERTING
))
1338 /* We don't check for ENUMERAL_TYPE here because there are no standard
1339 conversions to enum type. */
1340 /* As an extension, allow conversion to complex type. */
1341 else if (ARITHMETIC_TYPE_P (to
))
1343 if (! (INTEGRAL_CODE_P (fcode
)
1344 || (fcode
== REAL_TYPE
&& !(flags
& LOOKUP_NO_NON_INTEGRAL
)))
1345 || SCOPED_ENUM_P (from
))
1347 conv
= build_conv (ck_std
, to
, conv
);
1349 /* Give this a better rank if it's a promotion. */
1350 if (same_type_p (to
, type_promotes_to (from
))
1351 && next_conversion (conv
)->rank
<= cr_promotion
)
1352 conv
->rank
= cr_promotion
;
1354 else if (fcode
== VECTOR_TYPE
&& tcode
== VECTOR_TYPE
1355 && vector_types_convertible_p (from
, to
, false))
1356 return build_conv (ck_std
, to
, conv
);
1357 else if (MAYBE_CLASS_TYPE_P (to
) && MAYBE_CLASS_TYPE_P (from
)
1358 && is_properly_derived_from (from
, to
))
1360 if (conv
->kind
== ck_rvalue
)
1361 conv
= next_conversion (conv
);
1362 conv
= build_conv (ck_base
, to
, conv
);
1363 /* The derived-to-base conversion indicates the initialization
1364 of a parameter with base type from an object of a derived
1365 type. A temporary object is created to hold the result of
1366 the conversion unless we're binding directly to a reference. */
1367 conv
->need_temporary_p
= !(flags
& LOOKUP_NO_TEMP_BIND
);
1372 if (flags
& LOOKUP_NO_NARROWING
)
1373 conv
->check_narrowing
= true;
1378 /* Returns nonzero if T1 is reference-related to T2. */
1381 reference_related_p (tree t1
, tree t2
)
1383 if (t1
== error_mark_node
|| t2
== error_mark_node
)
1386 t1
= TYPE_MAIN_VARIANT (t1
);
1387 t2
= TYPE_MAIN_VARIANT (t2
);
1391 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1392 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
1394 return (same_type_p (t1
, t2
)
1395 || (CLASS_TYPE_P (t1
) && CLASS_TYPE_P (t2
)
1396 && DERIVED_FROM_P (t1
, t2
)));
1399 /* Returns nonzero if T1 is reference-compatible with T2. */
1402 reference_compatible_p (tree t1
, tree t2
)
1406 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
1407 reference-related to T2 and cv1 is the same cv-qualification as,
1408 or greater cv-qualification than, cv2. */
1409 return (reference_related_p (t1
, t2
)
1410 && at_least_as_qualified_p (t1
, t2
));
1413 /* A reference of the indicated TYPE is being bound directly to the
1414 expression represented by the implicit conversion sequence CONV.
1415 Return a conversion sequence for this binding. */
1418 direct_reference_binding (tree type
, conversion
*conv
)
1422 gcc_assert (TREE_CODE (type
) == REFERENCE_TYPE
);
1423 gcc_assert (TREE_CODE (conv
->type
) != REFERENCE_TYPE
);
1425 t
= TREE_TYPE (type
);
1429 When a parameter of reference type binds directly
1430 (_dcl.init.ref_) to an argument expression, the implicit
1431 conversion sequence is the identity conversion, unless the
1432 argument expression has a type that is a derived class of the
1433 parameter type, in which case the implicit conversion sequence is
1434 a derived-to-base Conversion.
1436 If the parameter binds directly to the result of applying a
1437 conversion function to the argument expression, the implicit
1438 conversion sequence is a user-defined conversion sequence
1439 (_over.ics.user_), with the second standard conversion sequence
1440 either an identity conversion or, if the conversion function
1441 returns an entity of a type that is a derived class of the
1442 parameter type, a derived-to-base conversion. */
1443 if (!same_type_ignoring_top_level_qualifiers_p (t
, conv
->type
))
1445 /* Represent the derived-to-base conversion. */
1446 conv
= build_conv (ck_base
, t
, conv
);
1447 /* We will actually be binding to the base-class subobject in
1448 the derived class, so we mark this conversion appropriately.
1449 That way, convert_like knows not to generate a temporary. */
1450 conv
->need_temporary_p
= false;
1452 return build_conv (ck_ref_bind
, type
, conv
);
1455 /* Returns the conversion path from type FROM to reference type TO for
1456 purposes of reference binding. For lvalue binding, either pass a
1457 reference type to FROM or an lvalue expression to EXPR. If the
1458 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1459 the conversion returned. If C_CAST_P is true, this
1460 conversion is coming from a C-style cast. */
1463 reference_binding (tree rto
, tree rfrom
, tree expr
, bool c_cast_p
, int flags
,
1464 tsubst_flags_t complain
)
1466 conversion
*conv
= NULL
;
1467 tree to
= TREE_TYPE (rto
);
1472 cp_lvalue_kind gl_kind
;
1475 if (TREE_CODE (to
) == FUNCTION_TYPE
&& expr
&& type_unknown_p (expr
))
1477 expr
= instantiate_type (to
, expr
, tf_none
);
1478 if (expr
== error_mark_node
)
1480 from
= TREE_TYPE (expr
);
1483 if (expr
&& BRACE_ENCLOSED_INITIALIZER_P (expr
))
1485 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS
);
1486 /* DR 1288: Otherwise, if the initializer list has a single element
1487 of type E and ... [T's] referenced type is reference-related to E,
1488 the object or reference is initialized from that element... */
1489 if (CONSTRUCTOR_NELTS (expr
) == 1)
1491 tree elt
= CONSTRUCTOR_ELT (expr
, 0)->value
;
1492 if (error_operand_p (elt
))
1494 tree etype
= TREE_TYPE (elt
);
1495 if (reference_related_p (to
, etype
))
1502 /* Otherwise, if T is a reference type, a prvalue temporary of the
1503 type referenced by T is copy-list-initialized or
1504 direct-list-initialized, depending on the kind of initialization
1505 for the reference, and the reference is bound to that temporary. */
1506 conv
= implicit_conversion (to
, from
, expr
, c_cast_p
,
1507 flags
|LOOKUP_NO_TEMP_BIND
, complain
);
1511 if (TREE_CODE (from
) == REFERENCE_TYPE
)
1513 from
= TREE_TYPE (from
);
1514 if (!TYPE_REF_IS_RVALUE (rfrom
)
1515 || TREE_CODE (from
) == FUNCTION_TYPE
)
1516 gl_kind
= clk_ordinary
;
1518 gl_kind
= clk_rvalueref
;
1522 gl_kind
= lvalue_kind (expr
);
1523 if (gl_kind
& clk_class
)
1524 /* A class prvalue is not a glvalue. */
1529 is_lvalue
= gl_kind
&& !(gl_kind
& clk_rvalueref
);
1532 if ((gl_kind
& clk_bitfield
) != 0)
1533 tfrom
= unlowered_expr_type (expr
);
1535 /* Figure out whether or not the types are reference-related and
1536 reference compatible. We have do do this after stripping
1537 references from FROM. */
1538 related_p
= reference_related_p (to
, tfrom
);
1539 /* If this is a C cast, first convert to an appropriately qualified
1540 type, so that we can later do a const_cast to the desired type. */
1541 if (related_p
&& c_cast_p
1542 && !at_least_as_qualified_p (to
, tfrom
))
1543 to
= cp_build_qualified_type (to
, cp_type_quals (tfrom
));
1544 compatible_p
= reference_compatible_p (to
, tfrom
);
1546 /* Directly bind reference when target expression's type is compatible with
1547 the reference and expression is an lvalue. In DR391, the wording in
1548 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1549 const and rvalue references to rvalues of compatible class type.
1550 We should also do direct bindings for non-class xvalues. */
1553 || (!(flags
& LOOKUP_NO_TEMP_BIND
)
1554 && (CLASS_TYPE_P (from
)
1555 || TREE_CODE (from
) == ARRAY_TYPE
))))
1559 If the initializer expression
1561 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1562 is reference-compatible with "cv2 T2,"
1564 the reference is bound directly to the initializer expression
1568 If the initializer expression is an rvalue, with T2 a class type,
1569 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1570 is bound to the object represented by the rvalue or to a sub-object
1571 within that object. */
1573 conv
= build_identity_conv (tfrom
, expr
);
1574 conv
= direct_reference_binding (rto
, conv
);
1576 if (flags
& LOOKUP_PREFER_RVALUE
)
1577 /* The top-level caller requested that we pretend that the lvalue
1578 be treated as an rvalue. */
1579 conv
->rvaluedness_matches_p
= TYPE_REF_IS_RVALUE (rto
);
1580 else if (TREE_CODE (rfrom
) == REFERENCE_TYPE
)
1581 /* Handle rvalue reference to function properly. */
1582 conv
->rvaluedness_matches_p
1583 = (TYPE_REF_IS_RVALUE (rto
) == TYPE_REF_IS_RVALUE (rfrom
));
1585 conv
->rvaluedness_matches_p
1586 = (TYPE_REF_IS_RVALUE (rto
) == !is_lvalue
);
1588 if ((gl_kind
& clk_bitfield
) != 0
1589 || ((gl_kind
& clk_packed
) != 0 && !TYPE_PACKED (to
)))
1590 /* For the purposes of overload resolution, we ignore the fact
1591 this expression is a bitfield or packed field. (In particular,
1592 [over.ics.ref] says specifically that a function with a
1593 non-const reference parameter is viable even if the
1594 argument is a bitfield.)
1596 However, when we actually call the function we must create
1597 a temporary to which to bind the reference. If the
1598 reference is volatile, or isn't const, then we cannot make
1599 a temporary, so we just issue an error when the conversion
1601 conv
->need_temporary_p
= true;
1603 /* Don't allow binding of lvalues (other than function lvalues) to
1604 rvalue references. */
1605 if (is_lvalue
&& TYPE_REF_IS_RVALUE (rto
)
1606 && TREE_CODE (to
) != FUNCTION_TYPE
1607 && !(flags
& LOOKUP_PREFER_RVALUE
))
1610 /* Nor the reverse. */
1611 if (!is_lvalue
&& !TYPE_REF_IS_RVALUE (rto
)
1612 && (!CP_TYPE_CONST_NON_VOLATILE_P (to
)
1613 || (flags
& LOOKUP_NO_RVAL_BIND
))
1614 && TREE_CODE (to
) != FUNCTION_TYPE
)
1622 /* [class.conv.fct] A conversion function is never used to convert a
1623 (possibly cv-qualified) object to the (possibly cv-qualified) same
1624 object type (or a reference to it), to a (possibly cv-qualified) base
1625 class of that type (or a reference to it).... */
1626 else if (CLASS_TYPE_P (from
) && !related_p
1627 && !(flags
& LOOKUP_NO_CONVERSION
))
1631 If the initializer expression
1633 -- has a class type (i.e., T2 is a class type) can be
1634 implicitly converted to an lvalue of type "cv3 T3," where
1635 "cv1 T1" is reference-compatible with "cv3 T3". (this
1636 conversion is selected by enumerating the applicable
1637 conversion functions (_over.match.ref_) and choosing the
1638 best one through overload resolution. (_over.match_).
1640 the reference is bound to the lvalue result of the conversion
1641 in the second case. */
1642 z_candidate
*cand
= build_user_type_conversion_1 (rto
, expr
, flags
,
1645 return cand
->second_conv
;
1648 /* From this point on, we conceptually need temporaries, even if we
1649 elide them. Only the cases above are "direct bindings". */
1650 if (flags
& LOOKUP_NO_TEMP_BIND
)
1655 When a parameter of reference type is not bound directly to an
1656 argument expression, the conversion sequence is the one required
1657 to convert the argument expression to the underlying type of the
1658 reference according to _over.best.ics_. Conceptually, this
1659 conversion sequence corresponds to copy-initializing a temporary
1660 of the underlying type with the argument expression. Any
1661 difference in top-level cv-qualification is subsumed by the
1662 initialization itself and does not constitute a conversion. */
1664 /* We're generating a temporary now, but don't bind any more in the
1665 conversion (specifically, don't slice the temporary returned by a
1666 conversion operator). */
1667 flags
|= LOOKUP_NO_TEMP_BIND
;
1669 /* Core issue 899: When [copy-]initializing a temporary to be bound
1670 to the first parameter of a copy constructor (12.8) called with
1671 a single argument in the context of direct-initialization,
1672 explicit conversion functions are also considered.
1674 So don't set LOOKUP_ONLYCONVERTING in that case. */
1675 if (!(flags
& LOOKUP_COPY_PARM
))
1676 flags
|= LOOKUP_ONLYCONVERTING
;
1679 conv
= implicit_conversion (to
, from
, expr
, c_cast_p
,
1684 if (conv
->user_conv_p
)
1686 /* If initializing the temporary used a conversion function,
1687 recalculate the second conversion sequence. */
1688 for (conversion
*t
= conv
; t
; t
= next_conversion (t
))
1689 if (t
->kind
== ck_user
1690 && DECL_CONV_FN_P (t
->cand
->fn
))
1692 tree ftype
= TREE_TYPE (TREE_TYPE (t
->cand
->fn
));
1693 int sflags
= (flags
|LOOKUP_NO_CONVERSION
)&~LOOKUP_NO_TEMP_BIND
;
1694 conversion
*new_second
1695 = reference_binding (rto
, ftype
, NULL_TREE
, c_cast_p
,
1699 return merge_conversion_sequences (t
, new_second
);
1703 conv
= build_conv (ck_ref_bind
, rto
, conv
);
1704 /* This reference binding, unlike those above, requires the
1705 creation of a temporary. */
1706 conv
->need_temporary_p
= true;
1707 conv
->rvaluedness_matches_p
= TYPE_REF_IS_RVALUE (rto
);
1711 Otherwise, the reference shall be an lvalue reference to a
1712 non-volatile const type, or the reference shall be an rvalue
1714 if (!CP_TYPE_CONST_NON_VOLATILE_P (to
) && !TYPE_REF_IS_RVALUE (rto
))
1719 Otherwise, a temporary of type "cv1 T1" is created and
1720 initialized from the initializer expression using the rules for a
1721 non-reference copy initialization. If T1 is reference-related to
1722 T2, cv1 must be the same cv-qualification as, or greater
1723 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1724 if (related_p
&& !at_least_as_qualified_p (to
, from
))
1730 /* Returns the implicit conversion sequence (see [over.ics]) from type
1731 FROM to type TO. The optional expression EXPR may affect the
1732 conversion. FLAGS are the usual overloading flags. If C_CAST_P is
1733 true, this conversion is coming from a C-style cast. */
1736 implicit_conversion (tree to
, tree from
, tree expr
, bool c_cast_p
,
1737 int flags
, tsubst_flags_t complain
)
1741 if (from
== error_mark_node
|| to
== error_mark_node
1742 || expr
== error_mark_node
)
1745 /* Other flags only apply to the primary function in overload
1746 resolution, or after we've chosen one. */
1747 flags
&= (LOOKUP_ONLYCONVERTING
|LOOKUP_NO_CONVERSION
|LOOKUP_COPY_PARM
1748 |LOOKUP_NO_TEMP_BIND
|LOOKUP_NO_RVAL_BIND
|LOOKUP_PREFER_RVALUE
1749 |LOOKUP_NO_NARROWING
|LOOKUP_PROTECT
|LOOKUP_NO_NON_INTEGRAL
);
1751 /* FIXME: actually we don't want warnings either, but we can't just
1752 have 'complain &= ~(tf_warning|tf_error)' because it would cause
1753 the regression of, eg, g++.old-deja/g++.benjamin/16077.C.
1754 We really ought not to issue that warning until we've committed
1755 to that conversion. */
1756 complain
&= ~tf_error
;
1758 if (TREE_CODE (to
) == REFERENCE_TYPE
)
1759 conv
= reference_binding (to
, from
, expr
, c_cast_p
, flags
, complain
);
1761 conv
= standard_conversion (to
, from
, expr
, c_cast_p
, flags
);
1766 if (expr
&& BRACE_ENCLOSED_INITIALIZER_P (expr
))
1768 if (is_std_init_list (to
))
1769 return build_list_conv (to
, expr
, flags
, complain
);
1771 /* As an extension, allow list-initialization of _Complex. */
1772 if (TREE_CODE (to
) == COMPLEX_TYPE
)
1774 conv
= build_complex_conv (to
, expr
, flags
, complain
);
1779 /* Allow conversion from an initializer-list with one element to a
1781 if (SCALAR_TYPE_P (to
))
1783 int nelts
= CONSTRUCTOR_NELTS (expr
);
1787 elt
= build_value_init (to
, tf_none
);
1788 else if (nelts
== 1)
1789 elt
= CONSTRUCTOR_ELT (expr
, 0)->value
;
1791 elt
= error_mark_node
;
1793 conv
= implicit_conversion (to
, TREE_TYPE (elt
), elt
,
1794 c_cast_p
, flags
, complain
);
1797 conv
->check_narrowing
= true;
1798 if (BRACE_ENCLOSED_INITIALIZER_P (elt
))
1799 /* Too many levels of braces, i.e. '{{1}}'. */
1804 else if (TREE_CODE (to
) == ARRAY_TYPE
)
1805 return build_array_conv (to
, expr
, flags
, complain
);
1808 if (expr
!= NULL_TREE
1809 && (MAYBE_CLASS_TYPE_P (from
)
1810 || MAYBE_CLASS_TYPE_P (to
))
1811 && (flags
& LOOKUP_NO_CONVERSION
) == 0)
1813 struct z_candidate
*cand
;
1815 if (CLASS_TYPE_P (to
)
1816 && BRACE_ENCLOSED_INITIALIZER_P (expr
)
1817 && !CLASSTYPE_NON_AGGREGATE (complete_type (to
)))
1818 return build_aggr_conv (to
, expr
, flags
, complain
);
1820 cand
= build_user_type_conversion_1 (to
, expr
, flags
, complain
);
1822 conv
= cand
->second_conv
;
1824 /* We used to try to bind a reference to a temporary here, but that
1825 is now handled after the recursive call to this function at the end
1826 of reference_binding. */
1833 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1834 functions. ARGS will not be changed until a single candidate is
1837 static struct z_candidate
*
1838 add_candidate (struct z_candidate
**candidates
,
1839 tree fn
, tree first_arg
, const vec
<tree
, va_gc
> *args
,
1840 size_t num_convs
, conversion
**convs
,
1841 tree access_path
, tree conversion_path
,
1842 int viable
, struct rejection_reason
*reason
,
1845 struct z_candidate
*cand
= (struct z_candidate
*)
1846 conversion_obstack_alloc (sizeof (struct z_candidate
));
1849 cand
->first_arg
= first_arg
;
1851 cand
->convs
= convs
;
1852 cand
->num_convs
= num_convs
;
1853 cand
->access_path
= access_path
;
1854 cand
->conversion_path
= conversion_path
;
1855 cand
->viable
= viable
;
1856 cand
->reason
= reason
;
1857 cand
->next
= *candidates
;
1858 cand
->flags
= flags
;
1864 /* Return the number of remaining arguments in the parameter list
1865 beginning with ARG. */
1868 remaining_arguments (tree arg
)
1872 for (n
= 0; arg
!= NULL_TREE
&& arg
!= void_list_node
;
1873 arg
= TREE_CHAIN (arg
))
1879 /* Create an overload candidate for the function or method FN called
1880 with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
1881 FLAGS is passed on to implicit_conversion.
1883 This does not change ARGS.
1885 CTYPE, if non-NULL, is the type we want to pretend this function
1886 comes from for purposes of overload resolution. */
1888 static struct z_candidate
*
1889 add_function_candidate (struct z_candidate
**candidates
,
1890 tree fn
, tree ctype
, tree first_arg
,
1891 const vec
<tree
, va_gc
> *args
, tree access_path
,
1892 tree conversion_path
, int flags
,
1893 tsubst_flags_t complain
)
1895 tree parmlist
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
1899 tree orig_first_arg
= first_arg
;
1902 struct rejection_reason
*reason
= NULL
;
1904 /* At this point we should not see any functions which haven't been
1905 explicitly declared, except for friend functions which will have
1906 been found using argument dependent lookup. */
1907 gcc_assert (!DECL_ANTICIPATED (fn
) || DECL_HIDDEN_FRIEND_P (fn
));
1909 /* The `this', `in_chrg' and VTT arguments to constructors are not
1910 considered in overload resolution. */
1911 if (DECL_CONSTRUCTOR_P (fn
))
1913 parmlist
= skip_artificial_parms_for (fn
, parmlist
);
1914 skip
= num_artificial_parms_for (fn
);
1915 if (skip
> 0 && first_arg
!= NULL_TREE
)
1918 first_arg
= NULL_TREE
;
1924 len
= vec_safe_length (args
) - skip
+ (first_arg
!= NULL_TREE
? 1 : 0);
1925 convs
= alloc_conversions (len
);
1927 /* 13.3.2 - Viable functions [over.match.viable]
1928 First, to be a viable function, a candidate function shall have enough
1929 parameters to agree in number with the arguments in the list.
1931 We need to check this first; otherwise, checking the ICSes might cause
1932 us to produce an ill-formed template instantiation. */
1934 parmnode
= parmlist
;
1935 for (i
= 0; i
< len
; ++i
)
1937 if (parmnode
== NULL_TREE
|| parmnode
== void_list_node
)
1939 parmnode
= TREE_CHAIN (parmnode
);
1942 if ((i
< len
&& parmnode
)
1943 || !sufficient_parms_p (parmnode
))
1945 int remaining
= remaining_arguments (parmnode
);
1947 reason
= arity_rejection (first_arg
, i
+ remaining
, len
);
1949 /* When looking for a function from a subobject from an implicit
1950 copy/move constructor/operator=, don't consider anything that takes (a
1951 reference to) an unrelated type. See c++/44909 and core 1092. */
1952 else if (parmlist
&& (flags
& LOOKUP_DEFAULTED
))
1954 if (DECL_CONSTRUCTOR_P (fn
))
1956 else if (DECL_ASSIGNMENT_OPERATOR_P (fn
)
1957 && DECL_OVERLOADED_OPERATOR_P (fn
) == NOP_EXPR
)
1963 parmnode
= chain_index (i
-1, parmlist
);
1964 if (!reference_related_p (non_reference (TREE_VALUE (parmnode
)),
1969 /* This only applies at the top level. */
1970 flags
&= ~LOOKUP_DEFAULTED
;
1976 /* Second, for F to be a viable function, there shall exist for each
1977 argument an implicit conversion sequence that converts that argument
1978 to the corresponding parameter of F. */
1980 parmnode
= parmlist
;
1982 for (i
= 0; i
< len
; ++i
)
1984 tree argtype
, to_type
;
1989 if (parmnode
== void_list_node
)
1992 if (i
== 0 && first_arg
!= NULL_TREE
)
1995 arg
= CONST_CAST_TREE (
1996 (*args
)[i
+ skip
- (first_arg
!= NULL_TREE
? 1 : 0)]);
1997 argtype
= lvalue_type (arg
);
1999 is_this
= (i
== 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn
)
2000 && ! DECL_CONSTRUCTOR_P (fn
));
2004 tree parmtype
= TREE_VALUE (parmnode
);
2007 parmnode
= TREE_CHAIN (parmnode
);
2009 /* The type of the implicit object parameter ('this') for
2010 overload resolution is not always the same as for the
2011 function itself; conversion functions are considered to
2012 be members of the class being converted, and functions
2013 introduced by a using-declaration are considered to be
2014 members of the class that uses them.
2016 Since build_over_call ignores the ICS for the `this'
2017 parameter, we can just change the parm type. */
2018 if (ctype
&& is_this
)
2020 parmtype
= cp_build_qualified_type
2021 (ctype
, cp_type_quals (TREE_TYPE (parmtype
)));
2022 if (FUNCTION_REF_QUALIFIED (TREE_TYPE (fn
)))
2024 /* If the function has a ref-qualifier, the implicit
2025 object parameter has reference type. */
2026 bool rv
= FUNCTION_RVALUE_QUALIFIED (TREE_TYPE (fn
));
2027 parmtype
= cp_build_reference_type (parmtype
, rv
);
2028 /* The special handling of 'this' conversions in compare_ics
2029 does not apply if there is a ref-qualifier. */
2034 parmtype
= build_pointer_type (parmtype
);
2035 arg
= build_this (arg
);
2036 argtype
= lvalue_type (arg
);
2040 /* Core issue 899: When [copy-]initializing a temporary to be bound
2041 to the first parameter of a copy constructor (12.8) called with
2042 a single argument in the context of direct-initialization,
2043 explicit conversion functions are also considered.
2045 So set LOOKUP_COPY_PARM to let reference_binding know that
2046 it's being called in that context. We generalize the above
2047 to handle move constructors and template constructors as well;
2048 the standardese should soon be updated similarly. */
2049 if (ctype
&& i
== 0 && (len
-skip
== 1)
2050 && DECL_CONSTRUCTOR_P (fn
)
2051 && parmtype
!= error_mark_node
2052 && (same_type_ignoring_top_level_qualifiers_p
2053 (non_reference (parmtype
), ctype
)))
2055 if (!(flags
& LOOKUP_ONLYCONVERTING
))
2056 lflags
|= LOOKUP_COPY_PARM
;
2057 /* We allow user-defined conversions within init-lists, but
2058 don't list-initialize the copy parm, as that would mean
2059 using two levels of braces for the same type. */
2060 if ((flags
& LOOKUP_LIST_INIT_CTOR
)
2061 && BRACE_ENCLOSED_INITIALIZER_P (arg
))
2062 lflags
|= LOOKUP_NO_CONVERSION
;
2065 lflags
|= LOOKUP_ONLYCONVERTING
;
2067 t
= implicit_conversion (parmtype
, argtype
, arg
,
2068 /*c_cast_p=*/false, lflags
, complain
);
2073 t
= build_identity_conv (argtype
, arg
);
2074 t
->ellipsis_p
= true;
2085 reason
= arg_conversion_rejection (first_arg
, i
, argtype
, to_type
);
2092 reason
= bad_arg_conversion_rejection (first_arg
, i
, arg
, to_type
);
2097 return add_candidate (candidates
, fn
, orig_first_arg
, args
, len
, convs
,
2098 access_path
, conversion_path
, viable
, reason
, flags
);
2101 /* Create an overload candidate for the conversion function FN which will
2102 be invoked for expression OBJ, producing a pointer-to-function which
2103 will in turn be called with the argument list FIRST_ARG/ARGLIST,
2104 and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
2105 passed on to implicit_conversion.
2107 Actually, we don't really care about FN; we care about the type it
2108 converts to. There may be multiple conversion functions that will
2109 convert to that type, and we rely on build_user_type_conversion_1 to
2110 choose the best one; so when we create our candidate, we record the type
2111 instead of the function. */
2113 static struct z_candidate
*
2114 add_conv_candidate (struct z_candidate
**candidates
, tree fn
, tree obj
,
2115 tree first_arg
, const vec
<tree
, va_gc
> *arglist
,
2116 tree access_path
, tree conversion_path
,
2117 tsubst_flags_t complain
)
2119 tree totype
= TREE_TYPE (TREE_TYPE (fn
));
2120 int i
, len
, viable
, flags
;
2121 tree parmlist
, parmnode
;
2123 struct rejection_reason
*reason
;
2125 for (parmlist
= totype
; TREE_CODE (parmlist
) != FUNCTION_TYPE
; )
2126 parmlist
= TREE_TYPE (parmlist
);
2127 parmlist
= TYPE_ARG_TYPES (parmlist
);
2129 len
= vec_safe_length (arglist
) + (first_arg
!= NULL_TREE
? 1 : 0) + 1;
2130 convs
= alloc_conversions (len
);
2131 parmnode
= parmlist
;
2133 flags
= LOOKUP_IMPLICIT
;
2136 /* Don't bother looking up the same type twice. */
2137 if (*candidates
&& (*candidates
)->fn
== totype
)
2140 for (i
= 0; i
< len
; ++i
)
2142 tree arg
, argtype
, convert_type
= NULL_TREE
;
2147 else if (i
== 1 && first_arg
!= NULL_TREE
)
2150 arg
= (*arglist
)[i
- (first_arg
!= NULL_TREE
? 1 : 0) - 1];
2151 argtype
= lvalue_type (arg
);
2155 t
= implicit_conversion (totype
, argtype
, arg
, /*c_cast_p=*/false,
2157 convert_type
= totype
;
2159 else if (parmnode
== void_list_node
)
2163 t
= implicit_conversion (TREE_VALUE (parmnode
), argtype
, arg
,
2164 /*c_cast_p=*/false, flags
, complain
);
2165 convert_type
= TREE_VALUE (parmnode
);
2169 t
= build_identity_conv (argtype
, arg
);
2170 t
->ellipsis_p
= true;
2171 convert_type
= argtype
;
2181 reason
= bad_arg_conversion_rejection (NULL_TREE
, i
, arg
, convert_type
);
2188 parmnode
= TREE_CHAIN (parmnode
);
2192 || ! sufficient_parms_p (parmnode
))
2194 int remaining
= remaining_arguments (parmnode
);
2196 reason
= arity_rejection (NULL_TREE
, i
+ remaining
, len
);
2199 return add_candidate (candidates
, totype
, first_arg
, arglist
, len
, convs
,
2200 access_path
, conversion_path
, viable
, reason
, flags
);
2204 build_builtin_candidate (struct z_candidate
**candidates
, tree fnname
,
2205 tree type1
, tree type2
, tree
*args
, tree
*argtypes
,
2206 int flags
, tsubst_flags_t complain
)
2213 struct rejection_reason
*reason
= NULL
;
2218 num_convs
= args
[2] ? 3 : (args
[1] ? 2 : 1);
2219 convs
= alloc_conversions (num_convs
);
2221 /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2222 conversion ops are allowed. We handle that here by just checking for
2223 boolean_type_node because other operators don't ask for it. COND_EXPR
2224 also does contextual conversion to bool for the first operand, but we
2225 handle that in build_conditional_expr, and type1 here is operand 2. */
2226 if (type1
!= boolean_type_node
)
2227 flags
|= LOOKUP_ONLYCONVERTING
;
2229 for (i
= 0; i
< 2; ++i
)
2234 t
= implicit_conversion (types
[i
], argtypes
[i
], args
[i
],
2235 /*c_cast_p=*/false, flags
, complain
);
2239 /* We need something for printing the candidate. */
2240 t
= build_identity_conv (types
[i
], NULL_TREE
);
2241 reason
= arg_conversion_rejection (NULL_TREE
, i
, argtypes
[i
],
2247 reason
= bad_arg_conversion_rejection (NULL_TREE
, i
, args
[i
],
2253 /* For COND_EXPR we rearranged the arguments; undo that now. */
2256 convs
[2] = convs
[1];
2257 convs
[1] = convs
[0];
2258 t
= implicit_conversion (boolean_type_node
, argtypes
[2], args
[2],
2259 /*c_cast_p=*/false, flags
,
2266 reason
= arg_conversion_rejection (NULL_TREE
, 0, argtypes
[2],
2271 add_candidate (candidates
, fnname
, /*first_arg=*/NULL_TREE
, /*args=*/NULL
,
2273 /*access_path=*/NULL_TREE
,
2274 /*conversion_path=*/NULL_TREE
,
2275 viable
, reason
, flags
);
2279 is_complete (tree t
)
2281 return COMPLETE_TYPE_P (complete_type (t
));
2284 /* Returns nonzero if TYPE is a promoted arithmetic type. */
2287 promoted_arithmetic_type_p (tree type
)
2291 In this section, the term promoted integral type is used to refer
2292 to those integral types which are preserved by integral promotion
2293 (including e.g. int and long but excluding e.g. char).
2294 Similarly, the term promoted arithmetic type refers to promoted
2295 integral types plus floating types. */
2296 return ((CP_INTEGRAL_TYPE_P (type
)
2297 && same_type_p (type_promotes_to (type
), type
))
2298 || TREE_CODE (type
) == REAL_TYPE
);
2301 /* Create any builtin operator overload candidates for the operator in
2302 question given the converted operand types TYPE1 and TYPE2. The other
2303 args are passed through from add_builtin_candidates to
2304 build_builtin_candidate.
2306 TYPE1 and TYPE2 may not be permissible, and we must filter them.
2307 If CODE is requires candidates operands of the same type of the kind
2308 of which TYPE1 and TYPE2 are, we add both candidates
2309 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
2312 add_builtin_candidate (struct z_candidate
**candidates
, enum tree_code code
,
2313 enum tree_code code2
, tree fnname
, tree type1
,
2314 tree type2
, tree
*args
, tree
*argtypes
, int flags
,
2315 tsubst_flags_t complain
)
2319 case POSTINCREMENT_EXPR
:
2320 case POSTDECREMENT_EXPR
:
2321 args
[1] = integer_zero_node
;
2322 type2
= integer_type_node
;
2331 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2332 and VQ is either volatile or empty, there exist candidate operator
2333 functions of the form
2334 VQ T& operator++(VQ T&);
2335 T operator++(VQ T&, int);
2336 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
2337 type other than bool, and VQ is either volatile or empty, there exist
2338 candidate operator functions of the form
2339 VQ T& operator--(VQ T&);
2340 T operator--(VQ T&, int);
2341 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
2342 complete object type, and VQ is either volatile or empty, there exist
2343 candidate operator functions of the form
2344 T*VQ& operator++(T*VQ&);
2345 T*VQ& operator--(T*VQ&);
2346 T* operator++(T*VQ&, int);
2347 T* operator--(T*VQ&, int); */
2349 case POSTDECREMENT_EXPR
:
2350 case PREDECREMENT_EXPR
:
2351 if (TREE_CODE (type1
) == BOOLEAN_TYPE
)
2353 case POSTINCREMENT_EXPR
:
2354 case PREINCREMENT_EXPR
:
2355 if (ARITHMETIC_TYPE_P (type1
) || TYPE_PTROB_P (type1
))
2357 type1
= build_reference_type (type1
);
2362 /* 7 For every cv-qualified or cv-unqualified object type T, there
2363 exist candidate operator functions of the form
2367 8 For every function type T, there exist candidate operator functions of
2369 T& operator*(T*); */
2372 if (TYPE_PTR_P (type1
)
2373 && (TYPE_PTROB_P (type1
)
2374 || TREE_CODE (TREE_TYPE (type1
)) == FUNCTION_TYPE
))
2378 /* 9 For every type T, there exist candidate operator functions of the form
2381 10For every promoted arithmetic type T, there exist candidate operator
2382 functions of the form
2386 case UNARY_PLUS_EXPR
: /* unary + */
2387 if (TYPE_PTR_P (type1
))
2390 if (ARITHMETIC_TYPE_P (type1
))
2394 /* 11For every promoted integral type T, there exist candidate operator
2395 functions of the form
2399 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1
))
2403 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
2404 is the same type as C2 or is a derived class of C2, T is a complete
2405 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
2406 there exist candidate operator functions of the form
2407 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2408 where CV12 is the union of CV1 and CV2. */
2411 if (TYPE_PTR_P (type1
) && TYPE_PTRMEM_P (type2
))
2413 tree c1
= TREE_TYPE (type1
);
2414 tree c2
= TYPE_PTRMEM_CLASS_TYPE (type2
);
2416 if (MAYBE_CLASS_TYPE_P (c1
) && DERIVED_FROM_P (c2
, c1
)
2417 && (TYPE_PTRMEMFUNC_P (type2
)
2418 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2
))))
2423 /* 13For every pair of promoted arithmetic types L and R, there exist can-
2424 didate operator functions of the form
2429 bool operator<(L, R);
2430 bool operator>(L, R);
2431 bool operator<=(L, R);
2432 bool operator>=(L, R);
2433 bool operator==(L, R);
2434 bool operator!=(L, R);
2435 where LR is the result of the usual arithmetic conversions between
2438 14For every pair of types T and I, where T is a cv-qualified or cv-
2439 unqualified complete object type and I is a promoted integral type,
2440 there exist candidate operator functions of the form
2441 T* operator+(T*, I);
2442 T& operator[](T*, I);
2443 T* operator-(T*, I);
2444 T* operator+(I, T*);
2445 T& operator[](I, T*);
2447 15For every T, where T is a pointer to complete object type, there exist
2448 candidate operator functions of the form112)
2449 ptrdiff_t operator-(T, T);
2451 16For every pointer or enumeration type T, there exist candidate operator
2452 functions of the form
2453 bool operator<(T, T);
2454 bool operator>(T, T);
2455 bool operator<=(T, T);
2456 bool operator>=(T, T);
2457 bool operator==(T, T);
2458 bool operator!=(T, T);
2460 17For every pointer to member type T, there exist candidate operator
2461 functions of the form
2462 bool operator==(T, T);
2463 bool operator!=(T, T); */
2466 if (TYPE_PTROB_P (type1
) && TYPE_PTROB_P (type2
))
2468 if (TYPE_PTROB_P (type1
)
2469 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2
))
2471 type2
= ptrdiff_type_node
;
2475 case TRUNC_DIV_EXPR
:
2476 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
2482 if ((TYPE_PTRMEMFUNC_P (type1
) && TYPE_PTRMEMFUNC_P (type2
))
2483 || (TYPE_PTRDATAMEM_P (type1
) && TYPE_PTRDATAMEM_P (type2
)))
2485 if (TYPE_PTRMEM_P (type1
) && null_ptr_cst_p (args
[1]))
2490 if (TYPE_PTRMEM_P (type2
) && null_ptr_cst_p (args
[0]))
2502 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
2504 if (TYPE_PTR_P (type1
) && TYPE_PTR_P (type2
))
2506 if (TREE_CODE (type1
) == ENUMERAL_TYPE
2507 && TREE_CODE (type2
) == ENUMERAL_TYPE
)
2509 if (TYPE_PTR_P (type1
)
2510 && null_ptr_cst_p (args
[1]))
2515 if (null_ptr_cst_p (args
[0])
2516 && TYPE_PTR_P (type2
))
2524 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
2527 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1
) && TYPE_PTROB_P (type2
))
2529 type1
= ptrdiff_type_node
;
2532 if (TYPE_PTROB_P (type1
) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2
))
2534 type2
= ptrdiff_type_node
;
2539 /* 18For every pair of promoted integral types L and R, there exist candi-
2540 date operator functions of the form
2547 where LR is the result of the usual arithmetic conversions between
2550 case TRUNC_MOD_EXPR
:
2556 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1
) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2
))
2560 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
2561 type, VQ is either volatile or empty, and R is a promoted arithmetic
2562 type, there exist candidate operator functions of the form
2563 VQ L& operator=(VQ L&, R);
2564 VQ L& operator*=(VQ L&, R);
2565 VQ L& operator/=(VQ L&, R);
2566 VQ L& operator+=(VQ L&, R);
2567 VQ L& operator-=(VQ L&, R);
2569 20For every pair T, VQ), where T is any type and VQ is either volatile
2570 or empty, there exist candidate operator functions of the form
2571 T*VQ& operator=(T*VQ&, T*);
2573 21For every pair T, VQ), where T is a pointer to member type and VQ is
2574 either volatile or empty, there exist candidate operator functions of
2576 VQ T& operator=(VQ T&, T);
2578 22For every triple T, VQ, I), where T is a cv-qualified or cv-
2579 unqualified complete object type, VQ is either volatile or empty, and
2580 I is a promoted integral type, there exist candidate operator func-
2582 T*VQ& operator+=(T*VQ&, I);
2583 T*VQ& operator-=(T*VQ&, I);
2585 23For every triple L, VQ, R), where L is an integral or enumeration
2586 type, VQ is either volatile or empty, and R is a promoted integral
2587 type, there exist candidate operator functions of the form
2589 VQ L& operator%=(VQ L&, R);
2590 VQ L& operator<<=(VQ L&, R);
2591 VQ L& operator>>=(VQ L&, R);
2592 VQ L& operator&=(VQ L&, R);
2593 VQ L& operator^=(VQ L&, R);
2594 VQ L& operator|=(VQ L&, R); */
2601 if (TYPE_PTROB_P (type1
) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2
))
2603 type2
= ptrdiff_type_node
;
2607 case TRUNC_DIV_EXPR
:
2608 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
2612 case TRUNC_MOD_EXPR
:
2618 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1
) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2
))
2623 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
2625 if ((TYPE_PTRMEMFUNC_P (type1
) && TYPE_PTRMEMFUNC_P (type2
))
2626 || (TYPE_PTR_P (type1
) && TYPE_PTR_P (type2
))
2627 || (TYPE_PTRDATAMEM_P (type1
) && TYPE_PTRDATAMEM_P (type2
))
2628 || ((TYPE_PTRMEMFUNC_P (type1
)
2629 || TYPE_PTR_P (type1
))
2630 && null_ptr_cst_p (args
[1])))
2640 type1
= build_reference_type (type1
);
2646 For every pair of promoted arithmetic types L and R, there
2647 exist candidate operator functions of the form
2649 LR operator?(bool, L, R);
2651 where LR is the result of the usual arithmetic conversions
2652 between types L and R.
2654 For every type T, where T is a pointer or pointer-to-member
2655 type, there exist candidate operator functions of the form T
2656 operator?(bool, T, T); */
2658 if (promoted_arithmetic_type_p (type1
)
2659 && promoted_arithmetic_type_p (type2
))
2663 /* Otherwise, the types should be pointers. */
2664 if (!TYPE_PTR_OR_PTRMEM_P (type1
) || !TYPE_PTR_OR_PTRMEM_P (type2
))
2667 /* We don't check that the two types are the same; the logic
2668 below will actually create two candidates; one in which both
2669 parameter types are TYPE1, and one in which both parameter
2675 if (ARITHMETIC_TYPE_P (type1
))
2683 /* Make sure we don't create builtin candidates with dependent types. */
2684 bool u1
= uses_template_parms (type1
);
2685 bool u2
= type2
? uses_template_parms (type2
) : false;
2688 /* Try to recover if one of the types is non-dependent. But if
2689 there's only one type, there's nothing we can do. */
2692 /* And we lose if both are dependent. */
2695 /* Or if they have different forms. */
2696 if (TREE_CODE (type1
) != TREE_CODE (type2
))
2705 /* If we're dealing with two pointer types or two enumeral types,
2706 we need candidates for both of them. */
2707 if (type2
&& !same_type_p (type1
, type2
)
2708 && TREE_CODE (type1
) == TREE_CODE (type2
)
2709 && (TREE_CODE (type1
) == REFERENCE_TYPE
2710 || (TYPE_PTR_P (type1
) && TYPE_PTR_P (type2
))
2711 || (TYPE_PTRDATAMEM_P (type1
) && TYPE_PTRDATAMEM_P (type2
))
2712 || TYPE_PTRMEMFUNC_P (type1
)
2713 || MAYBE_CLASS_TYPE_P (type1
)
2714 || TREE_CODE (type1
) == ENUMERAL_TYPE
))
2716 if (TYPE_PTR_OR_PTRMEM_P (type1
))
2718 tree cptype
= composite_pointer_type (type1
, type2
,
2723 if (cptype
!= error_mark_node
)
2725 build_builtin_candidate
2726 (candidates
, fnname
, cptype
, cptype
, args
, argtypes
,
2732 build_builtin_candidate
2733 (candidates
, fnname
, type1
, type1
, args
, argtypes
, flags
, complain
);
2734 build_builtin_candidate
2735 (candidates
, fnname
, type2
, type2
, args
, argtypes
, flags
, complain
);
2739 build_builtin_candidate
2740 (candidates
, fnname
, type1
, type2
, args
, argtypes
, flags
, complain
);
2744 type_decays_to (tree type
)
2746 if (TREE_CODE (type
) == ARRAY_TYPE
)
2747 return build_pointer_type (TREE_TYPE (type
));
2748 if (TREE_CODE (type
) == FUNCTION_TYPE
)
2749 return build_pointer_type (type
);
2753 /* There are three conditions of builtin candidates:
2755 1) bool-taking candidates. These are the same regardless of the input.
2756 2) pointer-pair taking candidates. These are generated for each type
2757 one of the input types converts to.
2758 3) arithmetic candidates. According to the standard, we should generate
2759 all of these, but I'm trying not to...
2761 Here we generate a superset of the possible candidates for this particular
2762 case. That is a subset of the full set the standard defines, plus some
2763 other cases which the standard disallows. add_builtin_candidate will
2764 filter out the invalid set. */
2767 add_builtin_candidates (struct z_candidate
**candidates
, enum tree_code code
,
2768 enum tree_code code2
, tree fnname
, tree
*args
,
2769 int flags
, tsubst_flags_t complain
)
2773 tree type
, argtypes
[3], t
;
2774 /* TYPES[i] is the set of possible builtin-operator parameter types
2775 we will consider for the Ith argument. */
2776 vec
<tree
, va_gc
> *types
[2];
2779 for (i
= 0; i
< 3; ++i
)
2782 argtypes
[i
] = unlowered_expr_type (args
[i
]);
2784 argtypes
[i
] = NULL_TREE
;
2789 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2790 and VQ is either volatile or empty, there exist candidate operator
2791 functions of the form
2792 VQ T& operator++(VQ T&); */
2794 case POSTINCREMENT_EXPR
:
2795 case PREINCREMENT_EXPR
:
2796 case POSTDECREMENT_EXPR
:
2797 case PREDECREMENT_EXPR
:
2802 /* 24There also exist candidate operator functions of the form
2803 bool operator!(bool);
2804 bool operator&&(bool, bool);
2805 bool operator||(bool, bool); */
2807 case TRUTH_NOT_EXPR
:
2808 build_builtin_candidate
2809 (candidates
, fnname
, boolean_type_node
,
2810 NULL_TREE
, args
, argtypes
, flags
, complain
);
2813 case TRUTH_ORIF_EXPR
:
2814 case TRUTH_ANDIF_EXPR
:
2815 build_builtin_candidate
2816 (candidates
, fnname
, boolean_type_node
,
2817 boolean_type_node
, args
, argtypes
, flags
, complain
);
2839 types
[0] = make_tree_vector ();
2840 types
[1] = make_tree_vector ();
2842 for (i
= 0; i
< 2; ++i
)
2846 else if (MAYBE_CLASS_TYPE_P (argtypes
[i
]))
2850 if (i
== 0 && code
== MODIFY_EXPR
&& code2
== NOP_EXPR
)
2853 convs
= lookup_conversions (argtypes
[i
]);
2855 if (code
== COND_EXPR
)
2857 if (real_lvalue_p (args
[i
]))
2858 vec_safe_push (types
[i
], build_reference_type (argtypes
[i
]));
2860 vec_safe_push (types
[i
], TYPE_MAIN_VARIANT (argtypes
[i
]));
2866 for (; convs
; convs
= TREE_CHAIN (convs
))
2868 type
= TREE_TYPE (convs
);
2871 && (TREE_CODE (type
) != REFERENCE_TYPE
2872 || CP_TYPE_CONST_P (TREE_TYPE (type
))))
2875 if (code
== COND_EXPR
&& TREE_CODE (type
) == REFERENCE_TYPE
)
2876 vec_safe_push (types
[i
], type
);
2878 type
= non_reference (type
);
2879 if (i
!= 0 || ! ref1
)
2881 type
= cv_unqualified (type_decays_to (type
));
2882 if (enum_p
&& TREE_CODE (type
) == ENUMERAL_TYPE
)
2883 vec_safe_push (types
[i
], type
);
2884 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type
))
2885 type
= type_promotes_to (type
);
2888 if (! vec_member (type
, types
[i
]))
2889 vec_safe_push (types
[i
], type
);
2894 if (code
== COND_EXPR
&& real_lvalue_p (args
[i
]))
2895 vec_safe_push (types
[i
], build_reference_type (argtypes
[i
]));
2896 type
= non_reference (argtypes
[i
]);
2897 if (i
!= 0 || ! ref1
)
2899 type
= cv_unqualified (type_decays_to (type
));
2900 if (enum_p
&& UNSCOPED_ENUM_P (type
))
2901 vec_safe_push (types
[i
], type
);
2902 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type
))
2903 type
= type_promotes_to (type
);
2905 vec_safe_push (types
[i
], type
);
2909 /* Run through the possible parameter types of both arguments,
2910 creating candidates with those parameter types. */
2911 FOR_EACH_VEC_ELT_REVERSE (*(types
[0]), ix
, t
)
2916 if (!types
[1]->is_empty ())
2917 FOR_EACH_VEC_ELT_REVERSE (*(types
[1]), jx
, u
)
2918 add_builtin_candidate
2919 (candidates
, code
, code2
, fnname
, t
,
2920 u
, args
, argtypes
, flags
, complain
);
2922 add_builtin_candidate
2923 (candidates
, code
, code2
, fnname
, t
,
2924 NULL_TREE
, args
, argtypes
, flags
, complain
);
2927 release_tree_vector (types
[0]);
2928 release_tree_vector (types
[1]);
2932 /* If TMPL can be successfully instantiated as indicated by
2933 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2935 TMPL is the template. EXPLICIT_TARGS are any explicit template
2936 arguments. ARGLIST is the arguments provided at the call-site.
2937 This does not change ARGLIST. The RETURN_TYPE is the desired type
2938 for conversion operators. If OBJ is NULL_TREE, FLAGS and CTYPE are
2939 as for add_function_candidate. If an OBJ is supplied, FLAGS and
2940 CTYPE are ignored, and OBJ is as for add_conv_candidate. */
2942 static struct z_candidate
*
2943 add_template_candidate_real (struct z_candidate
**candidates
, tree tmpl
,
2944 tree ctype
, tree explicit_targs
, tree first_arg
,
2945 const vec
<tree
, va_gc
> *arglist
, tree return_type
,
2946 tree access_path
, tree conversion_path
,
2947 int flags
, tree obj
, unification_kind_t strict
,
2948 tsubst_flags_t complain
)
2950 int ntparms
= DECL_NTPARMS (tmpl
);
2951 tree targs
= make_tree_vec (ntparms
);
2952 unsigned int len
= vec_safe_length (arglist
);
2953 unsigned int nargs
= (first_arg
== NULL_TREE
? 0 : 1) + len
;
2954 unsigned int skip_without_in_chrg
= 0;
2955 tree first_arg_without_in_chrg
= first_arg
;
2956 tree
*args_without_in_chrg
;
2957 unsigned int nargs_without_in_chrg
;
2958 unsigned int ia
, ix
;
2960 struct z_candidate
*cand
;
2962 struct rejection_reason
*reason
= NULL
;
2965 /* We don't do deduction on the in-charge parameter, the VTT
2966 parameter or 'this'. */
2967 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl
))
2969 if (first_arg_without_in_chrg
!= NULL_TREE
)
2970 first_arg_without_in_chrg
= NULL_TREE
;
2972 ++skip_without_in_chrg
;
2975 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl
)
2976 || DECL_BASE_CONSTRUCTOR_P (tmpl
))
2977 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl
)))
2979 if (first_arg_without_in_chrg
!= NULL_TREE
)
2980 first_arg_without_in_chrg
= NULL_TREE
;
2982 ++skip_without_in_chrg
;
2985 if (len
< skip_without_in_chrg
)
2988 nargs_without_in_chrg
= ((first_arg_without_in_chrg
!= NULL_TREE
? 1 : 0)
2989 + (len
- skip_without_in_chrg
));
2990 args_without_in_chrg
= XALLOCAVEC (tree
, nargs_without_in_chrg
);
2992 if (first_arg_without_in_chrg
!= NULL_TREE
)
2994 args_without_in_chrg
[ia
] = first_arg_without_in_chrg
;
2997 for (ix
= skip_without_in_chrg
;
2998 vec_safe_iterate (arglist
, ix
, &arg
);
3001 args_without_in_chrg
[ia
] = arg
;
3004 gcc_assert (ia
== nargs_without_in_chrg
);
3006 errs
= errorcount
+sorrycount
;
3007 fn
= fn_type_unification (tmpl
, explicit_targs
, targs
,
3008 args_without_in_chrg
,
3009 nargs_without_in_chrg
,
3010 return_type
, strict
, flags
, false,
3011 complain
& tf_decltype
);
3013 if (fn
== error_mark_node
)
3015 /* Don't repeat unification later if it already resulted in errors. */
3016 if (errorcount
+sorrycount
== errs
)
3017 reason
= template_unification_rejection (tmpl
, explicit_targs
,
3018 targs
, args_without_in_chrg
,
3019 nargs_without_in_chrg
,
3020 return_type
, strict
, flags
);
3022 reason
= template_unification_error_rejection ();
3028 A member function template is never instantiated to perform the
3029 copy of a class object to an object of its class type.
3031 It's a little unclear what this means; the standard explicitly
3032 does allow a template to be used to copy a class. For example,
3037 template <class T> A(const T&);
3040 void g () { A a (f ()); }
3042 the member template will be used to make the copy. The section
3043 quoted above appears in the paragraph that forbids constructors
3044 whose only parameter is (a possibly cv-qualified variant of) the
3045 class type, and a logical interpretation is that the intent was
3046 to forbid the instantiation of member templates which would then
3048 if (DECL_CONSTRUCTOR_P (fn
) && nargs
== 2)
3050 tree arg_types
= FUNCTION_FIRST_USER_PARMTYPE (fn
);
3051 if (arg_types
&& same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types
)),
3054 reason
= invalid_copy_with_fn_template_rejection ();
3059 if (obj
!= NULL_TREE
)
3060 /* Aha, this is a conversion function. */
3061 cand
= add_conv_candidate (candidates
, fn
, obj
, first_arg
, arglist
,
3062 access_path
, conversion_path
, complain
);
3064 cand
= add_function_candidate (candidates
, fn
, ctype
,
3065 first_arg
, arglist
, access_path
,
3066 conversion_path
, flags
, complain
);
3067 if (DECL_TI_TEMPLATE (fn
) != tmpl
)
3068 /* This situation can occur if a member template of a template
3069 class is specialized. Then, instantiate_template might return
3070 an instantiation of the specialization, in which case the
3071 DECL_TI_TEMPLATE field will point at the original
3072 specialization. For example:
3074 template <class T> struct S { template <class U> void f(U);
3075 template <> void f(int) {}; };
3079 Here, TMPL will be template <class U> S<double>::f(U).
3080 And, instantiate template will give us the specialization
3081 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
3082 for this will point at template <class T> template <> S<T>::f(int),
3083 so that we can find the definition. For the purposes of
3084 overload resolution, however, we want the original TMPL. */
3085 cand
->template_decl
= build_template_info (tmpl
, targs
);
3087 cand
->template_decl
= DECL_TEMPLATE_INFO (fn
);
3088 cand
->explicit_targs
= explicit_targs
;
3092 return add_candidate (candidates
, tmpl
, first_arg
, arglist
, nargs
, NULL
,
3093 access_path
, conversion_path
, 0, reason
, flags
);
3097 static struct z_candidate
*
3098 add_template_candidate (struct z_candidate
**candidates
, tree tmpl
, tree ctype
,
3099 tree explicit_targs
, tree first_arg
,
3100 const vec
<tree
, va_gc
> *arglist
, tree return_type
,
3101 tree access_path
, tree conversion_path
, int flags
,
3102 unification_kind_t strict
, tsubst_flags_t complain
)
3105 add_template_candidate_real (candidates
, tmpl
, ctype
,
3106 explicit_targs
, first_arg
, arglist
,
3107 return_type
, access_path
, conversion_path
,
3108 flags
, NULL_TREE
, strict
, complain
);
3112 static struct z_candidate
*
3113 add_template_conv_candidate (struct z_candidate
**candidates
, tree tmpl
,
3114 tree obj
, tree first_arg
,
3115 const vec
<tree
, va_gc
> *arglist
,
3116 tree return_type
, tree access_path
,
3117 tree conversion_path
, tsubst_flags_t complain
)
3120 add_template_candidate_real (candidates
, tmpl
, NULL_TREE
, NULL_TREE
,
3121 first_arg
, arglist
, return_type
, access_path
,
3122 conversion_path
, 0, obj
, DEDUCE_CONV
,
3126 /* The CANDS are the set of candidates that were considered for
3127 overload resolution. Return the set of viable candidates, or CANDS
3128 if none are viable. If any of the candidates were viable, set
3129 *ANY_VIABLE_P to true. STRICT_P is true if a candidate should be
3130 considered viable only if it is strictly viable. */
3132 static struct z_candidate
*
3133 splice_viable (struct z_candidate
*cands
,
3137 struct z_candidate
*viable
;
3138 struct z_candidate
**last_viable
;
3139 struct z_candidate
**cand
;
3140 bool found_strictly_viable
= false;
3142 /* Be strict inside templates, since build_over_call won't actually
3143 do the conversions to get pedwarns. */
3144 if (processing_template_decl
)
3148 last_viable
= &viable
;
3149 *any_viable_p
= false;
3154 struct z_candidate
*c
= *cand
;
3156 && (c
->viable
== 1 || TREE_CODE (c
->fn
) == TEMPLATE_DECL
))
3158 /* Be strict in the presence of a viable candidate. Also if
3159 there are template candidates, so that we get deduction errors
3160 for them instead of silently preferring a bad conversion. */
3162 if (viable
&& !found_strictly_viable
)
3164 /* Put any spliced near matches back onto the main list so
3165 that we see them if there is no strict match. */
3166 *any_viable_p
= false;
3167 *last_viable
= cands
;
3170 last_viable
= &viable
;
3174 if (strict_p
? c
->viable
== 1 : c
->viable
)
3179 last_viable
= &c
->next
;
3180 *any_viable_p
= true;
3182 found_strictly_viable
= true;
3188 return viable
? viable
: cands
;
3192 any_strictly_viable (struct z_candidate
*cands
)
3194 for (; cands
; cands
= cands
->next
)
3195 if (cands
->viable
== 1)
3200 /* OBJ is being used in an expression like "OBJ.f (...)". In other
3201 words, it is about to become the "this" pointer for a member
3202 function call. Take the address of the object. */
3205 build_this (tree obj
)
3207 /* In a template, we are only concerned about the type of the
3208 expression, so we can take a shortcut. */
3209 if (processing_template_decl
)
3210 return build_address (obj
);
3212 return cp_build_addr_expr (obj
, tf_warning_or_error
);
3215 /* Returns true iff functions are equivalent. Equivalent functions are
3216 not '==' only if one is a function-local extern function or if
3217 both are extern "C". */
3220 equal_functions (tree fn1
, tree fn2
)
3222 if (TREE_CODE (fn1
) != TREE_CODE (fn2
))
3224 if (TREE_CODE (fn1
) == TEMPLATE_DECL
)
3226 if (DECL_LOCAL_FUNCTION_P (fn1
) || DECL_LOCAL_FUNCTION_P (fn2
)
3227 || DECL_EXTERN_C_FUNCTION_P (fn1
))
3228 return decls_match (fn1
, fn2
);
3232 /* Print information about a candidate being rejected due to INFO. */
3235 print_conversion_rejection (location_t loc
, struct conversion_info
*info
)
3237 tree from
= info
->from
;
3239 from
= lvalue_type (from
);
3240 if (info
->n_arg
== -1)
3242 /* Conversion of implicit `this' argument failed. */
3243 if (!TYPE_P (info
->from
))
3244 /* A bad conversion for 'this' must be discarding cv-quals. */
3245 inform (loc
, " passing %qT as %<this%> "
3246 "argument discards qualifiers",
3249 inform (loc
, " no known conversion for implicit "
3250 "%<this%> parameter from %qT to %qT",
3251 from
, info
->to_type
);
3253 else if (!TYPE_P (info
->from
))
3255 if (info
->n_arg
>= 0)
3256 inform (loc
, " conversion of argument %d would be ill-formed:",
3258 perform_implicit_conversion (info
->to_type
, info
->from
,
3259 tf_warning_or_error
);
3261 else if (info
->n_arg
== -2)
3262 /* Conversion of conversion function return value failed. */
3263 inform (loc
, " no known conversion from %qT to %qT",
3264 from
, info
->to_type
);
3266 inform (loc
, " no known conversion for argument %d from %qT to %qT",
3267 info
->n_arg
+ 1, from
, info
->to_type
);
3270 /* Print information about a candidate with WANT parameters and we found
3274 print_arity_information (location_t loc
, unsigned int have
, unsigned int want
)
3276 inform_n (loc
, want
,
3277 " candidate expects %d argument, %d provided",
3278 " candidate expects %d arguments, %d provided",
3282 /* Print information about one overload candidate CANDIDATE. MSGSTR
3283 is the text to print before the candidate itself.
3285 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3286 to have been run through gettext by the caller. This wart makes
3287 life simpler in print_z_candidates and for the translators. */
3290 print_z_candidate (location_t loc
, const char *msgstr
,
3291 struct z_candidate
*candidate
)
3293 const char *msg
= (msgstr
== NULL
3295 : ACONCAT ((msgstr
, " ", NULL
)));
3296 location_t cloc
= location_of (candidate
->fn
);
3298 if (identifier_p (candidate
->fn
))
3301 if (candidate
->num_convs
== 3)
3302 inform (cloc
, "%s%D(%T, %T, %T) <built-in>", msg
, candidate
->fn
,
3303 candidate
->convs
[0]->type
,
3304 candidate
->convs
[1]->type
,
3305 candidate
->convs
[2]->type
);
3306 else if (candidate
->num_convs
== 2)
3307 inform (cloc
, "%s%D(%T, %T) <built-in>", msg
, candidate
->fn
,
3308 candidate
->convs
[0]->type
,
3309 candidate
->convs
[1]->type
);
3311 inform (cloc
, "%s%D(%T) <built-in>", msg
, candidate
->fn
,
3312 candidate
->convs
[0]->type
);
3314 else if (TYPE_P (candidate
->fn
))
3315 inform (cloc
, "%s%T <conversion>", msg
, candidate
->fn
);
3316 else if (candidate
->viable
== -1)
3317 inform (cloc
, "%s%#D <near match>", msg
, candidate
->fn
);
3318 else if (DECL_DELETED_FN (candidate
->fn
))
3319 inform (cloc
, "%s%#D <deleted>", msg
, candidate
->fn
);
3321 inform (cloc
, "%s%#D", msg
, candidate
->fn
);
3322 /* Give the user some information about why this candidate failed. */
3323 if (candidate
->reason
!= NULL
)
3325 struct rejection_reason
*r
= candidate
->reason
;
3330 print_arity_information (cloc
, r
->u
.arity
.actual
,
3331 r
->u
.arity
.expected
);
3333 case rr_arg_conversion
:
3334 print_conversion_rejection (cloc
, &r
->u
.conversion
);
3336 case rr_bad_arg_conversion
:
3337 print_conversion_rejection (cloc
, &r
->u
.bad_conversion
);
3339 case rr_explicit_conversion
:
3340 inform (cloc
, " return type %qT of explicit conversion function "
3341 "cannot be converted to %qT with a qualification "
3342 "conversion", r
->u
.conversion
.from
,
3343 r
->u
.conversion
.to_type
);
3345 case rr_template_conversion
:
3346 inform (cloc
, " conversion from return type %qT of template "
3347 "conversion function specialization to %qT is not an "
3348 "exact match", r
->u
.conversion
.from
,
3349 r
->u
.conversion
.to_type
);
3351 case rr_template_unification
:
3352 /* We use template_unification_error_rejection if unification caused
3353 actual non-SFINAE errors, in which case we don't need to repeat
3355 if (r
->u
.template_unification
.tmpl
== NULL_TREE
)
3357 inform (cloc
, " substitution of deduced template arguments "
3358 "resulted in errors seen above");
3361 /* Re-run template unification with diagnostics. */
3362 inform (cloc
, " template argument deduction/substitution failed:");
3363 fn_type_unification (r
->u
.template_unification
.tmpl
,
3364 r
->u
.template_unification
.explicit_targs
,
3366 (r
->u
.template_unification
.num_targs
)),
3367 r
->u
.template_unification
.args
,
3368 r
->u
.template_unification
.nargs
,
3369 r
->u
.template_unification
.return_type
,
3370 r
->u
.template_unification
.strict
,
3371 r
->u
.template_unification
.flags
,
3374 case rr_invalid_copy
:
3376 " a constructor taking a single argument of its own "
3377 "class type is invalid");
3381 /* This candidate didn't have any issues or we failed to
3382 handle a particular code. Either way... */
3389 print_z_candidates (location_t loc
, struct z_candidate
*candidates
)
3391 struct z_candidate
*cand1
;
3392 struct z_candidate
**cand2
;
3398 /* Remove non-viable deleted candidates. */
3400 for (cand2
= &cand1
; *cand2
; )
3402 if (TREE_CODE ((*cand2
)->fn
) == FUNCTION_DECL
3403 && !(*cand2
)->viable
3404 && DECL_DELETED_FN ((*cand2
)->fn
))
3405 *cand2
= (*cand2
)->next
;
3407 cand2
= &(*cand2
)->next
;
3409 /* ...if there are any non-deleted ones. */
3413 /* There may be duplicates in the set of candidates. We put off
3414 checking this condition as long as possible, since we have no way
3415 to eliminate duplicates from a set of functions in less than n^2
3416 time. Now we are about to emit an error message, so it is more
3417 permissible to go slowly. */
3418 for (cand1
= candidates
; cand1
; cand1
= cand1
->next
)
3420 tree fn
= cand1
->fn
;
3421 /* Skip builtin candidates and conversion functions. */
3424 cand2
= &cand1
->next
;
3427 if (DECL_P ((*cand2
)->fn
)
3428 && equal_functions (fn
, (*cand2
)->fn
))
3429 *cand2
= (*cand2
)->next
;
3431 cand2
= &(*cand2
)->next
;
3435 for (n_candidates
= 0, cand1
= candidates
; cand1
; cand1
= cand1
->next
)
3438 for (; candidates
; candidates
= candidates
->next
)
3439 print_z_candidate (loc
, "candidate:", candidates
);
3442 /* USER_SEQ is a user-defined conversion sequence, beginning with a
3443 USER_CONV. STD_SEQ is the standard conversion sequence applied to
3444 the result of the conversion function to convert it to the final
3445 desired type. Merge the two sequences into a single sequence,
3446 and return the merged sequence. */
3449 merge_conversion_sequences (conversion
*user_seq
, conversion
*std_seq
)
3452 bool bad
= user_seq
->bad_p
;
3454 gcc_assert (user_seq
->kind
== ck_user
);
3456 /* Find the end of the second conversion sequence. */
3457 for (t
= &std_seq
; (*t
)->kind
!= ck_identity
; t
= &((*t
)->u
.next
))
3459 /* The entire sequence is a user-conversion sequence. */
3460 (*t
)->user_conv_p
= true;
3465 /* Replace the identity conversion with the user conversion
3472 /* Handle overload resolution for initializing an object of class type from
3473 an initializer list. First we look for a suitable constructor that
3474 takes a std::initializer_list; if we don't find one, we then look for a
3475 non-list constructor.
3477 Parameters are as for add_candidates, except that the arguments are in
3478 the form of a CONSTRUCTOR (the initializer list) rather than a vector, and
3479 the RETURN_TYPE parameter is replaced by TOTYPE, the desired type. */
3482 add_list_candidates (tree fns
, tree first_arg
,
3483 tree init_list
, tree totype
,
3484 tree explicit_targs
, bool template_only
,
3485 tree conversion_path
, tree access_path
,
3487 struct z_candidate
**candidates
,
3488 tsubst_flags_t complain
)
3490 vec
<tree
, va_gc
> *args
;
3492 gcc_assert (*candidates
== NULL
);
3494 /* We're looking for a ctor for list-initialization. */
3495 flags
|= LOOKUP_LIST_INIT_CTOR
;
3496 /* And we don't allow narrowing conversions. We also use this flag to
3497 avoid the copy constructor call for copy-list-initialization. */
3498 flags
|= LOOKUP_NO_NARROWING
;
3500 /* Always use the default constructor if the list is empty (DR 990). */
3501 if (CONSTRUCTOR_NELTS (init_list
) == 0
3502 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype
))
3504 /* If the class has a list ctor, try passing the list as a single
3505 argument first, but only consider list ctors. */
3506 else if (TYPE_HAS_LIST_CTOR (totype
))
3508 flags
|= LOOKUP_LIST_ONLY
;
3509 args
= make_tree_vector_single (init_list
);
3510 add_candidates (fns
, first_arg
, args
, NULL_TREE
,
3511 explicit_targs
, template_only
, conversion_path
,
3512 access_path
, flags
, candidates
, complain
);
3513 if (any_strictly_viable (*candidates
))
3517 args
= ctor_to_vec (init_list
);
3519 /* We aren't looking for list-ctors anymore. */
3520 flags
&= ~LOOKUP_LIST_ONLY
;
3521 /* We allow more user-defined conversions within an init-list. */
3522 flags
&= ~LOOKUP_NO_CONVERSION
;
3524 add_candidates (fns
, first_arg
, args
, NULL_TREE
,
3525 explicit_targs
, template_only
, conversion_path
,
3526 access_path
, flags
, candidates
, complain
);
3529 /* Returns the best overload candidate to perform the requested
3530 conversion. This function is used for three the overloading situations
3531 described in [over.match.copy], [over.match.conv], and [over.match.ref].
3532 If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
3533 per [dcl.init.ref], so we ignore temporary bindings. */
3535 static struct z_candidate
*
3536 build_user_type_conversion_1 (tree totype
, tree expr
, int flags
,
3537 tsubst_flags_t complain
)
3539 struct z_candidate
*candidates
, *cand
;
3541 tree ctors
= NULL_TREE
;
3542 tree conv_fns
= NULL_TREE
;
3543 conversion
*conv
= NULL
;
3544 tree first_arg
= NULL_TREE
;
3545 vec
<tree
, va_gc
> *args
= NULL
;
3552 fromtype
= TREE_TYPE (expr
);
3554 /* We represent conversion within a hierarchy using RVALUE_CONV and
3555 BASE_CONV, as specified by [over.best.ics]; these become plain
3556 constructor calls, as specified in [dcl.init]. */
3557 gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype
) || !MAYBE_CLASS_TYPE_P (totype
)
3558 || !DERIVED_FROM_P (totype
, fromtype
));
3560 if (MAYBE_CLASS_TYPE_P (totype
))
3561 /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
3562 creating a garbage BASELINK; constructors can't be inherited. */
3563 ctors
= lookup_fnfields_slot (totype
, complete_ctor_identifier
);
3565 if (MAYBE_CLASS_TYPE_P (fromtype
))
3567 tree to_nonref
= non_reference (totype
);
3568 if (same_type_ignoring_top_level_qualifiers_p (to_nonref
, fromtype
) ||
3569 (CLASS_TYPE_P (to_nonref
) && CLASS_TYPE_P (fromtype
)
3570 && DERIVED_FROM_P (to_nonref
, fromtype
)))
3572 /* [class.conv.fct] A conversion function is never used to
3573 convert a (possibly cv-qualified) object to the (possibly
3574 cv-qualified) same object type (or a reference to it), to a
3575 (possibly cv-qualified) base class of that type (or a
3576 reference to it)... */
3579 conv_fns
= lookup_conversions (fromtype
);
3583 flags
|= LOOKUP_NO_CONVERSION
;
3584 if (BRACE_ENCLOSED_INITIALIZER_P (expr
))
3585 flags
|= LOOKUP_NO_NARROWING
;
3587 /* It's OK to bind a temporary for converting constructor arguments, but
3588 not in converting the return value of a conversion operator. */
3589 convflags
= ((flags
& LOOKUP_NO_TEMP_BIND
) | LOOKUP_NO_CONVERSION
3590 | (flags
& LOOKUP_NO_NARROWING
));
3591 flags
&= ~LOOKUP_NO_TEMP_BIND
;
3595 int ctorflags
= flags
;
3597 first_arg
= build_dummy_object (totype
);
3599 /* We should never try to call the abstract or base constructor
3601 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors
))
3602 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors
)));
3604 if (BRACE_ENCLOSED_INITIALIZER_P (expr
))
3606 /* List-initialization. */
3607 add_list_candidates (ctors
, first_arg
, expr
, totype
, NULL_TREE
,
3608 false, TYPE_BINFO (totype
), TYPE_BINFO (totype
),
3609 ctorflags
, &candidates
, complain
);
3613 args
= make_tree_vector_single (expr
);
3614 add_candidates (ctors
, first_arg
, args
, NULL_TREE
, NULL_TREE
, false,
3615 TYPE_BINFO (totype
), TYPE_BINFO (totype
),
3616 ctorflags
, &candidates
, complain
);
3619 for (cand
= candidates
; cand
; cand
= cand
->next
)
3621 cand
->second_conv
= build_identity_conv (totype
, NULL_TREE
);
3623 /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
3624 set, then this is copy-initialization. In that case, "The
3625 result of the call is then used to direct-initialize the
3626 object that is the destination of the copy-initialization."
3629 We represent this in the conversion sequence with an
3630 rvalue conversion, which means a constructor call. */
3631 if (TREE_CODE (totype
) != REFERENCE_TYPE
3632 && !(convflags
& LOOKUP_NO_TEMP_BIND
))
3634 = build_conv (ck_rvalue
, totype
, cand
->second_conv
);
3641 for (; conv_fns
; conv_fns
= TREE_CHAIN (conv_fns
))
3643 tree conversion_path
= TREE_PURPOSE (conv_fns
);
3644 struct z_candidate
*old_candidates
;
3646 /* If we are called to convert to a reference type, we are trying to
3647 find a direct binding, so don't even consider temporaries. If
3648 we don't find a direct binding, the caller will try again to
3649 look for a temporary binding. */
3650 if (TREE_CODE (totype
) == REFERENCE_TYPE
)
3651 convflags
|= LOOKUP_NO_TEMP_BIND
;
3653 old_candidates
= candidates
;
3654 add_candidates (TREE_VALUE (conv_fns
), first_arg
, NULL
, totype
,
3656 conversion_path
, TYPE_BINFO (fromtype
),
3657 flags
, &candidates
, complain
);
3659 for (cand
= candidates
; cand
!= old_candidates
; cand
= cand
->next
)
3661 tree rettype
= TREE_TYPE (TREE_TYPE (cand
->fn
));
3663 = implicit_conversion (totype
,
3666 /*c_cast_p=*/false, convflags
,
3669 /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
3670 copy-initialization. In that case, "The result of the
3671 call is then used to direct-initialize the object that is
3672 the destination of the copy-initialization." [dcl.init]
3674 We represent this in the conversion sequence with an
3675 rvalue conversion, which means a constructor call. But
3676 don't add a second rvalue conversion if there's already
3677 one there. Which there really shouldn't be, but it's
3678 harmless since we'd add it here anyway. */
3679 if (ics
&& MAYBE_CLASS_TYPE_P (totype
) && ics
->kind
!= ck_rvalue
3680 && !(convflags
& LOOKUP_NO_TEMP_BIND
))
3681 ics
= build_conv (ck_rvalue
, totype
, ics
);
3683 cand
->second_conv
= ics
;
3688 cand
->reason
= arg_conversion_rejection (NULL_TREE
, -2,
3691 else if (DECL_NONCONVERTING_P (cand
->fn
)
3692 && ics
->rank
> cr_exact
)
3694 /* 13.3.1.5: For direct-initialization, those explicit
3695 conversion functions that are not hidden within S and
3696 yield type T or a type that can be converted to type T
3697 with a qualification conversion (4.4) are also candidate
3699 /* 13.3.1.6 doesn't have a parallel restriction, but it should;
3700 I've raised this issue with the committee. --jason 9/2011 */
3702 cand
->reason
= explicit_conversion_rejection (rettype
, totype
);
3704 else if (cand
->viable
== 1 && ics
->bad_p
)
3708 = bad_arg_conversion_rejection (NULL_TREE
, -2,
3711 else if (primary_template_instantiation_p (cand
->fn
)
3712 && ics
->rank
> cr_exact
)
3714 /* 13.3.3.1.2: If the user-defined conversion is specified by
3715 a specialization of a conversion function template, the
3716 second standard conversion sequence shall have exact match
3719 cand
->reason
= template_conversion_rejection (rettype
, totype
);
3724 candidates
= splice_viable (candidates
, false, &any_viable_p
);
3728 release_tree_vector (args
);
3732 cand
= tourney (candidates
, complain
);
3735 if (complain
& tf_error
)
3737 error ("conversion from %qT to %qT is ambiguous",
3739 print_z_candidates (location_of (expr
), candidates
);
3742 cand
= candidates
; /* any one will do */
3743 cand
->second_conv
= build_ambiguous_conv (totype
, expr
);
3744 cand
->second_conv
->user_conv_p
= true;
3745 if (!any_strictly_viable (candidates
))
3746 cand
->second_conv
->bad_p
= true;
3747 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
3748 ambiguous conversion is no worse than another user-defined
3755 if (!DECL_CONSTRUCTOR_P (cand
->fn
))
3756 convtype
= non_reference (TREE_TYPE (TREE_TYPE (cand
->fn
)));
3757 else if (cand
->second_conv
->kind
== ck_rvalue
)
3758 /* DR 5: [in the first step of copy-initialization]...if the function
3759 is a constructor, the call initializes a temporary of the
3760 cv-unqualified version of the destination type. */
3761 convtype
= cv_unqualified (totype
);
3764 /* Build the user conversion sequence. */
3768 build_identity_conv (TREE_TYPE (expr
), expr
));
3770 if (cand
->viable
== -1)
3773 /* Remember that this was a list-initialization. */
3774 if (flags
& LOOKUP_NO_NARROWING
)
3775 conv
->check_narrowing
= true;
3777 /* Combine it with the second conversion sequence. */
3778 cand
->second_conv
= merge_conversion_sequences (conv
,
3784 /* Wrapper for above. */
3787 build_user_type_conversion (tree totype
, tree expr
, int flags
,
3788 tsubst_flags_t complain
)
3790 struct z_candidate
*cand
;
3793 bool subtime
= timevar_cond_start (TV_OVERLOAD
);
3794 cand
= build_user_type_conversion_1 (totype
, expr
, flags
, complain
);
3798 if (cand
->second_conv
->kind
== ck_ambig
)
3799 ret
= error_mark_node
;
3802 expr
= convert_like (cand
->second_conv
, expr
, complain
);
3803 ret
= convert_from_reference (expr
);
3809 timevar_cond_stop (TV_OVERLOAD
, subtime
);
3813 /* Subroutine of convert_nontype_argument.
3815 EXPR is an argument for a template non-type parameter of integral or
3816 enumeration type. Do any necessary conversions (that are permitted for
3817 non-type arguments) to convert it to the parameter type.
3819 If conversion is successful, returns the converted expression;
3820 otherwise, returns error_mark_node. */
3823 build_integral_nontype_arg_conv (tree type
, tree expr
, tsubst_flags_t complain
)
3828 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
3830 if (error_operand_p (expr
))
3831 return error_mark_node
;
3833 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type
));
3835 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3836 p
= conversion_obstack_alloc (0);
3838 conv
= implicit_conversion (type
, TREE_TYPE (expr
), expr
,
3840 LOOKUP_IMPLICIT
, complain
);
3842 /* for a non-type template-parameter of integral or
3843 enumeration type, integral promotions (4.5) and integral
3844 conversions (4.7) are applied. */
3845 /* It should be sufficient to check the outermost conversion step, since
3846 there are no qualification conversions to integer type. */
3850 /* A conversion function is OK. If it isn't constexpr, we'll
3851 complain later that the argument isn't constant. */
3853 /* The lvalue-to-rvalue conversion is OK. */
3859 t
= next_conversion (conv
)->type
;
3860 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t
))
3863 if (complain
& tf_error
)
3864 error_at (loc
, "conversion from %qT to %qT not considered for "
3865 "non-type template argument", t
, type
);
3866 /* and fall through. */
3874 expr
= convert_like (conv
, expr
, complain
);
3876 expr
= error_mark_node
;
3878 /* Free all the conversions we allocated. */
3879 obstack_free (&conversion_obstack
, p
);
3884 /* Do any initial processing on the arguments to a function call. */
3886 static vec
<tree
, va_gc
> *
3887 resolve_args (vec
<tree
, va_gc
> *args
, tsubst_flags_t complain
)
3892 FOR_EACH_VEC_SAFE_ELT (args
, ix
, arg
)
3894 if (error_operand_p (arg
))
3896 else if (VOID_TYPE_P (TREE_TYPE (arg
)))
3898 if (complain
& tf_error
)
3899 error ("invalid use of void expression");
3902 else if (invalid_nonstatic_memfn_p (arg
, complain
))
3908 /* Perform overload resolution on FN, which is called with the ARGS.
3910 Return the candidate function selected by overload resolution, or
3911 NULL if the event that overload resolution failed. In the case
3912 that overload resolution fails, *CANDIDATES will be the set of
3913 candidates considered, and ANY_VIABLE_P will be set to true or
3914 false to indicate whether or not any of the candidates were
3917 The ARGS should already have gone through RESOLVE_ARGS before this
3918 function is called. */
3920 static struct z_candidate
*
3921 perform_overload_resolution (tree fn
,
3922 const vec
<tree
, va_gc
> *args
,
3923 struct z_candidate
**candidates
,
3924 bool *any_viable_p
, tsubst_flags_t complain
)
3926 struct z_candidate
*cand
;
3927 tree explicit_targs
;
3930 bool subtime
= timevar_cond_start (TV_OVERLOAD
);
3932 explicit_targs
= NULL_TREE
;
3936 *any_viable_p
= true;
3939 gcc_assert (TREE_CODE (fn
) == FUNCTION_DECL
3940 || TREE_CODE (fn
) == TEMPLATE_DECL
3941 || TREE_CODE (fn
) == OVERLOAD
3942 || TREE_CODE (fn
) == TEMPLATE_ID_EXPR
);
3944 if (TREE_CODE (fn
) == TEMPLATE_ID_EXPR
)
3946 explicit_targs
= TREE_OPERAND (fn
, 1);
3947 fn
= TREE_OPERAND (fn
, 0);
3951 /* Add the various candidate functions. */
3952 add_candidates (fn
, NULL_TREE
, args
, NULL_TREE
,
3953 explicit_targs
, template_only
,
3954 /*conversion_path=*/NULL_TREE
,
3955 /*access_path=*/NULL_TREE
,
3957 candidates
, complain
);
3959 *candidates
= splice_viable (*candidates
, false, any_viable_p
);
3961 cand
= tourney (*candidates
, complain
);
3965 timevar_cond_stop (TV_OVERLOAD
, subtime
);
3969 /* Print an error message about being unable to build a call to FN with
3970 ARGS. ANY_VIABLE_P indicates whether any candidate functions could
3971 be located; CANDIDATES is a possibly empty list of such
3975 print_error_for_call_failure (tree fn
, vec
<tree
, va_gc
> *args
,
3976 struct z_candidate
*candidates
)
3978 tree name
= DECL_NAME (OVL_CURRENT (fn
));
3979 location_t loc
= location_of (name
);
3981 if (!any_strictly_viable (candidates
))
3982 error_at (loc
, "no matching function for call to %<%D(%A)%>",
3983 name
, build_tree_list_vec (args
));
3985 error_at (loc
, "call of overloaded %<%D(%A)%> is ambiguous",
3986 name
, build_tree_list_vec (args
));
3988 print_z_candidates (loc
, candidates
);
3991 /* Return an expression for a call to FN (a namespace-scope function,
3992 or a static member function) with the ARGS. This may change
3996 build_new_function_call (tree fn
, vec
<tree
, va_gc
> **args
, bool koenig_p
,
3997 tsubst_flags_t complain
)
3999 struct z_candidate
*candidates
, *cand
;
4004 if (args
!= NULL
&& *args
!= NULL
)
4006 *args
= resolve_args (*args
, complain
);
4008 return error_mark_node
;
4012 tm_malloc_replacement (fn
);
4014 /* If this function was found without using argument dependent
4015 lookup, then we want to ignore any undeclared friend
4021 fn
= remove_hidden_names (fn
);
4024 if (complain
& tf_error
)
4025 print_error_for_call_failure (orig_fn
, *args
, NULL
);
4026 return error_mark_node
;
4030 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4031 p
= conversion_obstack_alloc (0);
4033 cand
= perform_overload_resolution (fn
, *args
, &candidates
, &any_viable_p
,
4038 if (complain
& tf_error
)
4040 if (!any_viable_p
&& candidates
&& ! candidates
->next
4041 && (TREE_CODE (candidates
->fn
) == FUNCTION_DECL
))
4042 return cp_build_function_call_vec (candidates
->fn
, args
, complain
);
4043 if (TREE_CODE (fn
) == TEMPLATE_ID_EXPR
)
4044 fn
= TREE_OPERAND (fn
, 0);
4045 print_error_for_call_failure (fn
, *args
, candidates
);
4047 result
= error_mark_node
;
4051 int flags
= LOOKUP_NORMAL
;
4052 /* If fn is template_id_expr, the call has explicit template arguments
4053 (e.g. func<int>(5)), communicate this info to build_over_call
4054 through flags so that later we can use it to decide whether to warn
4055 about peculiar null pointer conversion. */
4056 if (TREE_CODE (fn
) == TEMPLATE_ID_EXPR
)
4057 flags
|= LOOKUP_EXPLICIT_TMPL_ARGS
;
4058 result
= build_over_call (cand
, flags
, complain
);
4061 /* Free all the conversions we allocated. */
4062 obstack_free (&conversion_obstack
, p
);
4067 /* Build a call to a global operator new. FNNAME is the name of the
4068 operator (either "operator new" or "operator new[]") and ARGS are
4069 the arguments provided. This may change ARGS. *SIZE points to the
4070 total number of bytes required by the allocation, and is updated if
4071 that is changed here. *COOKIE_SIZE is non-NULL if a cookie should
4072 be used. If this function determines that no cookie should be
4073 used, after all, *COOKIE_SIZE is set to NULL_TREE. If SIZE_CHECK
4074 is not NULL_TREE, it is evaluated before calculating the final
4075 array size, and if it fails, the array size is replaced with
4076 (size_t)-1 (usually triggering a std::bad_alloc exception). If FN
4077 is non-NULL, it will be set, upon return, to the allocation
4081 build_operator_new_call (tree fnname
, vec
<tree
, va_gc
> **args
,
4082 tree
*size
, tree
*cookie_size
, tree size_check
,
4083 tree
*fn
, tsubst_flags_t complain
)
4085 tree original_size
= *size
;
4087 struct z_candidate
*candidates
;
4088 struct z_candidate
*cand
;
4093 /* Set to (size_t)-1 if the size check fails. */
4094 if (size_check
!= NULL_TREE
)
4096 tree errval
= TYPE_MAX_VALUE (sizetype
);
4097 if (cxx_dialect
>= cxx11
&& flag_exceptions
)
4098 errval
= throw_bad_array_new_length ();
4099 *size
= fold_build3 (COND_EXPR
, sizetype
, size_check
,
4100 original_size
, errval
);
4102 vec_safe_insert (*args
, 0, *size
);
4103 *args
= resolve_args (*args
, complain
);
4105 return error_mark_node
;
4111 If this lookup fails to find the name, or if the allocated type
4112 is not a class type, the allocation function's name is looked
4113 up in the global scope.
4115 we disregard block-scope declarations of "operator new". */
4116 fns
= lookup_function_nonclass (fnname
, *args
, /*block_p=*/false);
4118 /* Figure out what function is being called. */
4119 cand
= perform_overload_resolution (fns
, *args
, &candidates
, &any_viable_p
,
4122 /* If no suitable function could be found, issue an error message
4126 if (complain
& tf_error
)
4127 print_error_for_call_failure (fns
, *args
, candidates
);
4128 return error_mark_node
;
4131 /* If a cookie is required, add some extra space. Whether
4132 or not a cookie is required cannot be determined until
4133 after we know which function was called. */
4136 bool use_cookie
= true;
4139 arg_types
= TYPE_ARG_TYPES (TREE_TYPE (cand
->fn
));
4140 /* Skip the size_t parameter. */
4141 arg_types
= TREE_CHAIN (arg_types
);
4142 /* Check the remaining parameters (if any). */
4144 && TREE_CHAIN (arg_types
) == void_list_node
4145 && same_type_p (TREE_VALUE (arg_types
),
4148 /* If we need a cookie, adjust the number of bytes allocated. */
4151 /* Update the total size. */
4152 *size
= size_binop (PLUS_EXPR
, original_size
, *cookie_size
);
4153 /* Set to (size_t)-1 if the size check fails. */
4154 gcc_assert (size_check
!= NULL_TREE
);
4155 *size
= fold_build3 (COND_EXPR
, sizetype
, size_check
,
4156 *size
, TYPE_MAX_VALUE (sizetype
));
4157 /* Update the argument list to reflect the adjusted size. */
4158 (**args
)[0] = *size
;
4161 *cookie_size
= NULL_TREE
;
4164 /* Tell our caller which function we decided to call. */
4168 /* Build the CALL_EXPR. */
4169 return build_over_call (cand
, LOOKUP_NORMAL
, complain
);
4172 /* Build a new call to operator(). This may change ARGS. */
4175 build_op_call_1 (tree obj
, vec
<tree
, va_gc
> **args
, tsubst_flags_t complain
)
4177 struct z_candidate
*candidates
= 0, *cand
;
4178 tree fns
, convs
, first_mem_arg
= NULL_TREE
;
4179 tree type
= TREE_TYPE (obj
);
4181 tree result
= NULL_TREE
;
4184 if (error_operand_p (obj
))
4185 return error_mark_node
;
4187 obj
= prep_operand (obj
);
4189 if (TYPE_PTRMEMFUNC_P (type
))
4191 if (complain
& tf_error
)
4192 /* It's no good looking for an overloaded operator() on a
4193 pointer-to-member-function. */
4194 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj
);
4195 return error_mark_node
;
4198 if (TYPE_BINFO (type
))
4200 fns
= lookup_fnfields (TYPE_BINFO (type
), ansi_opname (CALL_EXPR
), 1);
4201 if (fns
== error_mark_node
)
4202 return error_mark_node
;
4207 if (args
!= NULL
&& *args
!= NULL
)
4209 *args
= resolve_args (*args
, complain
);
4211 return error_mark_node
;
4214 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4215 p
= conversion_obstack_alloc (0);
4219 first_mem_arg
= obj
;
4221 add_candidates (BASELINK_FUNCTIONS (fns
),
4222 first_mem_arg
, *args
, NULL_TREE
,
4224 BASELINK_BINFO (fns
), BASELINK_ACCESS_BINFO (fns
),
4225 LOOKUP_NORMAL
, &candidates
, complain
);
4228 convs
= lookup_conversions (type
);
4230 for (; convs
; convs
= TREE_CHAIN (convs
))
4232 tree fns
= TREE_VALUE (convs
);
4233 tree totype
= TREE_TYPE (convs
);
4235 if (TYPE_PTRFN_P (totype
)
4236 || TYPE_REFFN_P (totype
)
4237 || (TREE_CODE (totype
) == REFERENCE_TYPE
4238 && TYPE_PTRFN_P (TREE_TYPE (totype
))))
4239 for (; fns
; fns
= OVL_NEXT (fns
))
4241 tree fn
= OVL_CURRENT (fns
);
4243 if (DECL_NONCONVERTING_P (fn
))
4246 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
4247 add_template_conv_candidate
4248 (&candidates
, fn
, obj
, NULL_TREE
, *args
, totype
,
4249 /*access_path=*/NULL_TREE
,
4250 /*conversion_path=*/NULL_TREE
, complain
);
4252 add_conv_candidate (&candidates
, fn
, obj
, NULL_TREE
,
4253 *args
, /*conversion_path=*/NULL_TREE
,
4254 /*access_path=*/NULL_TREE
, complain
);
4258 /* Be strict here because if we choose a bad conversion candidate, the
4259 errors we get won't mention the call context. */
4260 candidates
= splice_viable (candidates
, true, &any_viable_p
);
4263 if (complain
& tf_error
)
4265 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj
),
4266 build_tree_list_vec (*args
));
4267 print_z_candidates (location_of (TREE_TYPE (obj
)), candidates
);
4269 result
= error_mark_node
;
4273 cand
= tourney (candidates
, complain
);
4276 if (complain
& tf_error
)
4278 error ("call of %<(%T) (%A)%> is ambiguous",
4279 TREE_TYPE (obj
), build_tree_list_vec (*args
));
4280 print_z_candidates (location_of (TREE_TYPE (obj
)), candidates
);
4282 result
= error_mark_node
;
4284 /* Since cand->fn will be a type, not a function, for a conversion
4285 function, we must be careful not to unconditionally look at
4287 else if (TREE_CODE (cand
->fn
) == FUNCTION_DECL
4288 && DECL_OVERLOADED_OPERATOR_P (cand
->fn
) == CALL_EXPR
)
4289 result
= build_over_call (cand
, LOOKUP_NORMAL
, complain
);
4292 obj
= convert_like_with_context (cand
->convs
[0], obj
, cand
->fn
, -1,
4294 obj
= convert_from_reference (obj
);
4295 result
= cp_build_function_call_vec (obj
, args
, complain
);
4299 /* Free all the conversions we allocated. */
4300 obstack_free (&conversion_obstack
, p
);
4305 /* Wrapper for above. */
4308 build_op_call (tree obj
, vec
<tree
, va_gc
> **args
, tsubst_flags_t complain
)
4311 bool subtime
= timevar_cond_start (TV_OVERLOAD
);
4312 ret
= build_op_call_1 (obj
, args
, complain
);
4313 timevar_cond_stop (TV_OVERLOAD
, subtime
);
4317 /* Called by op_error to prepare format strings suitable for the error
4318 function. It concatenates a prefix (controlled by MATCH), ERRMSG,
4319 and a suffix (controlled by NTYPES). */
4322 op_error_string (const char *errmsg
, int ntypes
, bool match
)
4326 const char *msgp
= concat (match
? G_("ambiguous overload for ")
4327 : G_("no match for "), errmsg
, NULL
);
4330 msg
= concat (msgp
, G_(" (operand types are %qT, %qT, and %qT)"), NULL
);
4331 else if (ntypes
== 2)
4332 msg
= concat (msgp
, G_(" (operand types are %qT and %qT)"), NULL
);
4334 msg
= concat (msgp
, G_(" (operand type is %qT)"), NULL
);
4340 op_error (location_t loc
, enum tree_code code
, enum tree_code code2
,
4341 tree arg1
, tree arg2
, tree arg3
, bool match
)
4345 if (code
== MODIFY_EXPR
)
4346 opname
= assignment_operator_name_info
[code2
].name
;
4348 opname
= operator_name_info
[code
].name
;
4353 if (flag_diagnostics_show_caret
)
4354 error_at (loc
, op_error_string (G_("ternary %<operator?:%>"),
4356 TREE_TYPE (arg1
), TREE_TYPE (arg2
), TREE_TYPE (arg3
));
4358 error_at (loc
, op_error_string (G_("ternary %<operator?:%> "
4359 "in %<%E ? %E : %E%>"), 3, match
),
4361 TREE_TYPE (arg1
), TREE_TYPE (arg2
), TREE_TYPE (arg3
));
4364 case POSTINCREMENT_EXPR
:
4365 case POSTDECREMENT_EXPR
:
4366 if (flag_diagnostics_show_caret
)
4367 error_at (loc
, op_error_string (G_("%<operator%s%>"), 1, match
),
4368 opname
, TREE_TYPE (arg1
));
4370 error_at (loc
, op_error_string (G_("%<operator%s%> in %<%E%s%>"),
4372 opname
, arg1
, opname
, TREE_TYPE (arg1
));
4376 if (flag_diagnostics_show_caret
)
4377 error_at (loc
, op_error_string (G_("%<operator[]%>"), 2, match
),
4378 TREE_TYPE (arg1
), TREE_TYPE (arg2
));
4380 error_at (loc
, op_error_string (G_("%<operator[]%> in %<%E[%E]%>"),
4382 arg1
, arg2
, TREE_TYPE (arg1
), TREE_TYPE (arg2
));
4387 if (flag_diagnostics_show_caret
)
4388 error_at (loc
, op_error_string (G_("%qs"), 1, match
),
4389 opname
, TREE_TYPE (arg1
));
4391 error_at (loc
, op_error_string (G_("%qs in %<%s %E%>"), 1, match
),
4392 opname
, opname
, arg1
, TREE_TYPE (arg1
));
4397 if (flag_diagnostics_show_caret
)
4398 error_at (loc
, op_error_string (G_("%<operator%s%>"), 2, match
),
4399 opname
, TREE_TYPE (arg1
), TREE_TYPE (arg2
));
4401 error_at (loc
, op_error_string (G_("%<operator%s%> in %<%E %s %E%>"),
4403 opname
, arg1
, opname
, arg2
,
4404 TREE_TYPE (arg1
), TREE_TYPE (arg2
));
4406 if (flag_diagnostics_show_caret
)
4407 error_at (loc
, op_error_string (G_("%<operator%s%>"), 1, match
),
4408 opname
, TREE_TYPE (arg1
));
4410 error_at (loc
, op_error_string (G_("%<operator%s%> in %<%s%E%>"),
4412 opname
, opname
, arg1
, TREE_TYPE (arg1
));
4417 /* Return the implicit conversion sequence that could be used to
4418 convert E1 to E2 in [expr.cond]. */
4421 conditional_conversion (tree e1
, tree e2
, tsubst_flags_t complain
)
4423 tree t1
= non_reference (TREE_TYPE (e1
));
4424 tree t2
= non_reference (TREE_TYPE (e2
));
4430 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
4431 implicitly converted (clause _conv_) to the type "lvalue reference to
4432 T2", subject to the constraint that in the conversion the
4433 reference must bind directly (_dcl.init.ref_) to an lvalue.
4435 If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
4436 implicitly converted to the type "rvalue reference to T2", subject to
4437 the constraint that the reference must bind directly. */
4438 if (lvalue_or_rvalue_with_address_p (e2
))
4440 tree rtype
= cp_build_reference_type (t2
, !real_lvalue_p (e2
));
4441 conv
= implicit_conversion (rtype
,
4445 LOOKUP_NO_TEMP_BIND
|LOOKUP_NO_RVAL_BIND
4446 |LOOKUP_ONLYCONVERTING
,
4448 if (conv
&& !conv
->bad_p
)
4452 /* If E2 is a prvalue or if neither of the conversions above can be done
4453 and at least one of the operands has (possibly cv-qualified) class
4455 if (!CLASS_TYPE_P (t1
) && !CLASS_TYPE_P (t2
))
4460 If E1 and E2 have class type, and the underlying class types are
4461 the same or one is a base class of the other: E1 can be converted
4462 to match E2 if the class of T2 is the same type as, or a base
4463 class of, the class of T1, and the cv-qualification of T2 is the
4464 same cv-qualification as, or a greater cv-qualification than, the
4465 cv-qualification of T1. If the conversion is applied, E1 is
4466 changed to an rvalue of type T2 that still refers to the original
4467 source class object (or the appropriate subobject thereof). */
4468 if (CLASS_TYPE_P (t1
) && CLASS_TYPE_P (t2
)
4469 && ((good_base
= DERIVED_FROM_P (t2
, t1
)) || DERIVED_FROM_P (t1
, t2
)))
4471 if (good_base
&& at_least_as_qualified_p (t2
, t1
))
4473 conv
= build_identity_conv (t1
, e1
);
4474 if (!same_type_p (TYPE_MAIN_VARIANT (t1
),
4475 TYPE_MAIN_VARIANT (t2
)))
4476 conv
= build_conv (ck_base
, t2
, conv
);
4478 conv
= build_conv (ck_rvalue
, t2
, conv
);
4487 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
4488 converted to the type that expression E2 would have if E2 were
4489 converted to an rvalue (or the type it has, if E2 is an rvalue). */
4490 return implicit_conversion (t2
, t1
, e1
, /*c_cast_p=*/false,
4491 LOOKUP_IMPLICIT
, complain
);
4494 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4495 arguments to the conditional expression. */
4498 build_conditional_expr_1 (location_t loc
, tree arg1
, tree arg2
, tree arg3
,
4499 tsubst_flags_t complain
)
4503 tree result
= NULL_TREE
;
4504 tree result_type
= NULL_TREE
;
4505 bool lvalue_p
= true;
4506 struct z_candidate
*candidates
= 0;
4507 struct z_candidate
*cand
;
4509 tree orig_arg2
, orig_arg3
;
4511 /* As a G++ extension, the second argument to the conditional can be
4512 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
4513 c'.) If the second operand is omitted, make sure it is
4514 calculated only once. */
4517 if (complain
& tf_error
)
4518 pedwarn (loc
, OPT_Wpedantic
,
4519 "ISO C++ forbids omitting the middle term of a ?: expression");
4521 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
4522 if (real_lvalue_p (arg1
))
4523 arg2
= arg1
= stabilize_reference (arg1
);
4525 arg2
= arg1
= save_expr (arg1
);
4528 /* If something has already gone wrong, just pass that fact up the
4530 if (error_operand_p (arg1
)
4531 || error_operand_p (arg2
)
4532 || error_operand_p (arg3
))
4533 return error_mark_node
;
4538 if (VECTOR_INTEGER_TYPE_P (TREE_TYPE (arg1
)))
4540 arg1
= force_rvalue (arg1
, complain
);
4541 arg2
= force_rvalue (arg2
, complain
);
4542 arg3
= force_rvalue (arg3
, complain
);
4544 /* force_rvalue can return error_mark on valid arguments. */
4545 if (error_operand_p (arg1
)
4546 || error_operand_p (arg2
)
4547 || error_operand_p (arg3
))
4548 return error_mark_node
;
4550 tree arg1_type
= TREE_TYPE (arg1
);
4551 arg2_type
= TREE_TYPE (arg2
);
4552 arg3_type
= TREE_TYPE (arg3
);
4554 if (TREE_CODE (arg2_type
) != VECTOR_TYPE
4555 && TREE_CODE (arg3_type
) != VECTOR_TYPE
)
4557 /* Rely on the error messages of the scalar version. */
4558 tree scal
= build_conditional_expr_1 (loc
, integer_one_node
,
4559 orig_arg2
, orig_arg3
, complain
);
4560 if (scal
== error_mark_node
)
4561 return error_mark_node
;
4562 tree stype
= TREE_TYPE (scal
);
4563 tree ctype
= TREE_TYPE (arg1_type
);
4564 if (TYPE_SIZE (stype
) != TYPE_SIZE (ctype
)
4565 || (!INTEGRAL_TYPE_P (stype
) && !SCALAR_FLOAT_TYPE_P (stype
)))
4567 if (complain
& tf_error
)
4568 error_at (loc
, "inferred scalar type %qT is not an integer or "
4569 "floating point type of the same size as %qT", stype
,
4570 COMPARISON_CLASS_P (arg1
)
4571 ? TREE_TYPE (TREE_TYPE (TREE_OPERAND (arg1
, 0)))
4573 return error_mark_node
;
4576 tree vtype
= build_opaque_vector_type (stype
,
4577 TYPE_VECTOR_SUBPARTS (arg1_type
));
4578 /* We could pass complain & tf_warning to unsafe_conversion_p,
4579 but the warnings (like Wsign-conversion) have already been
4580 given by the scalar build_conditional_expr_1. We still check
4581 unsafe_conversion_p to forbid truncating long long -> float. */
4582 if (unsafe_conversion_p (loc
, stype
, arg2
, false))
4584 if (complain
& tf_error
)
4585 error_at (loc
, "conversion of scalar %qT to vector %qT "
4586 "involves truncation", arg2_type
, vtype
);
4587 return error_mark_node
;
4589 if (unsafe_conversion_p (loc
, stype
, arg3
, false))
4591 if (complain
& tf_error
)
4592 error_at (loc
, "conversion of scalar %qT to vector %qT "
4593 "involves truncation", arg3_type
, vtype
);
4594 return error_mark_node
;
4597 arg2
= cp_convert (stype
, arg2
, complain
);
4598 arg2
= save_expr (arg2
);
4599 arg2
= build_vector_from_val (vtype
, arg2
);
4601 arg3
= cp_convert (stype
, arg3
, complain
);
4602 arg3
= save_expr (arg3
);
4603 arg3
= build_vector_from_val (vtype
, arg3
);
4607 if ((TREE_CODE (arg2_type
) == VECTOR_TYPE
)
4608 != (TREE_CODE (arg3_type
) == VECTOR_TYPE
))
4610 enum stv_conv convert_flag
=
4611 scalar_to_vector (loc
, VEC_COND_EXPR
, arg2
, arg3
,
4612 complain
& tf_error
);
4614 switch (convert_flag
)
4617 return error_mark_node
;
4620 arg2
= save_expr (arg2
);
4621 arg2
= convert (TREE_TYPE (arg3_type
), arg2
);
4622 arg2
= build_vector_from_val (arg3_type
, arg2
);
4623 arg2_type
= TREE_TYPE (arg2
);
4628 arg3
= save_expr (arg3
);
4629 arg3
= convert (TREE_TYPE (arg2_type
), arg3
);
4630 arg3
= build_vector_from_val (arg2_type
, arg3
);
4631 arg3_type
= TREE_TYPE (arg3
);
4639 if (!same_type_p (arg2_type
, arg3_type
)
4640 || TYPE_VECTOR_SUBPARTS (arg1_type
)
4641 != TYPE_VECTOR_SUBPARTS (arg2_type
)
4642 || TYPE_SIZE (arg1_type
) != TYPE_SIZE (arg2_type
))
4644 if (complain
& tf_error
)
4646 "incompatible vector types in conditional expression: "
4647 "%qT, %qT and %qT", TREE_TYPE (arg1
),
4648 TREE_TYPE (orig_arg2
), TREE_TYPE (orig_arg3
));
4649 return error_mark_node
;
4652 if (!COMPARISON_CLASS_P (arg1
))
4653 arg1
= cp_build_binary_op (loc
, NE_EXPR
, arg1
,
4654 build_zero_cst (arg1_type
), complain
);
4655 return fold_build3 (VEC_COND_EXPR
, arg2_type
, arg1
, arg2
, arg3
);
4660 The first expression is implicitly converted to bool (clause
4662 arg1
= perform_implicit_conversion_flags (boolean_type_node
, arg1
, complain
,
4664 if (error_operand_p (arg1
))
4665 return error_mark_node
;
4669 If either the second or the third operand has type (possibly
4670 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
4671 array-to-pointer (_conv.array_), and function-to-pointer
4672 (_conv.func_) standard conversions are performed on the second
4673 and third operands. */
4674 arg2_type
= unlowered_expr_type (arg2
);
4675 arg3_type
= unlowered_expr_type (arg3
);
4676 if (VOID_TYPE_P (arg2_type
) || VOID_TYPE_P (arg3_type
))
4678 /* Do the conversions. We don't these for `void' type arguments
4679 since it can't have any effect and since decay_conversion
4680 does not handle that case gracefully. */
4681 if (!VOID_TYPE_P (arg2_type
))
4682 arg2
= decay_conversion (arg2
, complain
);
4683 if (!VOID_TYPE_P (arg3_type
))
4684 arg3
= decay_conversion (arg3
, complain
);
4685 arg2_type
= TREE_TYPE (arg2
);
4686 arg3_type
= TREE_TYPE (arg3
);
4690 One of the following shall hold:
4692 --The second or the third operand (but not both) is a
4693 throw-expression (_except.throw_); the result is of the
4694 type of the other and is an rvalue.
4696 --Both the second and the third operands have type void; the
4697 result is of type void and is an rvalue.
4699 We must avoid calling force_rvalue for expressions of type
4700 "void" because it will complain that their value is being
4702 if (TREE_CODE (arg2
) == THROW_EXPR
4703 && TREE_CODE (arg3
) != THROW_EXPR
)
4705 if (!VOID_TYPE_P (arg3_type
))
4707 arg3
= force_rvalue (arg3
, complain
);
4708 if (arg3
== error_mark_node
)
4709 return error_mark_node
;
4711 arg3_type
= TREE_TYPE (arg3
);
4712 result_type
= arg3_type
;
4714 else if (TREE_CODE (arg2
) != THROW_EXPR
4715 && TREE_CODE (arg3
) == THROW_EXPR
)
4717 if (!VOID_TYPE_P (arg2_type
))
4719 arg2
= force_rvalue (arg2
, complain
);
4720 if (arg2
== error_mark_node
)
4721 return error_mark_node
;
4723 arg2_type
= TREE_TYPE (arg2
);
4724 result_type
= arg2_type
;
4726 else if (VOID_TYPE_P (arg2_type
) && VOID_TYPE_P (arg3_type
))
4727 result_type
= void_type_node
;
4730 if (complain
& tf_error
)
4732 if (VOID_TYPE_P (arg2_type
))
4733 error_at (EXPR_LOC_OR_LOC (arg3
, loc
),
4734 "second operand to the conditional operator "
4735 "is of type %<void%>, but the third operand is "
4736 "neither a throw-expression nor of type %<void%>");
4738 error_at (EXPR_LOC_OR_LOC (arg2
, loc
),
4739 "third operand to the conditional operator "
4740 "is of type %<void%>, but the second operand is "
4741 "neither a throw-expression nor of type %<void%>");
4743 return error_mark_node
;
4747 goto valid_operands
;
4751 Otherwise, if the second and third operand have different types,
4752 and either has (possibly cv-qualified) class type, or if both are
4753 glvalues of the same value category and the same type except for
4754 cv-qualification, an attempt is made to convert each of those operands
4755 to the type of the other. */
4756 else if (!same_type_p (arg2_type
, arg3_type
)
4757 && (CLASS_TYPE_P (arg2_type
) || CLASS_TYPE_P (arg3_type
)
4758 || (same_type_ignoring_top_level_qualifiers_p (arg2_type
,
4760 && lvalue_or_rvalue_with_address_p (arg2
)
4761 && lvalue_or_rvalue_with_address_p (arg3
)
4762 && real_lvalue_p (arg2
) == real_lvalue_p (arg3
))))
4766 bool converted
= false;
4768 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4769 p
= conversion_obstack_alloc (0);
4771 conv2
= conditional_conversion (arg2
, arg3
, complain
);
4772 conv3
= conditional_conversion (arg3
, arg2
, complain
);
4776 If both can be converted, or one can be converted but the
4777 conversion is ambiguous, the program is ill-formed. If
4778 neither can be converted, the operands are left unchanged and
4779 further checking is performed as described below. If exactly
4780 one conversion is possible, that conversion is applied to the
4781 chosen operand and the converted operand is used in place of
4782 the original operand for the remainder of this section. */
4783 if ((conv2
&& !conv2
->bad_p
4784 && conv3
&& !conv3
->bad_p
)
4785 || (conv2
&& conv2
->kind
== ck_ambig
)
4786 || (conv3
&& conv3
->kind
== ck_ambig
))
4788 if (complain
& tf_error
)
4790 error_at (loc
, "operands to ?: have different types %qT and %qT",
4791 arg2_type
, arg3_type
);
4792 if (conv2
&& !conv2
->bad_p
&& conv3
&& !conv3
->bad_p
)
4793 inform (loc
, " and each type can be converted to the other");
4794 else if (conv2
&& conv2
->kind
== ck_ambig
)
4795 convert_like (conv2
, arg2
, complain
);
4797 convert_like (conv3
, arg3
, complain
);
4799 result
= error_mark_node
;
4801 else if (conv2
&& !conv2
->bad_p
)
4803 arg2
= convert_like (conv2
, arg2
, complain
);
4804 arg2
= convert_from_reference (arg2
);
4805 arg2_type
= TREE_TYPE (arg2
);
4806 /* Even if CONV2 is a valid conversion, the result of the
4807 conversion may be invalid. For example, if ARG3 has type
4808 "volatile X", and X does not have a copy constructor
4809 accepting a "volatile X&", then even if ARG2 can be
4810 converted to X, the conversion will fail. */
4811 if (error_operand_p (arg2
))
4812 result
= error_mark_node
;
4815 else if (conv3
&& !conv3
->bad_p
)
4817 arg3
= convert_like (conv3
, arg3
, complain
);
4818 arg3
= convert_from_reference (arg3
);
4819 arg3_type
= TREE_TYPE (arg3
);
4820 if (error_operand_p (arg3
))
4821 result
= error_mark_node
;
4825 /* Free all the conversions we allocated. */
4826 obstack_free (&conversion_obstack
, p
);
4831 /* If, after the conversion, both operands have class type,
4832 treat the cv-qualification of both operands as if it were the
4833 union of the cv-qualification of the operands.
4835 The standard is not clear about what to do in this
4836 circumstance. For example, if the first operand has type
4837 "const X" and the second operand has a user-defined
4838 conversion to "volatile X", what is the type of the second
4839 operand after this step? Making it be "const X" (matching
4840 the first operand) seems wrong, as that discards the
4841 qualification without actually performing a copy. Leaving it
4842 as "volatile X" seems wrong as that will result in the
4843 conditional expression failing altogether, even though,
4844 according to this step, the one operand could be converted to
4845 the type of the other. */
4847 && CLASS_TYPE_P (arg2_type
)
4848 && cp_type_quals (arg2_type
) != cp_type_quals (arg3_type
))
4849 arg2_type
= arg3_type
=
4850 cp_build_qualified_type (arg2_type
,
4851 cp_type_quals (arg2_type
)
4852 | cp_type_quals (arg3_type
));
4857 If the second and third operands are glvalues of the same value
4858 category and have the same type, the result is of that type and
4860 if (((real_lvalue_p (arg2
) && real_lvalue_p (arg3
))
4861 || (xvalue_p (arg2
) && xvalue_p (arg3
)))
4862 && same_type_p (arg2_type
, arg3_type
))
4864 result_type
= arg2_type
;
4865 arg2
= mark_lvalue_use (arg2
);
4866 arg3
= mark_lvalue_use (arg3
);
4867 goto valid_operands
;
4872 Otherwise, the result is an rvalue. If the second and third
4873 operand do not have the same type, and either has (possibly
4874 cv-qualified) class type, overload resolution is used to
4875 determine the conversions (if any) to be applied to the operands
4876 (_over.match.oper_, _over.built_). */
4878 if (!same_type_p (arg2_type
, arg3_type
)
4879 && (CLASS_TYPE_P (arg2_type
) || CLASS_TYPE_P (arg3_type
)))
4885 /* Rearrange the arguments so that add_builtin_candidate only has
4886 to know about two args. In build_builtin_candidate, the
4887 arguments are unscrambled. */
4891 add_builtin_candidates (&candidates
,
4894 ansi_opname (COND_EXPR
),
4896 LOOKUP_NORMAL
, complain
);
4900 If the overload resolution fails, the program is
4902 candidates
= splice_viable (candidates
, false, &any_viable_p
);
4905 if (complain
& tf_error
)
4906 error_at (loc
, "operands to ?: have different types %qT and %qT",
4907 arg2_type
, arg3_type
);
4908 return error_mark_node
;
4910 cand
= tourney (candidates
, complain
);
4913 if (complain
& tf_error
)
4915 op_error (loc
, COND_EXPR
, NOP_EXPR
, arg1
, arg2
, arg3
, FALSE
);
4916 print_z_candidates (loc
, candidates
);
4918 return error_mark_node
;
4923 Otherwise, the conversions thus determined are applied, and
4924 the converted operands are used in place of the original
4925 operands for the remainder of this section. */
4926 conv
= cand
->convs
[0];
4927 arg1
= convert_like (conv
, arg1
, complain
);
4928 conv
= cand
->convs
[1];
4929 arg2
= convert_like (conv
, arg2
, complain
);
4930 arg2_type
= TREE_TYPE (arg2
);
4931 conv
= cand
->convs
[2];
4932 arg3
= convert_like (conv
, arg3
, complain
);
4933 arg3_type
= TREE_TYPE (arg3
);
4938 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
4939 and function-to-pointer (_conv.func_) standard conversions are
4940 performed on the second and third operands.
4942 We need to force the lvalue-to-rvalue conversion here for class types,
4943 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
4944 that isn't wrapped with a TARGET_EXPR plays havoc with exception
4947 arg2
= force_rvalue (arg2
, complain
);
4948 if (!CLASS_TYPE_P (arg2_type
))
4949 arg2_type
= TREE_TYPE (arg2
);
4951 arg3
= force_rvalue (arg3
, complain
);
4952 if (!CLASS_TYPE_P (arg3_type
))
4953 arg3_type
= TREE_TYPE (arg3
);
4955 if (arg2
== error_mark_node
|| arg3
== error_mark_node
)
4956 return error_mark_node
;
4960 After those conversions, one of the following shall hold:
4962 --The second and third operands have the same type; the result is of
4964 if (same_type_p (arg2_type
, arg3_type
))
4965 result_type
= arg2_type
;
4968 --The second and third operands have arithmetic or enumeration
4969 type; the usual arithmetic conversions are performed to bring
4970 them to a common type, and the result is of that type. */
4971 else if ((ARITHMETIC_TYPE_P (arg2_type
)
4972 || UNSCOPED_ENUM_P (arg2_type
))
4973 && (ARITHMETIC_TYPE_P (arg3_type
)
4974 || UNSCOPED_ENUM_P (arg3_type
)))
4976 /* In this case, there is always a common type. */
4977 result_type
= type_after_usual_arithmetic_conversions (arg2_type
,
4979 if (complain
& tf_warning
)
4980 do_warn_double_promotion (result_type
, arg2_type
, arg3_type
,
4981 "implicit conversion from %qT to %qT to "
4982 "match other result of conditional",
4985 if (TREE_CODE (arg2_type
) == ENUMERAL_TYPE
4986 && TREE_CODE (arg3_type
) == ENUMERAL_TYPE
)
4988 if (TREE_CODE (orig_arg2
) == CONST_DECL
4989 && TREE_CODE (orig_arg3
) == CONST_DECL
4990 && DECL_CONTEXT (orig_arg2
) == DECL_CONTEXT (orig_arg3
))
4991 /* Two enumerators from the same enumeration can have different
4992 types when the enumeration is still being defined. */;
4993 else if (complain
& tf_warning
)
4994 warning_at (loc
, OPT_Wenum_compare
, "enumeral mismatch in "
4995 "conditional expression: %qT vs %qT",
4996 arg2_type
, arg3_type
);
4998 else if (extra_warnings
4999 && ((TREE_CODE (arg2_type
) == ENUMERAL_TYPE
5000 && !same_type_p (arg3_type
, type_promotes_to (arg2_type
)))
5001 || (TREE_CODE (arg3_type
) == ENUMERAL_TYPE
5002 && !same_type_p (arg2_type
,
5003 type_promotes_to (arg3_type
)))))
5005 if (complain
& tf_warning
)
5006 warning_at (loc
, 0, "enumeral and non-enumeral type in "
5007 "conditional expression");
5010 arg2
= perform_implicit_conversion (result_type
, arg2
, complain
);
5011 arg3
= perform_implicit_conversion (result_type
, arg3
, complain
);
5015 --The second and third operands have pointer type, or one has
5016 pointer type and the other is a null pointer constant; pointer
5017 conversions (_conv.ptr_) and qualification conversions
5018 (_conv.qual_) are performed to bring them to their composite
5019 pointer type (_expr.rel_). The result is of the composite
5022 --The second and third operands have pointer to member type, or
5023 one has pointer to member type and the other is a null pointer
5024 constant; pointer to member conversions (_conv.mem_) and
5025 qualification conversions (_conv.qual_) are performed to bring
5026 them to a common type, whose cv-qualification shall match the
5027 cv-qualification of either the second or the third operand.
5028 The result is of the common type. */
5029 else if ((null_ptr_cst_p (arg2
)
5030 && TYPE_PTR_OR_PTRMEM_P (arg3_type
))
5031 || (null_ptr_cst_p (arg3
)
5032 && TYPE_PTR_OR_PTRMEM_P (arg2_type
))
5033 || (TYPE_PTR_P (arg2_type
) && TYPE_PTR_P (arg3_type
))
5034 || (TYPE_PTRDATAMEM_P (arg2_type
) && TYPE_PTRDATAMEM_P (arg3_type
))
5035 || (TYPE_PTRMEMFUNC_P (arg2_type
) && TYPE_PTRMEMFUNC_P (arg3_type
)))
5037 result_type
= composite_pointer_type (arg2_type
, arg3_type
, arg2
,
5038 arg3
, CPO_CONDITIONAL_EXPR
,
5040 if (result_type
== error_mark_node
)
5041 return error_mark_node
;
5042 arg2
= perform_implicit_conversion (result_type
, arg2
, complain
);
5043 arg3
= perform_implicit_conversion (result_type
, arg3
, complain
);
5048 if (complain
& tf_error
)
5049 error_at (loc
, "operands to ?: have different types %qT and %qT",
5050 arg2_type
, arg3_type
);
5051 return error_mark_node
;
5054 if (arg2
== error_mark_node
|| arg3
== error_mark_node
)
5055 return error_mark_node
;
5058 result
= build3 (COND_EXPR
, result_type
, arg1
, arg2
, arg3
);
5059 if (!cp_unevaluated_operand
)
5060 /* Avoid folding within decltype (c++/42013) and noexcept. */
5061 result
= fold_if_not_in_template (result
);
5063 /* We can't use result_type below, as fold might have returned a
5068 /* Expand both sides into the same slot, hopefully the target of
5069 the ?: expression. We used to check for TARGET_EXPRs here,
5070 but now we sometimes wrap them in NOP_EXPRs so the test would
5072 if (CLASS_TYPE_P (TREE_TYPE (result
)))
5073 result
= get_target_expr_sfinae (result
, complain
);
5074 /* If this expression is an rvalue, but might be mistaken for an
5075 lvalue, we must add a NON_LVALUE_EXPR. */
5076 result
= rvalue (result
);
5079 result
= force_paren_expr (result
);
5084 /* Wrapper for above. */
5087 build_conditional_expr (location_t loc
, tree arg1
, tree arg2
, tree arg3
,
5088 tsubst_flags_t complain
)
5091 bool subtime
= timevar_cond_start (TV_OVERLOAD
);
5092 ret
= build_conditional_expr_1 (loc
, arg1
, arg2
, arg3
, complain
);
5093 timevar_cond_stop (TV_OVERLOAD
, subtime
);
5097 /* OPERAND is an operand to an expression. Perform necessary steps
5098 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
5102 prep_operand (tree operand
)
5106 if (CLASS_TYPE_P (TREE_TYPE (operand
))
5107 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand
)))
5108 /* Make sure the template type is instantiated now. */
5109 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand
)));
5115 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
5116 OVERLOAD) to the CANDIDATES, returning an updated list of
5117 CANDIDATES. The ARGS are the arguments provided to the call;
5118 if FIRST_ARG is non-null it is the implicit object argument,
5119 otherwise the first element of ARGS is used if needed. The
5120 EXPLICIT_TARGS are explicit template arguments provided.
5121 TEMPLATE_ONLY is true if only template functions should be
5122 considered. CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
5123 add_function_candidate. */
5126 add_candidates (tree fns
, tree first_arg
, const vec
<tree
, va_gc
> *args
,
5128 tree explicit_targs
, bool template_only
,
5129 tree conversion_path
, tree access_path
,
5131 struct z_candidate
**candidates
,
5132 tsubst_flags_t complain
)
5135 const vec
<tree
, va_gc
> *non_static_args
;
5136 bool check_list_ctor
;
5137 bool check_converting
;
5138 unification_kind_t strict
;
5144 /* Precalculate special handling of constructors and conversion ops. */
5145 fn
= OVL_CURRENT (fns
);
5146 if (DECL_CONV_FN_P (fn
))
5148 check_list_ctor
= false;
5149 check_converting
= !!(flags
& LOOKUP_ONLYCONVERTING
);
5150 if (flags
& LOOKUP_NO_CONVERSION
)
5151 /* We're doing return_type(x). */
5152 strict
= DEDUCE_CONV
;
5154 /* We're doing x.operator return_type(). */
5155 strict
= DEDUCE_EXACT
;
5156 /* [over.match.funcs] For conversion functions, the function
5157 is considered to be a member of the class of the implicit
5158 object argument for the purpose of defining the type of
5159 the implicit object parameter. */
5160 ctype
= TYPE_MAIN_VARIANT (TREE_TYPE (first_arg
));
5164 if (DECL_CONSTRUCTOR_P (fn
))
5166 check_list_ctor
= !!(flags
& LOOKUP_LIST_ONLY
);
5167 /* For list-initialization we consider explicit constructors
5168 and complain if one is chosen. */
5170 = ((flags
& (LOOKUP_ONLYCONVERTING
|LOOKUP_LIST_INIT_CTOR
))
5171 == LOOKUP_ONLYCONVERTING
);
5175 check_list_ctor
= false;
5176 check_converting
= false;
5178 strict
= DEDUCE_CALL
;
5179 ctype
= conversion_path
? BINFO_TYPE (conversion_path
) : NULL_TREE
;
5183 non_static_args
= args
;
5185 /* Delay creating the implicit this parameter until it is needed. */
5186 non_static_args
= NULL
;
5188 for (; fns
; fns
= OVL_NEXT (fns
))
5191 const vec
<tree
, va_gc
> *fn_args
;
5193 fn
= OVL_CURRENT (fns
);
5195 if (check_converting
&& DECL_NONCONVERTING_P (fn
))
5197 if (check_list_ctor
&& !is_list_ctor (fn
))
5200 /* Figure out which set of arguments to use. */
5201 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn
))
5203 /* If this function is a non-static member and we didn't get an
5204 implicit object argument, move it out of args. */
5205 if (first_arg
== NULL_TREE
)
5209 vec
<tree
, va_gc
> *tempvec
;
5210 vec_alloc (tempvec
, args
->length () - 1);
5211 for (ix
= 1; args
->iterate (ix
, &arg
); ++ix
)
5212 tempvec
->quick_push (arg
);
5213 non_static_args
= tempvec
;
5214 first_arg
= (*args
)[0];
5217 fn_first_arg
= first_arg
;
5218 fn_args
= non_static_args
;
5222 /* Otherwise, just use the list of arguments provided. */
5223 fn_first_arg
= NULL_TREE
;
5227 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
5228 add_template_candidate (candidates
,
5240 else if (!template_only
)
5241 add_function_candidate (candidates
,
5254 build_new_op_1 (location_t loc
, enum tree_code code
, int flags
, tree arg1
,
5255 tree arg2
, tree arg3
, tree
*overload
, tsubst_flags_t complain
)
5257 struct z_candidate
*candidates
= 0, *cand
;
5258 vec
<tree
, va_gc
> *arglist
;
5261 tree result
= NULL_TREE
;
5262 bool result_valid_p
= false;
5263 enum tree_code code2
= NOP_EXPR
;
5264 enum tree_code code_orig_arg1
= ERROR_MARK
;
5265 enum tree_code code_orig_arg2
= ERROR_MARK
;
5271 if (error_operand_p (arg1
)
5272 || error_operand_p (arg2
)
5273 || error_operand_p (arg3
))
5274 return error_mark_node
;
5276 if (code
== MODIFY_EXPR
)
5278 code2
= TREE_CODE (arg3
);
5280 fnname
= ansi_assopname (code2
);
5283 fnname
= ansi_opname (code
);
5285 arg1
= prep_operand (arg1
);
5291 case VEC_DELETE_EXPR
:
5293 /* Use build_op_new_call and build_op_delete_call instead. */
5297 /* Use build_op_call instead. */
5300 case TRUTH_ORIF_EXPR
:
5301 case TRUTH_ANDIF_EXPR
:
5302 case TRUTH_AND_EXPR
:
5304 /* These are saved for the sake of warn_logical_operator. */
5305 code_orig_arg1
= TREE_CODE (arg1
);
5306 code_orig_arg2
= TREE_CODE (arg2
);
5312 arg2
= prep_operand (arg2
);
5313 arg3
= prep_operand (arg3
);
5315 if (code
== COND_EXPR
)
5316 /* Use build_conditional_expr instead. */
5318 else if (! OVERLOAD_TYPE_P (TREE_TYPE (arg1
))
5319 && (! arg2
|| ! OVERLOAD_TYPE_P (TREE_TYPE (arg2
))))
5322 if (code
== POSTINCREMENT_EXPR
|| code
== POSTDECREMENT_EXPR
)
5323 arg2
= integer_zero_node
;
5325 vec_alloc (arglist
, 3);
5326 arglist
->quick_push (arg1
);
5327 if (arg2
!= NULL_TREE
)
5328 arglist
->quick_push (arg2
);
5329 if (arg3
!= NULL_TREE
)
5330 arglist
->quick_push (arg3
);
5332 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5333 p
= conversion_obstack_alloc (0);
5335 /* Add namespace-scope operators to the list of functions to
5337 add_candidates (lookup_function_nonclass (fnname
, arglist
, /*block_p=*/true),
5338 NULL_TREE
, arglist
, NULL_TREE
,
5339 NULL_TREE
, false, NULL_TREE
, NULL_TREE
,
5340 flags
, &candidates
, complain
);
5344 args
[2] = NULL_TREE
;
5346 /* Add class-member operators to the candidate set. */
5347 if (CLASS_TYPE_P (TREE_TYPE (arg1
)))
5351 fns
= lookup_fnfields (TREE_TYPE (arg1
), fnname
, 1);
5352 if (fns
== error_mark_node
)
5354 result
= error_mark_node
;
5355 goto user_defined_result_ready
;
5358 add_candidates (BASELINK_FUNCTIONS (fns
),
5359 NULL_TREE
, arglist
, NULL_TREE
,
5361 BASELINK_BINFO (fns
),
5362 BASELINK_ACCESS_BINFO (fns
),
5363 flags
, &candidates
, complain
);
5365 /* Per 13.3.1.2/3, 2nd bullet, if no operand has a class type, then
5366 only non-member functions that have type T1 or reference to
5367 cv-qualified-opt T1 for the first argument, if the first argument
5368 has an enumeration type, or T2 or reference to cv-qualified-opt
5369 T2 for the second argument, if the the second argument has an
5370 enumeration type. Filter out those that don't match. */
5371 else if (! arg2
|| ! CLASS_TYPE_P (TREE_TYPE (arg2
)))
5373 struct z_candidate
**candp
, **next
;
5375 for (candp
= &candidates
; *candp
; candp
= next
)
5377 tree parmlist
, parmtype
;
5378 int i
, nargs
= (arg2
? 2 : 1);
5383 parmlist
= TYPE_ARG_TYPES (TREE_TYPE (cand
->fn
));
5385 for (i
= 0; i
< nargs
; ++i
)
5387 parmtype
= TREE_VALUE (parmlist
);
5389 if (TREE_CODE (parmtype
) == REFERENCE_TYPE
)
5390 parmtype
= TREE_TYPE (parmtype
);
5391 if (TREE_CODE (TREE_TYPE (args
[i
])) == ENUMERAL_TYPE
5392 && (same_type_ignoring_top_level_qualifiers_p
5393 (TREE_TYPE (args
[i
]), parmtype
)))
5396 parmlist
= TREE_CHAIN (parmlist
);
5399 /* No argument has an appropriate type, so remove this
5400 candidate function from the list. */
5403 *candp
= cand
->next
;
5409 add_builtin_candidates (&candidates
, code
, code2
, fnname
, args
,
5416 /* For these, the built-in candidates set is empty
5417 [over.match.oper]/3. We don't want non-strict matches
5418 because exact matches are always possible with built-in
5419 operators. The built-in candidate set for COMPONENT_REF
5420 would be empty too, but since there are no such built-in
5421 operators, we accept non-strict matches for them. */
5430 candidates
= splice_viable (candidates
, strict_p
, &any_viable_p
);
5435 case POSTINCREMENT_EXPR
:
5436 case POSTDECREMENT_EXPR
:
5437 /* Don't try anything fancy if we're not allowed to produce
5439 if (!(complain
& tf_error
))
5440 return error_mark_node
;
5442 /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
5443 distinguish between prefix and postfix ++ and
5444 operator++() was used for both, so we allow this with
5448 const char *msg
= (flag_permissive
)
5449 ? G_("no %<%D(int)%> declared for postfix %qs,"
5450 " trying prefix operator instead")
5451 : G_("no %<%D(int)%> declared for postfix %qs");
5452 permerror (loc
, msg
, fnname
, operator_name_info
[code
].name
);
5455 if (!flag_permissive
)
5456 return error_mark_node
;
5458 if (code
== POSTINCREMENT_EXPR
)
5459 code
= PREINCREMENT_EXPR
;
5461 code
= PREDECREMENT_EXPR
;
5462 result
= build_new_op_1 (loc
, code
, flags
, arg1
, NULL_TREE
,
5463 NULL_TREE
, overload
, complain
);
5466 /* The caller will deal with these. */
5471 result_valid_p
= true;
5475 if (complain
& tf_error
)
5477 /* If one of the arguments of the operator represents
5478 an invalid use of member function pointer, try to report
5479 a meaningful error ... */
5480 if (invalid_nonstatic_memfn_p (arg1
, tf_error
)
5481 || invalid_nonstatic_memfn_p (arg2
, tf_error
)
5482 || invalid_nonstatic_memfn_p (arg3
, tf_error
))
5483 /* We displayed the error message. */;
5486 /* ... Otherwise, report the more generic
5487 "no matching operator found" error */
5488 op_error (loc
, code
, code2
, arg1
, arg2
, arg3
, FALSE
);
5489 print_z_candidates (loc
, candidates
);
5492 result
= error_mark_node
;
5498 cand
= tourney (candidates
, complain
);
5501 if (complain
& tf_error
)
5503 op_error (loc
, code
, code2
, arg1
, arg2
, arg3
, TRUE
);
5504 print_z_candidates (loc
, candidates
);
5506 result
= error_mark_node
;
5508 else if (TREE_CODE (cand
->fn
) == FUNCTION_DECL
)
5511 *overload
= cand
->fn
;
5513 if (resolve_args (arglist
, complain
) == NULL
)
5514 result
= error_mark_node
;
5516 result
= build_over_call (cand
, LOOKUP_NORMAL
, complain
);
5520 /* Give any warnings we noticed during overload resolution. */
5521 if (cand
->warnings
&& (complain
& tf_warning
))
5523 struct candidate_warning
*w
;
5524 for (w
= cand
->warnings
; w
; w
= w
->next
)
5525 joust (cand
, w
->loser
, 1, complain
);
5528 /* Check for comparison of different enum types. */
5537 if (TREE_CODE (TREE_TYPE (arg1
)) == ENUMERAL_TYPE
5538 && TREE_CODE (TREE_TYPE (arg2
)) == ENUMERAL_TYPE
5539 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1
))
5540 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2
)))
5541 && (complain
& tf_warning
))
5543 warning (OPT_Wenum_compare
,
5544 "comparison between %q#T and %q#T",
5545 TREE_TYPE (arg1
), TREE_TYPE (arg2
));
5552 /* We need to strip any leading REF_BIND so that bitfields
5553 don't cause errors. This should not remove any important
5554 conversions, because builtins don't apply to class
5555 objects directly. */
5556 conv
= cand
->convs
[0];
5557 if (conv
->kind
== ck_ref_bind
)
5558 conv
= next_conversion (conv
);
5559 arg1
= convert_like (conv
, arg1
, complain
);
5563 conv
= cand
->convs
[1];
5564 if (conv
->kind
== ck_ref_bind
)
5565 conv
= next_conversion (conv
);
5567 arg2
= decay_conversion (arg2
, complain
);
5569 /* We need to call warn_logical_operator before
5570 converting arg2 to a boolean_type, but after
5571 decaying an enumerator to its value. */
5572 if (complain
& tf_warning
)
5573 warn_logical_operator (loc
, code
, boolean_type_node
,
5574 code_orig_arg1
, arg1
,
5575 code_orig_arg2
, arg2
);
5577 arg2
= convert_like (conv
, arg2
, complain
);
5581 conv
= cand
->convs
[2];
5582 if (conv
->kind
== ck_ref_bind
)
5583 conv
= next_conversion (conv
);
5584 arg3
= convert_like (conv
, arg3
, complain
);
5590 user_defined_result_ready
:
5592 /* Free all the conversions we allocated. */
5593 obstack_free (&conversion_obstack
, p
);
5595 if (result
|| result_valid_p
)
5602 return cp_build_modify_expr (arg1
, code2
, arg2
, complain
);
5605 return cp_build_indirect_ref (arg1
, RO_UNARY_STAR
, complain
);
5607 case TRUTH_ANDIF_EXPR
:
5608 case TRUTH_ORIF_EXPR
:
5609 case TRUTH_AND_EXPR
:
5611 warn_logical_operator (loc
, code
, boolean_type_node
,
5612 code_orig_arg1
, arg1
, code_orig_arg2
, arg2
);
5617 case TRUNC_DIV_EXPR
:
5628 case TRUNC_MOD_EXPR
:
5632 return cp_build_binary_op (loc
, code
, arg1
, arg2
, complain
);
5634 case UNARY_PLUS_EXPR
:
5637 case TRUTH_NOT_EXPR
:
5638 case PREINCREMENT_EXPR
:
5639 case POSTINCREMENT_EXPR
:
5640 case PREDECREMENT_EXPR
:
5641 case POSTDECREMENT_EXPR
:
5645 return cp_build_unary_op (code
, arg1
, candidates
!= 0, complain
);
5648 return cp_build_array_ref (input_location
, arg1
, arg2
, complain
);
5651 return build_m_component_ref (cp_build_indirect_ref (arg1
, RO_ARROW_STAR
,
5655 /* The caller will deal with these. */
5667 /* Wrapper for above. */
5670 build_new_op (location_t loc
, enum tree_code code
, int flags
,
5671 tree arg1
, tree arg2
, tree arg3
,
5672 tree
*overload
, tsubst_flags_t complain
)
5675 bool subtime
= timevar_cond_start (TV_OVERLOAD
);
5676 ret
= build_new_op_1 (loc
, code
, flags
, arg1
, arg2
, arg3
,
5677 overload
, complain
);
5678 timevar_cond_stop (TV_OVERLOAD
, subtime
);
5682 /* Returns true iff T, an element of an OVERLOAD chain, is a usual
5683 deallocation function (3.7.4.2 [basic.stc.dynamic.deallocation]). */
5686 non_placement_deallocation_fn_p (tree t
)
5688 /* A template instance is never a usual deallocation function,
5689 regardless of its signature. */
5690 if (TREE_CODE (t
) == TEMPLATE_DECL
5691 || primary_template_instantiation_p (t
))
5694 /* If a class T has a member deallocation function named operator delete
5695 with exactly one parameter, then that function is a usual
5696 (non-placement) deallocation function. If class T does not declare
5697 such an operator delete but does declare a member deallocation
5698 function named operator delete with exactly two parameters, the second
5699 of which has type std::size_t (18.2), then this function is a usual
5700 deallocation function. */
5701 t
= FUNCTION_ARG_CHAIN (t
);
5702 if (t
== void_list_node
5703 || (t
&& same_type_p (TREE_VALUE (t
), size_type_node
)
5704 && TREE_CHAIN (t
) == void_list_node
))
5709 /* Build a call to operator delete. This has to be handled very specially,
5710 because the restrictions on what signatures match are different from all
5711 other call instances. For a normal delete, only a delete taking (void *)
5712 or (void *, size_t) is accepted. For a placement delete, only an exact
5713 match with the placement new is accepted.
5715 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
5716 ADDR is the pointer to be deleted.
5717 SIZE is the size of the memory block to be deleted.
5718 GLOBAL_P is true if the delete-expression should not consider
5719 class-specific delete operators.
5720 PLACEMENT is the corresponding placement new call, or NULL_TREE.
5722 If this call to "operator delete" is being generated as part to
5723 deallocate memory allocated via a new-expression (as per [expr.new]
5724 which requires that if the initialization throws an exception then
5725 we call a deallocation function), then ALLOC_FN is the allocation
5729 build_op_delete_call (enum tree_code code
, tree addr
, tree size
,
5730 bool global_p
, tree placement
,
5731 tree alloc_fn
, tsubst_flags_t complain
)
5733 tree fn
= NULL_TREE
;
5734 tree fns
, fnname
, type
, t
;
5736 if (addr
== error_mark_node
)
5737 return error_mark_node
;
5739 type
= strip_array_types (TREE_TYPE (TREE_TYPE (addr
)));
5741 fnname
= ansi_opname (code
);
5743 if (CLASS_TYPE_P (type
)
5744 && COMPLETE_TYPE_P (complete_type (type
))
5748 If the result of the lookup is ambiguous or inaccessible, or if
5749 the lookup selects a placement deallocation function, the
5750 program is ill-formed.
5752 Therefore, we ask lookup_fnfields to complain about ambiguity. */
5754 fns
= lookup_fnfields (TYPE_BINFO (type
), fnname
, 1);
5755 if (fns
== error_mark_node
)
5756 return error_mark_node
;
5761 if (fns
== NULL_TREE
)
5762 fns
= lookup_name_nonclass (fnname
);
5764 /* Strip const and volatile from addr. */
5765 addr
= cp_convert (ptr_type_node
, addr
, complain
);
5769 /* "A declaration of a placement deallocation function matches the
5770 declaration of a placement allocation function if it has the same
5771 number of parameters and, after parameter transformations (8.3.5),
5772 all parameter types except the first are identical."
5774 So we build up the function type we want and ask instantiate_type
5775 to get it for us. */
5776 t
= FUNCTION_ARG_CHAIN (alloc_fn
);
5777 t
= tree_cons (NULL_TREE
, ptr_type_node
, t
);
5778 t
= build_function_type (void_type_node
, t
);
5780 fn
= instantiate_type (t
, fns
, tf_none
);
5781 if (fn
== error_mark_node
)
5784 if (BASELINK_P (fn
))
5785 fn
= BASELINK_FUNCTIONS (fn
);
5787 /* "If the lookup finds the two-parameter form of a usual deallocation
5788 function (3.7.4.2) and that function, considered as a placement
5789 deallocation function, would have been selected as a match for the
5790 allocation function, the program is ill-formed." */
5791 if (non_placement_deallocation_fn_p (fn
))
5793 /* But if the class has an operator delete (void *), then that is
5794 the usual deallocation function, so we shouldn't complain
5795 about using the operator delete (void *, size_t). */
5796 for (t
= BASELINK_P (fns
) ? BASELINK_FUNCTIONS (fns
) : fns
;
5797 t
; t
= OVL_NEXT (t
))
5799 tree elt
= OVL_CURRENT (t
);
5800 if (non_placement_deallocation_fn_p (elt
)
5801 && FUNCTION_ARG_CHAIN (elt
) == void_list_node
)
5804 if (complain
& tf_error
)
5806 permerror (0, "non-placement deallocation function %q+D", fn
);
5807 permerror (input_location
, "selected for placement delete");
5810 return error_mark_node
;
5815 /* "Any non-placement deallocation function matches a non-placement
5816 allocation function. If the lookup finds a single matching
5817 deallocation function, that function will be called; otherwise, no
5818 deallocation function will be called." */
5819 for (t
= BASELINK_P (fns
) ? BASELINK_FUNCTIONS (fns
) : fns
;
5820 t
; t
= OVL_NEXT (t
))
5822 tree elt
= OVL_CURRENT (t
);
5823 if (non_placement_deallocation_fn_p (elt
))
5826 /* "If a class T has a member deallocation function named
5827 operator delete with exactly one parameter, then that
5828 function is a usual (non-placement) deallocation
5829 function. If class T does not declare such an operator
5830 delete but does declare a member deallocation function named
5831 operator delete with exactly two parameters, the second of
5832 which has type std::size_t (18.2), then this function is a
5833 usual deallocation function."
5835 So (void*) beats (void*, size_t). */
5836 if (FUNCTION_ARG_CHAIN (fn
) == void_list_node
)
5841 /* If we have a matching function, call it. */
5844 gcc_assert (TREE_CODE (fn
) == FUNCTION_DECL
);
5846 /* If the FN is a member function, make sure that it is
5848 if (BASELINK_P (fns
))
5849 perform_or_defer_access_check (BASELINK_BINFO (fns
), fn
, fn
,
5852 /* Core issue 901: It's ok to new a type with deleted delete. */
5853 if (DECL_DELETED_FN (fn
) && alloc_fn
)
5858 /* The placement args might not be suitable for overload
5859 resolution at this point, so build the call directly. */
5860 int nargs
= call_expr_nargs (placement
);
5861 tree
*argarray
= XALLOCAVEC (tree
, nargs
);
5864 for (i
= 1; i
< nargs
; i
++)
5865 argarray
[i
] = CALL_EXPR_ARG (placement
, i
);
5867 return build_cxx_call (fn
, nargs
, argarray
, complain
);
5872 vec
<tree
, va_gc
> *args
= make_tree_vector ();
5873 args
->quick_push (addr
);
5874 if (FUNCTION_ARG_CHAIN (fn
) != void_list_node
)
5875 args
->quick_push (size
);
5876 ret
= cp_build_function_call_vec (fn
, &args
, complain
);
5877 release_tree_vector (args
);
5884 If no unambiguous matching deallocation function can be found,
5885 propagating the exception does not cause the object's memory to
5889 if ((complain
& tf_warning
)
5891 warning (0, "no corresponding deallocation function for %qD",
5896 if (complain
& tf_error
)
5897 error ("no suitable %<operator %s%> for %qT",
5898 operator_name_info
[(int)code
].name
, type
);
5899 return error_mark_node
;
5902 /* If the current scope isn't allowed to access DECL along
5903 BASETYPE_PATH, give an error. The most derived class in
5904 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
5905 the declaration to use in the error diagnostic. */
5908 enforce_access (tree basetype_path
, tree decl
, tree diag_decl
,
5909 tsubst_flags_t complain
)
5911 gcc_assert (TREE_CODE (basetype_path
) == TREE_BINFO
);
5913 if (!accessible_p (basetype_path
, decl
, true))
5915 if (complain
& tf_error
)
5917 if (TREE_PRIVATE (decl
))
5918 error ("%q+#D is private", diag_decl
);
5919 else if (TREE_PROTECTED (decl
))
5920 error ("%q+#D is protected", diag_decl
);
5922 error ("%q+#D is inaccessible", diag_decl
);
5923 error ("within this context");
5931 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
5932 bitwise or of LOOKUP_* values. If any errors are warnings are
5933 generated, set *DIAGNOSTIC_FN to "error" or "warning",
5934 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
5938 build_temp (tree expr
, tree type
, int flags
,
5939 diagnostic_t
*diagnostic_kind
, tsubst_flags_t complain
)
5942 vec
<tree
, va_gc
> *args
;
5944 savew
= warningcount
+ werrorcount
, savee
= errorcount
;
5945 args
= make_tree_vector_single (expr
);
5946 expr
= build_special_member_call (NULL_TREE
, complete_ctor_identifier
,
5947 &args
, type
, flags
, complain
);
5948 release_tree_vector (args
);
5949 if (warningcount
+ werrorcount
> savew
)
5950 *diagnostic_kind
= DK_WARNING
;
5951 else if (errorcount
> savee
)
5952 *diagnostic_kind
= DK_ERROR
;
5954 *diagnostic_kind
= DK_UNSPECIFIED
;
5958 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
5959 EXPR is implicitly converted to type TOTYPE.
5960 FN and ARGNUM are used for diagnostics. */
5963 conversion_null_warnings (tree totype
, tree expr
, tree fn
, int argnum
)
5965 /* Issue warnings about peculiar, but valid, uses of NULL. */
5966 if (expr
== null_node
&& TREE_CODE (totype
) != BOOLEAN_TYPE
5967 && ARITHMETIC_TYPE_P (totype
))
5969 source_location loc
=
5970 expansion_point_location_if_in_system_header (input_location
);
5973 warning_at (loc
, OPT_Wconversion_null
,
5974 "passing NULL to non-pointer argument %P of %qD",
5977 warning_at (loc
, OPT_Wconversion_null
,
5978 "converting to non-pointer type %qT from NULL", totype
);
5981 /* Issue warnings if "false" is converted to a NULL pointer */
5982 else if (TREE_CODE (TREE_TYPE (expr
)) == BOOLEAN_TYPE
5983 && TYPE_PTR_P (totype
))
5986 warning_at (input_location
, OPT_Wconversion_null
,
5987 "converting %<false%> to pointer type for argument %P "
5988 "of %qD", argnum
, fn
);
5990 warning_at (input_location
, OPT_Wconversion_null
,
5991 "converting %<false%> to pointer type %qT", totype
);
5995 /* We gave a diagnostic during a conversion. If this was in the second
5996 standard conversion sequence of a user-defined conversion sequence, say
5997 which user-defined conversion. */
6000 maybe_print_user_conv_context (conversion
*convs
)
6002 if (convs
->user_conv_p
)
6003 for (conversion
*t
= convs
; t
; t
= next_conversion (t
))
6004 if (t
->kind
== ck_user
)
6006 print_z_candidate (0, " after user-defined conversion:",
6012 /* Perform the conversions in CONVS on the expression EXPR. FN and
6013 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
6014 indicates the `this' argument of a method. INNER is nonzero when
6015 being called to continue a conversion chain. It is negative when a
6016 reference binding will be applied, positive otherwise. If
6017 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
6018 conversions will be emitted if appropriate. If C_CAST_P is true,
6019 this conversion is coming from a C-style cast; in that case,
6020 conversions to inaccessible bases are permitted. */
6023 convert_like_real (conversion
*convs
, tree expr
, tree fn
, int argnum
,
6024 int inner
, bool issue_conversion_warnings
,
6025 bool c_cast_p
, tsubst_flags_t complain
)
6027 tree totype
= convs
->type
;
6028 diagnostic_t diag_kind
;
6030 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
6032 if (convs
->bad_p
&& !(complain
& tf_error
))
6033 return error_mark_node
;
6036 && convs
->kind
!= ck_user
6037 && convs
->kind
!= ck_list
6038 && convs
->kind
!= ck_ambig
6039 && (convs
->kind
!= ck_ref_bind
6040 || (convs
->user_conv_p
&& next_conversion (convs
)->bad_p
))
6041 && (convs
->kind
!= ck_rvalue
6042 || SCALAR_TYPE_P (totype
))
6043 && convs
->kind
!= ck_base
)
6045 bool complained
= false;
6046 conversion
*t
= convs
;
6048 /* Give a helpful error if this is bad because of excess braces. */
6049 if (BRACE_ENCLOSED_INITIALIZER_P (expr
)
6050 && SCALAR_TYPE_P (totype
)
6051 && CONSTRUCTOR_NELTS (expr
) > 0
6052 && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr
, 0)->value
))
6054 complained
= permerror (loc
, "too many braces around initializer "
6056 while (BRACE_ENCLOSED_INITIALIZER_P (expr
)
6057 && CONSTRUCTOR_NELTS (expr
) == 1)
6058 expr
= CONSTRUCTOR_ELT (expr
, 0)->value
;
6061 /* Give a helpful error if this is bad because a conversion to bool
6062 from std::nullptr_t requires direct-initialization. */
6063 if (NULLPTR_TYPE_P (TREE_TYPE (expr
))
6064 && TREE_CODE (totype
) == BOOLEAN_TYPE
)
6065 complained
= permerror (loc
, "converting to %qT from %qT requires "
6066 "direct-initialization",
6067 totype
, TREE_TYPE (expr
));
6069 for (; t
; t
= next_conversion (t
))
6071 if (t
->kind
== ck_user
&& t
->cand
->reason
)
6073 permerror (loc
, "invalid user-defined conversion "
6074 "from %qT to %qT", TREE_TYPE (expr
), totype
);
6075 print_z_candidate (loc
, "candidate is:", t
->cand
);
6076 expr
= convert_like_real (t
, expr
, fn
, argnum
, 1,
6077 /*issue_conversion_warnings=*/false,
6080 if (convs
->kind
== ck_ref_bind
)
6081 expr
= convert_to_reference (totype
, expr
, CONV_IMPLICIT
,
6082 LOOKUP_NORMAL
, NULL_TREE
,
6085 expr
= cp_convert (totype
, expr
, complain
);
6087 inform (DECL_SOURCE_LOCATION (fn
),
6088 " initializing argument %P of %qD", argnum
, fn
);
6091 else if (t
->kind
== ck_user
|| !t
->bad_p
)
6093 expr
= convert_like_real (t
, expr
, fn
, argnum
, 1,
6094 /*issue_conversion_warnings=*/false,
6099 else if (t
->kind
== ck_ambig
)
6100 return convert_like_real (t
, expr
, fn
, argnum
, 1,
6101 /*issue_conversion_warnings=*/false,
6104 else if (t
->kind
== ck_identity
)
6108 complained
= permerror (loc
, "invalid conversion from %qT to %qT",
6109 TREE_TYPE (expr
), totype
);
6110 if (complained
&& fn
)
6111 inform (DECL_SOURCE_LOCATION (fn
),
6112 " initializing argument %P of %qD", argnum
, fn
);
6114 return cp_convert (totype
, expr
, complain
);
6117 if (issue_conversion_warnings
&& (complain
& tf_warning
))
6118 conversion_null_warnings (totype
, expr
, fn
, argnum
);
6120 switch (convs
->kind
)
6124 struct z_candidate
*cand
= convs
->cand
;
6125 tree convfn
= cand
->fn
;
6128 /* When converting from an init list we consider explicit
6129 constructors, but actually trying to call one is an error. */
6130 if (DECL_NONCONVERTING_P (convfn
) && DECL_CONSTRUCTOR_P (convfn
)
6131 /* Unless this is for direct-list-initialization. */
6132 && !DIRECT_LIST_INIT_P (expr
))
6134 if (!(complain
& tf_error
))
6135 return error_mark_node
;
6136 error ("converting to %qT from initializer list would use "
6137 "explicit constructor %qD", totype
, convfn
);
6140 /* If we're initializing from {}, it's value-initialization. */
6141 if (BRACE_ENCLOSED_INITIALIZER_P (expr
)
6142 && CONSTRUCTOR_NELTS (expr
) == 0
6143 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype
))
6145 bool direct
= CONSTRUCTOR_IS_DIRECT_INIT (expr
);
6146 expr
= build_value_init (totype
, complain
);
6147 expr
= get_target_expr_sfinae (expr
, complain
);
6148 if (expr
!= error_mark_node
)
6150 TARGET_EXPR_LIST_INIT_P (expr
) = true;
6151 TARGET_EXPR_DIRECT_INIT_P (expr
) = direct
;
6156 expr
= mark_rvalue_use (expr
);
6158 /* Set user_conv_p on the argument conversions, so rvalue/base
6159 handling knows not to allow any more UDCs. */
6160 for (i
= 0; i
< cand
->num_convs
; ++i
)
6161 cand
->convs
[i
]->user_conv_p
= true;
6163 expr
= build_over_call (cand
, LOOKUP_NORMAL
, complain
);
6165 /* If this is a constructor or a function returning an aggr type,
6166 we need to build up a TARGET_EXPR. */
6167 if (DECL_CONSTRUCTOR_P (convfn
))
6169 expr
= build_cplus_new (totype
, expr
, complain
);
6171 /* Remember that this was list-initialization. */
6172 if (convs
->check_narrowing
&& expr
!= error_mark_node
)
6173 TARGET_EXPR_LIST_INIT_P (expr
) = true;
6179 expr
= mark_rvalue_use (expr
);
6180 if (BRACE_ENCLOSED_INITIALIZER_P (expr
))
6182 int nelts
= CONSTRUCTOR_NELTS (expr
);
6184 expr
= build_value_init (totype
, complain
);
6185 else if (nelts
== 1)
6186 expr
= CONSTRUCTOR_ELT (expr
, 0)->value
;
6191 if (type_unknown_p (expr
))
6192 expr
= instantiate_type (totype
, expr
, complain
);
6193 /* Convert a constant to its underlying value, unless we are
6194 about to bind it to a reference, in which case we need to
6195 leave it as an lvalue. */
6198 expr
= decl_constant_value_safe (expr
);
6199 if (expr
== null_node
&& INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype
))
6200 /* If __null has been converted to an integer type, we do not
6201 want to warn about uses of EXPR as an integer, rather than
6203 expr
= build_int_cst (totype
, 0);
6207 /* We leave bad_p off ck_ambig because overload resolution considers
6208 it valid, it just fails when we try to perform it. So we need to
6209 check complain here, too. */
6210 if (complain
& tf_error
)
6212 /* Call build_user_type_conversion again for the error. */
6213 build_user_type_conversion (totype
, convs
->u
.expr
, LOOKUP_NORMAL
,
6216 inform (input_location
, " initializing argument %P of %q+D",
6219 return error_mark_node
;
6223 /* Conversion to std::initializer_list<T>. */
6224 tree elttype
= TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype
), 0);
6225 tree new_ctor
= build_constructor (init_list_type_node
, NULL
);
6226 unsigned len
= CONSTRUCTOR_NELTS (expr
);
6227 tree array
, val
, field
;
6228 vec
<constructor_elt
, va_gc
> *vec
= NULL
;
6231 /* Convert all the elements. */
6232 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr
), ix
, val
)
6234 tree sub
= convert_like_real (convs
->u
.list
[ix
], val
, fn
, argnum
,
6235 1, false, false, complain
);
6236 if (sub
== error_mark_node
)
6238 if (!BRACE_ENCLOSED_INITIALIZER_P (val
))
6239 check_narrowing (TREE_TYPE (sub
), val
);
6240 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor
), NULL_TREE
, sub
);
6241 if (!TREE_CONSTANT (sub
))
6242 TREE_CONSTANT (new_ctor
) = false;
6244 /* Build up the array. */
6245 elttype
= cp_build_qualified_type
6246 (elttype
, cp_type_quals (elttype
) | TYPE_QUAL_CONST
);
6247 array
= build_array_of_n_type (elttype
, len
);
6248 array
= finish_compound_literal (array
, new_ctor
, complain
);
6249 /* Take the address explicitly rather than via decay_conversion
6250 to avoid the error about taking the address of a temporary. */
6251 array
= cp_build_addr_expr (array
, complain
);
6252 array
= cp_convert (build_pointer_type (elttype
), array
, complain
);
6253 if (array
== error_mark_node
)
6254 return error_mark_node
;
6256 /* Build up the initializer_list object. */
6257 totype
= complete_type (totype
);
6258 field
= next_initializable_field (TYPE_FIELDS (totype
));
6259 CONSTRUCTOR_APPEND_ELT (vec
, field
, array
);
6260 field
= next_initializable_field (DECL_CHAIN (field
));
6261 CONSTRUCTOR_APPEND_ELT (vec
, field
, size_int (len
));
6262 new_ctor
= build_constructor (totype
, vec
);
6263 return get_target_expr_sfinae (new_ctor
, complain
);
6267 if (TREE_CODE (totype
) == COMPLEX_TYPE
)
6269 tree real
= CONSTRUCTOR_ELT (expr
, 0)->value
;
6270 tree imag
= CONSTRUCTOR_ELT (expr
, 1)->value
;
6271 real
= perform_implicit_conversion (TREE_TYPE (totype
),
6273 imag
= perform_implicit_conversion (TREE_TYPE (totype
),
6275 expr
= build2 (COMPLEX_EXPR
, totype
, real
, imag
);
6276 return fold_if_not_in_template (expr
);
6278 expr
= reshape_init (totype
, expr
, complain
);
6279 expr
= get_target_expr_sfinae (digest_init (totype
, expr
, complain
),
6281 if (expr
!= error_mark_node
)
6282 TARGET_EXPR_LIST_INIT_P (expr
) = true;
6289 expr
= convert_like_real (next_conversion (convs
), expr
, fn
, argnum
,
6290 convs
->kind
== ck_ref_bind
? -1 : 1,
6291 convs
->kind
== ck_ref_bind
? issue_conversion_warnings
: false,
6294 if (expr
== error_mark_node
)
6295 return error_mark_node
;
6297 switch (convs
->kind
)
6300 expr
= decay_conversion (expr
, complain
);
6301 if (expr
== error_mark_node
)
6302 return error_mark_node
;
6304 if (! MAYBE_CLASS_TYPE_P (totype
))
6306 /* Else fall through. */
6308 if (convs
->kind
== ck_base
&& !convs
->need_temporary_p
)
6310 /* We are going to bind a reference directly to a base-class
6311 subobject of EXPR. */
6312 /* Build an expression for `*((base*) &expr)'. */
6313 expr
= cp_build_addr_expr (expr
, complain
);
6314 expr
= convert_to_base (expr
, build_pointer_type (totype
),
6315 !c_cast_p
, /*nonnull=*/true, complain
);
6316 expr
= cp_build_indirect_ref (expr
, RO_IMPLICIT_CONVERSION
, complain
);
6320 /* Copy-initialization where the cv-unqualified version of the source
6321 type is the same class as, or a derived class of, the class of the
6322 destination [is treated as direct-initialization]. [dcl.init] */
6323 flags
= LOOKUP_NORMAL
|LOOKUP_ONLYCONVERTING
;
6324 if (convs
->user_conv_p
)
6325 /* This conversion is being done in the context of a user-defined
6326 conversion (i.e. the second step of copy-initialization), so
6327 don't allow any more. */
6328 flags
|= LOOKUP_NO_CONVERSION
;
6329 if (convs
->rvaluedness_matches_p
)
6330 flags
|= LOOKUP_PREFER_RVALUE
;
6331 if (TREE_CODE (expr
) == TARGET_EXPR
6332 && TARGET_EXPR_LIST_INIT_P (expr
))
6333 /* Copy-list-initialization doesn't actually involve a copy. */
6335 expr
= build_temp (expr
, totype
, flags
, &diag_kind
, complain
);
6336 if (diag_kind
&& complain
)
6338 maybe_print_user_conv_context (convs
);
6340 inform (DECL_SOURCE_LOCATION (fn
),
6341 " initializing argument %P of %qD", argnum
, fn
);
6344 return build_cplus_new (totype
, expr
, complain
);
6348 tree ref_type
= totype
;
6350 if (convs
->bad_p
&& !next_conversion (convs
)->bad_p
)
6352 tree extype
= TREE_TYPE (expr
);
6353 if (TYPE_REF_IS_RVALUE (ref_type
)
6354 && real_lvalue_p (expr
))
6355 error_at (loc
, "cannot bind %qT lvalue to %qT",
6357 else if (!TYPE_REF_IS_RVALUE (ref_type
) && !real_lvalue_p (expr
)
6358 && !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type
)))
6359 error_at (loc
, "invalid initialization of non-const reference of "
6360 "type %qT from an rvalue of type %qT", totype
, extype
);
6361 else if (!reference_compatible_p (TREE_TYPE (totype
), extype
))
6362 error_at (loc
, "binding %qT to reference of type %qT "
6363 "discards qualifiers", extype
, totype
);
6366 maybe_print_user_conv_context (convs
);
6368 inform (input_location
,
6369 " initializing argument %P of %q+D", argnum
, fn
);
6370 return error_mark_node
;
6373 /* If necessary, create a temporary.
6375 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
6376 that need temporaries, even when their types are reference
6377 compatible with the type of reference being bound, so the
6378 upcoming call to cp_build_addr_expr doesn't fail. */
6379 if (convs
->need_temporary_p
6380 || TREE_CODE (expr
) == CONSTRUCTOR
6381 || TREE_CODE (expr
) == VA_ARG_EXPR
)
6383 /* Otherwise, a temporary of type "cv1 T1" is created and
6384 initialized from the initializer expression using the rules
6385 for a non-reference copy-initialization (8.5). */
6387 tree type
= TREE_TYPE (ref_type
);
6388 cp_lvalue_kind lvalue
= real_lvalue_p (expr
);
6390 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6391 (type
, next_conversion (convs
)->type
));
6392 if (!CP_TYPE_CONST_NON_VOLATILE_P (type
)
6393 && !TYPE_REF_IS_RVALUE (ref_type
))
6395 /* If the reference is volatile or non-const, we
6396 cannot create a temporary. */
6397 if (lvalue
& clk_bitfield
)
6398 error_at (loc
, "cannot bind bitfield %qE to %qT",
6400 else if (lvalue
& clk_packed
)
6401 error_at (loc
, "cannot bind packed field %qE to %qT",
6404 error_at (loc
, "cannot bind rvalue %qE to %qT",
6406 return error_mark_node
;
6408 /* If the source is a packed field, and we must use a copy
6409 constructor, then building the target expr will require
6410 binding the field to the reference parameter to the
6411 copy constructor, and we'll end up with an infinite
6412 loop. If we can use a bitwise copy, then we'll be
6414 if ((lvalue
& clk_packed
)
6415 && CLASS_TYPE_P (type
)
6416 && type_has_nontrivial_copy_init (type
))
6418 error_at (loc
, "cannot bind packed field %qE to %qT",
6420 return error_mark_node
;
6422 if (lvalue
& clk_bitfield
)
6424 expr
= convert_bitfield_to_declared_type (expr
);
6425 expr
= fold_convert (type
, expr
);
6427 expr
= build_target_expr_with_type (expr
, type
, complain
);
6430 /* Take the address of the thing to which we will bind the
6432 expr
= cp_build_addr_expr (expr
, complain
);
6433 if (expr
== error_mark_node
)
6434 return error_mark_node
;
6436 /* Convert it to a pointer to the type referred to by the
6437 reference. This will adjust the pointer if a derived to
6438 base conversion is being performed. */
6439 expr
= cp_convert (build_pointer_type (TREE_TYPE (ref_type
)),
6441 /* Convert the pointer to the desired reference type. */
6442 return build_nop (ref_type
, expr
);
6446 return decay_conversion (expr
, complain
);
6449 /* Warn about deprecated conversion if appropriate. */
6450 string_conv_p (totype
, expr
, 1);
6455 expr
= convert_to_base (expr
, totype
, !c_cast_p
,
6456 /*nonnull=*/false, complain
);
6457 return build_nop (totype
, expr
);
6460 return convert_ptrmem (totype
, expr
, /*allow_inverse_p=*/false,
6461 c_cast_p
, complain
);
6467 if (convs
->check_narrowing
)
6468 check_narrowing (totype
, expr
);
6470 if (issue_conversion_warnings
)
6471 expr
= cp_convert_and_check (totype
, expr
, complain
);
6473 expr
= cp_convert (totype
, expr
, complain
);
6478 /* ARG is being passed to a varargs function. Perform any conversions
6479 required. Return the converted value. */
6482 convert_arg_to_ellipsis (tree arg
, tsubst_flags_t complain
)
6485 location_t loc
= EXPR_LOC_OR_LOC (arg
, input_location
);
6489 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6490 standard conversions are performed. */
6491 arg
= decay_conversion (arg
, complain
);
6492 arg_type
= TREE_TYPE (arg
);
6495 If the argument has integral or enumeration type that is subject
6496 to the integral promotions (_conv.prom_), or a floating point
6497 type that is subject to the floating point promotion
6498 (_conv.fpprom_), the value of the argument is converted to the
6499 promoted type before the call. */
6500 if (TREE_CODE (arg_type
) == REAL_TYPE
6501 && (TYPE_PRECISION (arg_type
)
6502 < TYPE_PRECISION (double_type_node
))
6503 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type
)))
6505 if ((complain
& tf_warning
)
6506 && warn_double_promotion
&& !c_inhibit_evaluation_warnings
)
6507 warning_at (loc
, OPT_Wdouble_promotion
,
6508 "implicit conversion from %qT to %qT when passing "
6509 "argument to function",
6510 arg_type
, double_type_node
);
6511 arg
= convert_to_real (double_type_node
, arg
);
6513 else if (NULLPTR_TYPE_P (arg_type
))
6514 arg
= null_pointer_node
;
6515 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type
))
6517 if (SCOPED_ENUM_P (arg_type
))
6519 tree prom
= cp_convert (ENUM_UNDERLYING_TYPE (arg_type
), arg
,
6521 prom
= cp_perform_integral_promotions (prom
, complain
);
6522 if (abi_version_crosses (6)
6523 && TYPE_MODE (TREE_TYPE (prom
)) != TYPE_MODE (arg_type
)
6524 && (complain
& tf_warning
))
6525 warning_at (loc
, OPT_Wabi
, "scoped enum %qT passed through ... as "
6526 "%qT before -fabi-version=6, %qT after", arg_type
,
6527 TREE_TYPE (prom
), ENUM_UNDERLYING_TYPE (arg_type
));
6528 if (!abi_version_at_least (6))
6532 arg
= cp_perform_integral_promotions (arg
, complain
);
6535 arg
= require_complete_type_sfinae (arg
, complain
);
6536 arg_type
= TREE_TYPE (arg
);
6538 if (arg
!= error_mark_node
6539 /* In a template (or ill-formed code), we can have an incomplete type
6540 even after require_complete_type_sfinae, in which case we don't know
6541 whether it has trivial copy or not. */
6542 && COMPLETE_TYPE_P (arg_type
))
6544 /* Build up a real lvalue-to-rvalue conversion in case the
6545 copy constructor is trivial but not callable. */
6546 if (!cp_unevaluated_operand
&& CLASS_TYPE_P (arg_type
))
6547 force_rvalue (arg
, complain
);
6549 /* [expr.call] 5.2.2/7:
6550 Passing a potentially-evaluated argument of class type (Clause 9)
6551 with a non-trivial copy constructor or a non-trivial destructor
6552 with no corresponding parameter is conditionally-supported, with
6553 implementation-defined semantics.
6555 We used to just warn here and do a bitwise copy, but now
6556 cp_expr_size will abort if we try to do that.
6558 If the call appears in the context of a sizeof expression,
6559 it is not potentially-evaluated. */
6560 if (cp_unevaluated_operand
== 0
6561 && (type_has_nontrivial_copy_init (arg_type
)
6562 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type
)))
6564 if (complain
& tf_error
)
6565 error_at (loc
, "cannot pass objects of non-trivially-copyable "
6566 "type %q#T through %<...%>", arg_type
);
6567 return error_mark_node
;
6574 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
6577 build_x_va_arg (source_location loc
, tree expr
, tree type
)
6579 if (processing_template_decl
)
6580 return build_min (VA_ARG_EXPR
, type
, expr
);
6582 type
= complete_type_or_else (type
, NULL_TREE
);
6584 if (expr
== error_mark_node
|| !type
)
6585 return error_mark_node
;
6587 expr
= mark_lvalue_use (expr
);
6589 if (type_has_nontrivial_copy_init (type
)
6590 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
6591 || TREE_CODE (type
) == REFERENCE_TYPE
)
6593 /* Remove reference types so we don't ICE later on. */
6594 tree type1
= non_reference (type
);
6595 /* conditionally-supported behavior [expr.call] 5.2.2/7. */
6596 error ("cannot receive objects of non-trivially-copyable type %q#T "
6597 "through %<...%>; ", type
);
6598 expr
= convert (build_pointer_type (type1
), null_node
);
6599 expr
= cp_build_indirect_ref (expr
, RO_NULL
, tf_warning_or_error
);
6603 return build_va_arg (loc
, expr
, type
);
6606 /* TYPE has been given to va_arg. Apply the default conversions which
6607 would have happened when passed via ellipsis. Return the promoted
6608 type, or the passed type if there is no change. */
6611 cxx_type_promotes_to (tree type
)
6615 /* Perform the array-to-pointer and function-to-pointer
6617 type
= type_decays_to (type
);
6619 promote
= type_promotes_to (type
);
6620 if (same_type_p (type
, promote
))
6626 /* ARG is a default argument expression being passed to a parameter of
6627 the indicated TYPE, which is a parameter to FN. PARMNUM is the
6628 zero-based argument number. Do any required conversions. Return
6629 the converted value. */
6631 static GTY(()) vec
<tree
, va_gc
> *default_arg_context
;
6633 push_defarg_context (tree fn
)
6634 { vec_safe_push (default_arg_context
, fn
); }
6637 pop_defarg_context (void)
6638 { default_arg_context
->pop (); }
6641 convert_default_arg (tree type
, tree arg
, tree fn
, int parmnum
,
6642 tsubst_flags_t complain
)
6647 /* See through clones. */
6648 fn
= DECL_ORIGIN (fn
);
6650 /* Detect recursion. */
6651 FOR_EACH_VEC_SAFE_ELT (default_arg_context
, i
, t
)
6654 if (complain
& tf_error
)
6655 error ("recursive evaluation of default argument for %q#D", fn
);
6656 return error_mark_node
;
6659 /* If the ARG is an unparsed default argument expression, the
6660 conversion cannot be performed. */
6661 if (TREE_CODE (arg
) == DEFAULT_ARG
)
6663 if (complain
& tf_error
)
6664 error ("call to %qD uses the default argument for parameter %P, which "
6665 "is not yet defined", fn
, parmnum
);
6666 return error_mark_node
;
6669 push_defarg_context (fn
);
6671 if (fn
&& DECL_TEMPLATE_INFO (fn
))
6672 arg
= tsubst_default_argument (fn
, type
, arg
, complain
);
6678 The names in the expression are bound, and the semantic
6679 constraints are checked, at the point where the default
6680 expressions appears.
6682 we must not perform access checks here. */
6683 push_deferring_access_checks (dk_no_check
);
6684 /* We must make a copy of ARG, in case subsequent processing
6685 alters any part of it. */
6686 arg
= break_out_target_exprs (arg
);
6687 arg
= convert_for_initialization (0, type
, arg
, LOOKUP_IMPLICIT
,
6688 ICR_DEFAULT_ARGUMENT
, fn
, parmnum
,
6690 arg
= convert_for_arg_passing (type
, arg
, complain
);
6691 pop_deferring_access_checks();
6693 pop_defarg_context ();
6698 /* Returns the type which will really be used for passing an argument of
6702 type_passed_as (tree type
)
6704 /* Pass classes with copy ctors by invisible reference. */
6705 if (TREE_ADDRESSABLE (type
))
6707 type
= build_reference_type (type
);
6708 /* There are no other pointers to this temporary. */
6709 type
= cp_build_qualified_type (type
, TYPE_QUAL_RESTRICT
);
6711 else if (targetm
.calls
.promote_prototypes (type
)
6712 && INTEGRAL_TYPE_P (type
)
6713 && COMPLETE_TYPE_P (type
)
6714 && tree_int_cst_lt (TYPE_SIZE (type
), TYPE_SIZE (integer_type_node
)))
6715 type
= integer_type_node
;
6720 /* Actually perform the appropriate conversion. */
6723 convert_for_arg_passing (tree type
, tree val
, tsubst_flags_t complain
)
6727 /* If VAL is a bitfield, then -- since it has already been converted
6728 to TYPE -- it cannot have a precision greater than TYPE.
6730 If it has a smaller precision, we must widen it here. For
6731 example, passing "int f:3;" to a function expecting an "int" will
6732 not result in any conversion before this point.
6734 If the precision is the same we must not risk widening. For
6735 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
6736 often have type "int", even though the C++ type for the field is
6737 "long long". If the value is being passed to a function
6738 expecting an "int", then no conversions will be required. But,
6739 if we call convert_bitfield_to_declared_type, the bitfield will
6740 be converted to "long long". */
6741 bitfield_type
= is_bitfield_expr_with_lowered_type (val
);
6743 && TYPE_PRECISION (TREE_TYPE (val
)) < TYPE_PRECISION (type
))
6744 val
= convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type
), val
);
6746 if (val
== error_mark_node
)
6748 /* Pass classes with copy ctors by invisible reference. */
6749 else if (TREE_ADDRESSABLE (type
))
6750 val
= build1 (ADDR_EXPR
, build_reference_type (type
), val
);
6751 else if (targetm
.calls
.promote_prototypes (type
)
6752 && INTEGRAL_TYPE_P (type
)
6753 && COMPLETE_TYPE_P (type
)
6754 && tree_int_cst_lt (TYPE_SIZE (type
), TYPE_SIZE (integer_type_node
)))
6755 val
= cp_perform_integral_promotions (val
, complain
);
6756 if ((complain
& tf_warning
)
6757 && warn_suggest_attribute_format
)
6759 tree rhstype
= TREE_TYPE (val
);
6760 const enum tree_code coder
= TREE_CODE (rhstype
);
6761 const enum tree_code codel
= TREE_CODE (type
);
6762 if ((codel
== POINTER_TYPE
|| codel
== REFERENCE_TYPE
)
6764 && check_missing_format_attribute (type
, rhstype
))
6765 warning (OPT_Wsuggest_attribute_format
,
6766 "argument of function call might be a candidate for a format attribute");
6771 /* Returns true iff FN is a function with magic varargs, i.e. ones for
6772 which no conversions at all should be done. This is true for some
6773 builtins which don't act like normal functions. */
6776 magic_varargs_p (tree fn
)
6778 if (flag_cilkplus
&& is_cilkplus_reduce_builtin (fn
) != BUILT_IN_NONE
)
6781 if (DECL_BUILT_IN (fn
))
6782 switch (DECL_FUNCTION_CODE (fn
))
6784 case BUILT_IN_CLASSIFY_TYPE
:
6785 case BUILT_IN_CONSTANT_P
:
6786 case BUILT_IN_NEXT_ARG
:
6787 case BUILT_IN_VA_START
:
6791 return lookup_attribute ("type generic",
6792 TYPE_ATTRIBUTES (TREE_TYPE (fn
))) != 0;
6798 /* Returns the decl of the dispatcher function if FN is a function version. */
6801 get_function_version_dispatcher (tree fn
)
6803 tree dispatcher_decl
= NULL
;
6805 gcc_assert (TREE_CODE (fn
) == FUNCTION_DECL
6806 && DECL_FUNCTION_VERSIONED (fn
));
6808 gcc_assert (targetm
.get_function_versions_dispatcher
);
6809 dispatcher_decl
= targetm
.get_function_versions_dispatcher (fn
);
6811 if (dispatcher_decl
== NULL
)
6813 error_at (input_location
, "use of multiversioned function "
6814 "without a default");
6818 retrofit_lang_decl (dispatcher_decl
);
6819 gcc_assert (dispatcher_decl
!= NULL
);
6820 return dispatcher_decl
;
6823 /* fn is a function version dispatcher that is marked used. Mark all the
6824 semantically identical function versions it will dispatch as used. */
6827 mark_versions_used (tree fn
)
6829 struct cgraph_node
*node
;
6830 struct cgraph_function_version_info
*node_v
;
6831 struct cgraph_function_version_info
*it_v
;
6833 gcc_assert (TREE_CODE (fn
) == FUNCTION_DECL
);
6835 node
= cgraph_get_node (fn
);
6839 gcc_assert (node
->dispatcher_function
);
6841 node_v
= get_cgraph_node_version (node
);
6845 /* All semantically identical versions are chained. Traverse and mark each
6846 one of them as used. */
6847 it_v
= node_v
->next
;
6848 while (it_v
!= NULL
)
6850 mark_used (it_v
->this_node
->decl
);
6855 /* Subroutine of the various build_*_call functions. Overload resolution
6856 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
6857 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
6858 bitmask of various LOOKUP_* flags which apply to the call itself. */
6861 build_over_call (struct z_candidate
*cand
, int flags
, tsubst_flags_t complain
)
6864 const vec
<tree
, va_gc
> *args
= cand
->args
;
6865 tree first_arg
= cand
->first_arg
;
6866 conversion
**convs
= cand
->convs
;
6868 tree parm
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
6873 unsigned int arg_index
= 0;
6877 bool already_used
= false;
6879 /* In a template, there is no need to perform all of the work that
6880 is normally done. We are only interested in the type of the call
6881 expression, i.e., the return type of the function. Any semantic
6882 errors will be deferred until the template is instantiated. */
6883 if (processing_template_decl
)
6887 const tree
*argarray
;
6890 return_type
= TREE_TYPE (TREE_TYPE (fn
));
6891 nargs
= vec_safe_length (args
);
6892 if (first_arg
== NULL_TREE
)
6893 argarray
= args
->address ();
6901 alcarray
= XALLOCAVEC (tree
, nargs
);
6902 alcarray
[0] = build_this (first_arg
);
6903 FOR_EACH_VEC_SAFE_ELT (args
, ix
, arg
)
6904 alcarray
[ix
+ 1] = arg
;
6905 argarray
= alcarray
;
6908 addr
= build_addr_func (fn
, complain
);
6909 if (addr
== error_mark_node
)
6910 return error_mark_node
;
6911 expr
= build_call_array_loc (input_location
, return_type
,
6912 addr
, nargs
, argarray
);
6913 if (TREE_THIS_VOLATILE (fn
) && cfun
)
6914 current_function_returns_abnormally
= 1;
6915 return convert_from_reference (expr
);
6918 /* Give any warnings we noticed during overload resolution. */
6919 if (cand
->warnings
&& (complain
& tf_warning
))
6921 struct candidate_warning
*w
;
6922 for (w
= cand
->warnings
; w
; w
= w
->next
)
6923 joust (cand
, w
->loser
, 1, complain
);
6926 /* Make =delete work with SFINAE. */
6927 if (DECL_DELETED_FN (fn
) && !(complain
& tf_error
))
6928 return error_mark_node
;
6930 if (DECL_FUNCTION_MEMBER_P (fn
))
6933 /* If FN is a template function, two cases must be considered.
6938 template <class T> void f();
6940 template <class T> struct B {
6944 struct C : A, B<int> {
6946 using B<int>::g; // #2
6949 In case #1 where `A::f' is a member template, DECL_ACCESS is
6950 recorded in the primary template but not in its specialization.
6951 We check access of FN using its primary template.
6953 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
6954 because it is a member of class template B, DECL_ACCESS is
6955 recorded in the specialization `B<int>::g'. We cannot use its
6956 primary template because `B<T>::g' and `B<int>::g' may have
6957 different access. */
6958 if (DECL_TEMPLATE_INFO (fn
)
6959 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn
)))
6960 access_fn
= DECL_TI_TEMPLATE (fn
);
6963 if (!perform_or_defer_access_check (cand
->access_path
, access_fn
,
6965 return error_mark_node
;
6968 /* If we're checking for implicit delete, don't bother with argument
6970 if (flags
& LOOKUP_SPECULATIVE
)
6972 if (DECL_DELETED_FN (fn
))
6974 if (complain
& tf_error
)
6976 return error_mark_node
;
6978 if (cand
->viable
== 1)
6980 else if (!(complain
& tf_error
))
6981 /* Reject bad conversions now. */
6982 return error_mark_node
;
6983 /* else continue to get conversion error. */
6986 /* N3276 magic doesn't apply to nested calls. */
6987 int decltype_flag
= (complain
& tf_decltype
);
6988 complain
&= ~tf_decltype
;
6990 /* Find maximum size of vector to hold converted arguments. */
6991 parmlen
= list_length (parm
);
6992 nargs
= vec_safe_length (args
) + (first_arg
!= NULL_TREE
? 1 : 0);
6993 if (parmlen
> nargs
)
6995 argarray
= XALLOCAVEC (tree
, nargs
);
6997 /* The implicit parameters to a constructor are not considered by overload
6998 resolution, and must be of the proper type. */
6999 if (DECL_CONSTRUCTOR_P (fn
))
7002 if (first_arg
!= NULL_TREE
)
7004 object_arg
= first_arg
;
7005 first_arg
= NULL_TREE
;
7009 object_arg
= (*args
)[arg_index
];
7012 argarray
[j
++] = build_this (object_arg
);
7013 parm
= TREE_CHAIN (parm
);
7014 /* We should never try to call the abstract constructor. */
7015 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn
));
7017 if (DECL_HAS_VTT_PARM_P (fn
))
7019 argarray
[j
++] = (*args
)[arg_index
];
7021 parm
= TREE_CHAIN (parm
);
7024 /* Bypass access control for 'this' parameter. */
7025 else if (TREE_CODE (TREE_TYPE (fn
)) == METHOD_TYPE
)
7027 tree parmtype
= TREE_VALUE (parm
);
7028 tree arg
= build_this (first_arg
!= NULL_TREE
7030 : (*args
)[arg_index
]);
7031 tree argtype
= TREE_TYPE (arg
);
7035 if (convs
[i
]->bad_p
)
7037 if (complain
& tf_error
)
7039 if (permerror (input_location
, "passing %qT as %<this%> "
7040 "argument discards qualifiers",
7041 TREE_TYPE (argtype
)))
7042 inform (DECL_SOURCE_LOCATION (fn
), " in call to %qD", fn
);
7045 return error_mark_node
;
7048 /* See if the function member or the whole class type is declared
7049 final and the call can be devirtualized. */
7050 if (DECL_FINAL_P (fn
)
7051 || CLASSTYPE_FINAL (TYPE_METHOD_BASETYPE (TREE_TYPE (fn
))))
7052 flags
|= LOOKUP_NONVIRTUAL
;
7054 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
7055 X is called for an object that is not of type X, or of a type
7056 derived from X, the behavior is undefined.
7058 So we can assume that anything passed as 'this' is non-null, and
7059 optimize accordingly. */
7060 gcc_assert (TYPE_PTR_P (parmtype
));
7061 /* Convert to the base in which the function was declared. */
7062 gcc_assert (cand
->conversion_path
!= NULL_TREE
);
7063 converted_arg
= build_base_path (PLUS_EXPR
,
7065 cand
->conversion_path
,
7067 /* Check that the base class is accessible. */
7068 if (!accessible_base_p (TREE_TYPE (argtype
),
7069 BINFO_TYPE (cand
->conversion_path
), true))
7071 if (complain
& tf_error
)
7072 error ("%qT is not an accessible base of %qT",
7073 BINFO_TYPE (cand
->conversion_path
),
7074 TREE_TYPE (argtype
));
7076 return error_mark_node
;
7078 /* If fn was found by a using declaration, the conversion path
7079 will be to the derived class, not the base declaring fn. We
7080 must convert from derived to base. */
7081 base_binfo
= lookup_base (TREE_TYPE (TREE_TYPE (converted_arg
)),
7082 TREE_TYPE (parmtype
), ba_unique
,
7084 converted_arg
= build_base_path (PLUS_EXPR
, converted_arg
,
7085 base_binfo
, 1, complain
);
7087 argarray
[j
++] = converted_arg
;
7088 parm
= TREE_CHAIN (parm
);
7089 if (first_arg
!= NULL_TREE
)
7090 first_arg
= NULL_TREE
;
7097 gcc_assert (first_arg
== NULL_TREE
);
7098 for (; arg_index
< vec_safe_length (args
) && parm
;
7099 parm
= TREE_CHAIN (parm
), ++arg_index
, ++i
)
7101 tree type
= TREE_VALUE (parm
);
7102 tree arg
= (*args
)[arg_index
];
7103 bool conversion_warning
= true;
7107 /* If the argument is NULL and used to (implicitly) instantiate a
7108 template function (and bind one of the template arguments to
7109 the type of 'long int'), we don't want to warn about passing NULL
7110 to non-pointer argument.
7111 For example, if we have this template function:
7113 template<typename T> void func(T x) {}
7115 we want to warn (when -Wconversion is enabled) in this case:
7121 but not in this case:
7127 if (arg
== null_node
7128 && DECL_TEMPLATE_INFO (fn
)
7129 && cand
->template_decl
7130 && !(flags
& LOOKUP_EXPLICIT_TMPL_ARGS
))
7131 conversion_warning
= false;
7133 /* Warn about initializer_list deduction that isn't currently in the
7135 if (cxx_dialect
> cxx98
7136 && flag_deduce_init_list
7137 && cand
->template_decl
7138 && is_std_init_list (non_reference (type
))
7139 && BRACE_ENCLOSED_INITIALIZER_P (arg
))
7141 tree tmpl
= TI_TEMPLATE (cand
->template_decl
);
7142 tree realparm
= chain_index (j
, DECL_ARGUMENTS (cand
->fn
));
7143 tree patparm
= get_pattern_parm (realparm
, tmpl
);
7144 tree pattype
= TREE_TYPE (patparm
);
7145 if (PACK_EXPANSION_P (pattype
))
7146 pattype
= PACK_EXPANSION_PATTERN (pattype
);
7147 pattype
= non_reference (pattype
);
7149 if (TREE_CODE (pattype
) == TEMPLATE_TYPE_PARM
7150 && (cand
->explicit_targs
== NULL_TREE
7151 || (TREE_VEC_LENGTH (cand
->explicit_targs
)
7152 <= TEMPLATE_TYPE_IDX (pattype
))))
7154 pedwarn (input_location
, 0, "deducing %qT as %qT",
7155 non_reference (TREE_TYPE (patparm
)),
7156 non_reference (type
));
7157 pedwarn (input_location
, 0, " in call to %q+D", cand
->fn
);
7158 pedwarn (input_location
, 0,
7159 " (you can disable this with -fno-deduce-init-list)");
7162 val
= convert_like_with_context (conv
, arg
, fn
, i
- is_method
,
7165 : complain
& (~tf_warning
));
7167 val
= convert_for_arg_passing (type
, val
, complain
);
7169 if (val
== error_mark_node
)
7170 return error_mark_node
;
7172 argarray
[j
++] = val
;
7175 /* Default arguments */
7176 for (; parm
&& parm
!= void_list_node
; parm
= TREE_CHAIN (parm
), i
++)
7178 if (TREE_VALUE (parm
) == error_mark_node
)
7179 return error_mark_node
;
7180 argarray
[j
++] = convert_default_arg (TREE_VALUE (parm
),
7181 TREE_PURPOSE (parm
),
7187 for (; arg_index
< vec_safe_length (args
); ++arg_index
)
7189 tree a
= (*args
)[arg_index
];
7190 if (magic_varargs_p (fn
))
7191 /* Do no conversions for magic varargs. */
7192 a
= mark_type_use (a
);
7194 a
= convert_arg_to_ellipsis (a
, complain
);
7198 gcc_assert (j
<= nargs
);
7201 check_function_arguments (TREE_TYPE (fn
), nargs
, argarray
);
7203 /* Avoid actually calling copy constructors and copy assignment operators,
7206 if (! flag_elide_constructors
)
7207 /* Do things the hard way. */;
7208 else if (cand
->num_convs
== 1
7209 && (DECL_COPY_CONSTRUCTOR_P (fn
)
7210 || DECL_MOVE_CONSTRUCTOR_P (fn
)))
7213 tree arg
= argarray
[num_artificial_parms_for (fn
)];
7215 bool trivial
= trivial_fn_p (fn
);
7217 /* Pull out the real argument, disregarding const-correctness. */
7219 while (CONVERT_EXPR_P (targ
)
7220 || TREE_CODE (targ
) == NON_LVALUE_EXPR
)
7221 targ
= TREE_OPERAND (targ
, 0);
7222 if (TREE_CODE (targ
) == ADDR_EXPR
)
7224 targ
= TREE_OPERAND (targ
, 0);
7225 if (!same_type_ignoring_top_level_qualifiers_p
7226 (TREE_TYPE (TREE_TYPE (arg
)), TREE_TYPE (targ
)))
7235 arg
= cp_build_indirect_ref (arg
, RO_NULL
, complain
);
7237 /* [class.copy]: the copy constructor is implicitly defined even if
7238 the implementation elided its use. */
7239 if (!trivial
|| DECL_DELETED_FN (fn
))
7242 already_used
= true;
7245 /* If we're creating a temp and we already have one, don't create a
7246 new one. If we're not creating a temp but we get one, use
7247 INIT_EXPR to collapse the temp into our target. Otherwise, if the
7248 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
7249 temp or an INIT_EXPR otherwise. */
7251 if (is_dummy_object (fa
))
7253 if (TREE_CODE (arg
) == TARGET_EXPR
)
7256 return force_target_expr (DECL_CONTEXT (fn
), arg
, complain
);
7258 else if (TREE_CODE (arg
) == TARGET_EXPR
|| trivial
)
7260 tree to
= stabilize_reference (cp_build_indirect_ref (fa
, RO_NULL
,
7263 val
= build2 (INIT_EXPR
, DECL_CONTEXT (fn
), to
, arg
);
7267 else if (DECL_OVERLOADED_OPERATOR_P (fn
) == NOP_EXPR
7268 && trivial_fn_p (fn
)
7269 && !DECL_DELETED_FN (fn
))
7271 tree to
= stabilize_reference
7272 (cp_build_indirect_ref (argarray
[0], RO_NULL
, complain
));
7273 tree type
= TREE_TYPE (to
);
7274 tree as_base
= CLASSTYPE_AS_BASE (type
);
7275 tree arg
= argarray
[1];
7277 if (is_really_empty_class (type
))
7279 /* Avoid copying empty classes. */
7280 val
= build2 (COMPOUND_EXPR
, void_type_node
, to
, arg
);
7281 TREE_NO_WARNING (val
) = 1;
7282 val
= build2 (COMPOUND_EXPR
, type
, val
, to
);
7283 TREE_NO_WARNING (val
) = 1;
7285 else if (tree_int_cst_equal (TYPE_SIZE (type
), TYPE_SIZE (as_base
)))
7287 arg
= cp_build_indirect_ref (arg
, RO_NULL
, complain
);
7288 val
= build2 (MODIFY_EXPR
, TREE_TYPE (to
), to
, arg
);
7292 /* We must only copy the non-tail padding parts. */
7294 tree array_type
, alias_set
;
7296 arg2
= TYPE_SIZE_UNIT (as_base
);
7297 arg0
= cp_build_addr_expr (to
, complain
);
7299 array_type
= build_array_type (char_type_node
,
7301 (size_binop (MINUS_EXPR
,
7302 arg2
, size_int (1))));
7303 alias_set
= build_int_cst (build_pointer_type (type
), 0);
7304 t
= build2 (MODIFY_EXPR
, void_type_node
,
7305 build2 (MEM_REF
, array_type
, arg0
, alias_set
),
7306 build2 (MEM_REF
, array_type
, arg
, alias_set
));
7307 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (to
), t
, to
);
7308 TREE_NO_WARNING (val
) = 1;
7313 else if (DECL_DESTRUCTOR_P (fn
)
7314 && trivial_fn_p (fn
)
7315 && !DECL_DELETED_FN (fn
))
7316 return fold_convert (void_type_node
, argarray
[0]);
7317 /* FIXME handle trivial default constructor, too. */
7319 /* For calls to a multi-versioned function, overload resolution
7320 returns the function with the highest target priority, that is,
7321 the version that will checked for dispatching first. If this
7322 version is inlinable, a direct call to this version can be made
7323 otherwise the call should go through the dispatcher. */
7325 if (DECL_FUNCTION_VERSIONED (fn
)
7326 && (current_function_decl
== NULL
7327 || !targetm
.target_option
.can_inline_p (current_function_decl
, fn
)))
7329 fn
= get_function_version_dispatcher (fn
);
7333 mark_versions_used (fn
);
7338 return error_mark_node
;
7340 if (DECL_VINDEX (fn
) && (flags
& LOOKUP_NONVIRTUAL
) == 0
7341 /* Don't mess with virtual lookup in fold_non_dependent_expr; virtual
7342 functions can't be constexpr. */
7343 && !in_template_function ())
7346 tree binfo
= lookup_base (TREE_TYPE (TREE_TYPE (argarray
[0])),
7348 ba_any
, NULL
, complain
);
7349 gcc_assert (binfo
&& binfo
!= error_mark_node
);
7351 /* Warn about deprecated virtual functions now, since we're about
7352 to throw away the decl. */
7353 if (TREE_DEPRECATED (fn
))
7354 warn_deprecated_use (fn
, NULL_TREE
);
7356 argarray
[0] = build_base_path (PLUS_EXPR
, argarray
[0], binfo
, 1,
7358 if (TREE_SIDE_EFFECTS (argarray
[0]))
7359 argarray
[0] = save_expr (argarray
[0]);
7360 t
= build_pointer_type (TREE_TYPE (fn
));
7361 if (DECL_CONTEXT (fn
) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn
)))
7362 fn
= build_java_interface_fn_ref (fn
, argarray
[0]);
7364 fn
= build_vfn_ref (argarray
[0], DECL_VINDEX (fn
));
7369 fn
= build_addr_func (fn
, complain
);
7370 if (fn
== error_mark_node
)
7371 return error_mark_node
;
7374 tree call
= build_cxx_call (fn
, nargs
, argarray
, complain
|decltype_flag
);
7375 if (TREE_CODE (call
) == CALL_EXPR
7376 && (cand
->flags
& LOOKUP_LIST_INIT_CTOR
))
7377 CALL_EXPR_LIST_INIT_P (call
) = true;
7381 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
7382 This function performs no overload resolution, conversion, or other
7383 high-level operations. */
7386 build_cxx_call (tree fn
, int nargs
, tree
*argarray
,
7387 tsubst_flags_t complain
)
7392 /* Remember roughly where this call is. */
7393 location_t loc
= EXPR_LOC_OR_LOC (fn
, input_location
);
7394 fn
= build_call_a (fn
, nargs
, argarray
);
7395 SET_EXPR_LOCATION (fn
, loc
);
7397 fndecl
= get_callee_fndecl (fn
);
7399 /* Check that arguments to builtin functions match the expectations. */
7401 && DECL_BUILT_IN (fndecl
)
7402 && DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
7403 && !check_builtin_function_arguments (fndecl
, nargs
, argarray
))
7404 return error_mark_node
;
7406 /* If it is a built-in array notation function, then the return type of
7407 the function is the element type of the array passed in as array
7408 notation (i.e. the first parameter of the function). */
7409 if (flag_cilkplus
&& TREE_CODE (fn
) == CALL_EXPR
)
7411 enum built_in_function bif
=
7412 is_cilkplus_reduce_builtin (CALL_EXPR_FN (fn
));
7413 if (bif
== BUILT_IN_CILKPLUS_SEC_REDUCE_ADD
7414 || bif
== BUILT_IN_CILKPLUS_SEC_REDUCE_MUL
7415 || bif
== BUILT_IN_CILKPLUS_SEC_REDUCE_MAX
7416 || bif
== BUILT_IN_CILKPLUS_SEC_REDUCE_MIN
7417 || bif
== BUILT_IN_CILKPLUS_SEC_REDUCE
7418 || bif
== BUILT_IN_CILKPLUS_SEC_REDUCE_MUTATING
)
7420 if (call_expr_nargs (fn
) == 0)
7422 error_at (EXPR_LOCATION (fn
), "Invalid builtin arguments");
7423 return error_mark_node
;
7425 /* for bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_ZERO or
7426 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_ZERO or
7427 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_NONZERO or
7428 BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_NONZERO or
7429 BUILT_IN_CILKPLUS_SEC_REDUCE_MIN_IND or
7430 BUILT_IN_CILKPLUS_SEC_REDUCE_MAX_IND
7431 The pre-defined return-type is the correct one. */
7432 tree array_ntn
= CALL_EXPR_ARG (fn
, 0);
7433 TREE_TYPE (fn
) = TREE_TYPE (array_ntn
);
7438 /* Some built-in function calls will be evaluated at compile-time in
7439 fold (). Set optimize to 1 when folding __builtin_constant_p inside
7440 a constexpr function so that fold_builtin_1 doesn't fold it to 0. */
7441 optimize_sav
= optimize
;
7442 if (!optimize
&& fndecl
&& DECL_IS_BUILTIN_CONSTANT_P (fndecl
)
7443 && current_function_decl
7444 && DECL_DECLARED_CONSTEXPR_P (current_function_decl
))
7446 fn
= fold_if_not_in_template (fn
);
7447 optimize
= optimize_sav
;
7449 if (VOID_TYPE_P (TREE_TYPE (fn
)))
7452 /* 5.2.2/11: If a function call is a prvalue of object type: if the
7453 function call is either the operand of a decltype-specifier or the
7454 right operand of a comma operator that is the operand of a
7455 decltype-specifier, a temporary object is not introduced for the
7456 prvalue. The type of the prvalue may be incomplete. */
7457 if (!(complain
& tf_decltype
))
7459 fn
= require_complete_type_sfinae (fn
, complain
);
7460 if (fn
== error_mark_node
)
7461 return error_mark_node
;
7463 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn
)))
7464 fn
= build_cplus_new (TREE_TYPE (fn
), fn
, complain
);
7466 return convert_from_reference (fn
);
7469 static GTY(()) tree java_iface_lookup_fn
;
7471 /* Make an expression which yields the address of the Java interface
7472 method FN. This is achieved by generating a call to libjava's
7473 _Jv_LookupInterfaceMethodIdx(). */
7476 build_java_interface_fn_ref (tree fn
, tree instance
)
7478 tree lookup_fn
, method
, idx
;
7479 tree klass_ref
, iface
, iface_ref
;
7482 if (!java_iface_lookup_fn
)
7484 tree ftype
= build_function_type_list (ptr_type_node
,
7485 ptr_type_node
, ptr_type_node
,
7486 java_int_type_node
, NULL_TREE
);
7487 java_iface_lookup_fn
7488 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx", ftype
,
7489 0, NOT_BUILT_IN
, NULL
, NULL_TREE
);
7492 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
7493 This is the first entry in the vtable. */
7494 klass_ref
= build_vtbl_ref (cp_build_indirect_ref (instance
, RO_NULL
,
7495 tf_warning_or_error
),
7498 /* Get the java.lang.Class pointer for the interface being called. */
7499 iface
= DECL_CONTEXT (fn
);
7500 iface_ref
= lookup_field (iface
, get_identifier ("class$"), 0, false);
7501 if (!iface_ref
|| !VAR_P (iface_ref
)
7502 || DECL_CONTEXT (iface_ref
) != iface
)
7504 error ("could not find class$ field in java interface type %qT",
7506 return error_mark_node
;
7508 iface_ref
= build_address (iface_ref
);
7509 iface_ref
= convert (build_pointer_type (iface
), iface_ref
);
7511 /* Determine the itable index of FN. */
7513 for (method
= TYPE_METHODS (iface
); method
; method
= DECL_CHAIN (method
))
7515 if (!DECL_VIRTUAL_P (method
))
7521 idx
= build_int_cst (NULL_TREE
, i
);
7523 lookup_fn
= build1 (ADDR_EXPR
,
7524 build_pointer_type (TREE_TYPE (java_iface_lookup_fn
)),
7525 java_iface_lookup_fn
);
7526 return build_call_nary (ptr_type_node
, lookup_fn
,
7527 3, klass_ref
, iface_ref
, idx
);
7530 /* Returns the value to use for the in-charge parameter when making a
7531 call to a function with the indicated NAME.
7533 FIXME:Can't we find a neater way to do this mapping? */
7536 in_charge_arg_for_name (tree name
)
7538 if (name
== base_ctor_identifier
7539 || name
== base_dtor_identifier
)
7540 return integer_zero_node
;
7541 else if (name
== complete_ctor_identifier
)
7542 return integer_one_node
;
7543 else if (name
== complete_dtor_identifier
)
7544 return integer_two_node
;
7545 else if (name
== deleting_dtor_identifier
)
7546 return integer_three_node
;
7548 /* This function should only be called with one of the names listed
7554 /* Build a call to a constructor, destructor, or an assignment
7555 operator for INSTANCE, an expression with class type. NAME
7556 indicates the special member function to call; *ARGS are the
7557 arguments. ARGS may be NULL. This may change ARGS. BINFO
7558 indicates the base of INSTANCE that is to be passed as the `this'
7559 parameter to the member function called.
7561 FLAGS are the LOOKUP_* flags to use when processing the call.
7563 If NAME indicates a complete object constructor, INSTANCE may be
7564 NULL_TREE. In this case, the caller will call build_cplus_new to
7565 store the newly constructed object into a VAR_DECL. */
7568 build_special_member_call (tree instance
, tree name
, vec
<tree
, va_gc
> **args
,
7569 tree binfo
, int flags
, tsubst_flags_t complain
)
7572 /* The type of the subobject to be constructed or destroyed. */
7574 vec
<tree
, va_gc
> *allocated
= NULL
;
7577 gcc_assert (name
== complete_ctor_identifier
7578 || name
== base_ctor_identifier
7579 || name
== complete_dtor_identifier
7580 || name
== base_dtor_identifier
7581 || name
== deleting_dtor_identifier
7582 || name
== ansi_assopname (NOP_EXPR
));
7585 /* Resolve the name. */
7586 if (!complete_type_or_maybe_complain (binfo
, NULL_TREE
, complain
))
7587 return error_mark_node
;
7589 binfo
= TYPE_BINFO (binfo
);
7592 gcc_assert (binfo
!= NULL_TREE
);
7594 class_type
= BINFO_TYPE (binfo
);
7596 /* Handle the special case where INSTANCE is NULL_TREE. */
7597 if (name
== complete_ctor_identifier
&& !instance
)
7598 instance
= build_dummy_object (class_type
);
7601 if (name
== complete_dtor_identifier
7602 || name
== base_dtor_identifier
7603 || name
== deleting_dtor_identifier
)
7604 gcc_assert (args
== NULL
|| vec_safe_is_empty (*args
));
7606 /* Convert to the base class, if necessary. */
7607 if (!same_type_ignoring_top_level_qualifiers_p
7608 (TREE_TYPE (instance
), BINFO_TYPE (binfo
)))
7610 if (name
!= ansi_assopname (NOP_EXPR
))
7611 /* For constructors and destructors, either the base is
7612 non-virtual, or it is virtual but we are doing the
7613 conversion from a constructor or destructor for the
7614 complete object. In either case, we can convert
7616 instance
= convert_to_base_statically (instance
, binfo
);
7618 /* However, for assignment operators, we must convert
7619 dynamically if the base is virtual. */
7620 instance
= build_base_path (PLUS_EXPR
, instance
,
7621 binfo
, /*nonnull=*/1, complain
);
7625 gcc_assert (instance
!= NULL_TREE
);
7627 fns
= lookup_fnfields (binfo
, name
, 1);
7629 /* When making a call to a constructor or destructor for a subobject
7630 that uses virtual base classes, pass down a pointer to a VTT for
7632 if ((name
== base_ctor_identifier
7633 || name
== base_dtor_identifier
)
7634 && CLASSTYPE_VBASECLASSES (class_type
))
7639 /* If the current function is a complete object constructor
7640 or destructor, then we fetch the VTT directly.
7641 Otherwise, we look it up using the VTT we were given. */
7642 vtt
= DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type
));
7643 vtt
= decay_conversion (vtt
, complain
);
7644 if (vtt
== error_mark_node
)
7645 return error_mark_node
;
7646 vtt
= build3 (COND_EXPR
, TREE_TYPE (vtt
),
7647 build2 (EQ_EXPR
, boolean_type_node
,
7648 current_in_charge_parm
, integer_zero_node
),
7651 if (BINFO_SUBVTT_INDEX (binfo
))
7652 sub_vtt
= fold_build_pointer_plus (vtt
, BINFO_SUBVTT_INDEX (binfo
));
7658 allocated
= make_tree_vector ();
7662 vec_safe_insert (*args
, 0, sub_vtt
);
7665 ret
= build_new_method_call (instance
, fns
, args
,
7666 TYPE_BINFO (BINFO_TYPE (binfo
)),
7670 if (allocated
!= NULL
)
7671 release_tree_vector (allocated
);
7673 if ((complain
& tf_error
)
7674 && (flags
& LOOKUP_DELEGATING_CONS
)
7675 && name
== complete_ctor_identifier
7676 && TREE_CODE (ret
) == CALL_EXPR
7677 && (DECL_ABSTRACT_ORIGIN (TREE_OPERAND (CALL_EXPR_FN (ret
), 0))
7678 == current_function_decl
))
7679 error ("constructor delegates to itself");
7684 /* Return the NAME, as a C string. The NAME indicates a function that
7685 is a member of TYPE. *FREE_P is set to true if the caller must
7686 free the memory returned.
7688 Rather than go through all of this, we should simply set the names
7689 of constructors and destructors appropriately, and dispense with
7690 ctor_identifier, dtor_identifier, etc. */
7693 name_as_c_string (tree name
, tree type
, bool *free_p
)
7697 /* Assume that we will not allocate memory. */
7699 /* Constructors and destructors are special. */
7700 if (IDENTIFIER_CTOR_OR_DTOR_P (name
))
7703 = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type
))));
7704 /* For a destructor, add the '~'. */
7705 if (name
== complete_dtor_identifier
7706 || name
== base_dtor_identifier
7707 || name
== deleting_dtor_identifier
)
7709 pretty_name
= concat ("~", pretty_name
, NULL
);
7710 /* Remember that we need to free the memory allocated. */
7714 else if (IDENTIFIER_TYPENAME_P (name
))
7716 pretty_name
= concat ("operator ",
7717 type_as_string_translate (TREE_TYPE (name
),
7718 TFF_PLAIN_IDENTIFIER
),
7720 /* Remember that we need to free the memory allocated. */
7724 pretty_name
= CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (name
)));
7729 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
7730 be set, upon return, to the function called. ARGS may be NULL.
7731 This may change ARGS. */
7734 build_new_method_call_1 (tree instance
, tree fns
, vec
<tree
, va_gc
> **args
,
7735 tree conversion_path
, int flags
,
7736 tree
*fn_p
, tsubst_flags_t complain
)
7738 struct z_candidate
*candidates
= 0, *cand
;
7739 tree explicit_targs
= NULL_TREE
;
7740 tree basetype
= NULL_TREE
;
7741 tree access_binfo
, binfo
;
7743 tree first_mem_arg
= NULL_TREE
;
7745 bool skip_first_for_error
;
7746 vec
<tree
, va_gc
> *user_args
;
7749 int template_only
= 0;
7753 vec
<tree
, va_gc
> *orig_args
= NULL
;
7756 gcc_assert (instance
!= NULL_TREE
);
7758 /* We don't know what function we're going to call, yet. */
7762 if (error_operand_p (instance
)
7763 || !fns
|| error_operand_p (fns
))
7764 return error_mark_node
;
7766 if (!BASELINK_P (fns
))
7768 if (complain
& tf_error
)
7769 error ("call to non-function %qD", fns
);
7770 return error_mark_node
;
7773 orig_instance
= instance
;
7776 /* Dismantle the baselink to collect all the information we need. */
7777 if (!conversion_path
)
7778 conversion_path
= BASELINK_BINFO (fns
);
7779 access_binfo
= BASELINK_ACCESS_BINFO (fns
);
7780 binfo
= BASELINK_BINFO (fns
);
7781 optype
= BASELINK_OPTYPE (fns
);
7782 fns
= BASELINK_FUNCTIONS (fns
);
7783 if (TREE_CODE (fns
) == TEMPLATE_ID_EXPR
)
7785 explicit_targs
= TREE_OPERAND (fns
, 1);
7786 fns
= TREE_OPERAND (fns
, 0);
7789 gcc_assert (TREE_CODE (fns
) == FUNCTION_DECL
7790 || TREE_CODE (fns
) == TEMPLATE_DECL
7791 || TREE_CODE (fns
) == OVERLOAD
);
7792 fn
= get_first_fn (fns
);
7793 name
= DECL_NAME (fn
);
7795 basetype
= TYPE_MAIN_VARIANT (TREE_TYPE (instance
));
7796 gcc_assert (CLASS_TYPE_P (basetype
));
7798 if (processing_template_decl
)
7800 orig_args
= args
== NULL
? NULL
: make_tree_vector_copy (*args
);
7801 instance
= build_non_dependent_expr (instance
);
7803 make_args_non_dependent (*args
);
7806 user_args
= args
== NULL
? NULL
: *args
;
7807 /* Under DR 147 A::A() is an invalid constructor call,
7808 not a functional cast. */
7809 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn
))
7811 if (! (complain
& tf_error
))
7812 return error_mark_node
;
7814 if (permerror (input_location
,
7815 "cannot call constructor %<%T::%D%> directly",
7817 inform (input_location
, "for a function-style cast, remove the "
7818 "redundant %<::%D%>", name
);
7819 call
= build_functional_cast (basetype
, build_tree_list_vec (user_args
),
7824 /* Figure out whether to skip the first argument for the error
7825 message we will display to users if an error occurs. We don't
7826 want to display any compiler-generated arguments. The "this"
7827 pointer hasn't been added yet. However, we must remove the VTT
7828 pointer if this is a call to a base-class constructor or
7830 skip_first_for_error
= false;
7831 if (IDENTIFIER_CTOR_OR_DTOR_P (name
))
7833 /* Callers should explicitly indicate whether they want to construct
7834 the complete object or just the part without virtual bases. */
7835 gcc_assert (name
!= ctor_identifier
);
7836 /* Similarly for destructors. */
7837 gcc_assert (name
!= dtor_identifier
);
7838 /* Remove the VTT pointer, if present. */
7839 if ((name
== base_ctor_identifier
|| name
== base_dtor_identifier
)
7840 && CLASSTYPE_VBASECLASSES (basetype
))
7841 skip_first_for_error
= true;
7844 /* Process the argument list. */
7845 if (args
!= NULL
&& *args
!= NULL
)
7847 *args
= resolve_args (*args
, complain
);
7849 return error_mark_node
;
7852 /* Consider the object argument to be used even if we end up selecting a
7853 static member function. */
7854 instance
= mark_type_use (instance
);
7856 /* It's OK to call destructors and constructors on cv-qualified objects.
7857 Therefore, convert the INSTANCE to the unqualified type, if
7859 if (DECL_DESTRUCTOR_P (fn
)
7860 || DECL_CONSTRUCTOR_P (fn
))
7862 if (!same_type_p (basetype
, TREE_TYPE (instance
)))
7864 instance
= build_this (instance
);
7865 instance
= build_nop (build_pointer_type (basetype
), instance
);
7866 instance
= build_fold_indirect_ref (instance
);
7869 if (DECL_DESTRUCTOR_P (fn
))
7870 name
= complete_dtor_identifier
;
7872 /* For the overload resolution we need to find the actual `this`
7873 that would be captured if the call turns out to be to a
7874 non-static member function. Do not actually capture it at this
7876 first_mem_arg
= maybe_resolve_dummy (instance
, false);
7878 /* Get the high-water mark for the CONVERSION_OBSTACK. */
7879 p
= conversion_obstack_alloc (0);
7881 /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
7882 initializer, not T({ }). */
7883 if (DECL_CONSTRUCTOR_P (fn
) && args
!= NULL
&& !vec_safe_is_empty (*args
)
7884 && DIRECT_LIST_INIT_P ((**args
)[0]))
7886 tree init_list
= (**args
)[0];
7887 tree init
= NULL_TREE
;
7889 gcc_assert ((*args
)->length () == 1
7890 && !(flags
& LOOKUP_ONLYCONVERTING
));
7892 /* If the initializer list has no elements and T is a class type with
7893 a default constructor, the object is value-initialized. Handle
7894 this here so we don't need to handle it wherever we use
7895 build_special_member_call. */
7896 if (CONSTRUCTOR_NELTS (init_list
) == 0
7897 && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype
)
7898 /* For a user-provided default constructor, use the normal
7899 mechanisms so that protected access works. */
7900 && !type_has_user_provided_default_constructor (basetype
)
7901 && !processing_template_decl
)
7902 init
= build_value_init (basetype
, complain
);
7904 /* If BASETYPE is an aggregate, we need to do aggregate
7906 else if (CP_AGGREGATE_TYPE_P (basetype
))
7907 init
= digest_init (basetype
, init_list
, complain
);
7911 if (is_dummy_object (instance
))
7912 return get_target_expr_sfinae (init
, complain
);
7913 init
= build2 (INIT_EXPR
, TREE_TYPE (instance
), instance
, init
);
7914 TREE_SIDE_EFFECTS (init
) = true;
7918 /* Otherwise go ahead with overload resolution. */
7919 add_list_candidates (fns
, first_mem_arg
, init_list
,
7920 basetype
, explicit_targs
, template_only
,
7921 conversion_path
, access_binfo
, flags
,
7922 &candidates
, complain
);
7926 add_candidates (fns
, first_mem_arg
, user_args
, optype
,
7927 explicit_targs
, template_only
, conversion_path
,
7928 access_binfo
, flags
, &candidates
, complain
);
7930 any_viable_p
= false;
7931 candidates
= splice_viable (candidates
, false, &any_viable_p
);
7935 if (complain
& tf_error
)
7937 if (!COMPLETE_OR_OPEN_TYPE_P (basetype
))
7938 cxx_incomplete_type_error (instance
, basetype
);
7940 error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
7941 basetype
, optype
, build_tree_list_vec (user_args
),
7942 TREE_TYPE (instance
));
7949 pretty_name
= name_as_c_string (name
, basetype
, &free_p
);
7950 arglist
= build_tree_list_vec (user_args
);
7951 if (skip_first_for_error
)
7952 arglist
= TREE_CHAIN (arglist
);
7953 error ("no matching function for call to %<%T::%s(%A)%#V%>",
7954 basetype
, pretty_name
, arglist
,
7955 TREE_TYPE (instance
));
7959 print_z_candidates (location_of (name
), candidates
);
7961 call
= error_mark_node
;
7965 cand
= tourney (candidates
, complain
);
7972 if (complain
& tf_error
)
7974 pretty_name
= name_as_c_string (name
, basetype
, &free_p
);
7975 arglist
= build_tree_list_vec (user_args
);
7976 if (skip_first_for_error
)
7977 arglist
= TREE_CHAIN (arglist
);
7978 if (!any_strictly_viable (candidates
))
7979 error ("no matching function for call to %<%s(%A)%>",
7980 pretty_name
, arglist
);
7982 error ("call of overloaded %<%s(%A)%> is ambiguous",
7983 pretty_name
, arglist
);
7984 print_z_candidates (location_of (name
), candidates
);
7988 call
= error_mark_node
;
7995 if (!(flags
& LOOKUP_NONVIRTUAL
)
7996 && DECL_PURE_VIRTUAL_P (fn
)
7997 && instance
== current_class_ref
7998 && (complain
& tf_warning
))
8000 /* This is not an error, it is runtime undefined
8002 if (!current_function_decl
)
8003 warning (0, "pure virtual %q#D called from "
8004 "non-static data member initializer", fn
);
8005 else if (DECL_CONSTRUCTOR_P (current_function_decl
)
8006 || DECL_DESTRUCTOR_P (current_function_decl
))
8007 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl
)
8008 ? "pure virtual %q#D called from constructor"
8009 : "pure virtual %q#D called from destructor"),
8013 if (TREE_CODE (TREE_TYPE (fn
)) == METHOD_TYPE
8014 && !DECL_CONSTRUCTOR_P (fn
)
8015 && is_dummy_object (instance
))
8017 instance
= maybe_resolve_dummy (instance
, true);
8018 if (instance
== error_mark_node
)
8019 call
= error_mark_node
;
8020 else if (!is_dummy_object (instance
))
8022 /* We captured 'this' in the current lambda now that
8023 we know we really need it. */
8024 cand
->first_arg
= instance
;
8028 if (complain
& tf_error
)
8029 error ("cannot call member function %qD without object",
8031 call
= error_mark_node
;
8035 if (call
!= error_mark_node
)
8037 /* Optimize away vtable lookup if we know that this
8038 function can't be overridden. We need to check if
8039 the context and the type where we found fn are the same,
8040 actually FN might be defined in a different class
8041 type because of a using-declaration. In this case, we
8042 do not want to perform a non-virtual call. */
8043 if (DECL_VINDEX (fn
) && ! (flags
& LOOKUP_NONVIRTUAL
)
8044 && same_type_ignoring_top_level_qualifiers_p
8045 (DECL_CONTEXT (fn
), BINFO_TYPE (binfo
))
8046 && resolves_to_fixed_type_p (instance
, 0))
8047 flags
|= LOOKUP_NONVIRTUAL
;
8049 flags
|= LOOKUP_EXPLICIT_TMPL_ARGS
;
8050 /* Now we know what function is being called. */
8053 /* Build the actual CALL_EXPR. */
8054 call
= build_over_call (cand
, flags
, complain
);
8055 /* In an expression of the form `a->f()' where `f' turns
8056 out to be a static member function, `a' is
8057 none-the-less evaluated. */
8058 if (TREE_CODE (TREE_TYPE (fn
)) != METHOD_TYPE
8059 && !is_dummy_object (instance
)
8060 && TREE_SIDE_EFFECTS (instance
))
8061 call
= build2 (COMPOUND_EXPR
, TREE_TYPE (call
),
8063 else if (call
!= error_mark_node
8064 && DECL_DESTRUCTOR_P (cand
->fn
)
8065 && !VOID_TYPE_P (TREE_TYPE (call
)))
8066 /* An explicit call of the form "x->~X()" has type
8067 "void". However, on platforms where destructors
8068 return "this" (i.e., those where
8069 targetm.cxx.cdtor_returns_this is true), such calls
8070 will appear to have a return value of pointer type
8071 to the low-level call machinery. We do not want to
8072 change the low-level machinery, since we want to be
8073 able to optimize "delete f()" on such platforms as
8074 "operator delete(~X(f()))" (rather than generating
8075 "t = f(), ~X(t), operator delete (t)"). */
8076 call
= build_nop (void_type_node
, call
);
8081 if (processing_template_decl
&& call
!= error_mark_node
)
8083 bool cast_to_void
= false;
8085 if (TREE_CODE (call
) == COMPOUND_EXPR
)
8086 call
= TREE_OPERAND (call
, 1);
8087 else if (TREE_CODE (call
) == NOP_EXPR
)
8089 cast_to_void
= true;
8090 call
= TREE_OPERAND (call
, 0);
8092 if (INDIRECT_REF_P (call
))
8093 call
= TREE_OPERAND (call
, 0);
8094 call
= (build_min_non_dep_call_vec
8096 build_min (COMPONENT_REF
, TREE_TYPE (CALL_EXPR_FN (call
)),
8097 orig_instance
, orig_fns
, NULL_TREE
),
8099 SET_EXPR_LOCATION (call
, input_location
);
8100 call
= convert_from_reference (call
);
8102 call
= build_nop (void_type_node
, call
);
8105 /* Free all the conversions we allocated. */
8106 obstack_free (&conversion_obstack
, p
);
8108 if (orig_args
!= NULL
)
8109 release_tree_vector (orig_args
);
8114 /* Wrapper for above. */
8117 build_new_method_call (tree instance
, tree fns
, vec
<tree
, va_gc
> **args
,
8118 tree conversion_path
, int flags
,
8119 tree
*fn_p
, tsubst_flags_t complain
)
8122 bool subtime
= timevar_cond_start (TV_OVERLOAD
);
8123 ret
= build_new_method_call_1 (instance
, fns
, args
, conversion_path
, flags
,
8125 timevar_cond_stop (TV_OVERLOAD
, subtime
);
8129 /* Returns true iff standard conversion sequence ICS1 is a proper
8130 subsequence of ICS2. */
8133 is_subseq (conversion
*ics1
, conversion
*ics2
)
8135 /* We can assume that a conversion of the same code
8136 between the same types indicates a subsequence since we only get
8137 here if the types we are converting from are the same. */
8139 while (ics1
->kind
== ck_rvalue
8140 || ics1
->kind
== ck_lvalue
)
8141 ics1
= next_conversion (ics1
);
8145 while (ics2
->kind
== ck_rvalue
8146 || ics2
->kind
== ck_lvalue
)
8147 ics2
= next_conversion (ics2
);
8149 if (ics2
->kind
== ck_user
8150 || ics2
->kind
== ck_ambig
8151 || ics2
->kind
== ck_aggr
8152 || ics2
->kind
== ck_list
8153 || ics2
->kind
== ck_identity
)
8154 /* At this point, ICS1 cannot be a proper subsequence of
8155 ICS2. We can get a USER_CONV when we are comparing the
8156 second standard conversion sequence of two user conversion
8160 ics2
= next_conversion (ics2
);
8162 if (ics2
->kind
== ics1
->kind
8163 && same_type_p (ics2
->type
, ics1
->type
)
8164 && same_type_p (next_conversion (ics2
)->type
,
8165 next_conversion (ics1
)->type
))
8170 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
8171 be any _TYPE nodes. */
8174 is_properly_derived_from (tree derived
, tree base
)
8176 if (!CLASS_TYPE_P (derived
) || !CLASS_TYPE_P (base
))
8179 /* We only allow proper derivation here. The DERIVED_FROM_P macro
8180 considers every class derived from itself. */
8181 return (!same_type_ignoring_top_level_qualifiers_p (derived
, base
)
8182 && DERIVED_FROM_P (base
, derived
));
8185 /* We build the ICS for an implicit object parameter as a pointer
8186 conversion sequence. However, such a sequence should be compared
8187 as if it were a reference conversion sequence. If ICS is the
8188 implicit conversion sequence for an implicit object parameter,
8189 modify it accordingly. */
8192 maybe_handle_implicit_object (conversion
**ics
)
8196 /* [over.match.funcs]
8198 For non-static member functions, the type of the
8199 implicit object parameter is "reference to cv X"
8200 where X is the class of which the function is a
8201 member and cv is the cv-qualification on the member
8202 function declaration. */
8203 conversion
*t
= *ics
;
8204 tree reference_type
;
8206 /* The `this' parameter is a pointer to a class type. Make the
8207 implicit conversion talk about a reference to that same class
8209 reference_type
= TREE_TYPE (t
->type
);
8210 reference_type
= build_reference_type (reference_type
);
8212 if (t
->kind
== ck_qual
)
8213 t
= next_conversion (t
);
8214 if (t
->kind
== ck_ptr
)
8215 t
= next_conversion (t
);
8216 t
= build_identity_conv (TREE_TYPE (t
->type
), NULL_TREE
);
8217 t
= direct_reference_binding (reference_type
, t
);
8219 t
->rvaluedness_matches_p
= 0;
8224 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
8225 and return the initial reference binding conversion. Otherwise,
8226 leave *ICS unchanged and return NULL. */
8229 maybe_handle_ref_bind (conversion
**ics
)
8231 if ((*ics
)->kind
== ck_ref_bind
)
8233 conversion
*old_ics
= *ics
;
8234 *ics
= next_conversion (old_ics
);
8235 (*ics
)->user_conv_p
= old_ics
->user_conv_p
;
8242 /* Compare two implicit conversion sequences according to the rules set out in
8243 [over.ics.rank]. Return values:
8245 1: ics1 is better than ics2
8246 -1: ics2 is better than ics1
8247 0: ics1 and ics2 are indistinguishable */
8250 compare_ics (conversion
*ics1
, conversion
*ics2
)
8256 tree deref_from_type1
= NULL_TREE
;
8257 tree deref_from_type2
= NULL_TREE
;
8258 tree deref_to_type1
= NULL_TREE
;
8259 tree deref_to_type2
= NULL_TREE
;
8260 conversion_rank rank1
, rank2
;
8262 /* REF_BINDING is nonzero if the result of the conversion sequence
8263 is a reference type. In that case REF_CONV is the reference
8264 binding conversion. */
8265 conversion
*ref_conv1
;
8266 conversion
*ref_conv2
;
8268 /* Compare badness before stripping the reference conversion. */
8269 if (ics1
->bad_p
> ics2
->bad_p
)
8271 else if (ics1
->bad_p
< ics2
->bad_p
)
8274 /* Handle implicit object parameters. */
8275 maybe_handle_implicit_object (&ics1
);
8276 maybe_handle_implicit_object (&ics2
);
8278 /* Handle reference parameters. */
8279 ref_conv1
= maybe_handle_ref_bind (&ics1
);
8280 ref_conv2
= maybe_handle_ref_bind (&ics2
);
8282 /* List-initialization sequence L1 is a better conversion sequence than
8283 list-initialization sequence L2 if L1 converts to
8284 std::initializer_list<X> for some X and L2 does not. */
8285 if (ics1
->kind
== ck_list
&& ics2
->kind
!= ck_list
)
8287 if (ics2
->kind
== ck_list
&& ics1
->kind
!= ck_list
)
8292 When comparing the basic forms of implicit conversion sequences (as
8293 defined in _over.best.ics_)
8295 --a standard conversion sequence (_over.ics.scs_) is a better
8296 conversion sequence than a user-defined conversion sequence
8297 or an ellipsis conversion sequence, and
8299 --a user-defined conversion sequence (_over.ics.user_) is a
8300 better conversion sequence than an ellipsis conversion sequence
8301 (_over.ics.ellipsis_). */
8302 /* Use BAD_CONVERSION_RANK because we already checked for a badness
8303 mismatch. If both ICS are bad, we try to make a decision based on
8304 what would have happened if they'd been good. This is not an
8305 extension, we'll still give an error when we build up the call; this
8306 just helps us give a more helpful error message. */
8307 rank1
= BAD_CONVERSION_RANK (ics1
);
8308 rank2
= BAD_CONVERSION_RANK (ics2
);
8312 else if (rank1
< rank2
)
8315 if (ics1
->ellipsis_p
)
8316 /* Both conversions are ellipsis conversions. */
8319 /* User-defined conversion sequence U1 is a better conversion sequence
8320 than another user-defined conversion sequence U2 if they contain the
8321 same user-defined conversion operator or constructor and if the sec-
8322 ond standard conversion sequence of U1 is better than the second
8323 standard conversion sequence of U2. */
8325 /* Handle list-conversion with the same code even though it isn't always
8326 ranked as a user-defined conversion and it doesn't have a second
8327 standard conversion sequence; it will still have the desired effect.
8328 Specifically, we need to do the reference binding comparison at the
8329 end of this function. */
8331 if (ics1
->user_conv_p
|| ics1
->kind
== ck_list
|| ics1
->kind
== ck_aggr
)
8336 for (t1
= ics1
; t1
->kind
!= ck_user
; t1
= next_conversion (t1
))
8337 if (t1
->kind
== ck_ambig
|| t1
->kind
== ck_aggr
8338 || t1
->kind
== ck_list
)
8340 for (t2
= ics2
; t2
->kind
!= ck_user
; t2
= next_conversion (t2
))
8341 if (t2
->kind
== ck_ambig
|| t2
->kind
== ck_aggr
8342 || t2
->kind
== ck_list
)
8345 if (t1
->kind
!= t2
->kind
)
8347 else if (t1
->kind
== ck_user
)
8349 if (t1
->cand
->fn
!= t2
->cand
->fn
)
8354 /* For ambiguous or aggregate conversions, use the target type as
8355 a proxy for the conversion function. */
8356 if (!same_type_ignoring_top_level_qualifiers_p (t1
->type
, t2
->type
))
8360 /* We can just fall through here, after setting up
8361 FROM_TYPE1 and FROM_TYPE2. */
8362 from_type1
= t1
->type
;
8363 from_type2
= t2
->type
;
8370 /* We're dealing with two standard conversion sequences.
8374 Standard conversion sequence S1 is a better conversion
8375 sequence than standard conversion sequence S2 if
8377 --S1 is a proper subsequence of S2 (comparing the conversion
8378 sequences in the canonical form defined by _over.ics.scs_,
8379 excluding any Lvalue Transformation; the identity
8380 conversion sequence is considered to be a subsequence of
8381 any non-identity conversion sequence */
8384 while (t1
->kind
!= ck_identity
)
8385 t1
= next_conversion (t1
);
8386 from_type1
= t1
->type
;
8389 while (t2
->kind
!= ck_identity
)
8390 t2
= next_conversion (t2
);
8391 from_type2
= t2
->type
;
8394 /* One sequence can only be a subsequence of the other if they start with
8395 the same type. They can start with different types when comparing the
8396 second standard conversion sequence in two user-defined conversion
8398 if (same_type_p (from_type1
, from_type2
))
8400 if (is_subseq (ics1
, ics2
))
8402 if (is_subseq (ics2
, ics1
))
8410 --the rank of S1 is better than the rank of S2 (by the rules
8413 Standard conversion sequences are ordered by their ranks: an Exact
8414 Match is a better conversion than a Promotion, which is a better
8415 conversion than a Conversion.
8417 Two conversion sequences with the same rank are indistinguishable
8418 unless one of the following rules applies:
8420 --A conversion that does not a convert a pointer, pointer to member,
8421 or std::nullptr_t to bool is better than one that does.
8423 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
8424 so that we do not have to check it explicitly. */
8425 if (ics1
->rank
< ics2
->rank
)
8427 else if (ics2
->rank
< ics1
->rank
)
8430 to_type1
= ics1
->type
;
8431 to_type2
= ics2
->type
;
8433 /* A conversion from scalar arithmetic type to complex is worse than a
8434 conversion between scalar arithmetic types. */
8435 if (same_type_p (from_type1
, from_type2
)
8436 && ARITHMETIC_TYPE_P (from_type1
)
8437 && ARITHMETIC_TYPE_P (to_type1
)
8438 && ARITHMETIC_TYPE_P (to_type2
)
8439 && ((TREE_CODE (to_type1
) == COMPLEX_TYPE
)
8440 != (TREE_CODE (to_type2
) == COMPLEX_TYPE
)))
8442 if (TREE_CODE (to_type1
) == COMPLEX_TYPE
)
8448 if (TYPE_PTR_P (from_type1
)
8449 && TYPE_PTR_P (from_type2
)
8450 && TYPE_PTR_P (to_type1
)
8451 && TYPE_PTR_P (to_type2
))
8453 deref_from_type1
= TREE_TYPE (from_type1
);
8454 deref_from_type2
= TREE_TYPE (from_type2
);
8455 deref_to_type1
= TREE_TYPE (to_type1
);
8456 deref_to_type2
= TREE_TYPE (to_type2
);
8458 /* The rules for pointers to members A::* are just like the rules
8459 for pointers A*, except opposite: if B is derived from A then
8460 A::* converts to B::*, not vice versa. For that reason, we
8461 switch the from_ and to_ variables here. */
8462 else if ((TYPE_PTRDATAMEM_P (from_type1
) && TYPE_PTRDATAMEM_P (from_type2
)
8463 && TYPE_PTRDATAMEM_P (to_type1
) && TYPE_PTRDATAMEM_P (to_type2
))
8464 || (TYPE_PTRMEMFUNC_P (from_type1
)
8465 && TYPE_PTRMEMFUNC_P (from_type2
)
8466 && TYPE_PTRMEMFUNC_P (to_type1
)
8467 && TYPE_PTRMEMFUNC_P (to_type2
)))
8469 deref_to_type1
= TYPE_PTRMEM_CLASS_TYPE (from_type1
);
8470 deref_to_type2
= TYPE_PTRMEM_CLASS_TYPE (from_type2
);
8471 deref_from_type1
= TYPE_PTRMEM_CLASS_TYPE (to_type1
);
8472 deref_from_type2
= TYPE_PTRMEM_CLASS_TYPE (to_type2
);
8475 if (deref_from_type1
!= NULL_TREE
8476 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1
))
8477 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2
)))
8479 /* This was one of the pointer or pointer-like conversions.
8483 --If class B is derived directly or indirectly from class A,
8484 conversion of B* to A* is better than conversion of B* to
8485 void*, and conversion of A* to void* is better than
8486 conversion of B* to void*. */
8487 if (VOID_TYPE_P (deref_to_type1
)
8488 && VOID_TYPE_P (deref_to_type2
))
8490 if (is_properly_derived_from (deref_from_type1
,
8493 else if (is_properly_derived_from (deref_from_type2
,
8497 else if (VOID_TYPE_P (deref_to_type1
)
8498 || VOID_TYPE_P (deref_to_type2
))
8500 if (same_type_p (deref_from_type1
, deref_from_type2
))
8502 if (VOID_TYPE_P (deref_to_type2
))
8504 if (is_properly_derived_from (deref_from_type1
,
8508 /* We know that DEREF_TO_TYPE1 is `void' here. */
8509 else if (is_properly_derived_from (deref_from_type1
,
8514 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1
))
8515 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2
)))
8519 --If class B is derived directly or indirectly from class A
8520 and class C is derived directly or indirectly from B,
8522 --conversion of C* to B* is better than conversion of C* to
8525 --conversion of B* to A* is better than conversion of C* to
8527 if (same_type_p (deref_from_type1
, deref_from_type2
))
8529 if (is_properly_derived_from (deref_to_type1
,
8532 else if (is_properly_derived_from (deref_to_type2
,
8536 else if (same_type_p (deref_to_type1
, deref_to_type2
))
8538 if (is_properly_derived_from (deref_from_type2
,
8541 else if (is_properly_derived_from (deref_from_type1
,
8547 else if (CLASS_TYPE_P (non_reference (from_type1
))
8548 && same_type_p (from_type1
, from_type2
))
8550 tree from
= non_reference (from_type1
);
8554 --binding of an expression of type C to a reference of type
8555 B& is better than binding an expression of type C to a
8556 reference of type A&
8558 --conversion of C to B is better than conversion of C to A, */
8559 if (is_properly_derived_from (from
, to_type1
)
8560 && is_properly_derived_from (from
, to_type2
))
8562 if (is_properly_derived_from (to_type1
, to_type2
))
8564 else if (is_properly_derived_from (to_type2
, to_type1
))
8568 else if (CLASS_TYPE_P (non_reference (to_type1
))
8569 && same_type_p (to_type1
, to_type2
))
8571 tree to
= non_reference (to_type1
);
8575 --binding of an expression of type B to a reference of type
8576 A& is better than binding an expression of type C to a
8577 reference of type A&,
8579 --conversion of B to A is better than conversion of C to A */
8580 if (is_properly_derived_from (from_type1
, to
)
8581 && is_properly_derived_from (from_type2
, to
))
8583 if (is_properly_derived_from (from_type2
, from_type1
))
8585 else if (is_properly_derived_from (from_type1
, from_type2
))
8592 --S1 and S2 differ only in their qualification conversion and yield
8593 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
8594 qualification signature of type T1 is a proper subset of the cv-
8595 qualification signature of type T2 */
8596 if (ics1
->kind
== ck_qual
8597 && ics2
->kind
== ck_qual
8598 && same_type_p (from_type1
, from_type2
))
8600 int result
= comp_cv_qual_signature (to_type1
, to_type2
);
8607 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
8608 to an implicit object parameter of a non-static member function
8609 declared without a ref-qualifier, and either S1 binds an lvalue
8610 reference to an lvalue and S2 binds an rvalue reference or S1 binds an
8611 rvalue reference to an rvalue and S2 binds an lvalue reference (C++0x
8612 draft standard, 13.3.3.2)
8614 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
8615 types to which the references refer are the same type except for
8616 top-level cv-qualifiers, and the type to which the reference
8617 initialized by S2 refers is more cv-qualified than the type to
8618 which the reference initialized by S1 refers.
8620 DR 1328 [over.match.best]: the context is an initialization by
8621 conversion function for direct reference binding (13.3.1.6) of a
8622 reference to function type, the return type of F1 is the same kind of
8623 reference (i.e. lvalue or rvalue) as the reference being initialized,
8624 and the return type of F2 is not. */
8626 if (ref_conv1
&& ref_conv2
)
8628 if (!ref_conv1
->this_p
&& !ref_conv2
->this_p
8629 && (ref_conv1
->rvaluedness_matches_p
8630 != ref_conv2
->rvaluedness_matches_p
)
8631 && (same_type_p (ref_conv1
->type
, ref_conv2
->type
)
8632 || (TYPE_REF_IS_RVALUE (ref_conv1
->type
)
8633 != TYPE_REF_IS_RVALUE (ref_conv2
->type
))))
8635 if (ref_conv1
->bad_p
8636 && !same_type_p (TREE_TYPE (ref_conv1
->type
),
8637 TREE_TYPE (ref_conv2
->type
)))
8638 /* Don't prefer a bad conversion that drops cv-quals to a bad
8639 conversion with the wrong rvalueness. */
8641 return (ref_conv1
->rvaluedness_matches_p
8642 - ref_conv2
->rvaluedness_matches_p
);
8645 if (same_type_ignoring_top_level_qualifiers_p (to_type1
, to_type2
))
8647 int q1
= cp_type_quals (TREE_TYPE (ref_conv1
->type
));
8648 int q2
= cp_type_quals (TREE_TYPE (ref_conv2
->type
));
8649 if (ref_conv1
->bad_p
)
8651 /* Prefer the one that drops fewer cv-quals. */
8652 tree ftype
= next_conversion (ref_conv1
)->type
;
8653 int fquals
= cp_type_quals (ftype
);
8657 return comp_cv_qualification (q2
, q1
);
8661 /* Neither conversion sequence is better than the other. */
8665 /* The source type for this standard conversion sequence. */
8668 source_type (conversion
*t
)
8670 for (;; t
= next_conversion (t
))
8672 if (t
->kind
== ck_user
8673 || t
->kind
== ck_ambig
8674 || t
->kind
== ck_identity
)
8680 /* Note a warning about preferring WINNER to LOSER. We do this by storing
8681 a pointer to LOSER and re-running joust to produce the warning if WINNER
8682 is actually used. */
8685 add_warning (struct z_candidate
*winner
, struct z_candidate
*loser
)
8687 candidate_warning
*cw
= (candidate_warning
*)
8688 conversion_obstack_alloc (sizeof (candidate_warning
));
8690 cw
->next
= winner
->warnings
;
8691 winner
->warnings
= cw
;
8694 /* Compare two candidates for overloading as described in
8695 [over.match.best]. Return values:
8697 1: cand1 is better than cand2
8698 -1: cand2 is better than cand1
8699 0: cand1 and cand2 are indistinguishable */
8702 joust (struct z_candidate
*cand1
, struct z_candidate
*cand2
, bool warn
,
8703 tsubst_flags_t complain
)
8706 int off1
= 0, off2
= 0;
8710 /* Candidates that involve bad conversions are always worse than those
8712 if (cand1
->viable
> cand2
->viable
)
8714 if (cand1
->viable
< cand2
->viable
)
8717 /* If we have two pseudo-candidates for conversions to the same type,
8718 or two candidates for the same function, arbitrarily pick one. */
8719 if (cand1
->fn
== cand2
->fn
8720 && (IS_TYPE_OR_DECL_P (cand1
->fn
)))
8723 /* Prefer a non-deleted function over an implicitly deleted move
8724 constructor or assignment operator. This differs slightly from the
8725 wording for issue 1402 (which says the move op is ignored by overload
8726 resolution), but this way produces better error messages. */
8727 if (TREE_CODE (cand1
->fn
) == FUNCTION_DECL
8728 && TREE_CODE (cand2
->fn
) == FUNCTION_DECL
8729 && DECL_DELETED_FN (cand1
->fn
) != DECL_DELETED_FN (cand2
->fn
))
8731 if (DECL_DELETED_FN (cand1
->fn
) && DECL_DEFAULTED_FN (cand1
->fn
)
8732 && move_fn_p (cand1
->fn
))
8734 if (DECL_DELETED_FN (cand2
->fn
) && DECL_DEFAULTED_FN (cand2
->fn
)
8735 && move_fn_p (cand2
->fn
))
8739 /* a viable function F1
8740 is defined to be a better function than another viable function F2 if
8741 for all arguments i, ICSi(F1) is not a worse conversion sequence than
8742 ICSi(F2), and then */
8744 /* for some argument j, ICSj(F1) is a better conversion sequence than
8747 /* For comparing static and non-static member functions, we ignore
8748 the implicit object parameter of the non-static function. The
8749 standard says to pretend that the static function has an object
8750 parm, but that won't work with operator overloading. */
8751 len
= cand1
->num_convs
;
8752 if (len
!= cand2
->num_convs
)
8754 int static_1
= DECL_STATIC_FUNCTION_P (cand1
->fn
);
8755 int static_2
= DECL_STATIC_FUNCTION_P (cand2
->fn
);
8757 if (DECL_CONSTRUCTOR_P (cand1
->fn
)
8758 && is_list_ctor (cand1
->fn
) != is_list_ctor (cand2
->fn
))
8759 /* We're comparing a near-match list constructor and a near-match
8760 non-list constructor. Just treat them as unordered. */
8763 gcc_assert (static_1
!= static_2
);
8774 for (i
= 0; i
< len
; ++i
)
8776 conversion
*t1
= cand1
->convs
[i
+ off1
];
8777 conversion
*t2
= cand2
->convs
[i
+ off2
];
8778 int comp
= compare_ics (t1
, t2
);
8782 if ((complain
& tf_warning
)
8784 && (CONVERSION_RANK (t1
) + CONVERSION_RANK (t2
)
8785 == cr_std
+ cr_promotion
)
8786 && t1
->kind
== ck_std
8787 && t2
->kind
== ck_std
8788 && TREE_CODE (t1
->type
) == INTEGER_TYPE
8789 && TREE_CODE (t2
->type
) == INTEGER_TYPE
8790 && (TYPE_PRECISION (t1
->type
)
8791 == TYPE_PRECISION (t2
->type
))
8792 && (TYPE_UNSIGNED (next_conversion (t1
)->type
)
8793 || (TREE_CODE (next_conversion (t1
)->type
)
8796 tree type
= next_conversion (t1
)->type
;
8798 struct z_candidate
*w
, *l
;
8800 type1
= t1
->type
, type2
= t2
->type
,
8801 w
= cand1
, l
= cand2
;
8803 type1
= t2
->type
, type2
= t1
->type
,
8804 w
= cand2
, l
= cand1
;
8808 warning (OPT_Wsign_promo
, "passing %qT chooses %qT over %qT",
8809 type
, type1
, type2
);
8810 warning (OPT_Wsign_promo
, " in call to %qD", w
->fn
);
8816 if (winner
&& comp
!= winner
)
8825 /* warn about confusing overload resolution for user-defined conversions,
8826 either between a constructor and a conversion op, or between two
8828 if ((complain
& tf_warning
)
8829 && winner
&& warn_conversion
&& cand1
->second_conv
8830 && (!DECL_CONSTRUCTOR_P (cand1
->fn
) || !DECL_CONSTRUCTOR_P (cand2
->fn
))
8831 && winner
!= compare_ics (cand1
->second_conv
, cand2
->second_conv
))
8833 struct z_candidate
*w
, *l
;
8834 bool give_warning
= false;
8837 w
= cand1
, l
= cand2
;
8839 w
= cand2
, l
= cand1
;
8841 /* We don't want to complain about `X::operator T1 ()'
8842 beating `X::operator T2 () const', when T2 is a no less
8843 cv-qualified version of T1. */
8844 if (DECL_CONTEXT (w
->fn
) == DECL_CONTEXT (l
->fn
)
8845 && !DECL_CONSTRUCTOR_P (w
->fn
) && !DECL_CONSTRUCTOR_P (l
->fn
))
8847 tree t
= TREE_TYPE (TREE_TYPE (l
->fn
));
8848 tree f
= TREE_TYPE (TREE_TYPE (w
->fn
));
8850 if (TREE_CODE (t
) == TREE_CODE (f
) && POINTER_TYPE_P (t
))
8855 if (!comp_ptr_ttypes (t
, f
))
8856 give_warning
= true;
8859 give_warning
= true;
8865 tree source
= source_type (w
->convs
[0]);
8866 if (! DECL_CONSTRUCTOR_P (w
->fn
))
8867 source
= TREE_TYPE (source
);
8868 if (warning (OPT_Wconversion
, "choosing %qD over %qD", w
->fn
, l
->fn
)
8869 && warning (OPT_Wconversion
, " for conversion from %qT to %qT",
8870 source
, w
->second_conv
->type
))
8872 inform (input_location
, " because conversion sequence for the argument is better");
8882 /* DR 495 moved this tiebreaker above the template ones. */
8884 the context is an initialization by user-defined conversion (see
8885 _dcl.init_ and _over.match.user_) and the standard conversion
8886 sequence from the return type of F1 to the destination type (i.e.,
8887 the type of the entity being initialized) is a better conversion
8888 sequence than the standard conversion sequence from the return type
8889 of F2 to the destination type. */
8891 if (cand1
->second_conv
)
8893 winner
= compare_ics (cand1
->second_conv
, cand2
->second_conv
);
8899 F1 is a non-template function and F2 is a template function
8902 if (!cand1
->template_decl
&& cand2
->template_decl
)
8904 else if (cand1
->template_decl
&& !cand2
->template_decl
)
8908 F1 and F2 are template functions and the function template for F1 is
8909 more specialized than the template for F2 according to the partial
8912 if (cand1
->template_decl
&& cand2
->template_decl
)
8914 winner
= more_specialized_fn
8915 (TI_TEMPLATE (cand1
->template_decl
),
8916 TI_TEMPLATE (cand2
->template_decl
),
8917 /* [temp.func.order]: The presence of unused ellipsis and default
8918 arguments has no effect on the partial ordering of function
8919 templates. add_function_candidate() will not have
8920 counted the "this" argument for constructors. */
8921 cand1
->num_convs
+ DECL_CONSTRUCTOR_P (cand1
->fn
));
8926 /* Check whether we can discard a builtin candidate, either because we
8927 have two identical ones or matching builtin and non-builtin candidates.
8929 (Pedantically in the latter case the builtin which matched the user
8930 function should not be added to the overload set, but we spot it here.
8933 ... the builtin candidates include ...
8934 - do not have the same parameter type list as any non-template
8935 non-member candidate. */
8937 if (identifier_p (cand1
->fn
) || identifier_p (cand2
->fn
))
8939 for (i
= 0; i
< len
; ++i
)
8940 if (!same_type_p (cand1
->convs
[i
]->type
,
8941 cand2
->convs
[i
]->type
))
8943 if (i
== cand1
->num_convs
)
8945 if (cand1
->fn
== cand2
->fn
)
8946 /* Two built-in candidates; arbitrarily pick one. */
8948 else if (identifier_p (cand1
->fn
))
8949 /* cand1 is built-in; prefer cand2. */
8952 /* cand2 is built-in; prefer cand1. */
8957 /* For candidates of a multi-versioned function, make the version with
8958 the highest priority win. This version will be checked for dispatching
8959 first. If this version can be inlined into the caller, the front-end
8960 will simply make a direct call to this function. */
8962 if (TREE_CODE (cand1
->fn
) == FUNCTION_DECL
8963 && DECL_FUNCTION_VERSIONED (cand1
->fn
)
8964 && TREE_CODE (cand2
->fn
) == FUNCTION_DECL
8965 && DECL_FUNCTION_VERSIONED (cand2
->fn
))
8967 tree f1
= TREE_TYPE (cand1
->fn
);
8968 tree f2
= TREE_TYPE (cand2
->fn
);
8969 tree p1
= TYPE_ARG_TYPES (f1
);
8970 tree p2
= TYPE_ARG_TYPES (f2
);
8972 /* Check if cand1->fn and cand2->fn are versions of the same function. It
8973 is possible that cand1->fn and cand2->fn are function versions but of
8974 different functions. Check types to see if they are versions of the same
8976 if (compparms (p1
, p2
)
8977 && same_type_p (TREE_TYPE (f1
), TREE_TYPE (f2
)))
8979 /* Always make the version with the higher priority, more
8980 specialized, win. */
8981 gcc_assert (targetm
.compare_version_priority
);
8982 if (targetm
.compare_version_priority (cand1
->fn
, cand2
->fn
) >= 0)
8989 /* If the two function declarations represent the same function (this can
8990 happen with declarations in multiple scopes and arg-dependent lookup),
8991 arbitrarily choose one. But first make sure the default args we're
8993 if (DECL_P (cand1
->fn
) && DECL_P (cand2
->fn
)
8994 && equal_functions (cand1
->fn
, cand2
->fn
))
8996 tree parms1
= TYPE_ARG_TYPES (TREE_TYPE (cand1
->fn
));
8997 tree parms2
= TYPE_ARG_TYPES (TREE_TYPE (cand2
->fn
));
8999 gcc_assert (!DECL_CONSTRUCTOR_P (cand1
->fn
));
9001 for (i
= 0; i
< len
; ++i
)
9003 /* Don't crash if the fn is variadic. */
9006 parms1
= TREE_CHAIN (parms1
);
9007 parms2
= TREE_CHAIN (parms2
);
9011 parms1
= TREE_CHAIN (parms1
);
9013 parms2
= TREE_CHAIN (parms2
);
9017 if (!cp_tree_equal (TREE_PURPOSE (parms1
),
9018 TREE_PURPOSE (parms2
)))
9022 if (complain
& tf_error
)
9024 if (permerror (input_location
,
9025 "default argument mismatch in "
9026 "overload resolution"))
9028 inform (input_location
,
9029 " candidate 1: %q+#F", cand1
->fn
);
9030 inform (input_location
,
9031 " candidate 2: %q+#F", cand2
->fn
);
9038 add_warning (cand1
, cand2
);
9041 parms1
= TREE_CHAIN (parms1
);
9042 parms2
= TREE_CHAIN (parms2
);
9050 /* Extension: If the worst conversion for one candidate is worse than the
9051 worst conversion for the other, take the first. */
9052 if (!pedantic
&& (complain
& tf_warning_or_error
))
9054 conversion_rank rank1
= cr_identity
, rank2
= cr_identity
;
9055 struct z_candidate
*w
= 0, *l
= 0;
9057 for (i
= 0; i
< len
; ++i
)
9059 if (CONVERSION_RANK (cand1
->convs
[i
+off1
]) > rank1
)
9060 rank1
= CONVERSION_RANK (cand1
->convs
[i
+off1
]);
9061 if (CONVERSION_RANK (cand2
->convs
[i
+ off2
]) > rank2
)
9062 rank2
= CONVERSION_RANK (cand2
->convs
[i
+ off2
]);
9065 winner
= 1, w
= cand1
, l
= cand2
;
9067 winner
= -1, w
= cand2
, l
= cand1
;
9070 /* Don't choose a deleted function over ambiguity. */
9071 if (DECL_P (w
->fn
) && DECL_DELETED_FN (w
->fn
))
9075 pedwarn (input_location
, 0,
9076 "ISO C++ says that these are ambiguous, even "
9077 "though the worst conversion for the first is better than "
9078 "the worst conversion for the second:");
9079 print_z_candidate (input_location
, _("candidate 1:"), w
);
9080 print_z_candidate (input_location
, _("candidate 2:"), l
);
9088 gcc_assert (!winner
);
9092 /* Given a list of candidates for overloading, find the best one, if any.
9093 This algorithm has a worst case of O(2n) (winner is last), and a best
9094 case of O(n/2) (totally ambiguous); much better than a sorting
9097 static struct z_candidate
*
9098 tourney (struct z_candidate
*candidates
, tsubst_flags_t complain
)
9100 struct z_candidate
*champ
= candidates
, *challenger
;
9102 int champ_compared_to_predecessor
= 0;
9104 /* Walk through the list once, comparing each current champ to the next
9105 candidate, knocking out a candidate or two with each comparison. */
9107 for (challenger
= champ
->next
; challenger
; )
9109 fate
= joust (champ
, challenger
, 0, complain
);
9111 challenger
= challenger
->next
;
9116 champ
= challenger
->next
;
9119 champ_compared_to_predecessor
= 0;
9124 champ_compared_to_predecessor
= 1;
9127 challenger
= champ
->next
;
9131 /* Make sure the champ is better than all the candidates it hasn't yet
9132 been compared to. */
9134 for (challenger
= candidates
;
9136 && !(champ_compared_to_predecessor
&& challenger
->next
== champ
);
9137 challenger
= challenger
->next
)
9139 fate
= joust (champ
, challenger
, 0, complain
);
9147 /* Returns nonzero if things of type FROM can be converted to TO. */
9150 can_convert (tree to
, tree from
, tsubst_flags_t complain
)
9152 tree arg
= NULL_TREE
;
9153 /* implicit_conversion only considers user-defined conversions
9154 if it has an expression for the call argument list. */
9155 if (CLASS_TYPE_P (from
) || CLASS_TYPE_P (to
))
9156 arg
= build1 (CAST_EXPR
, from
, NULL_TREE
);
9157 return can_convert_arg (to
, from
, arg
, LOOKUP_IMPLICIT
, complain
);
9160 /* Returns nonzero if things of type FROM can be converted to TO with a
9161 standard conversion. */
9164 can_convert_standard (tree to
, tree from
, tsubst_flags_t complain
)
9166 return can_convert_arg (to
, from
, NULL_TREE
, LOOKUP_IMPLICIT
, complain
);
9169 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
9172 can_convert_arg (tree to
, tree from
, tree arg
, int flags
,
9173 tsubst_flags_t complain
)
9179 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9180 p
= conversion_obstack_alloc (0);
9181 /* We want to discard any access checks done for this test,
9182 as we might not be in the appropriate access context and
9183 we'll do the check again when we actually perform the
9185 push_deferring_access_checks (dk_deferred
);
9187 t
= implicit_conversion (to
, from
, arg
, /*c_cast_p=*/false,
9189 ok_p
= (t
&& !t
->bad_p
);
9191 /* Discard the access checks now. */
9192 pop_deferring_access_checks ();
9193 /* Free all the conversions we allocated. */
9194 obstack_free (&conversion_obstack
, p
);
9199 /* Like can_convert_arg, but allows dubious conversions as well. */
9202 can_convert_arg_bad (tree to
, tree from
, tree arg
, int flags
,
9203 tsubst_flags_t complain
)
9208 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9209 p
= conversion_obstack_alloc (0);
9210 /* Try to perform the conversion. */
9211 t
= implicit_conversion (to
, from
, arg
, /*c_cast_p=*/false,
9213 /* Free all the conversions we allocated. */
9214 obstack_free (&conversion_obstack
, p
);
9219 /* Convert EXPR to TYPE. Return the converted expression.
9221 Note that we allow bad conversions here because by the time we get to
9222 this point we are committed to doing the conversion. If we end up
9223 doing a bad conversion, convert_like will complain. */
9226 perform_implicit_conversion_flags (tree type
, tree expr
,
9227 tsubst_flags_t complain
, int flags
)
9231 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
9233 if (error_operand_p (expr
))
9234 return error_mark_node
;
9236 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9237 p
= conversion_obstack_alloc (0);
9239 conv
= implicit_conversion (type
, TREE_TYPE (expr
), expr
,
9245 if (complain
& tf_error
)
9247 /* If expr has unknown type, then it is an overloaded function.
9248 Call instantiate_type to get good error messages. */
9249 if (TREE_TYPE (expr
) == unknown_type_node
)
9250 instantiate_type (type
, expr
, complain
);
9251 else if (invalid_nonstatic_memfn_p (expr
, complain
))
9252 /* We gave an error. */;
9254 error_at (loc
, "could not convert %qE from %qT to %qT", expr
,
9255 TREE_TYPE (expr
), type
);
9257 expr
= error_mark_node
;
9259 else if (processing_template_decl
&& conv
->kind
!= ck_identity
)
9261 /* In a template, we are only concerned about determining the
9262 type of non-dependent expressions, so we do not have to
9263 perform the actual conversion. But for initializers, we
9264 need to be able to perform it at instantiation
9265 (or fold_non_dependent_expr) time. */
9266 expr
= build1 (IMPLICIT_CONV_EXPR
, type
, expr
);
9267 if (!(flags
& LOOKUP_ONLYCONVERTING
))
9268 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr
) = true;
9271 expr
= convert_like (conv
, expr
, complain
);
9273 /* Free all the conversions we allocated. */
9274 obstack_free (&conversion_obstack
, p
);
9280 perform_implicit_conversion (tree type
, tree expr
, tsubst_flags_t complain
)
9282 return perform_implicit_conversion_flags (type
, expr
, complain
,
9286 /* Convert EXPR to TYPE (as a direct-initialization) if that is
9287 permitted. If the conversion is valid, the converted expression is
9288 returned. Otherwise, NULL_TREE is returned, except in the case
9289 that TYPE is a class type; in that case, an error is issued. If
9290 C_CAST_P is true, then this direct-initialization is taking
9291 place as part of a static_cast being attempted as part of a C-style
9295 perform_direct_initialization_if_possible (tree type
,
9298 tsubst_flags_t complain
)
9303 if (type
== error_mark_node
|| error_operand_p (expr
))
9304 return error_mark_node
;
9307 If the destination type is a (possibly cv-qualified) class type:
9309 -- If the initialization is direct-initialization ...,
9310 constructors are considered. ... If no constructor applies, or
9311 the overload resolution is ambiguous, the initialization is
9313 if (CLASS_TYPE_P (type
))
9315 vec
<tree
, va_gc
> *args
= make_tree_vector_single (expr
);
9316 expr
= build_special_member_call (NULL_TREE
, complete_ctor_identifier
,
9317 &args
, type
, LOOKUP_NORMAL
, complain
);
9318 release_tree_vector (args
);
9319 return build_cplus_new (type
, expr
, complain
);
9322 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9323 p
= conversion_obstack_alloc (0);
9325 conv
= implicit_conversion (type
, TREE_TYPE (expr
), expr
,
9327 LOOKUP_NORMAL
, complain
);
9328 if (!conv
|| conv
->bad_p
)
9331 expr
= convert_like_real (conv
, expr
, NULL_TREE
, 0, 0,
9332 /*issue_conversion_warnings=*/false,
9336 /* Free all the conversions we allocated. */
9337 obstack_free (&conversion_obstack
, p
);
9342 /* When initializing a reference that lasts longer than a full-expression,
9343 this special rule applies:
9347 The temporary to which the reference is bound or the temporary
9348 that is the complete object to which the reference is bound
9349 persists for the lifetime of the reference.
9351 The temporaries created during the evaluation of the expression
9352 initializing the reference, except the temporary to which the
9353 reference is bound, are destroyed at the end of the
9354 full-expression in which they are created.
9356 In that case, we store the converted expression into a new
9357 VAR_DECL in a new scope.
9359 However, we want to be careful not to create temporaries when
9360 they are not required. For example, given:
9363 struct D : public B {};
9367 there is no need to copy the return value from "f"; we can just
9368 extend its lifetime. Similarly, given:
9371 struct T { operator S(); };
9375 we can extend the lifetime of the return value of the conversion
9378 The next several functions are involved in this lifetime extension. */
9380 /* DECL is a VAR_DECL or FIELD_DECL whose type is a REFERENCE_TYPE. The
9381 reference is being bound to a temporary. Create and return a new
9382 VAR_DECL with the indicated TYPE; this variable will store the value to
9383 which the reference is bound. */
9386 make_temporary_var_for_ref_to_temp (tree decl
, tree type
)
9390 /* Create the variable. */
9391 var
= create_temporary_var (type
);
9393 /* Register the variable. */
9395 && (TREE_STATIC (decl
) || DECL_THREAD_LOCAL_P (decl
)))
9397 /* Namespace-scope or local static; give it a mangled name. */
9398 /* FIXME share comdat with decl? */
9401 TREE_STATIC (var
) = TREE_STATIC (decl
);
9402 set_decl_tls_model (var
, DECL_TLS_MODEL (decl
));
9403 name
= mangle_ref_init_variable (decl
);
9404 DECL_NAME (var
) = name
;
9405 SET_DECL_ASSEMBLER_NAME (var
, name
);
9406 var
= pushdecl_top_level (var
);
9409 /* Create a new cleanup level if necessary. */
9410 maybe_push_cleanup_level (type
);
9415 /* EXPR is the initializer for a variable DECL of reference or
9416 std::initializer_list type. Create, push and return a new VAR_DECL
9417 for the initializer so that it will live as long as DECL. Any
9418 cleanup for the new variable is returned through CLEANUP, and the
9419 code to initialize the new variable is returned through INITP. */
9422 set_up_extended_ref_temp (tree decl
, tree expr
, vec
<tree
, va_gc
> **cleanups
,
9429 /* Create the temporary variable. */
9430 type
= TREE_TYPE (expr
);
9431 var
= make_temporary_var_for_ref_to_temp (decl
, type
);
9432 layout_decl (var
, 0);
9433 /* If the rvalue is the result of a function call it will be
9434 a TARGET_EXPR. If it is some other construct (such as a
9435 member access expression where the underlying object is
9436 itself the result of a function call), turn it into a
9437 TARGET_EXPR here. It is important that EXPR be a
9438 TARGET_EXPR below since otherwise the INIT_EXPR will
9439 attempt to make a bitwise copy of EXPR to initialize
9441 if (TREE_CODE (expr
) != TARGET_EXPR
)
9442 expr
= get_target_expr (expr
);
9444 if (TREE_CODE (decl
) == FIELD_DECL
9445 && extra_warnings
&& !TREE_NO_WARNING (decl
))
9447 warning (OPT_Wextra
, "a temporary bound to %qD only persists "
9448 "until the constructor exits", decl
);
9449 TREE_NO_WARNING (decl
) = true;
9452 /* Recursively extend temps in this initializer. */
9453 TARGET_EXPR_INITIAL (expr
)
9454 = extend_ref_init_temps (decl
, TARGET_EXPR_INITIAL (expr
), cleanups
);
9456 /* Any reference temp has a non-trivial initializer. */
9457 DECL_NONTRIVIALLY_INITIALIZED_P (var
) = true;
9459 /* If the initializer is constant, put it in DECL_INITIAL so we get
9460 static initialization and use in constant expressions. */
9461 init
= maybe_constant_init (expr
);
9462 if (TREE_CONSTANT (init
))
9464 if (literal_type_p (type
) && CP_TYPE_CONST_NON_VOLATILE_P (type
))
9466 /* 5.19 says that a constant expression can include an
9467 lvalue-rvalue conversion applied to "a glvalue of literal type
9468 that refers to a non-volatile temporary object initialized
9469 with a constant expression". Rather than try to communicate
9470 that this VAR_DECL is a temporary, just mark it constexpr.
9472 Currently this is only useful for initializer_list temporaries,
9473 since reference vars can't appear in constant expressions. */
9474 DECL_DECLARED_CONSTEXPR_P (var
) = true;
9475 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var
) = true;
9476 TREE_CONSTANT (var
) = true;
9478 DECL_INITIAL (var
) = init
;
9482 /* Create the INIT_EXPR that will initialize the temporary
9484 init
= build2 (INIT_EXPR
, type
, var
, expr
);
9485 if (at_function_scope_p ())
9487 add_decl_expr (var
);
9489 if (TREE_STATIC (var
))
9490 init
= add_stmt_to_compound (init
, register_dtor_fn (var
));
9493 tree cleanup
= cxx_maybe_build_cleanup (var
, tf_warning_or_error
);
9495 vec_safe_push (*cleanups
, cleanup
);
9498 /* We must be careful to destroy the temporary only
9499 after its initialization has taken place. If the
9500 initialization throws an exception, then the
9501 destructor should not be run. We cannot simply
9502 transform INIT into something like:
9504 (INIT, ({ CLEANUP_STMT; }))
9506 because emit_local_var always treats the
9507 initializer as a full-expression. Thus, the
9508 destructor would run too early; it would run at the
9509 end of initializing the reference variable, rather
9510 than at the end of the block enclosing the
9513 The solution is to pass back a cleanup expression
9514 which the caller is responsible for attaching to
9515 the statement tree. */
9519 rest_of_decl_compilation (var
, /*toplev=*/1, at_eof
);
9520 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
9522 if (DECL_THREAD_LOCAL_P (var
))
9523 tls_aggregates
= tree_cons (NULL_TREE
, var
,
9526 static_aggregates
= tree_cons (NULL_TREE
, var
,
9530 /* Check whether the dtor is callable. */
9531 cxx_maybe_build_cleanup (var
, tf_warning_or_error
);
9538 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
9539 initializing a variable of that TYPE. */
9542 initialize_reference (tree type
, tree expr
,
9543 int flags
, tsubst_flags_t complain
)
9547 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
9549 if (type
== error_mark_node
|| error_operand_p (expr
))
9550 return error_mark_node
;
9552 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9553 p
= conversion_obstack_alloc (0);
9555 conv
= reference_binding (type
, TREE_TYPE (expr
), expr
, /*c_cast_p=*/false,
9557 if (!conv
|| conv
->bad_p
)
9559 if (complain
& tf_error
)
9562 convert_like (conv
, expr
, complain
);
9563 else if (!CP_TYPE_CONST_P (TREE_TYPE (type
))
9564 && !TYPE_REF_IS_RVALUE (type
)
9565 && !real_lvalue_p (expr
))
9566 error_at (loc
, "invalid initialization of non-const reference of "
9567 "type %qT from an rvalue of type %qT",
9568 type
, TREE_TYPE (expr
));
9570 error_at (loc
, "invalid initialization of reference of type "
9571 "%qT from expression of type %qT", type
,
9574 return error_mark_node
;
9577 if (conv
->kind
== ck_ref_bind
)
9578 /* Perform the conversion. */
9579 expr
= convert_like (conv
, expr
, complain
);
9580 else if (conv
->kind
== ck_ambig
)
9581 /* We gave an error in build_user_type_conversion_1. */
9582 expr
= error_mark_node
;
9586 /* Free all the conversions we allocated. */
9587 obstack_free (&conversion_obstack
, p
);
9592 /* Subroutine of extend_ref_init_temps. Possibly extend one initializer,
9593 which is bound either to a reference or a std::initializer_list. */
9596 extend_ref_init_temps_1 (tree decl
, tree init
, vec
<tree
, va_gc
> **cleanups
)
9601 if (TREE_CODE (sub
) == COMPOUND_EXPR
)
9603 TREE_OPERAND (sub
, 1)
9604 = extend_ref_init_temps_1 (decl
, TREE_OPERAND (sub
, 1), cleanups
);
9607 if (TREE_CODE (sub
) != ADDR_EXPR
)
9609 /* Deal with binding to a subobject. */
9610 for (p
= &TREE_OPERAND (sub
, 0); TREE_CODE (*p
) == COMPONENT_REF
; )
9611 p
= &TREE_OPERAND (*p
, 0);
9612 if (TREE_CODE (*p
) == TARGET_EXPR
)
9614 tree subinit
= NULL_TREE
;
9615 *p
= set_up_extended_ref_temp (decl
, *p
, cleanups
, &subinit
);
9617 init
= build2 (COMPOUND_EXPR
, TREE_TYPE (init
), subinit
, init
);
9618 recompute_tree_invariant_for_addr_expr (sub
);
9623 /* INIT is part of the initializer for DECL. If there are any
9624 reference or initializer lists being initialized, extend their
9625 lifetime to match that of DECL. */
9628 extend_ref_init_temps (tree decl
, tree init
, vec
<tree
, va_gc
> **cleanups
)
9630 tree type
= TREE_TYPE (init
);
9631 if (processing_template_decl
)
9633 if (TREE_CODE (type
) == REFERENCE_TYPE
)
9634 init
= extend_ref_init_temps_1 (decl
, init
, cleanups
);
9635 else if (is_std_init_list (type
))
9637 /* The temporary array underlying a std::initializer_list
9638 is handled like a reference temporary. */
9640 if (TREE_CODE (ctor
) == TARGET_EXPR
)
9641 ctor
= TARGET_EXPR_INITIAL (ctor
);
9642 if (TREE_CODE (ctor
) == CONSTRUCTOR
)
9644 tree array
= CONSTRUCTOR_ELT (ctor
, 0)->value
;
9645 array
= extend_ref_init_temps_1 (decl
, array
, cleanups
);
9646 CONSTRUCTOR_ELT (ctor
, 0)->value
= array
;
9649 else if (TREE_CODE (init
) == CONSTRUCTOR
)
9653 vec
<constructor_elt
, va_gc
> *elts
= CONSTRUCTOR_ELTS (init
);
9654 FOR_EACH_VEC_SAFE_ELT (elts
, i
, p
)
9655 p
->value
= extend_ref_init_temps (decl
, p
->value
, cleanups
);
9661 /* Returns true iff an initializer for TYPE could contain temporaries that
9662 need to be extended because they are bound to references or
9663 std::initializer_list. */
9666 type_has_extended_temps (tree type
)
9668 type
= strip_array_types (type
);
9669 if (TREE_CODE (type
) == REFERENCE_TYPE
)
9671 if (CLASS_TYPE_P (type
))
9673 if (is_std_init_list (type
))
9675 for (tree f
= next_initializable_field (TYPE_FIELDS (type
));
9676 f
; f
= next_initializable_field (DECL_CHAIN (f
)))
9677 if (type_has_extended_temps (TREE_TYPE (f
)))
9683 /* Returns true iff TYPE is some variant of std::initializer_list. */
9686 is_std_init_list (tree type
)
9688 /* Look through typedefs. */
9691 if (cxx_dialect
== cxx98
)
9693 type
= TYPE_MAIN_VARIANT (type
);
9694 return (CLASS_TYPE_P (type
)
9695 && CP_TYPE_CONTEXT (type
) == std_node
9696 && CLASSTYPE_TEMPLATE_INFO (type
)
9697 && strcmp (TYPE_NAME_STRING (type
), "initializer_list") == 0);
9700 /* Returns true iff DECL is a list constructor: i.e. a constructor which
9701 will accept an argument list of a single std::initializer_list<T>. */
9704 is_list_ctor (tree decl
)
9706 tree args
= FUNCTION_FIRST_USER_PARMTYPE (decl
);
9709 if (!args
|| args
== void_list_node
)
9712 arg
= non_reference (TREE_VALUE (args
));
9713 if (!is_std_init_list (arg
))
9716 args
= TREE_CHAIN (args
);
9718 if (args
&& args
!= void_list_node
&& !TREE_PURPOSE (args
))
9719 /* There are more non-defaulted parms. */
9725 #include "gt-cp-call.h"