Merge from trunk.
[official-gcc.git] / gcc / cp / call.c
blob5ef78d5c62358103a51c82eb60082d24199996c9
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)
11 any later version.
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. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "tree.h"
30 #include "stor-layout.h"
31 #include "trans-mem.h"
32 #include "stringpool.h"
33 #include "cp-tree.h"
34 #include "flags.h"
35 #include "toplev.h"
36 #include "diagnostic-core.h"
37 #include "intl.h"
38 #include "target.h"
39 #include "convert.h"
40 #include "langhooks.h"
41 #include "c-family/c-objc.h"
42 #include "timevar.h"
43 #include "cgraph.h"
44 #include "wide-int.h"
46 /* The various kinds of conversion. */
48 typedef enum conversion_kind {
49 ck_identity,
50 ck_lvalue,
51 ck_qual,
52 ck_std,
53 ck_ptr,
54 ck_pmem,
55 ck_base,
56 ck_ref_bind,
57 ck_user,
58 ck_ambig,
59 ck_list,
60 ck_aggr,
61 ck_rvalue
62 } 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 {
68 cr_identity,
69 cr_exact,
70 cr_promotion,
71 cr_std,
72 cr_pbool,
73 cr_user,
74 cr_ellipsis,
75 cr_bad
76 } 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;
83 struct conversion {
84 /* The kind of conversion represented by this step. */
85 conversion_kind kind;
86 /* The rank of this conversion. */
87 conversion_rank rank;
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
97 conversion. */
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. */
110 tree type;
111 union {
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. */
118 conversion *next;
119 /* The expression at the beginning of the conversion chain. This
120 variant is used only if KIND is ck_identity or ck_ambig. */
121 tree expr;
122 /* The array of conversions for an initializer_list, so this
123 variant is used only when KIN D is ck_list. */
124 conversion **list;
125 } u;
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 \
135 : (NODE)->rank)
137 #define BAD_CONVERSION_RANK(NODE) \
138 ((NODE)->ellipsis_p ? cr_ellipsis \
139 : (NODE)->user_conv_p ? cr_user \
140 : (NODE)->rank)
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,
149 tsubst_flags_t);
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,
164 tree, tree, bool);
165 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int,
166 tsubst_flags_t);
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,
198 tsubst_flags_t);
199 static conversion *standard_conversion (tree, tree, tree, bool, int);
200 static conversion *reference_binding (tree, tree, tree, bool, int,
201 tsubst_flags_t);
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 **,
221 tsubst_flags_t);
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... */
228 bool
229 check_dtor_name (tree basetype, tree name)
231 /* Just accept something we've already complained about. */
232 if (name == error_mark_node)
233 return true;
235 if (TREE_CODE (name) == TYPE_DECL)
236 name = TREE_TYPE (name);
237 else if (TYPE_P (name))
238 /* OK */;
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)))
245 return true;
246 else
247 name = get_type_value (name);
249 else
251 /* In the case of:
253 template <class T> struct S { ~S(); };
254 int i;
255 i.~S();
257 NAME will be a class template. */
258 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
259 return false;
262 if (!name || name == error_mark_node)
263 return false;
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. */
270 tree
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
276 functions. */
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),
284 complain);
286 function = build_address (function);
288 else
289 function = decay_conversion (function, complain);
291 return function;
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. */
300 tree
301 build_call_n (tree function, int n, ...)
303 if (n == 0)
304 return build_call_a (function, 0, NULL);
305 else
307 tree *argarray = XALLOCAVEC (tree, n);
308 va_list ap;
309 int i;
311 va_start (ap, n);
312 for (i = 0; i < n; i++)
313 argarray[i] = va_arg (ap, tree);
314 va_end (ap);
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. */
322 void
323 set_flags_from_callee (tree call)
325 int nothrow;
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;
342 tree
343 build_call_a (tree function, int n, tree *argarray)
345 tree decl;
346 tree result_type;
347 tree fntype;
348 int i;
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
372 DECL_ARTIFICIAL. */
373 gcc_assert (DECL_ARTIFICIAL (decl)
374 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
375 "__", 2));
376 mark_used (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;
401 return function;
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
409 as a pointer.
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
425 member function.
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
433 that result. */
435 /* New overloading code. */
437 typedef struct z_candidate z_candidate;
439 typedef struct candidate_warning candidate_warning;
440 struct candidate_warning {
441 z_candidate *loser;
442 candidate_warning *next;
445 /* Information for providing diagnostics about why overloading failed. */
447 enum rejection_reason_code {
448 rr_none,
449 rr_arity,
450 rr_explicit_conversion,
451 rr_template_conversion,
452 rr_arg_conversion,
453 rr_bad_arg_conversion,
454 rr_template_unification,
455 rr_invalid_copy,
456 rr_constraint_failure
459 struct conversion_info {
460 /* The index of the argument, 0-based. */
461 int n_arg;
462 /* The actual argument or its type. */
463 tree from;
464 /* The type of the parameter. */
465 tree to_type;
468 struct rejection_reason {
469 enum rejection_reason_code code;
470 union {
471 /* Information about an arity mismatch. */
472 struct {
473 /* The expected number of arguments. */
474 int expected;
475 /* The actual number of arguments in the call. */
476 int actual;
477 /* Whether the call was a varargs call. */
478 bool call_varargs_p;
479 } arity;
480 /* Information about an argument conversion mismatch. */
481 struct conversion_info conversion;
482 /* Same, but for bad argument conversions. */
483 struct conversion_info bad_conversion;
484 /* Information about template unification failures. These are the
485 parameters passed to fn_type_unification. */
486 struct {
487 tree tmpl;
488 tree explicit_targs;
489 int num_targs;
490 const tree *args;
491 unsigned int nargs;
492 tree return_type;
493 unification_kind_t strict;
494 int flags;
495 } template_unification;
496 /* Information about template instantiation failures. These are the
497 parameters passed to instantiate_template. */
498 struct {
499 tree tmpl;
500 tree targs;
501 } template_instantiation;
502 } u;
505 struct z_candidate {
506 /* The FUNCTION_DECL that will be called if this candidate is
507 selected by overload resolution. */
508 tree fn;
509 /* If not NULL_TREE, the first argument to use when calling this
510 function. */
511 tree first_arg;
512 /* The rest of the arguments to use when calling this function. If
513 there are no further arguments this may be NULL or it may be an
514 empty vector. */
515 const vec<tree, va_gc> *args;
516 /* The implicit conversion sequences for each of the arguments to
517 FN. */
518 conversion **convs;
519 /* The number of implicit conversion sequences. */
520 size_t num_convs;
521 /* If FN is a user-defined conversion, the standard conversion
522 sequence from the type returned by FN to the desired destination
523 type. */
524 conversion *second_conv;
525 struct rejection_reason *reason;
526 /* If FN is a member function, the binfo indicating the path used to
527 qualify the name of FN at the call site. This path is used to
528 determine whether or not FN is accessible if it is selected by
529 overload resolution. The DECL_CONTEXT of FN will always be a
530 (possibly improper) base of this binfo. */
531 tree access_path;
532 /* If FN is a non-static member function, the binfo indicating the
533 subobject to which the `this' pointer should be converted if FN
534 is selected by overload resolution. The type pointed to by
535 the `this' pointer must correspond to the most derived class
536 indicated by the CONVERSION_PATH. */
537 tree conversion_path;
538 tree template_decl;
539 tree explicit_targs;
540 candidate_warning *warnings;
541 z_candidate *next;
542 int viable;
544 /* The flags active in add_candidate. */
545 int flags;
548 /* Returns true iff T is a null pointer constant in the sense of
549 [conv.ptr]. */
551 bool
552 null_ptr_cst_p (tree t)
554 /* [conv.ptr]
556 A null pointer constant is an integral constant expression
557 (_expr.const_) rvalue of integer type that evaluates to zero or
558 an rvalue of type std::nullptr_t. */
559 if (NULLPTR_TYPE_P (TREE_TYPE (t)))
560 return true;
561 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)))
563 /* Core issue 903 says only literal 0 is a null pointer constant. */
564 if (cxx_dialect < cxx11)
565 t = maybe_constant_value (fold_non_dependent_expr_sfinae (t, tf_none));
566 STRIP_NOPS (t);
567 if (integer_zerop (t) && !TREE_OVERFLOW (t))
568 return true;
570 return false;
573 /* Returns true iff T is a null member pointer value (4.11). */
575 bool
576 null_member_pointer_value_p (tree t)
578 tree type = TREE_TYPE (t);
579 if (!type)
580 return false;
581 else if (TYPE_PTRMEMFUNC_P (type))
582 return (TREE_CODE (t) == CONSTRUCTOR
583 && integer_zerop (CONSTRUCTOR_ELT (t, 0)->value));
584 else if (TYPE_PTRDATAMEM_P (type))
585 return integer_all_onesp (t);
586 else
587 return false;
590 /* Returns nonzero if PARMLIST consists of only default parms,
591 ellipsis, and/or undeduced parameter packs. */
593 bool
594 sufficient_parms_p (const_tree parmlist)
596 for (; parmlist && parmlist != void_list_node;
597 parmlist = TREE_CHAIN (parmlist))
598 if (!TREE_PURPOSE (parmlist)
599 && !PACK_EXPANSION_P (TREE_VALUE (parmlist)))
600 return false;
601 return true;
604 /* Allocate N bytes of memory from the conversion obstack. The memory
605 is zeroed before being returned. */
607 static void *
608 conversion_obstack_alloc (size_t n)
610 void *p;
611 if (!conversion_obstack_initialized)
613 gcc_obstack_init (&conversion_obstack);
614 conversion_obstack_initialized = true;
616 p = obstack_alloc (&conversion_obstack, n);
617 memset (p, 0, n);
618 return p;
621 /* Allocate rejection reasons. */
623 static struct rejection_reason *
624 alloc_rejection (enum rejection_reason_code code)
626 struct rejection_reason *p;
627 p = (struct rejection_reason *) conversion_obstack_alloc (sizeof *p);
628 p->code = code;
629 return p;
632 static struct rejection_reason *
633 arity_rejection (tree first_arg, int expected, int actual)
635 struct rejection_reason *r = alloc_rejection (rr_arity);
636 int adjust = first_arg != NULL_TREE;
637 r->u.arity.expected = expected - adjust;
638 r->u.arity.actual = actual - adjust;
639 return r;
642 static struct rejection_reason *
643 arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
645 struct rejection_reason *r = alloc_rejection (rr_arg_conversion);
646 int adjust = first_arg != NULL_TREE;
647 r->u.conversion.n_arg = n_arg - adjust;
648 r->u.conversion.from = from;
649 r->u.conversion.to_type = to;
650 return r;
653 static struct rejection_reason *
654 bad_arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
656 struct rejection_reason *r = alloc_rejection (rr_bad_arg_conversion);
657 int adjust = first_arg != NULL_TREE;
658 r->u.bad_conversion.n_arg = n_arg - adjust;
659 r->u.bad_conversion.from = from;
660 r->u.bad_conversion.to_type = to;
661 return r;
664 static struct rejection_reason *
665 explicit_conversion_rejection (tree from, tree to)
667 struct rejection_reason *r = alloc_rejection (rr_explicit_conversion);
668 r->u.conversion.n_arg = 0;
669 r->u.conversion.from = from;
670 r->u.conversion.to_type = to;
671 return r;
674 static struct rejection_reason *
675 template_conversion_rejection (tree from, tree to)
677 struct rejection_reason *r = alloc_rejection (rr_template_conversion);
678 r->u.conversion.n_arg = 0;
679 r->u.conversion.from = from;
680 r->u.conversion.to_type = to;
681 return r;
684 static struct rejection_reason *
685 template_unification_rejection (tree tmpl, tree explicit_targs, tree targs,
686 const tree *args, unsigned int nargs,
687 tree return_type, unification_kind_t strict,
688 int flags)
690 size_t args_n_bytes = sizeof (*args) * nargs;
691 tree *args1 = (tree *) conversion_obstack_alloc (args_n_bytes);
692 struct rejection_reason *r = alloc_rejection (rr_template_unification);
693 r->u.template_unification.tmpl = tmpl;
694 r->u.template_unification.explicit_targs = explicit_targs;
695 r->u.template_unification.num_targs = TREE_VEC_LENGTH (targs);
696 /* Copy args to our own storage. */
697 memcpy (args1, args, args_n_bytes);
698 r->u.template_unification.args = args1;
699 r->u.template_unification.nargs = nargs;
700 r->u.template_unification.return_type = return_type;
701 r->u.template_unification.strict = strict;
702 r->u.template_unification.flags = flags;
703 return r;
706 static struct rejection_reason *
707 template_unification_error_rejection (void)
709 return alloc_rejection (rr_template_unification);
712 static struct rejection_reason *
713 invalid_copy_with_fn_template_rejection (void)
715 struct rejection_reason *r = alloc_rejection (rr_invalid_copy);
716 return r;
719 static struct rejection_reason *
720 template_constraint_failure (tree tmpl, tree targs)
722 struct rejection_reason *r = alloc_rejection (rr_constraint_failure);
723 r->u.template_instantiation.tmpl = tmpl;
724 r->u.template_instantiation.targs = targs;
725 return r;
728 /* Dynamically allocate a conversion. */
730 static conversion *
731 alloc_conversion (conversion_kind kind)
733 conversion *c;
734 c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
735 c->kind = kind;
736 return c;
739 #ifdef ENABLE_CHECKING
741 /* Make sure that all memory on the conversion obstack has been
742 freed. */
744 void
745 validate_conversion_obstack (void)
747 if (conversion_obstack_initialized)
748 gcc_assert ((obstack_next_free (&conversion_obstack)
749 == obstack_base (&conversion_obstack)));
752 #endif /* ENABLE_CHECKING */
754 /* Dynamically allocate an array of N conversions. */
756 static conversion **
757 alloc_conversions (size_t n)
759 return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
762 static conversion *
763 build_conv (conversion_kind code, tree type, conversion *from)
765 conversion *t;
766 conversion_rank rank = CONVERSION_RANK (from);
768 /* Note that the caller is responsible for filling in t->cand for
769 user-defined conversions. */
770 t = alloc_conversion (code);
771 t->type = type;
772 t->u.next = from;
774 switch (code)
776 case ck_ptr:
777 case ck_pmem:
778 case ck_base:
779 case ck_std:
780 if (rank < cr_std)
781 rank = cr_std;
782 break;
784 case ck_qual:
785 if (rank < cr_exact)
786 rank = cr_exact;
787 break;
789 default:
790 break;
792 t->rank = rank;
793 t->user_conv_p = (code == ck_user || from->user_conv_p);
794 t->bad_p = from->bad_p;
795 t->base_p = false;
796 return t;
799 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
800 specialization of std::initializer_list<T>, if such a conversion is
801 possible. */
803 static conversion *
804 build_list_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
806 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type), 0);
807 unsigned len = CONSTRUCTOR_NELTS (ctor);
808 conversion **subconvs = alloc_conversions (len);
809 conversion *t;
810 unsigned i;
811 tree val;
813 /* Within a list-initialization we can have more user-defined
814 conversions. */
815 flags &= ~LOOKUP_NO_CONVERSION;
816 /* But no narrowing conversions. */
817 flags |= LOOKUP_NO_NARROWING;
819 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
821 conversion *sub
822 = implicit_conversion (elttype, TREE_TYPE (val), val,
823 false, flags, complain);
824 if (sub == NULL)
825 return NULL;
827 subconvs[i] = sub;
830 t = alloc_conversion (ck_list);
831 t->type = type;
832 t->u.list = subconvs;
833 t->rank = cr_exact;
835 for (i = 0; i < len; ++i)
837 conversion *sub = subconvs[i];
838 if (sub->rank > t->rank)
839 t->rank = sub->rank;
840 if (sub->user_conv_p)
841 t->user_conv_p = true;
842 if (sub->bad_p)
843 t->bad_p = true;
846 return t;
849 /* Return the next conversion of the conversion chain (if applicable),
850 or NULL otherwise. Please use this function instead of directly
851 accessing fields of struct conversion. */
853 static conversion *
854 next_conversion (conversion *conv)
856 if (conv == NULL
857 || conv->kind == ck_identity
858 || conv->kind == ck_ambig
859 || conv->kind == ck_list)
860 return NULL;
861 return conv->u.next;
864 /* Subroutine of build_aggr_conv: check whether CTOR, a braced-init-list,
865 is a valid aggregate initializer for array type ATYPE. */
867 static bool
868 can_convert_array (tree atype, tree ctor, int flags, tsubst_flags_t complain)
870 unsigned i;
871 tree elttype = TREE_TYPE (atype);
872 for (i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
874 tree val = CONSTRUCTOR_ELT (ctor, i)->value;
875 bool ok;
876 if (TREE_CODE (elttype) == ARRAY_TYPE
877 && TREE_CODE (val) == CONSTRUCTOR)
878 ok = can_convert_array (elttype, val, flags, complain);
879 else
880 ok = can_convert_arg (elttype, TREE_TYPE (val), val, flags,
881 complain);
882 if (!ok)
883 return false;
885 return true;
888 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
889 aggregate class, if such a conversion is possible. */
891 static conversion *
892 build_aggr_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
894 unsigned HOST_WIDE_INT i = 0;
895 conversion *c;
896 tree field = next_initializable_field (TYPE_FIELDS (type));
897 tree empty_ctor = NULL_TREE;
899 ctor = reshape_init (type, ctor, tf_none);
900 if (ctor == error_mark_node)
901 return NULL;
903 /* The conversions within the init-list aren't affected by the enclosing
904 context; they're always simple copy-initialization. */
905 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
907 for (; field; field = next_initializable_field (DECL_CHAIN (field)))
909 tree ftype = TREE_TYPE (field);
910 tree val;
911 bool ok;
913 if (i < CONSTRUCTOR_NELTS (ctor))
914 val = CONSTRUCTOR_ELT (ctor, i)->value;
915 else if (TREE_CODE (ftype) == REFERENCE_TYPE)
916 /* Value-initialization of reference is ill-formed. */
917 return NULL;
918 else
920 if (empty_ctor == NULL_TREE)
921 empty_ctor = build_constructor (init_list_type_node, NULL);
922 val = empty_ctor;
924 ++i;
926 if (TREE_CODE (ftype) == ARRAY_TYPE
927 && TREE_CODE (val) == CONSTRUCTOR)
928 ok = can_convert_array (ftype, val, flags, complain);
929 else
930 ok = can_convert_arg (ftype, TREE_TYPE (val), val, flags,
931 complain);
933 if (!ok)
934 return NULL;
936 if (TREE_CODE (type) == UNION_TYPE)
937 break;
940 if (i < CONSTRUCTOR_NELTS (ctor))
941 return NULL;
943 c = alloc_conversion (ck_aggr);
944 c->type = type;
945 c->rank = cr_exact;
946 c->user_conv_p = true;
947 c->check_narrowing = true;
948 c->u.next = NULL;
949 return c;
952 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
953 array type, if such a conversion is possible. */
955 static conversion *
956 build_array_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
958 conversion *c;
959 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
960 tree elttype = TREE_TYPE (type);
961 unsigned i;
962 tree val;
963 bool bad = false;
964 bool user = false;
965 enum conversion_rank rank = cr_exact;
967 /* We might need to propagate the size from the element to the array. */
968 complete_type (type);
970 if (TYPE_DOMAIN (type)
971 && !variably_modified_type_p (TYPE_DOMAIN (type), NULL_TREE))
973 unsigned HOST_WIDE_INT alen = tree_to_uhwi (array_type_nelts_top (type));
974 if (alen < len)
975 return NULL;
978 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
980 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
982 conversion *sub
983 = implicit_conversion (elttype, TREE_TYPE (val), val,
984 false, flags, complain);
985 if (sub == NULL)
986 return NULL;
988 if (sub->rank > rank)
989 rank = sub->rank;
990 if (sub->user_conv_p)
991 user = true;
992 if (sub->bad_p)
993 bad = true;
996 c = alloc_conversion (ck_aggr);
997 c->type = type;
998 c->rank = rank;
999 c->user_conv_p = user;
1000 c->bad_p = bad;
1001 c->u.next = NULL;
1002 return c;
1005 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
1006 complex type, if such a conversion is possible. */
1008 static conversion *
1009 build_complex_conv (tree type, tree ctor, int flags,
1010 tsubst_flags_t complain)
1012 conversion *c;
1013 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
1014 tree elttype = TREE_TYPE (type);
1015 unsigned i;
1016 tree val;
1017 bool bad = false;
1018 bool user = false;
1019 enum conversion_rank rank = cr_exact;
1021 if (len != 2)
1022 return NULL;
1024 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
1026 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
1028 conversion *sub
1029 = implicit_conversion (elttype, TREE_TYPE (val), val,
1030 false, flags, complain);
1031 if (sub == NULL)
1032 return NULL;
1034 if (sub->rank > rank)
1035 rank = sub->rank;
1036 if (sub->user_conv_p)
1037 user = true;
1038 if (sub->bad_p)
1039 bad = true;
1042 c = alloc_conversion (ck_aggr);
1043 c->type = type;
1044 c->rank = rank;
1045 c->user_conv_p = user;
1046 c->bad_p = bad;
1047 c->u.next = NULL;
1048 return c;
1051 /* Build a representation of the identity conversion from EXPR to
1052 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
1054 static conversion *
1055 build_identity_conv (tree type, tree expr)
1057 conversion *c;
1059 c = alloc_conversion (ck_identity);
1060 c->type = type;
1061 c->u.expr = expr;
1063 return c;
1066 /* Converting from EXPR to TYPE was ambiguous in the sense that there
1067 were multiple user-defined conversions to accomplish the job.
1068 Build a conversion that indicates that ambiguity. */
1070 static conversion *
1071 build_ambiguous_conv (tree type, tree expr)
1073 conversion *c;
1075 c = alloc_conversion (ck_ambig);
1076 c->type = type;
1077 c->u.expr = expr;
1079 return c;
1082 tree
1083 strip_top_quals (tree t)
1085 if (TREE_CODE (t) == ARRAY_TYPE)
1086 return t;
1087 return cp_build_qualified_type (t, 0);
1090 /* Returns the standard conversion path (see [conv]) from type FROM to type
1091 TO, if any. For proper handling of null pointer constants, you must
1092 also pass the expression EXPR to convert from. If C_CAST_P is true,
1093 this conversion is coming from a C-style cast. */
1095 static conversion *
1096 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
1097 int flags)
1099 enum tree_code fcode, tcode;
1100 conversion *conv;
1101 bool fromref = false;
1102 tree qualified_to;
1104 to = non_reference (to);
1105 if (TREE_CODE (from) == REFERENCE_TYPE)
1107 fromref = true;
1108 from = TREE_TYPE (from);
1110 qualified_to = to;
1111 to = strip_top_quals (to);
1112 from = strip_top_quals (from);
1114 if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
1115 && expr && type_unknown_p (expr))
1117 tsubst_flags_t tflags = tf_conv;
1118 expr = instantiate_type (to, expr, tflags);
1119 if (expr == error_mark_node)
1120 return NULL;
1121 from = TREE_TYPE (expr);
1124 fcode = TREE_CODE (from);
1125 tcode = TREE_CODE (to);
1127 conv = build_identity_conv (from, expr);
1128 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
1130 from = type_decays_to (from);
1131 fcode = TREE_CODE (from);
1132 conv = build_conv (ck_lvalue, from, conv);
1134 else if (fromref || (expr && lvalue_p (expr)))
1136 if (expr)
1138 tree bitfield_type;
1139 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
1140 if (bitfield_type)
1142 from = strip_top_quals (bitfield_type);
1143 fcode = TREE_CODE (from);
1146 conv = build_conv (ck_rvalue, from, conv);
1147 if (flags & LOOKUP_PREFER_RVALUE)
1148 conv->rvaluedness_matches_p = true;
1151 /* Allow conversion between `__complex__' data types. */
1152 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
1154 /* The standard conversion sequence to convert FROM to TO is
1155 the standard conversion sequence to perform componentwise
1156 conversion. */
1157 conversion *part_conv = standard_conversion
1158 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
1160 if (part_conv)
1162 conv = build_conv (part_conv->kind, to, conv);
1163 conv->rank = part_conv->rank;
1165 else
1166 conv = NULL;
1168 return conv;
1171 if (same_type_p (from, to))
1173 if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue)
1174 conv->type = qualified_to;
1175 return conv;
1178 /* [conv.ptr]
1179 A null pointer constant can be converted to a pointer type; ... A
1180 null pointer constant of integral type can be converted to an
1181 rvalue of type std::nullptr_t. */
1182 if ((tcode == POINTER_TYPE || TYPE_PTRMEM_P (to)
1183 || NULLPTR_TYPE_P (to))
1184 && expr && null_ptr_cst_p (expr))
1185 conv = build_conv (ck_std, to, conv);
1186 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
1187 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
1189 /* For backwards brain damage compatibility, allow interconversion of
1190 pointers and integers with a pedwarn. */
1191 conv = build_conv (ck_std, to, conv);
1192 conv->bad_p = true;
1194 else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
1196 /* For backwards brain damage compatibility, allow interconversion of
1197 enums and integers with a pedwarn. */
1198 conv = build_conv (ck_std, to, conv);
1199 conv->bad_p = true;
1201 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
1202 || (TYPE_PTRDATAMEM_P (to) && TYPE_PTRDATAMEM_P (from)))
1204 tree to_pointee;
1205 tree from_pointee;
1207 if (tcode == POINTER_TYPE
1208 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
1209 TREE_TYPE (to)))
1211 else if (VOID_TYPE_P (TREE_TYPE (to))
1212 && !TYPE_PTRDATAMEM_P (from)
1213 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
1215 tree nfrom = TREE_TYPE (from);
1216 /* Don't try to apply restrict to void. */
1217 int quals = cp_type_quals (nfrom) & ~TYPE_QUAL_RESTRICT;
1218 from = build_pointer_type
1219 (cp_build_qualified_type (void_type_node, quals));
1220 conv = build_conv (ck_ptr, from, conv);
1222 else if (TYPE_PTRDATAMEM_P (from))
1224 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
1225 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
1227 if (DERIVED_FROM_P (fbase, tbase)
1228 && (same_type_ignoring_top_level_qualifiers_p
1229 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
1230 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
1232 from = build_ptrmem_type (tbase,
1233 TYPE_PTRMEM_POINTED_TO_TYPE (from));
1234 conv = build_conv (ck_pmem, from, conv);
1236 else if (!same_type_p (fbase, tbase))
1237 return NULL;
1239 else if (CLASS_TYPE_P (TREE_TYPE (from))
1240 && CLASS_TYPE_P (TREE_TYPE (to))
1241 /* [conv.ptr]
1243 An rvalue of type "pointer to cv D," where D is a
1244 class type, can be converted to an rvalue of type
1245 "pointer to cv B," where B is a base class (clause
1246 _class.derived_) of D. If B is an inaccessible
1247 (clause _class.access_) or ambiguous
1248 (_class.member.lookup_) base class of D, a program
1249 that necessitates this conversion is ill-formed.
1250 Therefore, we use DERIVED_FROM_P, and do not check
1251 access or uniqueness. */
1252 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
1254 from =
1255 cp_build_qualified_type (TREE_TYPE (to),
1256 cp_type_quals (TREE_TYPE (from)));
1257 from = build_pointer_type (from);
1258 conv = build_conv (ck_ptr, from, conv);
1259 conv->base_p = true;
1262 if (tcode == POINTER_TYPE)
1264 to_pointee = TREE_TYPE (to);
1265 from_pointee = TREE_TYPE (from);
1267 else
1269 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
1270 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
1273 if (same_type_p (from, to))
1274 /* OK */;
1275 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
1276 /* In a C-style cast, we ignore CV-qualification because we
1277 are allowed to perform a static_cast followed by a
1278 const_cast. */
1279 conv = build_conv (ck_qual, to, conv);
1280 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
1281 conv = build_conv (ck_qual, to, conv);
1282 else if (expr && string_conv_p (to, expr, 0))
1283 /* converting from string constant to char *. */
1284 conv = build_conv (ck_qual, to, conv);
1285 /* Allow conversions among compatible ObjC pointer types (base
1286 conversions have been already handled above). */
1287 else if (c_dialect_objc ()
1288 && objc_compare_types (to, from, -4, NULL_TREE))
1289 conv = build_conv (ck_ptr, to, conv);
1290 else if (ptr_reasonably_similar (to_pointee, from_pointee))
1292 conv = build_conv (ck_ptr, to, conv);
1293 conv->bad_p = true;
1295 else
1296 return NULL;
1298 from = to;
1300 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
1302 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
1303 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
1304 tree fbase = class_of_this_parm (fromfn);
1305 tree tbase = class_of_this_parm (tofn);
1307 if (!DERIVED_FROM_P (fbase, tbase)
1308 || !same_type_p (static_fn_type (fromfn),
1309 static_fn_type (tofn)))
1310 return NULL;
1312 from = build_memfn_type (fromfn,
1313 tbase,
1314 cp_type_quals (tbase),
1315 type_memfn_rqual (tofn));
1316 from = build_ptrmemfunc_type (build_pointer_type (from));
1317 conv = build_conv (ck_pmem, from, conv);
1318 conv->base_p = true;
1320 else if (tcode == BOOLEAN_TYPE)
1322 /* [conv.bool]
1324 A prvalue of arithmetic, unscoped enumeration, pointer, or pointer
1325 to member type can be converted to a prvalue of type bool. ...
1326 For direct-initialization (8.5 [dcl.init]), a prvalue of type
1327 std::nullptr_t can be converted to a prvalue of type bool; */
1328 if (ARITHMETIC_TYPE_P (from)
1329 || UNSCOPED_ENUM_P (from)
1330 || fcode == POINTER_TYPE
1331 || TYPE_PTRMEM_P (from)
1332 || NULLPTR_TYPE_P (from))
1334 conv = build_conv (ck_std, to, conv);
1335 if (fcode == POINTER_TYPE
1336 || TYPE_PTRDATAMEM_P (from)
1337 || (TYPE_PTRMEMFUNC_P (from)
1338 && conv->rank < cr_pbool)
1339 || NULLPTR_TYPE_P (from))
1340 conv->rank = cr_pbool;
1341 if (NULLPTR_TYPE_P (from) && (flags & LOOKUP_ONLYCONVERTING))
1342 conv->bad_p = true;
1343 return conv;
1346 return NULL;
1348 /* We don't check for ENUMERAL_TYPE here because there are no standard
1349 conversions to enum type. */
1350 /* As an extension, allow conversion to complex type. */
1351 else if (ARITHMETIC_TYPE_P (to))
1353 if (! (INTEGRAL_CODE_P (fcode)
1354 || (fcode == REAL_TYPE && !(flags & LOOKUP_NO_NON_INTEGRAL)))
1355 || SCOPED_ENUM_P (from))
1356 return NULL;
1357 conv = build_conv (ck_std, to, conv);
1359 /* Give this a better rank if it's a promotion. */
1360 if (same_type_p (to, type_promotes_to (from))
1361 && next_conversion (conv)->rank <= cr_promotion)
1362 conv->rank = cr_promotion;
1364 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
1365 && vector_types_convertible_p (from, to, false))
1366 return build_conv (ck_std, to, conv);
1367 else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
1368 && is_properly_derived_from (from, to))
1370 if (conv->kind == ck_rvalue)
1371 conv = next_conversion (conv);
1372 conv = build_conv (ck_base, to, conv);
1373 /* The derived-to-base conversion indicates the initialization
1374 of a parameter with base type from an object of a derived
1375 type. A temporary object is created to hold the result of
1376 the conversion unless we're binding directly to a reference. */
1377 conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
1379 else
1380 return NULL;
1382 if (flags & LOOKUP_NO_NARROWING)
1383 conv->check_narrowing = true;
1385 return conv;
1388 /* Returns nonzero if T1 is reference-related to T2. */
1390 bool
1391 reference_related_p (tree t1, tree t2)
1393 if (t1 == error_mark_node || t2 == error_mark_node)
1394 return false;
1396 t1 = TYPE_MAIN_VARIANT (t1);
1397 t2 = TYPE_MAIN_VARIANT (t2);
1399 /* [dcl.init.ref]
1401 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1402 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
1403 of T2. */
1404 return (same_type_p (t1, t2)
1405 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
1406 && DERIVED_FROM_P (t1, t2)));
1409 /* Returns nonzero if T1 is reference-compatible with T2. */
1411 static bool
1412 reference_compatible_p (tree t1, tree t2)
1414 /* [dcl.init.ref]
1416 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
1417 reference-related to T2 and cv1 is the same cv-qualification as,
1418 or greater cv-qualification than, cv2. */
1419 return (reference_related_p (t1, t2)
1420 && at_least_as_qualified_p (t1, t2));
1423 /* A reference of the indicated TYPE is being bound directly to the
1424 expression represented by the implicit conversion sequence CONV.
1425 Return a conversion sequence for this binding. */
1427 static conversion *
1428 direct_reference_binding (tree type, conversion *conv)
1430 tree t;
1432 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
1433 gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
1435 t = TREE_TYPE (type);
1437 /* [over.ics.rank]
1439 When a parameter of reference type binds directly
1440 (_dcl.init.ref_) to an argument expression, the implicit
1441 conversion sequence is the identity conversion, unless the
1442 argument expression has a type that is a derived class of the
1443 parameter type, in which case the implicit conversion sequence is
1444 a derived-to-base Conversion.
1446 If the parameter binds directly to the result of applying a
1447 conversion function to the argument expression, the implicit
1448 conversion sequence is a user-defined conversion sequence
1449 (_over.ics.user_), with the second standard conversion sequence
1450 either an identity conversion or, if the conversion function
1451 returns an entity of a type that is a derived class of the
1452 parameter type, a derived-to-base conversion. */
1453 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
1455 /* Represent the derived-to-base conversion. */
1456 conv = build_conv (ck_base, t, conv);
1457 /* We will actually be binding to the base-class subobject in
1458 the derived class, so we mark this conversion appropriately.
1459 That way, convert_like knows not to generate a temporary. */
1460 conv->need_temporary_p = false;
1462 return build_conv (ck_ref_bind, type, conv);
1465 /* Returns the conversion path from type FROM to reference type TO for
1466 purposes of reference binding. For lvalue binding, either pass a
1467 reference type to FROM or an lvalue expression to EXPR. If the
1468 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1469 the conversion returned. If C_CAST_P is true, this
1470 conversion is coming from a C-style cast. */
1472 static conversion *
1473 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags,
1474 tsubst_flags_t complain)
1476 conversion *conv = NULL;
1477 tree to = TREE_TYPE (rto);
1478 tree from = rfrom;
1479 tree tfrom;
1480 bool related_p;
1481 bool compatible_p;
1482 cp_lvalue_kind gl_kind;
1483 bool is_lvalue;
1485 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1487 expr = instantiate_type (to, expr, tf_none);
1488 if (expr == error_mark_node)
1489 return NULL;
1490 from = TREE_TYPE (expr);
1493 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1495 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
1496 /* DR 1288: Otherwise, if the initializer list has a single element
1497 of type E and ... [T's] referenced type is reference-related to E,
1498 the object or reference is initialized from that element... */
1499 if (CONSTRUCTOR_NELTS (expr) == 1)
1501 tree elt = CONSTRUCTOR_ELT (expr, 0)->value;
1502 if (error_operand_p (elt))
1503 return NULL;
1504 tree etype = TREE_TYPE (elt);
1505 if (reference_related_p (to, etype))
1507 expr = elt;
1508 from = etype;
1509 goto skip;
1512 /* Otherwise, if T is a reference type, a prvalue temporary of the
1513 type referenced by T is copy-list-initialized or
1514 direct-list-initialized, depending on the kind of initialization
1515 for the reference, and the reference is bound to that temporary. */
1516 conv = implicit_conversion (to, from, expr, c_cast_p,
1517 flags|LOOKUP_NO_TEMP_BIND, complain);
1518 skip:;
1521 if (TREE_CODE (from) == REFERENCE_TYPE)
1523 from = TREE_TYPE (from);
1524 if (!TYPE_REF_IS_RVALUE (rfrom)
1525 || TREE_CODE (from) == FUNCTION_TYPE)
1526 gl_kind = clk_ordinary;
1527 else
1528 gl_kind = clk_rvalueref;
1530 else if (expr)
1532 gl_kind = lvalue_kind (expr);
1533 if (gl_kind & clk_class)
1534 /* A class prvalue is not a glvalue. */
1535 gl_kind = clk_none;
1537 else
1538 gl_kind = clk_none;
1539 is_lvalue = gl_kind && !(gl_kind & clk_rvalueref);
1541 tfrom = from;
1542 if ((gl_kind & clk_bitfield) != 0)
1543 tfrom = unlowered_expr_type (expr);
1545 /* Figure out whether or not the types are reference-related and
1546 reference compatible. We have do do this after stripping
1547 references from FROM. */
1548 related_p = reference_related_p (to, tfrom);
1549 /* If this is a C cast, first convert to an appropriately qualified
1550 type, so that we can later do a const_cast to the desired type. */
1551 if (related_p && c_cast_p
1552 && !at_least_as_qualified_p (to, tfrom))
1553 to = cp_build_qualified_type (to, cp_type_quals (tfrom));
1554 compatible_p = reference_compatible_p (to, tfrom);
1556 /* Directly bind reference when target expression's type is compatible with
1557 the reference and expression is an lvalue. In DR391, the wording in
1558 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1559 const and rvalue references to rvalues of compatible class type.
1560 We should also do direct bindings for non-class xvalues. */
1561 if (related_p
1562 && (gl_kind
1563 || (!(flags & LOOKUP_NO_TEMP_BIND)
1564 && (CLASS_TYPE_P (from)
1565 || TREE_CODE (from) == ARRAY_TYPE))))
1567 /* [dcl.init.ref]
1569 If the initializer expression
1571 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1572 is reference-compatible with "cv2 T2,"
1574 the reference is bound directly to the initializer expression
1575 lvalue.
1577 [...]
1578 If the initializer expression is an rvalue, with T2 a class type,
1579 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1580 is bound to the object represented by the rvalue or to a sub-object
1581 within that object. */
1583 conv = build_identity_conv (tfrom, expr);
1584 conv = direct_reference_binding (rto, conv);
1586 if (flags & LOOKUP_PREFER_RVALUE)
1587 /* The top-level caller requested that we pretend that the lvalue
1588 be treated as an rvalue. */
1589 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1590 else if (TREE_CODE (rfrom) == REFERENCE_TYPE)
1591 /* Handle rvalue reference to function properly. */
1592 conv->rvaluedness_matches_p
1593 = (TYPE_REF_IS_RVALUE (rto) == TYPE_REF_IS_RVALUE (rfrom));
1594 else
1595 conv->rvaluedness_matches_p
1596 = (TYPE_REF_IS_RVALUE (rto) == !is_lvalue);
1598 if ((gl_kind & clk_bitfield) != 0
1599 || ((gl_kind & clk_packed) != 0 && !TYPE_PACKED (to)))
1600 /* For the purposes of overload resolution, we ignore the fact
1601 this expression is a bitfield or packed field. (In particular,
1602 [over.ics.ref] says specifically that a function with a
1603 non-const reference parameter is viable even if the
1604 argument is a bitfield.)
1606 However, when we actually call the function we must create
1607 a temporary to which to bind the reference. If the
1608 reference is volatile, or isn't const, then we cannot make
1609 a temporary, so we just issue an error when the conversion
1610 actually occurs. */
1611 conv->need_temporary_p = true;
1613 /* Don't allow binding of lvalues (other than function lvalues) to
1614 rvalue references. */
1615 if (is_lvalue && TYPE_REF_IS_RVALUE (rto)
1616 && TREE_CODE (to) != FUNCTION_TYPE
1617 && !(flags & LOOKUP_PREFER_RVALUE))
1618 conv->bad_p = true;
1620 /* Nor the reverse. */
1621 if (!is_lvalue && !TYPE_REF_IS_RVALUE (rto)
1622 && (!CP_TYPE_CONST_NON_VOLATILE_P (to)
1623 || (flags & LOOKUP_NO_RVAL_BIND))
1624 && TREE_CODE (to) != FUNCTION_TYPE)
1625 conv->bad_p = true;
1627 if (!compatible_p)
1628 conv->bad_p = true;
1630 return conv;
1632 /* [class.conv.fct] A conversion function is never used to convert a
1633 (possibly cv-qualified) object to the (possibly cv-qualified) same
1634 object type (or a reference to it), to a (possibly cv-qualified) base
1635 class of that type (or a reference to it).... */
1636 else if (CLASS_TYPE_P (from) && !related_p
1637 && !(flags & LOOKUP_NO_CONVERSION))
1639 /* [dcl.init.ref]
1641 If the initializer expression
1643 -- has a class type (i.e., T2 is a class type) can be
1644 implicitly converted to an lvalue of type "cv3 T3," where
1645 "cv1 T1" is reference-compatible with "cv3 T3". (this
1646 conversion is selected by enumerating the applicable
1647 conversion functions (_over.match.ref_) and choosing the
1648 best one through overload resolution. (_over.match_).
1650 the reference is bound to the lvalue result of the conversion
1651 in the second case. */
1652 z_candidate *cand = build_user_type_conversion_1 (rto, expr, flags,
1653 complain);
1654 if (cand)
1655 return cand->second_conv;
1658 /* From this point on, we conceptually need temporaries, even if we
1659 elide them. Only the cases above are "direct bindings". */
1660 if (flags & LOOKUP_NO_TEMP_BIND)
1661 return NULL;
1663 /* [over.ics.rank]
1665 When a parameter of reference type is not bound directly to an
1666 argument expression, the conversion sequence is the one required
1667 to convert the argument expression to the underlying type of the
1668 reference according to _over.best.ics_. Conceptually, this
1669 conversion sequence corresponds to copy-initializing a temporary
1670 of the underlying type with the argument expression. Any
1671 difference in top-level cv-qualification is subsumed by the
1672 initialization itself and does not constitute a conversion. */
1674 /* We're generating a temporary now, but don't bind any more in the
1675 conversion (specifically, don't slice the temporary returned by a
1676 conversion operator). */
1677 flags |= LOOKUP_NO_TEMP_BIND;
1679 /* Core issue 899: When [copy-]initializing a temporary to be bound
1680 to the first parameter of a copy constructor (12.8) called with
1681 a single argument in the context of direct-initialization,
1682 explicit conversion functions are also considered.
1684 So don't set LOOKUP_ONLYCONVERTING in that case. */
1685 if (!(flags & LOOKUP_COPY_PARM))
1686 flags |= LOOKUP_ONLYCONVERTING;
1688 if (!conv)
1689 conv = implicit_conversion (to, from, expr, c_cast_p,
1690 flags, complain);
1691 if (!conv)
1692 return NULL;
1694 if (conv->user_conv_p)
1696 /* If initializing the temporary used a conversion function,
1697 recalculate the second conversion sequence. */
1698 for (conversion *t = conv; t; t = next_conversion (t))
1699 if (t->kind == ck_user
1700 && DECL_CONV_FN_P (t->cand->fn))
1702 tree ftype = TREE_TYPE (TREE_TYPE (t->cand->fn));
1703 int sflags = (flags|LOOKUP_NO_CONVERSION)&~LOOKUP_NO_TEMP_BIND;
1704 conversion *new_second
1705 = reference_binding (rto, ftype, NULL_TREE, c_cast_p,
1706 sflags, complain);
1707 if (!new_second)
1708 return NULL;
1709 return merge_conversion_sequences (t, new_second);
1713 conv = build_conv (ck_ref_bind, rto, conv);
1714 /* This reference binding, unlike those above, requires the
1715 creation of a temporary. */
1716 conv->need_temporary_p = true;
1717 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1719 /* [dcl.init.ref]
1721 Otherwise, the reference shall be an lvalue reference to a
1722 non-volatile const type, or the reference shall be an rvalue
1723 reference. */
1724 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1725 conv->bad_p = true;
1727 /* [dcl.init.ref]
1729 Otherwise, a temporary of type "cv1 T1" is created and
1730 initialized from the initializer expression using the rules for a
1731 non-reference copy initialization. If T1 is reference-related to
1732 T2, cv1 must be the same cv-qualification as, or greater
1733 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1734 if (related_p && !at_least_as_qualified_p (to, from))
1735 conv->bad_p = true;
1737 return conv;
1740 /* Returns the implicit conversion sequence (see [over.ics]) from type
1741 FROM to type TO. The optional expression EXPR may affect the
1742 conversion. FLAGS are the usual overloading flags. If C_CAST_P is
1743 true, this conversion is coming from a C-style cast. */
1745 static conversion *
1746 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1747 int flags, tsubst_flags_t complain)
1749 conversion *conv;
1751 if (from == error_mark_node || to == error_mark_node
1752 || expr == error_mark_node)
1753 return NULL;
1755 /* Other flags only apply to the primary function in overload
1756 resolution, or after we've chosen one. */
1757 flags &= (LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION|LOOKUP_COPY_PARM
1758 |LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND|LOOKUP_PREFER_RVALUE
1759 |LOOKUP_NO_NARROWING|LOOKUP_PROTECT|LOOKUP_NO_NON_INTEGRAL);
1761 /* FIXME: actually we don't want warnings either, but we can't just
1762 have 'complain &= ~(tf_warning|tf_error)' because it would cause
1763 the regression of, eg, g++.old-deja/g++.benjamin/16077.C.
1764 We really ought not to issue that warning until we've committed
1765 to that conversion. */
1766 complain &= ~tf_error;
1768 if (TREE_CODE (to) == REFERENCE_TYPE)
1769 conv = reference_binding (to, from, expr, c_cast_p, flags, complain);
1770 else
1771 conv = standard_conversion (to, from, expr, c_cast_p, flags);
1773 if (conv)
1774 return conv;
1776 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1778 if (is_std_init_list (to))
1779 return build_list_conv (to, expr, flags, complain);
1781 /* As an extension, allow list-initialization of _Complex. */
1782 if (TREE_CODE (to) == COMPLEX_TYPE)
1784 conv = build_complex_conv (to, expr, flags, complain);
1785 if (conv)
1786 return conv;
1789 /* Allow conversion from an initializer-list with one element to a
1790 scalar type. */
1791 if (SCALAR_TYPE_P (to))
1793 int nelts = CONSTRUCTOR_NELTS (expr);
1794 tree elt;
1796 if (nelts == 0)
1797 elt = build_value_init (to, tf_none);
1798 else if (nelts == 1)
1799 elt = CONSTRUCTOR_ELT (expr, 0)->value;
1800 else
1801 elt = error_mark_node;
1803 conv = implicit_conversion (to, TREE_TYPE (elt), elt,
1804 c_cast_p, flags, complain);
1805 if (conv)
1807 conv->check_narrowing = true;
1808 if (BRACE_ENCLOSED_INITIALIZER_P (elt))
1809 /* Too many levels of braces, i.e. '{{1}}'. */
1810 conv->bad_p = true;
1811 return conv;
1814 else if (TREE_CODE (to) == ARRAY_TYPE)
1815 return build_array_conv (to, expr, flags, complain);
1818 if (expr != NULL_TREE
1819 && (MAYBE_CLASS_TYPE_P (from)
1820 || MAYBE_CLASS_TYPE_P (to))
1821 && (flags & LOOKUP_NO_CONVERSION) == 0)
1823 struct z_candidate *cand;
1825 if (CLASS_TYPE_P (to)
1826 && BRACE_ENCLOSED_INITIALIZER_P (expr)
1827 && !CLASSTYPE_NON_AGGREGATE (complete_type (to)))
1828 return build_aggr_conv (to, expr, flags, complain);
1830 cand = build_user_type_conversion_1 (to, expr, flags, complain);
1831 if (cand)
1832 conv = cand->second_conv;
1834 /* We used to try to bind a reference to a temporary here, but that
1835 is now handled after the recursive call to this function at the end
1836 of reference_binding. */
1837 return conv;
1840 return NULL;
1843 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1844 functions. ARGS will not be changed until a single candidate is
1845 selected. */
1847 static struct z_candidate *
1848 add_candidate (struct z_candidate **candidates,
1849 tree fn, tree first_arg, const vec<tree, va_gc> *args,
1850 size_t num_convs, conversion **convs,
1851 tree access_path, tree conversion_path,
1852 int viable, struct rejection_reason *reason,
1853 int flags)
1855 struct z_candidate *cand = (struct z_candidate *)
1856 conversion_obstack_alloc (sizeof (struct z_candidate));
1858 cand->fn = fn;
1859 cand->first_arg = first_arg;
1860 cand->args = args;
1861 cand->convs = convs;
1862 cand->num_convs = num_convs;
1863 cand->access_path = access_path;
1864 cand->conversion_path = conversion_path;
1865 cand->viable = viable;
1866 cand->reason = reason;
1867 cand->next = *candidates;
1868 cand->flags = flags;
1869 *candidates = cand;
1871 return cand;
1874 /* Return the number of remaining arguments in the parameter list
1875 beginning with ARG. */
1877 static int
1878 remaining_arguments (tree arg)
1880 int n;
1882 for (n = 0; arg != NULL_TREE && arg != void_list_node;
1883 arg = TREE_CHAIN (arg))
1884 n++;
1886 return n;
1889 // Returns true if FN is a non-template member function or non-template
1890 // friend function. Both kinds of declaration can be constrained.
1891 static inline bool
1892 is_constrainable_non_template_fn (tree fn)
1894 if (DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (fn))
1895 return true;
1897 return DECL_FUNCTION_MEMBER_P (fn) &&
1898 DECL_TEMPLATE_INFO (fn) &&
1899 !DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn));
1902 /* Create an overload candidate for the function or method FN called
1903 with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
1904 FLAGS is passed on to implicit_conversion.
1906 This does not change ARGS.
1908 CTYPE, if non-NULL, is the type we want to pretend this function
1909 comes from for purposes of overload resolution. */
1911 static struct z_candidate *
1912 add_function_candidate (struct z_candidate **candidates,
1913 tree fn, tree ctype, tree first_arg,
1914 const vec<tree, va_gc> *args, tree access_path,
1915 tree conversion_path, int flags,
1916 tsubst_flags_t complain)
1918 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1919 int i, len;
1920 conversion **convs;
1921 tree parmnode;
1922 tree orig_first_arg = first_arg;
1923 int skip;
1924 int viable = 1;
1925 struct rejection_reason *reason = NULL;
1927 /* At this point we should not see any functions which haven't been
1928 explicitly declared, except for friend functions which will have
1929 been found using argument dependent lookup. */
1930 gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
1932 /* The `this', `in_chrg' and VTT arguments to constructors are not
1933 considered in overload resolution. */
1934 if (DECL_CONSTRUCTOR_P (fn))
1936 parmlist = skip_artificial_parms_for (fn, parmlist);
1937 skip = num_artificial_parms_for (fn);
1938 if (skip > 0 && first_arg != NULL_TREE)
1940 --skip;
1941 first_arg = NULL_TREE;
1944 else
1945 skip = 0;
1947 len = vec_safe_length (args) - skip + (first_arg != NULL_TREE ? 1 : 0);
1948 convs = alloc_conversions (len);
1950 // Viable functions
1952 // Functions whose constraints are not satisfied are non-viable.
1954 // For function templates, constraints are checked as part of template
1955 // argument deduction. A failure there means that the template is
1956 // already added as a non-viable candidate. For non-template member
1957 // functions, however, the declaration declaration has already been
1958 // synthesized, but its constraints have not actually been checked.
1959 // We should do that now.
1961 // TODO: Consider checking constrained non-template members during
1962 // class template instantiation and setting a flag indicating whether
1963 // or not the declaration is viable. This could be set as a flag in
1964 // TEMPLATE_INFO (there should be a bunch of unused bits there).
1965 if (is_constrainable_non_template_fn (fn))
1967 tree tmpl = DECL_TI_TEMPLATE (fn);
1968 tree args = DECL_TI_ARGS (fn);
1969 if (!check_template_constraints (tmpl, args))
1971 reason = template_constraint_failure (tmpl, args);
1972 viable = false;
1973 goto out;
1977 /* 13.3.2 - Viable functions [over.match.viable]
1978 First, to be a viable function, a candidate function shall have enough
1979 parameters to agree in number with the arguments in the list.
1981 We need to check this first; otherwise, checking the ICSes might cause
1982 us to produce an ill-formed template instantiation. */
1984 parmnode = parmlist;
1985 for (i = 0; i < len; ++i)
1987 if (parmnode == NULL_TREE || parmnode == void_list_node)
1988 break;
1989 parmnode = TREE_CHAIN (parmnode);
1992 if ((i < len && parmnode)
1993 || !sufficient_parms_p (parmnode))
1995 int remaining = remaining_arguments (parmnode);
1996 viable = 0;
1997 reason = arity_rejection (first_arg, i + remaining, len);
1999 /* When looking for a function from a subobject from an implicit
2000 copy/move constructor/operator=, don't consider anything that takes (a
2001 reference to) an unrelated type. See c++/44909 and core 1092. */
2002 else if (parmlist && (flags & LOOKUP_DEFAULTED))
2004 if (DECL_CONSTRUCTOR_P (fn))
2005 i = 1;
2006 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
2007 && DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR)
2008 i = 2;
2009 else
2010 i = 0;
2011 if (i && len == i)
2013 parmnode = chain_index (i-1, parmlist);
2014 if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
2015 ctype))
2016 viable = 0;
2019 /* This only applies at the top level. */
2020 flags &= ~LOOKUP_DEFAULTED;
2023 if (! viable)
2024 goto out;
2026 /* Second, for F to be a viable function, there shall exist for each
2027 argument an implicit conversion sequence that converts that argument
2028 to the corresponding parameter of F. */
2030 parmnode = parmlist;
2032 for (i = 0; i < len; ++i)
2034 tree argtype, to_type;
2035 tree arg;
2036 conversion *t;
2037 int is_this;
2039 if (parmnode == void_list_node)
2040 break;
2042 if (i == 0 && first_arg != NULL_TREE)
2043 arg = first_arg;
2044 else
2045 arg = CONST_CAST_TREE (
2046 (*args)[i + skip - (first_arg != NULL_TREE ? 1 : 0)]);
2047 argtype = lvalue_type (arg);
2049 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2050 && ! DECL_CONSTRUCTOR_P (fn));
2052 if (parmnode)
2054 tree parmtype = TREE_VALUE (parmnode);
2055 int lflags = flags;
2057 parmnode = TREE_CHAIN (parmnode);
2059 /* The type of the implicit object parameter ('this') for
2060 overload resolution is not always the same as for the
2061 function itself; conversion functions are considered to
2062 be members of the class being converted, and functions
2063 introduced by a using-declaration are considered to be
2064 members of the class that uses them.
2066 Since build_over_call ignores the ICS for the `this'
2067 parameter, we can just change the parm type. */
2068 if (ctype && is_this)
2070 parmtype = cp_build_qualified_type
2071 (ctype, cp_type_quals (TREE_TYPE (parmtype)));
2072 if (FUNCTION_REF_QUALIFIED (TREE_TYPE (fn)))
2074 /* If the function has a ref-qualifier, the implicit
2075 object parameter has reference type. */
2076 bool rv = FUNCTION_RVALUE_QUALIFIED (TREE_TYPE (fn));
2077 parmtype = cp_build_reference_type (parmtype, rv);
2079 else
2081 parmtype = build_pointer_type (parmtype);
2082 arg = build_this (arg);
2083 argtype = lvalue_type (arg);
2087 /* Core issue 899: When [copy-]initializing a temporary to be bound
2088 to the first parameter of a copy constructor (12.8) called with
2089 a single argument in the context of direct-initialization,
2090 explicit conversion functions are also considered.
2092 So set LOOKUP_COPY_PARM to let reference_binding know that
2093 it's being called in that context. We generalize the above
2094 to handle move constructors and template constructors as well;
2095 the standardese should soon be updated similarly. */
2096 if (ctype && i == 0 && (len-skip == 1)
2097 && DECL_CONSTRUCTOR_P (fn)
2098 && parmtype != error_mark_node
2099 && (same_type_ignoring_top_level_qualifiers_p
2100 (non_reference (parmtype), ctype)))
2102 if (!(flags & LOOKUP_ONLYCONVERTING))
2103 lflags |= LOOKUP_COPY_PARM;
2104 /* We allow user-defined conversions within init-lists, but
2105 don't list-initialize the copy parm, as that would mean
2106 using two levels of braces for the same type. */
2107 if ((flags & LOOKUP_LIST_INIT_CTOR)
2108 && BRACE_ENCLOSED_INITIALIZER_P (arg))
2109 lflags |= LOOKUP_NO_CONVERSION;
2111 else
2112 lflags |= LOOKUP_ONLYCONVERTING;
2114 t = implicit_conversion (parmtype, argtype, arg,
2115 /*c_cast_p=*/false, lflags, complain);
2116 to_type = parmtype;
2118 else
2120 t = build_identity_conv (argtype, arg);
2121 t->ellipsis_p = true;
2122 to_type = argtype;
2125 if (t && is_this)
2126 t->this_p = true;
2128 convs[i] = t;
2129 if (! t)
2131 viable = 0;
2132 reason = arg_conversion_rejection (first_arg, i, argtype, to_type);
2133 break;
2136 if (t->bad_p)
2138 viable = -1;
2139 reason = bad_arg_conversion_rejection (first_arg, i, arg, to_type);
2143 out:
2144 return add_candidate (candidates, fn, orig_first_arg, args, len, convs,
2145 access_path, conversion_path, viable, reason, flags);
2148 /* Create an overload candidate for the conversion function FN which will
2149 be invoked for expression OBJ, producing a pointer-to-function which
2150 will in turn be called with the argument list FIRST_ARG/ARGLIST,
2151 and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
2152 passed on to implicit_conversion.
2154 Actually, we don't really care about FN; we care about the type it
2155 converts to. There may be multiple conversion functions that will
2156 convert to that type, and we rely on build_user_type_conversion_1 to
2157 choose the best one; so when we create our candidate, we record the type
2158 instead of the function. */
2160 static struct z_candidate *
2161 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
2162 tree first_arg, const vec<tree, va_gc> *arglist,
2163 tree access_path, tree conversion_path,
2164 tsubst_flags_t complain)
2166 tree totype = TREE_TYPE (TREE_TYPE (fn));
2167 int i, len, viable, flags;
2168 tree parmlist, parmnode;
2169 conversion **convs;
2170 struct rejection_reason *reason;
2172 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
2173 parmlist = TREE_TYPE (parmlist);
2174 parmlist = TYPE_ARG_TYPES (parmlist);
2176 len = vec_safe_length (arglist) + (first_arg != NULL_TREE ? 1 : 0) + 1;
2177 convs = alloc_conversions (len);
2178 parmnode = parmlist;
2179 viable = 1;
2180 flags = LOOKUP_IMPLICIT;
2181 reason = NULL;
2183 /* Don't bother looking up the same type twice. */
2184 if (*candidates && (*candidates)->fn == totype)
2185 return NULL;
2187 for (i = 0; i < len; ++i)
2189 tree arg, argtype, convert_type = NULL_TREE;
2190 conversion *t;
2192 if (i == 0)
2193 arg = obj;
2194 else if (i == 1 && first_arg != NULL_TREE)
2195 arg = first_arg;
2196 else
2197 arg = (*arglist)[i - (first_arg != NULL_TREE ? 1 : 0) - 1];
2198 argtype = lvalue_type (arg);
2200 if (i == 0)
2202 t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
2203 flags, complain);
2204 convert_type = totype;
2206 else if (parmnode == void_list_node)
2207 break;
2208 else if (parmnode)
2210 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
2211 /*c_cast_p=*/false, flags, complain);
2212 convert_type = TREE_VALUE (parmnode);
2214 else
2216 t = build_identity_conv (argtype, arg);
2217 t->ellipsis_p = true;
2218 convert_type = argtype;
2221 convs[i] = t;
2222 if (! t)
2223 break;
2225 if (t->bad_p)
2227 viable = -1;
2228 reason = bad_arg_conversion_rejection (NULL_TREE, i, arg, convert_type);
2231 if (i == 0)
2232 continue;
2234 if (parmnode)
2235 parmnode = TREE_CHAIN (parmnode);
2238 if (i < len
2239 || ! sufficient_parms_p (parmnode))
2241 int remaining = remaining_arguments (parmnode);
2242 viable = 0;
2243 reason = arity_rejection (NULL_TREE, i + remaining, len);
2246 return add_candidate (candidates, totype, first_arg, arglist, len, convs,
2247 access_path, conversion_path, viable, reason, flags);
2250 static void
2251 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
2252 tree type1, tree type2, tree *args, tree *argtypes,
2253 int flags, tsubst_flags_t complain)
2255 conversion *t;
2256 conversion **convs;
2257 size_t num_convs;
2258 int viable = 1, i;
2259 tree types[2];
2260 struct rejection_reason *reason = NULL;
2262 types[0] = type1;
2263 types[1] = type2;
2265 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
2266 convs = alloc_conversions (num_convs);
2268 /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2269 conversion ops are allowed. We handle that here by just checking for
2270 boolean_type_node because other operators don't ask for it. COND_EXPR
2271 also does contextual conversion to bool for the first operand, but we
2272 handle that in build_conditional_expr, and type1 here is operand 2. */
2273 if (type1 != boolean_type_node)
2274 flags |= LOOKUP_ONLYCONVERTING;
2276 for (i = 0; i < 2; ++i)
2278 if (! args[i])
2279 break;
2281 t = implicit_conversion (types[i], argtypes[i], args[i],
2282 /*c_cast_p=*/false, flags, complain);
2283 if (! t)
2285 viable = 0;
2286 /* We need something for printing the candidate. */
2287 t = build_identity_conv (types[i], NULL_TREE);
2288 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2289 types[i]);
2291 else if (t->bad_p)
2293 viable = 0;
2294 reason = bad_arg_conversion_rejection (NULL_TREE, i, args[i],
2295 types[i]);
2297 convs[i] = t;
2300 /* For COND_EXPR we rearranged the arguments; undo that now. */
2301 if (args[2])
2303 convs[2] = convs[1];
2304 convs[1] = convs[0];
2305 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2306 /*c_cast_p=*/false, flags,
2307 complain);
2308 if (t)
2309 convs[0] = t;
2310 else
2312 viable = 0;
2313 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2314 boolean_type_node);
2318 add_candidate (candidates, fnname, /*first_arg=*/NULL_TREE, /*args=*/NULL,
2319 num_convs, convs,
2320 /*access_path=*/NULL_TREE,
2321 /*conversion_path=*/NULL_TREE,
2322 viable, reason, flags);
2325 static bool
2326 is_complete (tree t)
2328 return COMPLETE_TYPE_P (complete_type (t));
2331 /* Returns nonzero if TYPE is a promoted arithmetic type. */
2333 static bool
2334 promoted_arithmetic_type_p (tree type)
2336 /* [over.built]
2338 In this section, the term promoted integral type is used to refer
2339 to those integral types which are preserved by integral promotion
2340 (including e.g. int and long but excluding e.g. char).
2341 Similarly, the term promoted arithmetic type refers to promoted
2342 integral types plus floating types. */
2343 return ((CP_INTEGRAL_TYPE_P (type)
2344 && same_type_p (type_promotes_to (type), type))
2345 || TREE_CODE (type) == REAL_TYPE);
2348 /* Create any builtin operator overload candidates for the operator in
2349 question given the converted operand types TYPE1 and TYPE2. The other
2350 args are passed through from add_builtin_candidates to
2351 build_builtin_candidate.
2353 TYPE1 and TYPE2 may not be permissible, and we must filter them.
2354 If CODE is requires candidates operands of the same type of the kind
2355 of which TYPE1 and TYPE2 are, we add both candidates
2356 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
2358 static void
2359 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
2360 enum tree_code code2, tree fnname, tree type1,
2361 tree type2, tree *args, tree *argtypes, int flags,
2362 tsubst_flags_t complain)
2364 switch (code)
2366 case POSTINCREMENT_EXPR:
2367 case POSTDECREMENT_EXPR:
2368 args[1] = integer_zero_node;
2369 type2 = integer_type_node;
2370 break;
2371 default:
2372 break;
2375 switch (code)
2378 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2379 and VQ is either volatile or empty, there exist candidate operator
2380 functions of the form
2381 VQ T& operator++(VQ T&);
2382 T operator++(VQ T&, int);
2383 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
2384 type other than bool, and VQ is either volatile or empty, there exist
2385 candidate operator functions of the form
2386 VQ T& operator--(VQ T&);
2387 T operator--(VQ T&, int);
2388 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
2389 complete object type, and VQ is either volatile or empty, there exist
2390 candidate operator functions of the form
2391 T*VQ& operator++(T*VQ&);
2392 T*VQ& operator--(T*VQ&);
2393 T* operator++(T*VQ&, int);
2394 T* operator--(T*VQ&, int); */
2396 case POSTDECREMENT_EXPR:
2397 case PREDECREMENT_EXPR:
2398 if (TREE_CODE (type1) == BOOLEAN_TYPE)
2399 return;
2400 case POSTINCREMENT_EXPR:
2401 case PREINCREMENT_EXPR:
2402 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
2404 type1 = build_reference_type (type1);
2405 break;
2407 return;
2409 /* 7 For every cv-qualified or cv-unqualified object type T, there
2410 exist candidate operator functions of the form
2412 T& operator*(T*);
2414 8 For every function type T, there exist candidate operator functions of
2415 the form
2416 T& operator*(T*); */
2418 case INDIRECT_REF:
2419 if (TYPE_PTR_P (type1)
2420 && (TYPE_PTROB_P (type1)
2421 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
2422 break;
2423 return;
2425 /* 9 For every type T, there exist candidate operator functions of the form
2426 T* operator+(T*);
2428 10For every promoted arithmetic type T, there exist candidate operator
2429 functions of the form
2430 T operator+(T);
2431 T operator-(T); */
2433 case UNARY_PLUS_EXPR: /* unary + */
2434 if (TYPE_PTR_P (type1))
2435 break;
2436 case NEGATE_EXPR:
2437 if (ARITHMETIC_TYPE_P (type1))
2438 break;
2439 return;
2441 /* 11For every promoted integral type T, there exist candidate operator
2442 functions of the form
2443 T operator~(T); */
2445 case BIT_NOT_EXPR:
2446 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1))
2447 break;
2448 return;
2450 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
2451 is the same type as C2 or is a derived class of C2, T is a complete
2452 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
2453 there exist candidate operator functions of the form
2454 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2455 where CV12 is the union of CV1 and CV2. */
2457 case MEMBER_REF:
2458 if (TYPE_PTR_P (type1) && TYPE_PTRMEM_P (type2))
2460 tree c1 = TREE_TYPE (type1);
2461 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
2463 if (MAYBE_CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
2464 && (TYPE_PTRMEMFUNC_P (type2)
2465 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
2466 break;
2468 return;
2470 /* 13For every pair of promoted arithmetic types L and R, there exist can-
2471 didate operator functions of the form
2472 LR operator*(L, R);
2473 LR operator/(L, R);
2474 LR operator+(L, R);
2475 LR operator-(L, R);
2476 bool operator<(L, R);
2477 bool operator>(L, R);
2478 bool operator<=(L, R);
2479 bool operator>=(L, R);
2480 bool operator==(L, R);
2481 bool operator!=(L, R);
2482 where LR is the result of the usual arithmetic conversions between
2483 types L and R.
2485 14For every pair of types T and I, where T is a cv-qualified or cv-
2486 unqualified complete object type and I is a promoted integral type,
2487 there exist candidate operator functions of the form
2488 T* operator+(T*, I);
2489 T& operator[](T*, I);
2490 T* operator-(T*, I);
2491 T* operator+(I, T*);
2492 T& operator[](I, T*);
2494 15For every T, where T is a pointer to complete object type, there exist
2495 candidate operator functions of the form112)
2496 ptrdiff_t operator-(T, T);
2498 16For every pointer or enumeration type T, there exist candidate operator
2499 functions of the form
2500 bool operator<(T, T);
2501 bool operator>(T, T);
2502 bool operator<=(T, T);
2503 bool operator>=(T, T);
2504 bool operator==(T, T);
2505 bool operator!=(T, T);
2507 17For every pointer to member type T, there exist candidate operator
2508 functions of the form
2509 bool operator==(T, T);
2510 bool operator!=(T, T); */
2512 case MINUS_EXPR:
2513 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
2514 break;
2515 if (TYPE_PTROB_P (type1)
2516 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2518 type2 = ptrdiff_type_node;
2519 break;
2521 case MULT_EXPR:
2522 case TRUNC_DIV_EXPR:
2523 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2524 break;
2525 return;
2527 case EQ_EXPR:
2528 case NE_EXPR:
2529 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2530 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2)))
2531 break;
2532 if (TYPE_PTRMEM_P (type1) && null_ptr_cst_p (args[1]))
2534 type2 = type1;
2535 break;
2537 if (TYPE_PTRMEM_P (type2) && null_ptr_cst_p (args[0]))
2539 type1 = type2;
2540 break;
2542 /* Fall through. */
2543 case LT_EXPR:
2544 case GT_EXPR:
2545 case LE_EXPR:
2546 case GE_EXPR:
2547 case MAX_EXPR:
2548 case MIN_EXPR:
2549 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2550 break;
2551 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2552 break;
2553 if (TREE_CODE (type1) == ENUMERAL_TYPE
2554 && TREE_CODE (type2) == ENUMERAL_TYPE)
2555 break;
2556 if (TYPE_PTR_P (type1)
2557 && null_ptr_cst_p (args[1]))
2559 type2 = type1;
2560 break;
2562 if (null_ptr_cst_p (args[0])
2563 && TYPE_PTR_P (type2))
2565 type1 = type2;
2566 break;
2568 return;
2570 case PLUS_EXPR:
2571 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2572 break;
2573 case ARRAY_REF:
2574 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && TYPE_PTROB_P (type2))
2576 type1 = ptrdiff_type_node;
2577 break;
2579 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2581 type2 = ptrdiff_type_node;
2582 break;
2584 return;
2586 /* 18For every pair of promoted integral types L and R, there exist candi-
2587 date operator functions of the form
2588 LR operator%(L, R);
2589 LR operator&(L, R);
2590 LR operator^(L, R);
2591 LR operator|(L, R);
2592 L operator<<(L, R);
2593 L operator>>(L, R);
2594 where LR is the result of the usual arithmetic conversions between
2595 types L and R. */
2597 case TRUNC_MOD_EXPR:
2598 case BIT_AND_EXPR:
2599 case BIT_IOR_EXPR:
2600 case BIT_XOR_EXPR:
2601 case LSHIFT_EXPR:
2602 case RSHIFT_EXPR:
2603 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2604 break;
2605 return;
2607 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
2608 type, VQ is either volatile or empty, and R is a promoted arithmetic
2609 type, there exist candidate operator functions of the form
2610 VQ L& operator=(VQ L&, R);
2611 VQ L& operator*=(VQ L&, R);
2612 VQ L& operator/=(VQ L&, R);
2613 VQ L& operator+=(VQ L&, R);
2614 VQ L& operator-=(VQ L&, R);
2616 20For every pair T, VQ), where T is any type and VQ is either volatile
2617 or empty, there exist candidate operator functions of the form
2618 T*VQ& operator=(T*VQ&, T*);
2620 21For every pair T, VQ), where T is a pointer to member type and VQ is
2621 either volatile or empty, there exist candidate operator functions of
2622 the form
2623 VQ T& operator=(VQ T&, T);
2625 22For every triple T, VQ, I), where T is a cv-qualified or cv-
2626 unqualified complete object type, VQ is either volatile or empty, and
2627 I is a promoted integral type, there exist candidate operator func-
2628 tions of the form
2629 T*VQ& operator+=(T*VQ&, I);
2630 T*VQ& operator-=(T*VQ&, I);
2632 23For every triple L, VQ, R), where L is an integral or enumeration
2633 type, VQ is either volatile or empty, and R is a promoted integral
2634 type, there exist candidate operator functions of the form
2636 VQ L& operator%=(VQ L&, R);
2637 VQ L& operator<<=(VQ L&, R);
2638 VQ L& operator>>=(VQ L&, R);
2639 VQ L& operator&=(VQ L&, R);
2640 VQ L& operator^=(VQ L&, R);
2641 VQ L& operator|=(VQ L&, R); */
2643 case MODIFY_EXPR:
2644 switch (code2)
2646 case PLUS_EXPR:
2647 case MINUS_EXPR:
2648 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2650 type2 = ptrdiff_type_node;
2651 break;
2653 case MULT_EXPR:
2654 case TRUNC_DIV_EXPR:
2655 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2656 break;
2657 return;
2659 case TRUNC_MOD_EXPR:
2660 case BIT_AND_EXPR:
2661 case BIT_IOR_EXPR:
2662 case BIT_XOR_EXPR:
2663 case LSHIFT_EXPR:
2664 case RSHIFT_EXPR:
2665 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2666 break;
2667 return;
2669 case NOP_EXPR:
2670 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2671 break;
2672 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2673 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2674 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2675 || ((TYPE_PTRMEMFUNC_P (type1)
2676 || TYPE_PTR_P (type1))
2677 && null_ptr_cst_p (args[1])))
2679 type2 = type1;
2680 break;
2682 return;
2684 default:
2685 gcc_unreachable ();
2687 type1 = build_reference_type (type1);
2688 break;
2690 case COND_EXPR:
2691 /* [over.built]
2693 For every pair of promoted arithmetic types L and R, there
2694 exist candidate operator functions of the form
2696 LR operator?(bool, L, R);
2698 where LR is the result of the usual arithmetic conversions
2699 between types L and R.
2701 For every type T, where T is a pointer or pointer-to-member
2702 type, there exist candidate operator functions of the form T
2703 operator?(bool, T, T); */
2705 if (promoted_arithmetic_type_p (type1)
2706 && promoted_arithmetic_type_p (type2))
2707 /* That's OK. */
2708 break;
2710 /* Otherwise, the types should be pointers. */
2711 if (!TYPE_PTR_OR_PTRMEM_P (type1) || !TYPE_PTR_OR_PTRMEM_P (type2))
2712 return;
2714 /* We don't check that the two types are the same; the logic
2715 below will actually create two candidates; one in which both
2716 parameter types are TYPE1, and one in which both parameter
2717 types are TYPE2. */
2718 break;
2720 case REALPART_EXPR:
2721 case IMAGPART_EXPR:
2722 if (ARITHMETIC_TYPE_P (type1))
2723 break;
2724 return;
2726 default:
2727 gcc_unreachable ();
2730 /* Make sure we don't create builtin candidates with dependent types. */
2731 bool u1 = uses_template_parms (type1);
2732 bool u2 = type2 ? uses_template_parms (type2) : false;
2733 if (u1 || u2)
2735 /* Try to recover if one of the types is non-dependent. But if
2736 there's only one type, there's nothing we can do. */
2737 if (!type2)
2738 return;
2739 /* And we lose if both are dependent. */
2740 if (u1 && u2)
2741 return;
2742 /* Or if they have different forms. */
2743 if (TREE_CODE (type1) != TREE_CODE (type2))
2744 return;
2746 if (u1 && !u2)
2747 type1 = type2;
2748 else if (u2 && !u1)
2749 type2 = type1;
2752 /* If we're dealing with two pointer types or two enumeral types,
2753 we need candidates for both of them. */
2754 if (type2 && !same_type_p (type1, type2)
2755 && TREE_CODE (type1) == TREE_CODE (type2)
2756 && (TREE_CODE (type1) == REFERENCE_TYPE
2757 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2758 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2759 || TYPE_PTRMEMFUNC_P (type1)
2760 || MAYBE_CLASS_TYPE_P (type1)
2761 || TREE_CODE (type1) == ENUMERAL_TYPE))
2763 if (TYPE_PTR_OR_PTRMEM_P (type1))
2765 tree cptype = composite_pointer_type (type1, type2,
2766 error_mark_node,
2767 error_mark_node,
2768 CPO_CONVERSION,
2769 tf_none);
2770 if (cptype != error_mark_node)
2772 build_builtin_candidate
2773 (candidates, fnname, cptype, cptype, args, argtypes,
2774 flags, complain);
2775 return;
2779 build_builtin_candidate
2780 (candidates, fnname, type1, type1, args, argtypes, flags, complain);
2781 build_builtin_candidate
2782 (candidates, fnname, type2, type2, args, argtypes, flags, complain);
2783 return;
2786 build_builtin_candidate
2787 (candidates, fnname, type1, type2, args, argtypes, flags, complain);
2790 tree
2791 type_decays_to (tree type)
2793 if (TREE_CODE (type) == ARRAY_TYPE)
2794 return build_pointer_type (TREE_TYPE (type));
2795 if (TREE_CODE (type) == FUNCTION_TYPE)
2796 return build_pointer_type (type);
2797 return type;
2800 /* There are three conditions of builtin candidates:
2802 1) bool-taking candidates. These are the same regardless of the input.
2803 2) pointer-pair taking candidates. These are generated for each type
2804 one of the input types converts to.
2805 3) arithmetic candidates. According to the standard, we should generate
2806 all of these, but I'm trying not to...
2808 Here we generate a superset of the possible candidates for this particular
2809 case. That is a subset of the full set the standard defines, plus some
2810 other cases which the standard disallows. add_builtin_candidate will
2811 filter out the invalid set. */
2813 static void
2814 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2815 enum tree_code code2, tree fnname, tree *args,
2816 int flags, tsubst_flags_t complain)
2818 int ref1, i;
2819 int enum_p = 0;
2820 tree type, argtypes[3], t;
2821 /* TYPES[i] is the set of possible builtin-operator parameter types
2822 we will consider for the Ith argument. */
2823 vec<tree, va_gc> *types[2];
2824 unsigned ix;
2826 for (i = 0; i < 3; ++i)
2828 if (args[i])
2829 argtypes[i] = unlowered_expr_type (args[i]);
2830 else
2831 argtypes[i] = NULL_TREE;
2834 switch (code)
2836 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2837 and VQ is either volatile or empty, there exist candidate operator
2838 functions of the form
2839 VQ T& operator++(VQ T&); */
2841 case POSTINCREMENT_EXPR:
2842 case PREINCREMENT_EXPR:
2843 case POSTDECREMENT_EXPR:
2844 case PREDECREMENT_EXPR:
2845 case MODIFY_EXPR:
2846 ref1 = 1;
2847 break;
2849 /* 24There also exist candidate operator functions of the form
2850 bool operator!(bool);
2851 bool operator&&(bool, bool);
2852 bool operator||(bool, bool); */
2854 case TRUTH_NOT_EXPR:
2855 build_builtin_candidate
2856 (candidates, fnname, boolean_type_node,
2857 NULL_TREE, args, argtypes, flags, complain);
2858 return;
2860 case TRUTH_ORIF_EXPR:
2861 case TRUTH_ANDIF_EXPR:
2862 build_builtin_candidate
2863 (candidates, fnname, boolean_type_node,
2864 boolean_type_node, args, argtypes, flags, complain);
2865 return;
2867 case ADDR_EXPR:
2868 case COMPOUND_EXPR:
2869 case COMPONENT_REF:
2870 return;
2872 case COND_EXPR:
2873 case EQ_EXPR:
2874 case NE_EXPR:
2875 case LT_EXPR:
2876 case LE_EXPR:
2877 case GT_EXPR:
2878 case GE_EXPR:
2879 enum_p = 1;
2880 /* Fall through. */
2882 default:
2883 ref1 = 0;
2886 types[0] = make_tree_vector ();
2887 types[1] = make_tree_vector ();
2889 for (i = 0; i < 2; ++i)
2891 if (! args[i])
2893 else if (MAYBE_CLASS_TYPE_P (argtypes[i]))
2895 tree convs;
2897 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2898 return;
2900 convs = lookup_conversions (argtypes[i]);
2902 if (code == COND_EXPR)
2904 if (real_lvalue_p (args[i]))
2905 vec_safe_push (types[i], build_reference_type (argtypes[i]));
2907 vec_safe_push (types[i], TYPE_MAIN_VARIANT (argtypes[i]));
2910 else if (! convs)
2911 return;
2913 for (; convs; convs = TREE_CHAIN (convs))
2915 type = TREE_TYPE (convs);
2917 if (i == 0 && ref1
2918 && (TREE_CODE (type) != REFERENCE_TYPE
2919 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2920 continue;
2922 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2923 vec_safe_push (types[i], type);
2925 type = non_reference (type);
2926 if (i != 0 || ! ref1)
2928 type = cv_unqualified (type_decays_to (type));
2929 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2930 vec_safe_push (types[i], type);
2931 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2932 type = type_promotes_to (type);
2935 if (! vec_member (type, types[i]))
2936 vec_safe_push (types[i], type);
2939 else
2941 if (code == COND_EXPR && real_lvalue_p (args[i]))
2942 vec_safe_push (types[i], build_reference_type (argtypes[i]));
2943 type = non_reference (argtypes[i]);
2944 if (i != 0 || ! ref1)
2946 type = cv_unqualified (type_decays_to (type));
2947 if (enum_p && UNSCOPED_ENUM_P (type))
2948 vec_safe_push (types[i], type);
2949 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2950 type = type_promotes_to (type);
2952 vec_safe_push (types[i], type);
2956 /* Run through the possible parameter types of both arguments,
2957 creating candidates with those parameter types. */
2958 FOR_EACH_VEC_ELT_REVERSE (*(types[0]), ix, t)
2960 unsigned jx;
2961 tree u;
2963 if (!types[1]->is_empty ())
2964 FOR_EACH_VEC_ELT_REVERSE (*(types[1]), jx, u)
2965 add_builtin_candidate
2966 (candidates, code, code2, fnname, t,
2967 u, args, argtypes, flags, complain);
2968 else
2969 add_builtin_candidate
2970 (candidates, code, code2, fnname, t,
2971 NULL_TREE, args, argtypes, flags, complain);
2974 release_tree_vector (types[0]);
2975 release_tree_vector (types[1]);
2979 /* If TMPL can be successfully instantiated as indicated by
2980 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2982 TMPL is the template. EXPLICIT_TARGS are any explicit template
2983 arguments. ARGLIST is the arguments provided at the call-site.
2984 This does not change ARGLIST. The RETURN_TYPE is the desired type
2985 for conversion operators. If OBJ is NULL_TREE, FLAGS and CTYPE are
2986 as for add_function_candidate. If an OBJ is supplied, FLAGS and
2987 CTYPE are ignored, and OBJ is as for add_conv_candidate. */
2989 static struct z_candidate*
2990 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2991 tree ctype, tree explicit_targs, tree first_arg,
2992 const vec<tree, va_gc> *arglist, tree return_type,
2993 tree access_path, tree conversion_path,
2994 int flags, tree obj, unification_kind_t strict,
2995 tsubst_flags_t complain)
2997 int ntparms = DECL_NTPARMS (tmpl);
2998 tree targs = make_tree_vec (ntparms);
2999 unsigned int len = vec_safe_length (arglist);
3000 unsigned int nargs = (first_arg == NULL_TREE ? 0 : 1) + len;
3001 unsigned int skip_without_in_chrg = 0;
3002 tree first_arg_without_in_chrg = first_arg;
3003 tree *args_without_in_chrg;
3004 unsigned int nargs_without_in_chrg;
3005 unsigned int ia, ix;
3006 tree arg;
3007 struct z_candidate *cand;
3008 tree fn;
3009 struct rejection_reason *reason = NULL;
3010 int errs;
3012 /* We don't do deduction on the in-charge parameter, the VTT
3013 parameter or 'this'. */
3014 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
3016 if (first_arg_without_in_chrg != NULL_TREE)
3017 first_arg_without_in_chrg = NULL_TREE;
3018 else
3019 ++skip_without_in_chrg;
3022 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
3023 || DECL_BASE_CONSTRUCTOR_P (tmpl))
3024 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
3026 if (first_arg_without_in_chrg != NULL_TREE)
3027 first_arg_without_in_chrg = NULL_TREE;
3028 else
3029 ++skip_without_in_chrg;
3032 if (len < skip_without_in_chrg)
3033 return NULL;
3035 nargs_without_in_chrg = ((first_arg_without_in_chrg != NULL_TREE ? 1 : 0)
3036 + (len - skip_without_in_chrg));
3037 args_without_in_chrg = XALLOCAVEC (tree, nargs_without_in_chrg);
3038 ia = 0;
3039 if (first_arg_without_in_chrg != NULL_TREE)
3041 args_without_in_chrg[ia] = first_arg_without_in_chrg;
3042 ++ia;
3044 for (ix = skip_without_in_chrg;
3045 vec_safe_iterate (arglist, ix, &arg);
3046 ++ix)
3048 args_without_in_chrg[ia] = arg;
3049 ++ia;
3051 gcc_assert (ia == nargs_without_in_chrg);
3053 errs = errorcount+sorrycount;
3054 fn = fn_type_unification (tmpl, explicit_targs, targs,
3055 args_without_in_chrg,
3056 nargs_without_in_chrg,
3057 return_type, strict, flags, false,
3058 complain & tf_decltype);
3060 if (fn == error_mark_node)
3062 if (errorcount+sorrycount == errs)
3063 /* Don't repeat unification later if it already resulted in errors. */
3064 reason = template_unification_rejection (tmpl, explicit_targs,
3065 targs, args_without_in_chrg,
3066 nargs_without_in_chrg,
3067 return_type, strict, flags);
3068 else
3069 reason = template_unification_error_rejection ();
3070 goto fail;
3073 /* In [class.copy]:
3075 A member function template is never instantiated to perform the
3076 copy of a class object to an object of its class type.
3078 It's a little unclear what this means; the standard explicitly
3079 does allow a template to be used to copy a class. For example,
3082 struct A {
3083 A(A&);
3084 template <class T> A(const T&);
3086 const A f ();
3087 void g () { A a (f ()); }
3089 the member template will be used to make the copy. The section
3090 quoted above appears in the paragraph that forbids constructors
3091 whose only parameter is (a possibly cv-qualified variant of) the
3092 class type, and a logical interpretation is that the intent was
3093 to forbid the instantiation of member templates which would then
3094 have that form. */
3095 if (DECL_CONSTRUCTOR_P (fn) && nargs == 2)
3097 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
3098 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
3099 ctype))
3101 reason = invalid_copy_with_fn_template_rejection ();
3102 goto fail;
3106 if (obj != NULL_TREE)
3107 /* Aha, this is a conversion function. */
3108 cand = add_conv_candidate (candidates, fn, obj, first_arg, arglist,
3109 access_path, conversion_path, complain);
3110 else
3111 cand = add_function_candidate (candidates, fn, ctype,
3112 first_arg, arglist, access_path,
3113 conversion_path, flags, complain);
3114 if (DECL_TI_TEMPLATE (fn) != tmpl)
3116 /* This situation can occur if a member template of a template
3117 class is specialized. Then, instantiate_template might return
3118 an instantiation of the specialization, in which case the
3119 DECL_TI_TEMPLATE field will point at the original
3120 specialization. For example:
3122 template <class T> struct S { template <class U> void f(U);
3123 template <> void f(int) {}; };
3124 S<double> sd;
3125 sd.f(3);
3127 Here, TMPL will be template <class U> S<double>::f(U).
3128 And, instantiate template will give us the specialization
3129 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
3130 for this will point at template <class T> template <> S<T>::f(int),
3131 so that we can find the definition. For the purposes of
3132 overload resolution, however, we want the original TMPL. */
3133 cand->template_decl = build_template_info (tmpl, targs);
3135 else
3136 cand->template_decl = DECL_TEMPLATE_INFO (fn);
3137 cand->explicit_targs = explicit_targs;
3139 return cand;
3140 fail:
3141 return add_candidate (candidates, tmpl, first_arg, arglist, nargs, NULL,
3142 access_path, conversion_path, 0, reason, flags);
3146 static struct z_candidate *
3147 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
3148 tree explicit_targs, tree first_arg,
3149 const vec<tree, va_gc> *arglist, tree return_type,
3150 tree access_path, tree conversion_path, int flags,
3151 unification_kind_t strict, tsubst_flags_t complain)
3153 return
3154 add_template_candidate_real (candidates, tmpl, ctype,
3155 explicit_targs, first_arg, arglist,
3156 return_type, access_path, conversion_path,
3157 flags, NULL_TREE, strict, complain);
3161 static struct z_candidate *
3162 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
3163 tree obj, tree first_arg,
3164 const vec<tree, va_gc> *arglist,
3165 tree return_type, tree access_path,
3166 tree conversion_path, tsubst_flags_t complain)
3168 return
3169 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
3170 first_arg, arglist, return_type, access_path,
3171 conversion_path, 0, obj, DEDUCE_CONV,
3172 complain);
3175 /* The CANDS are the set of candidates that were considered for
3176 overload resolution. Return the set of viable candidates, or CANDS
3177 if none are viable. If any of the candidates were viable, set
3178 *ANY_VIABLE_P to true. STRICT_P is true if a candidate should be
3179 considered viable only if it is strictly viable. */
3181 static struct z_candidate*
3182 splice_viable (struct z_candidate *cands,
3183 bool strict_p,
3184 bool *any_viable_p)
3186 struct z_candidate *viable;
3187 struct z_candidate **last_viable;
3188 struct z_candidate **cand;
3189 bool found_strictly_viable = false;
3191 /* Be strict inside templates, since build_over_call won't actually
3192 do the conversions to get pedwarns. */
3193 if (processing_template_decl)
3194 strict_p = true;
3196 viable = NULL;
3197 last_viable = &viable;
3198 *any_viable_p = false;
3200 cand = &cands;
3201 while (*cand)
3203 struct z_candidate *c = *cand;
3204 if (!strict_p
3205 && (c->viable == 1 || TREE_CODE (c->fn) == TEMPLATE_DECL))
3207 /* Be strict in the presence of a viable candidate. Also if
3208 there are template candidates, so that we get deduction errors
3209 for them instead of silently preferring a bad conversion. */
3210 strict_p = true;
3211 if (viable && !found_strictly_viable)
3213 /* Put any spliced near matches back onto the main list so
3214 that we see them if there is no strict match. */
3215 *any_viable_p = false;
3216 *last_viable = cands;
3217 cands = viable;
3218 viable = NULL;
3219 last_viable = &viable;
3223 if (strict_p ? c->viable == 1 : c->viable)
3225 *last_viable = c;
3226 *cand = c->next;
3227 c->next = NULL;
3228 last_viable = &c->next;
3229 *any_viable_p = true;
3230 if (c->viable == 1)
3231 found_strictly_viable = true;
3233 else
3234 cand = &c->next;
3237 return viable ? viable : cands;
3240 static bool
3241 any_strictly_viable (struct z_candidate *cands)
3243 for (; cands; cands = cands->next)
3244 if (cands->viable == 1)
3245 return true;
3246 return false;
3249 /* OBJ is being used in an expression like "OBJ.f (...)". In other
3250 words, it is about to become the "this" pointer for a member
3251 function call. Take the address of the object. */
3253 static tree
3254 build_this (tree obj)
3256 /* In a template, we are only concerned about the type of the
3257 expression, so we can take a shortcut. */
3258 if (processing_template_decl)
3259 return build_address (obj);
3261 return cp_build_addr_expr (obj, tf_warning_or_error);
3264 /* Returns true iff functions are equivalent. Equivalent functions are
3265 not '==' only if one is a function-local extern function or if
3266 both are extern "C". */
3268 static inline int
3269 equal_functions (tree fn1, tree fn2)
3271 if (TREE_CODE (fn1) != TREE_CODE (fn2))
3272 return 0;
3273 if (TREE_CODE (fn1) == TEMPLATE_DECL)
3274 return fn1 == fn2;
3275 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
3276 || DECL_EXTERN_C_FUNCTION_P (fn1))
3277 return decls_match (fn1, fn2);
3278 return fn1 == fn2;
3281 /* Print information about a candidate being rejected due to INFO. */
3283 static void
3284 print_conversion_rejection (location_t loc, struct conversion_info *info)
3286 tree from = info->from;
3287 if (!TYPE_P (from))
3288 from = lvalue_type (from);
3289 if (info->n_arg == -1)
3291 /* Conversion of implicit `this' argument failed. */
3292 if (!TYPE_P (info->from))
3293 /* A bad conversion for 'this' must be discarding cv-quals. */
3294 inform (loc, " passing %qT as %<this%> "
3295 "argument discards qualifiers",
3296 from);
3297 else
3298 inform (loc, " no known conversion for implicit "
3299 "%<this%> parameter from %qT to %qT",
3300 from, info->to_type);
3302 else if (!TYPE_P (info->from))
3304 if (info->n_arg >= 0)
3305 inform (loc, " conversion of argument %d would be ill-formed:",
3306 info->n_arg + 1);
3307 perform_implicit_conversion (info->to_type, info->from,
3308 tf_warning_or_error);
3310 else if (info->n_arg == -2)
3311 /* Conversion of conversion function return value failed. */
3312 inform (loc, " no known conversion from %qT to %qT",
3313 from, info->to_type);
3314 else
3315 inform (loc, " no known conversion for argument %d from %qT to %qT",
3316 info->n_arg + 1, from, info->to_type);
3319 /* Print information about a candidate with WANT parameters and we found
3320 HAVE. */
3322 static void
3323 print_arity_information (location_t loc, unsigned int have, unsigned int want)
3325 inform_n (loc, want,
3326 " candidate expects %d argument, %d provided",
3327 " candidate expects %d arguments, %d provided",
3328 want, have);
3331 /* Print information about one overload candidate CANDIDATE. MSGSTR
3332 is the text to print before the candidate itself.
3334 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3335 to have been run through gettext by the caller. This wart makes
3336 life simpler in print_z_candidates and for the translators. */
3338 static void
3339 print_z_candidate (location_t loc, const char *msgstr,
3340 struct z_candidate *candidate)
3342 const char *msg = (msgstr == NULL
3343 ? ""
3344 : ACONCAT ((msgstr, " ", NULL)));
3345 location_t cloc = location_of (candidate->fn);
3347 if (identifier_p (candidate->fn))
3349 cloc = loc;
3350 if (candidate->num_convs == 3)
3351 inform (cloc, "%s%D(%T, %T, %T) <built-in>", msg, candidate->fn,
3352 candidate->convs[0]->type,
3353 candidate->convs[1]->type,
3354 candidate->convs[2]->type);
3355 else if (candidate->num_convs == 2)
3356 inform (cloc, "%s%D(%T, %T) <built-in>", msg, candidate->fn,
3357 candidate->convs[0]->type,
3358 candidate->convs[1]->type);
3359 else
3360 inform (cloc, "%s%D(%T) <built-in>", msg, candidate->fn,
3361 candidate->convs[0]->type);
3363 else if (TYPE_P (candidate->fn))
3364 inform (cloc, "%s%T <conversion>", msg, candidate->fn);
3365 else if (candidate->viable == -1)
3366 inform (cloc, "%s%#D <near match>", msg, candidate->fn);
3367 else if (DECL_DELETED_FN (candidate->fn))
3368 inform (cloc, "%s%#D <deleted>", msg, candidate->fn);
3369 else
3370 inform (cloc, "%s%#D", msg, candidate->fn);
3371 /* Give the user some information about why this candidate failed. */
3372 if (candidate->reason != NULL)
3374 struct rejection_reason *r = candidate->reason;
3376 switch (r->code)
3378 case rr_arity:
3379 print_arity_information (cloc, r->u.arity.actual,
3380 r->u.arity.expected);
3381 break;
3382 case rr_arg_conversion:
3383 print_conversion_rejection (cloc, &r->u.conversion);
3384 break;
3385 case rr_bad_arg_conversion:
3386 print_conversion_rejection (cloc, &r->u.bad_conversion);
3387 break;
3388 case rr_explicit_conversion:
3389 inform (cloc, " return type %qT of explicit conversion function "
3390 "cannot be converted to %qT with a qualification "
3391 "conversion", r->u.conversion.from,
3392 r->u.conversion.to_type);
3393 break;
3394 case rr_template_conversion:
3395 inform (cloc, " conversion from return type %qT of template "
3396 "conversion function specialization to %qT is not an "
3397 "exact match", r->u.conversion.from,
3398 r->u.conversion.to_type);
3399 break;
3400 case rr_template_unification:
3401 /* We use template_unification_error_rejection if unification caused
3402 actual non-SFINAE errors, in which case we don't need to repeat
3403 them here. */
3404 if (r->u.template_unification.tmpl == NULL_TREE)
3406 inform (cloc, " substitution of deduced template arguments "
3407 "resulted in errors seen above");
3408 break;
3410 /* Re-run template unification with diagnostics. */
3411 inform (cloc, " template argument deduction/substitution failed:");
3412 fn_type_unification (r->u.template_unification.tmpl,
3413 r->u.template_unification.explicit_targs,
3414 (make_tree_vec
3415 (r->u.template_unification.num_targs)),
3416 r->u.template_unification.args,
3417 r->u.template_unification.nargs,
3418 r->u.template_unification.return_type,
3419 r->u.template_unification.strict,
3420 r->u.template_unification.flags,
3421 true, false);
3422 break;
3423 case rr_invalid_copy:
3424 inform (cloc,
3425 " a constructor taking a single argument of its own "
3426 "class type is invalid");
3427 break;
3428 case rr_constraint_failure:
3430 tree tmpl = r->u.template_instantiation.tmpl;
3431 tree args = r->u.template_instantiation.targs;
3432 diagnose_constraints (cloc, tmpl, args);
3434 break;
3435 case rr_none:
3436 default:
3437 /* This candidate didn't have any issues or we failed to
3438 handle a particular code. Either way... */
3439 gcc_unreachable ();
3444 static void
3445 print_z_candidates (location_t loc, struct z_candidate *candidates)
3447 struct z_candidate *cand1;
3448 struct z_candidate **cand2;
3449 int n_candidates;
3451 if (!candidates)
3452 return;
3454 /* Remove non-viable deleted candidates. */
3455 cand1 = candidates;
3456 for (cand2 = &cand1; *cand2; )
3458 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
3459 && !(*cand2)->viable
3460 && DECL_DELETED_FN ((*cand2)->fn))
3461 *cand2 = (*cand2)->next;
3462 else
3463 cand2 = &(*cand2)->next;
3465 /* ...if there are any non-deleted ones. */
3466 if (cand1)
3467 candidates = cand1;
3469 /* There may be duplicates in the set of candidates. We put off
3470 checking this condition as long as possible, since we have no way
3471 to eliminate duplicates from a set of functions in less than n^2
3472 time. Now we are about to emit an error message, so it is more
3473 permissible to go slowly. */
3474 for (cand1 = candidates; cand1; cand1 = cand1->next)
3476 tree fn = cand1->fn;
3477 /* Skip builtin candidates and conversion functions. */
3478 if (!DECL_P (fn))
3479 continue;
3480 cand2 = &cand1->next;
3481 while (*cand2)
3483 if (DECL_P ((*cand2)->fn)
3484 && equal_functions (fn, (*cand2)->fn))
3485 *cand2 = (*cand2)->next;
3486 else
3487 cand2 = &(*cand2)->next;
3491 for (n_candidates = 0, cand1 = candidates; cand1; cand1 = cand1->next)
3492 n_candidates++;
3494 for (; candidates; candidates = candidates->next)
3495 print_z_candidate (loc, "candidate:", candidates);
3498 /* USER_SEQ is a user-defined conversion sequence, beginning with a
3499 USER_CONV. STD_SEQ is the standard conversion sequence applied to
3500 the result of the conversion function to convert it to the final
3501 desired type. Merge the two sequences into a single sequence,
3502 and return the merged sequence. */
3504 static conversion *
3505 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
3507 conversion **t;
3508 bool bad = user_seq->bad_p;
3510 gcc_assert (user_seq->kind == ck_user);
3512 /* Find the end of the second conversion sequence. */
3513 for (t = &std_seq; (*t)->kind != ck_identity; t = &((*t)->u.next))
3515 /* The entire sequence is a user-conversion sequence. */
3516 (*t)->user_conv_p = true;
3517 if (bad)
3518 (*t)->bad_p = true;
3521 /* Replace the identity conversion with the user conversion
3522 sequence. */
3523 *t = user_seq;
3525 return std_seq;
3528 /* Handle overload resolution for initializing an object of class type from
3529 an initializer list. First we look for a suitable constructor that
3530 takes a std::initializer_list; if we don't find one, we then look for a
3531 non-list constructor.
3533 Parameters are as for add_candidates, except that the arguments are in
3534 the form of a CONSTRUCTOR (the initializer list) rather than a vector, and
3535 the RETURN_TYPE parameter is replaced by TOTYPE, the desired type. */
3537 static void
3538 add_list_candidates (tree fns, tree first_arg,
3539 tree init_list, tree totype,
3540 tree explicit_targs, bool template_only,
3541 tree conversion_path, tree access_path,
3542 int flags,
3543 struct z_candidate **candidates,
3544 tsubst_flags_t complain)
3546 vec<tree, va_gc> *args;
3548 gcc_assert (*candidates == NULL);
3550 /* We're looking for a ctor for list-initialization. */
3551 flags |= LOOKUP_LIST_INIT_CTOR;
3552 /* And we don't allow narrowing conversions. We also use this flag to
3553 avoid the copy constructor call for copy-list-initialization. */
3554 flags |= LOOKUP_NO_NARROWING;
3556 /* Always use the default constructor if the list is empty (DR 990). */
3557 if (CONSTRUCTOR_NELTS (init_list) == 0
3558 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
3560 /* If the class has a list ctor, try passing the list as a single
3561 argument first, but only consider list ctors. */
3562 else if (TYPE_HAS_LIST_CTOR (totype))
3564 flags |= LOOKUP_LIST_ONLY;
3565 args = make_tree_vector_single (init_list);
3566 add_candidates (fns, first_arg, args, NULL_TREE,
3567 explicit_targs, template_only, conversion_path,
3568 access_path, flags, candidates, complain);
3569 if (any_strictly_viable (*candidates))
3570 return;
3573 args = ctor_to_vec (init_list);
3575 /* We aren't looking for list-ctors anymore. */
3576 flags &= ~LOOKUP_LIST_ONLY;
3577 /* We allow more user-defined conversions within an init-list. */
3578 flags &= ~LOOKUP_NO_CONVERSION;
3580 add_candidates (fns, first_arg, args, NULL_TREE,
3581 explicit_targs, template_only, conversion_path,
3582 access_path, flags, candidates, complain);
3585 /* Returns the best overload candidate to perform the requested
3586 conversion. This function is used for three the overloading situations
3587 described in [over.match.copy], [over.match.conv], and [over.match.ref].
3588 If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
3589 per [dcl.init.ref], so we ignore temporary bindings. */
3591 static struct z_candidate *
3592 build_user_type_conversion_1 (tree totype, tree expr, int flags,
3593 tsubst_flags_t complain)
3595 struct z_candidate *candidates, *cand;
3596 tree fromtype;
3597 tree ctors = NULL_TREE;
3598 tree conv_fns = NULL_TREE;
3599 conversion *conv = NULL;
3600 tree first_arg = NULL_TREE;
3601 vec<tree, va_gc> *args = NULL;
3602 bool any_viable_p;
3603 int convflags;
3605 if (!expr)
3606 return NULL;
3608 fromtype = TREE_TYPE (expr);
3610 /* We represent conversion within a hierarchy using RVALUE_CONV and
3611 BASE_CONV, as specified by [over.best.ics]; these become plain
3612 constructor calls, as specified in [dcl.init]. */
3613 gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
3614 || !DERIVED_FROM_P (totype, fromtype));
3616 if (MAYBE_CLASS_TYPE_P (totype))
3617 /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
3618 creating a garbage BASELINK; constructors can't be inherited. */
3619 ctors = lookup_fnfields_slot (totype, complete_ctor_identifier);
3621 if (MAYBE_CLASS_TYPE_P (fromtype))
3623 tree to_nonref = non_reference (totype);
3624 if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
3625 (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
3626 && DERIVED_FROM_P (to_nonref, fromtype)))
3628 /* [class.conv.fct] A conversion function is never used to
3629 convert a (possibly cv-qualified) object to the (possibly
3630 cv-qualified) same object type (or a reference to it), to a
3631 (possibly cv-qualified) base class of that type (or a
3632 reference to it)... */
3634 else
3635 conv_fns = lookup_conversions (fromtype);
3638 candidates = 0;
3639 flags |= LOOKUP_NO_CONVERSION;
3640 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3641 flags |= LOOKUP_NO_NARROWING;
3643 /* It's OK to bind a temporary for converting constructor arguments, but
3644 not in converting the return value of a conversion operator. */
3645 convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION);
3646 flags &= ~LOOKUP_NO_TEMP_BIND;
3648 if (ctors)
3650 int ctorflags = flags;
3652 first_arg = build_dummy_object (totype);
3654 /* We should never try to call the abstract or base constructor
3655 from here. */
3656 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
3657 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
3659 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3661 /* List-initialization. */
3662 add_list_candidates (ctors, first_arg, expr, totype, NULL_TREE,
3663 false, TYPE_BINFO (totype), TYPE_BINFO (totype),
3664 ctorflags, &candidates, complain);
3666 else
3668 args = make_tree_vector_single (expr);
3669 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
3670 TYPE_BINFO (totype), TYPE_BINFO (totype),
3671 ctorflags, &candidates, complain);
3674 for (cand = candidates; cand; cand = cand->next)
3676 cand->second_conv = build_identity_conv (totype, NULL_TREE);
3678 /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
3679 set, then this is copy-initialization. In that case, "The
3680 result of the call is then used to direct-initialize the
3681 object that is the destination of the copy-initialization."
3682 [dcl.init]
3684 We represent this in the conversion sequence with an
3685 rvalue conversion, which means a constructor call. */
3686 if (TREE_CODE (totype) != REFERENCE_TYPE
3687 && !(convflags & LOOKUP_NO_TEMP_BIND))
3688 cand->second_conv
3689 = build_conv (ck_rvalue, totype, cand->second_conv);
3693 if (conv_fns)
3694 first_arg = expr;
3696 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
3698 tree conversion_path = TREE_PURPOSE (conv_fns);
3699 struct z_candidate *old_candidates;
3701 /* If we are called to convert to a reference type, we are trying to
3702 find a direct binding, so don't even consider temporaries. If
3703 we don't find a direct binding, the caller will try again to
3704 look for a temporary binding. */
3705 if (TREE_CODE (totype) == REFERENCE_TYPE)
3706 convflags |= LOOKUP_NO_TEMP_BIND;
3708 old_candidates = candidates;
3709 add_candidates (TREE_VALUE (conv_fns), first_arg, NULL, totype,
3710 NULL_TREE, false,
3711 conversion_path, TYPE_BINFO (fromtype),
3712 flags, &candidates, complain);
3714 for (cand = candidates; cand != old_candidates; cand = cand->next)
3716 tree rettype = TREE_TYPE (TREE_TYPE (cand->fn));
3717 conversion *ics
3718 = implicit_conversion (totype,
3719 rettype,
3721 /*c_cast_p=*/false, convflags,
3722 complain);
3724 /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
3725 copy-initialization. In that case, "The result of the
3726 call is then used to direct-initialize the object that is
3727 the destination of the copy-initialization." [dcl.init]
3729 We represent this in the conversion sequence with an
3730 rvalue conversion, which means a constructor call. But
3731 don't add a second rvalue conversion if there's already
3732 one there. Which there really shouldn't be, but it's
3733 harmless since we'd add it here anyway. */
3734 if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
3735 && !(convflags & LOOKUP_NO_TEMP_BIND))
3736 ics = build_conv (ck_rvalue, totype, ics);
3738 cand->second_conv = ics;
3740 if (!ics)
3742 cand->viable = 0;
3743 cand->reason = arg_conversion_rejection (NULL_TREE, -2,
3744 rettype, totype);
3746 else if (DECL_NONCONVERTING_P (cand->fn)
3747 && ics->rank > cr_exact)
3749 /* 13.3.1.5: For direct-initialization, those explicit
3750 conversion functions that are not hidden within S and
3751 yield type T or a type that can be converted to type T
3752 with a qualification conversion (4.4) are also candidate
3753 functions. */
3754 /* 13.3.1.6 doesn't have a parallel restriction, but it should;
3755 I've raised this issue with the committee. --jason 9/2011 */
3756 cand->viable = -1;
3757 cand->reason = explicit_conversion_rejection (rettype, totype);
3759 else if (cand->viable == 1 && ics->bad_p)
3761 cand->viable = -1;
3762 cand->reason
3763 = bad_arg_conversion_rejection (NULL_TREE, -2,
3764 rettype, totype);
3766 else if (primary_template_instantiation_p (cand->fn)
3767 && ics->rank > cr_exact)
3769 /* 13.3.3.1.2: If the user-defined conversion is specified by
3770 a specialization of a conversion function template, the
3771 second standard conversion sequence shall have exact match
3772 rank. */
3773 cand->viable = -1;
3774 cand->reason = template_conversion_rejection (rettype, totype);
3779 candidates = splice_viable (candidates, false, &any_viable_p);
3780 if (!any_viable_p)
3782 if (args)
3783 release_tree_vector (args);
3784 return NULL;
3787 cand = tourney (candidates, complain);
3788 if (cand == 0)
3790 if (complain & tf_error)
3792 error ("conversion from %qT to %qT is ambiguous",
3793 fromtype, totype);
3794 print_z_candidates (location_of (expr), candidates);
3797 cand = candidates; /* any one will do */
3798 cand->second_conv = build_ambiguous_conv (totype, expr);
3799 cand->second_conv->user_conv_p = true;
3800 if (!any_strictly_viable (candidates))
3801 cand->second_conv->bad_p = true;
3802 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
3803 ambiguous conversion is no worse than another user-defined
3804 conversion. */
3806 return cand;
3809 tree convtype;
3810 if (!DECL_CONSTRUCTOR_P (cand->fn))
3811 convtype = non_reference (TREE_TYPE (TREE_TYPE (cand->fn)));
3812 else if (cand->second_conv->kind == ck_rvalue)
3813 /* DR 5: [in the first step of copy-initialization]...if the function
3814 is a constructor, the call initializes a temporary of the
3815 cv-unqualified version of the destination type. */
3816 convtype = cv_unqualified (totype);
3817 else
3818 convtype = totype;
3819 /* Build the user conversion sequence. */
3820 conv = build_conv
3821 (ck_user,
3822 convtype,
3823 build_identity_conv (TREE_TYPE (expr), expr));
3824 conv->cand = cand;
3825 if (cand->viable == -1)
3826 conv->bad_p = true;
3828 /* Remember that this was a list-initialization. */
3829 if (flags & LOOKUP_NO_NARROWING)
3830 conv->check_narrowing = true;
3832 /* Combine it with the second conversion sequence. */
3833 cand->second_conv = merge_conversion_sequences (conv,
3834 cand->second_conv);
3836 return cand;
3839 /* Wrapper for above. */
3841 tree
3842 build_user_type_conversion (tree totype, tree expr, int flags,
3843 tsubst_flags_t complain)
3845 struct z_candidate *cand;
3846 tree ret;
3848 bool subtime = timevar_cond_start (TV_OVERLOAD);
3849 cand = build_user_type_conversion_1 (totype, expr, flags, complain);
3851 if (cand)
3853 if (cand->second_conv->kind == ck_ambig)
3854 ret = error_mark_node;
3855 else
3857 expr = convert_like (cand->second_conv, expr, complain);
3858 ret = convert_from_reference (expr);
3861 else
3862 ret = NULL_TREE;
3864 timevar_cond_stop (TV_OVERLOAD, subtime);
3865 return ret;
3868 /* Subroutine of convert_nontype_argument.
3870 EXPR is an argument for a template non-type parameter of integral or
3871 enumeration type. Do any necessary conversions (that are permitted for
3872 non-type arguments) to convert it to the parameter type.
3874 If conversion is successful, returns the converted expression;
3875 otherwise, returns error_mark_node. */
3877 tree
3878 build_integral_nontype_arg_conv (tree type, tree expr, tsubst_flags_t complain)
3880 conversion *conv;
3881 void *p;
3882 tree t;
3883 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
3885 if (error_operand_p (expr))
3886 return error_mark_node;
3888 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
3890 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3891 p = conversion_obstack_alloc (0);
3893 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
3894 /*c_cast_p=*/false,
3895 LOOKUP_IMPLICIT, complain);
3897 /* for a non-type template-parameter of integral or
3898 enumeration type, integral promotions (4.5) and integral
3899 conversions (4.7) are applied. */
3900 /* It should be sufficient to check the outermost conversion step, since
3901 there are no qualification conversions to integer type. */
3902 if (conv)
3903 switch (conv->kind)
3905 /* A conversion function is OK. If it isn't constexpr, we'll
3906 complain later that the argument isn't constant. */
3907 case ck_user:
3908 /* The lvalue-to-rvalue conversion is OK. */
3909 case ck_rvalue:
3910 case ck_identity:
3911 break;
3913 case ck_std:
3914 t = next_conversion (conv)->type;
3915 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t))
3916 break;
3918 if (complain & tf_error)
3919 error_at (loc, "conversion from %qT to %qT not considered for "
3920 "non-type template argument", t, type);
3921 /* and fall through. */
3923 default:
3924 conv = NULL;
3925 break;
3928 if (conv)
3929 expr = convert_like (conv, expr, complain);
3930 else
3931 expr = error_mark_node;
3933 /* Free all the conversions we allocated. */
3934 obstack_free (&conversion_obstack, p);
3936 return expr;
3939 /* Do any initial processing on the arguments to a function call. */
3941 static vec<tree, va_gc> *
3942 resolve_args (vec<tree, va_gc> *args, tsubst_flags_t complain)
3944 unsigned int ix;
3945 tree arg;
3947 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
3949 if (error_operand_p (arg))
3950 return NULL;
3951 else if (VOID_TYPE_P (TREE_TYPE (arg)))
3953 if (complain & tf_error)
3954 error ("invalid use of void expression");
3955 return NULL;
3957 else if (invalid_nonstatic_memfn_p (arg, complain))
3958 return NULL;
3960 return args;
3963 /* Perform overload resolution on FN, which is called with the ARGS.
3965 Return the candidate function selected by overload resolution, or
3966 NULL if the event that overload resolution failed. In the case
3967 that overload resolution fails, *CANDIDATES will be the set of
3968 candidates considered, and ANY_VIABLE_P will be set to true or
3969 false to indicate whether or not any of the candidates were
3970 viable.
3972 The ARGS should already have gone through RESOLVE_ARGS before this
3973 function is called. */
3975 static struct z_candidate *
3976 perform_overload_resolution (tree fn,
3977 const vec<tree, va_gc> *args,
3978 struct z_candidate **candidates,
3979 bool *any_viable_p, tsubst_flags_t complain)
3981 struct z_candidate *cand;
3982 tree explicit_targs;
3983 int template_only;
3985 bool subtime = timevar_cond_start (TV_OVERLOAD);
3987 explicit_targs = NULL_TREE;
3988 template_only = 0;
3990 *candidates = NULL;
3991 *any_viable_p = true;
3993 /* Check FN. */
3994 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
3995 || TREE_CODE (fn) == TEMPLATE_DECL
3996 || TREE_CODE (fn) == OVERLOAD
3997 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
3999 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4001 explicit_targs = TREE_OPERAND (fn, 1);
4002 fn = TREE_OPERAND (fn, 0);
4003 template_only = 1;
4006 /* Add the various candidate functions. */
4007 add_candidates (fn, NULL_TREE, args, NULL_TREE,
4008 explicit_targs, template_only,
4009 /*conversion_path=*/NULL_TREE,
4010 /*access_path=*/NULL_TREE,
4011 LOOKUP_NORMAL,
4012 candidates, complain);
4014 *candidates = splice_viable (*candidates, false, any_viable_p);
4015 if (*any_viable_p)
4016 cand = tourney (*candidates, complain);
4017 else
4018 cand = NULL;
4020 timevar_cond_stop (TV_OVERLOAD, subtime);
4021 return cand;
4024 /* Print an error message about being unable to build a call to FN with
4025 ARGS. ANY_VIABLE_P indicates whether any candidate functions could
4026 be located; CANDIDATES is a possibly empty list of such
4027 functions. */
4029 static void
4030 print_error_for_call_failure (tree fn, vec<tree, va_gc> *args,
4031 struct z_candidate *candidates)
4033 tree name = DECL_NAME (OVL_CURRENT (fn));
4034 location_t loc = location_of (name);
4036 if (!any_strictly_viable (candidates))
4037 error_at (loc, "no matching function for call to %<%D(%A)%>",
4038 name, build_tree_list_vec (args));
4039 else
4040 error_at (loc, "call of overloaded %<%D(%A)%> is ambiguous",
4041 name, build_tree_list_vec (args));
4042 if (candidates)
4043 print_z_candidates (loc, candidates);
4046 /* Return an expression for a call to FN (a namespace-scope function,
4047 or a static member function) with the ARGS. This may change
4048 ARGS. */
4050 tree
4051 build_new_function_call (tree fn, vec<tree, va_gc> **args, bool koenig_p,
4052 tsubst_flags_t complain)
4054 struct z_candidate *candidates, *cand;
4055 bool any_viable_p;
4056 void *p;
4057 tree result;
4059 if (args != NULL && *args != NULL)
4061 *args = resolve_args (*args, complain);
4062 if (*args == NULL)
4063 return error_mark_node;
4066 if (flag_tm)
4067 tm_malloc_replacement (fn);
4069 /* If this function was found without using argument dependent
4070 lookup, then we want to ignore any undeclared friend
4071 functions. */
4072 if (!koenig_p)
4074 tree orig_fn = fn;
4076 fn = remove_hidden_names (fn);
4077 if (!fn)
4079 if (complain & tf_error)
4080 print_error_for_call_failure (orig_fn, *args, NULL);
4081 return error_mark_node;
4085 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4086 p = conversion_obstack_alloc (0);
4088 cand = perform_overload_resolution (fn, *args, &candidates, &any_viable_p,
4089 complain);
4091 if (!cand)
4093 if (complain & tf_error)
4095 if (!any_viable_p && candidates && ! candidates->next
4096 && (TREE_CODE (candidates->fn) == FUNCTION_DECL))
4097 return cp_build_function_call_vec (candidates->fn, args, complain);
4098 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4099 fn = TREE_OPERAND (fn, 0);
4100 print_error_for_call_failure (fn, *args, candidates);
4102 result = error_mark_node;
4104 else
4106 int flags = LOOKUP_NORMAL;
4107 /* If fn is template_id_expr, the call has explicit template arguments
4108 (e.g. func<int>(5)), communicate this info to build_over_call
4109 through flags so that later we can use it to decide whether to warn
4110 about peculiar null pointer conversion. */
4111 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4112 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
4113 result = build_over_call (cand, flags, complain);
4116 /* Free all the conversions we allocated. */
4117 obstack_free (&conversion_obstack, p);
4119 return result;
4122 /* Build a call to a global operator new. FNNAME is the name of the
4123 operator (either "operator new" or "operator new[]") and ARGS are
4124 the arguments provided. This may change ARGS. *SIZE points to the
4125 total number of bytes required by the allocation, and is updated if
4126 that is changed here. *COOKIE_SIZE is non-NULL if a cookie should
4127 be used. If this function determines that no cookie should be
4128 used, after all, *COOKIE_SIZE is set to NULL_TREE. If SIZE_CHECK
4129 is not NULL_TREE, it is evaluated before calculating the final
4130 array size, and if it fails, the array size is replaced with
4131 (size_t)-1 (usually triggering a std::bad_alloc exception). If FN
4132 is non-NULL, it will be set, upon return, to the allocation
4133 function called. */
4135 tree
4136 build_operator_new_call (tree fnname, vec<tree, va_gc> **args,
4137 tree *size, tree *cookie_size, tree size_check,
4138 tree *fn, tsubst_flags_t complain)
4140 tree original_size = *size;
4141 tree fns;
4142 struct z_candidate *candidates;
4143 struct z_candidate *cand;
4144 bool any_viable_p;
4146 if (fn)
4147 *fn = NULL_TREE;
4148 /* Set to (size_t)-1 if the size check fails. */
4149 if (size_check != NULL_TREE)
4151 tree errval = TYPE_MAX_VALUE (sizetype);
4152 if (cxx_dialect >= cxx11 && flag_exceptions)
4153 errval = throw_bad_array_new_length ();
4154 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4155 original_size, errval);
4157 vec_safe_insert (*args, 0, *size);
4158 *args = resolve_args (*args, complain);
4159 if (*args == NULL)
4160 return error_mark_node;
4162 /* Based on:
4164 [expr.new]
4166 If this lookup fails to find the name, or if the allocated type
4167 is not a class type, the allocation function's name is looked
4168 up in the global scope.
4170 we disregard block-scope declarations of "operator new". */
4171 fns = lookup_function_nonclass (fnname, *args, /*block_p=*/false);
4173 /* Figure out what function is being called. */
4174 cand = perform_overload_resolution (fns, *args, &candidates, &any_viable_p,
4175 complain);
4177 /* If no suitable function could be found, issue an error message
4178 and give up. */
4179 if (!cand)
4181 if (complain & tf_error)
4182 print_error_for_call_failure (fns, *args, candidates);
4183 return error_mark_node;
4186 /* If a cookie is required, add some extra space. Whether
4187 or not a cookie is required cannot be determined until
4188 after we know which function was called. */
4189 if (*cookie_size)
4191 bool use_cookie = true;
4192 if (!abi_version_at_least (2))
4194 /* In G++ 3.2, the check was implemented incorrectly; it
4195 looked at the placement expression, rather than the
4196 type of the function. */
4197 if ((*args)->length () == 2
4198 && same_type_p (TREE_TYPE ((**args)[1]), ptr_type_node))
4199 use_cookie = false;
4201 else
4203 tree arg_types;
4205 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
4206 /* Skip the size_t parameter. */
4207 arg_types = TREE_CHAIN (arg_types);
4208 /* Check the remaining parameters (if any). */
4209 if (arg_types
4210 && TREE_CHAIN (arg_types) == void_list_node
4211 && same_type_p (TREE_VALUE (arg_types),
4212 ptr_type_node))
4213 use_cookie = false;
4215 /* If we need a cookie, adjust the number of bytes allocated. */
4216 if (use_cookie)
4218 /* Update the total size. */
4219 *size = size_binop (PLUS_EXPR, original_size, *cookie_size);
4220 /* Set to (size_t)-1 if the size check fails. */
4221 gcc_assert (size_check != NULL_TREE);
4222 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4223 *size, TYPE_MAX_VALUE (sizetype));
4224 /* Update the argument list to reflect the adjusted size. */
4225 (**args)[0] = *size;
4227 else
4228 *cookie_size = NULL_TREE;
4231 /* Tell our caller which function we decided to call. */
4232 if (fn)
4233 *fn = cand->fn;
4235 /* Build the CALL_EXPR. */
4236 return build_over_call (cand, LOOKUP_NORMAL, complain);
4239 /* Build a new call to operator(). This may change ARGS. */
4241 static tree
4242 build_op_call_1 (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4244 struct z_candidate *candidates = 0, *cand;
4245 tree fns, convs, first_mem_arg = NULL_TREE;
4246 tree type = TREE_TYPE (obj);
4247 bool any_viable_p;
4248 tree result = NULL_TREE;
4249 void *p;
4251 if (error_operand_p (obj))
4252 return error_mark_node;
4254 obj = prep_operand (obj);
4256 if (TYPE_PTRMEMFUNC_P (type))
4258 if (complain & tf_error)
4259 /* It's no good looking for an overloaded operator() on a
4260 pointer-to-member-function. */
4261 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
4262 return error_mark_node;
4265 if (TYPE_BINFO (type))
4267 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
4268 if (fns == error_mark_node)
4269 return error_mark_node;
4271 else
4272 fns = NULL_TREE;
4274 if (args != NULL && *args != NULL)
4276 *args = resolve_args (*args, complain);
4277 if (*args == NULL)
4278 return error_mark_node;
4281 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4282 p = conversion_obstack_alloc (0);
4284 if (fns)
4286 first_mem_arg = obj;
4288 add_candidates (BASELINK_FUNCTIONS (fns),
4289 first_mem_arg, *args, NULL_TREE,
4290 NULL_TREE, false,
4291 BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
4292 LOOKUP_NORMAL, &candidates, complain);
4295 convs = lookup_conversions (type);
4297 for (; convs; convs = TREE_CHAIN (convs))
4299 tree fns = TREE_VALUE (convs);
4300 tree totype = TREE_TYPE (convs);
4302 if (TYPE_PTRFN_P (totype)
4303 || TYPE_REFFN_P (totype)
4304 || (TREE_CODE (totype) == REFERENCE_TYPE
4305 && TYPE_PTRFN_P (TREE_TYPE (totype))))
4306 for (; fns; fns = OVL_NEXT (fns))
4308 tree fn = OVL_CURRENT (fns);
4310 if (DECL_NONCONVERTING_P (fn))
4311 continue;
4313 if (TREE_CODE (fn) == TEMPLATE_DECL)
4314 add_template_conv_candidate
4315 (&candidates, fn, obj, NULL_TREE, *args, totype,
4316 /*access_path=*/NULL_TREE,
4317 /*conversion_path=*/NULL_TREE, complain);
4318 else
4319 add_conv_candidate (&candidates, fn, obj, NULL_TREE,
4320 *args, /*conversion_path=*/NULL_TREE,
4321 /*access_path=*/NULL_TREE, complain);
4325 /* Be strict here because if we choose a bad conversion candidate, the
4326 errors we get won't mention the call context. */
4327 candidates = splice_viable (candidates, true, &any_viable_p);
4328 if (!any_viable_p)
4330 if (complain & tf_error)
4332 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj),
4333 build_tree_list_vec (*args));
4334 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4336 result = error_mark_node;
4338 else
4340 cand = tourney (candidates, complain);
4341 if (cand == 0)
4343 if (complain & tf_error)
4345 error ("call of %<(%T) (%A)%> is ambiguous",
4346 TREE_TYPE (obj), build_tree_list_vec (*args));
4347 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4349 result = error_mark_node;
4351 /* Since cand->fn will be a type, not a function, for a conversion
4352 function, we must be careful not to unconditionally look at
4353 DECL_NAME here. */
4354 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
4355 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
4356 result = build_over_call (cand, LOOKUP_NORMAL, complain);
4357 else
4359 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1,
4360 complain);
4361 obj = convert_from_reference (obj);
4362 result = cp_build_function_call_vec (obj, args, complain);
4366 /* Free all the conversions we allocated. */
4367 obstack_free (&conversion_obstack, p);
4369 return result;
4372 /* Wrapper for above. */
4374 tree
4375 build_op_call (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4377 tree ret;
4378 bool subtime = timevar_cond_start (TV_OVERLOAD);
4379 ret = build_op_call_1 (obj, args, complain);
4380 timevar_cond_stop (TV_OVERLOAD, subtime);
4381 return ret;
4384 /* Called by op_error to prepare format strings suitable for the error
4385 function. It concatenates a prefix (controlled by MATCH), ERRMSG,
4386 and a suffix (controlled by NTYPES). */
4388 static const char *
4389 op_error_string (const char *errmsg, int ntypes, bool match)
4391 const char *msg;
4393 const char *msgp = concat (match ? G_("ambiguous overload for ")
4394 : G_("no match for "), errmsg, NULL);
4396 if (ntypes == 3)
4397 msg = concat (msgp, G_(" (operand types are %qT, %qT, and %qT)"), NULL);
4398 else if (ntypes == 2)
4399 msg = concat (msgp, G_(" (operand types are %qT and %qT)"), NULL);
4400 else
4401 msg = concat (msgp, G_(" (operand type is %qT)"), NULL);
4403 return msg;
4406 static void
4407 op_error (location_t loc, enum tree_code code, enum tree_code code2,
4408 tree arg1, tree arg2, tree arg3, bool match)
4410 const char *opname;
4412 if (code == MODIFY_EXPR)
4413 opname = assignment_operator_name_info[code2].name;
4414 else
4415 opname = operator_name_info[code].name;
4417 switch (code)
4419 case COND_EXPR:
4420 if (flag_diagnostics_show_caret)
4421 error_at (loc, op_error_string (G_("ternary %<operator?:%>"),
4422 3, match),
4423 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4424 else
4425 error_at (loc, op_error_string (G_("ternary %<operator?:%> "
4426 "in %<%E ? %E : %E%>"), 3, match),
4427 arg1, arg2, arg3,
4428 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4429 break;
4431 case POSTINCREMENT_EXPR:
4432 case POSTDECREMENT_EXPR:
4433 if (flag_diagnostics_show_caret)
4434 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4435 opname, TREE_TYPE (arg1));
4436 else
4437 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E%s%>"),
4438 1, match),
4439 opname, arg1, opname, TREE_TYPE (arg1));
4440 break;
4442 case ARRAY_REF:
4443 if (flag_diagnostics_show_caret)
4444 error_at (loc, op_error_string (G_("%<operator[]%>"), 2, match),
4445 TREE_TYPE (arg1), TREE_TYPE (arg2));
4446 else
4447 error_at (loc, op_error_string (G_("%<operator[]%> in %<%E[%E]%>"),
4448 2, match),
4449 arg1, arg2, TREE_TYPE (arg1), TREE_TYPE (arg2));
4450 break;
4452 case REALPART_EXPR:
4453 case IMAGPART_EXPR:
4454 if (flag_diagnostics_show_caret)
4455 error_at (loc, op_error_string (G_("%qs"), 1, match),
4456 opname, TREE_TYPE (arg1));
4457 else
4458 error_at (loc, op_error_string (G_("%qs in %<%s %E%>"), 1, match),
4459 opname, opname, arg1, TREE_TYPE (arg1));
4460 break;
4462 default:
4463 if (arg2)
4464 if (flag_diagnostics_show_caret)
4465 error_at (loc, op_error_string (G_("%<operator%s%>"), 2, match),
4466 opname, TREE_TYPE (arg1), TREE_TYPE (arg2));
4467 else
4468 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E %s %E%>"),
4469 2, match),
4470 opname, arg1, opname, arg2,
4471 TREE_TYPE (arg1), TREE_TYPE (arg2));
4472 else
4473 if (flag_diagnostics_show_caret)
4474 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4475 opname, TREE_TYPE (arg1));
4476 else
4477 error_at (loc, op_error_string (G_("%<operator%s%> in %<%s%E%>"),
4478 1, match),
4479 opname, opname, arg1, TREE_TYPE (arg1));
4480 break;
4484 /* Return the implicit conversion sequence that could be used to
4485 convert E1 to E2 in [expr.cond]. */
4487 static conversion *
4488 conditional_conversion (tree e1, tree e2, tsubst_flags_t complain)
4490 tree t1 = non_reference (TREE_TYPE (e1));
4491 tree t2 = non_reference (TREE_TYPE (e2));
4492 conversion *conv;
4493 bool good_base;
4495 /* [expr.cond]
4497 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
4498 implicitly converted (clause _conv_) to the type "lvalue reference to
4499 T2", subject to the constraint that in the conversion the
4500 reference must bind directly (_dcl.init.ref_) to an lvalue.
4502 If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
4503 implicitly converted to the type "rvalue reference to T2", subject to
4504 the constraint that the reference must bind directly. */
4505 if (lvalue_or_rvalue_with_address_p (e2))
4507 tree rtype = cp_build_reference_type (t2, !real_lvalue_p (e2));
4508 conv = implicit_conversion (rtype,
4511 /*c_cast_p=*/false,
4512 LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND
4513 |LOOKUP_ONLYCONVERTING,
4514 complain);
4515 if (conv && !conv->bad_p)
4516 return conv;
4519 /* If E2 is a prvalue or if neither of the conversions above can be done
4520 and at least one of the operands has (possibly cv-qualified) class
4521 type: */
4522 if (!CLASS_TYPE_P (t1) && !CLASS_TYPE_P (t2))
4523 return NULL;
4525 /* [expr.cond]
4527 If E1 and E2 have class type, and the underlying class types are
4528 the same or one is a base class of the other: E1 can be converted
4529 to match E2 if the class of T2 is the same type as, or a base
4530 class of, the class of T1, and the cv-qualification of T2 is the
4531 same cv-qualification as, or a greater cv-qualification than, the
4532 cv-qualification of T1. If the conversion is applied, E1 is
4533 changed to an rvalue of type T2 that still refers to the original
4534 source class object (or the appropriate subobject thereof). */
4535 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
4536 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
4538 if (good_base && at_least_as_qualified_p (t2, t1))
4540 conv = build_identity_conv (t1, e1);
4541 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
4542 TYPE_MAIN_VARIANT (t2)))
4543 conv = build_conv (ck_base, t2, conv);
4544 else
4545 conv = build_conv (ck_rvalue, t2, conv);
4546 return conv;
4548 else
4549 return NULL;
4551 else
4552 /* [expr.cond]
4554 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
4555 converted to the type that expression E2 would have if E2 were
4556 converted to an rvalue (or the type it has, if E2 is an rvalue). */
4557 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
4558 LOOKUP_IMPLICIT, complain);
4561 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4562 arguments to the conditional expression. */
4564 static tree
4565 build_conditional_expr_1 (location_t loc, tree arg1, tree arg2, tree arg3,
4566 tsubst_flags_t complain)
4568 tree arg2_type;
4569 tree arg3_type;
4570 tree result = NULL_TREE;
4571 tree result_type = NULL_TREE;
4572 bool lvalue_p = true;
4573 struct z_candidate *candidates = 0;
4574 struct z_candidate *cand;
4575 void *p;
4576 tree orig_arg2, orig_arg3;
4578 /* As a G++ extension, the second argument to the conditional can be
4579 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
4580 c'.) If the second operand is omitted, make sure it is
4581 calculated only once. */
4582 if (!arg2)
4584 if (complain & tf_error)
4585 pedwarn (loc, OPT_Wpedantic,
4586 "ISO C++ forbids omitting the middle term of a ?: expression");
4588 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
4589 if (real_lvalue_p (arg1))
4590 arg2 = arg1 = stabilize_reference (arg1);
4591 else
4592 arg2 = arg1 = save_expr (arg1);
4595 /* If something has already gone wrong, just pass that fact up the
4596 tree. */
4597 if (error_operand_p (arg1)
4598 || error_operand_p (arg2)
4599 || error_operand_p (arg3))
4600 return error_mark_node;
4602 orig_arg2 = arg2;
4603 orig_arg3 = arg3;
4605 if (VECTOR_INTEGER_TYPE_P (TREE_TYPE (arg1)))
4607 arg1 = force_rvalue (arg1, complain);
4608 arg2 = force_rvalue (arg2, complain);
4609 arg3 = force_rvalue (arg3, complain);
4611 /* force_rvalue can return error_mark on valid arguments. */
4612 if (error_operand_p (arg1)
4613 || error_operand_p (arg2)
4614 || error_operand_p (arg3))
4615 return error_mark_node;
4617 tree arg1_type = TREE_TYPE (arg1);
4618 arg2_type = TREE_TYPE (arg2);
4619 arg3_type = TREE_TYPE (arg3);
4621 if (TREE_CODE (arg2_type) != VECTOR_TYPE
4622 && TREE_CODE (arg3_type) != VECTOR_TYPE)
4624 /* Rely on the error messages of the scalar version. */
4625 tree scal = build_conditional_expr_1 (loc, integer_one_node,
4626 orig_arg2, orig_arg3, complain);
4627 if (scal == error_mark_node)
4628 return error_mark_node;
4629 tree stype = TREE_TYPE (scal);
4630 tree ctype = TREE_TYPE (arg1_type);
4631 if (TYPE_SIZE (stype) != TYPE_SIZE (ctype)
4632 || (!INTEGRAL_TYPE_P (stype) && !SCALAR_FLOAT_TYPE_P (stype)))
4634 if (complain & tf_error)
4635 error_at (loc, "inferred scalar type %qT is not an integer or "
4636 "floating point type of the same size as %qT", stype,
4637 COMPARISON_CLASS_P (arg1)
4638 ? TREE_TYPE (TREE_TYPE (TREE_OPERAND (arg1, 0)))
4639 : ctype);
4640 return error_mark_node;
4643 tree vtype = build_opaque_vector_type (stype,
4644 TYPE_VECTOR_SUBPARTS (arg1_type));
4645 /* We could pass complain & tf_warning to unsafe_conversion_p,
4646 but the warnings (like Wsign-conversion) have already been
4647 given by the scalar build_conditional_expr_1. We still check
4648 unsafe_conversion_p to forbid truncating long long -> float. */
4649 if (unsafe_conversion_p (loc, stype, arg2, false))
4651 if (complain & tf_error)
4652 error_at (loc, "conversion of scalar %qT to vector %qT "
4653 "involves truncation", arg2_type, vtype);
4654 return error_mark_node;
4656 if (unsafe_conversion_p (loc, stype, arg3, false))
4658 if (complain & tf_error)
4659 error_at (loc, "conversion of scalar %qT to vector %qT "
4660 "involves truncation", arg3_type, vtype);
4661 return error_mark_node;
4664 arg2 = cp_convert (stype, arg2, complain);
4665 arg2 = save_expr (arg2);
4666 arg2 = build_vector_from_val (vtype, arg2);
4667 arg2_type = vtype;
4668 arg3 = cp_convert (stype, arg3, complain);
4669 arg3 = save_expr (arg3);
4670 arg3 = build_vector_from_val (vtype, arg3);
4671 arg3_type = vtype;
4674 if ((TREE_CODE (arg2_type) == VECTOR_TYPE)
4675 != (TREE_CODE (arg3_type) == VECTOR_TYPE))
4677 enum stv_conv convert_flag =
4678 scalar_to_vector (loc, VEC_COND_EXPR, arg2, arg3,
4679 complain & tf_error);
4681 switch (convert_flag)
4683 case stv_error:
4684 return error_mark_node;
4685 case stv_firstarg:
4687 arg2 = save_expr (arg2);
4688 arg2 = convert (TREE_TYPE (arg3_type), arg2);
4689 arg2 = build_vector_from_val (arg3_type, arg2);
4690 arg2_type = TREE_TYPE (arg2);
4691 break;
4693 case stv_secondarg:
4695 arg3 = save_expr (arg3);
4696 arg3 = convert (TREE_TYPE (arg2_type), arg3);
4697 arg3 = build_vector_from_val (arg2_type, arg3);
4698 arg3_type = TREE_TYPE (arg3);
4699 break;
4701 default:
4702 break;
4706 if (!same_type_p (arg2_type, arg3_type)
4707 || TYPE_VECTOR_SUBPARTS (arg1_type)
4708 != TYPE_VECTOR_SUBPARTS (arg2_type)
4709 || TYPE_SIZE (arg1_type) != TYPE_SIZE (arg2_type))
4711 if (complain & tf_error)
4712 error_at (loc,
4713 "incompatible vector types in conditional expression: "
4714 "%qT, %qT and %qT", TREE_TYPE (arg1),
4715 TREE_TYPE (orig_arg2), TREE_TYPE (orig_arg3));
4716 return error_mark_node;
4719 if (!COMPARISON_CLASS_P (arg1))
4720 arg1 = cp_build_binary_op (loc, NE_EXPR, arg1,
4721 build_zero_cst (arg1_type), complain);
4722 return fold_build3 (VEC_COND_EXPR, arg2_type, arg1, arg2, arg3);
4725 /* [expr.cond]
4727 The first expression is implicitly converted to bool (clause
4728 _conv_). */
4729 arg1 = perform_implicit_conversion_flags (boolean_type_node, arg1, complain,
4730 LOOKUP_NORMAL);
4731 if (error_operand_p (arg1))
4732 return error_mark_node;
4734 /* [expr.cond]
4736 If either the second or the third operand has type (possibly
4737 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
4738 array-to-pointer (_conv.array_), and function-to-pointer
4739 (_conv.func_) standard conversions are performed on the second
4740 and third operands. */
4741 arg2_type = unlowered_expr_type (arg2);
4742 arg3_type = unlowered_expr_type (arg3);
4743 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
4745 /* Do the conversions. We don't these for `void' type arguments
4746 since it can't have any effect and since decay_conversion
4747 does not handle that case gracefully. */
4748 if (!VOID_TYPE_P (arg2_type))
4749 arg2 = decay_conversion (arg2, complain);
4750 if (!VOID_TYPE_P (arg3_type))
4751 arg3 = decay_conversion (arg3, complain);
4752 arg2_type = TREE_TYPE (arg2);
4753 arg3_type = TREE_TYPE (arg3);
4755 /* [expr.cond]
4757 One of the following shall hold:
4759 --The second or the third operand (but not both) is a
4760 throw-expression (_except.throw_); the result is of the
4761 type of the other and is an rvalue.
4763 --Both the second and the third operands have type void; the
4764 result is of type void and is an rvalue.
4766 We must avoid calling force_rvalue for expressions of type
4767 "void" because it will complain that their value is being
4768 used. */
4769 if (TREE_CODE (arg2) == THROW_EXPR
4770 && TREE_CODE (arg3) != THROW_EXPR)
4772 if (!VOID_TYPE_P (arg3_type))
4774 arg3 = force_rvalue (arg3, complain);
4775 if (arg3 == error_mark_node)
4776 return error_mark_node;
4778 arg3_type = TREE_TYPE (arg3);
4779 result_type = arg3_type;
4781 else if (TREE_CODE (arg2) != THROW_EXPR
4782 && TREE_CODE (arg3) == THROW_EXPR)
4784 if (!VOID_TYPE_P (arg2_type))
4786 arg2 = force_rvalue (arg2, complain);
4787 if (arg2 == error_mark_node)
4788 return error_mark_node;
4790 arg2_type = TREE_TYPE (arg2);
4791 result_type = arg2_type;
4793 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
4794 result_type = void_type_node;
4795 else
4797 if (complain & tf_error)
4799 if (VOID_TYPE_P (arg2_type))
4800 error_at (EXPR_LOC_OR_LOC (arg3, loc),
4801 "second operand to the conditional operator "
4802 "is of type %<void%>, but the third operand is "
4803 "neither a throw-expression nor of type %<void%>");
4804 else
4805 error_at (EXPR_LOC_OR_LOC (arg2, loc),
4806 "third operand to the conditional operator "
4807 "is of type %<void%>, but the second operand is "
4808 "neither a throw-expression nor of type %<void%>");
4810 return error_mark_node;
4813 lvalue_p = false;
4814 goto valid_operands;
4816 /* [expr.cond]
4818 Otherwise, if the second and third operand have different types,
4819 and either has (possibly cv-qualified) class type, or if both are
4820 glvalues of the same value category and the same type except for
4821 cv-qualification, an attempt is made to convert each of those operands
4822 to the type of the other. */
4823 else if (!same_type_p (arg2_type, arg3_type)
4824 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)
4825 || (same_type_ignoring_top_level_qualifiers_p (arg2_type,
4826 arg3_type)
4827 && lvalue_or_rvalue_with_address_p (arg2)
4828 && lvalue_or_rvalue_with_address_p (arg3)
4829 && real_lvalue_p (arg2) == real_lvalue_p (arg3))))
4831 conversion *conv2;
4832 conversion *conv3;
4834 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4835 p = conversion_obstack_alloc (0);
4837 conv2 = conditional_conversion (arg2, arg3, complain);
4838 conv3 = conditional_conversion (arg3, arg2, complain);
4840 /* [expr.cond]
4842 If both can be converted, or one can be converted but the
4843 conversion is ambiguous, the program is ill-formed. If
4844 neither can be converted, the operands are left unchanged and
4845 further checking is performed as described below. If exactly
4846 one conversion is possible, that conversion is applied to the
4847 chosen operand and the converted operand is used in place of
4848 the original operand for the remainder of this section. */
4849 if ((conv2 && !conv2->bad_p
4850 && conv3 && !conv3->bad_p)
4851 || (conv2 && conv2->kind == ck_ambig)
4852 || (conv3 && conv3->kind == ck_ambig))
4854 if (complain & tf_error)
4856 error_at (loc, "operands to ?: have different types %qT and %qT",
4857 arg2_type, arg3_type);
4858 if (conv2 && !conv2->bad_p && conv3 && !conv3->bad_p)
4859 inform (loc, " and each type can be converted to the other");
4860 else if (conv2 && conv2->kind == ck_ambig)
4861 convert_like (conv2, arg2, complain);
4862 else
4863 convert_like (conv3, arg3, complain);
4865 result = error_mark_node;
4867 else if (conv2 && !conv2->bad_p)
4869 arg2 = convert_like (conv2, arg2, complain);
4870 arg2 = convert_from_reference (arg2);
4871 arg2_type = TREE_TYPE (arg2);
4872 /* Even if CONV2 is a valid conversion, the result of the
4873 conversion may be invalid. For example, if ARG3 has type
4874 "volatile X", and X does not have a copy constructor
4875 accepting a "volatile X&", then even if ARG2 can be
4876 converted to X, the conversion will fail. */
4877 if (error_operand_p (arg2))
4878 result = error_mark_node;
4880 else if (conv3 && !conv3->bad_p)
4882 arg3 = convert_like (conv3, arg3, complain);
4883 arg3 = convert_from_reference (arg3);
4884 arg3_type = TREE_TYPE (arg3);
4885 if (error_operand_p (arg3))
4886 result = error_mark_node;
4889 /* Free all the conversions we allocated. */
4890 obstack_free (&conversion_obstack, p);
4892 if (result)
4893 return result;
4895 /* If, after the conversion, both operands have class type,
4896 treat the cv-qualification of both operands as if it were the
4897 union of the cv-qualification of the operands.
4899 The standard is not clear about what to do in this
4900 circumstance. For example, if the first operand has type
4901 "const X" and the second operand has a user-defined
4902 conversion to "volatile X", what is the type of the second
4903 operand after this step? Making it be "const X" (matching
4904 the first operand) seems wrong, as that discards the
4905 qualification without actually performing a copy. Leaving it
4906 as "volatile X" seems wrong as that will result in the
4907 conditional expression failing altogether, even though,
4908 according to this step, the one operand could be converted to
4909 the type of the other. */
4910 if (((conv2 && !conv2->bad_p)
4911 || (conv3 && !conv3->bad_p))
4912 && CLASS_TYPE_P (arg2_type)
4913 && cp_type_quals (arg2_type) != cp_type_quals (arg3_type))
4914 arg2_type = arg3_type =
4915 cp_build_qualified_type (arg2_type,
4916 cp_type_quals (arg2_type)
4917 | cp_type_quals (arg3_type));
4920 /* [expr.cond]
4922 If the second and third operands are glvalues of the same value
4923 category and have the same type, the result is of that type and
4924 value category. */
4925 if (((real_lvalue_p (arg2) && real_lvalue_p (arg3))
4926 || (xvalue_p (arg2) && xvalue_p (arg3)))
4927 && same_type_p (arg2_type, arg3_type))
4929 result_type = arg2_type;
4930 arg2 = mark_lvalue_use (arg2);
4931 arg3 = mark_lvalue_use (arg3);
4932 goto valid_operands;
4935 /* [expr.cond]
4937 Otherwise, the result is an rvalue. If the second and third
4938 operand do not have the same type, and either has (possibly
4939 cv-qualified) class type, overload resolution is used to
4940 determine the conversions (if any) to be applied to the operands
4941 (_over.match.oper_, _over.built_). */
4942 lvalue_p = false;
4943 if (!same_type_p (arg2_type, arg3_type)
4944 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4946 tree args[3];
4947 conversion *conv;
4948 bool any_viable_p;
4950 /* Rearrange the arguments so that add_builtin_candidate only has
4951 to know about two args. In build_builtin_candidate, the
4952 arguments are unscrambled. */
4953 args[0] = arg2;
4954 args[1] = arg3;
4955 args[2] = arg1;
4956 add_builtin_candidates (&candidates,
4957 COND_EXPR,
4958 NOP_EXPR,
4959 ansi_opname (COND_EXPR),
4960 args,
4961 LOOKUP_NORMAL, complain);
4963 /* [expr.cond]
4965 If the overload resolution fails, the program is
4966 ill-formed. */
4967 candidates = splice_viable (candidates, false, &any_viable_p);
4968 if (!any_viable_p)
4970 if (complain & tf_error)
4971 error_at (loc, "operands to ?: have different types %qT and %qT",
4972 arg2_type, arg3_type);
4973 return error_mark_node;
4975 cand = tourney (candidates, complain);
4976 if (!cand)
4978 if (complain & tf_error)
4980 op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
4981 print_z_candidates (loc, candidates);
4983 return error_mark_node;
4986 /* [expr.cond]
4988 Otherwise, the conversions thus determined are applied, and
4989 the converted operands are used in place of the original
4990 operands for the remainder of this section. */
4991 conv = cand->convs[0];
4992 arg1 = convert_like (conv, arg1, complain);
4993 conv = cand->convs[1];
4994 arg2 = convert_like (conv, arg2, complain);
4995 arg2_type = TREE_TYPE (arg2);
4996 conv = cand->convs[2];
4997 arg3 = convert_like (conv, arg3, complain);
4998 arg3_type = TREE_TYPE (arg3);
5001 /* [expr.cond]
5003 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
5004 and function-to-pointer (_conv.func_) standard conversions are
5005 performed on the second and third operands.
5007 We need to force the lvalue-to-rvalue conversion here for class types,
5008 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
5009 that isn't wrapped with a TARGET_EXPR plays havoc with exception
5010 regions. */
5012 arg2 = force_rvalue (arg2, complain);
5013 if (!CLASS_TYPE_P (arg2_type))
5014 arg2_type = TREE_TYPE (arg2);
5016 arg3 = force_rvalue (arg3, complain);
5017 if (!CLASS_TYPE_P (arg3_type))
5018 arg3_type = TREE_TYPE (arg3);
5020 if (arg2 == error_mark_node || arg3 == error_mark_node)
5021 return error_mark_node;
5023 /* [expr.cond]
5025 After those conversions, one of the following shall hold:
5027 --The second and third operands have the same type; the result is of
5028 that type. */
5029 if (same_type_p (arg2_type, arg3_type))
5030 result_type = arg2_type;
5031 /* [expr.cond]
5033 --The second and third operands have arithmetic or enumeration
5034 type; the usual arithmetic conversions are performed to bring
5035 them to a common type, and the result is of that type. */
5036 else if ((ARITHMETIC_TYPE_P (arg2_type)
5037 || UNSCOPED_ENUM_P (arg2_type))
5038 && (ARITHMETIC_TYPE_P (arg3_type)
5039 || UNSCOPED_ENUM_P (arg3_type)))
5041 /* In this case, there is always a common type. */
5042 result_type = type_after_usual_arithmetic_conversions (arg2_type,
5043 arg3_type);
5044 if (complain & tf_warning)
5045 do_warn_double_promotion (result_type, arg2_type, arg3_type,
5046 "implicit conversion from %qT to %qT to "
5047 "match other result of conditional",
5048 loc);
5050 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
5051 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
5053 if (TREE_CODE (orig_arg2) == CONST_DECL
5054 && TREE_CODE (orig_arg3) == CONST_DECL
5055 && DECL_CONTEXT (orig_arg2) == DECL_CONTEXT (orig_arg3))
5056 /* Two enumerators from the same enumeration can have different
5057 types when the enumeration is still being defined. */;
5058 else if (complain & tf_warning)
5059 warning_at (loc, OPT_Wenum_compare, "enumeral mismatch in "
5060 "conditional expression: %qT vs %qT",
5061 arg2_type, arg3_type);
5063 else if (extra_warnings
5064 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
5065 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
5066 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
5067 && !same_type_p (arg2_type,
5068 type_promotes_to (arg3_type)))))
5070 if (complain & tf_warning)
5071 warning_at (loc, 0, "enumeral and non-enumeral type in "
5072 "conditional expression");
5075 arg2 = perform_implicit_conversion (result_type, arg2, complain);
5076 arg3 = perform_implicit_conversion (result_type, arg3, complain);
5078 /* [expr.cond]
5080 --The second and third operands have pointer type, or one has
5081 pointer type and the other is a null pointer constant; pointer
5082 conversions (_conv.ptr_) and qualification conversions
5083 (_conv.qual_) are performed to bring them to their composite
5084 pointer type (_expr.rel_). The result is of the composite
5085 pointer type.
5087 --The second and third operands have pointer to member type, or
5088 one has pointer to member type and the other is a null pointer
5089 constant; pointer to member conversions (_conv.mem_) and
5090 qualification conversions (_conv.qual_) are performed to bring
5091 them to a common type, whose cv-qualification shall match the
5092 cv-qualification of either the second or the third operand.
5093 The result is of the common type. */
5094 else if ((null_ptr_cst_p (arg2)
5095 && TYPE_PTR_OR_PTRMEM_P (arg3_type))
5096 || (null_ptr_cst_p (arg3)
5097 && TYPE_PTR_OR_PTRMEM_P (arg2_type))
5098 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
5099 || (TYPE_PTRDATAMEM_P (arg2_type) && TYPE_PTRDATAMEM_P (arg3_type))
5100 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
5102 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
5103 arg3, CPO_CONDITIONAL_EXPR,
5104 complain);
5105 if (result_type == error_mark_node)
5106 return error_mark_node;
5107 arg2 = perform_implicit_conversion (result_type, arg2, complain);
5108 arg3 = perform_implicit_conversion (result_type, arg3, complain);
5111 if (!result_type)
5113 if (complain & tf_error)
5114 error_at (loc, "operands to ?: have different types %qT and %qT",
5115 arg2_type, arg3_type);
5116 return error_mark_node;
5119 if (arg2 == error_mark_node || arg3 == error_mark_node)
5120 return error_mark_node;
5122 valid_operands:
5123 result = build3 (COND_EXPR, result_type, arg1, arg2, arg3);
5124 if (!cp_unevaluated_operand)
5125 /* Avoid folding within decltype (c++/42013) and noexcept. */
5126 result = fold_if_not_in_template (result);
5128 /* We can't use result_type below, as fold might have returned a
5129 throw_expr. */
5131 if (!lvalue_p)
5133 /* Expand both sides into the same slot, hopefully the target of
5134 the ?: expression. We used to check for TARGET_EXPRs here,
5135 but now we sometimes wrap them in NOP_EXPRs so the test would
5136 fail. */
5137 if (CLASS_TYPE_P (TREE_TYPE (result)))
5138 result = get_target_expr_sfinae (result, complain);
5139 /* If this expression is an rvalue, but might be mistaken for an
5140 lvalue, we must add a NON_LVALUE_EXPR. */
5141 result = rvalue (result);
5143 else
5144 result = force_paren_expr (result);
5146 return result;
5149 /* Wrapper for above. */
5151 tree
5152 build_conditional_expr (location_t loc, tree arg1, tree arg2, tree arg3,
5153 tsubst_flags_t complain)
5155 tree ret;
5156 bool subtime = timevar_cond_start (TV_OVERLOAD);
5157 ret = build_conditional_expr_1 (loc, arg1, arg2, arg3, complain);
5158 timevar_cond_stop (TV_OVERLOAD, subtime);
5159 return ret;
5162 /* OPERAND is an operand to an expression. Perform necessary steps
5163 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
5164 returned. */
5166 static tree
5167 prep_operand (tree operand)
5169 if (operand)
5171 if (CLASS_TYPE_P (TREE_TYPE (operand))
5172 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
5173 /* Make sure the template type is instantiated now. */
5174 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
5177 return operand;
5180 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
5181 OVERLOAD) to the CANDIDATES, returning an updated list of
5182 CANDIDATES. The ARGS are the arguments provided to the call;
5183 if FIRST_ARG is non-null it is the implicit object argument,
5184 otherwise the first element of ARGS is used if needed. The
5185 EXPLICIT_TARGS are explicit template arguments provided.
5186 TEMPLATE_ONLY is true if only template functions should be
5187 considered. CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
5188 add_function_candidate. */
5190 static void
5191 add_candidates (tree fns, tree first_arg, const vec<tree, va_gc> *args,
5192 tree return_type,
5193 tree explicit_targs, bool template_only,
5194 tree conversion_path, tree access_path,
5195 int flags,
5196 struct z_candidate **candidates,
5197 tsubst_flags_t complain)
5199 tree ctype;
5200 const vec<tree, va_gc> *non_static_args;
5201 bool check_list_ctor;
5202 bool check_converting;
5203 unification_kind_t strict;
5204 tree fn;
5206 if (!fns)
5207 return;
5209 /* Precalculate special handling of constructors and conversion ops. */
5210 fn = OVL_CURRENT (fns);
5211 if (DECL_CONV_FN_P (fn))
5213 check_list_ctor = false;
5214 check_converting = !!(flags & LOOKUP_ONLYCONVERTING);
5215 if (flags & LOOKUP_NO_CONVERSION)
5216 /* We're doing return_type(x). */
5217 strict = DEDUCE_CONV;
5218 else
5219 /* We're doing x.operator return_type(). */
5220 strict = DEDUCE_EXACT;
5221 /* [over.match.funcs] For conversion functions, the function
5222 is considered to be a member of the class of the implicit
5223 object argument for the purpose of defining the type of
5224 the implicit object parameter. */
5225 ctype = TYPE_MAIN_VARIANT (TREE_TYPE (first_arg));
5227 else
5229 if (DECL_CONSTRUCTOR_P (fn))
5231 check_list_ctor = !!(flags & LOOKUP_LIST_ONLY);
5232 /* For list-initialization we consider explicit constructors
5233 and complain if one is chosen. */
5234 check_converting
5235 = ((flags & (LOOKUP_ONLYCONVERTING|LOOKUP_LIST_INIT_CTOR))
5236 == LOOKUP_ONLYCONVERTING);
5238 else
5240 check_list_ctor = false;
5241 check_converting = false;
5243 strict = DEDUCE_CALL;
5244 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
5247 if (first_arg)
5248 non_static_args = args;
5249 else
5250 /* Delay creating the implicit this parameter until it is needed. */
5251 non_static_args = NULL;
5253 for (; fns; fns = OVL_NEXT (fns))
5255 tree fn_first_arg;
5256 const vec<tree, va_gc> *fn_args;
5258 fn = OVL_CURRENT (fns);
5260 if (check_converting && DECL_NONCONVERTING_P (fn))
5261 continue;
5262 if (check_list_ctor && !is_list_ctor (fn))
5263 continue;
5265 /* Figure out which set of arguments to use. */
5266 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
5268 /* If this function is a non-static member and we didn't get an
5269 implicit object argument, move it out of args. */
5270 if (first_arg == NULL_TREE)
5272 unsigned int ix;
5273 tree arg;
5274 vec<tree, va_gc> *tempvec;
5275 vec_alloc (tempvec, args->length () - 1);
5276 for (ix = 1; args->iterate (ix, &arg); ++ix)
5277 tempvec->quick_push (arg);
5278 non_static_args = tempvec;
5279 first_arg = (*args)[0];
5282 fn_first_arg = first_arg;
5283 fn_args = non_static_args;
5285 else
5287 /* Otherwise, just use the list of arguments provided. */
5288 fn_first_arg = NULL_TREE;
5289 fn_args = args;
5292 if (TREE_CODE (fn) == TEMPLATE_DECL)
5293 add_template_candidate (candidates,
5295 ctype,
5296 explicit_targs,
5297 fn_first_arg,
5298 fn_args,
5299 return_type,
5300 access_path,
5301 conversion_path,
5302 flags,
5303 strict,
5304 complain);
5305 else if (!template_only)
5306 add_function_candidate (candidates,
5308 ctype,
5309 fn_first_arg,
5310 fn_args,
5311 access_path,
5312 conversion_path,
5313 flags,
5314 complain);
5318 static tree
5319 build_new_op_1 (location_t loc, enum tree_code code, int flags, tree arg1,
5320 tree arg2, tree arg3, tree *overload, tsubst_flags_t complain)
5322 struct z_candidate *candidates = 0, *cand;
5323 vec<tree, va_gc> *arglist;
5324 tree fnname;
5325 tree args[3];
5326 tree result = NULL_TREE;
5327 bool result_valid_p = false;
5328 enum tree_code code2 = NOP_EXPR;
5329 enum tree_code code_orig_arg1 = ERROR_MARK;
5330 enum tree_code code_orig_arg2 = ERROR_MARK;
5331 conversion *conv;
5332 void *p;
5333 bool strict_p;
5334 bool any_viable_p;
5336 if (error_operand_p (arg1)
5337 || error_operand_p (arg2)
5338 || error_operand_p (arg3))
5339 return error_mark_node;
5341 if (code == MODIFY_EXPR)
5343 code2 = TREE_CODE (arg3);
5344 arg3 = NULL_TREE;
5345 fnname = ansi_assopname (code2);
5347 else
5348 fnname = ansi_opname (code);
5350 arg1 = prep_operand (arg1);
5352 switch (code)
5354 case NEW_EXPR:
5355 case VEC_NEW_EXPR:
5356 case VEC_DELETE_EXPR:
5357 case DELETE_EXPR:
5358 /* Use build_op_new_call and build_op_delete_call instead. */
5359 gcc_unreachable ();
5361 case CALL_EXPR:
5362 /* Use build_op_call instead. */
5363 gcc_unreachable ();
5365 case TRUTH_ORIF_EXPR:
5366 case TRUTH_ANDIF_EXPR:
5367 case TRUTH_AND_EXPR:
5368 case TRUTH_OR_EXPR:
5369 /* These are saved for the sake of warn_logical_operator. */
5370 code_orig_arg1 = TREE_CODE (arg1);
5371 code_orig_arg2 = TREE_CODE (arg2);
5373 default:
5374 break;
5377 arg2 = prep_operand (arg2);
5378 arg3 = prep_operand (arg3);
5380 if (code == COND_EXPR)
5381 /* Use build_conditional_expr instead. */
5382 gcc_unreachable ();
5383 else if (! OVERLOAD_TYPE_P (TREE_TYPE (arg1))
5384 && (! arg2 || ! OVERLOAD_TYPE_P (TREE_TYPE (arg2))))
5385 goto builtin;
5387 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
5388 arg2 = integer_zero_node;
5390 vec_alloc (arglist, 3);
5391 arglist->quick_push (arg1);
5392 if (arg2 != NULL_TREE)
5393 arglist->quick_push (arg2);
5394 if (arg3 != NULL_TREE)
5395 arglist->quick_push (arg3);
5397 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5398 p = conversion_obstack_alloc (0);
5400 /* Add namespace-scope operators to the list of functions to
5401 consider. */
5402 add_candidates (lookup_function_nonclass (fnname, arglist, /*block_p=*/true),
5403 NULL_TREE, arglist, NULL_TREE,
5404 NULL_TREE, false, NULL_TREE, NULL_TREE,
5405 flags, &candidates, complain);
5407 args[0] = arg1;
5408 args[1] = arg2;
5409 args[2] = NULL_TREE;
5411 /* Add class-member operators to the candidate set. */
5412 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
5414 tree fns;
5416 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
5417 if (fns == error_mark_node)
5419 result = error_mark_node;
5420 goto user_defined_result_ready;
5422 if (fns)
5423 add_candidates (BASELINK_FUNCTIONS (fns),
5424 NULL_TREE, arglist, NULL_TREE,
5425 NULL_TREE, false,
5426 BASELINK_BINFO (fns),
5427 BASELINK_ACCESS_BINFO (fns),
5428 flags, &candidates, complain);
5430 /* Per 13.3.1.2/3, 2nd bullet, if no operand has a class type, then
5431 only non-member functions that have type T1 or reference to
5432 cv-qualified-opt T1 for the first argument, if the first argument
5433 has an enumeration type, or T2 or reference to cv-qualified-opt
5434 T2 for the second argument, if the the second argument has an
5435 enumeration type. Filter out those that don't match. */
5436 else if (! arg2 || ! CLASS_TYPE_P (TREE_TYPE (arg2)))
5438 struct z_candidate **candp, **next;
5440 for (candp = &candidates; *candp; candp = next)
5442 tree parmlist, parmtype;
5443 int i, nargs = (arg2 ? 2 : 1);
5445 cand = *candp;
5446 next = &cand->next;
5448 parmlist = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
5450 for (i = 0; i < nargs; ++i)
5452 parmtype = TREE_VALUE (parmlist);
5454 if (TREE_CODE (parmtype) == REFERENCE_TYPE)
5455 parmtype = TREE_TYPE (parmtype);
5456 if (TREE_CODE (TREE_TYPE (args[i])) == ENUMERAL_TYPE
5457 && (same_type_ignoring_top_level_qualifiers_p
5458 (TREE_TYPE (args[i]), parmtype)))
5459 break;
5461 parmlist = TREE_CHAIN (parmlist);
5464 /* No argument has an appropriate type, so remove this
5465 candidate function from the list. */
5466 if (i == nargs)
5468 *candp = cand->next;
5469 next = candp;
5474 add_builtin_candidates (&candidates, code, code2, fnname, args,
5475 flags, complain);
5477 switch (code)
5479 case COMPOUND_EXPR:
5480 case ADDR_EXPR:
5481 /* For these, the built-in candidates set is empty
5482 [over.match.oper]/3. We don't want non-strict matches
5483 because exact matches are always possible with built-in
5484 operators. The built-in candidate set for COMPONENT_REF
5485 would be empty too, but since there are no such built-in
5486 operators, we accept non-strict matches for them. */
5487 strict_p = true;
5488 break;
5490 default:
5491 strict_p = false;
5492 break;
5495 candidates = splice_viable (candidates, strict_p, &any_viable_p);
5496 if (!any_viable_p)
5498 switch (code)
5500 case POSTINCREMENT_EXPR:
5501 case POSTDECREMENT_EXPR:
5502 /* Don't try anything fancy if we're not allowed to produce
5503 errors. */
5504 if (!(complain & tf_error))
5505 return error_mark_node;
5507 /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
5508 distinguish between prefix and postfix ++ and
5509 operator++() was used for both, so we allow this with
5510 -fpermissive. */
5511 else
5513 const char *msg = (flag_permissive)
5514 ? G_("no %<%D(int)%> declared for postfix %qs,"
5515 " trying prefix operator instead")
5516 : G_("no %<%D(int)%> declared for postfix %qs");
5517 permerror (loc, msg, fnname, operator_name_info[code].name);
5520 if (!flag_permissive)
5521 return error_mark_node;
5523 if (code == POSTINCREMENT_EXPR)
5524 code = PREINCREMENT_EXPR;
5525 else
5526 code = PREDECREMENT_EXPR;
5527 result = build_new_op_1 (loc, code, flags, arg1, NULL_TREE,
5528 NULL_TREE, overload, complain);
5529 break;
5531 /* The caller will deal with these. */
5532 case ADDR_EXPR:
5533 case COMPOUND_EXPR:
5534 case COMPONENT_REF:
5535 result = NULL_TREE;
5536 result_valid_p = true;
5537 break;
5539 default:
5540 if (complain & tf_error)
5542 /* If one of the arguments of the operator represents
5543 an invalid use of member function pointer, try to report
5544 a meaningful error ... */
5545 if (invalid_nonstatic_memfn_p (arg1, tf_error)
5546 || invalid_nonstatic_memfn_p (arg2, tf_error)
5547 || invalid_nonstatic_memfn_p (arg3, tf_error))
5548 /* We displayed the error message. */;
5549 else
5551 /* ... Otherwise, report the more generic
5552 "no matching operator found" error */
5553 op_error (loc, code, code2, arg1, arg2, arg3, FALSE);
5554 print_z_candidates (loc, candidates);
5557 result = error_mark_node;
5558 break;
5561 else
5563 cand = tourney (candidates, complain);
5564 if (cand == 0)
5566 if (complain & tf_error)
5568 op_error (loc, code, code2, arg1, arg2, arg3, TRUE);
5569 print_z_candidates (loc, candidates);
5571 result = error_mark_node;
5573 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
5575 if (overload)
5576 *overload = cand->fn;
5578 if (resolve_args (arglist, complain) == NULL)
5579 result = error_mark_node;
5580 else
5581 result = build_over_call (cand, LOOKUP_NORMAL, complain);
5583 else
5585 /* Give any warnings we noticed during overload resolution. */
5586 if (cand->warnings && (complain & tf_warning))
5588 struct candidate_warning *w;
5589 for (w = cand->warnings; w; w = w->next)
5590 joust (cand, w->loser, 1, complain);
5593 /* Check for comparison of different enum types. */
5594 switch (code)
5596 case GT_EXPR:
5597 case LT_EXPR:
5598 case GE_EXPR:
5599 case LE_EXPR:
5600 case EQ_EXPR:
5601 case NE_EXPR:
5602 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
5603 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
5604 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
5605 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2)))
5606 && (complain & tf_warning))
5608 warning (OPT_Wenum_compare,
5609 "comparison between %q#T and %q#T",
5610 TREE_TYPE (arg1), TREE_TYPE (arg2));
5612 break;
5613 default:
5614 break;
5617 /* We need to strip any leading REF_BIND so that bitfields
5618 don't cause errors. This should not remove any important
5619 conversions, because builtins don't apply to class
5620 objects directly. */
5621 conv = cand->convs[0];
5622 if (conv->kind == ck_ref_bind)
5623 conv = next_conversion (conv);
5624 arg1 = convert_like (conv, arg1, complain);
5626 if (arg2)
5628 conv = cand->convs[1];
5629 if (conv->kind == ck_ref_bind)
5630 conv = next_conversion (conv);
5631 else
5632 arg2 = decay_conversion (arg2, complain);
5634 /* We need to call warn_logical_operator before
5635 converting arg2 to a boolean_type, but after
5636 decaying an enumerator to its value. */
5637 if (complain & tf_warning)
5638 warn_logical_operator (loc, code, boolean_type_node,
5639 code_orig_arg1, arg1,
5640 code_orig_arg2, arg2);
5642 arg2 = convert_like (conv, arg2, complain);
5644 if (arg3)
5646 conv = cand->convs[2];
5647 if (conv->kind == ck_ref_bind)
5648 conv = next_conversion (conv);
5649 arg3 = convert_like (conv, arg3, complain);
5655 user_defined_result_ready:
5657 /* Free all the conversions we allocated. */
5658 obstack_free (&conversion_obstack, p);
5660 if (result || result_valid_p)
5661 return result;
5663 builtin:
5664 switch (code)
5666 case MODIFY_EXPR:
5667 return cp_build_modify_expr (arg1, code2, arg2, complain);
5669 case INDIRECT_REF:
5670 return cp_build_indirect_ref (arg1, RO_UNARY_STAR, complain);
5672 case TRUTH_ANDIF_EXPR:
5673 case TRUTH_ORIF_EXPR:
5674 case TRUTH_AND_EXPR:
5675 case TRUTH_OR_EXPR:
5676 warn_logical_operator (loc, code, boolean_type_node,
5677 code_orig_arg1, arg1, code_orig_arg2, arg2);
5678 /* Fall through. */
5679 case PLUS_EXPR:
5680 case MINUS_EXPR:
5681 case MULT_EXPR:
5682 case TRUNC_DIV_EXPR:
5683 case GT_EXPR:
5684 case LT_EXPR:
5685 case GE_EXPR:
5686 case LE_EXPR:
5687 case EQ_EXPR:
5688 case NE_EXPR:
5689 case MAX_EXPR:
5690 case MIN_EXPR:
5691 case LSHIFT_EXPR:
5692 case RSHIFT_EXPR:
5693 case TRUNC_MOD_EXPR:
5694 case BIT_AND_EXPR:
5695 case BIT_IOR_EXPR:
5696 case BIT_XOR_EXPR:
5697 return cp_build_binary_op (loc, code, arg1, arg2, complain);
5699 case UNARY_PLUS_EXPR:
5700 case NEGATE_EXPR:
5701 case BIT_NOT_EXPR:
5702 case TRUTH_NOT_EXPR:
5703 case PREINCREMENT_EXPR:
5704 case POSTINCREMENT_EXPR:
5705 case PREDECREMENT_EXPR:
5706 case POSTDECREMENT_EXPR:
5707 case REALPART_EXPR:
5708 case IMAGPART_EXPR:
5709 case ABS_EXPR:
5710 return cp_build_unary_op (code, arg1, candidates != 0, complain);
5712 case ARRAY_REF:
5713 return cp_build_array_ref (input_location, arg1, arg2, complain);
5715 case MEMBER_REF:
5716 return build_m_component_ref (cp_build_indirect_ref (arg1, RO_ARROW_STAR,
5717 complain),
5718 arg2, complain);
5720 /* The caller will deal with these. */
5721 case ADDR_EXPR:
5722 case COMPONENT_REF:
5723 case COMPOUND_EXPR:
5724 return NULL_TREE;
5726 default:
5727 gcc_unreachable ();
5729 return NULL_TREE;
5732 /* Wrapper for above. */
5734 tree
5735 build_new_op (location_t loc, enum tree_code code, int flags,
5736 tree arg1, tree arg2, tree arg3,
5737 tree *overload, tsubst_flags_t complain)
5739 tree ret;
5740 bool subtime = timevar_cond_start (TV_OVERLOAD);
5741 ret = build_new_op_1 (loc, code, flags, arg1, arg2, arg3,
5742 overload, complain);
5743 timevar_cond_stop (TV_OVERLOAD, subtime);
5744 return ret;
5747 /* Returns true iff T, an element of an OVERLOAD chain, is a usual
5748 deallocation function (3.7.4.2 [basic.stc.dynamic.deallocation]). */
5750 static bool
5751 non_placement_deallocation_fn_p (tree t)
5753 /* A template instance is never a usual deallocation function,
5754 regardless of its signature. */
5755 if (TREE_CODE (t) == TEMPLATE_DECL
5756 || primary_template_instantiation_p (t))
5757 return false;
5759 /* If a class T has a member deallocation function named operator delete
5760 with exactly one parameter, then that function is a usual
5761 (non-placement) deallocation function. If class T does not declare
5762 such an operator delete but does declare a member deallocation
5763 function named operator delete with exactly two parameters, the second
5764 of which has type std::size_t (18.2), then this function is a usual
5765 deallocation function. */
5766 t = FUNCTION_ARG_CHAIN (t);
5767 if (t == void_list_node
5768 || (t && same_type_p (TREE_VALUE (t), size_type_node)
5769 && TREE_CHAIN (t) == void_list_node))
5770 return true;
5771 return false;
5774 /* Build a call to operator delete. This has to be handled very specially,
5775 because the restrictions on what signatures match are different from all
5776 other call instances. For a normal delete, only a delete taking (void *)
5777 or (void *, size_t) is accepted. For a placement delete, only an exact
5778 match with the placement new is accepted.
5780 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
5781 ADDR is the pointer to be deleted.
5782 SIZE is the size of the memory block to be deleted.
5783 GLOBAL_P is true if the delete-expression should not consider
5784 class-specific delete operators.
5785 PLACEMENT is the corresponding placement new call, or NULL_TREE.
5787 If this call to "operator delete" is being generated as part to
5788 deallocate memory allocated via a new-expression (as per [expr.new]
5789 which requires that if the initialization throws an exception then
5790 we call a deallocation function), then ALLOC_FN is the allocation
5791 function. */
5793 tree
5794 build_op_delete_call (enum tree_code code, tree addr, tree size,
5795 bool global_p, tree placement,
5796 tree alloc_fn, tsubst_flags_t complain)
5798 tree fn = NULL_TREE;
5799 tree fns, fnname, type, t;
5801 if (addr == error_mark_node)
5802 return error_mark_node;
5804 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
5806 fnname = ansi_opname (code);
5808 if (CLASS_TYPE_P (type)
5809 && COMPLETE_TYPE_P (complete_type (type))
5810 && !global_p)
5811 /* In [class.free]
5813 If the result of the lookup is ambiguous or inaccessible, or if
5814 the lookup selects a placement deallocation function, the
5815 program is ill-formed.
5817 Therefore, we ask lookup_fnfields to complain about ambiguity. */
5819 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
5820 if (fns == error_mark_node)
5821 return error_mark_node;
5823 else
5824 fns = NULL_TREE;
5826 if (fns == NULL_TREE)
5827 fns = lookup_name_nonclass (fnname);
5829 /* Strip const and volatile from addr. */
5830 addr = cp_convert (ptr_type_node, addr, complain);
5832 if (placement)
5834 /* "A declaration of a placement deallocation function matches the
5835 declaration of a placement allocation function if it has the same
5836 number of parameters and, after parameter transformations (8.3.5),
5837 all parameter types except the first are identical."
5839 So we build up the function type we want and ask instantiate_type
5840 to get it for us. */
5841 t = FUNCTION_ARG_CHAIN (alloc_fn);
5842 t = tree_cons (NULL_TREE, ptr_type_node, t);
5843 t = build_function_type (void_type_node, t);
5845 fn = instantiate_type (t, fns, tf_none);
5846 if (fn == error_mark_node)
5847 return NULL_TREE;
5849 if (BASELINK_P (fn))
5850 fn = BASELINK_FUNCTIONS (fn);
5852 /* "If the lookup finds the two-parameter form of a usual deallocation
5853 function (3.7.4.2) and that function, considered as a placement
5854 deallocation function, would have been selected as a match for the
5855 allocation function, the program is ill-formed." */
5856 if (non_placement_deallocation_fn_p (fn))
5858 /* But if the class has an operator delete (void *), then that is
5859 the usual deallocation function, so we shouldn't complain
5860 about using the operator delete (void *, size_t). */
5861 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5862 t; t = OVL_NEXT (t))
5864 tree elt = OVL_CURRENT (t);
5865 if (non_placement_deallocation_fn_p (elt)
5866 && FUNCTION_ARG_CHAIN (elt) == void_list_node)
5867 goto ok;
5869 if (complain & tf_error)
5871 permerror (0, "non-placement deallocation function %q+D", fn);
5872 permerror (input_location, "selected for placement delete");
5874 else
5875 return error_mark_node;
5876 ok:;
5879 else
5880 /* "Any non-placement deallocation function matches a non-placement
5881 allocation function. If the lookup finds a single matching
5882 deallocation function, that function will be called; otherwise, no
5883 deallocation function will be called." */
5884 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5885 t; t = OVL_NEXT (t))
5887 tree elt = OVL_CURRENT (t);
5888 if (non_placement_deallocation_fn_p (elt))
5890 fn = elt;
5891 /* "If a class T has a member deallocation function named
5892 operator delete with exactly one parameter, then that
5893 function is a usual (non-placement) deallocation
5894 function. If class T does not declare such an operator
5895 delete but does declare a member deallocation function named
5896 operator delete with exactly two parameters, the second of
5897 which has type std::size_t (18.2), then this function is a
5898 usual deallocation function."
5900 So (void*) beats (void*, size_t). */
5901 if (FUNCTION_ARG_CHAIN (fn) == void_list_node)
5902 break;
5906 /* If we have a matching function, call it. */
5907 if (fn)
5909 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
5911 /* If the FN is a member function, make sure that it is
5912 accessible. */
5913 if (BASELINK_P (fns))
5914 perform_or_defer_access_check (BASELINK_BINFO (fns), fn, fn,
5915 complain);
5917 /* Core issue 901: It's ok to new a type with deleted delete. */
5918 if (DECL_DELETED_FN (fn) && alloc_fn)
5919 return NULL_TREE;
5921 if (placement)
5923 /* The placement args might not be suitable for overload
5924 resolution at this point, so build the call directly. */
5925 int nargs = call_expr_nargs (placement);
5926 tree *argarray = XALLOCAVEC (tree, nargs);
5927 int i;
5928 argarray[0] = addr;
5929 for (i = 1; i < nargs; i++)
5930 argarray[i] = CALL_EXPR_ARG (placement, i);
5931 mark_used (fn);
5932 return build_cxx_call (fn, nargs, argarray, complain);
5934 else
5936 tree ret;
5937 vec<tree, va_gc> *args = make_tree_vector ();
5938 args->quick_push (addr);
5939 if (FUNCTION_ARG_CHAIN (fn) != void_list_node)
5940 args->quick_push (size);
5941 ret = cp_build_function_call_vec (fn, &args, complain);
5942 release_tree_vector (args);
5943 return ret;
5947 /* [expr.new]
5949 If no unambiguous matching deallocation function can be found,
5950 propagating the exception does not cause the object's memory to
5951 be freed. */
5952 if (alloc_fn)
5954 if ((complain & tf_warning)
5955 && !placement)
5956 warning (0, "no corresponding deallocation function for %qD",
5957 alloc_fn);
5958 return NULL_TREE;
5961 if (complain & tf_error)
5962 error ("no suitable %<operator %s%> for %qT",
5963 operator_name_info[(int)code].name, type);
5964 return error_mark_node;
5967 /* If the current scope isn't allowed to access DECL along
5968 BASETYPE_PATH, give an error. The most derived class in
5969 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
5970 the declaration to use in the error diagnostic. */
5972 bool
5973 enforce_access (tree basetype_path, tree decl, tree diag_decl,
5974 tsubst_flags_t complain)
5976 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
5978 if (!accessible_p (basetype_path, decl, true))
5980 if (complain & tf_error)
5982 if (TREE_PRIVATE (decl))
5983 error ("%q+#D is private", diag_decl);
5984 else if (TREE_PROTECTED (decl))
5985 error ("%q+#D is protected", diag_decl);
5986 else
5987 error ("%q+#D is inaccessible", diag_decl);
5988 error ("within this context");
5990 return false;
5993 return true;
5996 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
5997 bitwise or of LOOKUP_* values. If any errors are warnings are
5998 generated, set *DIAGNOSTIC_FN to "error" or "warning",
5999 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
6000 to NULL. */
6002 static tree
6003 build_temp (tree expr, tree type, int flags,
6004 diagnostic_t *diagnostic_kind, tsubst_flags_t complain)
6006 int savew, savee;
6007 vec<tree, va_gc> *args;
6009 savew = warningcount + werrorcount, savee = errorcount;
6010 args = make_tree_vector_single (expr);
6011 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6012 &args, type, flags, complain);
6013 release_tree_vector (args);
6014 if (warningcount + werrorcount > savew)
6015 *diagnostic_kind = DK_WARNING;
6016 else if (errorcount > savee)
6017 *diagnostic_kind = DK_ERROR;
6018 else
6019 *diagnostic_kind = DK_UNSPECIFIED;
6020 return expr;
6023 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
6024 EXPR is implicitly converted to type TOTYPE.
6025 FN and ARGNUM are used for diagnostics. */
6027 static void
6028 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
6030 /* Issue warnings about peculiar, but valid, uses of NULL. */
6031 if (expr == null_node && TREE_CODE (totype) != BOOLEAN_TYPE
6032 && ARITHMETIC_TYPE_P (totype))
6034 source_location loc =
6035 expansion_point_location_if_in_system_header (input_location);
6037 if (fn)
6038 warning_at (loc, OPT_Wconversion_null,
6039 "passing NULL to non-pointer argument %P of %qD",
6040 argnum, fn);
6041 else
6042 warning_at (loc, OPT_Wconversion_null,
6043 "converting to non-pointer type %qT from NULL", totype);
6046 /* Issue warnings if "false" is converted to a NULL pointer */
6047 else if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE
6048 && TYPE_PTR_P (totype))
6050 if (fn)
6051 warning_at (input_location, OPT_Wconversion_null,
6052 "converting %<false%> to pointer type for argument %P "
6053 "of %qD", argnum, fn);
6054 else
6055 warning_at (input_location, OPT_Wconversion_null,
6056 "converting %<false%> to pointer type %qT", totype);
6060 /* We gave a diagnostic during a conversion. If this was in the second
6061 standard conversion sequence of a user-defined conversion sequence, say
6062 which user-defined conversion. */
6064 static void
6065 maybe_print_user_conv_context (conversion *convs)
6067 if (convs->user_conv_p)
6068 for (conversion *t = convs; t; t = next_conversion (t))
6069 if (t->kind == ck_user)
6071 print_z_candidate (0, " after user-defined conversion:",
6072 t->cand);
6073 break;
6077 /* Perform the conversions in CONVS on the expression EXPR. FN and
6078 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
6079 indicates the `this' argument of a method. INNER is nonzero when
6080 being called to continue a conversion chain. It is negative when a
6081 reference binding will be applied, positive otherwise. If
6082 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
6083 conversions will be emitted if appropriate. If C_CAST_P is true,
6084 this conversion is coming from a C-style cast; in that case,
6085 conversions to inaccessible bases are permitted. */
6087 static tree
6088 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
6089 int inner, bool issue_conversion_warnings,
6090 bool c_cast_p, tsubst_flags_t complain)
6092 tree totype = convs->type;
6093 diagnostic_t diag_kind;
6094 int flags;
6095 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
6097 if (convs->bad_p && !(complain & tf_error))
6098 return error_mark_node;
6100 if (convs->bad_p
6101 && convs->kind != ck_user
6102 && convs->kind != ck_list
6103 && convs->kind != ck_ambig
6104 && (convs->kind != ck_ref_bind
6105 || (convs->user_conv_p && next_conversion (convs)->bad_p))
6106 && (convs->kind != ck_rvalue
6107 || SCALAR_TYPE_P (totype))
6108 && convs->kind != ck_base)
6110 bool complained = false;
6111 conversion *t = convs;
6113 /* Give a helpful error if this is bad because of excess braces. */
6114 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6115 && SCALAR_TYPE_P (totype)
6116 && CONSTRUCTOR_NELTS (expr) > 0
6117 && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
6119 complained = permerror (loc, "too many braces around initializer "
6120 "for %qT", totype);
6121 while (BRACE_ENCLOSED_INITIALIZER_P (expr)
6122 && CONSTRUCTOR_NELTS (expr) == 1)
6123 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6126 /* Give a helpful error if this is bad because a conversion to bool
6127 from std::nullptr_t requires direct-initialization. */
6128 if (NULLPTR_TYPE_P (TREE_TYPE (expr))
6129 && TREE_CODE (totype) == BOOLEAN_TYPE)
6130 complained = permerror (loc, "converting to %qT from %qT requires "
6131 "direct-initialization",
6132 totype, TREE_TYPE (expr));
6134 for (; t ; t = next_conversion (t))
6136 if (t->kind == ck_user && t->cand->reason)
6138 permerror (loc, "invalid user-defined conversion "
6139 "from %qT to %qT", TREE_TYPE (expr), totype);
6140 print_z_candidate (loc, "candidate is:", t->cand);
6141 expr = convert_like_real (t, expr, fn, argnum, 1,
6142 /*issue_conversion_warnings=*/false,
6143 /*c_cast_p=*/false,
6144 complain);
6145 if (convs->kind == ck_ref_bind)
6146 expr = convert_to_reference (totype, expr, CONV_IMPLICIT,
6147 LOOKUP_NORMAL, NULL_TREE,
6148 complain);
6149 else
6150 expr = cp_convert (totype, expr, complain);
6151 if (fn)
6152 inform (DECL_SOURCE_LOCATION (fn),
6153 " initializing argument %P of %qD", argnum, fn);
6154 return expr;
6156 else if (t->kind == ck_user || !t->bad_p)
6158 expr = convert_like_real (t, expr, fn, argnum, 1,
6159 /*issue_conversion_warnings=*/false,
6160 /*c_cast_p=*/false,
6161 complain);
6162 break;
6164 else if (t->kind == ck_ambig)
6165 return convert_like_real (t, expr, fn, argnum, 1,
6166 /*issue_conversion_warnings=*/false,
6167 /*c_cast_p=*/false,
6168 complain);
6169 else if (t->kind == ck_identity)
6170 break;
6172 if (!complained)
6173 complained = permerror (loc, "invalid conversion from %qT to %qT",
6174 TREE_TYPE (expr), totype);
6175 if (complained && fn)
6176 inform (DECL_SOURCE_LOCATION (fn),
6177 " initializing argument %P of %qD", argnum, fn);
6179 return cp_convert (totype, expr, complain);
6182 if (issue_conversion_warnings && (complain & tf_warning))
6183 conversion_null_warnings (totype, expr, fn, argnum);
6185 switch (convs->kind)
6187 case ck_user:
6189 struct z_candidate *cand = convs->cand;
6190 tree convfn = cand->fn;
6191 unsigned i;
6193 /* When converting from an init list we consider explicit
6194 constructors, but actually trying to call one is an error. */
6195 if (DECL_NONCONVERTING_P (convfn) && DECL_CONSTRUCTOR_P (convfn)
6196 /* Unless this is for direct-list-initialization. */
6197 && !DIRECT_LIST_INIT_P (expr))
6199 if (!(complain & tf_error))
6200 return error_mark_node;
6201 error ("converting to %qT from initializer list would use "
6202 "explicit constructor %qD", totype, convfn);
6205 /* If we're initializing from {}, it's value-initialization. */
6206 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6207 && CONSTRUCTOR_NELTS (expr) == 0
6208 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
6210 bool direct = CONSTRUCTOR_IS_DIRECT_INIT (expr);
6211 expr = build_value_init (totype, complain);
6212 expr = get_target_expr_sfinae (expr, complain);
6213 if (expr != error_mark_node)
6215 TARGET_EXPR_LIST_INIT_P (expr) = true;
6216 TARGET_EXPR_DIRECT_INIT_P (expr) = direct;
6218 return expr;
6221 expr = mark_rvalue_use (expr);
6223 /* Set user_conv_p on the argument conversions, so rvalue/base
6224 handling knows not to allow any more UDCs. */
6225 for (i = 0; i < cand->num_convs; ++i)
6226 cand->convs[i]->user_conv_p = true;
6228 expr = build_over_call (cand, LOOKUP_NORMAL, complain);
6230 /* If this is a constructor or a function returning an aggr type,
6231 we need to build up a TARGET_EXPR. */
6232 if (DECL_CONSTRUCTOR_P (convfn))
6234 expr = build_cplus_new (totype, expr, complain);
6236 /* Remember that this was list-initialization. */
6237 if (convs->check_narrowing && expr != error_mark_node)
6238 TARGET_EXPR_LIST_INIT_P (expr) = true;
6241 return expr;
6243 case ck_identity:
6244 expr = mark_rvalue_use (expr);
6245 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
6247 int nelts = CONSTRUCTOR_NELTS (expr);
6248 if (nelts == 0)
6249 expr = build_value_init (totype, complain);
6250 else if (nelts == 1)
6251 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6252 else
6253 gcc_unreachable ();
6256 if (type_unknown_p (expr))
6257 expr = instantiate_type (totype, expr, complain);
6258 /* Convert a constant to its underlying value, unless we are
6259 about to bind it to a reference, in which case we need to
6260 leave it as an lvalue. */
6261 if (inner >= 0)
6263 expr = decl_constant_value_safe (expr);
6264 if (expr == null_node && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype))
6265 /* If __null has been converted to an integer type, we do not
6266 want to warn about uses of EXPR as an integer, rather than
6267 as a pointer. */
6268 expr = build_int_cst (totype, 0);
6270 return expr;
6271 case ck_ambig:
6272 /* We leave bad_p off ck_ambig because overload resolution considers
6273 it valid, it just fails when we try to perform it. So we need to
6274 check complain here, too. */
6275 if (complain & tf_error)
6277 /* Call build_user_type_conversion again for the error. */
6278 build_user_type_conversion (totype, convs->u.expr, LOOKUP_NORMAL,
6279 complain);
6280 if (fn)
6281 inform (input_location, " initializing argument %P of %q+D",
6282 argnum, fn);
6284 return error_mark_node;
6286 case ck_list:
6288 /* Conversion to std::initializer_list<T>. */
6289 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
6290 tree new_ctor = build_constructor (init_list_type_node, NULL);
6291 unsigned len = CONSTRUCTOR_NELTS (expr);
6292 tree array, val, field;
6293 vec<constructor_elt, va_gc> *vec = NULL;
6294 unsigned ix;
6296 /* Convert all the elements. */
6297 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
6299 tree sub = convert_like_real (convs->u.list[ix], val, fn, argnum,
6300 1, false, false, complain);
6301 if (sub == error_mark_node)
6302 return sub;
6303 if (!BRACE_ENCLOSED_INITIALIZER_P (val))
6304 check_narrowing (TREE_TYPE (sub), val);
6305 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor), NULL_TREE, sub);
6306 if (!TREE_CONSTANT (sub))
6307 TREE_CONSTANT (new_ctor) = false;
6309 /* Build up the array. */
6310 elttype = cp_build_qualified_type
6311 (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
6312 array = build_array_of_n_type (elttype, len);
6313 array = finish_compound_literal (array, new_ctor, complain);
6314 /* Take the address explicitly rather than via decay_conversion
6315 to avoid the error about taking the address of a temporary. */
6316 array = cp_build_addr_expr (array, complain);
6317 array = cp_convert (build_pointer_type (elttype), array, complain);
6318 if (array == error_mark_node)
6319 return error_mark_node;
6321 /* Build up the initializer_list object. */
6322 totype = complete_type (totype);
6323 field = next_initializable_field (TYPE_FIELDS (totype));
6324 CONSTRUCTOR_APPEND_ELT (vec, field, array);
6325 field = next_initializable_field (DECL_CHAIN (field));
6326 CONSTRUCTOR_APPEND_ELT (vec, field, size_int (len));
6327 new_ctor = build_constructor (totype, vec);
6328 return get_target_expr_sfinae (new_ctor, complain);
6331 case ck_aggr:
6332 if (TREE_CODE (totype) == COMPLEX_TYPE)
6334 tree real = CONSTRUCTOR_ELT (expr, 0)->value;
6335 tree imag = CONSTRUCTOR_ELT (expr, 1)->value;
6336 real = perform_implicit_conversion (TREE_TYPE (totype),
6337 real, complain);
6338 imag = perform_implicit_conversion (TREE_TYPE (totype),
6339 imag, complain);
6340 expr = build2 (COMPLEX_EXPR, totype, real, imag);
6341 return fold_if_not_in_template (expr);
6343 expr = reshape_init (totype, expr, complain);
6344 expr = get_target_expr_sfinae (digest_init (totype, expr, complain),
6345 complain);
6346 if (expr != error_mark_node)
6347 TARGET_EXPR_LIST_INIT_P (expr) = true;
6348 return expr;
6350 default:
6351 break;
6354 expr = convert_like_real (next_conversion (convs), expr, fn, argnum,
6355 convs->kind == ck_ref_bind ? -1 : 1,
6356 convs->kind == ck_ref_bind ? issue_conversion_warnings : false,
6357 c_cast_p,
6358 complain);
6359 if (expr == error_mark_node)
6360 return error_mark_node;
6362 switch (convs->kind)
6364 case ck_rvalue:
6365 expr = decay_conversion (expr, complain);
6366 if (expr == error_mark_node)
6367 return error_mark_node;
6369 if (! MAYBE_CLASS_TYPE_P (totype))
6370 return expr;
6371 /* Else fall through. */
6372 case ck_base:
6373 if (convs->kind == ck_base && !convs->need_temporary_p)
6375 /* We are going to bind a reference directly to a base-class
6376 subobject of EXPR. */
6377 /* Build an expression for `*((base*) &expr)'. */
6378 expr = cp_build_addr_expr (expr, complain);
6379 expr = convert_to_base (expr, build_pointer_type (totype),
6380 !c_cast_p, /*nonnull=*/true, complain);
6381 expr = cp_build_indirect_ref (expr, RO_IMPLICIT_CONVERSION, complain);
6382 return expr;
6385 /* Copy-initialization where the cv-unqualified version of the source
6386 type is the same class as, or a derived class of, the class of the
6387 destination [is treated as direct-initialization]. [dcl.init] */
6388 flags = LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING;
6389 if (convs->user_conv_p)
6390 /* This conversion is being done in the context of a user-defined
6391 conversion (i.e. the second step of copy-initialization), so
6392 don't allow any more. */
6393 flags |= LOOKUP_NO_CONVERSION;
6394 if (convs->rvaluedness_matches_p)
6395 flags |= LOOKUP_PREFER_RVALUE;
6396 if (TREE_CODE (expr) == TARGET_EXPR
6397 && TARGET_EXPR_LIST_INIT_P (expr))
6398 /* Copy-list-initialization doesn't actually involve a copy. */
6399 return expr;
6400 expr = build_temp (expr, totype, flags, &diag_kind, complain);
6401 if (diag_kind && complain)
6403 maybe_print_user_conv_context (convs);
6404 if (fn)
6405 inform (DECL_SOURCE_LOCATION (fn),
6406 " initializing argument %P of %qD", argnum, fn);
6409 return build_cplus_new (totype, expr, complain);
6411 case ck_ref_bind:
6413 tree ref_type = totype;
6415 if (convs->bad_p && !next_conversion (convs)->bad_p)
6417 tree extype = TREE_TYPE (expr);
6418 if (TYPE_REF_IS_RVALUE (ref_type)
6419 && real_lvalue_p (expr))
6420 error_at (loc, "cannot bind %qT lvalue to %qT",
6421 extype, totype);
6422 else if (!TYPE_REF_IS_RVALUE (ref_type) && !real_lvalue_p (expr)
6423 && !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)))
6424 error_at (loc, "invalid initialization of non-const reference of "
6425 "type %qT from an rvalue of type %qT", totype, extype);
6426 else if (!reference_compatible_p (TREE_TYPE (totype), extype))
6427 error_at (loc, "binding %qT to reference of type %qT "
6428 "discards qualifiers", extype, totype);
6429 else
6430 gcc_unreachable ();
6431 maybe_print_user_conv_context (convs);
6432 if (fn)
6433 inform (input_location,
6434 " initializing argument %P of %q+D", argnum, fn);
6435 return error_mark_node;
6438 /* If necessary, create a temporary.
6440 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
6441 that need temporaries, even when their types are reference
6442 compatible with the type of reference being bound, so the
6443 upcoming call to cp_build_addr_expr doesn't fail. */
6444 if (convs->need_temporary_p
6445 || TREE_CODE (expr) == CONSTRUCTOR
6446 || TREE_CODE (expr) == VA_ARG_EXPR)
6448 /* Otherwise, a temporary of type "cv1 T1" is created and
6449 initialized from the initializer expression using the rules
6450 for a non-reference copy-initialization (8.5). */
6452 tree type = TREE_TYPE (ref_type);
6453 cp_lvalue_kind lvalue = real_lvalue_p (expr);
6455 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6456 (type, next_conversion (convs)->type));
6457 if (!CP_TYPE_CONST_NON_VOLATILE_P (type)
6458 && !TYPE_REF_IS_RVALUE (ref_type))
6460 /* If the reference is volatile or non-const, we
6461 cannot create a temporary. */
6462 if (lvalue & clk_bitfield)
6463 error_at (loc, "cannot bind bitfield %qE to %qT",
6464 expr, ref_type);
6465 else if (lvalue & clk_packed)
6466 error_at (loc, "cannot bind packed field %qE to %qT",
6467 expr, ref_type);
6468 else
6469 error_at (loc, "cannot bind rvalue %qE to %qT",
6470 expr, ref_type);
6471 return error_mark_node;
6473 /* If the source is a packed field, and we must use a copy
6474 constructor, then building the target expr will require
6475 binding the field to the reference parameter to the
6476 copy constructor, and we'll end up with an infinite
6477 loop. If we can use a bitwise copy, then we'll be
6478 OK. */
6479 if ((lvalue & clk_packed)
6480 && CLASS_TYPE_P (type)
6481 && type_has_nontrivial_copy_init (type))
6483 error_at (loc, "cannot bind packed field %qE to %qT",
6484 expr, ref_type);
6485 return error_mark_node;
6487 if (lvalue & clk_bitfield)
6489 expr = convert_bitfield_to_declared_type (expr);
6490 expr = fold_convert (type, expr);
6492 expr = build_target_expr_with_type (expr, type, complain);
6495 /* Take the address of the thing to which we will bind the
6496 reference. */
6497 expr = cp_build_addr_expr (expr, complain);
6498 if (expr == error_mark_node)
6499 return error_mark_node;
6501 /* Convert it to a pointer to the type referred to by the
6502 reference. This will adjust the pointer if a derived to
6503 base conversion is being performed. */
6504 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
6505 expr, complain);
6506 /* Convert the pointer to the desired reference type. */
6507 return build_nop (ref_type, expr);
6510 case ck_lvalue:
6511 return decay_conversion (expr, complain);
6513 case ck_qual:
6514 /* Warn about deprecated conversion if appropriate. */
6515 string_conv_p (totype, expr, 1);
6516 break;
6518 case ck_ptr:
6519 if (convs->base_p)
6520 expr = convert_to_base (expr, totype, !c_cast_p,
6521 /*nonnull=*/false, complain);
6522 return build_nop (totype, expr);
6524 case ck_pmem:
6525 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
6526 c_cast_p, complain);
6528 default:
6529 break;
6532 if (convs->check_narrowing)
6533 check_narrowing (totype, expr);
6535 if (issue_conversion_warnings)
6536 expr = cp_convert_and_check (totype, expr, complain);
6537 else
6538 expr = cp_convert (totype, expr, complain);
6540 return expr;
6543 /* ARG is being passed to a varargs function. Perform any conversions
6544 required. Return the converted value. */
6546 tree
6547 convert_arg_to_ellipsis (tree arg, tsubst_flags_t complain)
6549 tree arg_type;
6550 location_t loc = EXPR_LOC_OR_LOC (arg, input_location);
6552 /* [expr.call]
6554 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6555 standard conversions are performed. */
6556 arg = decay_conversion (arg, complain);
6557 arg_type = TREE_TYPE (arg);
6558 /* [expr.call]
6560 If the argument has integral or enumeration type that is subject
6561 to the integral promotions (_conv.prom_), or a floating point
6562 type that is subject to the floating point promotion
6563 (_conv.fpprom_), the value of the argument is converted to the
6564 promoted type before the call. */
6565 if (TREE_CODE (arg_type) == REAL_TYPE
6566 && (TYPE_PRECISION (arg_type)
6567 < TYPE_PRECISION (double_type_node))
6568 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type)))
6570 if ((complain & tf_warning)
6571 && warn_double_promotion && !c_inhibit_evaluation_warnings)
6572 warning_at (loc, OPT_Wdouble_promotion,
6573 "implicit conversion from %qT to %qT when passing "
6574 "argument to function",
6575 arg_type, double_type_node);
6576 arg = convert_to_real (double_type_node, arg);
6578 else if (NULLPTR_TYPE_P (arg_type))
6579 arg = null_pointer_node;
6580 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type))
6582 if (SCOPED_ENUM_P (arg_type) && !abi_version_at_least (6))
6584 if (complain & tf_warning)
6585 warning_at (loc, OPT_Wabi, "scoped enum %qT will not promote to an "
6586 "integral type in a future version of GCC", arg_type);
6587 arg = cp_convert (ENUM_UNDERLYING_TYPE (arg_type), arg, complain);
6589 arg = cp_perform_integral_promotions (arg, complain);
6592 arg = require_complete_type_sfinae (arg, complain);
6593 arg_type = TREE_TYPE (arg);
6595 if (arg != error_mark_node
6596 /* In a template (or ill-formed code), we can have an incomplete type
6597 even after require_complete_type_sfinae, in which case we don't know
6598 whether it has trivial copy or not. */
6599 && COMPLETE_TYPE_P (arg_type))
6601 /* Build up a real lvalue-to-rvalue conversion in case the
6602 copy constructor is trivial but not callable. */
6603 if (!cp_unevaluated_operand && CLASS_TYPE_P (arg_type))
6604 force_rvalue (arg, complain);
6606 /* [expr.call] 5.2.2/7:
6607 Passing a potentially-evaluated argument of class type (Clause 9)
6608 with a non-trivial copy constructor or a non-trivial destructor
6609 with no corresponding parameter is conditionally-supported, with
6610 implementation-defined semantics.
6612 We used to just warn here and do a bitwise copy, but now
6613 cp_expr_size will abort if we try to do that.
6615 If the call appears in the context of a sizeof expression,
6616 it is not potentially-evaluated. */
6617 if (cp_unevaluated_operand == 0
6618 && (type_has_nontrivial_copy_init (arg_type)
6619 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type)))
6621 if (complain & tf_error)
6622 error_at (loc, "cannot pass objects of non-trivially-copyable "
6623 "type %q#T through %<...%>", arg_type);
6624 return error_mark_node;
6628 return arg;
6631 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
6633 tree
6634 build_x_va_arg (source_location loc, tree expr, tree type)
6636 if (processing_template_decl)
6637 return build_min (VA_ARG_EXPR, type, expr);
6639 type = complete_type_or_else (type, NULL_TREE);
6641 if (expr == error_mark_node || !type)
6642 return error_mark_node;
6644 expr = mark_lvalue_use (expr);
6646 if (type_has_nontrivial_copy_init (type)
6647 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
6648 || TREE_CODE (type) == REFERENCE_TYPE)
6650 /* Remove reference types so we don't ICE later on. */
6651 tree type1 = non_reference (type);
6652 /* conditionally-supported behavior [expr.call] 5.2.2/7. */
6653 error ("cannot receive objects of non-trivially-copyable type %q#T "
6654 "through %<...%>; ", type);
6655 expr = convert (build_pointer_type (type1), null_node);
6656 expr = cp_build_indirect_ref (expr, RO_NULL, tf_warning_or_error);
6657 return expr;
6660 return build_va_arg (loc, expr, type);
6663 /* TYPE has been given to va_arg. Apply the default conversions which
6664 would have happened when passed via ellipsis. Return the promoted
6665 type, or the passed type if there is no change. */
6667 tree
6668 cxx_type_promotes_to (tree type)
6670 tree promote;
6672 /* Perform the array-to-pointer and function-to-pointer
6673 conversions. */
6674 type = type_decays_to (type);
6676 promote = type_promotes_to (type);
6677 if (same_type_p (type, promote))
6678 promote = type;
6680 return promote;
6683 /* ARG is a default argument expression being passed to a parameter of
6684 the indicated TYPE, which is a parameter to FN. PARMNUM is the
6685 zero-based argument number. Do any required conversions. Return
6686 the converted value. */
6688 static GTY(()) vec<tree, va_gc> *default_arg_context;
6689 void
6690 push_defarg_context (tree fn)
6691 { vec_safe_push (default_arg_context, fn); }
6693 void
6694 pop_defarg_context (void)
6695 { default_arg_context->pop (); }
6697 tree
6698 convert_default_arg (tree type, tree arg, tree fn, int parmnum,
6699 tsubst_flags_t complain)
6701 int i;
6702 tree t;
6704 /* See through clones. */
6705 fn = DECL_ORIGIN (fn);
6707 /* Detect recursion. */
6708 FOR_EACH_VEC_SAFE_ELT (default_arg_context, i, t)
6709 if (t == fn)
6711 if (complain & tf_error)
6712 error ("recursive evaluation of default argument for %q#D", fn);
6713 return error_mark_node;
6716 /* If the ARG is an unparsed default argument expression, the
6717 conversion cannot be performed. */
6718 if (TREE_CODE (arg) == DEFAULT_ARG)
6720 if (complain & tf_error)
6721 error ("call to %qD uses the default argument for parameter %P, which "
6722 "is not yet defined", fn, parmnum);
6723 return error_mark_node;
6726 push_defarg_context (fn);
6728 if (fn && DECL_TEMPLATE_INFO (fn))
6729 arg = tsubst_default_argument (fn, type, arg, complain);
6731 /* Due to:
6733 [dcl.fct.default]
6735 The names in the expression are bound, and the semantic
6736 constraints are checked, at the point where the default
6737 expressions appears.
6739 we must not perform access checks here. */
6740 push_deferring_access_checks (dk_no_check);
6741 /* We must make a copy of ARG, in case subsequent processing
6742 alters any part of it. */
6743 arg = break_out_target_exprs (arg);
6744 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
6745 ICR_DEFAULT_ARGUMENT, fn, parmnum,
6746 complain);
6747 arg = convert_for_arg_passing (type, arg, complain);
6748 pop_deferring_access_checks();
6750 pop_defarg_context ();
6752 return arg;
6755 /* Returns the type which will really be used for passing an argument of
6756 type TYPE. */
6758 tree
6759 type_passed_as (tree type)
6761 /* Pass classes with copy ctors by invisible reference. */
6762 if (TREE_ADDRESSABLE (type))
6764 type = build_reference_type (type);
6765 /* There are no other pointers to this temporary. */
6766 type = cp_build_qualified_type (type, TYPE_QUAL_RESTRICT);
6768 else if (targetm.calls.promote_prototypes (type)
6769 && INTEGRAL_TYPE_P (type)
6770 && COMPLETE_TYPE_P (type)
6771 && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
6772 type = integer_type_node;
6774 return type;
6777 /* Actually perform the appropriate conversion. */
6779 tree
6780 convert_for_arg_passing (tree type, tree val, tsubst_flags_t complain)
6782 tree bitfield_type;
6784 /* If VAL is a bitfield, then -- since it has already been converted
6785 to TYPE -- it cannot have a precision greater than TYPE.
6787 If it has a smaller precision, we must widen it here. For
6788 example, passing "int f:3;" to a function expecting an "int" will
6789 not result in any conversion before this point.
6791 If the precision is the same we must not risk widening. For
6792 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
6793 often have type "int", even though the C++ type for the field is
6794 "long long". If the value is being passed to a function
6795 expecting an "int", then no conversions will be required. But,
6796 if we call convert_bitfield_to_declared_type, the bitfield will
6797 be converted to "long long". */
6798 bitfield_type = is_bitfield_expr_with_lowered_type (val);
6799 if (bitfield_type
6800 && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
6801 val = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type), val);
6803 if (val == error_mark_node)
6805 /* Pass classes with copy ctors by invisible reference. */
6806 else if (TREE_ADDRESSABLE (type))
6807 val = build1 (ADDR_EXPR, build_reference_type (type), val);
6808 else if (targetm.calls.promote_prototypes (type)
6809 && INTEGRAL_TYPE_P (type)
6810 && COMPLETE_TYPE_P (type)
6811 && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
6812 val = cp_perform_integral_promotions (val, complain);
6813 if ((complain & tf_warning)
6814 && warn_suggest_attribute_format)
6816 tree rhstype = TREE_TYPE (val);
6817 const enum tree_code coder = TREE_CODE (rhstype);
6818 const enum tree_code codel = TREE_CODE (type);
6819 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
6820 && coder == codel
6821 && check_missing_format_attribute (type, rhstype))
6822 warning (OPT_Wsuggest_attribute_format,
6823 "argument of function call might be a candidate for a format attribute");
6825 return val;
6828 /* Returns true iff FN is a function with magic varargs, i.e. ones for
6829 which no conversions at all should be done. This is true for some
6830 builtins which don't act like normal functions. */
6832 bool
6833 magic_varargs_p (tree fn)
6835 if (flag_cilkplus && is_cilkplus_reduce_builtin (fn) != BUILT_IN_NONE)
6836 return true;
6838 if (DECL_BUILT_IN (fn))
6839 switch (DECL_FUNCTION_CODE (fn))
6841 case BUILT_IN_CLASSIFY_TYPE:
6842 case BUILT_IN_CONSTANT_P:
6843 case BUILT_IN_NEXT_ARG:
6844 case BUILT_IN_VA_START:
6845 return true;
6847 default:;
6848 return lookup_attribute ("type generic",
6849 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
6852 return false;
6855 /* Returns the decl of the dispatcher function if FN is a function version. */
6857 tree
6858 get_function_version_dispatcher (tree fn)
6860 tree dispatcher_decl = NULL;
6862 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
6863 && DECL_FUNCTION_VERSIONED (fn));
6865 gcc_assert (targetm.get_function_versions_dispatcher);
6866 dispatcher_decl = targetm.get_function_versions_dispatcher (fn);
6868 if (dispatcher_decl == NULL)
6870 error_at (input_location, "use of multiversioned function "
6871 "without a default");
6872 return NULL;
6875 retrofit_lang_decl (dispatcher_decl);
6876 gcc_assert (dispatcher_decl != NULL);
6877 return dispatcher_decl;
6880 /* fn is a function version dispatcher that is marked used. Mark all the
6881 semantically identical function versions it will dispatch as used. */
6883 void
6884 mark_versions_used (tree fn)
6886 struct cgraph_node *node;
6887 struct cgraph_function_version_info *node_v;
6888 struct cgraph_function_version_info *it_v;
6890 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
6892 node = cgraph_get_node (fn);
6893 if (node == NULL)
6894 return;
6896 gcc_assert (node->dispatcher_function);
6898 node_v = get_cgraph_node_version (node);
6899 if (node_v == NULL)
6900 return;
6902 /* All semantically identical versions are chained. Traverse and mark each
6903 one of them as used. */
6904 it_v = node_v->next;
6905 while (it_v != NULL)
6907 mark_used (it_v->this_node->decl);
6908 it_v = it_v->next;
6912 /* Subroutine of the various build_*_call functions. Overload resolution
6913 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
6914 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
6915 bitmask of various LOOKUP_* flags which apply to the call itself. */
6917 static tree
6918 build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
6920 tree fn = cand->fn;
6921 const vec<tree, va_gc> *args = cand->args;
6922 tree first_arg = cand->first_arg;
6923 conversion **convs = cand->convs;
6924 conversion *conv;
6925 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
6926 int parmlen;
6927 tree val;
6928 int i = 0;
6929 int j = 0;
6930 unsigned int arg_index = 0;
6931 int is_method = 0;
6932 int nargs;
6933 tree *argarray;
6934 bool already_used = false;
6936 /* In a template, there is no need to perform all of the work that
6937 is normally done. We are only interested in the type of the call
6938 expression, i.e., the return type of the function. Any semantic
6939 errors will be deferred until the template is instantiated. */
6940 if (processing_template_decl)
6942 tree expr, addr;
6943 tree return_type;
6944 const tree *argarray;
6945 unsigned int nargs;
6947 return_type = TREE_TYPE (TREE_TYPE (fn));
6948 nargs = vec_safe_length (args);
6949 if (first_arg == NULL_TREE)
6950 argarray = args->address ();
6951 else
6953 tree *alcarray;
6954 unsigned int ix;
6955 tree arg;
6957 ++nargs;
6958 alcarray = XALLOCAVEC (tree, nargs);
6959 alcarray[0] = first_arg;
6960 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
6961 alcarray[ix + 1] = arg;
6962 argarray = alcarray;
6965 addr = build_addr_func (fn, complain);
6966 if (addr == error_mark_node)
6967 return error_mark_node;
6968 expr = build_call_array_loc (input_location, return_type,
6969 addr, nargs, argarray);
6970 if (TREE_THIS_VOLATILE (fn) && cfun)
6971 current_function_returns_abnormally = 1;
6972 return convert_from_reference (expr);
6975 /* Give any warnings we noticed during overload resolution. */
6976 if (cand->warnings && (complain & tf_warning))
6978 struct candidate_warning *w;
6979 for (w = cand->warnings; w; w = w->next)
6980 joust (cand, w->loser, 1, complain);
6983 /* Make =delete work with SFINAE. */
6984 if (DECL_DELETED_FN (fn) && !(complain & tf_error))
6985 return error_mark_node;
6987 if (DECL_FUNCTION_MEMBER_P (fn))
6989 tree access_fn;
6990 /* If FN is a template function, two cases must be considered.
6991 For example:
6993 struct A {
6994 protected:
6995 template <class T> void f();
6997 template <class T> struct B {
6998 protected:
6999 void g();
7001 struct C : A, B<int> {
7002 using A::f; // #1
7003 using B<int>::g; // #2
7006 In case #1 where `A::f' is a member template, DECL_ACCESS is
7007 recorded in the primary template but not in its specialization.
7008 We check access of FN using its primary template.
7010 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
7011 because it is a member of class template B, DECL_ACCESS is
7012 recorded in the specialization `B<int>::g'. We cannot use its
7013 primary template because `B<T>::g' and `B<int>::g' may have
7014 different access. */
7015 if (DECL_TEMPLATE_INFO (fn)
7016 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
7017 access_fn = DECL_TI_TEMPLATE (fn);
7018 else
7019 access_fn = fn;
7020 if (!perform_or_defer_access_check (cand->access_path, access_fn,
7021 fn, complain))
7022 return error_mark_node;
7025 /* If we're checking for implicit delete, don't bother with argument
7026 conversions. */
7027 if (flags & LOOKUP_SPECULATIVE)
7029 if (DECL_DELETED_FN (fn))
7031 if (complain & tf_error)
7032 mark_used (fn);
7033 return error_mark_node;
7035 if (cand->viable == 1)
7036 return fn;
7037 else if (!(complain & tf_error))
7038 /* Reject bad conversions now. */
7039 return error_mark_node;
7040 /* else continue to get conversion error. */
7043 /* N3276 magic doesn't apply to nested calls. */
7044 int decltype_flag = (complain & tf_decltype);
7045 complain &= ~tf_decltype;
7047 /* Find maximum size of vector to hold converted arguments. */
7048 parmlen = list_length (parm);
7049 nargs = vec_safe_length (args) + (first_arg != NULL_TREE ? 1 : 0);
7050 if (parmlen > nargs)
7051 nargs = parmlen;
7052 argarray = XALLOCAVEC (tree, nargs);
7054 /* The implicit parameters to a constructor are not considered by overload
7055 resolution, and must be of the proper type. */
7056 if (DECL_CONSTRUCTOR_P (fn))
7058 tree object_arg;
7059 if (first_arg != NULL_TREE)
7061 object_arg = first_arg;
7062 first_arg = NULL_TREE;
7064 else
7066 object_arg = (*args)[arg_index];
7067 ++arg_index;
7069 argarray[j++] = build_this (object_arg);
7070 parm = TREE_CHAIN (parm);
7071 /* We should never try to call the abstract constructor. */
7072 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
7074 if (DECL_HAS_VTT_PARM_P (fn))
7076 argarray[j++] = (*args)[arg_index];
7077 ++arg_index;
7078 parm = TREE_CHAIN (parm);
7081 /* Bypass access control for 'this' parameter. */
7082 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
7084 tree parmtype = TREE_VALUE (parm);
7085 tree arg = build_this (first_arg != NULL_TREE
7086 ? first_arg
7087 : (*args)[arg_index]);
7088 tree argtype = TREE_TYPE (arg);
7089 tree converted_arg;
7090 tree base_binfo;
7092 if (convs[i]->bad_p)
7094 if (complain & tf_error)
7096 if (permerror (input_location, "passing %qT as %<this%> "
7097 "argument discards qualifiers",
7098 TREE_TYPE (argtype)))
7099 inform (DECL_SOURCE_LOCATION (fn), " in call to %qD", fn);
7101 else
7102 return error_mark_node;
7105 /* See if the function member or the whole class type is declared
7106 final and the call can be devirtualized. */
7107 if (DECL_FINAL_P (fn)
7108 || CLASSTYPE_FINAL (TYPE_METHOD_BASETYPE (TREE_TYPE (fn))))
7109 flags |= LOOKUP_NONVIRTUAL;
7111 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
7112 X is called for an object that is not of type X, or of a type
7113 derived from X, the behavior is undefined.
7115 So we can assume that anything passed as 'this' is non-null, and
7116 optimize accordingly. */
7117 gcc_assert (TYPE_PTR_P (parmtype));
7118 /* Convert to the base in which the function was declared. */
7119 gcc_assert (cand->conversion_path != NULL_TREE);
7120 converted_arg = build_base_path (PLUS_EXPR,
7121 arg,
7122 cand->conversion_path,
7123 1, complain);
7124 /* Check that the base class is accessible. */
7125 if (!accessible_base_p (TREE_TYPE (argtype),
7126 BINFO_TYPE (cand->conversion_path), true))
7128 if (complain & tf_error)
7129 error ("%qT is not an accessible base of %qT",
7130 BINFO_TYPE (cand->conversion_path),
7131 TREE_TYPE (argtype));
7132 else
7133 return error_mark_node;
7135 /* If fn was found by a using declaration, the conversion path
7136 will be to the derived class, not the base declaring fn. We
7137 must convert from derived to base. */
7138 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
7139 TREE_TYPE (parmtype), ba_unique,
7140 NULL, complain);
7141 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
7142 base_binfo, 1, complain);
7144 argarray[j++] = converted_arg;
7145 parm = TREE_CHAIN (parm);
7146 if (first_arg != NULL_TREE)
7147 first_arg = NULL_TREE;
7148 else
7149 ++arg_index;
7150 ++i;
7151 is_method = 1;
7154 gcc_assert (first_arg == NULL_TREE);
7155 for (; arg_index < vec_safe_length (args) && parm;
7156 parm = TREE_CHAIN (parm), ++arg_index, ++i)
7158 tree type = TREE_VALUE (parm);
7159 tree arg = (*args)[arg_index];
7160 bool conversion_warning = true;
7162 conv = convs[i];
7164 /* If the argument is NULL and used to (implicitly) instantiate a
7165 template function (and bind one of the template arguments to
7166 the type of 'long int'), we don't want to warn about passing NULL
7167 to non-pointer argument.
7168 For example, if we have this template function:
7170 template<typename T> void func(T x) {}
7172 we want to warn (when -Wconversion is enabled) in this case:
7174 void foo() {
7175 func<int>(NULL);
7178 but not in this case:
7180 void foo() {
7181 func(NULL);
7184 if (arg == null_node
7185 && DECL_TEMPLATE_INFO (fn)
7186 && cand->template_decl
7187 && !(flags & LOOKUP_EXPLICIT_TMPL_ARGS))
7188 conversion_warning = false;
7190 /* Warn about initializer_list deduction that isn't currently in the
7191 working draft. */
7192 if (cxx_dialect > cxx98
7193 && flag_deduce_init_list
7194 && cand->template_decl
7195 && is_std_init_list (non_reference (type))
7196 && BRACE_ENCLOSED_INITIALIZER_P (arg))
7198 tree tmpl = TI_TEMPLATE (cand->template_decl);
7199 tree realparm = chain_index (j, DECL_ARGUMENTS (cand->fn));
7200 tree patparm = get_pattern_parm (realparm, tmpl);
7201 tree pattype = TREE_TYPE (patparm);
7202 if (PACK_EXPANSION_P (pattype))
7203 pattype = PACK_EXPANSION_PATTERN (pattype);
7204 pattype = non_reference (pattype);
7206 if (TREE_CODE (pattype) == TEMPLATE_TYPE_PARM
7207 && (cand->explicit_targs == NULL_TREE
7208 || (TREE_VEC_LENGTH (cand->explicit_targs)
7209 <= TEMPLATE_TYPE_IDX (pattype))))
7211 pedwarn (input_location, 0, "deducing %qT as %qT",
7212 non_reference (TREE_TYPE (patparm)),
7213 non_reference (type));
7214 pedwarn (input_location, 0, " in call to %q+D", cand->fn);
7215 pedwarn (input_location, 0,
7216 " (you can disable this with -fno-deduce-init-list)");
7219 val = convert_like_with_context (conv, arg, fn, i - is_method,
7220 conversion_warning
7221 ? complain
7222 : complain & (~tf_warning));
7224 val = convert_for_arg_passing (type, val, complain);
7226 if (val == error_mark_node)
7227 return error_mark_node;
7228 else
7229 argarray[j++] = val;
7232 /* Default arguments */
7233 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
7235 if (TREE_VALUE (parm) == error_mark_node)
7236 return error_mark_node;
7237 argarray[j++] = convert_default_arg (TREE_VALUE (parm),
7238 TREE_PURPOSE (parm),
7239 fn, i - is_method,
7240 complain);
7243 /* Ellipsis */
7244 for (; arg_index < vec_safe_length (args); ++arg_index)
7246 tree a = (*args)[arg_index];
7247 if (magic_varargs_p (fn))
7248 /* Do no conversions for magic varargs. */
7249 a = mark_type_use (a);
7250 else
7251 a = convert_arg_to_ellipsis (a, complain);
7252 argarray[j++] = a;
7255 gcc_assert (j <= nargs);
7256 nargs = j;
7258 check_function_arguments (TREE_TYPE (fn), nargs, argarray);
7260 /* Avoid actually calling copy constructors and copy assignment operators,
7261 if possible. */
7263 if (! flag_elide_constructors)
7264 /* Do things the hard way. */;
7265 else if (cand->num_convs == 1
7266 && (DECL_COPY_CONSTRUCTOR_P (fn)
7267 || DECL_MOVE_CONSTRUCTOR_P (fn)))
7269 tree targ;
7270 tree arg = argarray[num_artificial_parms_for (fn)];
7271 tree fa;
7272 bool trivial = trivial_fn_p (fn);
7274 /* Pull out the real argument, disregarding const-correctness. */
7275 targ = arg;
7276 while (CONVERT_EXPR_P (targ)
7277 || TREE_CODE (targ) == NON_LVALUE_EXPR)
7278 targ = TREE_OPERAND (targ, 0);
7279 if (TREE_CODE (targ) == ADDR_EXPR)
7281 targ = TREE_OPERAND (targ, 0);
7282 if (!same_type_ignoring_top_level_qualifiers_p
7283 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
7284 targ = NULL_TREE;
7286 else
7287 targ = NULL_TREE;
7289 if (targ)
7290 arg = targ;
7291 else
7292 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
7294 /* [class.copy]: the copy constructor is implicitly defined even if
7295 the implementation elided its use. */
7296 if (!trivial || DECL_DELETED_FN (fn))
7298 mark_used (fn);
7299 already_used = true;
7302 /* If we're creating a temp and we already have one, don't create a
7303 new one. If we're not creating a temp but we get one, use
7304 INIT_EXPR to collapse the temp into our target. Otherwise, if the
7305 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
7306 temp or an INIT_EXPR otherwise. */
7307 fa = argarray[0];
7308 if (is_dummy_object (fa))
7310 if (TREE_CODE (arg) == TARGET_EXPR)
7311 return arg;
7312 else if (trivial)
7313 return force_target_expr (DECL_CONTEXT (fn), arg, complain);
7315 else if (TREE_CODE (arg) == TARGET_EXPR || trivial)
7317 tree to = stabilize_reference (cp_build_indirect_ref (fa, RO_NULL,
7318 complain));
7320 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
7321 return val;
7324 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
7325 && trivial_fn_p (fn)
7326 && !DECL_DELETED_FN (fn))
7328 tree to = stabilize_reference
7329 (cp_build_indirect_ref (argarray[0], RO_NULL, complain));
7330 tree type = TREE_TYPE (to);
7331 tree as_base = CLASSTYPE_AS_BASE (type);
7332 tree arg = argarray[1];
7334 if (is_really_empty_class (type))
7336 /* Avoid copying empty classes. */
7337 val = build2 (COMPOUND_EXPR, void_type_node, to, arg);
7338 TREE_NO_WARNING (val) = 1;
7339 val = build2 (COMPOUND_EXPR, type, val, to);
7340 TREE_NO_WARNING (val) = 1;
7342 else if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
7344 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
7345 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
7347 else
7349 /* We must only copy the non-tail padding parts. */
7350 tree arg0, arg2, t;
7351 tree array_type, alias_set;
7353 arg2 = TYPE_SIZE_UNIT (as_base);
7354 arg0 = cp_build_addr_expr (to, complain);
7356 array_type = build_array_type (char_type_node,
7357 build_index_type
7358 (size_binop (MINUS_EXPR,
7359 arg2, size_int (1))));
7360 alias_set = build_int_cst (build_pointer_type (type), 0);
7361 t = build2 (MODIFY_EXPR, void_type_node,
7362 build2 (MEM_REF, array_type, arg0, alias_set),
7363 build2 (MEM_REF, array_type, arg, alias_set));
7364 val = build2 (COMPOUND_EXPR, TREE_TYPE (to), t, to);
7365 TREE_NO_WARNING (val) = 1;
7368 return val;
7370 else if (DECL_DESTRUCTOR_P (fn)
7371 && trivial_fn_p (fn)
7372 && !DECL_DELETED_FN (fn))
7373 return fold_convert (void_type_node, argarray[0]);
7374 /* FIXME handle trivial default constructor, too. */
7376 /* For calls to a multi-versioned function, overload resolution
7377 returns the function with the highest target priority, that is,
7378 the version that will checked for dispatching first. If this
7379 version is inlinable, a direct call to this version can be made
7380 otherwise the call should go through the dispatcher. */
7382 if (DECL_FUNCTION_VERSIONED (fn)
7383 && (current_function_decl == NULL
7384 || !targetm.target_option.can_inline_p (current_function_decl, fn)))
7386 fn = get_function_version_dispatcher (fn);
7387 if (fn == NULL)
7388 return NULL;
7389 if (!already_used)
7390 mark_versions_used (fn);
7393 if (!already_used
7394 && !mark_used (fn))
7395 return error_mark_node;
7397 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0
7398 /* Don't mess with virtual lookup in fold_non_dependent_expr; virtual
7399 functions can't be constexpr. */
7400 && !in_template_function ())
7402 tree t;
7403 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
7404 DECL_CONTEXT (fn),
7405 ba_any, NULL, complain);
7406 gcc_assert (binfo && binfo != error_mark_node);
7408 /* Warn about deprecated virtual functions now, since we're about
7409 to throw away the decl. */
7410 if (TREE_DEPRECATED (fn))
7411 warn_deprecated_use (fn, NULL_TREE);
7413 argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1,
7414 complain);
7415 if (TREE_SIDE_EFFECTS (argarray[0]))
7416 argarray[0] = save_expr (argarray[0]);
7417 t = build_pointer_type (TREE_TYPE (fn));
7418 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
7419 fn = build_java_interface_fn_ref (fn, argarray[0]);
7420 else
7421 fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
7422 TREE_TYPE (fn) = t;
7424 else
7426 fn = build_addr_func (fn, complain);
7427 if (fn == error_mark_node)
7428 return error_mark_node;
7431 tree call = build_cxx_call (fn, nargs, argarray, complain|decltype_flag);
7432 if (TREE_CODE (call) == CALL_EXPR
7433 && (cand->flags & LOOKUP_LIST_INIT_CTOR))
7434 CALL_EXPR_LIST_INIT_P (call) = true;
7435 return call;
7438 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
7439 This function performs no overload resolution, conversion, or other
7440 high-level operations. */
7442 tree
7443 build_cxx_call (tree fn, int nargs, tree *argarray,
7444 tsubst_flags_t complain)
7446 tree fndecl;
7447 int optimize_sav;
7449 /* Remember roughly where this call is. */
7450 location_t loc = EXPR_LOC_OR_LOC (fn, input_location);
7451 fn = build_call_a (fn, nargs, argarray);
7452 SET_EXPR_LOCATION (fn, loc);
7454 fndecl = get_callee_fndecl (fn);
7456 /* Check that arguments to builtin functions match the expectations. */
7457 if (fndecl
7458 && DECL_BUILT_IN (fndecl)
7459 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
7460 && !check_builtin_function_arguments (fndecl, nargs, argarray))
7461 return error_mark_node;
7463 /* If it is a built-in array notation function, then the return type of
7464 the function is the element type of the array passed in as array
7465 notation (i.e. the first parameter of the function). */
7466 if (flag_cilkplus && TREE_CODE (fn) == CALL_EXPR)
7468 enum built_in_function bif =
7469 is_cilkplus_reduce_builtin (CALL_EXPR_FN (fn));
7470 if (bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ADD
7471 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MUL
7472 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MAX
7473 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MIN
7474 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE
7475 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MUTATING)
7477 /* for bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_ZERO or
7478 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_ZERO or
7479 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_NONZERO or
7480 BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_NONZERO or
7481 BUILT_IN_CILKPLUS_SEC_REDUCE_MIN_IND or
7482 BUILT_IN_CILKPLUS_SEC_REDUCE_MAX_IND
7483 The pre-defined return-type is the correct one. */
7484 tree array_ntn = CALL_EXPR_ARG (fn, 0);
7485 TREE_TYPE (fn) = TREE_TYPE (array_ntn);
7486 return fn;
7490 /* Some built-in function calls will be evaluated at compile-time in
7491 fold (). Set optimize to 1 when folding __builtin_constant_p inside
7492 a constexpr function so that fold_builtin_1 doesn't fold it to 0. */
7493 optimize_sav = optimize;
7494 if (!optimize && fndecl && DECL_IS_BUILTIN_CONSTANT_P (fndecl)
7495 && current_function_decl
7496 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
7497 optimize = 1;
7498 fn = fold_if_not_in_template (fn);
7499 optimize = optimize_sav;
7501 if (VOID_TYPE_P (TREE_TYPE (fn)))
7502 return fn;
7504 /* 5.2.2/11: If a function call is a prvalue of object type: if the
7505 function call is either the operand of a decltype-specifier or the
7506 right operand of a comma operator that is the operand of a
7507 decltype-specifier, a temporary object is not introduced for the
7508 prvalue. The type of the prvalue may be incomplete. */
7509 if (!(complain & tf_decltype))
7511 fn = require_complete_type_sfinae (fn, complain);
7512 if (fn == error_mark_node)
7513 return error_mark_node;
7515 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
7516 fn = build_cplus_new (TREE_TYPE (fn), fn, complain);
7518 return convert_from_reference (fn);
7521 static GTY(()) tree java_iface_lookup_fn;
7523 /* Make an expression which yields the address of the Java interface
7524 method FN. This is achieved by generating a call to libjava's
7525 _Jv_LookupInterfaceMethodIdx(). */
7527 static tree
7528 build_java_interface_fn_ref (tree fn, tree instance)
7530 tree lookup_fn, method, idx;
7531 tree klass_ref, iface, iface_ref;
7532 int i;
7534 if (!java_iface_lookup_fn)
7536 tree ftype = build_function_type_list (ptr_type_node,
7537 ptr_type_node, ptr_type_node,
7538 java_int_type_node, NULL_TREE);
7539 java_iface_lookup_fn
7540 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx", ftype,
7541 0, NOT_BUILT_IN, NULL, NULL_TREE);
7544 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
7545 This is the first entry in the vtable. */
7546 klass_ref = build_vtbl_ref (cp_build_indirect_ref (instance, RO_NULL,
7547 tf_warning_or_error),
7548 integer_zero_node);
7550 /* Get the java.lang.Class pointer for the interface being called. */
7551 iface = DECL_CONTEXT (fn);
7552 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
7553 if (!iface_ref || !VAR_P (iface_ref)
7554 || DECL_CONTEXT (iface_ref) != iface)
7556 error ("could not find class$ field in java interface type %qT",
7557 iface);
7558 return error_mark_node;
7560 iface_ref = build_address (iface_ref);
7561 iface_ref = convert (build_pointer_type (iface), iface_ref);
7563 /* Determine the itable index of FN. */
7564 i = 1;
7565 for (method = TYPE_METHODS (iface); method; method = DECL_CHAIN (method))
7567 if (!DECL_VIRTUAL_P (method))
7568 continue;
7569 if (fn == method)
7570 break;
7571 i++;
7573 idx = build_int_cst (NULL_TREE, i);
7575 lookup_fn = build1 (ADDR_EXPR,
7576 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
7577 java_iface_lookup_fn);
7578 return build_call_nary (ptr_type_node, lookup_fn,
7579 3, klass_ref, iface_ref, idx);
7582 /* Returns the value to use for the in-charge parameter when making a
7583 call to a function with the indicated NAME.
7585 FIXME:Can't we find a neater way to do this mapping? */
7587 tree
7588 in_charge_arg_for_name (tree name)
7590 if (name == base_ctor_identifier
7591 || name == base_dtor_identifier)
7592 return integer_zero_node;
7593 else if (name == complete_ctor_identifier)
7594 return integer_one_node;
7595 else if (name == complete_dtor_identifier)
7596 return integer_two_node;
7597 else if (name == deleting_dtor_identifier)
7598 return integer_three_node;
7600 /* This function should only be called with one of the names listed
7601 above. */
7602 gcc_unreachable ();
7603 return NULL_TREE;
7606 /* Build a call to a constructor, destructor, or an assignment
7607 operator for INSTANCE, an expression with class type. NAME
7608 indicates the special member function to call; *ARGS are the
7609 arguments. ARGS may be NULL. This may change ARGS. BINFO
7610 indicates the base of INSTANCE that is to be passed as the `this'
7611 parameter to the member function called.
7613 FLAGS are the LOOKUP_* flags to use when processing the call.
7615 If NAME indicates a complete object constructor, INSTANCE may be
7616 NULL_TREE. In this case, the caller will call build_cplus_new to
7617 store the newly constructed object into a VAR_DECL. */
7619 tree
7620 build_special_member_call (tree instance, tree name, vec<tree, va_gc> **args,
7621 tree binfo, int flags, tsubst_flags_t complain)
7623 tree fns;
7624 /* The type of the subobject to be constructed or destroyed. */
7625 tree class_type;
7626 vec<tree, va_gc> *allocated = NULL;
7627 tree ret;
7629 gcc_assert (name == complete_ctor_identifier
7630 || name == base_ctor_identifier
7631 || name == complete_dtor_identifier
7632 || name == base_dtor_identifier
7633 || name == deleting_dtor_identifier
7634 || name == ansi_assopname (NOP_EXPR));
7635 if (TYPE_P (binfo))
7637 /* Resolve the name. */
7638 if (!complete_type_or_maybe_complain (binfo, NULL_TREE, complain))
7639 return error_mark_node;
7641 binfo = TYPE_BINFO (binfo);
7644 gcc_assert (binfo != NULL_TREE);
7646 class_type = BINFO_TYPE (binfo);
7648 /* Handle the special case where INSTANCE is NULL_TREE. */
7649 if (name == complete_ctor_identifier && !instance)
7650 instance = build_dummy_object (class_type);
7651 else
7653 if (name == complete_dtor_identifier
7654 || name == base_dtor_identifier
7655 || name == deleting_dtor_identifier)
7656 gcc_assert (args == NULL || vec_safe_is_empty (*args));
7658 /* Convert to the base class, if necessary. */
7659 if (!same_type_ignoring_top_level_qualifiers_p
7660 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
7662 if (name != ansi_assopname (NOP_EXPR))
7663 /* For constructors and destructors, either the base is
7664 non-virtual, or it is virtual but we are doing the
7665 conversion from a constructor or destructor for the
7666 complete object. In either case, we can convert
7667 statically. */
7668 instance = convert_to_base_statically (instance, binfo);
7669 else
7670 /* However, for assignment operators, we must convert
7671 dynamically if the base is virtual. */
7672 instance = build_base_path (PLUS_EXPR, instance,
7673 binfo, /*nonnull=*/1, complain);
7677 gcc_assert (instance != NULL_TREE);
7679 fns = lookup_fnfields (binfo, name, 1);
7681 /* When making a call to a constructor or destructor for a subobject
7682 that uses virtual base classes, pass down a pointer to a VTT for
7683 the subobject. */
7684 if ((name == base_ctor_identifier
7685 || name == base_dtor_identifier)
7686 && CLASSTYPE_VBASECLASSES (class_type))
7688 tree vtt;
7689 tree sub_vtt;
7691 /* If the current function is a complete object constructor
7692 or destructor, then we fetch the VTT directly.
7693 Otherwise, we look it up using the VTT we were given. */
7694 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
7695 vtt = decay_conversion (vtt, complain);
7696 if (vtt == error_mark_node)
7697 return error_mark_node;
7698 vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
7699 build2 (EQ_EXPR, boolean_type_node,
7700 current_in_charge_parm, integer_zero_node),
7701 current_vtt_parm,
7702 vtt);
7703 if (BINFO_SUBVTT_INDEX (binfo))
7704 sub_vtt = fold_build_pointer_plus (vtt, BINFO_SUBVTT_INDEX (binfo));
7705 else
7706 sub_vtt = vtt;
7708 if (args == NULL)
7710 allocated = make_tree_vector ();
7711 args = &allocated;
7714 vec_safe_insert (*args, 0, sub_vtt);
7717 ret = build_new_method_call (instance, fns, args,
7718 TYPE_BINFO (BINFO_TYPE (binfo)),
7719 flags, /*fn=*/NULL,
7720 complain);
7722 if (allocated != NULL)
7723 release_tree_vector (allocated);
7725 if ((complain & tf_error)
7726 && (flags & LOOKUP_DELEGATING_CONS)
7727 && name == complete_ctor_identifier
7728 && TREE_CODE (ret) == CALL_EXPR
7729 && (DECL_ABSTRACT_ORIGIN (TREE_OPERAND (CALL_EXPR_FN (ret), 0))
7730 == current_function_decl))
7731 error ("constructor delegates to itself");
7733 return ret;
7736 /* Return the NAME, as a C string. The NAME indicates a function that
7737 is a member of TYPE. *FREE_P is set to true if the caller must
7738 free the memory returned.
7740 Rather than go through all of this, we should simply set the names
7741 of constructors and destructors appropriately, and dispense with
7742 ctor_identifier, dtor_identifier, etc. */
7744 static char *
7745 name_as_c_string (tree name, tree type, bool *free_p)
7747 char *pretty_name;
7749 /* Assume that we will not allocate memory. */
7750 *free_p = false;
7751 /* Constructors and destructors are special. */
7752 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7754 pretty_name
7755 = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type))));
7756 /* For a destructor, add the '~'. */
7757 if (name == complete_dtor_identifier
7758 || name == base_dtor_identifier
7759 || name == deleting_dtor_identifier)
7761 pretty_name = concat ("~", pretty_name, NULL);
7762 /* Remember that we need to free the memory allocated. */
7763 *free_p = true;
7766 else if (IDENTIFIER_TYPENAME_P (name))
7768 pretty_name = concat ("operator ",
7769 type_as_string_translate (TREE_TYPE (name),
7770 TFF_PLAIN_IDENTIFIER),
7771 NULL);
7772 /* Remember that we need to free the memory allocated. */
7773 *free_p = true;
7775 else
7776 pretty_name = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (name)));
7778 return pretty_name;
7781 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
7782 be set, upon return, to the function called. ARGS may be NULL.
7783 This may change ARGS. */
7785 static tree
7786 build_new_method_call_1 (tree instance, tree fns, vec<tree, va_gc> **args,
7787 tree conversion_path, int flags,
7788 tree *fn_p, tsubst_flags_t complain)
7790 struct z_candidate *candidates = 0, *cand;
7791 tree explicit_targs = NULL_TREE;
7792 tree basetype = NULL_TREE;
7793 tree access_binfo, binfo;
7794 tree optype;
7795 tree first_mem_arg = NULL_TREE;
7796 tree name;
7797 bool skip_first_for_error;
7798 vec<tree, va_gc> *user_args;
7799 tree call;
7800 tree fn;
7801 int template_only = 0;
7802 bool any_viable_p;
7803 tree orig_instance;
7804 tree orig_fns;
7805 vec<tree, va_gc> *orig_args = NULL;
7806 void *p;
7808 gcc_assert (instance != NULL_TREE);
7810 /* We don't know what function we're going to call, yet. */
7811 if (fn_p)
7812 *fn_p = NULL_TREE;
7814 if (error_operand_p (instance)
7815 || !fns || error_operand_p (fns))
7816 return error_mark_node;
7818 if (!BASELINK_P (fns))
7820 if (complain & tf_error)
7821 error ("call to non-function %qD", fns);
7822 return error_mark_node;
7825 orig_instance = instance;
7826 orig_fns = fns;
7828 /* Dismantle the baselink to collect all the information we need. */
7829 if (!conversion_path)
7830 conversion_path = BASELINK_BINFO (fns);
7831 access_binfo = BASELINK_ACCESS_BINFO (fns);
7832 binfo = BASELINK_BINFO (fns);
7833 optype = BASELINK_OPTYPE (fns);
7834 fns = BASELINK_FUNCTIONS (fns);
7835 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7837 explicit_targs = TREE_OPERAND (fns, 1);
7838 fns = TREE_OPERAND (fns, 0);
7839 template_only = 1;
7841 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
7842 || TREE_CODE (fns) == TEMPLATE_DECL
7843 || TREE_CODE (fns) == OVERLOAD);
7844 fn = get_first_fn (fns);
7845 name = DECL_NAME (fn);
7847 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
7848 gcc_assert (CLASS_TYPE_P (basetype));
7850 if (processing_template_decl)
7852 orig_args = args == NULL ? NULL : make_tree_vector_copy (*args);
7853 instance = build_non_dependent_expr (instance);
7854 if (args != NULL)
7855 make_args_non_dependent (*args);
7858 user_args = args == NULL ? NULL : *args;
7859 /* Under DR 147 A::A() is an invalid constructor call,
7860 not a functional cast. */
7861 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
7863 if (! (complain & tf_error))
7864 return error_mark_node;
7866 if (permerror (input_location,
7867 "cannot call constructor %<%T::%D%> directly",
7868 basetype, name))
7869 inform (input_location, "for a function-style cast, remove the "
7870 "redundant %<::%D%>", name);
7871 call = build_functional_cast (basetype, build_tree_list_vec (user_args),
7872 complain);
7873 return call;
7876 /* Figure out whether to skip the first argument for the error
7877 message we will display to users if an error occurs. We don't
7878 want to display any compiler-generated arguments. The "this"
7879 pointer hasn't been added yet. However, we must remove the VTT
7880 pointer if this is a call to a base-class constructor or
7881 destructor. */
7882 skip_first_for_error = false;
7883 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7885 /* Callers should explicitly indicate whether they want to construct
7886 the complete object or just the part without virtual bases. */
7887 gcc_assert (name != ctor_identifier);
7888 /* Similarly for destructors. */
7889 gcc_assert (name != dtor_identifier);
7890 /* Remove the VTT pointer, if present. */
7891 if ((name == base_ctor_identifier || name == base_dtor_identifier)
7892 && CLASSTYPE_VBASECLASSES (basetype))
7893 skip_first_for_error = true;
7896 /* Process the argument list. */
7897 if (args != NULL && *args != NULL)
7899 *args = resolve_args (*args, complain);
7900 if (*args == NULL)
7901 return error_mark_node;
7904 /* Consider the object argument to be used even if we end up selecting a
7905 static member function. */
7906 instance = mark_type_use (instance);
7908 /* It's OK to call destructors and constructors on cv-qualified objects.
7909 Therefore, convert the INSTANCE to the unqualified type, if
7910 necessary. */
7911 if (DECL_DESTRUCTOR_P (fn)
7912 || DECL_CONSTRUCTOR_P (fn))
7914 if (!same_type_p (basetype, TREE_TYPE (instance)))
7916 instance = build_this (instance);
7917 instance = build_nop (build_pointer_type (basetype), instance);
7918 instance = build_fold_indirect_ref (instance);
7921 if (DECL_DESTRUCTOR_P (fn))
7922 name = complete_dtor_identifier;
7924 /* For the overload resolution we need to find the actual `this`
7925 that would be captured if the call turns out to be to a
7926 non-static member function. Do not actually capture it at this
7927 point. */
7928 first_mem_arg = maybe_resolve_dummy (instance, false);
7930 /* Get the high-water mark for the CONVERSION_OBSTACK. */
7931 p = conversion_obstack_alloc (0);
7933 /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
7934 initializer, not T({ }). */
7935 if (DECL_CONSTRUCTOR_P (fn) && args != NULL && !vec_safe_is_empty (*args)
7936 && DIRECT_LIST_INIT_P ((**args)[0]))
7938 tree init_list = (**args)[0];
7939 tree init = NULL_TREE;
7941 gcc_assert ((*args)->length () == 1
7942 && !(flags & LOOKUP_ONLYCONVERTING));
7944 /* If the initializer list has no elements and T is a class type with
7945 a default constructor, the object is value-initialized. Handle
7946 this here so we don't need to handle it wherever we use
7947 build_special_member_call. */
7948 if (CONSTRUCTOR_NELTS (init_list) == 0
7949 && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
7950 /* For a user-provided default constructor, use the normal
7951 mechanisms so that protected access works. */
7952 && !type_has_user_provided_default_constructor (basetype)
7953 && !processing_template_decl)
7954 init = build_value_init (basetype, complain);
7956 /* If BASETYPE is an aggregate, we need to do aggregate
7957 initialization. */
7958 else if (CP_AGGREGATE_TYPE_P (basetype))
7959 init = digest_init (basetype, init_list, complain);
7961 if (init)
7963 if (is_dummy_object (instance))
7964 return get_target_expr_sfinae (init, complain);
7965 init = build2 (INIT_EXPR, TREE_TYPE (instance), instance, init);
7966 TREE_SIDE_EFFECTS (init) = true;
7967 return init;
7970 /* Otherwise go ahead with overload resolution. */
7971 add_list_candidates (fns, first_mem_arg, init_list,
7972 basetype, explicit_targs, template_only,
7973 conversion_path, access_binfo, flags,
7974 &candidates, complain);
7976 else
7978 add_candidates (fns, first_mem_arg, user_args, optype,
7979 explicit_targs, template_only, conversion_path,
7980 access_binfo, flags, &candidates, complain);
7982 any_viable_p = false;
7983 candidates = splice_viable (candidates, false, &any_viable_p);
7985 if (!any_viable_p)
7987 if (complain & tf_error)
7989 if (!COMPLETE_OR_OPEN_TYPE_P (basetype))
7990 cxx_incomplete_type_error (instance, basetype);
7991 else if (optype)
7992 error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
7993 basetype, optype, build_tree_list_vec (user_args),
7994 TREE_TYPE (instance));
7995 else
7997 char *pretty_name;
7998 bool free_p;
7999 tree arglist;
8001 pretty_name = name_as_c_string (name, basetype, &free_p);
8002 arglist = build_tree_list_vec (user_args);
8003 if (skip_first_for_error)
8004 arglist = TREE_CHAIN (arglist);
8005 error ("no matching function for call to %<%T::%s(%A)%#V%>",
8006 basetype, pretty_name, arglist,
8007 TREE_TYPE (instance));
8008 if (free_p)
8009 free (pretty_name);
8011 print_z_candidates (location_of (name), candidates);
8013 call = error_mark_node;
8015 else
8017 cand = tourney (candidates, complain);
8018 if (cand == 0)
8020 char *pretty_name;
8021 bool free_p;
8022 tree arglist;
8024 if (complain & tf_error)
8026 pretty_name = name_as_c_string (name, basetype, &free_p);
8027 arglist = build_tree_list_vec (user_args);
8028 if (skip_first_for_error)
8029 arglist = TREE_CHAIN (arglist);
8030 if (!any_strictly_viable (candidates))
8031 error ("no matching function for call to %<%s(%A)%>",
8032 pretty_name, arglist);
8033 else
8034 error ("call of overloaded %<%s(%A)%> is ambiguous",
8035 pretty_name, arglist);
8036 print_z_candidates (location_of (name), candidates);
8037 if (free_p)
8038 free (pretty_name);
8040 call = error_mark_node;
8042 else
8044 fn = cand->fn;
8045 call = NULL_TREE;
8047 if (!(flags & LOOKUP_NONVIRTUAL)
8048 && DECL_PURE_VIRTUAL_P (fn)
8049 && instance == current_class_ref
8050 && (complain & tf_warning))
8052 /* This is not an error, it is runtime undefined
8053 behavior. */
8054 if (!current_function_decl)
8055 warning (0, "pure virtual %q#D called from "
8056 "non-static data member initializer", fn);
8057 else if (DECL_CONSTRUCTOR_P (current_function_decl)
8058 || DECL_DESTRUCTOR_P (current_function_decl))
8059 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl)
8060 ? "pure virtual %q#D called from constructor"
8061 : "pure virtual %q#D called from destructor"),
8062 fn);
8065 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
8066 && !DECL_CONSTRUCTOR_P (fn)
8067 && is_dummy_object (instance))
8069 instance = maybe_resolve_dummy (instance, true);
8070 if (instance == error_mark_node)
8071 call = error_mark_node;
8072 else if (!is_dummy_object (instance))
8074 /* We captured 'this' in the current lambda now that
8075 we know we really need it. */
8076 cand->first_arg = instance;
8078 else
8080 if (complain & tf_error)
8081 error ("cannot call member function %qD without object",
8082 fn);
8083 call = error_mark_node;
8087 if (call != error_mark_node)
8089 /* Optimize away vtable lookup if we know that this
8090 function can't be overridden. We need to check if
8091 the context and the type where we found fn are the same,
8092 actually FN might be defined in a different class
8093 type because of a using-declaration. In this case, we
8094 do not want to perform a non-virtual call. */
8095 if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
8096 && same_type_ignoring_top_level_qualifiers_p
8097 (DECL_CONTEXT (fn), BINFO_TYPE (binfo))
8098 && resolves_to_fixed_type_p (instance, 0))
8099 flags |= LOOKUP_NONVIRTUAL;
8100 if (explicit_targs)
8101 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
8102 /* Now we know what function is being called. */
8103 if (fn_p)
8104 *fn_p = fn;
8105 /* Build the actual CALL_EXPR. */
8106 call = build_over_call (cand, flags, complain);
8107 /* In an expression of the form `a->f()' where `f' turns
8108 out to be a static member function, `a' is
8109 none-the-less evaluated. */
8110 if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
8111 && !is_dummy_object (instance)
8112 && TREE_SIDE_EFFECTS (instance))
8113 call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
8114 instance, call);
8115 else if (call != error_mark_node
8116 && DECL_DESTRUCTOR_P (cand->fn)
8117 && !VOID_TYPE_P (TREE_TYPE (call)))
8118 /* An explicit call of the form "x->~X()" has type
8119 "void". However, on platforms where destructors
8120 return "this" (i.e., those where
8121 targetm.cxx.cdtor_returns_this is true), such calls
8122 will appear to have a return value of pointer type
8123 to the low-level call machinery. We do not want to
8124 change the low-level machinery, since we want to be
8125 able to optimize "delete f()" on such platforms as
8126 "operator delete(~X(f()))" (rather than generating
8127 "t = f(), ~X(t), operator delete (t)"). */
8128 call = build_nop (void_type_node, call);
8133 if (processing_template_decl && call != error_mark_node)
8135 bool cast_to_void = false;
8137 if (TREE_CODE (call) == COMPOUND_EXPR)
8138 call = TREE_OPERAND (call, 1);
8139 else if (TREE_CODE (call) == NOP_EXPR)
8141 cast_to_void = true;
8142 call = TREE_OPERAND (call, 0);
8144 if (INDIRECT_REF_P (call))
8145 call = TREE_OPERAND (call, 0);
8146 call = (build_min_non_dep_call_vec
8147 (call,
8148 build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
8149 orig_instance, orig_fns, NULL_TREE),
8150 orig_args));
8151 SET_EXPR_LOCATION (call, input_location);
8152 call = convert_from_reference (call);
8153 if (cast_to_void)
8154 call = build_nop (void_type_node, call);
8157 /* Free all the conversions we allocated. */
8158 obstack_free (&conversion_obstack, p);
8160 if (orig_args != NULL)
8161 release_tree_vector (orig_args);
8163 return call;
8166 /* Wrapper for above. */
8168 tree
8169 build_new_method_call (tree instance, tree fns, vec<tree, va_gc> **args,
8170 tree conversion_path, int flags,
8171 tree *fn_p, tsubst_flags_t complain)
8173 tree ret;
8174 bool subtime = timevar_cond_start (TV_OVERLOAD);
8175 ret = build_new_method_call_1 (instance, fns, args, conversion_path, flags,
8176 fn_p, complain);
8177 timevar_cond_stop (TV_OVERLOAD, subtime);
8178 return ret;
8181 /* Returns true iff standard conversion sequence ICS1 is a proper
8182 subsequence of ICS2. */
8184 static bool
8185 is_subseq (conversion *ics1, conversion *ics2)
8187 /* We can assume that a conversion of the same code
8188 between the same types indicates a subsequence since we only get
8189 here if the types we are converting from are the same. */
8191 while (ics1->kind == ck_rvalue
8192 || ics1->kind == ck_lvalue)
8193 ics1 = next_conversion (ics1);
8195 while (1)
8197 while (ics2->kind == ck_rvalue
8198 || ics2->kind == ck_lvalue)
8199 ics2 = next_conversion (ics2);
8201 if (ics2->kind == ck_user
8202 || ics2->kind == ck_ambig
8203 || ics2->kind == ck_aggr
8204 || ics2->kind == ck_list
8205 || ics2->kind == ck_identity)
8206 /* At this point, ICS1 cannot be a proper subsequence of
8207 ICS2. We can get a USER_CONV when we are comparing the
8208 second standard conversion sequence of two user conversion
8209 sequences. */
8210 return false;
8212 ics2 = next_conversion (ics2);
8214 if (ics2->kind == ics1->kind
8215 && same_type_p (ics2->type, ics1->type)
8216 && same_type_p (next_conversion (ics2)->type,
8217 next_conversion (ics1)->type))
8218 return true;
8222 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
8223 be any _TYPE nodes. */
8225 bool
8226 is_properly_derived_from (tree derived, tree base)
8228 if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
8229 return false;
8231 /* We only allow proper derivation here. The DERIVED_FROM_P macro
8232 considers every class derived from itself. */
8233 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
8234 && DERIVED_FROM_P (base, derived));
8237 /* We build the ICS for an implicit object parameter as a pointer
8238 conversion sequence. However, such a sequence should be compared
8239 as if it were a reference conversion sequence. If ICS is the
8240 implicit conversion sequence for an implicit object parameter,
8241 modify it accordingly. */
8243 static void
8244 maybe_handle_implicit_object (conversion **ics)
8246 if ((*ics)->this_p)
8248 /* [over.match.funcs]
8250 For non-static member functions, the type of the
8251 implicit object parameter is "reference to cv X"
8252 where X is the class of which the function is a
8253 member and cv is the cv-qualification on the member
8254 function declaration. */
8255 conversion *t = *ics;
8256 tree reference_type;
8258 /* The `this' parameter is a pointer to a class type. Make the
8259 implicit conversion talk about a reference to that same class
8260 type. */
8261 reference_type = TREE_TYPE (t->type);
8262 reference_type = build_reference_type (reference_type);
8264 if (t->kind == ck_qual)
8265 t = next_conversion (t);
8266 if (t->kind == ck_ptr)
8267 t = next_conversion (t);
8268 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
8269 t = direct_reference_binding (reference_type, t);
8270 t->this_p = 1;
8271 t->rvaluedness_matches_p = 0;
8272 *ics = t;
8276 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
8277 and return the initial reference binding conversion. Otherwise,
8278 leave *ICS unchanged and return NULL. */
8280 static conversion *
8281 maybe_handle_ref_bind (conversion **ics)
8283 if ((*ics)->kind == ck_ref_bind)
8285 conversion *old_ics = *ics;
8286 *ics = next_conversion (old_ics);
8287 (*ics)->user_conv_p = old_ics->user_conv_p;
8288 return old_ics;
8291 return NULL;
8294 /* Compare two implicit conversion sequences according to the rules set out in
8295 [over.ics.rank]. Return values:
8297 1: ics1 is better than ics2
8298 -1: ics2 is better than ics1
8299 0: ics1 and ics2 are indistinguishable */
8301 static int
8302 compare_ics (conversion *ics1, conversion *ics2)
8304 tree from_type1;
8305 tree from_type2;
8306 tree to_type1;
8307 tree to_type2;
8308 tree deref_from_type1 = NULL_TREE;
8309 tree deref_from_type2 = NULL_TREE;
8310 tree deref_to_type1 = NULL_TREE;
8311 tree deref_to_type2 = NULL_TREE;
8312 conversion_rank rank1, rank2;
8314 /* REF_BINDING is nonzero if the result of the conversion sequence
8315 is a reference type. In that case REF_CONV is the reference
8316 binding conversion. */
8317 conversion *ref_conv1;
8318 conversion *ref_conv2;
8320 /* Compare badness before stripping the reference conversion. */
8321 if (ics1->bad_p > ics2->bad_p)
8322 return -1;
8323 else if (ics1->bad_p < ics2->bad_p)
8324 return 1;
8326 /* Handle implicit object parameters. */
8327 maybe_handle_implicit_object (&ics1);
8328 maybe_handle_implicit_object (&ics2);
8330 /* Handle reference parameters. */
8331 ref_conv1 = maybe_handle_ref_bind (&ics1);
8332 ref_conv2 = maybe_handle_ref_bind (&ics2);
8334 /* List-initialization sequence L1 is a better conversion sequence than
8335 list-initialization sequence L2 if L1 converts to
8336 std::initializer_list<X> for some X and L2 does not. */
8337 if (ics1->kind == ck_list && ics2->kind != ck_list)
8338 return 1;
8339 if (ics2->kind == ck_list && ics1->kind != ck_list)
8340 return -1;
8342 /* [over.ics.rank]
8344 When comparing the basic forms of implicit conversion sequences (as
8345 defined in _over.best.ics_)
8347 --a standard conversion sequence (_over.ics.scs_) is a better
8348 conversion sequence than a user-defined conversion sequence
8349 or an ellipsis conversion sequence, and
8351 --a user-defined conversion sequence (_over.ics.user_) is a
8352 better conversion sequence than an ellipsis conversion sequence
8353 (_over.ics.ellipsis_). */
8354 /* Use BAD_CONVERSION_RANK because we already checked for a badness
8355 mismatch. If both ICS are bad, we try to make a decision based on
8356 what would have happened if they'd been good. This is not an
8357 extension, we'll still give an error when we build up the call; this
8358 just helps us give a more helpful error message. */
8359 rank1 = BAD_CONVERSION_RANK (ics1);
8360 rank2 = BAD_CONVERSION_RANK (ics2);
8362 if (rank1 > rank2)
8363 return -1;
8364 else if (rank1 < rank2)
8365 return 1;
8367 if (ics1->ellipsis_p)
8368 /* Both conversions are ellipsis conversions. */
8369 return 0;
8371 /* User-defined conversion sequence U1 is a better conversion sequence
8372 than another user-defined conversion sequence U2 if they contain the
8373 same user-defined conversion operator or constructor and if the sec-
8374 ond standard conversion sequence of U1 is better than the second
8375 standard conversion sequence of U2. */
8377 /* Handle list-conversion with the same code even though it isn't always
8378 ranked as a user-defined conversion and it doesn't have a second
8379 standard conversion sequence; it will still have the desired effect.
8380 Specifically, we need to do the reference binding comparison at the
8381 end of this function. */
8383 if (ics1->user_conv_p || ics1->kind == ck_list || ics1->kind == ck_aggr)
8385 conversion *t1;
8386 conversion *t2;
8388 for (t1 = ics1; t1->kind != ck_user; t1 = next_conversion (t1))
8389 if (t1->kind == ck_ambig || t1->kind == ck_aggr
8390 || t1->kind == ck_list)
8391 break;
8392 for (t2 = ics2; t2->kind != ck_user; t2 = next_conversion (t2))
8393 if (t2->kind == ck_ambig || t2->kind == ck_aggr
8394 || t2->kind == ck_list)
8395 break;
8397 if (t1->kind != t2->kind)
8398 return 0;
8399 else if (t1->kind == ck_user)
8401 if (t1->cand->fn != t2->cand->fn)
8402 return 0;
8404 else
8406 /* For ambiguous or aggregate conversions, use the target type as
8407 a proxy for the conversion function. */
8408 if (!same_type_ignoring_top_level_qualifiers_p (t1->type, t2->type))
8409 return 0;
8412 /* We can just fall through here, after setting up
8413 FROM_TYPE1 and FROM_TYPE2. */
8414 from_type1 = t1->type;
8415 from_type2 = t2->type;
8417 else
8419 conversion *t1;
8420 conversion *t2;
8422 /* We're dealing with two standard conversion sequences.
8424 [over.ics.rank]
8426 Standard conversion sequence S1 is a better conversion
8427 sequence than standard conversion sequence S2 if
8429 --S1 is a proper subsequence of S2 (comparing the conversion
8430 sequences in the canonical form defined by _over.ics.scs_,
8431 excluding any Lvalue Transformation; the identity
8432 conversion sequence is considered to be a subsequence of
8433 any non-identity conversion sequence */
8435 t1 = ics1;
8436 while (t1->kind != ck_identity)
8437 t1 = next_conversion (t1);
8438 from_type1 = t1->type;
8440 t2 = ics2;
8441 while (t2->kind != ck_identity)
8442 t2 = next_conversion (t2);
8443 from_type2 = t2->type;
8446 /* One sequence can only be a subsequence of the other if they start with
8447 the same type. They can start with different types when comparing the
8448 second standard conversion sequence in two user-defined conversion
8449 sequences. */
8450 if (same_type_p (from_type1, from_type2))
8452 if (is_subseq (ics1, ics2))
8453 return 1;
8454 if (is_subseq (ics2, ics1))
8455 return -1;
8458 /* [over.ics.rank]
8460 Or, if not that,
8462 --the rank of S1 is better than the rank of S2 (by the rules
8463 defined below):
8465 Standard conversion sequences are ordered by their ranks: an Exact
8466 Match is a better conversion than a Promotion, which is a better
8467 conversion than a Conversion.
8469 Two conversion sequences with the same rank are indistinguishable
8470 unless one of the following rules applies:
8472 --A conversion that does not a convert a pointer, pointer to member,
8473 or std::nullptr_t to bool is better than one that does.
8475 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
8476 so that we do not have to check it explicitly. */
8477 if (ics1->rank < ics2->rank)
8478 return 1;
8479 else if (ics2->rank < ics1->rank)
8480 return -1;
8482 to_type1 = ics1->type;
8483 to_type2 = ics2->type;
8485 /* A conversion from scalar arithmetic type to complex is worse than a
8486 conversion between scalar arithmetic types. */
8487 if (same_type_p (from_type1, from_type2)
8488 && ARITHMETIC_TYPE_P (from_type1)
8489 && ARITHMETIC_TYPE_P (to_type1)
8490 && ARITHMETIC_TYPE_P (to_type2)
8491 && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
8492 != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
8494 if (TREE_CODE (to_type1) == COMPLEX_TYPE)
8495 return -1;
8496 else
8497 return 1;
8500 if (TYPE_PTR_P (from_type1)
8501 && TYPE_PTR_P (from_type2)
8502 && TYPE_PTR_P (to_type1)
8503 && TYPE_PTR_P (to_type2))
8505 deref_from_type1 = TREE_TYPE (from_type1);
8506 deref_from_type2 = TREE_TYPE (from_type2);
8507 deref_to_type1 = TREE_TYPE (to_type1);
8508 deref_to_type2 = TREE_TYPE (to_type2);
8510 /* The rules for pointers to members A::* are just like the rules
8511 for pointers A*, except opposite: if B is derived from A then
8512 A::* converts to B::*, not vice versa. For that reason, we
8513 switch the from_ and to_ variables here. */
8514 else if ((TYPE_PTRDATAMEM_P (from_type1) && TYPE_PTRDATAMEM_P (from_type2)
8515 && TYPE_PTRDATAMEM_P (to_type1) && TYPE_PTRDATAMEM_P (to_type2))
8516 || (TYPE_PTRMEMFUNC_P (from_type1)
8517 && TYPE_PTRMEMFUNC_P (from_type2)
8518 && TYPE_PTRMEMFUNC_P (to_type1)
8519 && TYPE_PTRMEMFUNC_P (to_type2)))
8521 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
8522 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
8523 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
8524 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
8527 if (deref_from_type1 != NULL_TREE
8528 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
8529 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
8531 /* This was one of the pointer or pointer-like conversions.
8533 [over.ics.rank]
8535 --If class B is derived directly or indirectly from class A,
8536 conversion of B* to A* is better than conversion of B* to
8537 void*, and conversion of A* to void* is better than
8538 conversion of B* to void*. */
8539 if (VOID_TYPE_P (deref_to_type1)
8540 && VOID_TYPE_P (deref_to_type2))
8542 if (is_properly_derived_from (deref_from_type1,
8543 deref_from_type2))
8544 return -1;
8545 else if (is_properly_derived_from (deref_from_type2,
8546 deref_from_type1))
8547 return 1;
8549 else if (VOID_TYPE_P (deref_to_type1)
8550 || VOID_TYPE_P (deref_to_type2))
8552 if (same_type_p (deref_from_type1, deref_from_type2))
8554 if (VOID_TYPE_P (deref_to_type2))
8556 if (is_properly_derived_from (deref_from_type1,
8557 deref_to_type1))
8558 return 1;
8560 /* We know that DEREF_TO_TYPE1 is `void' here. */
8561 else if (is_properly_derived_from (deref_from_type1,
8562 deref_to_type2))
8563 return -1;
8566 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
8567 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
8569 /* [over.ics.rank]
8571 --If class B is derived directly or indirectly from class A
8572 and class C is derived directly or indirectly from B,
8574 --conversion of C* to B* is better than conversion of C* to
8577 --conversion of B* to A* is better than conversion of C* to
8578 A* */
8579 if (same_type_p (deref_from_type1, deref_from_type2))
8581 if (is_properly_derived_from (deref_to_type1,
8582 deref_to_type2))
8583 return 1;
8584 else if (is_properly_derived_from (deref_to_type2,
8585 deref_to_type1))
8586 return -1;
8588 else if (same_type_p (deref_to_type1, deref_to_type2))
8590 if (is_properly_derived_from (deref_from_type2,
8591 deref_from_type1))
8592 return 1;
8593 else if (is_properly_derived_from (deref_from_type1,
8594 deref_from_type2))
8595 return -1;
8599 else if (CLASS_TYPE_P (non_reference (from_type1))
8600 && same_type_p (from_type1, from_type2))
8602 tree from = non_reference (from_type1);
8604 /* [over.ics.rank]
8606 --binding of an expression of type C to a reference of type
8607 B& is better than binding an expression of type C to a
8608 reference of type A&
8610 --conversion of C to B is better than conversion of C to A, */
8611 if (is_properly_derived_from (from, to_type1)
8612 && is_properly_derived_from (from, to_type2))
8614 if (is_properly_derived_from (to_type1, to_type2))
8615 return 1;
8616 else if (is_properly_derived_from (to_type2, to_type1))
8617 return -1;
8620 else if (CLASS_TYPE_P (non_reference (to_type1))
8621 && same_type_p (to_type1, to_type2))
8623 tree to = non_reference (to_type1);
8625 /* [over.ics.rank]
8627 --binding of an expression of type B to a reference of type
8628 A& is better than binding an expression of type C to a
8629 reference of type A&,
8631 --conversion of B to A is better than conversion of C to A */
8632 if (is_properly_derived_from (from_type1, to)
8633 && is_properly_derived_from (from_type2, to))
8635 if (is_properly_derived_from (from_type2, from_type1))
8636 return 1;
8637 else if (is_properly_derived_from (from_type1, from_type2))
8638 return -1;
8642 /* [over.ics.rank]
8644 --S1 and S2 differ only in their qualification conversion and yield
8645 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
8646 qualification signature of type T1 is a proper subset of the cv-
8647 qualification signature of type T2 */
8648 if (ics1->kind == ck_qual
8649 && ics2->kind == ck_qual
8650 && same_type_p (from_type1, from_type2))
8652 int result = comp_cv_qual_signature (to_type1, to_type2);
8653 if (result != 0)
8654 return result;
8657 /* [over.ics.rank]
8659 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
8660 to an implicit object parameter, and either S1 binds an lvalue reference
8661 to an lvalue and S2 binds an rvalue reference or S1 binds an rvalue
8662 reference to an rvalue and S2 binds an lvalue reference
8663 (C++0x draft standard, 13.3.3.2)
8665 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
8666 types to which the references refer are the same type except for
8667 top-level cv-qualifiers, and the type to which the reference
8668 initialized by S2 refers is more cv-qualified than the type to
8669 which the reference initialized by S1 refers.
8671 DR 1328 [over.match.best]: the context is an initialization by
8672 conversion function for direct reference binding (13.3.1.6) of a
8673 reference to function type, the return type of F1 is the same kind of
8674 reference (i.e. lvalue or rvalue) as the reference being initialized,
8675 and the return type of F2 is not. */
8677 if (ref_conv1 && ref_conv2)
8679 if (!ref_conv1->this_p && !ref_conv2->this_p
8680 && (ref_conv1->rvaluedness_matches_p
8681 != ref_conv2->rvaluedness_matches_p)
8682 && (same_type_p (ref_conv1->type, ref_conv2->type)
8683 || (TYPE_REF_IS_RVALUE (ref_conv1->type)
8684 != TYPE_REF_IS_RVALUE (ref_conv2->type))))
8686 if (ref_conv1->bad_p
8687 && !same_type_p (TREE_TYPE (ref_conv1->type),
8688 TREE_TYPE (ref_conv2->type)))
8689 /* Don't prefer a bad conversion that drops cv-quals to a bad
8690 conversion with the wrong rvalueness. */
8691 return 0;
8692 return (ref_conv1->rvaluedness_matches_p
8693 - ref_conv2->rvaluedness_matches_p);
8696 if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
8698 int q1 = cp_type_quals (TREE_TYPE (ref_conv1->type));
8699 int q2 = cp_type_quals (TREE_TYPE (ref_conv2->type));
8700 if (ref_conv1->bad_p)
8702 /* Prefer the one that drops fewer cv-quals. */
8703 tree ftype = next_conversion (ref_conv1)->type;
8704 int fquals = cp_type_quals (ftype);
8705 q1 ^= fquals;
8706 q2 ^= fquals;
8708 return comp_cv_qualification (q2, q1);
8712 /* Neither conversion sequence is better than the other. */
8713 return 0;
8716 /* The source type for this standard conversion sequence. */
8718 static tree
8719 source_type (conversion *t)
8721 for (;; t = next_conversion (t))
8723 if (t->kind == ck_user
8724 || t->kind == ck_ambig
8725 || t->kind == ck_identity)
8726 return t->type;
8728 gcc_unreachable ();
8731 /* Note a warning about preferring WINNER to LOSER. We do this by storing
8732 a pointer to LOSER and re-running joust to produce the warning if WINNER
8733 is actually used. */
8735 static void
8736 add_warning (struct z_candidate *winner, struct z_candidate *loser)
8738 candidate_warning *cw = (candidate_warning *)
8739 conversion_obstack_alloc (sizeof (candidate_warning));
8740 cw->loser = loser;
8741 cw->next = winner->warnings;
8742 winner->warnings = cw;
8745 // Returns the template declaration associated with the candidate
8746 // function. For actual templates, this is directly associated
8747 // with the candidate. For temploids, we return the template
8748 // associated with the specialization.
8749 static inline tree
8750 template_decl_for_candidate (struct z_candidate *cand)
8752 tree r = cand->template_decl;
8753 tree d = cand->fn;
8754 if (!r && DECL_P (d) && DECL_USE_TEMPLATE (d))
8755 r = DECL_TI_TEMPLATE (d);
8756 if (r && TREE_CODE (r) == TEMPLATE_INFO)
8757 r = TI_TEMPLATE (r);
8758 return r;
8761 /* Compare two candidates for overloading as described in
8762 [over.match.best]. Return values:
8764 1: cand1 is better than cand2
8765 -1: cand2 is better than cand1
8766 0: cand1 and cand2 are indistinguishable */
8768 static int
8769 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn,
8770 tsubst_flags_t complain)
8772 int winner = 0;
8773 int off1 = 0, off2 = 0;
8774 size_t i;
8775 size_t len;
8777 // Get the actual template decls associated with the candidates.
8778 tree tmpl1 = template_decl_for_candidate (cand1);
8779 tree tmpl2 = template_decl_for_candidate (cand2);
8781 /* Candidates that involve bad conversions are always worse than those
8782 that don't. */
8783 if (cand1->viable > cand2->viable)
8784 return 1;
8785 if (cand1->viable < cand2->viable)
8786 return -1;
8788 /* If we have two pseudo-candidates for conversions to the same type,
8789 or two candidates for the same function, arbitrarily pick one. */
8790 if (cand1->fn == cand2->fn
8791 && (IS_TYPE_OR_DECL_P (cand1->fn)))
8792 return 1;
8794 /* Prefer a non-deleted function over an implicitly deleted move
8795 constructor or assignment operator. This differs slightly from the
8796 wording for issue 1402 (which says the move op is ignored by overload
8797 resolution), but this way produces better error messages. */
8798 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
8799 && TREE_CODE (cand2->fn) == FUNCTION_DECL
8800 && DECL_DELETED_FN (cand1->fn) != DECL_DELETED_FN (cand2->fn))
8802 if (DECL_DELETED_FN (cand1->fn) && DECL_DEFAULTED_FN (cand1->fn)
8803 && move_fn_p (cand1->fn))
8804 return -1;
8805 if (DECL_DELETED_FN (cand2->fn) && DECL_DEFAULTED_FN (cand2->fn)
8806 && move_fn_p (cand2->fn))
8807 return 1;
8810 /* a viable function F1
8811 is defined to be a better function than another viable function F2 if
8812 for all arguments i, ICSi(F1) is not a worse conversion sequence than
8813 ICSi(F2), and then */
8815 /* for some argument j, ICSj(F1) is a better conversion sequence than
8816 ICSj(F2) */
8818 /* For comparing static and non-static member functions, we ignore
8819 the implicit object parameter of the non-static function. The
8820 standard says to pretend that the static function has an object
8821 parm, but that won't work with operator overloading. */
8822 len = cand1->num_convs;
8823 if (len != cand2->num_convs)
8825 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
8826 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
8828 if (DECL_CONSTRUCTOR_P (cand1->fn)
8829 && is_list_ctor (cand1->fn) != is_list_ctor (cand2->fn))
8830 /* We're comparing a near-match list constructor and a near-match
8831 non-list constructor. Just treat them as unordered. */
8832 return 0;
8834 gcc_assert (static_1 != static_2);
8836 if (static_1)
8837 off2 = 1;
8838 else
8840 off1 = 1;
8841 --len;
8845 for (i = 0; i < len; ++i)
8847 conversion *t1 = cand1->convs[i + off1];
8848 conversion *t2 = cand2->convs[i + off2];
8849 int comp = compare_ics (t1, t2);
8851 if (comp != 0)
8853 if ((complain & tf_warning)
8854 && warn_sign_promo
8855 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
8856 == cr_std + cr_promotion)
8857 && t1->kind == ck_std
8858 && t2->kind == ck_std
8859 && TREE_CODE (t1->type) == INTEGER_TYPE
8860 && TREE_CODE (t2->type) == INTEGER_TYPE
8861 && (TYPE_PRECISION (t1->type)
8862 == TYPE_PRECISION (t2->type))
8863 && (TYPE_UNSIGNED (next_conversion (t1)->type)
8864 || (TREE_CODE (next_conversion (t1)->type)
8865 == ENUMERAL_TYPE)))
8867 tree type = next_conversion (t1)->type;
8868 tree type1, type2;
8869 struct z_candidate *w, *l;
8870 if (comp > 0)
8871 type1 = t1->type, type2 = t2->type,
8872 w = cand1, l = cand2;
8873 else
8874 type1 = t2->type, type2 = t1->type,
8875 w = cand2, l = cand1;
8877 if (warn)
8879 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
8880 type, type1, type2);
8881 warning (OPT_Wsign_promo, " in call to %qD", w->fn);
8883 else
8884 add_warning (w, l);
8887 if (winner && comp != winner)
8889 winner = 0;
8890 goto tweak;
8892 winner = comp;
8896 /* warn about confusing overload resolution for user-defined conversions,
8897 either between a constructor and a conversion op, or between two
8898 conversion ops. */
8899 if ((complain & tf_warning)
8900 && winner && warn_conversion && cand1->second_conv
8901 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
8902 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
8904 struct z_candidate *w, *l;
8905 bool give_warning = false;
8907 if (winner == 1)
8908 w = cand1, l = cand2;
8909 else
8910 w = cand2, l = cand1;
8912 /* We don't want to complain about `X::operator T1 ()'
8913 beating `X::operator T2 () const', when T2 is a no less
8914 cv-qualified version of T1. */
8915 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
8916 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
8918 tree t = TREE_TYPE (TREE_TYPE (l->fn));
8919 tree f = TREE_TYPE (TREE_TYPE (w->fn));
8921 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
8923 t = TREE_TYPE (t);
8924 f = TREE_TYPE (f);
8926 if (!comp_ptr_ttypes (t, f))
8927 give_warning = true;
8929 else
8930 give_warning = true;
8932 if (!give_warning)
8933 /*NOP*/;
8934 else if (warn)
8936 tree source = source_type (w->convs[0]);
8937 if (! DECL_CONSTRUCTOR_P (w->fn))
8938 source = TREE_TYPE (source);
8939 if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
8940 && warning (OPT_Wconversion, " for conversion from %qT to %qT",
8941 source, w->second_conv->type))
8943 inform (input_location, " because conversion sequence for the argument is better");
8946 else
8947 add_warning (w, l);
8950 if (winner)
8951 return winner;
8953 /* DR 495 moved this tiebreaker above the template ones. */
8954 /* or, if not that,
8955 the context is an initialization by user-defined conversion (see
8956 _dcl.init_ and _over.match.user_) and the standard conversion
8957 sequence from the return type of F1 to the destination type (i.e.,
8958 the type of the entity being initialized) is a better conversion
8959 sequence than the standard conversion sequence from the return type
8960 of F2 to the destination type. */
8962 if (cand1->second_conv)
8964 winner = compare_ics (cand1->second_conv, cand2->second_conv);
8965 if (winner)
8966 return winner;
8969 /* or, if not that,
8970 F1 is a non-template function and F2 is a template function
8971 specialization. */
8973 if (!cand1->template_decl && cand2->template_decl)
8974 return 1;
8975 else if (cand1->template_decl && !cand2->template_decl)
8976 return -1;
8978 /* or, if not that,
8979 F1 and F2 are template functions and the function template for F1 is
8980 more specialized than the template for F2 according to the partial
8981 ordering rules. */
8983 if (tmpl1 && tmpl2)
8985 /* [temp.func.order]: The presence of unused ellipsis and default
8986 arguments has no effect on the partial ordering of function
8987 templates. add_function_candidate() will not have
8988 counted the "this" argument for constructors. */
8989 int nparms = cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn);
8990 winner = more_specialized_fn (tmpl1, tmpl2, nparms);
8991 if (winner)
8992 return winner;
8995 /* Check whether we can discard a builtin candidate, either because we
8996 have two identical ones or matching builtin and non-builtin candidates.
8998 (Pedantically in the latter case the builtin which matched the user
8999 function should not be added to the overload set, but we spot it here.
9001 [over.match.oper]
9002 ... the builtin candidates include ...
9003 - do not have the same parameter type list as any non-template
9004 non-member candidate. */
9006 if (identifier_p (cand1->fn) || identifier_p (cand2->fn))
9008 for (i = 0; i < len; ++i)
9009 if (!same_type_p (cand1->convs[i]->type,
9010 cand2->convs[i]->type))
9011 break;
9012 if (i == cand1->num_convs)
9014 if (cand1->fn == cand2->fn)
9015 /* Two built-in candidates; arbitrarily pick one. */
9016 return 1;
9017 else if (identifier_p (cand1->fn))
9018 /* cand1 is built-in; prefer cand2. */
9019 return -1;
9020 else
9021 /* cand2 is built-in; prefer cand1. */
9022 return 1;
9026 /* For candidates of a multi-versioned function, make the version with
9027 the highest priority win. This version will be checked for dispatching
9028 first. If this version can be inlined into the caller, the front-end
9029 will simply make a direct call to this function. */
9031 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
9032 && DECL_FUNCTION_VERSIONED (cand1->fn)
9033 && TREE_CODE (cand2->fn) == FUNCTION_DECL
9034 && DECL_FUNCTION_VERSIONED (cand2->fn))
9036 tree f1 = TREE_TYPE (cand1->fn);
9037 tree f2 = TREE_TYPE (cand2->fn);
9038 tree p1 = TYPE_ARG_TYPES (f1);
9039 tree p2 = TYPE_ARG_TYPES (f2);
9041 /* Check if cand1->fn and cand2->fn are versions of the same function. It
9042 is possible that cand1->fn and cand2->fn are function versions but of
9043 different functions. Check types to see if they are versions of the same
9044 function. */
9045 if (compparms (p1, p2)
9046 && same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
9048 /* Always make the version with the higher priority, more
9049 specialized, win. */
9050 gcc_assert (targetm.compare_version_priority);
9051 if (targetm.compare_version_priority (cand1->fn, cand2->fn) >= 0)
9052 return 1;
9053 else
9054 return -1;
9058 /* If the two function declarations represent the same function (this can
9059 happen with declarations in multiple scopes and arg-dependent lookup),
9060 arbitrarily choose one. But first make sure the default args we're
9061 using match. */
9062 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
9063 && equal_functions (cand1->fn, cand2->fn))
9065 tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
9066 tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
9068 gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
9070 for (i = 0; i < len; ++i)
9072 /* Don't crash if the fn is variadic. */
9073 if (!parms1)
9074 break;
9075 parms1 = TREE_CHAIN (parms1);
9076 parms2 = TREE_CHAIN (parms2);
9079 if (off1)
9080 parms1 = TREE_CHAIN (parms1);
9081 else if (off2)
9082 parms2 = TREE_CHAIN (parms2);
9084 for (; parms1; ++i)
9086 if (!cp_tree_equal (TREE_PURPOSE (parms1),
9087 TREE_PURPOSE (parms2)))
9089 if (warn)
9091 if (complain & tf_error)
9093 if (permerror (input_location,
9094 "default argument mismatch in "
9095 "overload resolution"))
9097 inform (input_location,
9098 " candidate 1: %q+#F", cand1->fn);
9099 inform (input_location,
9100 " candidate 2: %q+#F", cand2->fn);
9103 else
9104 return 0;
9106 else
9107 add_warning (cand1, cand2);
9108 break;
9110 parms1 = TREE_CHAIN (parms1);
9111 parms2 = TREE_CHAIN (parms2);
9114 return 1;
9117 tweak:
9119 /* Extension: If the worst conversion for one candidate is worse than the
9120 worst conversion for the other, take the first. */
9121 if (!pedantic && (complain & tf_warning_or_error))
9123 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
9124 struct z_candidate *w = 0, *l = 0;
9126 for (i = 0; i < len; ++i)
9128 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
9129 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
9130 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
9131 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
9133 if (rank1 < rank2)
9134 winner = 1, w = cand1, l = cand2;
9135 if (rank1 > rank2)
9136 winner = -1, w = cand2, l = cand1;
9137 if (winner)
9139 /* Don't choose a deleted function over ambiguity. */
9140 if (DECL_P (w->fn) && DECL_DELETED_FN (w->fn))
9141 return 0;
9142 if (warn)
9144 pedwarn (input_location, 0,
9145 "ISO C++ says that these are ambiguous, even "
9146 "though the worst conversion for the first is better than "
9147 "the worst conversion for the second:");
9148 print_z_candidate (input_location, _("candidate 1:"), w);
9149 print_z_candidate (input_location, _("candidate 2:"), l);
9151 else
9152 add_warning (w, l);
9153 return winner;
9157 gcc_assert (!winner);
9158 return 0;
9161 /* Given a list of candidates for overloading, find the best one, if any.
9162 This algorithm has a worst case of O(2n) (winner is last), and a best
9163 case of O(n/2) (totally ambiguous); much better than a sorting
9164 algorithm. */
9166 static struct z_candidate *
9167 tourney (struct z_candidate *candidates, tsubst_flags_t complain)
9169 struct z_candidate *champ = candidates, *challenger;
9170 int fate;
9171 int champ_compared_to_predecessor = 0;
9173 /* Walk through the list once, comparing each current champ to the next
9174 candidate, knocking out a candidate or two with each comparison. */
9176 for (challenger = champ->next; challenger; )
9178 fate = joust (champ, challenger, 0, complain);
9179 if (fate == 1)
9180 challenger = challenger->next;
9181 else
9183 if (fate == 0)
9185 champ = challenger->next;
9186 if (champ == 0)
9187 return NULL;
9188 champ_compared_to_predecessor = 0;
9190 else
9192 champ = challenger;
9193 champ_compared_to_predecessor = 1;
9196 challenger = champ->next;
9200 /* Make sure the champ is better than all the candidates it hasn't yet
9201 been compared to. */
9203 for (challenger = candidates;
9204 challenger != champ
9205 && !(champ_compared_to_predecessor && challenger->next == champ);
9206 challenger = challenger->next)
9208 fate = joust (champ, challenger, 0, complain);
9209 if (fate != 1)
9210 return NULL;
9213 return champ;
9217 // Returns true if things of type FROM can be implicitly converted to TO.
9218 bool
9219 can_convert (tree to, tree from, tsubst_flags_t complain)
9221 tree arg = NULL_TREE;
9222 /* implicit_conversion only considers user-defined conversions
9223 if it has an expression for the call argument list. */
9224 if (CLASS_TYPE_P (from) || CLASS_TYPE_P (to))
9225 arg = build1 (CAST_EXPR, from, NULL_TREE);
9226 return can_convert_arg (to, from, arg, LOOKUP_IMPLICIT, complain);
9229 /* Returns nonzero if things of type FROM can be converted to TO with a
9230 standard conversion. */
9232 bool
9233 can_convert_standard (tree to, tree from, tsubst_flags_t complain)
9235 return can_convert_arg (to, from, NULL_TREE, LOOKUP_IMPLICIT, complain);
9238 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
9240 bool
9241 can_convert_arg (tree to, tree from, tree arg, int flags,
9242 tsubst_flags_t complain)
9244 conversion *t;
9245 void *p;
9246 bool ok_p;
9248 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9249 p = conversion_obstack_alloc (0);
9250 /* We want to discard any access checks done for this test,
9251 as we might not be in the appropriate access context and
9252 we'll do the check again when we actually perform the
9253 conversion. */
9254 push_deferring_access_checks (dk_deferred);
9256 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
9257 flags, complain);
9258 ok_p = (t && !t->bad_p);
9260 /* Discard the access checks now. */
9261 pop_deferring_access_checks ();
9262 /* Free all the conversions we allocated. */
9263 obstack_free (&conversion_obstack, p);
9265 return ok_p;
9268 /* Like can_convert_arg, but allows dubious conversions as well. */
9270 bool
9271 can_convert_arg_bad (tree to, tree from, tree arg, int flags,
9272 tsubst_flags_t complain)
9274 conversion *t;
9275 void *p;
9277 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9278 p = conversion_obstack_alloc (0);
9279 /* Try to perform the conversion. */
9280 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
9281 flags, complain);
9282 /* Free all the conversions we allocated. */
9283 obstack_free (&conversion_obstack, p);
9285 return t != NULL;
9288 /* Convert EXPR to TYPE. Return the converted expression.
9290 Note that we allow bad conversions here because by the time we get to
9291 this point we are committed to doing the conversion. If we end up
9292 doing a bad conversion, convert_like will complain. */
9294 tree
9295 perform_implicit_conversion_flags (tree type, tree expr,
9296 tsubst_flags_t complain, int flags)
9298 conversion *conv;
9299 void *p;
9300 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
9302 if (error_operand_p (expr))
9303 return error_mark_node;
9305 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9306 p = conversion_obstack_alloc (0);
9308 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9309 /*c_cast_p=*/false,
9310 flags, complain);
9312 if (!conv)
9314 if (complain & tf_error)
9316 /* If expr has unknown type, then it is an overloaded function.
9317 Call instantiate_type to get good error messages. */
9318 if (TREE_TYPE (expr) == unknown_type_node)
9319 instantiate_type (type, expr, complain);
9320 else if (invalid_nonstatic_memfn_p (expr, complain))
9321 /* We gave an error. */;
9322 else
9323 error_at (loc, "could not convert %qE from %qT to %qT", expr,
9324 TREE_TYPE (expr), type);
9326 expr = error_mark_node;
9328 else if (processing_template_decl && conv->kind != ck_identity)
9330 /* In a template, we are only concerned about determining the
9331 type of non-dependent expressions, so we do not have to
9332 perform the actual conversion. But for initializers, we
9333 need to be able to perform it at instantiation
9334 (or fold_non_dependent_expr) time. */
9335 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
9336 if (!(flags & LOOKUP_ONLYCONVERTING))
9337 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
9339 else
9340 expr = convert_like (conv, expr, complain);
9342 /* Free all the conversions we allocated. */
9343 obstack_free (&conversion_obstack, p);
9345 return expr;
9348 tree
9349 perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
9351 return perform_implicit_conversion_flags (type, expr, complain,
9352 LOOKUP_IMPLICIT);
9355 /* Convert EXPR to TYPE (as a direct-initialization) if that is
9356 permitted. If the conversion is valid, the converted expression is
9357 returned. Otherwise, NULL_TREE is returned, except in the case
9358 that TYPE is a class type; in that case, an error is issued. If
9359 C_CAST_P is true, then this direct-initialization is taking
9360 place as part of a static_cast being attempted as part of a C-style
9361 cast. */
9363 tree
9364 perform_direct_initialization_if_possible (tree type,
9365 tree expr,
9366 bool c_cast_p,
9367 tsubst_flags_t complain)
9369 conversion *conv;
9370 void *p;
9372 if (type == error_mark_node || error_operand_p (expr))
9373 return error_mark_node;
9374 /* [dcl.init]
9376 If the destination type is a (possibly cv-qualified) class type:
9378 -- If the initialization is direct-initialization ...,
9379 constructors are considered. ... If no constructor applies, or
9380 the overload resolution is ambiguous, the initialization is
9381 ill-formed. */
9382 if (CLASS_TYPE_P (type))
9384 vec<tree, va_gc> *args = make_tree_vector_single (expr);
9385 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
9386 &args, type, LOOKUP_NORMAL, complain);
9387 release_tree_vector (args);
9388 return build_cplus_new (type, expr, complain);
9391 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9392 p = conversion_obstack_alloc (0);
9394 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9395 c_cast_p,
9396 LOOKUP_NORMAL, complain);
9397 if (!conv || conv->bad_p)
9398 expr = NULL_TREE;
9399 else
9400 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
9401 /*issue_conversion_warnings=*/false,
9402 c_cast_p,
9403 complain);
9405 /* Free all the conversions we allocated. */
9406 obstack_free (&conversion_obstack, p);
9408 return expr;
9411 /* When initializing a reference that lasts longer than a full-expression,
9412 this special rule applies:
9414 [class.temporary]
9416 The temporary to which the reference is bound or the temporary
9417 that is the complete object to which the reference is bound
9418 persists for the lifetime of the reference.
9420 The temporaries created during the evaluation of the expression
9421 initializing the reference, except the temporary to which the
9422 reference is bound, are destroyed at the end of the
9423 full-expression in which they are created.
9425 In that case, we store the converted expression into a new
9426 VAR_DECL in a new scope.
9428 However, we want to be careful not to create temporaries when
9429 they are not required. For example, given:
9431 struct B {};
9432 struct D : public B {};
9433 D f();
9434 const B& b = f();
9436 there is no need to copy the return value from "f"; we can just
9437 extend its lifetime. Similarly, given:
9439 struct S {};
9440 struct T { operator S(); };
9441 T t;
9442 const S& s = t;
9444 we can extend the lifetime of the return value of the conversion
9445 operator.
9447 The next several functions are involved in this lifetime extension. */
9449 /* DECL is a VAR_DECL or FIELD_DECL whose type is a REFERENCE_TYPE. The
9450 reference is being bound to a temporary. Create and return a new
9451 VAR_DECL with the indicated TYPE; this variable will store the value to
9452 which the reference is bound. */
9454 tree
9455 make_temporary_var_for_ref_to_temp (tree decl, tree type)
9457 tree var;
9459 /* Create the variable. */
9460 var = create_temporary_var (type);
9462 /* Register the variable. */
9463 if (VAR_P (decl)
9464 && (TREE_STATIC (decl) || DECL_THREAD_LOCAL_P (decl)))
9466 /* Namespace-scope or local static; give it a mangled name. */
9467 /* FIXME share comdat with decl? */
9468 tree name;
9470 TREE_STATIC (var) = TREE_STATIC (decl);
9471 DECL_TLS_MODEL (var) = DECL_TLS_MODEL (decl);
9472 name = mangle_ref_init_variable (decl);
9473 DECL_NAME (var) = name;
9474 SET_DECL_ASSEMBLER_NAME (var, name);
9475 var = pushdecl_top_level (var);
9477 else
9478 /* Create a new cleanup level if necessary. */
9479 maybe_push_cleanup_level (type);
9481 return var;
9484 /* EXPR is the initializer for a variable DECL of reference or
9485 std::initializer_list type. Create, push and return a new VAR_DECL
9486 for the initializer so that it will live as long as DECL. Any
9487 cleanup for the new variable is returned through CLEANUP, and the
9488 code to initialize the new variable is returned through INITP. */
9490 static tree
9491 set_up_extended_ref_temp (tree decl, tree expr, vec<tree, va_gc> **cleanups,
9492 tree *initp)
9494 tree init;
9495 tree type;
9496 tree var;
9498 /* Create the temporary variable. */
9499 type = TREE_TYPE (expr);
9500 var = make_temporary_var_for_ref_to_temp (decl, type);
9501 layout_decl (var, 0);
9502 /* If the rvalue is the result of a function call it will be
9503 a TARGET_EXPR. If it is some other construct (such as a
9504 member access expression where the underlying object is
9505 itself the result of a function call), turn it into a
9506 TARGET_EXPR here. It is important that EXPR be a
9507 TARGET_EXPR below since otherwise the INIT_EXPR will
9508 attempt to make a bitwise copy of EXPR to initialize
9509 VAR. */
9510 if (TREE_CODE (expr) != TARGET_EXPR)
9511 expr = get_target_expr (expr);
9513 if (TREE_CODE (decl) == FIELD_DECL
9514 && extra_warnings && !TREE_NO_WARNING (decl))
9516 warning (OPT_Wextra, "a temporary bound to %qD only persists "
9517 "until the constructor exits", decl);
9518 TREE_NO_WARNING (decl) = true;
9521 /* Recursively extend temps in this initializer. */
9522 TARGET_EXPR_INITIAL (expr)
9523 = extend_ref_init_temps (decl, TARGET_EXPR_INITIAL (expr), cleanups);
9525 /* Any reference temp has a non-trivial initializer. */
9526 DECL_NONTRIVIALLY_INITIALIZED_P (var) = true;
9528 /* If the initializer is constant, put it in DECL_INITIAL so we get
9529 static initialization and use in constant expressions. */
9530 init = maybe_constant_init (expr);
9531 if (TREE_CONSTANT (init))
9533 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
9535 /* 5.19 says that a constant expression can include an
9536 lvalue-rvalue conversion applied to "a glvalue of literal type
9537 that refers to a non-volatile temporary object initialized
9538 with a constant expression". Rather than try to communicate
9539 that this VAR_DECL is a temporary, just mark it constexpr.
9541 Currently this is only useful for initializer_list temporaries,
9542 since reference vars can't appear in constant expressions. */
9543 DECL_DECLARED_CONSTEXPR_P (var) = true;
9544 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var) = true;
9545 TREE_CONSTANT (var) = true;
9547 DECL_INITIAL (var) = init;
9548 init = NULL_TREE;
9550 else
9551 /* Create the INIT_EXPR that will initialize the temporary
9552 variable. */
9553 init = build2 (INIT_EXPR, type, var, expr);
9554 if (at_function_scope_p ())
9556 add_decl_expr (var);
9558 if (TREE_STATIC (var))
9559 init = add_stmt_to_compound (init, register_dtor_fn (var));
9560 else
9562 tree cleanup = cxx_maybe_build_cleanup (var, tf_warning_or_error);
9563 if (cleanup)
9564 vec_safe_push (*cleanups, cleanup);
9567 /* We must be careful to destroy the temporary only
9568 after its initialization has taken place. If the
9569 initialization throws an exception, then the
9570 destructor should not be run. We cannot simply
9571 transform INIT into something like:
9573 (INIT, ({ CLEANUP_STMT; }))
9575 because emit_local_var always treats the
9576 initializer as a full-expression. Thus, the
9577 destructor would run too early; it would run at the
9578 end of initializing the reference variable, rather
9579 than at the end of the block enclosing the
9580 reference variable.
9582 The solution is to pass back a cleanup expression
9583 which the caller is responsible for attaching to
9584 the statement tree. */
9586 else
9588 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
9589 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
9591 if (DECL_THREAD_LOCAL_P (var))
9592 tls_aggregates = tree_cons (NULL_TREE, var,
9593 tls_aggregates);
9594 else
9595 static_aggregates = tree_cons (NULL_TREE, var,
9596 static_aggregates);
9598 else
9599 /* Check whether the dtor is callable. */
9600 cxx_maybe_build_cleanup (var, tf_warning_or_error);
9603 *initp = init;
9604 return var;
9607 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
9608 initializing a variable of that TYPE. */
9610 tree
9611 initialize_reference (tree type, tree expr,
9612 int flags, tsubst_flags_t complain)
9614 conversion *conv;
9615 void *p;
9616 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
9618 if (type == error_mark_node || error_operand_p (expr))
9619 return error_mark_node;
9621 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9622 p = conversion_obstack_alloc (0);
9624 conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
9625 flags, complain);
9626 if (!conv || conv->bad_p)
9628 if (complain & tf_error)
9630 if (conv)
9631 convert_like (conv, expr, complain);
9632 else if (!CP_TYPE_CONST_P (TREE_TYPE (type))
9633 && !TYPE_REF_IS_RVALUE (type)
9634 && !real_lvalue_p (expr))
9635 error_at (loc, "invalid initialization of non-const reference of "
9636 "type %qT from an rvalue of type %qT",
9637 type, TREE_TYPE (expr));
9638 else
9639 error_at (loc, "invalid initialization of reference of type "
9640 "%qT from expression of type %qT", type,
9641 TREE_TYPE (expr));
9643 return error_mark_node;
9646 if (conv->kind == ck_ref_bind)
9647 /* Perform the conversion. */
9648 expr = convert_like (conv, expr, complain);
9649 else if (conv->kind == ck_ambig)
9650 /* We gave an error in build_user_type_conversion_1. */
9651 expr = error_mark_node;
9652 else
9653 gcc_unreachable ();
9655 /* Free all the conversions we allocated. */
9656 obstack_free (&conversion_obstack, p);
9658 return expr;
9661 /* Subroutine of extend_ref_init_temps. Possibly extend one initializer,
9662 which is bound either to a reference or a std::initializer_list. */
9664 static tree
9665 extend_ref_init_temps_1 (tree decl, tree init, vec<tree, va_gc> **cleanups)
9667 tree sub = init;
9668 tree *p;
9669 STRIP_NOPS (sub);
9670 if (TREE_CODE (sub) == COMPOUND_EXPR)
9672 TREE_OPERAND (sub, 1)
9673 = extend_ref_init_temps_1 (decl, TREE_OPERAND (sub, 1), cleanups);
9674 return init;
9676 if (TREE_CODE (sub) != ADDR_EXPR)
9677 return init;
9678 /* Deal with binding to a subobject. */
9679 for (p = &TREE_OPERAND (sub, 0); TREE_CODE (*p) == COMPONENT_REF; )
9680 p = &TREE_OPERAND (*p, 0);
9681 if (TREE_CODE (*p) == TARGET_EXPR)
9683 tree subinit = NULL_TREE;
9684 *p = set_up_extended_ref_temp (decl, *p, cleanups, &subinit);
9685 if (subinit)
9686 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), subinit, init);
9687 recompute_tree_invariant_for_addr_expr (sub);
9689 return init;
9692 /* INIT is part of the initializer for DECL. If there are any
9693 reference or initializer lists being initialized, extend their
9694 lifetime to match that of DECL. */
9696 tree
9697 extend_ref_init_temps (tree decl, tree init, vec<tree, va_gc> **cleanups)
9699 tree type = TREE_TYPE (init);
9700 if (processing_template_decl)
9701 return init;
9702 if (TREE_CODE (type) == REFERENCE_TYPE)
9703 init = extend_ref_init_temps_1 (decl, init, cleanups);
9704 else if (is_std_init_list (type))
9706 /* The temporary array underlying a std::initializer_list
9707 is handled like a reference temporary. */
9708 tree ctor = init;
9709 if (TREE_CODE (ctor) == TARGET_EXPR)
9710 ctor = TARGET_EXPR_INITIAL (ctor);
9711 if (TREE_CODE (ctor) == CONSTRUCTOR)
9713 tree array = CONSTRUCTOR_ELT (ctor, 0)->value;
9714 array = extend_ref_init_temps_1 (decl, array, cleanups);
9715 CONSTRUCTOR_ELT (ctor, 0)->value = array;
9718 else if (TREE_CODE (init) == CONSTRUCTOR)
9720 unsigned i;
9721 constructor_elt *p;
9722 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (init);
9723 FOR_EACH_VEC_SAFE_ELT (elts, i, p)
9724 p->value = extend_ref_init_temps (decl, p->value, cleanups);
9727 return init;
9730 /* Returns true iff an initializer for TYPE could contain temporaries that
9731 need to be extended because they are bound to references or
9732 std::initializer_list. */
9734 bool
9735 type_has_extended_temps (tree type)
9737 type = strip_array_types (type);
9738 if (TREE_CODE (type) == REFERENCE_TYPE)
9739 return true;
9740 if (CLASS_TYPE_P (type))
9742 if (is_std_init_list (type))
9743 return true;
9744 for (tree f = next_initializable_field (TYPE_FIELDS (type));
9745 f; f = next_initializable_field (DECL_CHAIN (f)))
9746 if (type_has_extended_temps (TREE_TYPE (f)))
9747 return true;
9749 return false;
9752 /* Returns true iff TYPE is some variant of std::initializer_list. */
9754 bool
9755 is_std_init_list (tree type)
9757 /* Look through typedefs. */
9758 if (!TYPE_P (type))
9759 return false;
9760 if (cxx_dialect == cxx98)
9761 return false;
9762 type = TYPE_MAIN_VARIANT (type);
9763 return (CLASS_TYPE_P (type)
9764 && CP_TYPE_CONTEXT (type) == std_node
9765 && CLASSTYPE_TEMPLATE_INFO (type)
9766 && strcmp (TYPE_NAME_STRING (type), "initializer_list") == 0);
9769 /* Returns true iff DECL is a list constructor: i.e. a constructor which
9770 will accept an argument list of a single std::initializer_list<T>. */
9772 bool
9773 is_list_ctor (tree decl)
9775 tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
9776 tree arg;
9778 if (!args || args == void_list_node)
9779 return false;
9781 arg = non_reference (TREE_VALUE (args));
9782 if (!is_std_init_list (arg))
9783 return false;
9785 args = TREE_CHAIN (args);
9787 if (args && args != void_list_node && !TREE_PURPOSE (args))
9788 /* There are more non-defaulted parms. */
9789 return false;
9791 return true;
9794 #include "gt-cp-call.h"