/cp
[official-gcc.git] / gcc / cp / call.c
blob877f6d9cf1728ec41b7e1e4c4b986af772b88241
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"
45 /* The various kinds of conversion. */
47 typedef enum conversion_kind {
48 ck_identity,
49 ck_lvalue,
50 ck_qual,
51 ck_std,
52 ck_ptr,
53 ck_pmem,
54 ck_base,
55 ck_ref_bind,
56 ck_user,
57 ck_ambig,
58 ck_list,
59 ck_aggr,
60 ck_rvalue
61 } conversion_kind;
63 /* The rank of the conversion. Order of the enumerals matters; better
64 conversions should come earlier in the list. */
66 typedef enum conversion_rank {
67 cr_identity,
68 cr_exact,
69 cr_promotion,
70 cr_std,
71 cr_pbool,
72 cr_user,
73 cr_ellipsis,
74 cr_bad
75 } conversion_rank;
77 /* An implicit conversion sequence, in the sense of [over.best.ics].
78 The first conversion to be performed is at the end of the chain.
79 That conversion is always a cr_identity conversion. */
81 typedef struct conversion conversion;
82 struct conversion {
83 /* The kind of conversion represented by this step. */
84 conversion_kind kind;
85 /* The rank of this conversion. */
86 conversion_rank rank;
87 BOOL_BITFIELD user_conv_p : 1;
88 BOOL_BITFIELD ellipsis_p : 1;
89 BOOL_BITFIELD this_p : 1;
90 /* True if this conversion would be permitted with a bending of
91 language standards, e.g. disregarding pointer qualifiers or
92 converting integers to pointers. */
93 BOOL_BITFIELD bad_p : 1;
94 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
95 temporary should be created to hold the result of the
96 conversion. */
97 BOOL_BITFIELD need_temporary_p : 1;
98 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
99 from a pointer-to-derived to pointer-to-base is being performed. */
100 BOOL_BITFIELD base_p : 1;
101 /* If KIND is ck_ref_bind, true when either an lvalue reference is
102 being bound to an lvalue expression or an rvalue reference is
103 being bound to an rvalue expression. If KIND is ck_rvalue,
104 true when we should treat an lvalue as an rvalue (12.8p33). If
105 KIND is ck_base, always false. */
106 BOOL_BITFIELD rvaluedness_matches_p: 1;
107 BOOL_BITFIELD check_narrowing: 1;
108 /* The type of the expression resulting from the conversion. */
109 tree type;
110 union {
111 /* The next conversion in the chain. Since the conversions are
112 arranged from outermost to innermost, the NEXT conversion will
113 actually be performed before this conversion. This variant is
114 used only when KIND is neither ck_identity, ck_ambig nor
115 ck_list. Please use the next_conversion function instead
116 of using this field directly. */
117 conversion *next;
118 /* The expression at the beginning of the conversion chain. This
119 variant is used only if KIND is ck_identity or ck_ambig. */
120 tree expr;
121 /* The array of conversions for an initializer_list, so this
122 variant is used only when KIN D is ck_list. */
123 conversion **list;
124 } u;
125 /* The function candidate corresponding to this conversion
126 sequence. This field is only used if KIND is ck_user. */
127 struct z_candidate *cand;
130 #define CONVERSION_RANK(NODE) \
131 ((NODE)->bad_p ? cr_bad \
132 : (NODE)->ellipsis_p ? cr_ellipsis \
133 : (NODE)->user_conv_p ? cr_user \
134 : (NODE)->rank)
136 #define BAD_CONVERSION_RANK(NODE) \
137 ((NODE)->ellipsis_p ? cr_ellipsis \
138 : (NODE)->user_conv_p ? cr_user \
139 : (NODE)->rank)
141 static struct obstack conversion_obstack;
142 static bool conversion_obstack_initialized;
143 struct rejection_reason;
145 static struct z_candidate * tourney (struct z_candidate *, tsubst_flags_t);
146 static int equal_functions (tree, tree);
147 static int joust (struct z_candidate *, struct z_candidate *, bool,
148 tsubst_flags_t);
149 static int compare_ics (conversion *, conversion *);
150 static tree build_over_call (struct z_candidate *, int, tsubst_flags_t);
151 static tree build_java_interface_fn_ref (tree, tree);
152 #define convert_like(CONV, EXPR, COMPLAIN) \
153 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
154 /*issue_conversion_warnings=*/true, \
155 /*c_cast_p=*/false, (COMPLAIN))
156 #define convert_like_with_context(CONV, EXPR, FN, ARGNO, COMPLAIN ) \
157 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
158 /*issue_conversion_warnings=*/true, \
159 /*c_cast_p=*/false, (COMPLAIN))
160 static tree convert_like_real (conversion *, tree, tree, int, int, bool,
161 bool, tsubst_flags_t);
162 static void op_error (location_t, enum tree_code, enum tree_code, tree,
163 tree, tree, bool);
164 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int,
165 tsubst_flags_t);
166 static void print_z_candidate (location_t, const char *, struct z_candidate *);
167 static void print_z_candidates (location_t, struct z_candidate *);
168 static tree build_this (tree);
169 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
170 static bool any_strictly_viable (struct z_candidate *);
171 static struct z_candidate *add_template_candidate
172 (struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
173 tree, tree, tree, int, unification_kind_t, tsubst_flags_t);
174 static struct z_candidate *add_template_candidate_real
175 (struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
176 tree, tree, tree, int, tree, unification_kind_t, tsubst_flags_t);
177 static struct z_candidate *add_template_conv_candidate
178 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *,
179 tree, tree, tree, tsubst_flags_t);
180 static void add_builtin_candidates
181 (struct z_candidate **, enum tree_code, enum tree_code,
182 tree, tree *, int, tsubst_flags_t);
183 static void add_builtin_candidate
184 (struct z_candidate **, enum tree_code, enum tree_code,
185 tree, tree, tree, tree *, tree *, int, tsubst_flags_t);
186 static bool is_complete (tree);
187 static void build_builtin_candidate
188 (struct z_candidate **, tree, tree, tree, tree *, tree *,
189 int, tsubst_flags_t);
190 static struct z_candidate *add_conv_candidate
191 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *, tree,
192 tree, tsubst_flags_t);
193 static struct z_candidate *add_function_candidate
194 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *, tree,
195 tree, int, tsubst_flags_t);
196 static conversion *implicit_conversion (tree, tree, tree, bool, int,
197 tsubst_flags_t);
198 static conversion *standard_conversion (tree, tree, tree, bool, int);
199 static conversion *reference_binding (tree, tree, tree, bool, int,
200 tsubst_flags_t);
201 static conversion *build_conv (conversion_kind, tree, conversion *);
202 static conversion *build_list_conv (tree, tree, int, tsubst_flags_t);
203 static conversion *next_conversion (conversion *);
204 static bool is_subseq (conversion *, conversion *);
205 static conversion *maybe_handle_ref_bind (conversion **);
206 static void maybe_handle_implicit_object (conversion **);
207 static struct z_candidate *add_candidate
208 (struct z_candidate **, tree, tree, const vec<tree, va_gc> *, size_t,
209 conversion **, tree, tree, int, struct rejection_reason *);
210 static tree source_type (conversion *);
211 static void add_warning (struct z_candidate *, struct z_candidate *);
212 static bool reference_compatible_p (tree, tree);
213 static conversion *direct_reference_binding (tree, conversion *);
214 static bool promoted_arithmetic_type_p (tree);
215 static conversion *conditional_conversion (tree, tree, tsubst_flags_t);
216 static char *name_as_c_string (tree, tree, bool *);
217 static tree prep_operand (tree);
218 static void add_candidates (tree, tree, const vec<tree, va_gc> *, tree, tree,
219 bool, tree, tree, int, struct z_candidate **,
220 tsubst_flags_t);
221 static conversion *merge_conversion_sequences (conversion *, conversion *);
222 static tree build_temp (tree, tree, int, diagnostic_t *, tsubst_flags_t);
224 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
225 NAME can take many forms... */
227 bool
228 check_dtor_name (tree basetype, tree name)
230 /* Just accept something we've already complained about. */
231 if (name == error_mark_node)
232 return true;
234 if (TREE_CODE (name) == TYPE_DECL)
235 name = TREE_TYPE (name);
236 else if (TYPE_P (name))
237 /* OK */;
238 else if (identifier_p (name))
240 if ((MAYBE_CLASS_TYPE_P (basetype)
241 && name == constructor_name (basetype))
242 || (TREE_CODE (basetype) == ENUMERAL_TYPE
243 && name == TYPE_IDENTIFIER (basetype)))
244 return true;
245 else
246 name = get_type_value (name);
248 else
250 /* In the case of:
252 template <class T> struct S { ~S(); };
253 int i;
254 i.~S();
256 NAME will be a class template. */
257 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
258 return false;
261 if (!name || name == error_mark_node)
262 return false;
263 return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
266 /* We want the address of a function or method. We avoid creating a
267 pointer-to-member function. */
269 tree
270 build_addr_func (tree function, tsubst_flags_t complain)
272 tree type = TREE_TYPE (function);
274 /* We have to do these by hand to avoid real pointer to member
275 functions. */
276 if (TREE_CODE (type) == METHOD_TYPE)
278 if (TREE_CODE (function) == OFFSET_REF)
280 tree object = build_address (TREE_OPERAND (function, 0));
281 return get_member_function_from_ptrfunc (&object,
282 TREE_OPERAND (function, 1),
283 complain);
285 function = build_address (function);
287 else
288 function = decay_conversion (function, complain);
290 return function;
293 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
294 POINTER_TYPE to those. Note, pointer to member function types
295 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
296 two variants. build_call_a is the primitive taking an array of
297 arguments, while build_call_n is a wrapper that handles varargs. */
299 tree
300 build_call_n (tree function, int n, ...)
302 if (n == 0)
303 return build_call_a (function, 0, NULL);
304 else
306 tree *argarray = XALLOCAVEC (tree, n);
307 va_list ap;
308 int i;
310 va_start (ap, n);
311 for (i = 0; i < n; i++)
312 argarray[i] = va_arg (ap, tree);
313 va_end (ap);
314 return build_call_a (function, n, argarray);
318 /* Update various flags in cfun and the call itself based on what is being
319 called. Split out of build_call_a so that bot_manip can use it too. */
321 void
322 set_flags_from_callee (tree call)
324 int nothrow;
325 tree decl = get_callee_fndecl (call);
327 /* We check both the decl and the type; a function may be known not to
328 throw without being declared throw(). */
329 nothrow = ((decl && TREE_NOTHROW (decl))
330 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (call)))));
332 if (!nothrow && at_function_scope_p () && cfun && cp_function_chain)
333 cp_function_chain->can_throw = 1;
335 if (decl && TREE_THIS_VOLATILE (decl) && cfun && cp_function_chain)
336 current_function_returns_abnormally = 1;
338 TREE_NOTHROW (call) = nothrow;
341 tree
342 build_call_a (tree function, int n, tree *argarray)
344 tree decl;
345 tree result_type;
346 tree fntype;
347 int i;
349 function = build_addr_func (function, tf_warning_or_error);
351 gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
352 fntype = TREE_TYPE (TREE_TYPE (function));
353 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
354 || TREE_CODE (fntype) == METHOD_TYPE);
355 result_type = TREE_TYPE (fntype);
356 /* An rvalue has no cv-qualifiers. */
357 if (SCALAR_TYPE_P (result_type) || VOID_TYPE_P (result_type))
358 result_type = cv_unqualified (result_type);
360 function = build_call_array_loc (input_location,
361 result_type, function, n, argarray);
362 set_flags_from_callee (function);
364 decl = get_callee_fndecl (function);
366 if (decl && !TREE_USED (decl))
368 /* We invoke build_call directly for several library
369 functions. These may have been declared normally if
370 we're building libgcc, so we can't just check
371 DECL_ARTIFICIAL. */
372 gcc_assert (DECL_ARTIFICIAL (decl)
373 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
374 "__", 2));
375 mark_used (decl);
378 if (decl && TREE_DEPRECATED (decl))
379 warn_deprecated_use (decl, NULL_TREE);
380 require_complete_eh_spec_types (fntype, decl);
382 TREE_HAS_CONSTRUCTOR (function) = (decl && DECL_CONSTRUCTOR_P (decl));
384 /* Don't pass empty class objects by value. This is useful
385 for tags in STL, which are used to control overload resolution.
386 We don't need to handle other cases of copying empty classes. */
387 if (! decl || ! DECL_BUILT_IN (decl))
388 for (i = 0; i < n; i++)
390 tree arg = CALL_EXPR_ARG (function, i);
391 if (is_empty_class (TREE_TYPE (arg))
392 && ! TREE_ADDRESSABLE (TREE_TYPE (arg)))
394 tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (arg));
395 arg = build2 (COMPOUND_EXPR, TREE_TYPE (t), arg, t);
396 CALL_EXPR_ARG (function, i) = arg;
400 return function;
403 /* Build something of the form ptr->method (args)
404 or object.method (args). This can also build
405 calls to constructors, and find friends.
407 Member functions always take their class variable
408 as a pointer.
410 INSTANCE is a class instance.
412 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
414 PARMS help to figure out what that NAME really refers to.
416 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
417 down to the real instance type to use for access checking. We need this
418 information to get protected accesses correct.
420 FLAGS is the logical disjunction of zero or more LOOKUP_
421 flags. See cp-tree.h for more info.
423 If this is all OK, calls build_function_call with the resolved
424 member function.
426 This function must also handle being called to perform
427 initialization, promotion/coercion of arguments, and
428 instantiation of default parameters.
430 Note that NAME may refer to an instance variable name. If
431 `operator()()' is defined for the type of that field, then we return
432 that result. */
434 /* New overloading code. */
436 typedef struct z_candidate z_candidate;
438 typedef struct candidate_warning candidate_warning;
439 struct candidate_warning {
440 z_candidate *loser;
441 candidate_warning *next;
444 /* Information for providing diagnostics about why overloading failed. */
446 enum rejection_reason_code {
447 rr_none,
448 rr_arity,
449 rr_explicit_conversion,
450 rr_template_conversion,
451 rr_arg_conversion,
452 rr_bad_arg_conversion,
453 rr_template_unification,
454 rr_invalid_copy
457 struct conversion_info {
458 /* The index of the argument, 0-based. */
459 int n_arg;
460 /* The type of the actual argument. */
461 tree from_type;
462 /* The type of the formal argument. */
463 tree to_type;
466 struct rejection_reason {
467 enum rejection_reason_code code;
468 union {
469 /* Information about an arity mismatch. */
470 struct {
471 /* The expected number of arguments. */
472 int expected;
473 /* The actual number of arguments in the call. */
474 int actual;
475 /* Whether the call was a varargs call. */
476 bool call_varargs_p;
477 } arity;
478 /* Information about an argument conversion mismatch. */
479 struct conversion_info conversion;
480 /* Same, but for bad argument conversions. */
481 struct conversion_info bad_conversion;
482 /* Information about template unification failures. These are the
483 parameters passed to fn_type_unification. */
484 struct {
485 tree tmpl;
486 tree explicit_targs;
487 int num_targs;
488 const tree *args;
489 unsigned int nargs;
490 tree return_type;
491 unification_kind_t strict;
492 int flags;
493 } template_unification;
494 /* Information about template instantiation failures. These are the
495 parameters passed to instantiate_template. */
496 struct {
497 tree tmpl;
498 tree targs;
499 } template_instantiation;
500 } u;
503 struct z_candidate {
504 /* The FUNCTION_DECL that will be called if this candidate is
505 selected by overload resolution. */
506 tree fn;
507 /* If not NULL_TREE, the first argument to use when calling this
508 function. */
509 tree first_arg;
510 /* The rest of the arguments to use when calling this function. If
511 there are no further arguments this may be NULL or it may be an
512 empty vector. */
513 const vec<tree, va_gc> *args;
514 /* The implicit conversion sequences for each of the arguments to
515 FN. */
516 conversion **convs;
517 /* The number of implicit conversion sequences. */
518 size_t num_convs;
519 /* If FN is a user-defined conversion, the standard conversion
520 sequence from the type returned by FN to the desired destination
521 type. */
522 conversion *second_conv;
523 int viable;
524 struct rejection_reason *reason;
525 /* If FN is a member function, the binfo indicating the path used to
526 qualify the name of FN at the call site. This path is used to
527 determine whether or not FN is accessible if it is selected by
528 overload resolution. The DECL_CONTEXT of FN will always be a
529 (possibly improper) base of this binfo. */
530 tree access_path;
531 /* If FN is a non-static member function, the binfo indicating the
532 subobject to which the `this' pointer should be converted if FN
533 is selected by overload resolution. The type pointed to by
534 the `this' pointer must correspond to the most derived class
535 indicated by the CONVERSION_PATH. */
536 tree conversion_path;
537 tree template_decl;
538 tree explicit_targs;
539 candidate_warning *warnings;
540 z_candidate *next;
543 /* Returns true iff T is a null pointer constant in the sense of
544 [conv.ptr]. */
546 bool
547 null_ptr_cst_p (tree t)
549 /* [conv.ptr]
551 A null pointer constant is an integral constant expression
552 (_expr.const_) rvalue of integer type that evaluates to zero or
553 an rvalue of type std::nullptr_t. */
554 if (NULLPTR_TYPE_P (TREE_TYPE (t)))
555 return true;
556 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)))
558 /* Core issue 903 says only literal 0 is a null pointer constant. */
559 if (cxx_dialect < cxx11)
560 t = maybe_constant_value (fold_non_dependent_expr_sfinae (t, tf_none));
561 STRIP_NOPS (t);
562 if (integer_zerop (t) && !TREE_OVERFLOW (t))
563 return true;
565 return false;
568 /* Returns true iff T is a null member pointer value (4.11). */
570 bool
571 null_member_pointer_value_p (tree t)
573 tree type = TREE_TYPE (t);
574 if (!type)
575 return false;
576 else if (TYPE_PTRMEMFUNC_P (type))
577 return (TREE_CODE (t) == CONSTRUCTOR
578 && integer_zerop (CONSTRUCTOR_ELT (t, 0)->value));
579 else if (TYPE_PTRDATAMEM_P (type))
580 return integer_all_onesp (t);
581 else
582 return false;
585 /* Returns nonzero if PARMLIST consists of only default parms,
586 ellipsis, and/or undeduced parameter packs. */
588 bool
589 sufficient_parms_p (const_tree parmlist)
591 for (; parmlist && parmlist != void_list_node;
592 parmlist = TREE_CHAIN (parmlist))
593 if (!TREE_PURPOSE (parmlist)
594 && !PACK_EXPANSION_P (TREE_VALUE (parmlist)))
595 return false;
596 return true;
599 /* Allocate N bytes of memory from the conversion obstack. The memory
600 is zeroed before being returned. */
602 static void *
603 conversion_obstack_alloc (size_t n)
605 void *p;
606 if (!conversion_obstack_initialized)
608 gcc_obstack_init (&conversion_obstack);
609 conversion_obstack_initialized = true;
611 p = obstack_alloc (&conversion_obstack, n);
612 memset (p, 0, n);
613 return p;
616 /* Allocate rejection reasons. */
618 static struct rejection_reason *
619 alloc_rejection (enum rejection_reason_code code)
621 struct rejection_reason *p;
622 p = (struct rejection_reason *) conversion_obstack_alloc (sizeof *p);
623 p->code = code;
624 return p;
627 static struct rejection_reason *
628 arity_rejection (tree first_arg, int expected, int actual)
630 struct rejection_reason *r = alloc_rejection (rr_arity);
631 int adjust = first_arg != NULL_TREE;
632 r->u.arity.expected = expected - adjust;
633 r->u.arity.actual = actual - adjust;
634 return r;
637 static struct rejection_reason *
638 arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
640 struct rejection_reason *r = alloc_rejection (rr_arg_conversion);
641 int adjust = first_arg != NULL_TREE;
642 r->u.conversion.n_arg = n_arg - adjust;
643 r->u.conversion.from_type = from;
644 r->u.conversion.to_type = to;
645 return r;
648 static struct rejection_reason *
649 bad_arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
651 struct rejection_reason *r = alloc_rejection (rr_bad_arg_conversion);
652 int adjust = first_arg != NULL_TREE;
653 r->u.bad_conversion.n_arg = n_arg - adjust;
654 r->u.bad_conversion.from_type = from;
655 r->u.bad_conversion.to_type = to;
656 return r;
659 static struct rejection_reason *
660 explicit_conversion_rejection (tree from, tree to)
662 struct rejection_reason *r = alloc_rejection (rr_explicit_conversion);
663 r->u.conversion.n_arg = 0;
664 r->u.conversion.from_type = from;
665 r->u.conversion.to_type = to;
666 return r;
669 static struct rejection_reason *
670 template_conversion_rejection (tree from, tree to)
672 struct rejection_reason *r = alloc_rejection (rr_template_conversion);
673 r->u.conversion.n_arg = 0;
674 r->u.conversion.from_type = from;
675 r->u.conversion.to_type = to;
676 return r;
679 static struct rejection_reason *
680 template_unification_rejection (tree tmpl, tree explicit_targs, tree targs,
681 const tree *args, unsigned int nargs,
682 tree return_type, unification_kind_t strict,
683 int flags)
685 size_t args_n_bytes = sizeof (*args) * nargs;
686 tree *args1 = (tree *) conversion_obstack_alloc (args_n_bytes);
687 struct rejection_reason *r = alloc_rejection (rr_template_unification);
688 r->u.template_unification.tmpl = tmpl;
689 r->u.template_unification.explicit_targs = explicit_targs;
690 r->u.template_unification.num_targs = TREE_VEC_LENGTH (targs);
691 /* Copy args to our own storage. */
692 memcpy (args1, args, args_n_bytes);
693 r->u.template_unification.args = args1;
694 r->u.template_unification.nargs = nargs;
695 r->u.template_unification.return_type = return_type;
696 r->u.template_unification.strict = strict;
697 r->u.template_unification.flags = flags;
698 return r;
701 static struct rejection_reason *
702 template_unification_error_rejection (void)
704 return alloc_rejection (rr_template_unification);
707 static struct rejection_reason *
708 invalid_copy_with_fn_template_rejection (void)
710 struct rejection_reason *r = alloc_rejection (rr_invalid_copy);
711 return r;
714 /* Dynamically allocate a conversion. */
716 static conversion *
717 alloc_conversion (conversion_kind kind)
719 conversion *c;
720 c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
721 c->kind = kind;
722 return c;
725 #ifdef ENABLE_CHECKING
727 /* Make sure that all memory on the conversion obstack has been
728 freed. */
730 void
731 validate_conversion_obstack (void)
733 if (conversion_obstack_initialized)
734 gcc_assert ((obstack_next_free (&conversion_obstack)
735 == obstack_base (&conversion_obstack)));
738 #endif /* ENABLE_CHECKING */
740 /* Dynamically allocate an array of N conversions. */
742 static conversion **
743 alloc_conversions (size_t n)
745 return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
748 static conversion *
749 build_conv (conversion_kind code, tree type, conversion *from)
751 conversion *t;
752 conversion_rank rank = CONVERSION_RANK (from);
754 /* Note that the caller is responsible for filling in t->cand for
755 user-defined conversions. */
756 t = alloc_conversion (code);
757 t->type = type;
758 t->u.next = from;
760 switch (code)
762 case ck_ptr:
763 case ck_pmem:
764 case ck_base:
765 case ck_std:
766 if (rank < cr_std)
767 rank = cr_std;
768 break;
770 case ck_qual:
771 if (rank < cr_exact)
772 rank = cr_exact;
773 break;
775 default:
776 break;
778 t->rank = rank;
779 t->user_conv_p = (code == ck_user || from->user_conv_p);
780 t->bad_p = from->bad_p;
781 t->base_p = false;
782 return t;
785 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
786 specialization of std::initializer_list<T>, if such a conversion is
787 possible. */
789 static conversion *
790 build_list_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
792 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type), 0);
793 unsigned len = CONSTRUCTOR_NELTS (ctor);
794 conversion **subconvs = alloc_conversions (len);
795 conversion *t;
796 unsigned i;
797 tree val;
799 /* Within a list-initialization we can have more user-defined
800 conversions. */
801 flags &= ~LOOKUP_NO_CONVERSION;
802 /* But no narrowing conversions. */
803 flags |= LOOKUP_NO_NARROWING;
805 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
807 conversion *sub
808 = implicit_conversion (elttype, TREE_TYPE (val), val,
809 false, flags, complain);
810 if (sub == NULL)
811 return NULL;
813 subconvs[i] = sub;
816 t = alloc_conversion (ck_list);
817 t->type = type;
818 t->u.list = subconvs;
819 t->rank = cr_exact;
821 for (i = 0; i < len; ++i)
823 conversion *sub = subconvs[i];
824 if (sub->rank > t->rank)
825 t->rank = sub->rank;
826 if (sub->user_conv_p)
827 t->user_conv_p = true;
828 if (sub->bad_p)
829 t->bad_p = true;
832 return t;
835 /* Return the next conversion of the conversion chain (if applicable),
836 or NULL otherwise. Please use this function instead of directly
837 accessing fields of struct conversion. */
839 static conversion *
840 next_conversion (conversion *conv)
842 if (conv == NULL
843 || conv->kind == ck_identity
844 || conv->kind == ck_ambig
845 || conv->kind == ck_list)
846 return NULL;
847 return conv->u.next;
850 /* Subroutine of build_aggr_conv: check whether CTOR, a braced-init-list,
851 is a valid aggregate initializer for array type ATYPE. */
853 static bool
854 can_convert_array (tree atype, tree ctor, int flags, tsubst_flags_t complain)
856 unsigned i;
857 tree elttype = TREE_TYPE (atype);
858 for (i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
860 tree val = CONSTRUCTOR_ELT (ctor, i)->value;
861 bool ok;
862 if (TREE_CODE (elttype) == ARRAY_TYPE
863 && TREE_CODE (val) == CONSTRUCTOR)
864 ok = can_convert_array (elttype, val, flags, complain);
865 else
866 ok = can_convert_arg (elttype, TREE_TYPE (val), val, flags,
867 complain);
868 if (!ok)
869 return false;
871 return true;
874 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
875 aggregate class, if such a conversion is possible. */
877 static conversion *
878 build_aggr_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
880 unsigned HOST_WIDE_INT i = 0;
881 conversion *c;
882 tree field = next_initializable_field (TYPE_FIELDS (type));
883 tree empty_ctor = NULL_TREE;
885 ctor = reshape_init (type, ctor, tf_none);
886 if (ctor == error_mark_node)
887 return NULL;
889 flags |= LOOKUP_NO_NARROWING;
891 for (; field; field = next_initializable_field (DECL_CHAIN (field)))
893 tree ftype = TREE_TYPE (field);
894 tree val;
895 bool ok;
897 if (i < CONSTRUCTOR_NELTS (ctor))
898 val = CONSTRUCTOR_ELT (ctor, i)->value;
899 else if (TREE_CODE (ftype) == REFERENCE_TYPE)
900 /* Value-initialization of reference is ill-formed. */
901 return NULL;
902 else
904 if (empty_ctor == NULL_TREE)
905 empty_ctor = build_constructor (init_list_type_node, NULL);
906 val = empty_ctor;
908 ++i;
910 if (TREE_CODE (ftype) == ARRAY_TYPE
911 && TREE_CODE (val) == CONSTRUCTOR)
912 ok = can_convert_array (ftype, val, flags, complain);
913 else
914 ok = can_convert_arg (ftype, TREE_TYPE (val), val, flags,
915 complain);
917 if (!ok)
918 return NULL;
920 if (TREE_CODE (type) == UNION_TYPE)
921 break;
924 if (i < CONSTRUCTOR_NELTS (ctor))
925 return NULL;
927 c = alloc_conversion (ck_aggr);
928 c->type = type;
929 c->rank = cr_exact;
930 c->user_conv_p = true;
931 c->check_narrowing = true;
932 c->u.next = NULL;
933 return c;
936 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
937 array type, if such a conversion is possible. */
939 static conversion *
940 build_array_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
942 conversion *c;
943 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
944 tree elttype = TREE_TYPE (type);
945 unsigned i;
946 tree val;
947 bool bad = false;
948 bool user = false;
949 enum conversion_rank rank = cr_exact;
951 if (TYPE_DOMAIN (type)
952 && !variably_modified_type_p (TYPE_DOMAIN (type), NULL_TREE))
954 unsigned HOST_WIDE_INT alen = tree_to_uhwi (array_type_nelts_top (type));
955 if (alen < len)
956 return NULL;
959 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
961 conversion *sub
962 = implicit_conversion (elttype, TREE_TYPE (val), val,
963 false, flags, complain);
964 if (sub == NULL)
965 return NULL;
967 if (sub->rank > rank)
968 rank = sub->rank;
969 if (sub->user_conv_p)
970 user = true;
971 if (sub->bad_p)
972 bad = true;
975 c = alloc_conversion (ck_aggr);
976 c->type = type;
977 c->rank = rank;
978 c->user_conv_p = user;
979 c->bad_p = bad;
980 c->u.next = NULL;
981 return c;
984 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
985 complex type, if such a conversion is possible. */
987 static conversion *
988 build_complex_conv (tree type, tree ctor, int flags,
989 tsubst_flags_t complain)
991 conversion *c;
992 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
993 tree elttype = TREE_TYPE (type);
994 unsigned i;
995 tree val;
996 bool bad = false;
997 bool user = false;
998 enum conversion_rank rank = cr_exact;
1000 if (len != 2)
1001 return NULL;
1003 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
1005 conversion *sub
1006 = implicit_conversion (elttype, TREE_TYPE (val), val,
1007 false, flags, complain);
1008 if (sub == NULL)
1009 return NULL;
1011 if (sub->rank > rank)
1012 rank = sub->rank;
1013 if (sub->user_conv_p)
1014 user = true;
1015 if (sub->bad_p)
1016 bad = true;
1019 c = alloc_conversion (ck_aggr);
1020 c->type = type;
1021 c->rank = rank;
1022 c->user_conv_p = user;
1023 c->bad_p = bad;
1024 c->u.next = NULL;
1025 return c;
1028 /* Build a representation of the identity conversion from EXPR to
1029 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
1031 static conversion *
1032 build_identity_conv (tree type, tree expr)
1034 conversion *c;
1036 c = alloc_conversion (ck_identity);
1037 c->type = type;
1038 c->u.expr = expr;
1040 return c;
1043 /* Converting from EXPR to TYPE was ambiguous in the sense that there
1044 were multiple user-defined conversions to accomplish the job.
1045 Build a conversion that indicates that ambiguity. */
1047 static conversion *
1048 build_ambiguous_conv (tree type, tree expr)
1050 conversion *c;
1052 c = alloc_conversion (ck_ambig);
1053 c->type = type;
1054 c->u.expr = expr;
1056 return c;
1059 tree
1060 strip_top_quals (tree t)
1062 if (TREE_CODE (t) == ARRAY_TYPE)
1063 return t;
1064 return cp_build_qualified_type (t, 0);
1067 /* Returns the standard conversion path (see [conv]) from type FROM to type
1068 TO, if any. For proper handling of null pointer constants, you must
1069 also pass the expression EXPR to convert from. If C_CAST_P is true,
1070 this conversion is coming from a C-style cast. */
1072 static conversion *
1073 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
1074 int flags)
1076 enum tree_code fcode, tcode;
1077 conversion *conv;
1078 bool fromref = false;
1079 tree qualified_to;
1081 to = non_reference (to);
1082 if (TREE_CODE (from) == REFERENCE_TYPE)
1084 fromref = true;
1085 from = TREE_TYPE (from);
1087 qualified_to = to;
1088 to = strip_top_quals (to);
1089 from = strip_top_quals (from);
1091 if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
1092 && expr && type_unknown_p (expr))
1094 tsubst_flags_t tflags = tf_conv;
1095 expr = instantiate_type (to, expr, tflags);
1096 if (expr == error_mark_node)
1097 return NULL;
1098 from = TREE_TYPE (expr);
1101 fcode = TREE_CODE (from);
1102 tcode = TREE_CODE (to);
1104 conv = build_identity_conv (from, expr);
1105 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
1107 from = type_decays_to (from);
1108 fcode = TREE_CODE (from);
1109 conv = build_conv (ck_lvalue, from, conv);
1111 else if (fromref || (expr && lvalue_p (expr)))
1113 if (expr)
1115 tree bitfield_type;
1116 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
1117 if (bitfield_type)
1119 from = strip_top_quals (bitfield_type);
1120 fcode = TREE_CODE (from);
1123 conv = build_conv (ck_rvalue, from, conv);
1124 if (flags & LOOKUP_PREFER_RVALUE)
1125 conv->rvaluedness_matches_p = true;
1128 /* Allow conversion between `__complex__' data types. */
1129 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
1131 /* The standard conversion sequence to convert FROM to TO is
1132 the standard conversion sequence to perform componentwise
1133 conversion. */
1134 conversion *part_conv = standard_conversion
1135 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
1137 if (part_conv)
1139 conv = build_conv (part_conv->kind, to, conv);
1140 conv->rank = part_conv->rank;
1142 else
1143 conv = NULL;
1145 return conv;
1148 if (same_type_p (from, to))
1150 if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue)
1151 conv->type = qualified_to;
1152 return conv;
1155 /* [conv.ptr]
1156 A null pointer constant can be converted to a pointer type; ... A
1157 null pointer constant of integral type can be converted to an
1158 rvalue of type std::nullptr_t. */
1159 if ((tcode == POINTER_TYPE || TYPE_PTRMEM_P (to)
1160 || NULLPTR_TYPE_P (to))
1161 && expr && null_ptr_cst_p (expr))
1162 conv = build_conv (ck_std, to, conv);
1163 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
1164 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
1166 /* For backwards brain damage compatibility, allow interconversion of
1167 pointers and integers with a pedwarn. */
1168 conv = build_conv (ck_std, to, conv);
1169 conv->bad_p = true;
1171 else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
1173 /* For backwards brain damage compatibility, allow interconversion of
1174 enums and integers with a pedwarn. */
1175 conv = build_conv (ck_std, to, conv);
1176 conv->bad_p = true;
1178 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
1179 || (TYPE_PTRDATAMEM_P (to) && TYPE_PTRDATAMEM_P (from)))
1181 tree to_pointee;
1182 tree from_pointee;
1184 if (tcode == POINTER_TYPE
1185 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
1186 TREE_TYPE (to)))
1188 else if (VOID_TYPE_P (TREE_TYPE (to))
1189 && !TYPE_PTRDATAMEM_P (from)
1190 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
1192 tree nfrom = TREE_TYPE (from);
1193 from = build_pointer_type
1194 (cp_build_qualified_type (void_type_node,
1195 cp_type_quals (nfrom)));
1196 conv = build_conv (ck_ptr, from, conv);
1198 else if (TYPE_PTRDATAMEM_P (from))
1200 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
1201 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
1203 if (DERIVED_FROM_P (fbase, tbase)
1204 && (same_type_ignoring_top_level_qualifiers_p
1205 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
1206 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
1208 from = build_ptrmem_type (tbase,
1209 TYPE_PTRMEM_POINTED_TO_TYPE (from));
1210 conv = build_conv (ck_pmem, from, conv);
1212 else if (!same_type_p (fbase, tbase))
1213 return NULL;
1215 else if (CLASS_TYPE_P (TREE_TYPE (from))
1216 && CLASS_TYPE_P (TREE_TYPE (to))
1217 /* [conv.ptr]
1219 An rvalue of type "pointer to cv D," where D is a
1220 class type, can be converted to an rvalue of type
1221 "pointer to cv B," where B is a base class (clause
1222 _class.derived_) of D. If B is an inaccessible
1223 (clause _class.access_) or ambiguous
1224 (_class.member.lookup_) base class of D, a program
1225 that necessitates this conversion is ill-formed.
1226 Therefore, we use DERIVED_FROM_P, and do not check
1227 access or uniqueness. */
1228 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
1230 from =
1231 cp_build_qualified_type (TREE_TYPE (to),
1232 cp_type_quals (TREE_TYPE (from)));
1233 from = build_pointer_type (from);
1234 conv = build_conv (ck_ptr, from, conv);
1235 conv->base_p = true;
1238 if (tcode == POINTER_TYPE)
1240 to_pointee = TREE_TYPE (to);
1241 from_pointee = TREE_TYPE (from);
1243 else
1245 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
1246 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
1249 if (same_type_p (from, to))
1250 /* OK */;
1251 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
1252 /* In a C-style cast, we ignore CV-qualification because we
1253 are allowed to perform a static_cast followed by a
1254 const_cast. */
1255 conv = build_conv (ck_qual, to, conv);
1256 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
1257 conv = build_conv (ck_qual, to, conv);
1258 else if (expr && string_conv_p (to, expr, 0))
1259 /* converting from string constant to char *. */
1260 conv = build_conv (ck_qual, to, conv);
1261 /* Allow conversions among compatible ObjC pointer types (base
1262 conversions have been already handled above). */
1263 else if (c_dialect_objc ()
1264 && objc_compare_types (to, from, -4, NULL_TREE))
1265 conv = build_conv (ck_ptr, to, conv);
1266 else if (ptr_reasonably_similar (to_pointee, from_pointee))
1268 conv = build_conv (ck_ptr, to, conv);
1269 conv->bad_p = true;
1271 else
1272 return NULL;
1274 from = to;
1276 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
1278 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
1279 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
1280 tree fbase = class_of_this_parm (fromfn);
1281 tree tbase = class_of_this_parm (tofn);
1283 if (!DERIVED_FROM_P (fbase, tbase)
1284 || !same_type_p (static_fn_type (fromfn),
1285 static_fn_type (tofn)))
1286 return NULL;
1288 from = build_memfn_type (fromfn,
1289 tbase,
1290 cp_type_quals (tbase),
1291 type_memfn_rqual (tofn));
1292 from = build_ptrmemfunc_type (build_pointer_type (from));
1293 conv = build_conv (ck_pmem, from, conv);
1294 conv->base_p = true;
1296 else if (tcode == BOOLEAN_TYPE)
1298 /* [conv.bool]
1300 An rvalue of arithmetic, unscoped enumeration, pointer, or
1301 pointer to member type can be converted to an rvalue of type
1302 bool. ... An rvalue of type std::nullptr_t can be converted
1303 to an rvalue of type bool; */
1304 if (ARITHMETIC_TYPE_P (from)
1305 || UNSCOPED_ENUM_P (from)
1306 || fcode == POINTER_TYPE
1307 || TYPE_PTRMEM_P (from)
1308 || NULLPTR_TYPE_P (from))
1310 conv = build_conv (ck_std, to, conv);
1311 if (fcode == POINTER_TYPE
1312 || TYPE_PTRDATAMEM_P (from)
1313 || (TYPE_PTRMEMFUNC_P (from)
1314 && conv->rank < cr_pbool)
1315 || NULLPTR_TYPE_P (from))
1316 conv->rank = cr_pbool;
1317 return conv;
1320 return NULL;
1322 /* We don't check for ENUMERAL_TYPE here because there are no standard
1323 conversions to enum type. */
1324 /* As an extension, allow conversion to complex type. */
1325 else if (ARITHMETIC_TYPE_P (to))
1327 if (! (INTEGRAL_CODE_P (fcode)
1328 || (fcode == REAL_TYPE && !(flags & LOOKUP_NO_NON_INTEGRAL)))
1329 || SCOPED_ENUM_P (from))
1330 return NULL;
1331 conv = build_conv (ck_std, to, conv);
1333 /* Give this a better rank if it's a promotion. */
1334 if (same_type_p (to, type_promotes_to (from))
1335 && next_conversion (conv)->rank <= cr_promotion)
1336 conv->rank = cr_promotion;
1338 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
1339 && vector_types_convertible_p (from, to, false))
1340 return build_conv (ck_std, to, conv);
1341 else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
1342 && is_properly_derived_from (from, to))
1344 if (conv->kind == ck_rvalue)
1345 conv = next_conversion (conv);
1346 conv = build_conv (ck_base, to, conv);
1347 /* The derived-to-base conversion indicates the initialization
1348 of a parameter with base type from an object of a derived
1349 type. A temporary object is created to hold the result of
1350 the conversion unless we're binding directly to a reference. */
1351 conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
1353 else
1354 return NULL;
1356 if (flags & LOOKUP_NO_NARROWING)
1357 conv->check_narrowing = true;
1359 return conv;
1362 /* Returns nonzero if T1 is reference-related to T2. */
1364 bool
1365 reference_related_p (tree t1, tree t2)
1367 if (t1 == error_mark_node || t2 == error_mark_node)
1368 return false;
1370 t1 = TYPE_MAIN_VARIANT (t1);
1371 t2 = TYPE_MAIN_VARIANT (t2);
1373 /* [dcl.init.ref]
1375 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1376 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
1377 of T2. */
1378 return (same_type_p (t1, t2)
1379 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
1380 && DERIVED_FROM_P (t1, t2)));
1383 /* Returns nonzero if T1 is reference-compatible with T2. */
1385 static bool
1386 reference_compatible_p (tree t1, tree t2)
1388 /* [dcl.init.ref]
1390 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
1391 reference-related to T2 and cv1 is the same cv-qualification as,
1392 or greater cv-qualification than, cv2. */
1393 return (reference_related_p (t1, t2)
1394 && at_least_as_qualified_p (t1, t2));
1397 /* A reference of the indicated TYPE is being bound directly to the
1398 expression represented by the implicit conversion sequence CONV.
1399 Return a conversion sequence for this binding. */
1401 static conversion *
1402 direct_reference_binding (tree type, conversion *conv)
1404 tree t;
1406 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
1407 gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
1409 t = TREE_TYPE (type);
1411 /* [over.ics.rank]
1413 When a parameter of reference type binds directly
1414 (_dcl.init.ref_) to an argument expression, the implicit
1415 conversion sequence is the identity conversion, unless the
1416 argument expression has a type that is a derived class of the
1417 parameter type, in which case the implicit conversion sequence is
1418 a derived-to-base Conversion.
1420 If the parameter binds directly to the result of applying a
1421 conversion function to the argument expression, the implicit
1422 conversion sequence is a user-defined conversion sequence
1423 (_over.ics.user_), with the second standard conversion sequence
1424 either an identity conversion or, if the conversion function
1425 returns an entity of a type that is a derived class of the
1426 parameter type, a derived-to-base conversion. */
1427 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
1429 /* Represent the derived-to-base conversion. */
1430 conv = build_conv (ck_base, t, conv);
1431 /* We will actually be binding to the base-class subobject in
1432 the derived class, so we mark this conversion appropriately.
1433 That way, convert_like knows not to generate a temporary. */
1434 conv->need_temporary_p = false;
1436 return build_conv (ck_ref_bind, type, conv);
1439 /* Returns the conversion path from type FROM to reference type TO for
1440 purposes of reference binding. For lvalue binding, either pass a
1441 reference type to FROM or an lvalue expression to EXPR. If the
1442 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1443 the conversion returned. If C_CAST_P is true, this
1444 conversion is coming from a C-style cast. */
1446 static conversion *
1447 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags,
1448 tsubst_flags_t complain)
1450 conversion *conv = NULL;
1451 tree to = TREE_TYPE (rto);
1452 tree from = rfrom;
1453 tree tfrom;
1454 bool related_p;
1455 bool compatible_p;
1456 cp_lvalue_kind gl_kind;
1457 bool is_lvalue;
1459 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1461 expr = instantiate_type (to, expr, tf_none);
1462 if (expr == error_mark_node)
1463 return NULL;
1464 from = TREE_TYPE (expr);
1467 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1469 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
1470 /* DR 1288: Otherwise, if the initializer list has a single element
1471 of type E and ... [T's] referenced type is reference-related to E,
1472 the object or reference is initialized from that element... */
1473 if (CONSTRUCTOR_NELTS (expr) == 1)
1475 tree elt = CONSTRUCTOR_ELT (expr, 0)->value;
1476 if (error_operand_p (elt))
1477 return NULL;
1478 tree etype = TREE_TYPE (elt);
1479 if (reference_related_p (to, etype))
1481 expr = elt;
1482 from = etype;
1483 goto skip;
1486 /* Otherwise, if T is a reference type, a prvalue temporary of the
1487 type referenced by T is copy-list-initialized or
1488 direct-list-initialized, depending on the kind of initialization
1489 for the reference, and the reference is bound to that temporary. */
1490 conv = implicit_conversion (to, from, expr, c_cast_p,
1491 flags|LOOKUP_NO_TEMP_BIND, complain);
1492 skip:;
1495 if (TREE_CODE (from) == REFERENCE_TYPE)
1497 from = TREE_TYPE (from);
1498 if (!TYPE_REF_IS_RVALUE (rfrom)
1499 || TREE_CODE (from) == FUNCTION_TYPE)
1500 gl_kind = clk_ordinary;
1501 else
1502 gl_kind = clk_rvalueref;
1504 else if (expr)
1506 gl_kind = lvalue_kind (expr);
1507 if (gl_kind & clk_class)
1508 /* A class prvalue is not a glvalue. */
1509 gl_kind = clk_none;
1511 else
1512 gl_kind = clk_none;
1513 is_lvalue = gl_kind && !(gl_kind & clk_rvalueref);
1515 tfrom = from;
1516 if ((gl_kind & clk_bitfield) != 0)
1517 tfrom = unlowered_expr_type (expr);
1519 /* Figure out whether or not the types are reference-related and
1520 reference compatible. We have do do this after stripping
1521 references from FROM. */
1522 related_p = reference_related_p (to, tfrom);
1523 /* If this is a C cast, first convert to an appropriately qualified
1524 type, so that we can later do a const_cast to the desired type. */
1525 if (related_p && c_cast_p
1526 && !at_least_as_qualified_p (to, tfrom))
1527 to = cp_build_qualified_type (to, cp_type_quals (tfrom));
1528 compatible_p = reference_compatible_p (to, tfrom);
1530 /* Directly bind reference when target expression's type is compatible with
1531 the reference and expression is an lvalue. In DR391, the wording in
1532 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1533 const and rvalue references to rvalues of compatible class type.
1534 We should also do direct bindings for non-class xvalues. */
1535 if (compatible_p
1536 && (is_lvalue
1537 || (((CP_TYPE_CONST_NON_VOLATILE_P (to)
1538 && !(flags & LOOKUP_NO_RVAL_BIND))
1539 || TYPE_REF_IS_RVALUE (rto))
1540 && (gl_kind
1541 || (!(flags & LOOKUP_NO_TEMP_BIND)
1542 && (CLASS_TYPE_P (from)
1543 || TREE_CODE (from) == ARRAY_TYPE))))))
1545 /* [dcl.init.ref]
1547 If the initializer expression
1549 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1550 is reference-compatible with "cv2 T2,"
1552 the reference is bound directly to the initializer expression
1553 lvalue.
1555 [...]
1556 If the initializer expression is an rvalue, with T2 a class type,
1557 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1558 is bound to the object represented by the rvalue or to a sub-object
1559 within that object. */
1561 conv = build_identity_conv (tfrom, expr);
1562 conv = direct_reference_binding (rto, conv);
1564 if (flags & LOOKUP_PREFER_RVALUE)
1565 /* The top-level caller requested that we pretend that the lvalue
1566 be treated as an rvalue. */
1567 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1568 else if (TREE_CODE (rfrom) == REFERENCE_TYPE)
1569 /* Handle rvalue reference to function properly. */
1570 conv->rvaluedness_matches_p
1571 = (TYPE_REF_IS_RVALUE (rto) == TYPE_REF_IS_RVALUE (rfrom));
1572 else
1573 conv->rvaluedness_matches_p
1574 = (TYPE_REF_IS_RVALUE (rto) == !is_lvalue);
1576 if ((gl_kind & clk_bitfield) != 0
1577 || ((gl_kind & clk_packed) != 0 && !TYPE_PACKED (to)))
1578 /* For the purposes of overload resolution, we ignore the fact
1579 this expression is a bitfield or packed field. (In particular,
1580 [over.ics.ref] says specifically that a function with a
1581 non-const reference parameter is viable even if the
1582 argument is a bitfield.)
1584 However, when we actually call the function we must create
1585 a temporary to which to bind the reference. If the
1586 reference is volatile, or isn't const, then we cannot make
1587 a temporary, so we just issue an error when the conversion
1588 actually occurs. */
1589 conv->need_temporary_p = true;
1591 /* Don't allow binding of lvalues (other than function lvalues) to
1592 rvalue references. */
1593 if (is_lvalue && TYPE_REF_IS_RVALUE (rto)
1594 && TREE_CODE (to) != FUNCTION_TYPE
1595 && !(flags & LOOKUP_PREFER_RVALUE))
1596 conv->bad_p = true;
1598 return conv;
1600 /* [class.conv.fct] A conversion function is never used to convert a
1601 (possibly cv-qualified) object to the (possibly cv-qualified) same
1602 object type (or a reference to it), to a (possibly cv-qualified) base
1603 class of that type (or a reference to it).... */
1604 else if (CLASS_TYPE_P (from) && !related_p
1605 && !(flags & LOOKUP_NO_CONVERSION))
1607 /* [dcl.init.ref]
1609 If the initializer expression
1611 -- has a class type (i.e., T2 is a class type) can be
1612 implicitly converted to an lvalue of type "cv3 T3," where
1613 "cv1 T1" is reference-compatible with "cv3 T3". (this
1614 conversion is selected by enumerating the applicable
1615 conversion functions (_over.match.ref_) and choosing the
1616 best one through overload resolution. (_over.match_).
1618 the reference is bound to the lvalue result of the conversion
1619 in the second case. */
1620 z_candidate *cand = build_user_type_conversion_1 (rto, expr, flags,
1621 complain);
1622 if (cand)
1623 return cand->second_conv;
1626 /* From this point on, we conceptually need temporaries, even if we
1627 elide them. Only the cases above are "direct bindings". */
1628 if (flags & LOOKUP_NO_TEMP_BIND)
1629 return NULL;
1631 /* [over.ics.rank]
1633 When a parameter of reference type is not bound directly to an
1634 argument expression, the conversion sequence is the one required
1635 to convert the argument expression to the underlying type of the
1636 reference according to _over.best.ics_. Conceptually, this
1637 conversion sequence corresponds to copy-initializing a temporary
1638 of the underlying type with the argument expression. Any
1639 difference in top-level cv-qualification is subsumed by the
1640 initialization itself and does not constitute a conversion. */
1642 /* [dcl.init.ref]
1644 Otherwise, the reference shall be an lvalue reference to a
1645 non-volatile const type, or the reference shall be an rvalue
1646 reference. */
1647 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1648 return NULL;
1650 /* [dcl.init.ref]
1652 Otherwise, a temporary of type "cv1 T1" is created and
1653 initialized from the initializer expression using the rules for a
1654 non-reference copy initialization. If T1 is reference-related to
1655 T2, cv1 must be the same cv-qualification as, or greater
1656 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1657 if (related_p && !at_least_as_qualified_p (to, from))
1658 return NULL;
1660 /* We're generating a temporary now, but don't bind any more in the
1661 conversion (specifically, don't slice the temporary returned by a
1662 conversion operator). */
1663 flags |= LOOKUP_NO_TEMP_BIND;
1665 /* Core issue 899: When [copy-]initializing a temporary to be bound
1666 to the first parameter of a copy constructor (12.8) called with
1667 a single argument in the context of direct-initialization,
1668 explicit conversion functions are also considered.
1670 So don't set LOOKUP_ONLYCONVERTING in that case. */
1671 if (!(flags & LOOKUP_COPY_PARM))
1672 flags |= LOOKUP_ONLYCONVERTING;
1674 if (!conv)
1675 conv = implicit_conversion (to, from, expr, c_cast_p,
1676 flags, complain);
1677 if (!conv)
1678 return NULL;
1680 conv = build_conv (ck_ref_bind, rto, conv);
1681 /* This reference binding, unlike those above, requires the
1682 creation of a temporary. */
1683 conv->need_temporary_p = true;
1684 if (TYPE_REF_IS_RVALUE (rto))
1686 conv->rvaluedness_matches_p = 1;
1687 /* In the second case, if the reference is an rvalue reference and
1688 the second standard conversion sequence of the user-defined
1689 conversion sequence includes an lvalue-to-rvalue conversion, the
1690 program is ill-formed. */
1691 if (conv->user_conv_p && next_conversion (conv)->kind == ck_rvalue)
1692 conv->bad_p = 1;
1695 return conv;
1698 /* Returns the implicit conversion sequence (see [over.ics]) from type
1699 FROM to type TO. The optional expression EXPR may affect the
1700 conversion. FLAGS are the usual overloading flags. If C_CAST_P is
1701 true, this conversion is coming from a C-style cast. */
1703 static conversion *
1704 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1705 int flags, tsubst_flags_t complain)
1707 conversion *conv;
1709 if (from == error_mark_node || to == error_mark_node
1710 || expr == error_mark_node)
1711 return NULL;
1713 /* Other flags only apply to the primary function in overload
1714 resolution, or after we've chosen one. */
1715 flags &= (LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION|LOOKUP_COPY_PARM
1716 |LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND|LOOKUP_PREFER_RVALUE
1717 |LOOKUP_NO_NARROWING|LOOKUP_PROTECT|LOOKUP_NO_NON_INTEGRAL);
1719 /* FIXME: actually we don't want warnings either, but we can't just
1720 have 'complain &= ~(tf_warning|tf_error)' because it would cause
1721 the regression of, eg, g++.old-deja/g++.benjamin/16077.C.
1722 We really ought not to issue that warning until we've committed
1723 to that conversion. */
1724 complain &= ~tf_error;
1726 if (TREE_CODE (to) == REFERENCE_TYPE)
1727 conv = reference_binding (to, from, expr, c_cast_p, flags, complain);
1728 else
1729 conv = standard_conversion (to, from, expr, c_cast_p, flags);
1731 if (conv)
1732 return conv;
1734 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1736 if (is_std_init_list (to))
1737 return build_list_conv (to, expr, flags, complain);
1739 /* As an extension, allow list-initialization of _Complex. */
1740 if (TREE_CODE (to) == COMPLEX_TYPE)
1742 conv = build_complex_conv (to, expr, flags, complain);
1743 if (conv)
1744 return conv;
1747 /* Allow conversion from an initializer-list with one element to a
1748 scalar type. */
1749 if (SCALAR_TYPE_P (to))
1751 int nelts = CONSTRUCTOR_NELTS (expr);
1752 tree elt;
1754 if (nelts == 0)
1755 elt = build_value_init (to, tf_none);
1756 else if (nelts == 1)
1757 elt = CONSTRUCTOR_ELT (expr, 0)->value;
1758 else
1759 elt = error_mark_node;
1761 conv = implicit_conversion (to, TREE_TYPE (elt), elt,
1762 c_cast_p, flags, complain);
1763 if (conv)
1765 conv->check_narrowing = true;
1766 if (BRACE_ENCLOSED_INITIALIZER_P (elt))
1767 /* Too many levels of braces, i.e. '{{1}}'. */
1768 conv->bad_p = true;
1769 return conv;
1772 else if (TREE_CODE (to) == ARRAY_TYPE)
1773 return build_array_conv (to, expr, flags, complain);
1776 if (expr != NULL_TREE
1777 && (MAYBE_CLASS_TYPE_P (from)
1778 || MAYBE_CLASS_TYPE_P (to))
1779 && (flags & LOOKUP_NO_CONVERSION) == 0)
1781 struct z_candidate *cand;
1783 if (CLASS_TYPE_P (to)
1784 && BRACE_ENCLOSED_INITIALIZER_P (expr)
1785 && !CLASSTYPE_NON_AGGREGATE (complete_type (to)))
1786 return build_aggr_conv (to, expr, flags, complain);
1788 cand = build_user_type_conversion_1 (to, expr, flags, complain);
1789 if (cand)
1790 conv = cand->second_conv;
1792 /* We used to try to bind a reference to a temporary here, but that
1793 is now handled after the recursive call to this function at the end
1794 of reference_binding. */
1795 return conv;
1798 return NULL;
1801 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1802 functions. ARGS will not be changed until a single candidate is
1803 selected. */
1805 static struct z_candidate *
1806 add_candidate (struct z_candidate **candidates,
1807 tree fn, tree first_arg, const vec<tree, va_gc> *args,
1808 size_t num_convs, conversion **convs,
1809 tree access_path, tree conversion_path,
1810 int viable, struct rejection_reason *reason)
1812 struct z_candidate *cand = (struct z_candidate *)
1813 conversion_obstack_alloc (sizeof (struct z_candidate));
1815 cand->fn = fn;
1816 cand->first_arg = first_arg;
1817 cand->args = args;
1818 cand->convs = convs;
1819 cand->num_convs = num_convs;
1820 cand->access_path = access_path;
1821 cand->conversion_path = conversion_path;
1822 cand->viable = viable;
1823 cand->reason = reason;
1824 cand->next = *candidates;
1825 *candidates = cand;
1827 return cand;
1830 /* Return the number of remaining arguments in the parameter list
1831 beginning with ARG. */
1833 static int
1834 remaining_arguments (tree arg)
1836 int n;
1838 for (n = 0; arg != NULL_TREE && arg != void_list_node;
1839 arg = TREE_CHAIN (arg))
1840 n++;
1842 return n;
1845 /* Create an overload candidate for the function or method FN called
1846 with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
1847 FLAGS is passed on to implicit_conversion.
1849 This does not change ARGS.
1851 CTYPE, if non-NULL, is the type we want to pretend this function
1852 comes from for purposes of overload resolution. */
1854 static struct z_candidate *
1855 add_function_candidate (struct z_candidate **candidates,
1856 tree fn, tree ctype, tree first_arg,
1857 const vec<tree, va_gc> *args, tree access_path,
1858 tree conversion_path, int flags,
1859 tsubst_flags_t complain)
1861 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1862 int i, len;
1863 conversion **convs;
1864 tree parmnode;
1865 tree orig_first_arg = first_arg;
1866 int skip;
1867 int viable = 1;
1868 struct rejection_reason *reason = NULL;
1870 /* At this point we should not see any functions which haven't been
1871 explicitly declared, except for friend functions which will have
1872 been found using argument dependent lookup. */
1873 gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
1875 /* The `this', `in_chrg' and VTT arguments to constructors are not
1876 considered in overload resolution. */
1877 if (DECL_CONSTRUCTOR_P (fn))
1879 parmlist = skip_artificial_parms_for (fn, parmlist);
1880 skip = num_artificial_parms_for (fn);
1881 if (skip > 0 && first_arg != NULL_TREE)
1883 --skip;
1884 first_arg = NULL_TREE;
1887 else
1888 skip = 0;
1890 len = vec_safe_length (args) - skip + (first_arg != NULL_TREE ? 1 : 0);
1891 convs = alloc_conversions (len);
1893 /* 13.3.2 - Viable functions [over.match.viable]
1894 First, to be a viable function, a candidate function shall have enough
1895 parameters to agree in number with the arguments in the list.
1897 We need to check this first; otherwise, checking the ICSes might cause
1898 us to produce an ill-formed template instantiation. */
1900 parmnode = parmlist;
1901 for (i = 0; i < len; ++i)
1903 if (parmnode == NULL_TREE || parmnode == void_list_node)
1904 break;
1905 parmnode = TREE_CHAIN (parmnode);
1908 if ((i < len && parmnode)
1909 || !sufficient_parms_p (parmnode))
1911 int remaining = remaining_arguments (parmnode);
1912 viable = 0;
1913 reason = arity_rejection (first_arg, i + remaining, len);
1915 /* When looking for a function from a subobject from an implicit
1916 copy/move constructor/operator=, don't consider anything that takes (a
1917 reference to) an unrelated type. See c++/44909 and core 1092. */
1918 else if (parmlist && (flags & LOOKUP_DEFAULTED))
1920 if (DECL_CONSTRUCTOR_P (fn))
1921 i = 1;
1922 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
1923 && DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR)
1924 i = 2;
1925 else
1926 i = 0;
1927 if (i && len == i)
1929 parmnode = chain_index (i-1, parmlist);
1930 if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
1931 ctype))
1932 viable = 0;
1935 /* This only applies at the top level. */
1936 flags &= ~LOOKUP_DEFAULTED;
1939 if (! viable)
1940 goto out;
1942 /* Second, for F to be a viable function, there shall exist for each
1943 argument an implicit conversion sequence that converts that argument
1944 to the corresponding parameter of F. */
1946 parmnode = parmlist;
1948 for (i = 0; i < len; ++i)
1950 tree argtype, to_type;
1951 tree arg;
1952 conversion *t;
1953 int is_this;
1955 if (parmnode == void_list_node)
1956 break;
1958 if (i == 0 && first_arg != NULL_TREE)
1959 arg = first_arg;
1960 else
1961 arg = CONST_CAST_TREE (
1962 (*args)[i + skip - (first_arg != NULL_TREE ? 1 : 0)]);
1963 argtype = lvalue_type (arg);
1965 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1966 && ! DECL_CONSTRUCTOR_P (fn));
1968 if (parmnode)
1970 tree parmtype = TREE_VALUE (parmnode);
1971 int lflags = flags;
1973 parmnode = TREE_CHAIN (parmnode);
1975 /* The type of the implicit object parameter ('this') for
1976 overload resolution is not always the same as for the
1977 function itself; conversion functions are considered to
1978 be members of the class being converted, and functions
1979 introduced by a using-declaration are considered to be
1980 members of the class that uses them.
1982 Since build_over_call ignores the ICS for the `this'
1983 parameter, we can just change the parm type. */
1984 if (ctype && is_this)
1986 parmtype = cp_build_qualified_type
1987 (ctype, cp_type_quals (TREE_TYPE (parmtype)));
1988 if (FUNCTION_REF_QUALIFIED (TREE_TYPE (fn)))
1990 /* If the function has a ref-qualifier, the implicit
1991 object parameter has reference type. */
1992 bool rv = FUNCTION_RVALUE_QUALIFIED (TREE_TYPE (fn));
1993 parmtype = cp_build_reference_type (parmtype, rv);
1995 else
1997 parmtype = build_pointer_type (parmtype);
1998 arg = build_this (arg);
1999 argtype = lvalue_type (arg);
2003 /* Core issue 899: When [copy-]initializing a temporary to be bound
2004 to the first parameter of a copy constructor (12.8) called with
2005 a single argument in the context of direct-initialization,
2006 explicit conversion functions are also considered.
2008 So set LOOKUP_COPY_PARM to let reference_binding know that
2009 it's being called in that context. We generalize the above
2010 to handle move constructors and template constructors as well;
2011 the standardese should soon be updated similarly. */
2012 if (ctype && i == 0 && (len-skip == 1)
2013 && DECL_CONSTRUCTOR_P (fn)
2014 && parmtype != error_mark_node
2015 && (same_type_ignoring_top_level_qualifiers_p
2016 (non_reference (parmtype), ctype)))
2018 if (!(flags & LOOKUP_ONLYCONVERTING))
2019 lflags |= LOOKUP_COPY_PARM;
2020 /* We allow user-defined conversions within init-lists, but
2021 don't list-initialize the copy parm, as that would mean
2022 using two levels of braces for the same type. */
2023 if ((flags & LOOKUP_LIST_INIT_CTOR)
2024 && BRACE_ENCLOSED_INITIALIZER_P (arg))
2025 lflags |= LOOKUP_NO_CONVERSION;
2027 else
2028 lflags |= LOOKUP_ONLYCONVERTING;
2030 t = implicit_conversion (parmtype, argtype, arg,
2031 /*c_cast_p=*/false, lflags, complain);
2032 to_type = parmtype;
2034 else
2036 t = build_identity_conv (argtype, arg);
2037 t->ellipsis_p = true;
2038 to_type = argtype;
2041 if (t && is_this)
2042 t->this_p = true;
2044 convs[i] = t;
2045 if (! t)
2047 viable = 0;
2048 reason = arg_conversion_rejection (first_arg, i, argtype, to_type);
2049 break;
2052 if (t->bad_p)
2054 viable = -1;
2055 reason = bad_arg_conversion_rejection (first_arg, i, argtype, to_type);
2059 out:
2060 return add_candidate (candidates, fn, orig_first_arg, args, len, convs,
2061 access_path, conversion_path, viable, reason);
2064 /* Create an overload candidate for the conversion function FN which will
2065 be invoked for expression OBJ, producing a pointer-to-function which
2066 will in turn be called with the argument list FIRST_ARG/ARGLIST,
2067 and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
2068 passed on to implicit_conversion.
2070 Actually, we don't really care about FN; we care about the type it
2071 converts to. There may be multiple conversion functions that will
2072 convert to that type, and we rely on build_user_type_conversion_1 to
2073 choose the best one; so when we create our candidate, we record the type
2074 instead of the function. */
2076 static struct z_candidate *
2077 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
2078 tree first_arg, const vec<tree, va_gc> *arglist,
2079 tree access_path, tree conversion_path,
2080 tsubst_flags_t complain)
2082 tree totype = TREE_TYPE (TREE_TYPE (fn));
2083 int i, len, viable, flags;
2084 tree parmlist, parmnode;
2085 conversion **convs;
2086 struct rejection_reason *reason;
2088 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
2089 parmlist = TREE_TYPE (parmlist);
2090 parmlist = TYPE_ARG_TYPES (parmlist);
2092 len = vec_safe_length (arglist) + (first_arg != NULL_TREE ? 1 : 0) + 1;
2093 convs = alloc_conversions (len);
2094 parmnode = parmlist;
2095 viable = 1;
2096 flags = LOOKUP_IMPLICIT;
2097 reason = NULL;
2099 /* Don't bother looking up the same type twice. */
2100 if (*candidates && (*candidates)->fn == totype)
2101 return NULL;
2103 for (i = 0; i < len; ++i)
2105 tree arg, argtype, convert_type = NULL_TREE;
2106 conversion *t;
2108 if (i == 0)
2109 arg = obj;
2110 else if (i == 1 && first_arg != NULL_TREE)
2111 arg = first_arg;
2112 else
2113 arg = (*arglist)[i - (first_arg != NULL_TREE ? 1 : 0) - 1];
2114 argtype = lvalue_type (arg);
2116 if (i == 0)
2118 t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
2119 flags, complain);
2120 convert_type = totype;
2122 else if (parmnode == void_list_node)
2123 break;
2124 else if (parmnode)
2126 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
2127 /*c_cast_p=*/false, flags, complain);
2128 convert_type = TREE_VALUE (parmnode);
2130 else
2132 t = build_identity_conv (argtype, arg);
2133 t->ellipsis_p = true;
2134 convert_type = argtype;
2137 convs[i] = t;
2138 if (! t)
2139 break;
2141 if (t->bad_p)
2143 viable = -1;
2144 reason = bad_arg_conversion_rejection (NULL_TREE, i, argtype, convert_type);
2147 if (i == 0)
2148 continue;
2150 if (parmnode)
2151 parmnode = TREE_CHAIN (parmnode);
2154 if (i < len
2155 || ! sufficient_parms_p (parmnode))
2157 int remaining = remaining_arguments (parmnode);
2158 viable = 0;
2159 reason = arity_rejection (NULL_TREE, i + remaining, len);
2162 return add_candidate (candidates, totype, first_arg, arglist, len, convs,
2163 access_path, conversion_path, viable, reason);
2166 static void
2167 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
2168 tree type1, tree type2, tree *args, tree *argtypes,
2169 int flags, tsubst_flags_t complain)
2171 conversion *t;
2172 conversion **convs;
2173 size_t num_convs;
2174 int viable = 1, i;
2175 tree types[2];
2176 struct rejection_reason *reason = NULL;
2178 types[0] = type1;
2179 types[1] = type2;
2181 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
2182 convs = alloc_conversions (num_convs);
2184 /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2185 conversion ops are allowed. We handle that here by just checking for
2186 boolean_type_node because other operators don't ask for it. COND_EXPR
2187 also does contextual conversion to bool for the first operand, but we
2188 handle that in build_conditional_expr, and type1 here is operand 2. */
2189 if (type1 != boolean_type_node)
2190 flags |= LOOKUP_ONLYCONVERTING;
2192 for (i = 0; i < 2; ++i)
2194 if (! args[i])
2195 break;
2197 t = implicit_conversion (types[i], argtypes[i], args[i],
2198 /*c_cast_p=*/false, flags, complain);
2199 if (! t)
2201 viable = 0;
2202 /* We need something for printing the candidate. */
2203 t = build_identity_conv (types[i], NULL_TREE);
2204 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2205 types[i]);
2207 else if (t->bad_p)
2209 viable = 0;
2210 reason = bad_arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2211 types[i]);
2213 convs[i] = t;
2216 /* For COND_EXPR we rearranged the arguments; undo that now. */
2217 if (args[2])
2219 convs[2] = convs[1];
2220 convs[1] = convs[0];
2221 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2222 /*c_cast_p=*/false, flags,
2223 complain);
2224 if (t)
2225 convs[0] = t;
2226 else
2228 viable = 0;
2229 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2230 boolean_type_node);
2234 add_candidate (candidates, fnname, /*first_arg=*/NULL_TREE, /*args=*/NULL,
2235 num_convs, convs,
2236 /*access_path=*/NULL_TREE,
2237 /*conversion_path=*/NULL_TREE,
2238 viable, reason);
2241 static bool
2242 is_complete (tree t)
2244 return COMPLETE_TYPE_P (complete_type (t));
2247 /* Returns nonzero if TYPE is a promoted arithmetic type. */
2249 static bool
2250 promoted_arithmetic_type_p (tree type)
2252 /* [over.built]
2254 In this section, the term promoted integral type is used to refer
2255 to those integral types which are preserved by integral promotion
2256 (including e.g. int and long but excluding e.g. char).
2257 Similarly, the term promoted arithmetic type refers to promoted
2258 integral types plus floating types. */
2259 return ((CP_INTEGRAL_TYPE_P (type)
2260 && same_type_p (type_promotes_to (type), type))
2261 || TREE_CODE (type) == REAL_TYPE);
2264 /* Create any builtin operator overload candidates for the operator in
2265 question given the converted operand types TYPE1 and TYPE2. The other
2266 args are passed through from add_builtin_candidates to
2267 build_builtin_candidate.
2269 TYPE1 and TYPE2 may not be permissible, and we must filter them.
2270 If CODE is requires candidates operands of the same type of the kind
2271 of which TYPE1 and TYPE2 are, we add both candidates
2272 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
2274 static void
2275 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
2276 enum tree_code code2, tree fnname, tree type1,
2277 tree type2, tree *args, tree *argtypes, int flags,
2278 tsubst_flags_t complain)
2280 switch (code)
2282 case POSTINCREMENT_EXPR:
2283 case POSTDECREMENT_EXPR:
2284 args[1] = integer_zero_node;
2285 type2 = integer_type_node;
2286 break;
2287 default:
2288 break;
2291 switch (code)
2294 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2295 and VQ is either volatile or empty, there exist candidate operator
2296 functions of the form
2297 VQ T& operator++(VQ T&);
2298 T operator++(VQ T&, int);
2299 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
2300 type other than bool, and VQ is either volatile or empty, there exist
2301 candidate operator functions of the form
2302 VQ T& operator--(VQ T&);
2303 T operator--(VQ T&, int);
2304 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
2305 complete object type, and VQ is either volatile or empty, there exist
2306 candidate operator functions of the form
2307 T*VQ& operator++(T*VQ&);
2308 T*VQ& operator--(T*VQ&);
2309 T* operator++(T*VQ&, int);
2310 T* operator--(T*VQ&, int); */
2312 case POSTDECREMENT_EXPR:
2313 case PREDECREMENT_EXPR:
2314 if (TREE_CODE (type1) == BOOLEAN_TYPE)
2315 return;
2316 case POSTINCREMENT_EXPR:
2317 case PREINCREMENT_EXPR:
2318 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
2320 type1 = build_reference_type (type1);
2321 break;
2323 return;
2325 /* 7 For every cv-qualified or cv-unqualified object type T, there
2326 exist candidate operator functions of the form
2328 T& operator*(T*);
2330 8 For every function type T, there exist candidate operator functions of
2331 the form
2332 T& operator*(T*); */
2334 case INDIRECT_REF:
2335 if (TYPE_PTR_P (type1)
2336 && (TYPE_PTROB_P (type1)
2337 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
2338 break;
2339 return;
2341 /* 9 For every type T, there exist candidate operator functions of the form
2342 T* operator+(T*);
2344 10For every promoted arithmetic type T, there exist candidate operator
2345 functions of the form
2346 T operator+(T);
2347 T operator-(T); */
2349 case UNARY_PLUS_EXPR: /* unary + */
2350 if (TYPE_PTR_P (type1))
2351 break;
2352 case NEGATE_EXPR:
2353 if (ARITHMETIC_TYPE_P (type1))
2354 break;
2355 return;
2357 /* 11For every promoted integral type T, there exist candidate operator
2358 functions of the form
2359 T operator~(T); */
2361 case BIT_NOT_EXPR:
2362 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1))
2363 break;
2364 return;
2366 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
2367 is the same type as C2 or is a derived class of C2, T is a complete
2368 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
2369 there exist candidate operator functions of the form
2370 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2371 where CV12 is the union of CV1 and CV2. */
2373 case MEMBER_REF:
2374 if (TYPE_PTR_P (type1) && TYPE_PTRMEM_P (type2))
2376 tree c1 = TREE_TYPE (type1);
2377 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
2379 if (MAYBE_CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
2380 && (TYPE_PTRMEMFUNC_P (type2)
2381 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
2382 break;
2384 return;
2386 /* 13For every pair of promoted arithmetic types L and R, there exist can-
2387 didate operator functions of the form
2388 LR operator*(L, R);
2389 LR operator/(L, R);
2390 LR operator+(L, R);
2391 LR operator-(L, R);
2392 bool operator<(L, R);
2393 bool operator>(L, R);
2394 bool operator<=(L, R);
2395 bool operator>=(L, R);
2396 bool operator==(L, R);
2397 bool operator!=(L, R);
2398 where LR is the result of the usual arithmetic conversions between
2399 types L and R.
2401 14For every pair of types T and I, where T is a cv-qualified or cv-
2402 unqualified complete object type and I is a promoted integral type,
2403 there exist candidate operator functions of the form
2404 T* operator+(T*, I);
2405 T& operator[](T*, I);
2406 T* operator-(T*, I);
2407 T* operator+(I, T*);
2408 T& operator[](I, T*);
2410 15For every T, where T is a pointer to complete object type, there exist
2411 candidate operator functions of the form112)
2412 ptrdiff_t operator-(T, T);
2414 16For every pointer or enumeration type T, there exist candidate operator
2415 functions of the form
2416 bool operator<(T, T);
2417 bool operator>(T, T);
2418 bool operator<=(T, T);
2419 bool operator>=(T, T);
2420 bool operator==(T, T);
2421 bool operator!=(T, T);
2423 17For every pointer to member type T, there exist candidate operator
2424 functions of the form
2425 bool operator==(T, T);
2426 bool operator!=(T, T); */
2428 case MINUS_EXPR:
2429 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
2430 break;
2431 if (TYPE_PTROB_P (type1)
2432 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2434 type2 = ptrdiff_type_node;
2435 break;
2437 case MULT_EXPR:
2438 case TRUNC_DIV_EXPR:
2439 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2440 break;
2441 return;
2443 case EQ_EXPR:
2444 case NE_EXPR:
2445 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2446 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2)))
2447 break;
2448 if (TYPE_PTRMEM_P (type1) && null_ptr_cst_p (args[1]))
2450 type2 = type1;
2451 break;
2453 if (TYPE_PTRMEM_P (type2) && null_ptr_cst_p (args[0]))
2455 type1 = type2;
2456 break;
2458 /* Fall through. */
2459 case LT_EXPR:
2460 case GT_EXPR:
2461 case LE_EXPR:
2462 case GE_EXPR:
2463 case MAX_EXPR:
2464 case MIN_EXPR:
2465 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2466 break;
2467 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2468 break;
2469 if (TREE_CODE (type1) == ENUMERAL_TYPE
2470 && TREE_CODE (type2) == ENUMERAL_TYPE)
2471 break;
2472 if (TYPE_PTR_P (type1)
2473 && null_ptr_cst_p (args[1]))
2475 type2 = type1;
2476 break;
2478 if (null_ptr_cst_p (args[0])
2479 && TYPE_PTR_P (type2))
2481 type1 = type2;
2482 break;
2484 return;
2486 case PLUS_EXPR:
2487 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2488 break;
2489 case ARRAY_REF:
2490 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && TYPE_PTROB_P (type2))
2492 type1 = ptrdiff_type_node;
2493 break;
2495 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2497 type2 = ptrdiff_type_node;
2498 break;
2500 return;
2502 /* 18For every pair of promoted integral types L and R, there exist candi-
2503 date operator functions of the form
2504 LR operator%(L, R);
2505 LR operator&(L, R);
2506 LR operator^(L, R);
2507 LR operator|(L, R);
2508 L operator<<(L, R);
2509 L operator>>(L, R);
2510 where LR is the result of the usual arithmetic conversions between
2511 types L and R. */
2513 case TRUNC_MOD_EXPR:
2514 case BIT_AND_EXPR:
2515 case BIT_IOR_EXPR:
2516 case BIT_XOR_EXPR:
2517 case LSHIFT_EXPR:
2518 case RSHIFT_EXPR:
2519 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2520 break;
2521 return;
2523 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
2524 type, VQ is either volatile or empty, and R is a promoted arithmetic
2525 type, there exist candidate operator functions of the form
2526 VQ L& operator=(VQ L&, R);
2527 VQ L& operator*=(VQ L&, R);
2528 VQ L& operator/=(VQ L&, R);
2529 VQ L& operator+=(VQ L&, R);
2530 VQ L& operator-=(VQ L&, R);
2532 20For every pair T, VQ), where T is any type and VQ is either volatile
2533 or empty, there exist candidate operator functions of the form
2534 T*VQ& operator=(T*VQ&, T*);
2536 21For every pair T, VQ), where T is a pointer to member type and VQ is
2537 either volatile or empty, there exist candidate operator functions of
2538 the form
2539 VQ T& operator=(VQ T&, T);
2541 22For every triple T, VQ, I), where T is a cv-qualified or cv-
2542 unqualified complete object type, VQ is either volatile or empty, and
2543 I is a promoted integral type, there exist candidate operator func-
2544 tions of the form
2545 T*VQ& operator+=(T*VQ&, I);
2546 T*VQ& operator-=(T*VQ&, I);
2548 23For every triple L, VQ, R), where L is an integral or enumeration
2549 type, VQ is either volatile or empty, and R is a promoted integral
2550 type, there exist candidate operator functions of the form
2552 VQ L& operator%=(VQ L&, R);
2553 VQ L& operator<<=(VQ L&, R);
2554 VQ L& operator>>=(VQ L&, R);
2555 VQ L& operator&=(VQ L&, R);
2556 VQ L& operator^=(VQ L&, R);
2557 VQ L& operator|=(VQ L&, R); */
2559 case MODIFY_EXPR:
2560 switch (code2)
2562 case PLUS_EXPR:
2563 case MINUS_EXPR:
2564 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2566 type2 = ptrdiff_type_node;
2567 break;
2569 case MULT_EXPR:
2570 case TRUNC_DIV_EXPR:
2571 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2572 break;
2573 return;
2575 case TRUNC_MOD_EXPR:
2576 case BIT_AND_EXPR:
2577 case BIT_IOR_EXPR:
2578 case BIT_XOR_EXPR:
2579 case LSHIFT_EXPR:
2580 case RSHIFT_EXPR:
2581 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2582 break;
2583 return;
2585 case NOP_EXPR:
2586 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2587 break;
2588 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2589 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2590 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2591 || ((TYPE_PTRMEMFUNC_P (type1)
2592 || TYPE_PTR_P (type1))
2593 && null_ptr_cst_p (args[1])))
2595 type2 = type1;
2596 break;
2598 return;
2600 default:
2601 gcc_unreachable ();
2603 type1 = build_reference_type (type1);
2604 break;
2606 case COND_EXPR:
2607 /* [over.built]
2609 For every pair of promoted arithmetic types L and R, there
2610 exist candidate operator functions of the form
2612 LR operator?(bool, L, R);
2614 where LR is the result of the usual arithmetic conversions
2615 between types L and R.
2617 For every type T, where T is a pointer or pointer-to-member
2618 type, there exist candidate operator functions of the form T
2619 operator?(bool, T, T); */
2621 if (promoted_arithmetic_type_p (type1)
2622 && promoted_arithmetic_type_p (type2))
2623 /* That's OK. */
2624 break;
2626 /* Otherwise, the types should be pointers. */
2627 if (!TYPE_PTR_OR_PTRMEM_P (type1) || !TYPE_PTR_OR_PTRMEM_P (type2))
2628 return;
2630 /* We don't check that the two types are the same; the logic
2631 below will actually create two candidates; one in which both
2632 parameter types are TYPE1, and one in which both parameter
2633 types are TYPE2. */
2634 break;
2636 case REALPART_EXPR:
2637 case IMAGPART_EXPR:
2638 if (ARITHMETIC_TYPE_P (type1))
2639 break;
2640 return;
2642 default:
2643 gcc_unreachable ();
2646 /* Make sure we don't create builtin candidates with dependent types. */
2647 bool u1 = uses_template_parms (type1);
2648 bool u2 = type2 ? uses_template_parms (type2) : false;
2649 if (u1 || u2)
2651 /* Try to recover if one of the types is non-dependent. But if
2652 there's only one type, there's nothing we can do. */
2653 if (!type2)
2654 return;
2655 /* And we lose if both are dependent. */
2656 if (u1 && u2)
2657 return;
2658 /* Or if they have different forms. */
2659 if (TREE_CODE (type1) != TREE_CODE (type2))
2660 return;
2662 if (u1 && !u2)
2663 type1 = type2;
2664 else if (u2 && !u1)
2665 type2 = type1;
2668 /* If we're dealing with two pointer types or two enumeral types,
2669 we need candidates for both of them. */
2670 if (type2 && !same_type_p (type1, type2)
2671 && TREE_CODE (type1) == TREE_CODE (type2)
2672 && (TREE_CODE (type1) == REFERENCE_TYPE
2673 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2674 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2675 || TYPE_PTRMEMFUNC_P (type1)
2676 || MAYBE_CLASS_TYPE_P (type1)
2677 || TREE_CODE (type1) == ENUMERAL_TYPE))
2679 if (TYPE_PTR_OR_PTRMEM_P (type1))
2681 tree cptype = composite_pointer_type (type1, type2,
2682 error_mark_node,
2683 error_mark_node,
2684 CPO_CONVERSION,
2685 tf_none);
2686 if (cptype != error_mark_node)
2688 build_builtin_candidate
2689 (candidates, fnname, cptype, cptype, args, argtypes,
2690 flags, complain);
2691 return;
2695 build_builtin_candidate
2696 (candidates, fnname, type1, type1, args, argtypes, flags, complain);
2697 build_builtin_candidate
2698 (candidates, fnname, type2, type2, args, argtypes, flags, complain);
2699 return;
2702 build_builtin_candidate
2703 (candidates, fnname, type1, type2, args, argtypes, flags, complain);
2706 tree
2707 type_decays_to (tree type)
2709 if (TREE_CODE (type) == ARRAY_TYPE)
2710 return build_pointer_type (TREE_TYPE (type));
2711 if (TREE_CODE (type) == FUNCTION_TYPE)
2712 return build_pointer_type (type);
2713 return type;
2716 /* There are three conditions of builtin candidates:
2718 1) bool-taking candidates. These are the same regardless of the input.
2719 2) pointer-pair taking candidates. These are generated for each type
2720 one of the input types converts to.
2721 3) arithmetic candidates. According to the standard, we should generate
2722 all of these, but I'm trying not to...
2724 Here we generate a superset of the possible candidates for this particular
2725 case. That is a subset of the full set the standard defines, plus some
2726 other cases which the standard disallows. add_builtin_candidate will
2727 filter out the invalid set. */
2729 static void
2730 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2731 enum tree_code code2, tree fnname, tree *args,
2732 int flags, tsubst_flags_t complain)
2734 int ref1, i;
2735 int enum_p = 0;
2736 tree type, argtypes[3], t;
2737 /* TYPES[i] is the set of possible builtin-operator parameter types
2738 we will consider for the Ith argument. */
2739 vec<tree, va_gc> *types[2];
2740 unsigned ix;
2742 for (i = 0; i < 3; ++i)
2744 if (args[i])
2745 argtypes[i] = unlowered_expr_type (args[i]);
2746 else
2747 argtypes[i] = NULL_TREE;
2750 switch (code)
2752 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2753 and VQ is either volatile or empty, there exist candidate operator
2754 functions of the form
2755 VQ T& operator++(VQ T&); */
2757 case POSTINCREMENT_EXPR:
2758 case PREINCREMENT_EXPR:
2759 case POSTDECREMENT_EXPR:
2760 case PREDECREMENT_EXPR:
2761 case MODIFY_EXPR:
2762 ref1 = 1;
2763 break;
2765 /* 24There also exist candidate operator functions of the form
2766 bool operator!(bool);
2767 bool operator&&(bool, bool);
2768 bool operator||(bool, bool); */
2770 case TRUTH_NOT_EXPR:
2771 build_builtin_candidate
2772 (candidates, fnname, boolean_type_node,
2773 NULL_TREE, args, argtypes, flags, complain);
2774 return;
2776 case TRUTH_ORIF_EXPR:
2777 case TRUTH_ANDIF_EXPR:
2778 build_builtin_candidate
2779 (candidates, fnname, boolean_type_node,
2780 boolean_type_node, args, argtypes, flags, complain);
2781 return;
2783 case ADDR_EXPR:
2784 case COMPOUND_EXPR:
2785 case COMPONENT_REF:
2786 return;
2788 case COND_EXPR:
2789 case EQ_EXPR:
2790 case NE_EXPR:
2791 case LT_EXPR:
2792 case LE_EXPR:
2793 case GT_EXPR:
2794 case GE_EXPR:
2795 enum_p = 1;
2796 /* Fall through. */
2798 default:
2799 ref1 = 0;
2802 types[0] = make_tree_vector ();
2803 types[1] = make_tree_vector ();
2805 for (i = 0; i < 2; ++i)
2807 if (! args[i])
2809 else if (MAYBE_CLASS_TYPE_P (argtypes[i]))
2811 tree convs;
2813 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2814 return;
2816 convs = lookup_conversions (argtypes[i]);
2818 if (code == COND_EXPR)
2820 if (real_lvalue_p (args[i]))
2821 vec_safe_push (types[i], build_reference_type (argtypes[i]));
2823 vec_safe_push (types[i], TYPE_MAIN_VARIANT (argtypes[i]));
2826 else if (! convs)
2827 return;
2829 for (; convs; convs = TREE_CHAIN (convs))
2831 type = TREE_TYPE (convs);
2833 if (i == 0 && ref1
2834 && (TREE_CODE (type) != REFERENCE_TYPE
2835 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2836 continue;
2838 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2839 vec_safe_push (types[i], type);
2841 type = non_reference (type);
2842 if (i != 0 || ! ref1)
2844 type = cv_unqualified (type_decays_to (type));
2845 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2846 vec_safe_push (types[i], type);
2847 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2848 type = type_promotes_to (type);
2851 if (! vec_member (type, types[i]))
2852 vec_safe_push (types[i], type);
2855 else
2857 if (code == COND_EXPR && real_lvalue_p (args[i]))
2858 vec_safe_push (types[i], build_reference_type (argtypes[i]));
2859 type = non_reference (argtypes[i]);
2860 if (i != 0 || ! ref1)
2862 type = cv_unqualified (type_decays_to (type));
2863 if (enum_p && UNSCOPED_ENUM_P (type))
2864 vec_safe_push (types[i], type);
2865 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2866 type = type_promotes_to (type);
2868 vec_safe_push (types[i], type);
2872 /* Run through the possible parameter types of both arguments,
2873 creating candidates with those parameter types. */
2874 FOR_EACH_VEC_ELT_REVERSE (*(types[0]), ix, t)
2876 unsigned jx;
2877 tree u;
2879 if (!types[1]->is_empty ())
2880 FOR_EACH_VEC_ELT_REVERSE (*(types[1]), jx, u)
2881 add_builtin_candidate
2882 (candidates, code, code2, fnname, t,
2883 u, args, argtypes, flags, complain);
2884 else
2885 add_builtin_candidate
2886 (candidates, code, code2, fnname, t,
2887 NULL_TREE, args, argtypes, flags, complain);
2890 release_tree_vector (types[0]);
2891 release_tree_vector (types[1]);
2895 /* If TMPL can be successfully instantiated as indicated by
2896 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2898 TMPL is the template. EXPLICIT_TARGS are any explicit template
2899 arguments. ARGLIST is the arguments provided at the call-site.
2900 This does not change ARGLIST. The RETURN_TYPE is the desired type
2901 for conversion operators. If OBJ is NULL_TREE, FLAGS and CTYPE are
2902 as for add_function_candidate. If an OBJ is supplied, FLAGS and
2903 CTYPE are ignored, and OBJ is as for add_conv_candidate. */
2905 static struct z_candidate*
2906 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2907 tree ctype, tree explicit_targs, tree first_arg,
2908 const vec<tree, va_gc> *arglist, tree return_type,
2909 tree access_path, tree conversion_path,
2910 int flags, tree obj, unification_kind_t strict,
2911 tsubst_flags_t complain)
2913 int ntparms = DECL_NTPARMS (tmpl);
2914 tree targs = make_tree_vec (ntparms);
2915 unsigned int len = vec_safe_length (arglist);
2916 unsigned int nargs = (first_arg == NULL_TREE ? 0 : 1) + len;
2917 unsigned int skip_without_in_chrg = 0;
2918 tree first_arg_without_in_chrg = first_arg;
2919 tree *args_without_in_chrg;
2920 unsigned int nargs_without_in_chrg;
2921 unsigned int ia, ix;
2922 tree arg;
2923 struct z_candidate *cand;
2924 tree fn;
2925 struct rejection_reason *reason = NULL;
2926 int errs;
2928 /* We don't do deduction on the in-charge parameter, the VTT
2929 parameter or 'this'. */
2930 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2932 if (first_arg_without_in_chrg != NULL_TREE)
2933 first_arg_without_in_chrg = NULL_TREE;
2934 else
2935 ++skip_without_in_chrg;
2938 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
2939 || DECL_BASE_CONSTRUCTOR_P (tmpl))
2940 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
2942 if (first_arg_without_in_chrg != NULL_TREE)
2943 first_arg_without_in_chrg = NULL_TREE;
2944 else
2945 ++skip_without_in_chrg;
2948 if (len < skip_without_in_chrg)
2949 return NULL;
2951 nargs_without_in_chrg = ((first_arg_without_in_chrg != NULL_TREE ? 1 : 0)
2952 + (len - skip_without_in_chrg));
2953 args_without_in_chrg = XALLOCAVEC (tree, nargs_without_in_chrg);
2954 ia = 0;
2955 if (first_arg_without_in_chrg != NULL_TREE)
2957 args_without_in_chrg[ia] = first_arg_without_in_chrg;
2958 ++ia;
2960 for (ix = skip_without_in_chrg;
2961 vec_safe_iterate (arglist, ix, &arg);
2962 ++ix)
2964 args_without_in_chrg[ia] = arg;
2965 ++ia;
2967 gcc_assert (ia == nargs_without_in_chrg);
2969 errs = errorcount+sorrycount;
2970 fn = fn_type_unification (tmpl, explicit_targs, targs,
2971 args_without_in_chrg,
2972 nargs_without_in_chrg,
2973 return_type, strict, flags, false,
2974 complain & tf_decltype);
2976 if (fn == error_mark_node)
2978 /* Don't repeat unification later if it already resulted in errors. */
2979 if (errorcount+sorrycount == errs)
2980 reason = template_unification_rejection (tmpl, explicit_targs,
2981 targs, args_without_in_chrg,
2982 nargs_without_in_chrg,
2983 return_type, strict, flags);
2984 else
2985 reason = template_unification_error_rejection ();
2986 goto fail;
2989 /* In [class.copy]:
2991 A member function template is never instantiated to perform the
2992 copy of a class object to an object of its class type.
2994 It's a little unclear what this means; the standard explicitly
2995 does allow a template to be used to copy a class. For example,
2998 struct A {
2999 A(A&);
3000 template <class T> A(const T&);
3002 const A f ();
3003 void g () { A a (f ()); }
3005 the member template will be used to make the copy. The section
3006 quoted above appears in the paragraph that forbids constructors
3007 whose only parameter is (a possibly cv-qualified variant of) the
3008 class type, and a logical interpretation is that the intent was
3009 to forbid the instantiation of member templates which would then
3010 have that form. */
3011 if (DECL_CONSTRUCTOR_P (fn) && nargs == 2)
3013 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
3014 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
3015 ctype))
3017 reason = invalid_copy_with_fn_template_rejection ();
3018 goto fail;
3022 if (obj != NULL_TREE)
3023 /* Aha, this is a conversion function. */
3024 cand = add_conv_candidate (candidates, fn, obj, first_arg, arglist,
3025 access_path, conversion_path, complain);
3026 else
3027 cand = add_function_candidate (candidates, fn, ctype,
3028 first_arg, arglist, access_path,
3029 conversion_path, flags, complain);
3030 if (DECL_TI_TEMPLATE (fn) != tmpl)
3031 /* This situation can occur if a member template of a template
3032 class is specialized. Then, instantiate_template might return
3033 an instantiation of the specialization, in which case the
3034 DECL_TI_TEMPLATE field will point at the original
3035 specialization. For example:
3037 template <class T> struct S { template <class U> void f(U);
3038 template <> void f(int) {}; };
3039 S<double> sd;
3040 sd.f(3);
3042 Here, TMPL will be template <class U> S<double>::f(U).
3043 And, instantiate template will give us the specialization
3044 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
3045 for this will point at template <class T> template <> S<T>::f(int),
3046 so that we can find the definition. For the purposes of
3047 overload resolution, however, we want the original TMPL. */
3048 cand->template_decl = build_template_info (tmpl, targs);
3049 else
3050 cand->template_decl = DECL_TEMPLATE_INFO (fn);
3051 cand->explicit_targs = explicit_targs;
3053 return cand;
3054 fail:
3055 return add_candidate (candidates, tmpl, first_arg, arglist, nargs, NULL,
3056 access_path, conversion_path, 0, reason);
3060 static struct z_candidate *
3061 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
3062 tree explicit_targs, tree first_arg,
3063 const vec<tree, va_gc> *arglist, tree return_type,
3064 tree access_path, tree conversion_path, int flags,
3065 unification_kind_t strict, tsubst_flags_t complain)
3067 return
3068 add_template_candidate_real (candidates, tmpl, ctype,
3069 explicit_targs, first_arg, arglist,
3070 return_type, access_path, conversion_path,
3071 flags, NULL_TREE, strict, complain);
3075 static struct z_candidate *
3076 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
3077 tree obj, tree first_arg,
3078 const vec<tree, va_gc> *arglist,
3079 tree return_type, tree access_path,
3080 tree conversion_path, tsubst_flags_t complain)
3082 return
3083 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
3084 first_arg, arglist, return_type, access_path,
3085 conversion_path, 0, obj, DEDUCE_CONV,
3086 complain);
3089 /* The CANDS are the set of candidates that were considered for
3090 overload resolution. Return the set of viable candidates, or CANDS
3091 if none are viable. If any of the candidates were viable, set
3092 *ANY_VIABLE_P to true. STRICT_P is true if a candidate should be
3093 considered viable only if it is strictly viable. */
3095 static struct z_candidate*
3096 splice_viable (struct z_candidate *cands,
3097 bool strict_p,
3098 bool *any_viable_p)
3100 struct z_candidate *viable;
3101 struct z_candidate **last_viable;
3102 struct z_candidate **cand;
3104 /* Be strict inside templates, since build_over_call won't actually
3105 do the conversions to get pedwarns. */
3106 if (processing_template_decl)
3107 strict_p = true;
3109 viable = NULL;
3110 last_viable = &viable;
3111 *any_viable_p = false;
3113 cand = &cands;
3114 while (*cand)
3116 struct z_candidate *c = *cand;
3117 if (strict_p ? c->viable == 1 : c->viable)
3119 *last_viable = c;
3120 *cand = c->next;
3121 c->next = NULL;
3122 last_viable = &c->next;
3123 *any_viable_p = true;
3125 else
3126 cand = &c->next;
3129 return viable ? viable : cands;
3132 static bool
3133 any_strictly_viable (struct z_candidate *cands)
3135 for (; cands; cands = cands->next)
3136 if (cands->viable == 1)
3137 return true;
3138 return false;
3141 /* OBJ is being used in an expression like "OBJ.f (...)". In other
3142 words, it is about to become the "this" pointer for a member
3143 function call. Take the address of the object. */
3145 static tree
3146 build_this (tree obj)
3148 /* In a template, we are only concerned about the type of the
3149 expression, so we can take a shortcut. */
3150 if (processing_template_decl)
3151 return build_address (obj);
3153 return cp_build_addr_expr (obj, tf_warning_or_error);
3156 /* Returns true iff functions are equivalent. Equivalent functions are
3157 not '==' only if one is a function-local extern function or if
3158 both are extern "C". */
3160 static inline int
3161 equal_functions (tree fn1, tree fn2)
3163 if (TREE_CODE (fn1) != TREE_CODE (fn2))
3164 return 0;
3165 if (TREE_CODE (fn1) == TEMPLATE_DECL)
3166 return fn1 == fn2;
3167 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
3168 || DECL_EXTERN_C_FUNCTION_P (fn1))
3169 return decls_match (fn1, fn2);
3170 return fn1 == fn2;
3173 /* Print information about a candidate being rejected due to INFO. */
3175 static void
3176 print_conversion_rejection (location_t loc, struct conversion_info *info)
3178 if (info->n_arg == -1)
3179 /* Conversion of implicit `this' argument failed. */
3180 inform (loc, " no known conversion for implicit "
3181 "%<this%> parameter from %qT to %qT",
3182 info->from_type, info->to_type);
3183 else if (info->n_arg == -2)
3184 /* Conversion of conversion function return value failed. */
3185 inform (loc, " no known conversion from %qT to %qT",
3186 info->from_type, info->to_type);
3187 else
3188 inform (loc, " no known conversion for argument %d from %qT to %qT",
3189 info->n_arg+1, info->from_type, info->to_type);
3192 /* Print information about a candidate with WANT parameters and we found
3193 HAVE. */
3195 static void
3196 print_arity_information (location_t loc, unsigned int have, unsigned int want)
3198 inform_n (loc, want,
3199 " candidate expects %d argument, %d provided",
3200 " candidate expects %d arguments, %d provided",
3201 want, have);
3204 /* Print information about one overload candidate CANDIDATE. MSGSTR
3205 is the text to print before the candidate itself.
3207 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3208 to have been run through gettext by the caller. This wart makes
3209 life simpler in print_z_candidates and for the translators. */
3211 static void
3212 print_z_candidate (location_t loc, const char *msgstr,
3213 struct z_candidate *candidate)
3215 const char *msg = (msgstr == NULL
3216 ? ""
3217 : ACONCAT ((msgstr, " ", NULL)));
3218 location_t cloc = location_of (candidate->fn);
3220 if (identifier_p (candidate->fn))
3222 cloc = loc;
3223 if (candidate->num_convs == 3)
3224 inform (cloc, "%s%D(%T, %T, %T) <built-in>", msg, candidate->fn,
3225 candidate->convs[0]->type,
3226 candidate->convs[1]->type,
3227 candidate->convs[2]->type);
3228 else if (candidate->num_convs == 2)
3229 inform (cloc, "%s%D(%T, %T) <built-in>", msg, candidate->fn,
3230 candidate->convs[0]->type,
3231 candidate->convs[1]->type);
3232 else
3233 inform (cloc, "%s%D(%T) <built-in>", msg, candidate->fn,
3234 candidate->convs[0]->type);
3236 else if (TYPE_P (candidate->fn))
3237 inform (cloc, "%s%T <conversion>", msg, candidate->fn);
3238 else if (candidate->viable == -1)
3239 inform (cloc, "%s%#D <near match>", msg, candidate->fn);
3240 else if (DECL_DELETED_FN (candidate->fn))
3241 inform (cloc, "%s%#D <deleted>", msg, candidate->fn);
3242 else
3243 inform (cloc, "%s%#D", msg, candidate->fn);
3244 /* Give the user some information about why this candidate failed. */
3245 if (candidate->reason != NULL)
3247 struct rejection_reason *r = candidate->reason;
3249 switch (r->code)
3251 case rr_arity:
3252 print_arity_information (cloc, r->u.arity.actual,
3253 r->u.arity.expected);
3254 break;
3255 case rr_arg_conversion:
3256 print_conversion_rejection (cloc, &r->u.conversion);
3257 break;
3258 case rr_bad_arg_conversion:
3259 print_conversion_rejection (cloc, &r->u.bad_conversion);
3260 break;
3261 case rr_explicit_conversion:
3262 inform (cloc, " return type %qT of explicit conversion function "
3263 "cannot be converted to %qT with a qualification "
3264 "conversion", r->u.conversion.from_type,
3265 r->u.conversion.to_type);
3266 break;
3267 case rr_template_conversion:
3268 inform (cloc, " conversion from return type %qT of template "
3269 "conversion function specialization to %qT is not an "
3270 "exact match", r->u.conversion.from_type,
3271 r->u.conversion.to_type);
3272 break;
3273 case rr_template_unification:
3274 /* We use template_unification_error_rejection if unification caused
3275 actual non-SFINAE errors, in which case we don't need to repeat
3276 them here. */
3277 if (r->u.template_unification.tmpl == NULL_TREE)
3279 inform (cloc, " substitution of deduced template arguments "
3280 "resulted in errors seen above");
3281 break;
3283 /* Re-run template unification with diagnostics. */
3284 inform (cloc, " template argument deduction/substitution failed:");
3285 fn_type_unification (r->u.template_unification.tmpl,
3286 r->u.template_unification.explicit_targs,
3287 (make_tree_vec
3288 (r->u.template_unification.num_targs)),
3289 r->u.template_unification.args,
3290 r->u.template_unification.nargs,
3291 r->u.template_unification.return_type,
3292 r->u.template_unification.strict,
3293 r->u.template_unification.flags,
3294 true, false);
3295 break;
3296 case rr_invalid_copy:
3297 inform (cloc,
3298 " a constructor taking a single argument of its own "
3299 "class type is invalid");
3300 break;
3301 case rr_none:
3302 default:
3303 /* This candidate didn't have any issues or we failed to
3304 handle a particular code. Either way... */
3305 gcc_unreachable ();
3310 static void
3311 print_z_candidates (location_t loc, struct z_candidate *candidates)
3313 struct z_candidate *cand1;
3314 struct z_candidate **cand2;
3315 int n_candidates;
3317 if (!candidates)
3318 return;
3320 /* Remove non-viable deleted candidates. */
3321 cand1 = candidates;
3322 for (cand2 = &cand1; *cand2; )
3324 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
3325 && !(*cand2)->viable
3326 && DECL_DELETED_FN ((*cand2)->fn))
3327 *cand2 = (*cand2)->next;
3328 else
3329 cand2 = &(*cand2)->next;
3331 /* ...if there are any non-deleted ones. */
3332 if (cand1)
3333 candidates = cand1;
3335 /* There may be duplicates in the set of candidates. We put off
3336 checking this condition as long as possible, since we have no way
3337 to eliminate duplicates from a set of functions in less than n^2
3338 time. Now we are about to emit an error message, so it is more
3339 permissible to go slowly. */
3340 for (cand1 = candidates; cand1; cand1 = cand1->next)
3342 tree fn = cand1->fn;
3343 /* Skip builtin candidates and conversion functions. */
3344 if (!DECL_P (fn))
3345 continue;
3346 cand2 = &cand1->next;
3347 while (*cand2)
3349 if (DECL_P ((*cand2)->fn)
3350 && equal_functions (fn, (*cand2)->fn))
3351 *cand2 = (*cand2)->next;
3352 else
3353 cand2 = &(*cand2)->next;
3357 for (n_candidates = 0, cand1 = candidates; cand1; cand1 = cand1->next)
3358 n_candidates++;
3360 inform_n (loc, n_candidates, "candidate is:", "candidates are:");
3361 for (; candidates; candidates = candidates->next)
3362 print_z_candidate (loc, NULL, candidates);
3365 /* USER_SEQ is a user-defined conversion sequence, beginning with a
3366 USER_CONV. STD_SEQ is the standard conversion sequence applied to
3367 the result of the conversion function to convert it to the final
3368 desired type. Merge the two sequences into a single sequence,
3369 and return the merged sequence. */
3371 static conversion *
3372 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
3374 conversion **t;
3375 bool bad = user_seq->bad_p;
3377 gcc_assert (user_seq->kind == ck_user);
3379 /* Find the end of the second conversion sequence. */
3380 for (t = &std_seq; (*t)->kind != ck_identity; t = &((*t)->u.next))
3382 /* The entire sequence is a user-conversion sequence. */
3383 (*t)->user_conv_p = true;
3384 if (bad)
3385 (*t)->bad_p = true;
3388 /* Replace the identity conversion with the user conversion
3389 sequence. */
3390 *t = user_seq;
3392 return std_seq;
3395 /* Handle overload resolution for initializing an object of class type from
3396 an initializer list. First we look for a suitable constructor that
3397 takes a std::initializer_list; if we don't find one, we then look for a
3398 non-list constructor.
3400 Parameters are as for add_candidates, except that the arguments are in
3401 the form of a CONSTRUCTOR (the initializer list) rather than a vector, and
3402 the RETURN_TYPE parameter is replaced by TOTYPE, the desired type. */
3404 static void
3405 add_list_candidates (tree fns, tree first_arg,
3406 tree init_list, tree totype,
3407 tree explicit_targs, bool template_only,
3408 tree conversion_path, tree access_path,
3409 int flags,
3410 struct z_candidate **candidates,
3411 tsubst_flags_t complain)
3413 vec<tree, va_gc> *args;
3415 gcc_assert (*candidates == NULL);
3417 /* We're looking for a ctor for list-initialization. */
3418 flags |= LOOKUP_LIST_INIT_CTOR;
3419 /* And we don't allow narrowing conversions. We also use this flag to
3420 avoid the copy constructor call for copy-list-initialization. */
3421 flags |= LOOKUP_NO_NARROWING;
3423 /* Always use the default constructor if the list is empty (DR 990). */
3424 if (CONSTRUCTOR_NELTS (init_list) == 0
3425 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
3427 /* If the class has a list ctor, try passing the list as a single
3428 argument first, but only consider list ctors. */
3429 else if (TYPE_HAS_LIST_CTOR (totype))
3431 flags |= LOOKUP_LIST_ONLY;
3432 args = make_tree_vector_single (init_list);
3433 add_candidates (fns, first_arg, args, NULL_TREE,
3434 explicit_targs, template_only, conversion_path,
3435 access_path, flags, candidates, complain);
3436 if (any_strictly_viable (*candidates))
3437 return;
3440 args = ctor_to_vec (init_list);
3442 /* We aren't looking for list-ctors anymore. */
3443 flags &= ~LOOKUP_LIST_ONLY;
3444 /* We allow more user-defined conversions within an init-list. */
3445 flags &= ~LOOKUP_NO_CONVERSION;
3447 add_candidates (fns, first_arg, args, NULL_TREE,
3448 explicit_targs, template_only, conversion_path,
3449 access_path, flags, candidates, complain);
3452 /* Returns the best overload candidate to perform the requested
3453 conversion. This function is used for three the overloading situations
3454 described in [over.match.copy], [over.match.conv], and [over.match.ref].
3455 If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
3456 per [dcl.init.ref], so we ignore temporary bindings. */
3458 static struct z_candidate *
3459 build_user_type_conversion_1 (tree totype, tree expr, int flags,
3460 tsubst_flags_t complain)
3462 struct z_candidate *candidates, *cand;
3463 tree fromtype;
3464 tree ctors = NULL_TREE;
3465 tree conv_fns = NULL_TREE;
3466 conversion *conv = NULL;
3467 tree first_arg = NULL_TREE;
3468 vec<tree, va_gc> *args = NULL;
3469 bool any_viable_p;
3470 int convflags;
3472 if (!expr)
3473 return NULL;
3475 fromtype = TREE_TYPE (expr);
3477 /* We represent conversion within a hierarchy using RVALUE_CONV and
3478 BASE_CONV, as specified by [over.best.ics]; these become plain
3479 constructor calls, as specified in [dcl.init]. */
3480 gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
3481 || !DERIVED_FROM_P (totype, fromtype));
3483 if (MAYBE_CLASS_TYPE_P (totype))
3484 /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
3485 creating a garbage BASELINK; constructors can't be inherited. */
3486 ctors = lookup_fnfields_slot (totype, complete_ctor_identifier);
3488 if (MAYBE_CLASS_TYPE_P (fromtype))
3490 tree to_nonref = non_reference (totype);
3491 if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
3492 (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
3493 && DERIVED_FROM_P (to_nonref, fromtype)))
3495 /* [class.conv.fct] A conversion function is never used to
3496 convert a (possibly cv-qualified) object to the (possibly
3497 cv-qualified) same object type (or a reference to it), to a
3498 (possibly cv-qualified) base class of that type (or a
3499 reference to it)... */
3501 else
3502 conv_fns = lookup_conversions (fromtype);
3505 candidates = 0;
3506 flags |= LOOKUP_NO_CONVERSION;
3507 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3508 flags |= LOOKUP_NO_NARROWING;
3510 /* It's OK to bind a temporary for converting constructor arguments, but
3511 not in converting the return value of a conversion operator. */
3512 convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION);
3513 flags &= ~LOOKUP_NO_TEMP_BIND;
3515 if (ctors)
3517 int ctorflags = flags;
3519 first_arg = build_int_cst (build_pointer_type (totype), 0);
3520 first_arg = build_fold_indirect_ref (first_arg);
3522 /* We should never try to call the abstract or base constructor
3523 from here. */
3524 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
3525 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
3527 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3529 /* List-initialization. */
3530 add_list_candidates (ctors, first_arg, expr, totype, NULL_TREE,
3531 false, TYPE_BINFO (totype), TYPE_BINFO (totype),
3532 ctorflags, &candidates, complain);
3534 else
3536 args = make_tree_vector_single (expr);
3537 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
3538 TYPE_BINFO (totype), TYPE_BINFO (totype),
3539 ctorflags, &candidates, complain);
3542 for (cand = candidates; cand; cand = cand->next)
3544 cand->second_conv = build_identity_conv (totype, NULL_TREE);
3546 /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
3547 set, then this is copy-initialization. In that case, "The
3548 result of the call is then used to direct-initialize the
3549 object that is the destination of the copy-initialization."
3550 [dcl.init]
3552 We represent this in the conversion sequence with an
3553 rvalue conversion, which means a constructor call. */
3554 if (TREE_CODE (totype) != REFERENCE_TYPE
3555 && !(convflags & LOOKUP_NO_TEMP_BIND))
3556 cand->second_conv
3557 = build_conv (ck_rvalue, totype, cand->second_conv);
3561 if (conv_fns)
3562 first_arg = expr;
3564 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
3566 tree conversion_path = TREE_PURPOSE (conv_fns);
3567 struct z_candidate *old_candidates;
3569 /* If we are called to convert to a reference type, we are trying to
3570 find a direct binding, so don't even consider temporaries. If
3571 we don't find a direct binding, the caller will try again to
3572 look for a temporary binding. */
3573 if (TREE_CODE (totype) == REFERENCE_TYPE)
3574 convflags |= LOOKUP_NO_TEMP_BIND;
3576 old_candidates = candidates;
3577 add_candidates (TREE_VALUE (conv_fns), first_arg, NULL, totype,
3578 NULL_TREE, false,
3579 conversion_path, TYPE_BINFO (fromtype),
3580 flags, &candidates, complain);
3582 for (cand = candidates; cand != old_candidates; cand = cand->next)
3584 tree rettype = TREE_TYPE (TREE_TYPE (cand->fn));
3585 conversion *ics
3586 = implicit_conversion (totype,
3587 rettype,
3589 /*c_cast_p=*/false, convflags,
3590 complain);
3592 /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
3593 copy-initialization. In that case, "The result of the
3594 call is then used to direct-initialize the object that is
3595 the destination of the copy-initialization." [dcl.init]
3597 We represent this in the conversion sequence with an
3598 rvalue conversion, which means a constructor call. But
3599 don't add a second rvalue conversion if there's already
3600 one there. Which there really shouldn't be, but it's
3601 harmless since we'd add it here anyway. */
3602 if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
3603 && !(convflags & LOOKUP_NO_TEMP_BIND))
3604 ics = build_conv (ck_rvalue, totype, ics);
3606 cand->second_conv = ics;
3608 if (!ics)
3610 cand->viable = 0;
3611 cand->reason = arg_conversion_rejection (NULL_TREE, -2,
3612 rettype, totype);
3614 else if (DECL_NONCONVERTING_P (cand->fn)
3615 && ics->rank > cr_exact)
3617 /* 13.3.1.5: For direct-initialization, those explicit
3618 conversion functions that are not hidden within S and
3619 yield type T or a type that can be converted to type T
3620 with a qualification conversion (4.4) are also candidate
3621 functions. */
3622 /* 13.3.1.6 doesn't have a parallel restriction, but it should;
3623 I've raised this issue with the committee. --jason 9/2011 */
3624 cand->viable = -1;
3625 cand->reason = explicit_conversion_rejection (rettype, totype);
3627 else if (cand->viable == 1 && ics->bad_p)
3629 cand->viable = -1;
3630 cand->reason
3631 = bad_arg_conversion_rejection (NULL_TREE, -2,
3632 rettype, totype);
3634 else if (primary_template_instantiation_p (cand->fn)
3635 && ics->rank > cr_exact)
3637 /* 13.3.3.1.2: If the user-defined conversion is specified by
3638 a specialization of a conversion function template, the
3639 second standard conversion sequence shall have exact match
3640 rank. */
3641 cand->viable = -1;
3642 cand->reason = template_conversion_rejection (rettype, totype);
3647 candidates = splice_viable (candidates, pedantic, &any_viable_p);
3648 if (!any_viable_p)
3650 if (args)
3651 release_tree_vector (args);
3652 return NULL;
3655 cand = tourney (candidates, complain);
3656 if (cand == 0)
3658 if (complain & tf_error)
3660 error ("conversion from %qT to %qT is ambiguous",
3661 fromtype, totype);
3662 print_z_candidates (location_of (expr), candidates);
3665 cand = candidates; /* any one will do */
3666 cand->second_conv = build_ambiguous_conv (totype, expr);
3667 cand->second_conv->user_conv_p = true;
3668 if (!any_strictly_viable (candidates))
3669 cand->second_conv->bad_p = true;
3670 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
3671 ambiguous conversion is no worse than another user-defined
3672 conversion. */
3674 return cand;
3677 /* Build the user conversion sequence. */
3678 conv = build_conv
3679 (ck_user,
3680 (DECL_CONSTRUCTOR_P (cand->fn)
3681 ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
3682 build_identity_conv (TREE_TYPE (expr), expr));
3683 conv->cand = cand;
3684 if (cand->viable == -1)
3685 conv->bad_p = true;
3687 /* Remember that this was a list-initialization. */
3688 if (flags & LOOKUP_NO_NARROWING)
3689 conv->check_narrowing = true;
3691 /* Combine it with the second conversion sequence. */
3692 cand->second_conv = merge_conversion_sequences (conv,
3693 cand->second_conv);
3695 return cand;
3698 /* Wrapper for above. */
3700 tree
3701 build_user_type_conversion (tree totype, tree expr, int flags,
3702 tsubst_flags_t complain)
3704 struct z_candidate *cand;
3705 tree ret;
3707 bool subtime = timevar_cond_start (TV_OVERLOAD);
3708 cand = build_user_type_conversion_1 (totype, expr, flags, complain);
3710 if (cand)
3712 if (cand->second_conv->kind == ck_ambig)
3713 ret = error_mark_node;
3714 else
3716 expr = convert_like (cand->second_conv, expr, complain);
3717 ret = convert_from_reference (expr);
3720 else
3721 ret = NULL_TREE;
3723 timevar_cond_stop (TV_OVERLOAD, subtime);
3724 return ret;
3727 /* Subroutine of convert_nontype_argument.
3729 EXPR is an argument for a template non-type parameter of integral or
3730 enumeration type. Do any necessary conversions (that are permitted for
3731 non-type arguments) to convert it to the parameter type.
3733 If conversion is successful, returns the converted expression;
3734 otherwise, returns error_mark_node. */
3736 tree
3737 build_integral_nontype_arg_conv (tree type, tree expr, tsubst_flags_t complain)
3739 conversion *conv;
3740 void *p;
3741 tree t;
3742 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
3744 if (error_operand_p (expr))
3745 return error_mark_node;
3747 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
3749 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3750 p = conversion_obstack_alloc (0);
3752 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
3753 /*c_cast_p=*/false,
3754 LOOKUP_IMPLICIT, complain);
3756 /* for a non-type template-parameter of integral or
3757 enumeration type, integral promotions (4.5) and integral
3758 conversions (4.7) are applied. */
3759 /* It should be sufficient to check the outermost conversion step, since
3760 there are no qualification conversions to integer type. */
3761 if (conv)
3762 switch (conv->kind)
3764 /* A conversion function is OK. If it isn't constexpr, we'll
3765 complain later that the argument isn't constant. */
3766 case ck_user:
3767 /* The lvalue-to-rvalue conversion is OK. */
3768 case ck_rvalue:
3769 case ck_identity:
3770 break;
3772 case ck_std:
3773 t = next_conversion (conv)->type;
3774 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t))
3775 break;
3777 if (complain & tf_error)
3778 error_at (loc, "conversion from %qT to %qT not considered for "
3779 "non-type template argument", t, type);
3780 /* and fall through. */
3782 default:
3783 conv = NULL;
3784 break;
3787 if (conv)
3788 expr = convert_like (conv, expr, complain);
3789 else
3790 expr = error_mark_node;
3792 /* Free all the conversions we allocated. */
3793 obstack_free (&conversion_obstack, p);
3795 return expr;
3798 /* Do any initial processing on the arguments to a function call. */
3800 static vec<tree, va_gc> *
3801 resolve_args (vec<tree, va_gc> *args, tsubst_flags_t complain)
3803 unsigned int ix;
3804 tree arg;
3806 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
3808 if (error_operand_p (arg))
3809 return NULL;
3810 else if (VOID_TYPE_P (TREE_TYPE (arg)))
3812 if (complain & tf_error)
3813 error ("invalid use of void expression");
3814 return NULL;
3816 else if (invalid_nonstatic_memfn_p (arg, complain))
3817 return NULL;
3819 return args;
3822 /* Perform overload resolution on FN, which is called with the ARGS.
3824 Return the candidate function selected by overload resolution, or
3825 NULL if the event that overload resolution failed. In the case
3826 that overload resolution fails, *CANDIDATES will be the set of
3827 candidates considered, and ANY_VIABLE_P will be set to true or
3828 false to indicate whether or not any of the candidates were
3829 viable.
3831 The ARGS should already have gone through RESOLVE_ARGS before this
3832 function is called. */
3834 static struct z_candidate *
3835 perform_overload_resolution (tree fn,
3836 const vec<tree, va_gc> *args,
3837 struct z_candidate **candidates,
3838 bool *any_viable_p, tsubst_flags_t complain)
3840 struct z_candidate *cand;
3841 tree explicit_targs;
3842 int template_only;
3844 bool subtime = timevar_cond_start (TV_OVERLOAD);
3846 explicit_targs = NULL_TREE;
3847 template_only = 0;
3849 *candidates = NULL;
3850 *any_viable_p = true;
3852 /* Check FN. */
3853 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
3854 || TREE_CODE (fn) == TEMPLATE_DECL
3855 || TREE_CODE (fn) == OVERLOAD
3856 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
3858 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3860 explicit_targs = TREE_OPERAND (fn, 1);
3861 fn = TREE_OPERAND (fn, 0);
3862 template_only = 1;
3865 /* Add the various candidate functions. */
3866 add_candidates (fn, NULL_TREE, args, NULL_TREE,
3867 explicit_targs, template_only,
3868 /*conversion_path=*/NULL_TREE,
3869 /*access_path=*/NULL_TREE,
3870 LOOKUP_NORMAL,
3871 candidates, complain);
3873 *candidates = splice_viable (*candidates, pedantic, any_viable_p);
3874 if (*any_viable_p)
3875 cand = tourney (*candidates, complain);
3876 else
3877 cand = NULL;
3879 timevar_cond_stop (TV_OVERLOAD, subtime);
3880 return cand;
3883 /* Print an error message about being unable to build a call to FN with
3884 ARGS. ANY_VIABLE_P indicates whether any candidate functions could
3885 be located; CANDIDATES is a possibly empty list of such
3886 functions. */
3888 static void
3889 print_error_for_call_failure (tree fn, vec<tree, va_gc> *args, bool any_viable_p,
3890 struct z_candidate *candidates)
3892 tree name = DECL_NAME (OVL_CURRENT (fn));
3893 location_t loc = location_of (name);
3895 if (!any_viable_p)
3896 error_at (loc, "no matching function for call to %<%D(%A)%>",
3897 name, build_tree_list_vec (args));
3898 else
3899 error_at (loc, "call of overloaded %<%D(%A)%> is ambiguous",
3900 name, build_tree_list_vec (args));
3901 if (candidates)
3902 print_z_candidates (loc, candidates);
3905 /* Return an expression for a call to FN (a namespace-scope function,
3906 or a static member function) with the ARGS. This may change
3907 ARGS. */
3909 tree
3910 build_new_function_call (tree fn, vec<tree, va_gc> **args, bool koenig_p,
3911 tsubst_flags_t complain)
3913 struct z_candidate *candidates, *cand;
3914 bool any_viable_p;
3915 void *p;
3916 tree result;
3918 if (args != NULL && *args != NULL)
3920 *args = resolve_args (*args, complain);
3921 if (*args == NULL)
3922 return error_mark_node;
3925 if (flag_tm)
3926 tm_malloc_replacement (fn);
3928 /* If this function was found without using argument dependent
3929 lookup, then we want to ignore any undeclared friend
3930 functions. */
3931 if (!koenig_p)
3933 tree orig_fn = fn;
3935 fn = remove_hidden_names (fn);
3936 if (!fn)
3938 if (complain & tf_error)
3939 print_error_for_call_failure (orig_fn, *args, false, NULL);
3940 return error_mark_node;
3944 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3945 p = conversion_obstack_alloc (0);
3947 cand = perform_overload_resolution (fn, *args, &candidates, &any_viable_p,
3948 complain);
3950 if (!cand)
3952 if (complain & tf_error)
3954 if (!any_viable_p && candidates && ! candidates->next
3955 && (TREE_CODE (candidates->fn) == FUNCTION_DECL))
3956 return cp_build_function_call_vec (candidates->fn, args, complain);
3957 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3958 fn = TREE_OPERAND (fn, 0);
3959 print_error_for_call_failure (fn, *args, any_viable_p, candidates);
3961 result = error_mark_node;
3963 else
3965 int flags = LOOKUP_NORMAL;
3966 /* If fn is template_id_expr, the call has explicit template arguments
3967 (e.g. func<int>(5)), communicate this info to build_over_call
3968 through flags so that later we can use it to decide whether to warn
3969 about peculiar null pointer conversion. */
3970 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3971 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
3972 result = build_over_call (cand, flags, complain);
3975 /* Free all the conversions we allocated. */
3976 obstack_free (&conversion_obstack, p);
3978 return result;
3981 /* Build a call to a global operator new. FNNAME is the name of the
3982 operator (either "operator new" or "operator new[]") and ARGS are
3983 the arguments provided. This may change ARGS. *SIZE points to the
3984 total number of bytes required by the allocation, and is updated if
3985 that is changed here. *COOKIE_SIZE is non-NULL if a cookie should
3986 be used. If this function determines that no cookie should be
3987 used, after all, *COOKIE_SIZE is set to NULL_TREE. If SIZE_CHECK
3988 is not NULL_TREE, it is evaluated before calculating the final
3989 array size, and if it fails, the array size is replaced with
3990 (size_t)-1 (usually triggering a std::bad_alloc exception). If FN
3991 is non-NULL, it will be set, upon return, to the allocation
3992 function called. */
3994 tree
3995 build_operator_new_call (tree fnname, vec<tree, va_gc> **args,
3996 tree *size, tree *cookie_size, tree size_check,
3997 tree *fn, tsubst_flags_t complain)
3999 tree original_size = *size;
4000 tree fns;
4001 struct z_candidate *candidates;
4002 struct z_candidate *cand;
4003 bool any_viable_p;
4005 if (fn)
4006 *fn = NULL_TREE;
4007 /* Set to (size_t)-1 if the size check fails. */
4008 if (size_check != NULL_TREE)
4010 tree errval = TYPE_MAX_VALUE (sizetype);
4011 if (cxx_dialect >= cxx11 && flag_exceptions)
4012 errval = throw_bad_array_new_length ();
4013 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4014 original_size, errval);
4016 vec_safe_insert (*args, 0, *size);
4017 *args = resolve_args (*args, complain);
4018 if (*args == NULL)
4019 return error_mark_node;
4021 /* Based on:
4023 [expr.new]
4025 If this lookup fails to find the name, or if the allocated type
4026 is not a class type, the allocation function's name is looked
4027 up in the global scope.
4029 we disregard block-scope declarations of "operator new". */
4030 fns = lookup_function_nonclass (fnname, *args, /*block_p=*/false);
4032 /* Figure out what function is being called. */
4033 cand = perform_overload_resolution (fns, *args, &candidates, &any_viable_p,
4034 complain);
4036 /* If no suitable function could be found, issue an error message
4037 and give up. */
4038 if (!cand)
4040 if (complain & tf_error)
4041 print_error_for_call_failure (fns, *args, any_viable_p, candidates);
4042 return error_mark_node;
4045 /* If a cookie is required, add some extra space. Whether
4046 or not a cookie is required cannot be determined until
4047 after we know which function was called. */
4048 if (*cookie_size)
4050 bool use_cookie = true;
4051 if (!abi_version_at_least (2))
4053 /* In G++ 3.2, the check was implemented incorrectly; it
4054 looked at the placement expression, rather than the
4055 type of the function. */
4056 if ((*args)->length () == 2
4057 && same_type_p (TREE_TYPE ((**args)[1]), ptr_type_node))
4058 use_cookie = false;
4060 else
4062 tree arg_types;
4064 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
4065 /* Skip the size_t parameter. */
4066 arg_types = TREE_CHAIN (arg_types);
4067 /* Check the remaining parameters (if any). */
4068 if (arg_types
4069 && TREE_CHAIN (arg_types) == void_list_node
4070 && same_type_p (TREE_VALUE (arg_types),
4071 ptr_type_node))
4072 use_cookie = false;
4074 /* If we need a cookie, adjust the number of bytes allocated. */
4075 if (use_cookie)
4077 /* Update the total size. */
4078 *size = size_binop (PLUS_EXPR, original_size, *cookie_size);
4079 /* Set to (size_t)-1 if the size check fails. */
4080 gcc_assert (size_check != NULL_TREE);
4081 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4082 *size, TYPE_MAX_VALUE (sizetype));
4083 /* Update the argument list to reflect the adjusted size. */
4084 (**args)[0] = *size;
4086 else
4087 *cookie_size = NULL_TREE;
4090 /* Tell our caller which function we decided to call. */
4091 if (fn)
4092 *fn = cand->fn;
4094 /* Build the CALL_EXPR. */
4095 return build_over_call (cand, LOOKUP_NORMAL, complain);
4098 /* Build a new call to operator(). This may change ARGS. */
4100 static tree
4101 build_op_call_1 (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4103 struct z_candidate *candidates = 0, *cand;
4104 tree fns, convs, first_mem_arg = NULL_TREE;
4105 tree type = TREE_TYPE (obj);
4106 bool any_viable_p;
4107 tree result = NULL_TREE;
4108 void *p;
4110 if (error_operand_p (obj))
4111 return error_mark_node;
4113 obj = prep_operand (obj);
4115 if (TYPE_PTRMEMFUNC_P (type))
4117 if (complain & tf_error)
4118 /* It's no good looking for an overloaded operator() on a
4119 pointer-to-member-function. */
4120 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
4121 return error_mark_node;
4124 if (TYPE_BINFO (type))
4126 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
4127 if (fns == error_mark_node)
4128 return error_mark_node;
4130 else
4131 fns = NULL_TREE;
4133 if (args != NULL && *args != NULL)
4135 *args = resolve_args (*args, complain);
4136 if (*args == NULL)
4137 return error_mark_node;
4140 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4141 p = conversion_obstack_alloc (0);
4143 if (fns)
4145 first_mem_arg = obj;
4147 add_candidates (BASELINK_FUNCTIONS (fns),
4148 first_mem_arg, *args, NULL_TREE,
4149 NULL_TREE, false,
4150 BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
4151 LOOKUP_NORMAL, &candidates, complain);
4154 convs = lookup_conversions (type);
4156 for (; convs; convs = TREE_CHAIN (convs))
4158 tree fns = TREE_VALUE (convs);
4159 tree totype = TREE_TYPE (convs);
4161 if (TYPE_PTRFN_P (totype)
4162 || TYPE_REFFN_P (totype)
4163 || (TREE_CODE (totype) == REFERENCE_TYPE
4164 && TYPE_PTRFN_P (TREE_TYPE (totype))))
4165 for (; fns; fns = OVL_NEXT (fns))
4167 tree fn = OVL_CURRENT (fns);
4169 if (DECL_NONCONVERTING_P (fn))
4170 continue;
4172 if (TREE_CODE (fn) == TEMPLATE_DECL)
4173 add_template_conv_candidate
4174 (&candidates, fn, obj, NULL_TREE, *args, totype,
4175 /*access_path=*/NULL_TREE,
4176 /*conversion_path=*/NULL_TREE, complain);
4177 else
4178 add_conv_candidate (&candidates, fn, obj, NULL_TREE,
4179 *args, /*conversion_path=*/NULL_TREE,
4180 /*access_path=*/NULL_TREE, complain);
4184 candidates = splice_viable (candidates, pedantic, &any_viable_p);
4185 if (!any_viable_p)
4187 if (complain & tf_error)
4189 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj),
4190 build_tree_list_vec (*args));
4191 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4193 result = error_mark_node;
4195 else
4197 cand = tourney (candidates, complain);
4198 if (cand == 0)
4200 if (complain & tf_error)
4202 error ("call of %<(%T) (%A)%> is ambiguous",
4203 TREE_TYPE (obj), build_tree_list_vec (*args));
4204 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4206 result = error_mark_node;
4208 /* Since cand->fn will be a type, not a function, for a conversion
4209 function, we must be careful not to unconditionally look at
4210 DECL_NAME here. */
4211 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
4212 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
4213 result = build_over_call (cand, LOOKUP_NORMAL, complain);
4214 else
4216 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1,
4217 complain);
4218 obj = convert_from_reference (obj);
4219 result = cp_build_function_call_vec (obj, args, complain);
4223 /* Free all the conversions we allocated. */
4224 obstack_free (&conversion_obstack, p);
4226 return result;
4229 /* Wrapper for above. */
4231 tree
4232 build_op_call (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4234 tree ret;
4235 bool subtime = timevar_cond_start (TV_OVERLOAD);
4236 ret = build_op_call_1 (obj, args, complain);
4237 timevar_cond_stop (TV_OVERLOAD, subtime);
4238 return ret;
4241 /* Called by op_error to prepare format strings suitable for the error
4242 function. It concatenates a prefix (controlled by MATCH), ERRMSG,
4243 and a suffix (controlled by NTYPES). */
4245 static const char *
4246 op_error_string (const char *errmsg, int ntypes, bool match)
4248 const char *msg;
4250 const char *msgp = concat (match ? G_("ambiguous overload for ")
4251 : G_("no match for "), errmsg, NULL);
4253 if (ntypes == 3)
4254 msg = concat (msgp, G_(" (operand types are %qT, %qT, and %qT)"), NULL);
4255 else if (ntypes == 2)
4256 msg = concat (msgp, G_(" (operand types are %qT and %qT)"), NULL);
4257 else
4258 msg = concat (msgp, G_(" (operand type is %qT)"), NULL);
4260 return msg;
4263 static void
4264 op_error (location_t loc, enum tree_code code, enum tree_code code2,
4265 tree arg1, tree arg2, tree arg3, bool match)
4267 const char *opname;
4269 if (code == MODIFY_EXPR)
4270 opname = assignment_operator_name_info[code2].name;
4271 else
4272 opname = operator_name_info[code].name;
4274 switch (code)
4276 case COND_EXPR:
4277 if (flag_diagnostics_show_caret)
4278 error_at (loc, op_error_string (G_("ternary %<operator?:%>"),
4279 3, match),
4280 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4281 else
4282 error_at (loc, op_error_string (G_("ternary %<operator?:%> "
4283 "in %<%E ? %E : %E%>"), 3, match),
4284 arg1, arg2, arg3,
4285 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4286 break;
4288 case POSTINCREMENT_EXPR:
4289 case POSTDECREMENT_EXPR:
4290 if (flag_diagnostics_show_caret)
4291 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4292 opname, TREE_TYPE (arg1));
4293 else
4294 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E%s%>"),
4295 1, match),
4296 opname, arg1, opname, TREE_TYPE (arg1));
4297 break;
4299 case ARRAY_REF:
4300 if (flag_diagnostics_show_caret)
4301 error_at (loc, op_error_string (G_("%<operator[]%>"), 2, match),
4302 TREE_TYPE (arg1), TREE_TYPE (arg2));
4303 else
4304 error_at (loc, op_error_string (G_("%<operator[]%> in %<%E[%E]%>"),
4305 2, match),
4306 arg1, arg2, TREE_TYPE (arg1), TREE_TYPE (arg2));
4307 break;
4309 case REALPART_EXPR:
4310 case IMAGPART_EXPR:
4311 if (flag_diagnostics_show_caret)
4312 error_at (loc, op_error_string (G_("%qs"), 1, match),
4313 opname, TREE_TYPE (arg1));
4314 else
4315 error_at (loc, op_error_string (G_("%qs in %<%s %E%>"), 1, match),
4316 opname, opname, arg1, TREE_TYPE (arg1));
4317 break;
4319 default:
4320 if (arg2)
4321 if (flag_diagnostics_show_caret)
4322 error_at (loc, op_error_string (G_("%<operator%s%>"), 2, match),
4323 opname, TREE_TYPE (arg1), TREE_TYPE (arg2));
4324 else
4325 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E %s %E%>"),
4326 2, match),
4327 opname, arg1, opname, arg2,
4328 TREE_TYPE (arg1), TREE_TYPE (arg2));
4329 else
4330 if (flag_diagnostics_show_caret)
4331 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4332 opname, TREE_TYPE (arg1));
4333 else
4334 error_at (loc, op_error_string (G_("%<operator%s%> in %<%s%E%>"),
4335 1, match),
4336 opname, opname, arg1, TREE_TYPE (arg1));
4337 break;
4341 /* Return the implicit conversion sequence that could be used to
4342 convert E1 to E2 in [expr.cond]. */
4344 static conversion *
4345 conditional_conversion (tree e1, tree e2, tsubst_flags_t complain)
4347 tree t1 = non_reference (TREE_TYPE (e1));
4348 tree t2 = non_reference (TREE_TYPE (e2));
4349 conversion *conv;
4350 bool good_base;
4352 /* [expr.cond]
4354 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
4355 implicitly converted (clause _conv_) to the type "lvalue reference to
4356 T2", subject to the constraint that in the conversion the
4357 reference must bind directly (_dcl.init.ref_) to an lvalue. */
4358 if (real_lvalue_p (e2))
4360 conv = implicit_conversion (build_reference_type (t2),
4363 /*c_cast_p=*/false,
4364 LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND
4365 |LOOKUP_ONLYCONVERTING,
4366 complain);
4367 if (conv)
4368 return conv;
4371 /* [expr.cond]
4373 If E1 and E2 have class type, and the underlying class types are
4374 the same or one is a base class of the other: E1 can be converted
4375 to match E2 if the class of T2 is the same type as, or a base
4376 class of, the class of T1, and the cv-qualification of T2 is the
4377 same cv-qualification as, or a greater cv-qualification than, the
4378 cv-qualification of T1. If the conversion is applied, E1 is
4379 changed to an rvalue of type T2 that still refers to the original
4380 source class object (or the appropriate subobject thereof). */
4381 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
4382 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
4384 if (good_base && at_least_as_qualified_p (t2, t1))
4386 conv = build_identity_conv (t1, e1);
4387 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
4388 TYPE_MAIN_VARIANT (t2)))
4389 conv = build_conv (ck_base, t2, conv);
4390 else
4391 conv = build_conv (ck_rvalue, t2, conv);
4392 return conv;
4394 else
4395 return NULL;
4397 else
4398 /* [expr.cond]
4400 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
4401 converted to the type that expression E2 would have if E2 were
4402 converted to an rvalue (or the type it has, if E2 is an rvalue). */
4403 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
4404 LOOKUP_IMPLICIT, complain);
4407 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4408 arguments to the conditional expression. */
4410 static tree
4411 build_conditional_expr_1 (location_t loc, tree arg1, tree arg2, tree arg3,
4412 tsubst_flags_t complain)
4414 tree arg2_type;
4415 tree arg3_type;
4416 tree result = NULL_TREE;
4417 tree result_type = NULL_TREE;
4418 bool lvalue_p = true;
4419 struct z_candidate *candidates = 0;
4420 struct z_candidate *cand;
4421 void *p;
4422 tree orig_arg2, orig_arg3;
4424 /* As a G++ extension, the second argument to the conditional can be
4425 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
4426 c'.) If the second operand is omitted, make sure it is
4427 calculated only once. */
4428 if (!arg2)
4430 if (complain & tf_error)
4431 pedwarn (loc, OPT_Wpedantic,
4432 "ISO C++ forbids omitting the middle term of a ?: expression");
4434 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
4435 if (real_lvalue_p (arg1))
4436 arg2 = arg1 = stabilize_reference (arg1);
4437 else
4438 arg2 = arg1 = save_expr (arg1);
4441 /* If something has already gone wrong, just pass that fact up the
4442 tree. */
4443 if (error_operand_p (arg1)
4444 || error_operand_p (arg2)
4445 || error_operand_p (arg3))
4446 return error_mark_node;
4448 orig_arg2 = arg2;
4449 orig_arg3 = arg3;
4451 if (VECTOR_INTEGER_TYPE_P (TREE_TYPE (arg1)))
4453 arg1 = force_rvalue (arg1, complain);
4454 arg2 = force_rvalue (arg2, complain);
4455 arg3 = force_rvalue (arg3, complain);
4457 /* force_rvalue can return error_mark on valid arguments. */
4458 if (error_operand_p (arg1)
4459 || error_operand_p (arg2)
4460 || error_operand_p (arg3))
4461 return error_mark_node;
4463 tree arg1_type = TREE_TYPE (arg1);
4464 arg2_type = TREE_TYPE (arg2);
4465 arg3_type = TREE_TYPE (arg3);
4467 if (TREE_CODE (arg2_type) != VECTOR_TYPE
4468 && TREE_CODE (arg3_type) != VECTOR_TYPE)
4470 /* Rely on the error messages of the scalar version. */
4471 tree scal = build_conditional_expr_1 (loc, integer_one_node,
4472 orig_arg2, orig_arg3, complain);
4473 if (scal == error_mark_node)
4474 return error_mark_node;
4475 tree stype = TREE_TYPE (scal);
4476 tree ctype = TREE_TYPE (arg1_type);
4477 if (TYPE_SIZE (stype) != TYPE_SIZE (ctype)
4478 || (!INTEGRAL_TYPE_P (stype) && !SCALAR_FLOAT_TYPE_P (stype)))
4480 if (complain & tf_error)
4481 error_at (loc, "inferred scalar type %qT is not an integer or "
4482 "floating point type of the same size as %qT", stype,
4483 COMPARISON_CLASS_P (arg1)
4484 ? TREE_TYPE (TREE_TYPE (TREE_OPERAND (arg1, 0)))
4485 : ctype);
4486 return error_mark_node;
4489 tree vtype = build_opaque_vector_type (stype,
4490 TYPE_VECTOR_SUBPARTS (arg1_type));
4491 /* We could pass complain & tf_warning to unsafe_conversion_p,
4492 but the warnings (like Wsign-conversion) have already been
4493 given by the scalar build_conditional_expr_1. We still check
4494 unsafe_conversion_p to forbid truncating long long -> float. */
4495 if (unsafe_conversion_p (loc, stype, arg2, false))
4497 if (complain & tf_error)
4498 error_at (loc, "conversion of scalar %qT to vector %qT "
4499 "involves truncation", arg2_type, vtype);
4500 return error_mark_node;
4502 if (unsafe_conversion_p (loc, stype, arg3, false))
4504 if (complain & tf_error)
4505 error_at (loc, "conversion of scalar %qT to vector %qT "
4506 "involves truncation", arg3_type, vtype);
4507 return error_mark_node;
4510 arg2 = cp_convert (stype, arg2, complain);
4511 arg2 = save_expr (arg2);
4512 arg2 = build_vector_from_val (vtype, arg2);
4513 arg2_type = vtype;
4514 arg3 = cp_convert (stype, arg3, complain);
4515 arg3 = save_expr (arg3);
4516 arg3 = build_vector_from_val (vtype, arg3);
4517 arg3_type = vtype;
4520 if ((TREE_CODE (arg2_type) == VECTOR_TYPE)
4521 != (TREE_CODE (arg3_type) == VECTOR_TYPE))
4523 enum stv_conv convert_flag =
4524 scalar_to_vector (loc, VEC_COND_EXPR, arg2, arg3,
4525 complain & tf_error);
4527 switch (convert_flag)
4529 case stv_error:
4530 return error_mark_node;
4531 case stv_firstarg:
4533 arg2 = save_expr (arg2);
4534 arg2 = convert (TREE_TYPE (arg3_type), arg2);
4535 arg2 = build_vector_from_val (arg3_type, arg2);
4536 arg2_type = TREE_TYPE (arg2);
4537 break;
4539 case stv_secondarg:
4541 arg3 = save_expr (arg3);
4542 arg3 = convert (TREE_TYPE (arg2_type), arg3);
4543 arg3 = build_vector_from_val (arg2_type, arg3);
4544 arg3_type = TREE_TYPE (arg3);
4545 break;
4547 default:
4548 break;
4552 if (!same_type_p (arg2_type, arg3_type)
4553 || TYPE_VECTOR_SUBPARTS (arg1_type)
4554 != TYPE_VECTOR_SUBPARTS (arg2_type)
4555 || TYPE_SIZE (arg1_type) != TYPE_SIZE (arg2_type))
4557 if (complain & tf_error)
4558 error_at (loc,
4559 "incompatible vector types in conditional expression: "
4560 "%qT, %qT and %qT", TREE_TYPE (arg1),
4561 TREE_TYPE (orig_arg2), TREE_TYPE (orig_arg3));
4562 return error_mark_node;
4565 if (!COMPARISON_CLASS_P (arg1))
4566 arg1 = cp_build_binary_op (loc, NE_EXPR, arg1,
4567 build_zero_cst (arg1_type), complain);
4568 return fold_build3 (VEC_COND_EXPR, arg2_type, arg1, arg2, arg3);
4571 /* [expr.cond]
4573 The first expression is implicitly converted to bool (clause
4574 _conv_). */
4575 arg1 = perform_implicit_conversion_flags (boolean_type_node, arg1, complain,
4576 LOOKUP_NORMAL);
4577 if (error_operand_p (arg1))
4578 return error_mark_node;
4580 /* [expr.cond]
4582 If either the second or the third operand has type (possibly
4583 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
4584 array-to-pointer (_conv.array_), and function-to-pointer
4585 (_conv.func_) standard conversions are performed on the second
4586 and third operands. */
4587 arg2_type = unlowered_expr_type (arg2);
4588 arg3_type = unlowered_expr_type (arg3);
4589 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
4591 /* Do the conversions. We don't these for `void' type arguments
4592 since it can't have any effect and since decay_conversion
4593 does not handle that case gracefully. */
4594 if (!VOID_TYPE_P (arg2_type))
4595 arg2 = decay_conversion (arg2, complain);
4596 if (!VOID_TYPE_P (arg3_type))
4597 arg3 = decay_conversion (arg3, complain);
4598 arg2_type = TREE_TYPE (arg2);
4599 arg3_type = TREE_TYPE (arg3);
4601 /* [expr.cond]
4603 One of the following shall hold:
4605 --The second or the third operand (but not both) is a
4606 throw-expression (_except.throw_); the result is of the
4607 type of the other and is an rvalue.
4609 --Both the second and the third operands have type void; the
4610 result is of type void and is an rvalue.
4612 We must avoid calling force_rvalue for expressions of type
4613 "void" because it will complain that their value is being
4614 used. */
4615 if (TREE_CODE (arg2) == THROW_EXPR
4616 && TREE_CODE (arg3) != THROW_EXPR)
4618 if (!VOID_TYPE_P (arg3_type))
4620 arg3 = force_rvalue (arg3, complain);
4621 if (arg3 == error_mark_node)
4622 return error_mark_node;
4624 arg3_type = TREE_TYPE (arg3);
4625 result_type = arg3_type;
4627 else if (TREE_CODE (arg2) != THROW_EXPR
4628 && TREE_CODE (arg3) == THROW_EXPR)
4630 if (!VOID_TYPE_P (arg2_type))
4632 arg2 = force_rvalue (arg2, complain);
4633 if (arg2 == error_mark_node)
4634 return error_mark_node;
4636 arg2_type = TREE_TYPE (arg2);
4637 result_type = arg2_type;
4639 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
4640 result_type = void_type_node;
4641 else
4643 if (complain & tf_error)
4645 if (VOID_TYPE_P (arg2_type))
4646 error_at (EXPR_LOC_OR_LOC (arg3, loc),
4647 "second operand to the conditional operator "
4648 "is of type %<void%>, but the third operand is "
4649 "neither a throw-expression nor of type %<void%>");
4650 else
4651 error_at (EXPR_LOC_OR_LOC (arg2, loc),
4652 "third operand to the conditional operator "
4653 "is of type %<void%>, but the second operand is "
4654 "neither a throw-expression nor of type %<void%>");
4656 return error_mark_node;
4659 lvalue_p = false;
4660 goto valid_operands;
4662 /* [expr.cond]
4664 Otherwise, if the second and third operand have different types,
4665 and either has (possibly cv-qualified) class type, an attempt is
4666 made to convert each of those operands to the type of the other. */
4667 else if (!same_type_p (arg2_type, arg3_type)
4668 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4670 conversion *conv2;
4671 conversion *conv3;
4673 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4674 p = conversion_obstack_alloc (0);
4676 conv2 = conditional_conversion (arg2, arg3, complain);
4677 conv3 = conditional_conversion (arg3, arg2, complain);
4679 /* [expr.cond]
4681 If both can be converted, or one can be converted but the
4682 conversion is ambiguous, the program is ill-formed. If
4683 neither can be converted, the operands are left unchanged and
4684 further checking is performed as described below. If exactly
4685 one conversion is possible, that conversion is applied to the
4686 chosen operand and the converted operand is used in place of
4687 the original operand for the remainder of this section. */
4688 if ((conv2 && !conv2->bad_p
4689 && conv3 && !conv3->bad_p)
4690 || (conv2 && conv2->kind == ck_ambig)
4691 || (conv3 && conv3->kind == ck_ambig))
4693 if (complain & tf_error)
4694 error_at (loc, "operands to ?: have different types %qT and %qT",
4695 arg2_type, arg3_type);
4696 result = error_mark_node;
4698 else if (conv2 && (!conv2->bad_p || !conv3))
4700 arg2 = convert_like (conv2, arg2, complain);
4701 arg2 = convert_from_reference (arg2);
4702 arg2_type = TREE_TYPE (arg2);
4703 /* Even if CONV2 is a valid conversion, the result of the
4704 conversion may be invalid. For example, if ARG3 has type
4705 "volatile X", and X does not have a copy constructor
4706 accepting a "volatile X&", then even if ARG2 can be
4707 converted to X, the conversion will fail. */
4708 if (error_operand_p (arg2))
4709 result = error_mark_node;
4711 else if (conv3 && (!conv3->bad_p || !conv2))
4713 arg3 = convert_like (conv3, arg3, complain);
4714 arg3 = convert_from_reference (arg3);
4715 arg3_type = TREE_TYPE (arg3);
4716 if (error_operand_p (arg3))
4717 result = error_mark_node;
4720 /* Free all the conversions we allocated. */
4721 obstack_free (&conversion_obstack, p);
4723 if (result)
4724 return result;
4726 /* If, after the conversion, both operands have class type,
4727 treat the cv-qualification of both operands as if it were the
4728 union of the cv-qualification of the operands.
4730 The standard is not clear about what to do in this
4731 circumstance. For example, if the first operand has type
4732 "const X" and the second operand has a user-defined
4733 conversion to "volatile X", what is the type of the second
4734 operand after this step? Making it be "const X" (matching
4735 the first operand) seems wrong, as that discards the
4736 qualification without actually performing a copy. Leaving it
4737 as "volatile X" seems wrong as that will result in the
4738 conditional expression failing altogether, even though,
4739 according to this step, the one operand could be converted to
4740 the type of the other. */
4741 if ((conv2 || conv3)
4742 && CLASS_TYPE_P (arg2_type)
4743 && cp_type_quals (arg2_type) != cp_type_quals (arg3_type))
4744 arg2_type = arg3_type =
4745 cp_build_qualified_type (arg2_type,
4746 cp_type_quals (arg2_type)
4747 | cp_type_quals (arg3_type));
4750 /* [expr.cond]
4752 If the second and third operands are glvalues of the same value
4753 category and have the same type, the result is of that type and
4754 value category. */
4755 if (((real_lvalue_p (arg2) && real_lvalue_p (arg3))
4756 || (xvalue_p (arg2) && xvalue_p (arg3)))
4757 && same_type_p (arg2_type, arg3_type))
4759 result_type = arg2_type;
4760 arg2 = mark_lvalue_use (arg2);
4761 arg3 = mark_lvalue_use (arg3);
4762 goto valid_operands;
4765 /* [expr.cond]
4767 Otherwise, the result is an rvalue. If the second and third
4768 operand do not have the same type, and either has (possibly
4769 cv-qualified) class type, overload resolution is used to
4770 determine the conversions (if any) to be applied to the operands
4771 (_over.match.oper_, _over.built_). */
4772 lvalue_p = false;
4773 if (!same_type_p (arg2_type, arg3_type)
4774 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4776 tree args[3];
4777 conversion *conv;
4778 bool any_viable_p;
4780 /* Rearrange the arguments so that add_builtin_candidate only has
4781 to know about two args. In build_builtin_candidate, the
4782 arguments are unscrambled. */
4783 args[0] = arg2;
4784 args[1] = arg3;
4785 args[2] = arg1;
4786 add_builtin_candidates (&candidates,
4787 COND_EXPR,
4788 NOP_EXPR,
4789 ansi_opname (COND_EXPR),
4790 args,
4791 LOOKUP_NORMAL, complain);
4793 /* [expr.cond]
4795 If the overload resolution fails, the program is
4796 ill-formed. */
4797 candidates = splice_viable (candidates, pedantic, &any_viable_p);
4798 if (!any_viable_p)
4800 if (complain & tf_error)
4802 op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
4803 print_z_candidates (loc, candidates);
4805 return error_mark_node;
4807 cand = tourney (candidates, complain);
4808 if (!cand)
4810 if (complain & tf_error)
4812 op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
4813 print_z_candidates (loc, candidates);
4815 return error_mark_node;
4818 /* [expr.cond]
4820 Otherwise, the conversions thus determined are applied, and
4821 the converted operands are used in place of the original
4822 operands for the remainder of this section. */
4823 conv = cand->convs[0];
4824 arg1 = convert_like (conv, arg1, complain);
4825 conv = cand->convs[1];
4826 arg2 = convert_like (conv, arg2, complain);
4827 arg2_type = TREE_TYPE (arg2);
4828 conv = cand->convs[2];
4829 arg3 = convert_like (conv, arg3, complain);
4830 arg3_type = TREE_TYPE (arg3);
4833 /* [expr.cond]
4835 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
4836 and function-to-pointer (_conv.func_) standard conversions are
4837 performed on the second and third operands.
4839 We need to force the lvalue-to-rvalue conversion here for class types,
4840 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
4841 that isn't wrapped with a TARGET_EXPR plays havoc with exception
4842 regions. */
4844 arg2 = force_rvalue (arg2, complain);
4845 if (!CLASS_TYPE_P (arg2_type))
4846 arg2_type = TREE_TYPE (arg2);
4848 arg3 = force_rvalue (arg3, complain);
4849 if (!CLASS_TYPE_P (arg3_type))
4850 arg3_type = TREE_TYPE (arg3);
4852 if (arg2 == error_mark_node || arg3 == error_mark_node)
4853 return error_mark_node;
4855 /* [expr.cond]
4857 After those conversions, one of the following shall hold:
4859 --The second and third operands have the same type; the result is of
4860 that type. */
4861 if (same_type_p (arg2_type, arg3_type))
4862 result_type = arg2_type;
4863 /* [expr.cond]
4865 --The second and third operands have arithmetic or enumeration
4866 type; the usual arithmetic conversions are performed to bring
4867 them to a common type, and the result is of that type. */
4868 else if ((ARITHMETIC_TYPE_P (arg2_type)
4869 || UNSCOPED_ENUM_P (arg2_type))
4870 && (ARITHMETIC_TYPE_P (arg3_type)
4871 || UNSCOPED_ENUM_P (arg3_type)))
4873 /* In this case, there is always a common type. */
4874 result_type = type_after_usual_arithmetic_conversions (arg2_type,
4875 arg3_type);
4876 if (complain & tf_warning)
4877 do_warn_double_promotion (result_type, arg2_type, arg3_type,
4878 "implicit conversion from %qT to %qT to "
4879 "match other result of conditional",
4880 loc);
4882 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
4883 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
4885 if (TREE_CODE (orig_arg2) == CONST_DECL
4886 && TREE_CODE (orig_arg3) == CONST_DECL
4887 && DECL_CONTEXT (orig_arg2) == DECL_CONTEXT (orig_arg3))
4888 /* Two enumerators from the same enumeration can have different
4889 types when the enumeration is still being defined. */;
4890 else if (complain & tf_warning)
4891 warning_at (loc, OPT_Wenum_compare, "enumeral mismatch in "
4892 "conditional expression: %qT vs %qT",
4893 arg2_type, arg3_type);
4895 else if (extra_warnings
4896 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
4897 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
4898 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
4899 && !same_type_p (arg2_type,
4900 type_promotes_to (arg3_type)))))
4902 if (complain & tf_warning)
4903 warning_at (loc, 0, "enumeral and non-enumeral type in "
4904 "conditional expression");
4907 arg2 = perform_implicit_conversion (result_type, arg2, complain);
4908 arg3 = perform_implicit_conversion (result_type, arg3, complain);
4910 /* [expr.cond]
4912 --The second and third operands have pointer type, or one has
4913 pointer type and the other is a null pointer constant; pointer
4914 conversions (_conv.ptr_) and qualification conversions
4915 (_conv.qual_) are performed to bring them to their composite
4916 pointer type (_expr.rel_). The result is of the composite
4917 pointer type.
4919 --The second and third operands have pointer to member type, or
4920 one has pointer to member type and the other is a null pointer
4921 constant; pointer to member conversions (_conv.mem_) and
4922 qualification conversions (_conv.qual_) are performed to bring
4923 them to a common type, whose cv-qualification shall match the
4924 cv-qualification of either the second or the third operand.
4925 The result is of the common type. */
4926 else if ((null_ptr_cst_p (arg2)
4927 && TYPE_PTR_OR_PTRMEM_P (arg3_type))
4928 || (null_ptr_cst_p (arg3)
4929 && TYPE_PTR_OR_PTRMEM_P (arg2_type))
4930 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
4931 || (TYPE_PTRDATAMEM_P (arg2_type) && TYPE_PTRDATAMEM_P (arg3_type))
4932 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
4934 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
4935 arg3, CPO_CONDITIONAL_EXPR,
4936 complain);
4937 if (result_type == error_mark_node)
4938 return error_mark_node;
4939 arg2 = perform_implicit_conversion (result_type, arg2, complain);
4940 arg3 = perform_implicit_conversion (result_type, arg3, complain);
4943 if (!result_type)
4945 if (complain & tf_error)
4946 error_at (loc, "operands to ?: have different types %qT and %qT",
4947 arg2_type, arg3_type);
4948 return error_mark_node;
4951 if (arg2 == error_mark_node || arg3 == error_mark_node)
4952 return error_mark_node;
4954 valid_operands:
4955 result = build3 (COND_EXPR, result_type, arg1, arg2, arg3);
4956 if (!cp_unevaluated_operand)
4957 /* Avoid folding within decltype (c++/42013) and noexcept. */
4958 result = fold_if_not_in_template (result);
4960 /* We can't use result_type below, as fold might have returned a
4961 throw_expr. */
4963 if (!lvalue_p)
4965 /* Expand both sides into the same slot, hopefully the target of
4966 the ?: expression. We used to check for TARGET_EXPRs here,
4967 but now we sometimes wrap them in NOP_EXPRs so the test would
4968 fail. */
4969 if (CLASS_TYPE_P (TREE_TYPE (result)))
4970 result = get_target_expr_sfinae (result, complain);
4971 /* If this expression is an rvalue, but might be mistaken for an
4972 lvalue, we must add a NON_LVALUE_EXPR. */
4973 result = rvalue (result);
4975 else
4976 result = force_paren_expr (result);
4978 return result;
4981 /* Wrapper for above. */
4983 tree
4984 build_conditional_expr (location_t loc, tree arg1, tree arg2, tree arg3,
4985 tsubst_flags_t complain)
4987 tree ret;
4988 bool subtime = timevar_cond_start (TV_OVERLOAD);
4989 ret = build_conditional_expr_1 (loc, arg1, arg2, arg3, complain);
4990 timevar_cond_stop (TV_OVERLOAD, subtime);
4991 return ret;
4994 /* OPERAND is an operand to an expression. Perform necessary steps
4995 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
4996 returned. */
4998 static tree
4999 prep_operand (tree operand)
5001 if (operand)
5003 if (CLASS_TYPE_P (TREE_TYPE (operand))
5004 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
5005 /* Make sure the template type is instantiated now. */
5006 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
5009 return operand;
5012 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
5013 OVERLOAD) to the CANDIDATES, returning an updated list of
5014 CANDIDATES. The ARGS are the arguments provided to the call;
5015 if FIRST_ARG is non-null it is the implicit object argument,
5016 otherwise the first element of ARGS is used if needed. The
5017 EXPLICIT_TARGS are explicit template arguments provided.
5018 TEMPLATE_ONLY is true if only template functions should be
5019 considered. CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
5020 add_function_candidate. */
5022 static void
5023 add_candidates (tree fns, tree first_arg, const vec<tree, va_gc> *args,
5024 tree return_type,
5025 tree explicit_targs, bool template_only,
5026 tree conversion_path, tree access_path,
5027 int flags,
5028 struct z_candidate **candidates,
5029 tsubst_flags_t complain)
5031 tree ctype;
5032 const vec<tree, va_gc> *non_static_args;
5033 bool check_list_ctor;
5034 bool check_converting;
5035 unification_kind_t strict;
5036 tree fn;
5038 if (!fns)
5039 return;
5041 /* Precalculate special handling of constructors and conversion ops. */
5042 fn = OVL_CURRENT (fns);
5043 if (DECL_CONV_FN_P (fn))
5045 check_list_ctor = false;
5046 check_converting = !!(flags & LOOKUP_ONLYCONVERTING);
5047 if (flags & LOOKUP_NO_CONVERSION)
5048 /* We're doing return_type(x). */
5049 strict = DEDUCE_CONV;
5050 else
5051 /* We're doing x.operator return_type(). */
5052 strict = DEDUCE_EXACT;
5053 /* [over.match.funcs] For conversion functions, the function
5054 is considered to be a member of the class of the implicit
5055 object argument for the purpose of defining the type of
5056 the implicit object parameter. */
5057 ctype = TYPE_MAIN_VARIANT (TREE_TYPE (first_arg));
5059 else
5061 if (DECL_CONSTRUCTOR_P (fn))
5063 check_list_ctor = !!(flags & LOOKUP_LIST_ONLY);
5064 /* For list-initialization we consider explicit constructors
5065 and complain if one is chosen. */
5066 check_converting
5067 = ((flags & (LOOKUP_ONLYCONVERTING|LOOKUP_LIST_INIT_CTOR))
5068 == LOOKUP_ONLYCONVERTING);
5070 else
5072 check_list_ctor = false;
5073 check_converting = false;
5075 strict = DEDUCE_CALL;
5076 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
5079 if (first_arg)
5080 non_static_args = args;
5081 else
5082 /* Delay creating the implicit this parameter until it is needed. */
5083 non_static_args = NULL;
5085 for (; fns; fns = OVL_NEXT (fns))
5087 tree fn_first_arg;
5088 const vec<tree, va_gc> *fn_args;
5090 fn = OVL_CURRENT (fns);
5092 if (check_converting && DECL_NONCONVERTING_P (fn))
5093 continue;
5094 if (check_list_ctor && !is_list_ctor (fn))
5095 continue;
5097 /* Figure out which set of arguments to use. */
5098 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
5100 /* If this function is a non-static member and we didn't get an
5101 implicit object argument, move it out of args. */
5102 if (first_arg == NULL_TREE)
5104 unsigned int ix;
5105 tree arg;
5106 vec<tree, va_gc> *tempvec;
5107 vec_alloc (tempvec, args->length () - 1);
5108 for (ix = 1; args->iterate (ix, &arg); ++ix)
5109 tempvec->quick_push (arg);
5110 non_static_args = tempvec;
5111 first_arg = (*args)[0];
5114 fn_first_arg = first_arg;
5115 fn_args = non_static_args;
5117 else
5119 /* Otherwise, just use the list of arguments provided. */
5120 fn_first_arg = NULL_TREE;
5121 fn_args = args;
5124 if (TREE_CODE (fn) == TEMPLATE_DECL)
5125 add_template_candidate (candidates,
5127 ctype,
5128 explicit_targs,
5129 fn_first_arg,
5130 fn_args,
5131 return_type,
5132 access_path,
5133 conversion_path,
5134 flags,
5135 strict,
5136 complain);
5137 else if (!template_only)
5138 add_function_candidate (candidates,
5140 ctype,
5141 fn_first_arg,
5142 fn_args,
5143 access_path,
5144 conversion_path,
5145 flags,
5146 complain);
5150 static tree
5151 build_new_op_1 (location_t loc, enum tree_code code, int flags, tree arg1,
5152 tree arg2, tree arg3, tree *overload, tsubst_flags_t complain)
5154 struct z_candidate *candidates = 0, *cand;
5155 vec<tree, va_gc> *arglist;
5156 tree fnname;
5157 tree args[3];
5158 tree result = NULL_TREE;
5159 bool result_valid_p = false;
5160 enum tree_code code2 = NOP_EXPR;
5161 enum tree_code code_orig_arg1 = ERROR_MARK;
5162 enum tree_code code_orig_arg2 = ERROR_MARK;
5163 conversion *conv;
5164 void *p;
5165 bool strict_p;
5166 bool any_viable_p;
5168 if (error_operand_p (arg1)
5169 || error_operand_p (arg2)
5170 || error_operand_p (arg3))
5171 return error_mark_node;
5173 if (code == MODIFY_EXPR)
5175 code2 = TREE_CODE (arg3);
5176 arg3 = NULL_TREE;
5177 fnname = ansi_assopname (code2);
5179 else
5180 fnname = ansi_opname (code);
5182 arg1 = prep_operand (arg1);
5184 switch (code)
5186 case NEW_EXPR:
5187 case VEC_NEW_EXPR:
5188 case VEC_DELETE_EXPR:
5189 case DELETE_EXPR:
5190 /* Use build_op_new_call and build_op_delete_call instead. */
5191 gcc_unreachable ();
5193 case CALL_EXPR:
5194 /* Use build_op_call instead. */
5195 gcc_unreachable ();
5197 case TRUTH_ORIF_EXPR:
5198 case TRUTH_ANDIF_EXPR:
5199 case TRUTH_AND_EXPR:
5200 case TRUTH_OR_EXPR:
5201 /* These are saved for the sake of warn_logical_operator. */
5202 code_orig_arg1 = TREE_CODE (arg1);
5203 code_orig_arg2 = TREE_CODE (arg2);
5205 default:
5206 break;
5209 arg2 = prep_operand (arg2);
5210 arg3 = prep_operand (arg3);
5212 if (code == COND_EXPR)
5213 /* Use build_conditional_expr instead. */
5214 gcc_unreachable ();
5215 else if (! OVERLOAD_TYPE_P (TREE_TYPE (arg1))
5216 && (! arg2 || ! OVERLOAD_TYPE_P (TREE_TYPE (arg2))))
5217 goto builtin;
5219 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
5220 arg2 = integer_zero_node;
5222 vec_alloc (arglist, 3);
5223 arglist->quick_push (arg1);
5224 if (arg2 != NULL_TREE)
5225 arglist->quick_push (arg2);
5226 if (arg3 != NULL_TREE)
5227 arglist->quick_push (arg3);
5229 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5230 p = conversion_obstack_alloc (0);
5232 /* Add namespace-scope operators to the list of functions to
5233 consider. */
5234 add_candidates (lookup_function_nonclass (fnname, arglist, /*block_p=*/true),
5235 NULL_TREE, arglist, NULL_TREE,
5236 NULL_TREE, false, NULL_TREE, NULL_TREE,
5237 flags, &candidates, complain);
5239 args[0] = arg1;
5240 args[1] = arg2;
5241 args[2] = NULL_TREE;
5243 /* Add class-member operators to the candidate set. */
5244 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
5246 tree fns;
5248 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
5249 if (fns == error_mark_node)
5251 result = error_mark_node;
5252 goto user_defined_result_ready;
5254 if (fns)
5255 add_candidates (BASELINK_FUNCTIONS (fns),
5256 NULL_TREE, arglist, NULL_TREE,
5257 NULL_TREE, false,
5258 BASELINK_BINFO (fns),
5259 BASELINK_ACCESS_BINFO (fns),
5260 flags, &candidates, complain);
5262 /* Per 13.3.1.2/3, 2nd bullet, if no operand has a class type, then
5263 only non-member functions that have type T1 or reference to
5264 cv-qualified-opt T1 for the first argument, if the first argument
5265 has an enumeration type, or T2 or reference to cv-qualified-opt
5266 T2 for the second argument, if the the second argument has an
5267 enumeration type. Filter out those that don't match. */
5268 else if (! arg2 || ! CLASS_TYPE_P (TREE_TYPE (arg2)))
5270 struct z_candidate **candp, **next;
5272 for (candp = &candidates; *candp; candp = next)
5274 tree parmlist, parmtype;
5275 int i, nargs = (arg2 ? 2 : 1);
5277 cand = *candp;
5278 next = &cand->next;
5280 parmlist = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
5282 for (i = 0; i < nargs; ++i)
5284 parmtype = TREE_VALUE (parmlist);
5286 if (TREE_CODE (parmtype) == REFERENCE_TYPE)
5287 parmtype = TREE_TYPE (parmtype);
5288 if (TREE_CODE (TREE_TYPE (args[i])) == ENUMERAL_TYPE
5289 && (same_type_ignoring_top_level_qualifiers_p
5290 (TREE_TYPE (args[i]), parmtype)))
5291 break;
5293 parmlist = TREE_CHAIN (parmlist);
5296 /* No argument has an appropriate type, so remove this
5297 candidate function from the list. */
5298 if (i == nargs)
5300 *candp = cand->next;
5301 next = candp;
5306 add_builtin_candidates (&candidates, code, code2, fnname, args,
5307 flags, complain);
5309 switch (code)
5311 case COMPOUND_EXPR:
5312 case ADDR_EXPR:
5313 /* For these, the built-in candidates set is empty
5314 [over.match.oper]/3. We don't want non-strict matches
5315 because exact matches are always possible with built-in
5316 operators. The built-in candidate set for COMPONENT_REF
5317 would be empty too, but since there are no such built-in
5318 operators, we accept non-strict matches for them. */
5319 strict_p = true;
5320 break;
5322 default:
5323 strict_p = pedantic;
5324 break;
5327 candidates = splice_viable (candidates, strict_p, &any_viable_p);
5328 if (!any_viable_p)
5330 switch (code)
5332 case POSTINCREMENT_EXPR:
5333 case POSTDECREMENT_EXPR:
5334 /* Don't try anything fancy if we're not allowed to produce
5335 errors. */
5336 if (!(complain & tf_error))
5337 return error_mark_node;
5339 /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
5340 distinguish between prefix and postfix ++ and
5341 operator++() was used for both, so we allow this with
5342 -fpermissive. */
5343 else
5345 const char *msg = (flag_permissive)
5346 ? G_("no %<%D(int)%> declared for postfix %qs,"
5347 " trying prefix operator instead")
5348 : G_("no %<%D(int)%> declared for postfix %qs");
5349 permerror (loc, msg, fnname, operator_name_info[code].name);
5352 if (!flag_permissive)
5353 return error_mark_node;
5355 if (code == POSTINCREMENT_EXPR)
5356 code = PREINCREMENT_EXPR;
5357 else
5358 code = PREDECREMENT_EXPR;
5359 result = build_new_op_1 (loc, code, flags, arg1, NULL_TREE,
5360 NULL_TREE, overload, complain);
5361 break;
5363 /* The caller will deal with these. */
5364 case ADDR_EXPR:
5365 case COMPOUND_EXPR:
5366 case COMPONENT_REF:
5367 result = NULL_TREE;
5368 result_valid_p = true;
5369 break;
5371 default:
5372 if (complain & tf_error)
5374 /* If one of the arguments of the operator represents
5375 an invalid use of member function pointer, try to report
5376 a meaningful error ... */
5377 if (invalid_nonstatic_memfn_p (arg1, tf_error)
5378 || invalid_nonstatic_memfn_p (arg2, tf_error)
5379 || invalid_nonstatic_memfn_p (arg3, tf_error))
5380 /* We displayed the error message. */;
5381 else
5383 /* ... Otherwise, report the more generic
5384 "no matching operator found" error */
5385 op_error (loc, code, code2, arg1, arg2, arg3, FALSE);
5386 print_z_candidates (loc, candidates);
5389 result = error_mark_node;
5390 break;
5393 else
5395 cand = tourney (candidates, complain);
5396 if (cand == 0)
5398 if (complain & tf_error)
5400 op_error (loc, code, code2, arg1, arg2, arg3, TRUE);
5401 print_z_candidates (loc, candidates);
5403 result = error_mark_node;
5405 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
5407 if (overload)
5408 *overload = cand->fn;
5410 if (resolve_args (arglist, complain) == NULL)
5411 result = error_mark_node;
5412 else
5413 result = build_over_call (cand, LOOKUP_NORMAL, complain);
5415 else
5417 /* Give any warnings we noticed during overload resolution. */
5418 if (cand->warnings && (complain & tf_warning))
5420 struct candidate_warning *w;
5421 for (w = cand->warnings; w; w = w->next)
5422 joust (cand, w->loser, 1, complain);
5425 /* Check for comparison of different enum types. */
5426 switch (code)
5428 case GT_EXPR:
5429 case LT_EXPR:
5430 case GE_EXPR:
5431 case LE_EXPR:
5432 case EQ_EXPR:
5433 case NE_EXPR:
5434 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
5435 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
5436 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
5437 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2)))
5438 && (complain & tf_warning))
5440 warning (OPT_Wenum_compare,
5441 "comparison between %q#T and %q#T",
5442 TREE_TYPE (arg1), TREE_TYPE (arg2));
5444 break;
5445 default:
5446 break;
5449 /* We need to strip any leading REF_BIND so that bitfields
5450 don't cause errors. This should not remove any important
5451 conversions, because builtins don't apply to class
5452 objects directly. */
5453 conv = cand->convs[0];
5454 if (conv->kind == ck_ref_bind)
5455 conv = next_conversion (conv);
5456 arg1 = convert_like (conv, arg1, complain);
5458 if (arg2)
5460 conv = cand->convs[1];
5461 if (conv->kind == ck_ref_bind)
5462 conv = next_conversion (conv);
5463 else
5464 arg2 = decay_conversion (arg2, complain);
5466 /* We need to call warn_logical_operator before
5467 converting arg2 to a boolean_type, but after
5468 decaying an enumerator to its value. */
5469 if (complain & tf_warning)
5470 warn_logical_operator (loc, code, boolean_type_node,
5471 code_orig_arg1, arg1,
5472 code_orig_arg2, arg2);
5474 arg2 = convert_like (conv, arg2, complain);
5476 if (arg3)
5478 conv = cand->convs[2];
5479 if (conv->kind == ck_ref_bind)
5480 conv = next_conversion (conv);
5481 arg3 = convert_like (conv, arg3, complain);
5487 user_defined_result_ready:
5489 /* Free all the conversions we allocated. */
5490 obstack_free (&conversion_obstack, p);
5492 if (result || result_valid_p)
5493 return result;
5495 builtin:
5496 switch (code)
5498 case MODIFY_EXPR:
5499 return cp_build_modify_expr (arg1, code2, arg2, complain);
5501 case INDIRECT_REF:
5502 return cp_build_indirect_ref (arg1, RO_UNARY_STAR, complain);
5504 case TRUTH_ANDIF_EXPR:
5505 case TRUTH_ORIF_EXPR:
5506 case TRUTH_AND_EXPR:
5507 case TRUTH_OR_EXPR:
5508 warn_logical_operator (loc, code, boolean_type_node,
5509 code_orig_arg1, arg1, code_orig_arg2, arg2);
5510 /* Fall through. */
5511 case PLUS_EXPR:
5512 case MINUS_EXPR:
5513 case MULT_EXPR:
5514 case TRUNC_DIV_EXPR:
5515 case GT_EXPR:
5516 case LT_EXPR:
5517 case GE_EXPR:
5518 case LE_EXPR:
5519 case EQ_EXPR:
5520 case NE_EXPR:
5521 case MAX_EXPR:
5522 case MIN_EXPR:
5523 case LSHIFT_EXPR:
5524 case RSHIFT_EXPR:
5525 case TRUNC_MOD_EXPR:
5526 case BIT_AND_EXPR:
5527 case BIT_IOR_EXPR:
5528 case BIT_XOR_EXPR:
5529 return cp_build_binary_op (loc, code, arg1, arg2, complain);
5531 case UNARY_PLUS_EXPR:
5532 case NEGATE_EXPR:
5533 case BIT_NOT_EXPR:
5534 case TRUTH_NOT_EXPR:
5535 case PREINCREMENT_EXPR:
5536 case POSTINCREMENT_EXPR:
5537 case PREDECREMENT_EXPR:
5538 case POSTDECREMENT_EXPR:
5539 case REALPART_EXPR:
5540 case IMAGPART_EXPR:
5541 case ABS_EXPR:
5542 return cp_build_unary_op (code, arg1, candidates != 0, complain);
5544 case ARRAY_REF:
5545 return cp_build_array_ref (input_location, arg1, arg2, complain);
5547 case MEMBER_REF:
5548 return build_m_component_ref (cp_build_indirect_ref (arg1, RO_ARROW_STAR,
5549 complain),
5550 arg2, complain);
5552 /* The caller will deal with these. */
5553 case ADDR_EXPR:
5554 case COMPONENT_REF:
5555 case COMPOUND_EXPR:
5556 return NULL_TREE;
5558 default:
5559 gcc_unreachable ();
5561 return NULL_TREE;
5564 /* Wrapper for above. */
5566 tree
5567 build_new_op (location_t loc, enum tree_code code, int flags,
5568 tree arg1, tree arg2, tree arg3,
5569 tree *overload, tsubst_flags_t complain)
5571 tree ret;
5572 bool subtime = timevar_cond_start (TV_OVERLOAD);
5573 ret = build_new_op_1 (loc, code, flags, arg1, arg2, arg3,
5574 overload, complain);
5575 timevar_cond_stop (TV_OVERLOAD, subtime);
5576 return ret;
5579 /* Returns true iff T, an element of an OVERLOAD chain, is a usual
5580 deallocation function (3.7.4.2 [basic.stc.dynamic.deallocation]). */
5582 static bool
5583 non_placement_deallocation_fn_p (tree t)
5585 /* A template instance is never a usual deallocation function,
5586 regardless of its signature. */
5587 if (TREE_CODE (t) == TEMPLATE_DECL
5588 || primary_template_instantiation_p (t))
5589 return false;
5591 /* If a class T has a member deallocation function named operator delete
5592 with exactly one parameter, then that function is a usual
5593 (non-placement) deallocation function. If class T does not declare
5594 such an operator delete but does declare a member deallocation
5595 function named operator delete with exactly two parameters, the second
5596 of which has type std::size_t (18.2), then this function is a usual
5597 deallocation function. */
5598 t = FUNCTION_ARG_CHAIN (t);
5599 if (t == void_list_node
5600 || (t && same_type_p (TREE_VALUE (t), size_type_node)
5601 && TREE_CHAIN (t) == void_list_node))
5602 return true;
5603 return false;
5606 /* Build a call to operator delete. This has to be handled very specially,
5607 because the restrictions on what signatures match are different from all
5608 other call instances. For a normal delete, only a delete taking (void *)
5609 or (void *, size_t) is accepted. For a placement delete, only an exact
5610 match with the placement new is accepted.
5612 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
5613 ADDR is the pointer to be deleted.
5614 SIZE is the size of the memory block to be deleted.
5615 GLOBAL_P is true if the delete-expression should not consider
5616 class-specific delete operators.
5617 PLACEMENT is the corresponding placement new call, or NULL_TREE.
5619 If this call to "operator delete" is being generated as part to
5620 deallocate memory allocated via a new-expression (as per [expr.new]
5621 which requires that if the initialization throws an exception then
5622 we call a deallocation function), then ALLOC_FN is the allocation
5623 function. */
5625 tree
5626 build_op_delete_call (enum tree_code code, tree addr, tree size,
5627 bool global_p, tree placement,
5628 tree alloc_fn, tsubst_flags_t complain)
5630 tree fn = NULL_TREE;
5631 tree fns, fnname, type, t;
5633 if (addr == error_mark_node)
5634 return error_mark_node;
5636 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
5638 fnname = ansi_opname (code);
5640 if (CLASS_TYPE_P (type)
5641 && COMPLETE_TYPE_P (complete_type (type))
5642 && !global_p)
5643 /* In [class.free]
5645 If the result of the lookup is ambiguous or inaccessible, or if
5646 the lookup selects a placement deallocation function, the
5647 program is ill-formed.
5649 Therefore, we ask lookup_fnfields to complain about ambiguity. */
5651 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
5652 if (fns == error_mark_node)
5653 return error_mark_node;
5655 else
5656 fns = NULL_TREE;
5658 if (fns == NULL_TREE)
5659 fns = lookup_name_nonclass (fnname);
5661 /* Strip const and volatile from addr. */
5662 addr = cp_convert (ptr_type_node, addr, complain);
5664 if (placement)
5666 /* "A declaration of a placement deallocation function matches the
5667 declaration of a placement allocation function if it has the same
5668 number of parameters and, after parameter transformations (8.3.5),
5669 all parameter types except the first are identical."
5671 So we build up the function type we want and ask instantiate_type
5672 to get it for us. */
5673 t = FUNCTION_ARG_CHAIN (alloc_fn);
5674 t = tree_cons (NULL_TREE, ptr_type_node, t);
5675 t = build_function_type (void_type_node, t);
5677 fn = instantiate_type (t, fns, tf_none);
5678 if (fn == error_mark_node)
5679 return NULL_TREE;
5681 if (BASELINK_P (fn))
5682 fn = BASELINK_FUNCTIONS (fn);
5684 /* "If the lookup finds the two-parameter form of a usual deallocation
5685 function (3.7.4.2) and that function, considered as a placement
5686 deallocation function, would have been selected as a match for the
5687 allocation function, the program is ill-formed." */
5688 if (non_placement_deallocation_fn_p (fn))
5690 /* But if the class has an operator delete (void *), then that is
5691 the usual deallocation function, so we shouldn't complain
5692 about using the operator delete (void *, size_t). */
5693 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5694 t; t = OVL_NEXT (t))
5696 tree elt = OVL_CURRENT (t);
5697 if (non_placement_deallocation_fn_p (elt)
5698 && FUNCTION_ARG_CHAIN (elt) == void_list_node)
5699 goto ok;
5701 if (complain & tf_error)
5703 permerror (0, "non-placement deallocation function %q+D", fn);
5704 permerror (input_location, "selected for placement delete");
5706 else
5707 return error_mark_node;
5708 ok:;
5711 else
5712 /* "Any non-placement deallocation function matches a non-placement
5713 allocation function. If the lookup finds a single matching
5714 deallocation function, that function will be called; otherwise, no
5715 deallocation function will be called." */
5716 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5717 t; t = OVL_NEXT (t))
5719 tree elt = OVL_CURRENT (t);
5720 if (non_placement_deallocation_fn_p (elt))
5722 fn = elt;
5723 /* "If a class T has a member deallocation function named
5724 operator delete with exactly one parameter, then that
5725 function is a usual (non-placement) deallocation
5726 function. If class T does not declare such an operator
5727 delete but does declare a member deallocation function named
5728 operator delete with exactly two parameters, the second of
5729 which has type std::size_t (18.2), then this function is a
5730 usual deallocation function."
5732 So (void*) beats (void*, size_t). */
5733 if (FUNCTION_ARG_CHAIN (fn) == void_list_node)
5734 break;
5738 /* If we have a matching function, call it. */
5739 if (fn)
5741 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
5743 /* If the FN is a member function, make sure that it is
5744 accessible. */
5745 if (BASELINK_P (fns))
5746 perform_or_defer_access_check (BASELINK_BINFO (fns), fn, fn,
5747 complain);
5749 /* Core issue 901: It's ok to new a type with deleted delete. */
5750 if (DECL_DELETED_FN (fn) && alloc_fn)
5751 return NULL_TREE;
5753 if (placement)
5755 /* The placement args might not be suitable for overload
5756 resolution at this point, so build the call directly. */
5757 int nargs = call_expr_nargs (placement);
5758 tree *argarray = XALLOCAVEC (tree, nargs);
5759 int i;
5760 argarray[0] = addr;
5761 for (i = 1; i < nargs; i++)
5762 argarray[i] = CALL_EXPR_ARG (placement, i);
5763 mark_used (fn);
5764 return build_cxx_call (fn, nargs, argarray, complain);
5766 else
5768 tree ret;
5769 vec<tree, va_gc> *args = make_tree_vector ();
5770 args->quick_push (addr);
5771 if (FUNCTION_ARG_CHAIN (fn) != void_list_node)
5772 args->quick_push (size);
5773 ret = cp_build_function_call_vec (fn, &args, complain);
5774 release_tree_vector (args);
5775 return ret;
5779 /* [expr.new]
5781 If no unambiguous matching deallocation function can be found,
5782 propagating the exception does not cause the object's memory to
5783 be freed. */
5784 if (alloc_fn)
5786 if ((complain & tf_warning)
5787 && !placement)
5788 warning (0, "no corresponding deallocation function for %qD",
5789 alloc_fn);
5790 return NULL_TREE;
5793 if (complain & tf_error)
5794 error ("no suitable %<operator %s%> for %qT",
5795 operator_name_info[(int)code].name, type);
5796 return error_mark_node;
5799 /* If the current scope isn't allowed to access DECL along
5800 BASETYPE_PATH, give an error. The most derived class in
5801 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
5802 the declaration to use in the error diagnostic. */
5804 bool
5805 enforce_access (tree basetype_path, tree decl, tree diag_decl,
5806 tsubst_flags_t complain)
5808 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
5810 if (!accessible_p (basetype_path, decl, true))
5812 if (complain & tf_error)
5814 if (TREE_PRIVATE (decl))
5815 error ("%q+#D is private", diag_decl);
5816 else if (TREE_PROTECTED (decl))
5817 error ("%q+#D is protected", diag_decl);
5818 else
5819 error ("%q+#D is inaccessible", diag_decl);
5820 error ("within this context");
5822 return false;
5825 return true;
5828 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
5829 bitwise or of LOOKUP_* values. If any errors are warnings are
5830 generated, set *DIAGNOSTIC_FN to "error" or "warning",
5831 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
5832 to NULL. */
5834 static tree
5835 build_temp (tree expr, tree type, int flags,
5836 diagnostic_t *diagnostic_kind, tsubst_flags_t complain)
5838 int savew, savee;
5839 vec<tree, va_gc> *args;
5841 savew = warningcount + werrorcount, savee = errorcount;
5842 args = make_tree_vector_single (expr);
5843 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
5844 &args, type, flags, complain);
5845 release_tree_vector (args);
5846 if (warningcount + werrorcount > savew)
5847 *diagnostic_kind = DK_WARNING;
5848 else if (errorcount > savee)
5849 *diagnostic_kind = DK_ERROR;
5850 else
5851 *diagnostic_kind = DK_UNSPECIFIED;
5852 return expr;
5855 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
5856 EXPR is implicitly converted to type TOTYPE.
5857 FN and ARGNUM are used for diagnostics. */
5859 static void
5860 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
5862 /* Issue warnings about peculiar, but valid, uses of NULL. */
5863 if (expr == null_node && TREE_CODE (totype) != BOOLEAN_TYPE
5864 && ARITHMETIC_TYPE_P (totype))
5866 source_location loc =
5867 expansion_point_location_if_in_system_header (input_location);
5869 if (fn)
5870 warning_at (loc, OPT_Wconversion_null,
5871 "passing NULL to non-pointer argument %P of %qD",
5872 argnum, fn);
5873 else
5874 warning_at (loc, OPT_Wconversion_null,
5875 "converting to non-pointer type %qT from NULL", totype);
5878 /* Issue warnings if "false" is converted to a NULL pointer */
5879 else if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE
5880 && TYPE_PTR_P (totype))
5882 if (fn)
5883 warning_at (input_location, OPT_Wconversion_null,
5884 "converting %<false%> to pointer type for argument %P "
5885 "of %qD", argnum, fn);
5886 else
5887 warning_at (input_location, OPT_Wconversion_null,
5888 "converting %<false%> to pointer type %qT", totype);
5892 /* Perform the conversions in CONVS on the expression EXPR. FN and
5893 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
5894 indicates the `this' argument of a method. INNER is nonzero when
5895 being called to continue a conversion chain. It is negative when a
5896 reference binding will be applied, positive otherwise. If
5897 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
5898 conversions will be emitted if appropriate. If C_CAST_P is true,
5899 this conversion is coming from a C-style cast; in that case,
5900 conversions to inaccessible bases are permitted. */
5902 static tree
5903 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
5904 int inner, bool issue_conversion_warnings,
5905 bool c_cast_p, tsubst_flags_t complain)
5907 tree totype = convs->type;
5908 diagnostic_t diag_kind;
5909 int flags;
5910 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
5912 if (convs->bad_p && !(complain & tf_error))
5913 return error_mark_node;
5915 if (convs->bad_p
5916 && convs->kind != ck_user
5917 && convs->kind != ck_list
5918 && convs->kind != ck_ambig
5919 && (convs->kind != ck_ref_bind
5920 || (convs->user_conv_p && next_conversion (convs)->bad_p))
5921 && (convs->kind != ck_rvalue
5922 || SCALAR_TYPE_P (totype))
5923 && convs->kind != ck_base)
5925 bool complained = false;
5926 conversion *t = convs;
5928 /* Give a helpful error if this is bad because of excess braces. */
5929 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
5930 && SCALAR_TYPE_P (totype)
5931 && CONSTRUCTOR_NELTS (expr) > 0
5932 && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
5934 complained = permerror (loc, "too many braces around initializer "
5935 "for %qT", totype);
5936 while (BRACE_ENCLOSED_INITIALIZER_P (expr)
5937 && CONSTRUCTOR_NELTS (expr) == 1)
5938 expr = CONSTRUCTOR_ELT (expr, 0)->value;
5941 for (; t ; t = next_conversion (t))
5943 if (t->kind == ck_user && t->cand->reason)
5945 permerror (loc, "invalid user-defined conversion "
5946 "from %qT to %qT", TREE_TYPE (expr), totype);
5947 print_z_candidate (loc, "candidate is:", t->cand);
5948 expr = convert_like_real (t, expr, fn, argnum, 1,
5949 /*issue_conversion_warnings=*/false,
5950 /*c_cast_p=*/false,
5951 complain);
5952 if (convs->kind == ck_ref_bind)
5953 return convert_to_reference (totype, expr, CONV_IMPLICIT,
5954 LOOKUP_NORMAL, NULL_TREE,
5955 complain);
5956 else
5957 return cp_convert (totype, expr, complain);
5959 else if (t->kind == ck_user || !t->bad_p)
5961 expr = convert_like_real (t, expr, fn, argnum, 1,
5962 /*issue_conversion_warnings=*/false,
5963 /*c_cast_p=*/false,
5964 complain);
5965 break;
5967 else if (t->kind == ck_ambig)
5968 return convert_like_real (t, expr, fn, argnum, 1,
5969 /*issue_conversion_warnings=*/false,
5970 /*c_cast_p=*/false,
5971 complain);
5972 else if (t->kind == ck_identity)
5973 break;
5975 if (!complained)
5976 complained = permerror (loc, "invalid conversion from %qT to %qT",
5977 TREE_TYPE (expr), totype);
5978 if (complained && fn)
5979 inform (DECL_SOURCE_LOCATION (fn),
5980 "initializing argument %P of %qD", argnum, fn);
5982 return cp_convert (totype, expr, complain);
5985 if (issue_conversion_warnings && (complain & tf_warning))
5986 conversion_null_warnings (totype, expr, fn, argnum);
5988 switch (convs->kind)
5990 case ck_user:
5992 struct z_candidate *cand = convs->cand;
5993 tree convfn = cand->fn;
5994 unsigned i;
5996 /* When converting from an init list we consider explicit
5997 constructors, but actually trying to call one is an error. */
5998 if (DECL_NONCONVERTING_P (convfn) && DECL_CONSTRUCTOR_P (convfn)
5999 /* Unless this is for direct-list-initialization. */
6000 && !(BRACE_ENCLOSED_INITIALIZER_P (expr)
6001 && CONSTRUCTOR_IS_DIRECT_INIT (expr)))
6003 if (!(complain & tf_error))
6004 return error_mark_node;
6005 error ("converting to %qT from initializer list would use "
6006 "explicit constructor %qD", totype, convfn);
6009 /* If we're initializing from {}, it's value-initialization. */
6010 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6011 && CONSTRUCTOR_NELTS (expr) == 0
6012 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
6014 bool direct = CONSTRUCTOR_IS_DIRECT_INIT (expr);
6015 expr = build_value_init (totype, complain);
6016 expr = get_target_expr_sfinae (expr, complain);
6017 if (expr != error_mark_node)
6019 TARGET_EXPR_LIST_INIT_P (expr) = true;
6020 TARGET_EXPR_DIRECT_INIT_P (expr) = direct;
6022 return expr;
6025 expr = mark_rvalue_use (expr);
6027 /* Set user_conv_p on the argument conversions, so rvalue/base
6028 handling knows not to allow any more UDCs. */
6029 for (i = 0; i < cand->num_convs; ++i)
6030 cand->convs[i]->user_conv_p = true;
6032 expr = build_over_call (cand, LOOKUP_NORMAL, complain);
6034 /* If this is a constructor or a function returning an aggr type,
6035 we need to build up a TARGET_EXPR. */
6036 if (DECL_CONSTRUCTOR_P (convfn))
6038 expr = build_cplus_new (totype, expr, complain);
6040 /* Remember that this was list-initialization. */
6041 if (convs->check_narrowing && expr != error_mark_node)
6042 TARGET_EXPR_LIST_INIT_P (expr) = true;
6045 return expr;
6047 case ck_identity:
6048 expr = mark_rvalue_use (expr);
6049 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
6051 int nelts = CONSTRUCTOR_NELTS (expr);
6052 if (nelts == 0)
6053 expr = build_value_init (totype, complain);
6054 else if (nelts == 1)
6055 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6056 else
6057 gcc_unreachable ();
6060 if (type_unknown_p (expr))
6061 expr = instantiate_type (totype, expr, complain);
6062 /* Convert a constant to its underlying value, unless we are
6063 about to bind it to a reference, in which case we need to
6064 leave it as an lvalue. */
6065 if (inner >= 0)
6067 expr = decl_constant_value_safe (expr);
6068 if (expr == null_node && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype))
6069 /* If __null has been converted to an integer type, we do not
6070 want to warn about uses of EXPR as an integer, rather than
6071 as a pointer. */
6072 expr = build_int_cst (totype, 0);
6074 return expr;
6075 case ck_ambig:
6076 /* We leave bad_p off ck_ambig because overload resolution considers
6077 it valid, it just fails when we try to perform it. So we need to
6078 check complain here, too. */
6079 if (complain & tf_error)
6081 /* Call build_user_type_conversion again for the error. */
6082 build_user_type_conversion (totype, convs->u.expr, LOOKUP_NORMAL,
6083 complain);
6084 if (fn)
6085 inform (input_location, "initializing argument %P of %q+D",
6086 argnum, fn);
6088 return error_mark_node;
6090 case ck_list:
6092 /* Conversion to std::initializer_list<T>. */
6093 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
6094 tree new_ctor = build_constructor (init_list_type_node, NULL);
6095 unsigned len = CONSTRUCTOR_NELTS (expr);
6096 tree array, val, field;
6097 vec<constructor_elt, va_gc> *vec = NULL;
6098 unsigned ix;
6100 /* Convert all the elements. */
6101 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
6103 tree sub = convert_like_real (convs->u.list[ix], val, fn, argnum,
6104 1, false, false, complain);
6105 if (sub == error_mark_node)
6106 return sub;
6107 if (!BRACE_ENCLOSED_INITIALIZER_P (val))
6108 check_narrowing (TREE_TYPE (sub), val);
6109 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor), NULL_TREE, sub);
6110 if (!TREE_CONSTANT (sub))
6111 TREE_CONSTANT (new_ctor) = false;
6113 /* Build up the array. */
6114 elttype = cp_build_qualified_type
6115 (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
6116 array = build_array_of_n_type (elttype, len);
6117 array = finish_compound_literal (array, new_ctor, complain);
6118 /* Take the address explicitly rather than via decay_conversion
6119 to avoid the error about taking the address of a temporary. */
6120 array = cp_build_addr_expr (array, complain);
6121 array = cp_convert (build_pointer_type (elttype), array, complain);
6122 if (array == error_mark_node)
6123 return error_mark_node;
6125 /* Build up the initializer_list object. */
6126 totype = complete_type (totype);
6127 field = next_initializable_field (TYPE_FIELDS (totype));
6128 CONSTRUCTOR_APPEND_ELT (vec, field, array);
6129 field = next_initializable_field (DECL_CHAIN (field));
6130 CONSTRUCTOR_APPEND_ELT (vec, field, size_int (len));
6131 new_ctor = build_constructor (totype, vec);
6132 return get_target_expr_sfinae (new_ctor, complain);
6135 case ck_aggr:
6136 if (TREE_CODE (totype) == COMPLEX_TYPE)
6138 tree real = CONSTRUCTOR_ELT (expr, 0)->value;
6139 tree imag = CONSTRUCTOR_ELT (expr, 1)->value;
6140 real = perform_implicit_conversion (TREE_TYPE (totype),
6141 real, complain);
6142 imag = perform_implicit_conversion (TREE_TYPE (totype),
6143 imag, complain);
6144 expr = build2 (COMPLEX_EXPR, totype, real, imag);
6145 return fold_if_not_in_template (expr);
6147 expr = reshape_init (totype, expr, complain);
6148 expr = get_target_expr_sfinae (digest_init (totype, expr, complain),
6149 complain);
6150 if (expr != error_mark_node)
6151 TARGET_EXPR_LIST_INIT_P (expr) = true;
6152 return expr;
6154 default:
6155 break;
6158 expr = convert_like_real (next_conversion (convs), expr, fn, argnum,
6159 convs->kind == ck_ref_bind ? -1 : 1,
6160 convs->kind == ck_ref_bind ? issue_conversion_warnings : false,
6161 c_cast_p,
6162 complain);
6163 if (expr == error_mark_node)
6164 return error_mark_node;
6166 switch (convs->kind)
6168 case ck_rvalue:
6169 expr = decay_conversion (expr, complain);
6170 if (expr == error_mark_node)
6171 return error_mark_node;
6173 if (! MAYBE_CLASS_TYPE_P (totype))
6174 return expr;
6175 /* Else fall through. */
6176 case ck_base:
6177 if (convs->kind == ck_base && !convs->need_temporary_p)
6179 /* We are going to bind a reference directly to a base-class
6180 subobject of EXPR. */
6181 /* Build an expression for `*((base*) &expr)'. */
6182 expr = cp_build_addr_expr (expr, complain);
6183 expr = convert_to_base (expr, build_pointer_type (totype),
6184 !c_cast_p, /*nonnull=*/true, complain);
6185 expr = cp_build_indirect_ref (expr, RO_IMPLICIT_CONVERSION, complain);
6186 return expr;
6189 /* Copy-initialization where the cv-unqualified version of the source
6190 type is the same class as, or a derived class of, the class of the
6191 destination [is treated as direct-initialization]. [dcl.init] */
6192 flags = LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING;
6193 if (convs->user_conv_p)
6194 /* This conversion is being done in the context of a user-defined
6195 conversion (i.e. the second step of copy-initialization), so
6196 don't allow any more. */
6197 flags |= LOOKUP_NO_CONVERSION;
6198 if (convs->rvaluedness_matches_p)
6199 flags |= LOOKUP_PREFER_RVALUE;
6200 if (TREE_CODE (expr) == TARGET_EXPR
6201 && TARGET_EXPR_LIST_INIT_P (expr))
6202 /* Copy-list-initialization doesn't actually involve a copy. */
6203 return expr;
6204 expr = build_temp (expr, totype, flags, &diag_kind, complain);
6205 if (diag_kind && fn && complain)
6206 emit_diagnostic (diag_kind, DECL_SOURCE_LOCATION (fn), 0,
6207 " initializing argument %P of %qD", argnum, fn);
6208 return build_cplus_new (totype, expr, complain);
6210 case ck_ref_bind:
6212 tree ref_type = totype;
6214 if (convs->bad_p && !next_conversion (convs)->bad_p)
6216 gcc_assert (TYPE_REF_IS_RVALUE (ref_type)
6217 && (real_lvalue_p (expr)
6218 || next_conversion(convs)->kind == ck_rvalue));
6220 error_at (loc, "cannot bind %qT lvalue to %qT",
6221 TREE_TYPE (expr), totype);
6222 if (fn)
6223 inform (input_location,
6224 "initializing argument %P of %q+D", argnum, fn);
6225 return error_mark_node;
6228 /* If necessary, create a temporary.
6230 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
6231 that need temporaries, even when their types are reference
6232 compatible with the type of reference being bound, so the
6233 upcoming call to cp_build_addr_expr doesn't fail. */
6234 if (convs->need_temporary_p
6235 || TREE_CODE (expr) == CONSTRUCTOR
6236 || TREE_CODE (expr) == VA_ARG_EXPR)
6238 /* Otherwise, a temporary of type "cv1 T1" is created and
6239 initialized from the initializer expression using the rules
6240 for a non-reference copy-initialization (8.5). */
6242 tree type = TREE_TYPE (ref_type);
6243 cp_lvalue_kind lvalue = real_lvalue_p (expr);
6245 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6246 (type, next_conversion (convs)->type));
6247 if (!CP_TYPE_CONST_NON_VOLATILE_P (type)
6248 && !TYPE_REF_IS_RVALUE (ref_type))
6250 /* If the reference is volatile or non-const, we
6251 cannot create a temporary. */
6252 if (lvalue & clk_bitfield)
6253 error_at (loc, "cannot bind bitfield %qE to %qT",
6254 expr, ref_type);
6255 else if (lvalue & clk_packed)
6256 error_at (loc, "cannot bind packed field %qE to %qT",
6257 expr, ref_type);
6258 else
6259 error_at (loc, "cannot bind rvalue %qE to %qT",
6260 expr, ref_type);
6261 return error_mark_node;
6263 /* If the source is a packed field, and we must use a copy
6264 constructor, then building the target expr will require
6265 binding the field to the reference parameter to the
6266 copy constructor, and we'll end up with an infinite
6267 loop. If we can use a bitwise copy, then we'll be
6268 OK. */
6269 if ((lvalue & clk_packed)
6270 && CLASS_TYPE_P (type)
6271 && type_has_nontrivial_copy_init (type))
6273 error_at (loc, "cannot bind packed field %qE to %qT",
6274 expr, ref_type);
6275 return error_mark_node;
6277 if (lvalue & clk_bitfield)
6279 expr = convert_bitfield_to_declared_type (expr);
6280 expr = fold_convert (type, expr);
6282 expr = build_target_expr_with_type (expr, type, complain);
6285 /* Take the address of the thing to which we will bind the
6286 reference. */
6287 expr = cp_build_addr_expr (expr, complain);
6288 if (expr == error_mark_node)
6289 return error_mark_node;
6291 /* Convert it to a pointer to the type referred to by the
6292 reference. This will adjust the pointer if a derived to
6293 base conversion is being performed. */
6294 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
6295 expr, complain);
6296 /* Convert the pointer to the desired reference type. */
6297 return build_nop (ref_type, expr);
6300 case ck_lvalue:
6301 return decay_conversion (expr, complain);
6303 case ck_qual:
6304 /* Warn about deprecated conversion if appropriate. */
6305 string_conv_p (totype, expr, 1);
6306 break;
6308 case ck_ptr:
6309 if (convs->base_p)
6310 expr = convert_to_base (expr, totype, !c_cast_p,
6311 /*nonnull=*/false, complain);
6312 return build_nop (totype, expr);
6314 case ck_pmem:
6315 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
6316 c_cast_p, complain);
6318 default:
6319 break;
6322 if (convs->check_narrowing)
6323 check_narrowing (totype, expr);
6325 if (issue_conversion_warnings)
6326 expr = cp_convert_and_check (totype, expr, complain);
6327 else
6328 expr = cp_convert (totype, expr, complain);
6330 return expr;
6333 /* ARG is being passed to a varargs function. Perform any conversions
6334 required. Return the converted value. */
6336 tree
6337 convert_arg_to_ellipsis (tree arg, tsubst_flags_t complain)
6339 tree arg_type;
6340 location_t loc = EXPR_LOC_OR_LOC (arg, input_location);
6342 /* [expr.call]
6344 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6345 standard conversions are performed. */
6346 arg = decay_conversion (arg, complain);
6347 arg_type = TREE_TYPE (arg);
6348 /* [expr.call]
6350 If the argument has integral or enumeration type that is subject
6351 to the integral promotions (_conv.prom_), or a floating point
6352 type that is subject to the floating point promotion
6353 (_conv.fpprom_), the value of the argument is converted to the
6354 promoted type before the call. */
6355 if (TREE_CODE (arg_type) == REAL_TYPE
6356 && (TYPE_PRECISION (arg_type)
6357 < TYPE_PRECISION (double_type_node))
6358 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type)))
6360 if ((complain & tf_warning)
6361 && warn_double_promotion && !c_inhibit_evaluation_warnings)
6362 warning_at (loc, OPT_Wdouble_promotion,
6363 "implicit conversion from %qT to %qT when passing "
6364 "argument to function",
6365 arg_type, double_type_node);
6366 arg = convert_to_real (double_type_node, arg);
6368 else if (NULLPTR_TYPE_P (arg_type))
6369 arg = null_pointer_node;
6370 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type))
6372 if (SCOPED_ENUM_P (arg_type) && !abi_version_at_least (6))
6374 if (complain & tf_warning)
6375 warning_at (loc, OPT_Wabi, "scoped enum %qT will not promote to an "
6376 "integral type in a future version of GCC", arg_type);
6377 arg = cp_convert (ENUM_UNDERLYING_TYPE (arg_type), arg, complain);
6379 arg = cp_perform_integral_promotions (arg, complain);
6382 arg = require_complete_type_sfinae (arg, complain);
6383 arg_type = TREE_TYPE (arg);
6385 if (arg != error_mark_node
6386 /* In a template (or ill-formed code), we can have an incomplete type
6387 even after require_complete_type_sfinae, in which case we don't know
6388 whether it has trivial copy or not. */
6389 && COMPLETE_TYPE_P (arg_type))
6391 /* Build up a real lvalue-to-rvalue conversion in case the
6392 copy constructor is trivial but not callable. */
6393 if (!cp_unevaluated_operand && CLASS_TYPE_P (arg_type))
6394 force_rvalue (arg, complain);
6396 /* [expr.call] 5.2.2/7:
6397 Passing a potentially-evaluated argument of class type (Clause 9)
6398 with a non-trivial copy constructor or a non-trivial destructor
6399 with no corresponding parameter is conditionally-supported, with
6400 implementation-defined semantics.
6402 We used to just warn here and do a bitwise copy, but now
6403 cp_expr_size will abort if we try to do that.
6405 If the call appears in the context of a sizeof expression,
6406 it is not potentially-evaluated. */
6407 if (cp_unevaluated_operand == 0
6408 && (type_has_nontrivial_copy_init (arg_type)
6409 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type)))
6411 if (complain & tf_error)
6412 error_at (loc, "cannot pass objects of non-trivially-copyable "
6413 "type %q#T through %<...%>", arg_type);
6414 return error_mark_node;
6418 return arg;
6421 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
6423 tree
6424 build_x_va_arg (source_location loc, tree expr, tree type)
6426 if (processing_template_decl)
6427 return build_min (VA_ARG_EXPR, type, expr);
6429 type = complete_type_or_else (type, NULL_TREE);
6431 if (expr == error_mark_node || !type)
6432 return error_mark_node;
6434 expr = mark_lvalue_use (expr);
6436 if (type_has_nontrivial_copy_init (type)
6437 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
6438 || TREE_CODE (type) == REFERENCE_TYPE)
6440 /* Remove reference types so we don't ICE later on. */
6441 tree type1 = non_reference (type);
6442 /* conditionally-supported behavior [expr.call] 5.2.2/7. */
6443 error ("cannot receive objects of non-trivially-copyable type %q#T "
6444 "through %<...%>; ", type);
6445 expr = convert (build_pointer_type (type1), null_node);
6446 expr = cp_build_indirect_ref (expr, RO_NULL, tf_warning_or_error);
6447 return expr;
6450 return build_va_arg (loc, expr, type);
6453 /* TYPE has been given to va_arg. Apply the default conversions which
6454 would have happened when passed via ellipsis. Return the promoted
6455 type, or the passed type if there is no change. */
6457 tree
6458 cxx_type_promotes_to (tree type)
6460 tree promote;
6462 /* Perform the array-to-pointer and function-to-pointer
6463 conversions. */
6464 type = type_decays_to (type);
6466 promote = type_promotes_to (type);
6467 if (same_type_p (type, promote))
6468 promote = type;
6470 return promote;
6473 /* ARG is a default argument expression being passed to a parameter of
6474 the indicated TYPE, which is a parameter to FN. PARMNUM is the
6475 zero-based argument number. Do any required conversions. Return
6476 the converted value. */
6478 static GTY(()) vec<tree, va_gc> *default_arg_context;
6479 void
6480 push_defarg_context (tree fn)
6481 { vec_safe_push (default_arg_context, fn); }
6483 void
6484 pop_defarg_context (void)
6485 { default_arg_context->pop (); }
6487 tree
6488 convert_default_arg (tree type, tree arg, tree fn, int parmnum,
6489 tsubst_flags_t complain)
6491 int i;
6492 tree t;
6494 /* See through clones. */
6495 fn = DECL_ORIGIN (fn);
6497 /* Detect recursion. */
6498 FOR_EACH_VEC_SAFE_ELT (default_arg_context, i, t)
6499 if (t == fn)
6501 if (complain & tf_error)
6502 error ("recursive evaluation of default argument for %q#D", fn);
6503 return error_mark_node;
6506 /* If the ARG is an unparsed default argument expression, the
6507 conversion cannot be performed. */
6508 if (TREE_CODE (arg) == DEFAULT_ARG)
6510 if (complain & tf_error)
6511 error ("call to %qD uses the default argument for parameter %P, which "
6512 "is not yet defined", fn, parmnum);
6513 return error_mark_node;
6516 push_defarg_context (fn);
6518 if (fn && DECL_TEMPLATE_INFO (fn))
6519 arg = tsubst_default_argument (fn, type, arg, complain);
6521 /* Due to:
6523 [dcl.fct.default]
6525 The names in the expression are bound, and the semantic
6526 constraints are checked, at the point where the default
6527 expressions appears.
6529 we must not perform access checks here. */
6530 push_deferring_access_checks (dk_no_check);
6531 /* We must make a copy of ARG, in case subsequent processing
6532 alters any part of it. */
6533 arg = break_out_target_exprs (arg);
6534 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
6535 ICR_DEFAULT_ARGUMENT, fn, parmnum,
6536 complain);
6537 arg = convert_for_arg_passing (type, arg, complain);
6538 pop_deferring_access_checks();
6540 pop_defarg_context ();
6542 return arg;
6545 /* Returns the type which will really be used for passing an argument of
6546 type TYPE. */
6548 tree
6549 type_passed_as (tree type)
6551 /* Pass classes with copy ctors by invisible reference. */
6552 if (TREE_ADDRESSABLE (type))
6554 type = build_reference_type (type);
6555 /* There are no other pointers to this temporary. */
6556 type = cp_build_qualified_type (type, TYPE_QUAL_RESTRICT);
6558 else if (targetm.calls.promote_prototypes (type)
6559 && INTEGRAL_TYPE_P (type)
6560 && COMPLETE_TYPE_P (type)
6561 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
6562 TYPE_SIZE (integer_type_node)))
6563 type = integer_type_node;
6565 return type;
6568 /* Actually perform the appropriate conversion. */
6570 tree
6571 convert_for_arg_passing (tree type, tree val, tsubst_flags_t complain)
6573 tree bitfield_type;
6575 /* If VAL is a bitfield, then -- since it has already been converted
6576 to TYPE -- it cannot have a precision greater than TYPE.
6578 If it has a smaller precision, we must widen it here. For
6579 example, passing "int f:3;" to a function expecting an "int" will
6580 not result in any conversion before this point.
6582 If the precision is the same we must not risk widening. For
6583 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
6584 often have type "int", even though the C++ type for the field is
6585 "long long". If the value is being passed to a function
6586 expecting an "int", then no conversions will be required. But,
6587 if we call convert_bitfield_to_declared_type, the bitfield will
6588 be converted to "long long". */
6589 bitfield_type = is_bitfield_expr_with_lowered_type (val);
6590 if (bitfield_type
6591 && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
6592 val = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type), val);
6594 if (val == error_mark_node)
6596 /* Pass classes with copy ctors by invisible reference. */
6597 else if (TREE_ADDRESSABLE (type))
6598 val = build1 (ADDR_EXPR, build_reference_type (type), val);
6599 else if (targetm.calls.promote_prototypes (type)
6600 && INTEGRAL_TYPE_P (type)
6601 && COMPLETE_TYPE_P (type)
6602 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
6603 TYPE_SIZE (integer_type_node)))
6604 val = cp_perform_integral_promotions (val, complain);
6605 if ((complain & tf_warning)
6606 && warn_suggest_attribute_format)
6608 tree rhstype = TREE_TYPE (val);
6609 const enum tree_code coder = TREE_CODE (rhstype);
6610 const enum tree_code codel = TREE_CODE (type);
6611 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
6612 && coder == codel
6613 && check_missing_format_attribute (type, rhstype))
6614 warning (OPT_Wsuggest_attribute_format,
6615 "argument of function call might be a candidate for a format attribute");
6617 return val;
6620 /* Returns true iff FN is a function with magic varargs, i.e. ones for
6621 which no conversions at all should be done. This is true for some
6622 builtins which don't act like normal functions. */
6624 bool
6625 magic_varargs_p (tree fn)
6627 if (flag_cilkplus && is_cilkplus_reduce_builtin (fn) != BUILT_IN_NONE)
6628 return true;
6630 if (DECL_BUILT_IN (fn))
6631 switch (DECL_FUNCTION_CODE (fn))
6633 case BUILT_IN_CLASSIFY_TYPE:
6634 case BUILT_IN_CONSTANT_P:
6635 case BUILT_IN_NEXT_ARG:
6636 case BUILT_IN_VA_START:
6637 return true;
6639 default:;
6640 return lookup_attribute ("type generic",
6641 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
6644 return false;
6647 /* Returns the decl of the dispatcher function if FN is a function version. */
6649 tree
6650 get_function_version_dispatcher (tree fn)
6652 tree dispatcher_decl = NULL;
6654 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
6655 && DECL_FUNCTION_VERSIONED (fn));
6657 gcc_assert (targetm.get_function_versions_dispatcher);
6658 dispatcher_decl = targetm.get_function_versions_dispatcher (fn);
6660 if (dispatcher_decl == NULL)
6662 error_at (input_location, "use of multiversioned function "
6663 "without a default");
6664 return NULL;
6667 retrofit_lang_decl (dispatcher_decl);
6668 gcc_assert (dispatcher_decl != NULL);
6669 return dispatcher_decl;
6672 /* fn is a function version dispatcher that is marked used. Mark all the
6673 semantically identical function versions it will dispatch as used. */
6675 void
6676 mark_versions_used (tree fn)
6678 struct cgraph_node *node;
6679 struct cgraph_function_version_info *node_v;
6680 struct cgraph_function_version_info *it_v;
6682 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
6684 node = cgraph_get_node (fn);
6685 if (node == NULL)
6686 return;
6688 gcc_assert (node->dispatcher_function);
6690 node_v = get_cgraph_node_version (node);
6691 if (node_v == NULL)
6692 return;
6694 /* All semantically identical versions are chained. Traverse and mark each
6695 one of them as used. */
6696 it_v = node_v->next;
6697 while (it_v != NULL)
6699 mark_used (it_v->this_node->decl);
6700 it_v = it_v->next;
6704 /* Subroutine of the various build_*_call functions. Overload resolution
6705 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
6706 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
6707 bitmask of various LOOKUP_* flags which apply to the call itself. */
6709 static tree
6710 build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
6712 tree fn = cand->fn;
6713 const vec<tree, va_gc> *args = cand->args;
6714 tree first_arg = cand->first_arg;
6715 conversion **convs = cand->convs;
6716 conversion *conv;
6717 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
6718 int parmlen;
6719 tree val;
6720 int i = 0;
6721 int j = 0;
6722 unsigned int arg_index = 0;
6723 int is_method = 0;
6724 int nargs;
6725 tree *argarray;
6726 bool already_used = false;
6728 /* In a template, there is no need to perform all of the work that
6729 is normally done. We are only interested in the type of the call
6730 expression, i.e., the return type of the function. Any semantic
6731 errors will be deferred until the template is instantiated. */
6732 if (processing_template_decl)
6734 tree expr, addr;
6735 tree return_type;
6736 const tree *argarray;
6737 unsigned int nargs;
6739 return_type = TREE_TYPE (TREE_TYPE (fn));
6740 nargs = vec_safe_length (args);
6741 if (first_arg == NULL_TREE)
6742 argarray = args->address ();
6743 else
6745 tree *alcarray;
6746 unsigned int ix;
6747 tree arg;
6749 ++nargs;
6750 alcarray = XALLOCAVEC (tree, nargs);
6751 alcarray[0] = first_arg;
6752 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
6753 alcarray[ix + 1] = arg;
6754 argarray = alcarray;
6757 addr = build_addr_func (fn, complain);
6758 if (addr == error_mark_node)
6759 return error_mark_node;
6760 expr = build_call_array_loc (input_location, return_type,
6761 addr, nargs, argarray);
6762 if (TREE_THIS_VOLATILE (fn) && cfun)
6763 current_function_returns_abnormally = 1;
6764 return convert_from_reference (expr);
6767 /* Give any warnings we noticed during overload resolution. */
6768 if (cand->warnings && (complain & tf_warning))
6770 struct candidate_warning *w;
6771 for (w = cand->warnings; w; w = w->next)
6772 joust (cand, w->loser, 1, complain);
6775 /* Make =delete work with SFINAE. */
6776 if (DECL_DELETED_FN (fn) && !(complain & tf_error))
6777 return error_mark_node;
6779 if (DECL_FUNCTION_MEMBER_P (fn))
6781 tree access_fn;
6782 /* If FN is a template function, two cases must be considered.
6783 For example:
6785 struct A {
6786 protected:
6787 template <class T> void f();
6789 template <class T> struct B {
6790 protected:
6791 void g();
6793 struct C : A, B<int> {
6794 using A::f; // #1
6795 using B<int>::g; // #2
6798 In case #1 where `A::f' is a member template, DECL_ACCESS is
6799 recorded in the primary template but not in its specialization.
6800 We check access of FN using its primary template.
6802 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
6803 because it is a member of class template B, DECL_ACCESS is
6804 recorded in the specialization `B<int>::g'. We cannot use its
6805 primary template because `B<T>::g' and `B<int>::g' may have
6806 different access. */
6807 if (DECL_TEMPLATE_INFO (fn)
6808 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
6809 access_fn = DECL_TI_TEMPLATE (fn);
6810 else
6811 access_fn = fn;
6812 if (!perform_or_defer_access_check (cand->access_path, access_fn,
6813 fn, complain))
6814 return error_mark_node;
6817 /* If we're checking for implicit delete, don't bother with argument
6818 conversions. */
6819 if (flags & LOOKUP_SPECULATIVE)
6821 if (DECL_DELETED_FN (fn))
6823 if (complain & tf_error)
6824 mark_used (fn);
6825 return error_mark_node;
6827 if (cand->viable == 1)
6828 return fn;
6829 else if (!(complain & tf_error))
6830 /* Reject bad conversions now. */
6831 return error_mark_node;
6832 /* else continue to get conversion error. */
6835 /* N3276 magic doesn't apply to nested calls. */
6836 int decltype_flag = (complain & tf_decltype);
6837 complain &= ~tf_decltype;
6839 /* Find maximum size of vector to hold converted arguments. */
6840 parmlen = list_length (parm);
6841 nargs = vec_safe_length (args) + (first_arg != NULL_TREE ? 1 : 0);
6842 if (parmlen > nargs)
6843 nargs = parmlen;
6844 argarray = XALLOCAVEC (tree, nargs);
6846 /* The implicit parameters to a constructor are not considered by overload
6847 resolution, and must be of the proper type. */
6848 if (DECL_CONSTRUCTOR_P (fn))
6850 tree object_arg;
6851 if (first_arg != NULL_TREE)
6853 object_arg = first_arg;
6854 first_arg = NULL_TREE;
6856 else
6858 object_arg = (*args)[arg_index];
6859 ++arg_index;
6861 argarray[j++] = build_this (object_arg);
6862 parm = TREE_CHAIN (parm);
6863 /* We should never try to call the abstract constructor. */
6864 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
6866 if (DECL_HAS_VTT_PARM_P (fn))
6868 argarray[j++] = (*args)[arg_index];
6869 ++arg_index;
6870 parm = TREE_CHAIN (parm);
6873 /* Bypass access control for 'this' parameter. */
6874 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
6876 tree parmtype = TREE_VALUE (parm);
6877 tree arg = build_this (first_arg != NULL_TREE
6878 ? first_arg
6879 : (*args)[arg_index]);
6880 tree argtype = TREE_TYPE (arg);
6881 tree converted_arg;
6882 tree base_binfo;
6884 if (convs[i]->bad_p)
6886 if (complain & tf_error)
6887 permerror (input_location, "passing %qT as %<this%> argument of %q#D discards qualifiers",
6888 TREE_TYPE (argtype), fn);
6889 else
6890 return error_mark_node;
6893 /* See if the function member or the whole class type is declared
6894 final and the call can be devirtualized. */
6895 if (DECL_FINAL_P (fn)
6896 || CLASSTYPE_FINAL (TYPE_METHOD_BASETYPE (TREE_TYPE (fn))))
6897 flags |= LOOKUP_NONVIRTUAL;
6899 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
6900 X is called for an object that is not of type X, or of a type
6901 derived from X, the behavior is undefined.
6903 So we can assume that anything passed as 'this' is non-null, and
6904 optimize accordingly. */
6905 gcc_assert (TYPE_PTR_P (parmtype));
6906 /* Convert to the base in which the function was declared. */
6907 gcc_assert (cand->conversion_path != NULL_TREE);
6908 converted_arg = build_base_path (PLUS_EXPR,
6909 arg,
6910 cand->conversion_path,
6911 1, complain);
6912 /* Check that the base class is accessible. */
6913 if (!accessible_base_p (TREE_TYPE (argtype),
6914 BINFO_TYPE (cand->conversion_path), true))
6916 if (complain & tf_error)
6917 error ("%qT is not an accessible base of %qT",
6918 BINFO_TYPE (cand->conversion_path),
6919 TREE_TYPE (argtype));
6920 else
6921 return error_mark_node;
6923 /* If fn was found by a using declaration, the conversion path
6924 will be to the derived class, not the base declaring fn. We
6925 must convert from derived to base. */
6926 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
6927 TREE_TYPE (parmtype), ba_unique,
6928 NULL, complain);
6929 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
6930 base_binfo, 1, complain);
6932 argarray[j++] = converted_arg;
6933 parm = TREE_CHAIN (parm);
6934 if (first_arg != NULL_TREE)
6935 first_arg = NULL_TREE;
6936 else
6937 ++arg_index;
6938 ++i;
6939 is_method = 1;
6942 gcc_assert (first_arg == NULL_TREE);
6943 for (; arg_index < vec_safe_length (args) && parm;
6944 parm = TREE_CHAIN (parm), ++arg_index, ++i)
6946 tree type = TREE_VALUE (parm);
6947 tree arg = (*args)[arg_index];
6948 bool conversion_warning = true;
6950 conv = convs[i];
6952 /* If the argument is NULL and used to (implicitly) instantiate a
6953 template function (and bind one of the template arguments to
6954 the type of 'long int'), we don't want to warn about passing NULL
6955 to non-pointer argument.
6956 For example, if we have this template function:
6958 template<typename T> void func(T x) {}
6960 we want to warn (when -Wconversion is enabled) in this case:
6962 void foo() {
6963 func<int>(NULL);
6966 but not in this case:
6968 void foo() {
6969 func(NULL);
6972 if (arg == null_node
6973 && DECL_TEMPLATE_INFO (fn)
6974 && cand->template_decl
6975 && !(flags & LOOKUP_EXPLICIT_TMPL_ARGS))
6976 conversion_warning = false;
6978 /* Warn about initializer_list deduction that isn't currently in the
6979 working draft. */
6980 if (cxx_dialect > cxx98
6981 && flag_deduce_init_list
6982 && cand->template_decl
6983 && is_std_init_list (non_reference (type))
6984 && BRACE_ENCLOSED_INITIALIZER_P (arg))
6986 tree tmpl = TI_TEMPLATE (cand->template_decl);
6987 tree realparm = chain_index (j, DECL_ARGUMENTS (cand->fn));
6988 tree patparm = get_pattern_parm (realparm, tmpl);
6989 tree pattype = TREE_TYPE (patparm);
6990 if (PACK_EXPANSION_P (pattype))
6991 pattype = PACK_EXPANSION_PATTERN (pattype);
6992 pattype = non_reference (pattype);
6994 if (TREE_CODE (pattype) == TEMPLATE_TYPE_PARM
6995 && (cand->explicit_targs == NULL_TREE
6996 || (TREE_VEC_LENGTH (cand->explicit_targs)
6997 <= TEMPLATE_TYPE_IDX (pattype))))
6999 pedwarn (input_location, 0, "deducing %qT as %qT",
7000 non_reference (TREE_TYPE (patparm)),
7001 non_reference (type));
7002 pedwarn (input_location, 0, " in call to %q+D", cand->fn);
7003 pedwarn (input_location, 0,
7004 " (you can disable this with -fno-deduce-init-list)");
7007 val = convert_like_with_context (conv, arg, fn, i - is_method,
7008 conversion_warning
7009 ? complain
7010 : complain & (~tf_warning));
7012 val = convert_for_arg_passing (type, val, complain);
7014 if (val == error_mark_node)
7015 return error_mark_node;
7016 else
7017 argarray[j++] = val;
7020 /* Default arguments */
7021 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
7023 if (TREE_VALUE (parm) == error_mark_node)
7024 return error_mark_node;
7025 argarray[j++] = convert_default_arg (TREE_VALUE (parm),
7026 TREE_PURPOSE (parm),
7027 fn, i - is_method,
7028 complain);
7031 /* Ellipsis */
7032 for (; arg_index < vec_safe_length (args); ++arg_index)
7034 tree a = (*args)[arg_index];
7035 if (magic_varargs_p (fn))
7036 /* Do no conversions for magic varargs. */
7037 a = mark_type_use (a);
7038 else
7039 a = convert_arg_to_ellipsis (a, complain);
7040 argarray[j++] = a;
7043 gcc_assert (j <= nargs);
7044 nargs = j;
7046 check_function_arguments (TREE_TYPE (fn), nargs, argarray);
7048 /* Avoid actually calling copy constructors and copy assignment operators,
7049 if possible. */
7051 if (! flag_elide_constructors)
7052 /* Do things the hard way. */;
7053 else if (cand->num_convs == 1
7054 && (DECL_COPY_CONSTRUCTOR_P (fn)
7055 || DECL_MOVE_CONSTRUCTOR_P (fn)))
7057 tree targ;
7058 tree arg = argarray[num_artificial_parms_for (fn)];
7059 tree fa;
7060 bool trivial = trivial_fn_p (fn);
7062 /* Pull out the real argument, disregarding const-correctness. */
7063 targ = arg;
7064 while (CONVERT_EXPR_P (targ)
7065 || TREE_CODE (targ) == NON_LVALUE_EXPR)
7066 targ = TREE_OPERAND (targ, 0);
7067 if (TREE_CODE (targ) == ADDR_EXPR)
7069 targ = TREE_OPERAND (targ, 0);
7070 if (!same_type_ignoring_top_level_qualifiers_p
7071 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
7072 targ = NULL_TREE;
7074 else
7075 targ = NULL_TREE;
7077 if (targ)
7078 arg = targ;
7079 else
7080 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
7082 /* [class.copy]: the copy constructor is implicitly defined even if
7083 the implementation elided its use. */
7084 if (!trivial || DECL_DELETED_FN (fn))
7086 mark_used (fn);
7087 already_used = true;
7090 /* If we're creating a temp and we already have one, don't create a
7091 new one. If we're not creating a temp but we get one, use
7092 INIT_EXPR to collapse the temp into our target. Otherwise, if the
7093 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
7094 temp or an INIT_EXPR otherwise. */
7095 fa = argarray[0];
7096 if (integer_zerop (fa))
7098 if (TREE_CODE (arg) == TARGET_EXPR)
7099 return arg;
7100 else if (trivial)
7101 return force_target_expr (DECL_CONTEXT (fn), arg, complain);
7103 else if (TREE_CODE (arg) == TARGET_EXPR || trivial)
7105 tree to = stabilize_reference (cp_build_indirect_ref (fa, RO_NULL,
7106 complain));
7108 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
7109 return val;
7112 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
7113 && trivial_fn_p (fn)
7114 && !DECL_DELETED_FN (fn))
7116 tree to = stabilize_reference
7117 (cp_build_indirect_ref (argarray[0], RO_NULL, complain));
7118 tree type = TREE_TYPE (to);
7119 tree as_base = CLASSTYPE_AS_BASE (type);
7120 tree arg = argarray[1];
7122 if (is_really_empty_class (type))
7124 /* Avoid copying empty classes. */
7125 val = build2 (COMPOUND_EXPR, void_type_node, to, arg);
7126 TREE_NO_WARNING (val) = 1;
7127 val = build2 (COMPOUND_EXPR, type, val, to);
7128 TREE_NO_WARNING (val) = 1;
7130 else if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
7132 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
7133 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
7135 else
7137 /* We must only copy the non-tail padding parts. */
7138 tree arg0, arg2, t;
7139 tree array_type, alias_set;
7141 arg2 = TYPE_SIZE_UNIT (as_base);
7142 arg0 = cp_build_addr_expr (to, complain);
7144 array_type = build_array_type (char_type_node,
7145 build_index_type
7146 (size_binop (MINUS_EXPR,
7147 arg2, size_int (1))));
7148 alias_set = build_int_cst (build_pointer_type (type), 0);
7149 t = build2 (MODIFY_EXPR, void_type_node,
7150 build2 (MEM_REF, array_type, arg0, alias_set),
7151 build2 (MEM_REF, array_type, arg, alias_set));
7152 val = build2 (COMPOUND_EXPR, TREE_TYPE (to), t, to);
7153 TREE_NO_WARNING (val) = 1;
7156 return val;
7158 else if (DECL_DESTRUCTOR_P (fn)
7159 && trivial_fn_p (fn)
7160 && !DECL_DELETED_FN (fn))
7161 return fold_convert (void_type_node, argarray[0]);
7162 /* FIXME handle trivial default constructor, too. */
7164 /* For calls to a multi-versioned function, overload resolution
7165 returns the function with the highest target priority, that is,
7166 the version that will checked for dispatching first. If this
7167 version is inlinable, a direct call to this version can be made
7168 otherwise the call should go through the dispatcher. */
7170 if (DECL_FUNCTION_VERSIONED (fn)
7171 && (current_function_decl == NULL
7172 || !targetm.target_option.can_inline_p (current_function_decl, fn)))
7174 fn = get_function_version_dispatcher (fn);
7175 if (fn == NULL)
7176 return NULL;
7177 if (!already_used)
7178 mark_versions_used (fn);
7181 if (!already_used
7182 && !mark_used (fn))
7183 return error_mark_node;
7185 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0
7186 /* Don't mess with virtual lookup in fold_non_dependent_expr; virtual
7187 functions can't be constexpr. */
7188 && !in_template_function ())
7190 tree t;
7191 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
7192 DECL_CONTEXT (fn),
7193 ba_any, NULL, complain);
7194 gcc_assert (binfo && binfo != error_mark_node);
7196 /* Warn about deprecated virtual functions now, since we're about
7197 to throw away the decl. */
7198 if (TREE_DEPRECATED (fn))
7199 warn_deprecated_use (fn, NULL_TREE);
7201 argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1,
7202 complain);
7203 if (TREE_SIDE_EFFECTS (argarray[0]))
7204 argarray[0] = save_expr (argarray[0]);
7205 t = build_pointer_type (TREE_TYPE (fn));
7206 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
7207 fn = build_java_interface_fn_ref (fn, argarray[0]);
7208 else
7209 fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
7210 TREE_TYPE (fn) = t;
7212 else
7214 fn = build_addr_func (fn, complain);
7215 if (fn == error_mark_node)
7216 return error_mark_node;
7219 return build_cxx_call (fn, nargs, argarray, complain|decltype_flag);
7222 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
7223 This function performs no overload resolution, conversion, or other
7224 high-level operations. */
7226 tree
7227 build_cxx_call (tree fn, int nargs, tree *argarray,
7228 tsubst_flags_t complain)
7230 tree fndecl;
7231 int optimize_sav;
7233 /* Remember roughly where this call is. */
7234 location_t loc = EXPR_LOC_OR_LOC (fn, input_location);
7235 fn = build_call_a (fn, nargs, argarray);
7236 SET_EXPR_LOCATION (fn, loc);
7238 fndecl = get_callee_fndecl (fn);
7240 /* Check that arguments to builtin functions match the expectations. */
7241 if (fndecl
7242 && DECL_BUILT_IN (fndecl)
7243 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
7244 && !check_builtin_function_arguments (fndecl, nargs, argarray))
7245 return error_mark_node;
7247 /* If it is a built-in array notation function, then the return type of
7248 the function is the element type of the array passed in as array
7249 notation (i.e. the first parameter of the function). */
7250 if (flag_cilkplus && TREE_CODE (fn) == CALL_EXPR)
7252 enum built_in_function bif =
7253 is_cilkplus_reduce_builtin (CALL_EXPR_FN (fn));
7254 if (bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ADD
7255 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MUL
7256 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MAX
7257 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MIN
7258 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE
7259 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MUTATING)
7261 /* for bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_ZERO or
7262 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_ZERO or
7263 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_NONZERO or
7264 BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_NONZERO or
7265 BUILT_IN_CILKPLUS_SEC_REDUCE_MIN_IND or
7266 BUILT_IN_CILKPLUS_SEC_REDUCE_MAX_IND
7267 The pre-defined return-type is the correct one. */
7268 tree array_ntn = CALL_EXPR_ARG (fn, 0);
7269 TREE_TYPE (fn) = TREE_TYPE (array_ntn);
7270 return fn;
7274 /* Some built-in function calls will be evaluated at compile-time in
7275 fold (). Set optimize to 1 when folding __builtin_constant_p inside
7276 a constexpr function so that fold_builtin_1 doesn't fold it to 0. */
7277 optimize_sav = optimize;
7278 if (!optimize && fndecl && DECL_IS_BUILTIN_CONSTANT_P (fndecl)
7279 && current_function_decl
7280 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
7281 optimize = 1;
7282 fn = fold_if_not_in_template (fn);
7283 optimize = optimize_sav;
7285 if (VOID_TYPE_P (TREE_TYPE (fn)))
7286 return fn;
7288 /* 5.2.2/11: If a function call is a prvalue of object type: if the
7289 function call is either the operand of a decltype-specifier or the
7290 right operand of a comma operator that is the operand of a
7291 decltype-specifier, a temporary object is not introduced for the
7292 prvalue. The type of the prvalue may be incomplete. */
7293 if (!(complain & tf_decltype))
7295 fn = require_complete_type_sfinae (fn, complain);
7296 if (fn == error_mark_node)
7297 return error_mark_node;
7299 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
7300 fn = build_cplus_new (TREE_TYPE (fn), fn, complain);
7302 return convert_from_reference (fn);
7305 static GTY(()) tree java_iface_lookup_fn;
7307 /* Make an expression which yields the address of the Java interface
7308 method FN. This is achieved by generating a call to libjava's
7309 _Jv_LookupInterfaceMethodIdx(). */
7311 static tree
7312 build_java_interface_fn_ref (tree fn, tree instance)
7314 tree lookup_fn, method, idx;
7315 tree klass_ref, iface, iface_ref;
7316 int i;
7318 if (!java_iface_lookup_fn)
7320 tree ftype = build_function_type_list (ptr_type_node,
7321 ptr_type_node, ptr_type_node,
7322 java_int_type_node, NULL_TREE);
7323 java_iface_lookup_fn
7324 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx", ftype,
7325 0, NOT_BUILT_IN, NULL, NULL_TREE);
7328 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
7329 This is the first entry in the vtable. */
7330 klass_ref = build_vtbl_ref (cp_build_indirect_ref (instance, RO_NULL,
7331 tf_warning_or_error),
7332 integer_zero_node);
7334 /* Get the java.lang.Class pointer for the interface being called. */
7335 iface = DECL_CONTEXT (fn);
7336 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
7337 if (!iface_ref || !VAR_P (iface_ref)
7338 || DECL_CONTEXT (iface_ref) != iface)
7340 error ("could not find class$ field in java interface type %qT",
7341 iface);
7342 return error_mark_node;
7344 iface_ref = build_address (iface_ref);
7345 iface_ref = convert (build_pointer_type (iface), iface_ref);
7347 /* Determine the itable index of FN. */
7348 i = 1;
7349 for (method = TYPE_METHODS (iface); method; method = DECL_CHAIN (method))
7351 if (!DECL_VIRTUAL_P (method))
7352 continue;
7353 if (fn == method)
7354 break;
7355 i++;
7357 idx = build_int_cst (NULL_TREE, i);
7359 lookup_fn = build1 (ADDR_EXPR,
7360 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
7361 java_iface_lookup_fn);
7362 return build_call_nary (ptr_type_node, lookup_fn,
7363 3, klass_ref, iface_ref, idx);
7366 /* Returns the value to use for the in-charge parameter when making a
7367 call to a function with the indicated NAME.
7369 FIXME:Can't we find a neater way to do this mapping? */
7371 tree
7372 in_charge_arg_for_name (tree name)
7374 if (name == base_ctor_identifier
7375 || name == base_dtor_identifier)
7376 return integer_zero_node;
7377 else if (name == complete_ctor_identifier)
7378 return integer_one_node;
7379 else if (name == complete_dtor_identifier)
7380 return integer_two_node;
7381 else if (name == deleting_dtor_identifier)
7382 return integer_three_node;
7384 /* This function should only be called with one of the names listed
7385 above. */
7386 gcc_unreachable ();
7387 return NULL_TREE;
7390 /* Build a call to a constructor, destructor, or an assignment
7391 operator for INSTANCE, an expression with class type. NAME
7392 indicates the special member function to call; *ARGS are the
7393 arguments. ARGS may be NULL. This may change ARGS. BINFO
7394 indicates the base of INSTANCE that is to be passed as the `this'
7395 parameter to the member function called.
7397 FLAGS are the LOOKUP_* flags to use when processing the call.
7399 If NAME indicates a complete object constructor, INSTANCE may be
7400 NULL_TREE. In this case, the caller will call build_cplus_new to
7401 store the newly constructed object into a VAR_DECL. */
7403 tree
7404 build_special_member_call (tree instance, tree name, vec<tree, va_gc> **args,
7405 tree binfo, int flags, tsubst_flags_t complain)
7407 tree fns;
7408 /* The type of the subobject to be constructed or destroyed. */
7409 tree class_type;
7410 vec<tree, va_gc> *allocated = NULL;
7411 tree ret;
7413 gcc_assert (name == complete_ctor_identifier
7414 || name == base_ctor_identifier
7415 || name == complete_dtor_identifier
7416 || name == base_dtor_identifier
7417 || name == deleting_dtor_identifier
7418 || name == ansi_assopname (NOP_EXPR));
7419 if (TYPE_P (binfo))
7421 /* Resolve the name. */
7422 if (!complete_type_or_maybe_complain (binfo, NULL_TREE, complain))
7423 return error_mark_node;
7425 binfo = TYPE_BINFO (binfo);
7428 gcc_assert (binfo != NULL_TREE);
7430 class_type = BINFO_TYPE (binfo);
7432 /* Handle the special case where INSTANCE is NULL_TREE. */
7433 if (name == complete_ctor_identifier && !instance)
7435 instance = build_int_cst (build_pointer_type (class_type), 0);
7436 instance = build1 (INDIRECT_REF, class_type, instance);
7438 else
7440 if (name == complete_dtor_identifier
7441 || name == base_dtor_identifier
7442 || name == deleting_dtor_identifier)
7443 gcc_assert (args == NULL || vec_safe_is_empty (*args));
7445 /* Convert to the base class, if necessary. */
7446 if (!same_type_ignoring_top_level_qualifiers_p
7447 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
7449 if (name != ansi_assopname (NOP_EXPR))
7450 /* For constructors and destructors, either the base is
7451 non-virtual, or it is virtual but we are doing the
7452 conversion from a constructor or destructor for the
7453 complete object. In either case, we can convert
7454 statically. */
7455 instance = convert_to_base_statically (instance, binfo);
7456 else
7457 /* However, for assignment operators, we must convert
7458 dynamically if the base is virtual. */
7459 instance = build_base_path (PLUS_EXPR, instance,
7460 binfo, /*nonnull=*/1, complain);
7464 gcc_assert (instance != NULL_TREE);
7466 fns = lookup_fnfields (binfo, name, 1);
7468 /* When making a call to a constructor or destructor for a subobject
7469 that uses virtual base classes, pass down a pointer to a VTT for
7470 the subobject. */
7471 if ((name == base_ctor_identifier
7472 || name == base_dtor_identifier)
7473 && CLASSTYPE_VBASECLASSES (class_type))
7475 tree vtt;
7476 tree sub_vtt;
7478 /* If the current function is a complete object constructor
7479 or destructor, then we fetch the VTT directly.
7480 Otherwise, we look it up using the VTT we were given. */
7481 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
7482 vtt = decay_conversion (vtt, complain);
7483 if (vtt == error_mark_node)
7484 return error_mark_node;
7485 vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
7486 build2 (EQ_EXPR, boolean_type_node,
7487 current_in_charge_parm, integer_zero_node),
7488 current_vtt_parm,
7489 vtt);
7490 if (BINFO_SUBVTT_INDEX (binfo))
7491 sub_vtt = fold_build_pointer_plus (vtt, BINFO_SUBVTT_INDEX (binfo));
7492 else
7493 sub_vtt = vtt;
7495 if (args == NULL)
7497 allocated = make_tree_vector ();
7498 args = &allocated;
7501 vec_safe_insert (*args, 0, sub_vtt);
7504 ret = build_new_method_call (instance, fns, args,
7505 TYPE_BINFO (BINFO_TYPE (binfo)),
7506 flags, /*fn=*/NULL,
7507 complain);
7509 if (allocated != NULL)
7510 release_tree_vector (allocated);
7512 if ((complain & tf_error)
7513 && (flags & LOOKUP_DELEGATING_CONS)
7514 && name == complete_ctor_identifier
7515 && TREE_CODE (ret) == CALL_EXPR
7516 && (DECL_ABSTRACT_ORIGIN (TREE_OPERAND (CALL_EXPR_FN (ret), 0))
7517 == current_function_decl))
7518 error ("constructor delegates to itself");
7520 return ret;
7523 /* Return the NAME, as a C string. The NAME indicates a function that
7524 is a member of TYPE. *FREE_P is set to true if the caller must
7525 free the memory returned.
7527 Rather than go through all of this, we should simply set the names
7528 of constructors and destructors appropriately, and dispense with
7529 ctor_identifier, dtor_identifier, etc. */
7531 static char *
7532 name_as_c_string (tree name, tree type, bool *free_p)
7534 char *pretty_name;
7536 /* Assume that we will not allocate memory. */
7537 *free_p = false;
7538 /* Constructors and destructors are special. */
7539 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7541 pretty_name
7542 = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type))));
7543 /* For a destructor, add the '~'. */
7544 if (name == complete_dtor_identifier
7545 || name == base_dtor_identifier
7546 || name == deleting_dtor_identifier)
7548 pretty_name = concat ("~", pretty_name, NULL);
7549 /* Remember that we need to free the memory allocated. */
7550 *free_p = true;
7553 else if (IDENTIFIER_TYPENAME_P (name))
7555 pretty_name = concat ("operator ",
7556 type_as_string_translate (TREE_TYPE (name),
7557 TFF_PLAIN_IDENTIFIER),
7558 NULL);
7559 /* Remember that we need to free the memory allocated. */
7560 *free_p = true;
7562 else
7563 pretty_name = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (name)));
7565 return pretty_name;
7568 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
7569 be set, upon return, to the function called. ARGS may be NULL.
7570 This may change ARGS. */
7572 static tree
7573 build_new_method_call_1 (tree instance, tree fns, vec<tree, va_gc> **args,
7574 tree conversion_path, int flags,
7575 tree *fn_p, tsubst_flags_t complain)
7577 struct z_candidate *candidates = 0, *cand;
7578 tree explicit_targs = NULL_TREE;
7579 tree basetype = NULL_TREE;
7580 tree access_binfo, binfo;
7581 tree optype;
7582 tree first_mem_arg = NULL_TREE;
7583 tree name;
7584 bool skip_first_for_error;
7585 vec<tree, va_gc> *user_args;
7586 tree call;
7587 tree fn;
7588 int template_only = 0;
7589 bool any_viable_p;
7590 tree orig_instance;
7591 tree orig_fns;
7592 vec<tree, va_gc> *orig_args = NULL;
7593 void *p;
7595 gcc_assert (instance != NULL_TREE);
7597 /* We don't know what function we're going to call, yet. */
7598 if (fn_p)
7599 *fn_p = NULL_TREE;
7601 if (error_operand_p (instance)
7602 || !fns || error_operand_p (fns))
7603 return error_mark_node;
7605 if (!BASELINK_P (fns))
7607 if (complain & tf_error)
7608 error ("call to non-function %qD", fns);
7609 return error_mark_node;
7612 orig_instance = instance;
7613 orig_fns = fns;
7615 /* Dismantle the baselink to collect all the information we need. */
7616 if (!conversion_path)
7617 conversion_path = BASELINK_BINFO (fns);
7618 access_binfo = BASELINK_ACCESS_BINFO (fns);
7619 binfo = BASELINK_BINFO (fns);
7620 optype = BASELINK_OPTYPE (fns);
7621 fns = BASELINK_FUNCTIONS (fns);
7622 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7624 explicit_targs = TREE_OPERAND (fns, 1);
7625 fns = TREE_OPERAND (fns, 0);
7626 template_only = 1;
7628 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
7629 || TREE_CODE (fns) == TEMPLATE_DECL
7630 || TREE_CODE (fns) == OVERLOAD);
7631 fn = get_first_fn (fns);
7632 name = DECL_NAME (fn);
7634 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
7635 gcc_assert (CLASS_TYPE_P (basetype));
7637 if (processing_template_decl)
7639 orig_args = args == NULL ? NULL : make_tree_vector_copy (*args);
7640 instance = build_non_dependent_expr (instance);
7641 if (args != NULL)
7642 make_args_non_dependent (*args);
7645 user_args = args == NULL ? NULL : *args;
7646 /* Under DR 147 A::A() is an invalid constructor call,
7647 not a functional cast. */
7648 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
7650 if (! (complain & tf_error))
7651 return error_mark_node;
7653 if (permerror (input_location,
7654 "cannot call constructor %<%T::%D%> directly",
7655 basetype, name))
7656 inform (input_location, "for a function-style cast, remove the "
7657 "redundant %<::%D%>", name);
7658 call = build_functional_cast (basetype, build_tree_list_vec (user_args),
7659 complain);
7660 return call;
7663 /* Figure out whether to skip the first argument for the error
7664 message we will display to users if an error occurs. We don't
7665 want to display any compiler-generated arguments. The "this"
7666 pointer hasn't been added yet. However, we must remove the VTT
7667 pointer if this is a call to a base-class constructor or
7668 destructor. */
7669 skip_first_for_error = false;
7670 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7672 /* Callers should explicitly indicate whether they want to construct
7673 the complete object or just the part without virtual bases. */
7674 gcc_assert (name != ctor_identifier);
7675 /* Similarly for destructors. */
7676 gcc_assert (name != dtor_identifier);
7677 /* Remove the VTT pointer, if present. */
7678 if ((name == base_ctor_identifier || name == base_dtor_identifier)
7679 && CLASSTYPE_VBASECLASSES (basetype))
7680 skip_first_for_error = true;
7683 /* Process the argument list. */
7684 if (args != NULL && *args != NULL)
7686 *args = resolve_args (*args, complain);
7687 if (*args == NULL)
7688 return error_mark_node;
7691 /* Consider the object argument to be used even if we end up selecting a
7692 static member function. */
7693 instance = mark_type_use (instance);
7695 /* It's OK to call destructors and constructors on cv-qualified objects.
7696 Therefore, convert the INSTANCE to the unqualified type, if
7697 necessary. */
7698 if (DECL_DESTRUCTOR_P (fn)
7699 || DECL_CONSTRUCTOR_P (fn))
7701 if (!same_type_p (basetype, TREE_TYPE (instance)))
7703 instance = build_this (instance);
7704 instance = build_nop (build_pointer_type (basetype), instance);
7705 instance = build_fold_indirect_ref (instance);
7708 if (DECL_DESTRUCTOR_P (fn))
7709 name = complete_dtor_identifier;
7711 first_mem_arg = instance;
7713 /* Get the high-water mark for the CONVERSION_OBSTACK. */
7714 p = conversion_obstack_alloc (0);
7716 /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
7717 initializer, not T({ }). */
7718 if (DECL_CONSTRUCTOR_P (fn) && args != NULL && !vec_safe_is_empty (*args)
7719 && BRACE_ENCLOSED_INITIALIZER_P ((**args)[0])
7720 && CONSTRUCTOR_IS_DIRECT_INIT ((**args)[0]))
7722 tree init_list = (**args)[0];
7723 tree init = NULL_TREE;
7725 gcc_assert ((*args)->length () == 1
7726 && !(flags & LOOKUP_ONLYCONVERTING));
7728 /* If the initializer list has no elements and T is a class type with
7729 a default constructor, the object is value-initialized. Handle
7730 this here so we don't need to handle it wherever we use
7731 build_special_member_call. */
7732 if (CONSTRUCTOR_NELTS (init_list) == 0
7733 && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
7734 /* For a user-provided default constructor, use the normal
7735 mechanisms so that protected access works. */
7736 && !type_has_user_provided_default_constructor (basetype)
7737 && !processing_template_decl)
7738 init = build_value_init (basetype, complain);
7740 /* If BASETYPE is an aggregate, we need to do aggregate
7741 initialization. */
7742 else if (CP_AGGREGATE_TYPE_P (basetype))
7743 init = digest_init (basetype, init_list, complain);
7745 if (init)
7747 if (INDIRECT_REF_P (instance)
7748 && integer_zerop (TREE_OPERAND (instance, 0)))
7749 return get_target_expr_sfinae (init, complain);
7750 init = build2 (INIT_EXPR, TREE_TYPE (instance), instance, init);
7751 TREE_SIDE_EFFECTS (init) = true;
7752 return init;
7755 /* Otherwise go ahead with overload resolution. */
7756 add_list_candidates (fns, first_mem_arg, init_list,
7757 basetype, explicit_targs, template_only,
7758 conversion_path, access_binfo, flags,
7759 &candidates, complain);
7761 else
7763 add_candidates (fns, first_mem_arg, user_args, optype,
7764 explicit_targs, template_only, conversion_path,
7765 access_binfo, flags, &candidates, complain);
7767 any_viable_p = false;
7768 candidates = splice_viable (candidates, pedantic, &any_viable_p);
7770 if (!any_viable_p)
7772 if (complain & tf_error)
7774 if (!COMPLETE_OR_OPEN_TYPE_P (basetype))
7775 cxx_incomplete_type_error (instance, basetype);
7776 else if (optype)
7777 error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
7778 basetype, optype, build_tree_list_vec (user_args),
7779 TREE_TYPE (instance));
7780 else
7782 char *pretty_name;
7783 bool free_p;
7784 tree arglist;
7786 pretty_name = name_as_c_string (name, basetype, &free_p);
7787 arglist = build_tree_list_vec (user_args);
7788 if (skip_first_for_error)
7789 arglist = TREE_CHAIN (arglist);
7790 error ("no matching function for call to %<%T::%s(%A)%#V%>",
7791 basetype, pretty_name, arglist,
7792 TREE_TYPE (instance));
7793 if (free_p)
7794 free (pretty_name);
7796 print_z_candidates (location_of (name), candidates);
7798 call = error_mark_node;
7800 else
7802 cand = tourney (candidates, complain);
7803 if (cand == 0)
7805 char *pretty_name;
7806 bool free_p;
7807 tree arglist;
7809 if (complain & tf_error)
7811 pretty_name = name_as_c_string (name, basetype, &free_p);
7812 arglist = build_tree_list_vec (user_args);
7813 if (skip_first_for_error)
7814 arglist = TREE_CHAIN (arglist);
7815 error ("call of overloaded %<%s(%A)%> is ambiguous", pretty_name,
7816 arglist);
7817 print_z_candidates (location_of (name), candidates);
7818 if (free_p)
7819 free (pretty_name);
7821 call = error_mark_node;
7823 else
7825 fn = cand->fn;
7826 call = NULL_TREE;
7828 if (!(flags & LOOKUP_NONVIRTUAL)
7829 && DECL_PURE_VIRTUAL_P (fn)
7830 && instance == current_class_ref
7831 && (complain & tf_warning))
7833 /* This is not an error, it is runtime undefined
7834 behavior. */
7835 if (!current_function_decl)
7836 warning (0, "pure virtual %q#D called from "
7837 "non-static data member initializer", fn);
7838 else if (DECL_CONSTRUCTOR_P (current_function_decl)
7839 || DECL_DESTRUCTOR_P (current_function_decl))
7840 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl)
7841 ? "pure virtual %q#D called from constructor"
7842 : "pure virtual %q#D called from destructor"),
7843 fn);
7846 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
7847 && is_dummy_object (instance))
7849 instance = maybe_resolve_dummy (instance);
7850 if (instance == error_mark_node)
7851 call = error_mark_node;
7852 else if (!is_dummy_object (instance))
7854 /* We captured 'this' in the current lambda now that
7855 we know we really need it. */
7856 cand->first_arg = instance;
7858 else
7860 if (complain & tf_error)
7861 error ("cannot call member function %qD without object",
7862 fn);
7863 call = error_mark_node;
7867 if (call != error_mark_node)
7869 /* Optimize away vtable lookup if we know that this
7870 function can't be overridden. We need to check if
7871 the context and the type where we found fn are the same,
7872 actually FN might be defined in a different class
7873 type because of a using-declaration. In this case, we
7874 do not want to perform a non-virtual call. */
7875 if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
7876 && same_type_ignoring_top_level_qualifiers_p
7877 (DECL_CONTEXT (fn), BINFO_TYPE (binfo))
7878 && resolves_to_fixed_type_p (instance, 0))
7879 flags |= LOOKUP_NONVIRTUAL;
7880 if (explicit_targs)
7881 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
7882 /* Now we know what function is being called. */
7883 if (fn_p)
7884 *fn_p = fn;
7885 /* Build the actual CALL_EXPR. */
7886 call = build_over_call (cand, flags, complain);
7887 /* In an expression of the form `a->f()' where `f' turns
7888 out to be a static member function, `a' is
7889 none-the-less evaluated. */
7890 if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
7891 && !is_dummy_object (instance)
7892 && TREE_SIDE_EFFECTS (instance))
7893 call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
7894 instance, call);
7895 else if (call != error_mark_node
7896 && DECL_DESTRUCTOR_P (cand->fn)
7897 && !VOID_TYPE_P (TREE_TYPE (call)))
7898 /* An explicit call of the form "x->~X()" has type
7899 "void". However, on platforms where destructors
7900 return "this" (i.e., those where
7901 targetm.cxx.cdtor_returns_this is true), such calls
7902 will appear to have a return value of pointer type
7903 to the low-level call machinery. We do not want to
7904 change the low-level machinery, since we want to be
7905 able to optimize "delete f()" on such platforms as
7906 "operator delete(~X(f()))" (rather than generating
7907 "t = f(), ~X(t), operator delete (t)"). */
7908 call = build_nop (void_type_node, call);
7913 if (processing_template_decl && call != error_mark_node)
7915 bool cast_to_void = false;
7917 if (TREE_CODE (call) == COMPOUND_EXPR)
7918 call = TREE_OPERAND (call, 1);
7919 else if (TREE_CODE (call) == NOP_EXPR)
7921 cast_to_void = true;
7922 call = TREE_OPERAND (call, 0);
7924 if (INDIRECT_REF_P (call))
7925 call = TREE_OPERAND (call, 0);
7926 call = (build_min_non_dep_call_vec
7927 (call,
7928 build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
7929 orig_instance, orig_fns, NULL_TREE),
7930 orig_args));
7931 SET_EXPR_LOCATION (call, input_location);
7932 call = convert_from_reference (call);
7933 if (cast_to_void)
7934 call = build_nop (void_type_node, call);
7937 /* Free all the conversions we allocated. */
7938 obstack_free (&conversion_obstack, p);
7940 if (orig_args != NULL)
7941 release_tree_vector (orig_args);
7943 return call;
7946 /* Wrapper for above. */
7948 tree
7949 build_new_method_call (tree instance, tree fns, vec<tree, va_gc> **args,
7950 tree conversion_path, int flags,
7951 tree *fn_p, tsubst_flags_t complain)
7953 tree ret;
7954 bool subtime = timevar_cond_start (TV_OVERLOAD);
7955 ret = build_new_method_call_1 (instance, fns, args, conversion_path, flags,
7956 fn_p, complain);
7957 timevar_cond_stop (TV_OVERLOAD, subtime);
7958 return ret;
7961 /* Returns true iff standard conversion sequence ICS1 is a proper
7962 subsequence of ICS2. */
7964 static bool
7965 is_subseq (conversion *ics1, conversion *ics2)
7967 /* We can assume that a conversion of the same code
7968 between the same types indicates a subsequence since we only get
7969 here if the types we are converting from are the same. */
7971 while (ics1->kind == ck_rvalue
7972 || ics1->kind == ck_lvalue)
7973 ics1 = next_conversion (ics1);
7975 while (1)
7977 while (ics2->kind == ck_rvalue
7978 || ics2->kind == ck_lvalue)
7979 ics2 = next_conversion (ics2);
7981 if (ics2->kind == ck_user
7982 || ics2->kind == ck_ambig
7983 || ics2->kind == ck_aggr
7984 || ics2->kind == ck_list
7985 || ics2->kind == ck_identity)
7986 /* At this point, ICS1 cannot be a proper subsequence of
7987 ICS2. We can get a USER_CONV when we are comparing the
7988 second standard conversion sequence of two user conversion
7989 sequences. */
7990 return false;
7992 ics2 = next_conversion (ics2);
7994 if (ics2->kind == ics1->kind
7995 && same_type_p (ics2->type, ics1->type)
7996 && same_type_p (next_conversion (ics2)->type,
7997 next_conversion (ics1)->type))
7998 return true;
8002 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
8003 be any _TYPE nodes. */
8005 bool
8006 is_properly_derived_from (tree derived, tree base)
8008 if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
8009 return false;
8011 /* We only allow proper derivation here. The DERIVED_FROM_P macro
8012 considers every class derived from itself. */
8013 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
8014 && DERIVED_FROM_P (base, derived));
8017 /* We build the ICS for an implicit object parameter as a pointer
8018 conversion sequence. However, such a sequence should be compared
8019 as if it were a reference conversion sequence. If ICS is the
8020 implicit conversion sequence for an implicit object parameter,
8021 modify it accordingly. */
8023 static void
8024 maybe_handle_implicit_object (conversion **ics)
8026 if ((*ics)->this_p)
8028 /* [over.match.funcs]
8030 For non-static member functions, the type of the
8031 implicit object parameter is "reference to cv X"
8032 where X is the class of which the function is a
8033 member and cv is the cv-qualification on the member
8034 function declaration. */
8035 conversion *t = *ics;
8036 tree reference_type;
8038 /* The `this' parameter is a pointer to a class type. Make the
8039 implicit conversion talk about a reference to that same class
8040 type. */
8041 reference_type = TREE_TYPE (t->type);
8042 reference_type = build_reference_type (reference_type);
8044 if (t->kind == ck_qual)
8045 t = next_conversion (t);
8046 if (t->kind == ck_ptr)
8047 t = next_conversion (t);
8048 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
8049 t = direct_reference_binding (reference_type, t);
8050 t->this_p = 1;
8051 t->rvaluedness_matches_p = 0;
8052 *ics = t;
8056 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
8057 and return the initial reference binding conversion. Otherwise,
8058 leave *ICS unchanged and return NULL. */
8060 static conversion *
8061 maybe_handle_ref_bind (conversion **ics)
8063 if ((*ics)->kind == ck_ref_bind)
8065 conversion *old_ics = *ics;
8066 *ics = next_conversion (old_ics);
8067 (*ics)->user_conv_p = old_ics->user_conv_p;
8068 return old_ics;
8071 return NULL;
8074 /* Compare two implicit conversion sequences according to the rules set out in
8075 [over.ics.rank]. Return values:
8077 1: ics1 is better than ics2
8078 -1: ics2 is better than ics1
8079 0: ics1 and ics2 are indistinguishable */
8081 static int
8082 compare_ics (conversion *ics1, conversion *ics2)
8084 tree from_type1;
8085 tree from_type2;
8086 tree to_type1;
8087 tree to_type2;
8088 tree deref_from_type1 = NULL_TREE;
8089 tree deref_from_type2 = NULL_TREE;
8090 tree deref_to_type1 = NULL_TREE;
8091 tree deref_to_type2 = NULL_TREE;
8092 conversion_rank rank1, rank2;
8094 /* REF_BINDING is nonzero if the result of the conversion sequence
8095 is a reference type. In that case REF_CONV is the reference
8096 binding conversion. */
8097 conversion *ref_conv1;
8098 conversion *ref_conv2;
8100 /* Handle implicit object parameters. */
8101 maybe_handle_implicit_object (&ics1);
8102 maybe_handle_implicit_object (&ics2);
8104 /* Handle reference parameters. */
8105 ref_conv1 = maybe_handle_ref_bind (&ics1);
8106 ref_conv2 = maybe_handle_ref_bind (&ics2);
8108 /* List-initialization sequence L1 is a better conversion sequence than
8109 list-initialization sequence L2 if L1 converts to
8110 std::initializer_list<X> for some X and L2 does not. */
8111 if (ics1->kind == ck_list && ics2->kind != ck_list)
8112 return 1;
8113 if (ics2->kind == ck_list && ics1->kind != ck_list)
8114 return -1;
8116 /* [over.ics.rank]
8118 When comparing the basic forms of implicit conversion sequences (as
8119 defined in _over.best.ics_)
8121 --a standard conversion sequence (_over.ics.scs_) is a better
8122 conversion sequence than a user-defined conversion sequence
8123 or an ellipsis conversion sequence, and
8125 --a user-defined conversion sequence (_over.ics.user_) is a
8126 better conversion sequence than an ellipsis conversion sequence
8127 (_over.ics.ellipsis_). */
8128 rank1 = CONVERSION_RANK (ics1);
8129 rank2 = CONVERSION_RANK (ics2);
8131 if (rank1 > rank2)
8132 return -1;
8133 else if (rank1 < rank2)
8134 return 1;
8136 if (rank1 == cr_bad)
8138 /* Both ICS are bad. We try to make a decision based on what would
8139 have happened if they'd been good. This is not an extension,
8140 we'll still give an error when we build up the call; this just
8141 helps us give a more helpful error message. */
8142 rank1 = BAD_CONVERSION_RANK (ics1);
8143 rank2 = BAD_CONVERSION_RANK (ics2);
8145 if (rank1 > rank2)
8146 return -1;
8147 else if (rank1 < rank2)
8148 return 1;
8150 /* We couldn't make up our minds; try to figure it out below. */
8153 if (ics1->ellipsis_p)
8154 /* Both conversions are ellipsis conversions. */
8155 return 0;
8157 /* User-defined conversion sequence U1 is a better conversion sequence
8158 than another user-defined conversion sequence U2 if they contain the
8159 same user-defined conversion operator or constructor and if the sec-
8160 ond standard conversion sequence of U1 is better than the second
8161 standard conversion sequence of U2. */
8163 /* Handle list-conversion with the same code even though it isn't always
8164 ranked as a user-defined conversion and it doesn't have a second
8165 standard conversion sequence; it will still have the desired effect.
8166 Specifically, we need to do the reference binding comparison at the
8167 end of this function. */
8169 if (ics1->user_conv_p || ics1->kind == ck_list || ics1->kind == ck_aggr)
8171 conversion *t1;
8172 conversion *t2;
8174 for (t1 = ics1; t1->kind != ck_user; t1 = next_conversion (t1))
8175 if (t1->kind == ck_ambig || t1->kind == ck_aggr
8176 || t1->kind == ck_list)
8177 break;
8178 for (t2 = ics2; t2->kind != ck_user; t2 = next_conversion (t2))
8179 if (t2->kind == ck_ambig || t2->kind == ck_aggr
8180 || t2->kind == ck_list)
8181 break;
8183 if (t1->kind != t2->kind)
8184 return 0;
8185 else if (t1->kind == ck_user)
8187 if (t1->cand->fn != t2->cand->fn)
8188 return 0;
8190 else
8192 /* For ambiguous or aggregate conversions, use the target type as
8193 a proxy for the conversion function. */
8194 if (!same_type_ignoring_top_level_qualifiers_p (t1->type, t2->type))
8195 return 0;
8198 /* We can just fall through here, after setting up
8199 FROM_TYPE1 and FROM_TYPE2. */
8200 from_type1 = t1->type;
8201 from_type2 = t2->type;
8203 else
8205 conversion *t1;
8206 conversion *t2;
8208 /* We're dealing with two standard conversion sequences.
8210 [over.ics.rank]
8212 Standard conversion sequence S1 is a better conversion
8213 sequence than standard conversion sequence S2 if
8215 --S1 is a proper subsequence of S2 (comparing the conversion
8216 sequences in the canonical form defined by _over.ics.scs_,
8217 excluding any Lvalue Transformation; the identity
8218 conversion sequence is considered to be a subsequence of
8219 any non-identity conversion sequence */
8221 t1 = ics1;
8222 while (t1->kind != ck_identity)
8223 t1 = next_conversion (t1);
8224 from_type1 = t1->type;
8226 t2 = ics2;
8227 while (t2->kind != ck_identity)
8228 t2 = next_conversion (t2);
8229 from_type2 = t2->type;
8232 /* One sequence can only be a subsequence of the other if they start with
8233 the same type. They can start with different types when comparing the
8234 second standard conversion sequence in two user-defined conversion
8235 sequences. */
8236 if (same_type_p (from_type1, from_type2))
8238 if (is_subseq (ics1, ics2))
8239 return 1;
8240 if (is_subseq (ics2, ics1))
8241 return -1;
8244 /* [over.ics.rank]
8246 Or, if not that,
8248 --the rank of S1 is better than the rank of S2 (by the rules
8249 defined below):
8251 Standard conversion sequences are ordered by their ranks: an Exact
8252 Match is a better conversion than a Promotion, which is a better
8253 conversion than a Conversion.
8255 Two conversion sequences with the same rank are indistinguishable
8256 unless one of the following rules applies:
8258 --A conversion that does not a convert a pointer, pointer to member,
8259 or std::nullptr_t to bool is better than one that does.
8261 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
8262 so that we do not have to check it explicitly. */
8263 if (ics1->rank < ics2->rank)
8264 return 1;
8265 else if (ics2->rank < ics1->rank)
8266 return -1;
8268 to_type1 = ics1->type;
8269 to_type2 = ics2->type;
8271 /* A conversion from scalar arithmetic type to complex is worse than a
8272 conversion between scalar arithmetic types. */
8273 if (same_type_p (from_type1, from_type2)
8274 && ARITHMETIC_TYPE_P (from_type1)
8275 && ARITHMETIC_TYPE_P (to_type1)
8276 && ARITHMETIC_TYPE_P (to_type2)
8277 && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
8278 != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
8280 if (TREE_CODE (to_type1) == COMPLEX_TYPE)
8281 return -1;
8282 else
8283 return 1;
8286 if (TYPE_PTR_P (from_type1)
8287 && TYPE_PTR_P (from_type2)
8288 && TYPE_PTR_P (to_type1)
8289 && TYPE_PTR_P (to_type2))
8291 deref_from_type1 = TREE_TYPE (from_type1);
8292 deref_from_type2 = TREE_TYPE (from_type2);
8293 deref_to_type1 = TREE_TYPE (to_type1);
8294 deref_to_type2 = TREE_TYPE (to_type2);
8296 /* The rules for pointers to members A::* are just like the rules
8297 for pointers A*, except opposite: if B is derived from A then
8298 A::* converts to B::*, not vice versa. For that reason, we
8299 switch the from_ and to_ variables here. */
8300 else if ((TYPE_PTRDATAMEM_P (from_type1) && TYPE_PTRDATAMEM_P (from_type2)
8301 && TYPE_PTRDATAMEM_P (to_type1) && TYPE_PTRDATAMEM_P (to_type2))
8302 || (TYPE_PTRMEMFUNC_P (from_type1)
8303 && TYPE_PTRMEMFUNC_P (from_type2)
8304 && TYPE_PTRMEMFUNC_P (to_type1)
8305 && TYPE_PTRMEMFUNC_P (to_type2)))
8307 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
8308 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
8309 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
8310 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
8313 if (deref_from_type1 != NULL_TREE
8314 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
8315 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
8317 /* This was one of the pointer or pointer-like conversions.
8319 [over.ics.rank]
8321 --If class B is derived directly or indirectly from class A,
8322 conversion of B* to A* is better than conversion of B* to
8323 void*, and conversion of A* to void* is better than
8324 conversion of B* to void*. */
8325 if (VOID_TYPE_P (deref_to_type1)
8326 && VOID_TYPE_P (deref_to_type2))
8328 if (is_properly_derived_from (deref_from_type1,
8329 deref_from_type2))
8330 return -1;
8331 else if (is_properly_derived_from (deref_from_type2,
8332 deref_from_type1))
8333 return 1;
8335 else if (VOID_TYPE_P (deref_to_type1)
8336 || VOID_TYPE_P (deref_to_type2))
8338 if (same_type_p (deref_from_type1, deref_from_type2))
8340 if (VOID_TYPE_P (deref_to_type2))
8342 if (is_properly_derived_from (deref_from_type1,
8343 deref_to_type1))
8344 return 1;
8346 /* We know that DEREF_TO_TYPE1 is `void' here. */
8347 else if (is_properly_derived_from (deref_from_type1,
8348 deref_to_type2))
8349 return -1;
8352 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
8353 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
8355 /* [over.ics.rank]
8357 --If class B is derived directly or indirectly from class A
8358 and class C is derived directly or indirectly from B,
8360 --conversion of C* to B* is better than conversion of C* to
8363 --conversion of B* to A* is better than conversion of C* to
8364 A* */
8365 if (same_type_p (deref_from_type1, deref_from_type2))
8367 if (is_properly_derived_from (deref_to_type1,
8368 deref_to_type2))
8369 return 1;
8370 else if (is_properly_derived_from (deref_to_type2,
8371 deref_to_type1))
8372 return -1;
8374 else if (same_type_p (deref_to_type1, deref_to_type2))
8376 if (is_properly_derived_from (deref_from_type2,
8377 deref_from_type1))
8378 return 1;
8379 else if (is_properly_derived_from (deref_from_type1,
8380 deref_from_type2))
8381 return -1;
8385 else if (CLASS_TYPE_P (non_reference (from_type1))
8386 && same_type_p (from_type1, from_type2))
8388 tree from = non_reference (from_type1);
8390 /* [over.ics.rank]
8392 --binding of an expression of type C to a reference of type
8393 B& is better than binding an expression of type C to a
8394 reference of type A&
8396 --conversion of C to B is better than conversion of C to A, */
8397 if (is_properly_derived_from (from, to_type1)
8398 && is_properly_derived_from (from, to_type2))
8400 if (is_properly_derived_from (to_type1, to_type2))
8401 return 1;
8402 else if (is_properly_derived_from (to_type2, to_type1))
8403 return -1;
8406 else if (CLASS_TYPE_P (non_reference (to_type1))
8407 && same_type_p (to_type1, to_type2))
8409 tree to = non_reference (to_type1);
8411 /* [over.ics.rank]
8413 --binding of an expression of type B to a reference of type
8414 A& is better than binding an expression of type C to a
8415 reference of type A&,
8417 --conversion of B to A is better than conversion of C to A */
8418 if (is_properly_derived_from (from_type1, to)
8419 && is_properly_derived_from (from_type2, to))
8421 if (is_properly_derived_from (from_type2, from_type1))
8422 return 1;
8423 else if (is_properly_derived_from (from_type1, from_type2))
8424 return -1;
8428 /* [over.ics.rank]
8430 --S1 and S2 differ only in their qualification conversion and yield
8431 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
8432 qualification signature of type T1 is a proper subset of the cv-
8433 qualification signature of type T2 */
8434 if (ics1->kind == ck_qual
8435 && ics2->kind == ck_qual
8436 && same_type_p (from_type1, from_type2))
8438 int result = comp_cv_qual_signature (to_type1, to_type2);
8439 if (result != 0)
8440 return result;
8443 /* [over.ics.rank]
8445 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
8446 to an implicit object parameter, and either S1 binds an lvalue reference
8447 to an lvalue and S2 binds an rvalue reference or S1 binds an rvalue
8448 reference to an rvalue and S2 binds an lvalue reference
8449 (C++0x draft standard, 13.3.3.2)
8451 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
8452 types to which the references refer are the same type except for
8453 top-level cv-qualifiers, and the type to which the reference
8454 initialized by S2 refers is more cv-qualified than the type to
8455 which the reference initialized by S1 refers.
8457 DR 1328 [over.match.best]: the context is an initialization by
8458 conversion function for direct reference binding (13.3.1.6) of a
8459 reference to function type, the return type of F1 is the same kind of
8460 reference (i.e. lvalue or rvalue) as the reference being initialized,
8461 and the return type of F2 is not. */
8463 if (ref_conv1 && ref_conv2)
8465 if (!ref_conv1->this_p && !ref_conv2->this_p
8466 && (ref_conv1->rvaluedness_matches_p
8467 != ref_conv2->rvaluedness_matches_p)
8468 && (same_type_p (ref_conv1->type, ref_conv2->type)
8469 || (TYPE_REF_IS_RVALUE (ref_conv1->type)
8470 != TYPE_REF_IS_RVALUE (ref_conv2->type))))
8472 return (ref_conv1->rvaluedness_matches_p
8473 - ref_conv2->rvaluedness_matches_p);
8476 if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
8477 return comp_cv_qualification (TREE_TYPE (ref_conv2->type),
8478 TREE_TYPE (ref_conv1->type));
8481 /* Neither conversion sequence is better than the other. */
8482 return 0;
8485 /* The source type for this standard conversion sequence. */
8487 static tree
8488 source_type (conversion *t)
8490 for (;; t = next_conversion (t))
8492 if (t->kind == ck_user
8493 || t->kind == ck_ambig
8494 || t->kind == ck_identity)
8495 return t->type;
8497 gcc_unreachable ();
8500 /* Note a warning about preferring WINNER to LOSER. We do this by storing
8501 a pointer to LOSER and re-running joust to produce the warning if WINNER
8502 is actually used. */
8504 static void
8505 add_warning (struct z_candidate *winner, struct z_candidate *loser)
8507 candidate_warning *cw = (candidate_warning *)
8508 conversion_obstack_alloc (sizeof (candidate_warning));
8509 cw->loser = loser;
8510 cw->next = winner->warnings;
8511 winner->warnings = cw;
8514 /* Compare two candidates for overloading as described in
8515 [over.match.best]. Return values:
8517 1: cand1 is better than cand2
8518 -1: cand2 is better than cand1
8519 0: cand1 and cand2 are indistinguishable */
8521 static int
8522 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn,
8523 tsubst_flags_t complain)
8525 int winner = 0;
8526 int off1 = 0, off2 = 0;
8527 size_t i;
8528 size_t len;
8530 /* Candidates that involve bad conversions are always worse than those
8531 that don't. */
8532 if (cand1->viable > cand2->viable)
8533 return 1;
8534 if (cand1->viable < cand2->viable)
8535 return -1;
8537 /* If we have two pseudo-candidates for conversions to the same type,
8538 or two candidates for the same function, arbitrarily pick one. */
8539 if (cand1->fn == cand2->fn
8540 && (IS_TYPE_OR_DECL_P (cand1->fn)))
8541 return 1;
8543 /* Prefer a non-deleted function over an implicitly deleted move
8544 constructor or assignment operator. This differs slightly from the
8545 wording for issue 1402 (which says the move op is ignored by overload
8546 resolution), but this way produces better error messages. */
8547 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
8548 && TREE_CODE (cand2->fn) == FUNCTION_DECL
8549 && DECL_DELETED_FN (cand1->fn) != DECL_DELETED_FN (cand2->fn))
8551 if (DECL_DELETED_FN (cand1->fn) && DECL_DEFAULTED_FN (cand1->fn)
8552 && move_fn_p (cand1->fn))
8553 return -1;
8554 if (DECL_DELETED_FN (cand2->fn) && DECL_DEFAULTED_FN (cand2->fn)
8555 && move_fn_p (cand2->fn))
8556 return 1;
8559 /* a viable function F1
8560 is defined to be a better function than another viable function F2 if
8561 for all arguments i, ICSi(F1) is not a worse conversion sequence than
8562 ICSi(F2), and then */
8564 /* for some argument j, ICSj(F1) is a better conversion sequence than
8565 ICSj(F2) */
8567 /* For comparing static and non-static member functions, we ignore
8568 the implicit object parameter of the non-static function. The
8569 standard says to pretend that the static function has an object
8570 parm, but that won't work with operator overloading. */
8571 len = cand1->num_convs;
8572 if (len != cand2->num_convs)
8574 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
8575 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
8577 if (DECL_CONSTRUCTOR_P (cand1->fn)
8578 && is_list_ctor (cand1->fn) != is_list_ctor (cand2->fn))
8579 /* We're comparing a near-match list constructor and a near-match
8580 non-list constructor. Just treat them as unordered. */
8581 return 0;
8583 gcc_assert (static_1 != static_2);
8585 if (static_1)
8586 off2 = 1;
8587 else
8589 off1 = 1;
8590 --len;
8594 for (i = 0; i < len; ++i)
8596 conversion *t1 = cand1->convs[i + off1];
8597 conversion *t2 = cand2->convs[i + off2];
8598 int comp = compare_ics (t1, t2);
8600 if (comp != 0)
8602 if ((complain & tf_warning)
8603 && warn_sign_promo
8604 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
8605 == cr_std + cr_promotion)
8606 && t1->kind == ck_std
8607 && t2->kind == ck_std
8608 && TREE_CODE (t1->type) == INTEGER_TYPE
8609 && TREE_CODE (t2->type) == INTEGER_TYPE
8610 && (TYPE_PRECISION (t1->type)
8611 == TYPE_PRECISION (t2->type))
8612 && (TYPE_UNSIGNED (next_conversion (t1)->type)
8613 || (TREE_CODE (next_conversion (t1)->type)
8614 == ENUMERAL_TYPE)))
8616 tree type = next_conversion (t1)->type;
8617 tree type1, type2;
8618 struct z_candidate *w, *l;
8619 if (comp > 0)
8620 type1 = t1->type, type2 = t2->type,
8621 w = cand1, l = cand2;
8622 else
8623 type1 = t2->type, type2 = t1->type,
8624 w = cand2, l = cand1;
8626 if (warn)
8628 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
8629 type, type1, type2);
8630 warning (OPT_Wsign_promo, " in call to %qD", w->fn);
8632 else
8633 add_warning (w, l);
8636 if (winner && comp != winner)
8638 winner = 0;
8639 goto tweak;
8641 winner = comp;
8645 /* warn about confusing overload resolution for user-defined conversions,
8646 either between a constructor and a conversion op, or between two
8647 conversion ops. */
8648 if ((complain & tf_warning)
8649 && winner && warn_conversion && cand1->second_conv
8650 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
8651 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
8653 struct z_candidate *w, *l;
8654 bool give_warning = false;
8656 if (winner == 1)
8657 w = cand1, l = cand2;
8658 else
8659 w = cand2, l = cand1;
8661 /* We don't want to complain about `X::operator T1 ()'
8662 beating `X::operator T2 () const', when T2 is a no less
8663 cv-qualified version of T1. */
8664 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
8665 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
8667 tree t = TREE_TYPE (TREE_TYPE (l->fn));
8668 tree f = TREE_TYPE (TREE_TYPE (w->fn));
8670 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
8672 t = TREE_TYPE (t);
8673 f = TREE_TYPE (f);
8675 if (!comp_ptr_ttypes (t, f))
8676 give_warning = true;
8678 else
8679 give_warning = true;
8681 if (!give_warning)
8682 /*NOP*/;
8683 else if (warn)
8685 tree source = source_type (w->convs[0]);
8686 if (! DECL_CONSTRUCTOR_P (w->fn))
8687 source = TREE_TYPE (source);
8688 if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
8689 && warning (OPT_Wconversion, " for conversion from %qT to %qT",
8690 source, w->second_conv->type))
8692 inform (input_location, " because conversion sequence for the argument is better");
8695 else
8696 add_warning (w, l);
8699 if (winner)
8700 return winner;
8702 /* DR 495 moved this tiebreaker above the template ones. */
8703 /* or, if not that,
8704 the context is an initialization by user-defined conversion (see
8705 _dcl.init_ and _over.match.user_) and the standard conversion
8706 sequence from the return type of F1 to the destination type (i.e.,
8707 the type of the entity being initialized) is a better conversion
8708 sequence than the standard conversion sequence from the return type
8709 of F2 to the destination type. */
8711 if (cand1->second_conv)
8713 winner = compare_ics (cand1->second_conv, cand2->second_conv);
8714 if (winner)
8715 return winner;
8718 /* or, if not that,
8719 F1 is a non-template function and F2 is a template function
8720 specialization. */
8722 if (!cand1->template_decl && cand2->template_decl)
8723 return 1;
8724 else if (cand1->template_decl && !cand2->template_decl)
8725 return -1;
8727 /* or, if not that,
8728 F1 and F2 are template functions and the function template for F1 is
8729 more specialized than the template for F2 according to the partial
8730 ordering rules. */
8732 if (cand1->template_decl && cand2->template_decl)
8734 winner = more_specialized_fn
8735 (TI_TEMPLATE (cand1->template_decl),
8736 TI_TEMPLATE (cand2->template_decl),
8737 /* [temp.func.order]: The presence of unused ellipsis and default
8738 arguments has no effect on the partial ordering of function
8739 templates. add_function_candidate() will not have
8740 counted the "this" argument for constructors. */
8741 cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
8742 if (winner)
8743 return winner;
8746 /* Check whether we can discard a builtin candidate, either because we
8747 have two identical ones or matching builtin and non-builtin candidates.
8749 (Pedantically in the latter case the builtin which matched the user
8750 function should not be added to the overload set, but we spot it here.
8752 [over.match.oper]
8753 ... the builtin candidates include ...
8754 - do not have the same parameter type list as any non-template
8755 non-member candidate. */
8757 if (identifier_p (cand1->fn) || identifier_p (cand2->fn))
8759 for (i = 0; i < len; ++i)
8760 if (!same_type_p (cand1->convs[i]->type,
8761 cand2->convs[i]->type))
8762 break;
8763 if (i == cand1->num_convs)
8765 if (cand1->fn == cand2->fn)
8766 /* Two built-in candidates; arbitrarily pick one. */
8767 return 1;
8768 else if (identifier_p (cand1->fn))
8769 /* cand1 is built-in; prefer cand2. */
8770 return -1;
8771 else
8772 /* cand2 is built-in; prefer cand1. */
8773 return 1;
8777 /* For candidates of a multi-versioned function, make the version with
8778 the highest priority win. This version will be checked for dispatching
8779 first. If this version can be inlined into the caller, the front-end
8780 will simply make a direct call to this function. */
8782 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
8783 && DECL_FUNCTION_VERSIONED (cand1->fn)
8784 && TREE_CODE (cand2->fn) == FUNCTION_DECL
8785 && DECL_FUNCTION_VERSIONED (cand2->fn))
8787 tree f1 = TREE_TYPE (cand1->fn);
8788 tree f2 = TREE_TYPE (cand2->fn);
8789 tree p1 = TYPE_ARG_TYPES (f1);
8790 tree p2 = TYPE_ARG_TYPES (f2);
8792 /* Check if cand1->fn and cand2->fn are versions of the same function. It
8793 is possible that cand1->fn and cand2->fn are function versions but of
8794 different functions. Check types to see if they are versions of the same
8795 function. */
8796 if (compparms (p1, p2)
8797 && same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
8799 /* Always make the version with the higher priority, more
8800 specialized, win. */
8801 gcc_assert (targetm.compare_version_priority);
8802 if (targetm.compare_version_priority (cand1->fn, cand2->fn) >= 0)
8803 return 1;
8804 else
8805 return -1;
8809 /* If the two function declarations represent the same function (this can
8810 happen with declarations in multiple scopes and arg-dependent lookup),
8811 arbitrarily choose one. But first make sure the default args we're
8812 using match. */
8813 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
8814 && equal_functions (cand1->fn, cand2->fn))
8816 tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
8817 tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
8819 gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
8821 for (i = 0; i < len; ++i)
8823 /* Don't crash if the fn is variadic. */
8824 if (!parms1)
8825 break;
8826 parms1 = TREE_CHAIN (parms1);
8827 parms2 = TREE_CHAIN (parms2);
8830 if (off1)
8831 parms1 = TREE_CHAIN (parms1);
8832 else if (off2)
8833 parms2 = TREE_CHAIN (parms2);
8835 for (; parms1; ++i)
8837 if (!cp_tree_equal (TREE_PURPOSE (parms1),
8838 TREE_PURPOSE (parms2)))
8840 if (warn)
8842 if (complain & tf_error)
8844 if (permerror (input_location,
8845 "default argument mismatch in "
8846 "overload resolution"))
8848 inform (input_location,
8849 " candidate 1: %q+#F", cand1->fn);
8850 inform (input_location,
8851 " candidate 2: %q+#F", cand2->fn);
8854 else
8855 return 0;
8857 else
8858 add_warning (cand1, cand2);
8859 break;
8861 parms1 = TREE_CHAIN (parms1);
8862 parms2 = TREE_CHAIN (parms2);
8865 return 1;
8868 tweak:
8870 /* Extension: If the worst conversion for one candidate is worse than the
8871 worst conversion for the other, take the first. */
8872 if (!pedantic && (complain & tf_warning_or_error))
8874 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
8875 struct z_candidate *w = 0, *l = 0;
8877 for (i = 0; i < len; ++i)
8879 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
8880 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
8881 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
8882 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
8884 if (rank1 < rank2)
8885 winner = 1, w = cand1, l = cand2;
8886 if (rank1 > rank2)
8887 winner = -1, w = cand2, l = cand1;
8888 if (winner)
8890 /* Don't choose a deleted function over ambiguity. */
8891 if (DECL_P (w->fn) && DECL_DELETED_FN (w->fn))
8892 return 0;
8893 if (warn)
8895 pedwarn (input_location, 0,
8896 "ISO C++ says that these are ambiguous, even "
8897 "though the worst conversion for the first is better than "
8898 "the worst conversion for the second:");
8899 print_z_candidate (input_location, _("candidate 1:"), w);
8900 print_z_candidate (input_location, _("candidate 2:"), l);
8902 else
8903 add_warning (w, l);
8904 return winner;
8908 gcc_assert (!winner);
8909 return 0;
8912 /* Given a list of candidates for overloading, find the best one, if any.
8913 This algorithm has a worst case of O(2n) (winner is last), and a best
8914 case of O(n/2) (totally ambiguous); much better than a sorting
8915 algorithm. */
8917 static struct z_candidate *
8918 tourney (struct z_candidate *candidates, tsubst_flags_t complain)
8920 struct z_candidate *champ = candidates, *challenger;
8921 int fate;
8922 int champ_compared_to_predecessor = 0;
8924 /* Walk through the list once, comparing each current champ to the next
8925 candidate, knocking out a candidate or two with each comparison. */
8927 for (challenger = champ->next; challenger; )
8929 fate = joust (champ, challenger, 0, complain);
8930 if (fate == 1)
8931 challenger = challenger->next;
8932 else
8934 if (fate == 0)
8936 champ = challenger->next;
8937 if (champ == 0)
8938 return NULL;
8939 champ_compared_to_predecessor = 0;
8941 else
8943 champ = challenger;
8944 champ_compared_to_predecessor = 1;
8947 challenger = champ->next;
8951 /* Make sure the champ is better than all the candidates it hasn't yet
8952 been compared to. */
8954 for (challenger = candidates;
8955 challenger != champ
8956 && !(champ_compared_to_predecessor && challenger->next == champ);
8957 challenger = challenger->next)
8959 fate = joust (champ, challenger, 0, complain);
8960 if (fate != 1)
8961 return NULL;
8964 return champ;
8967 /* Returns nonzero if things of type FROM can be converted to TO. */
8969 bool
8970 can_convert (tree to, tree from, tsubst_flags_t complain)
8972 tree arg = NULL_TREE;
8973 /* implicit_conversion only considers user-defined conversions
8974 if it has an expression for the call argument list. */
8975 if (CLASS_TYPE_P (from) || CLASS_TYPE_P (to))
8976 arg = build1 (CAST_EXPR, from, NULL_TREE);
8977 return can_convert_arg (to, from, arg, LOOKUP_IMPLICIT, complain);
8980 /* Returns nonzero if things of type FROM can be converted to TO with a
8981 standard conversion. */
8983 bool
8984 can_convert_standard (tree to, tree from, tsubst_flags_t complain)
8986 return can_convert_arg (to, from, NULL_TREE, LOOKUP_IMPLICIT, complain);
8989 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
8991 bool
8992 can_convert_arg (tree to, tree from, tree arg, int flags,
8993 tsubst_flags_t complain)
8995 conversion *t;
8996 void *p;
8997 bool ok_p;
8999 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9000 p = conversion_obstack_alloc (0);
9001 /* We want to discard any access checks done for this test,
9002 as we might not be in the appropriate access context and
9003 we'll do the check again when we actually perform the
9004 conversion. */
9005 push_deferring_access_checks (dk_deferred);
9007 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
9008 flags, complain);
9009 ok_p = (t && !t->bad_p);
9011 /* Discard the access checks now. */
9012 pop_deferring_access_checks ();
9013 /* Free all the conversions we allocated. */
9014 obstack_free (&conversion_obstack, p);
9016 return ok_p;
9019 /* Like can_convert_arg, but allows dubious conversions as well. */
9021 bool
9022 can_convert_arg_bad (tree to, tree from, tree arg, int flags,
9023 tsubst_flags_t complain)
9025 conversion *t;
9026 void *p;
9028 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9029 p = conversion_obstack_alloc (0);
9030 /* Try to perform the conversion. */
9031 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
9032 flags, complain);
9033 /* Free all the conversions we allocated. */
9034 obstack_free (&conversion_obstack, p);
9036 return t != NULL;
9039 /* Convert EXPR to TYPE. Return the converted expression.
9041 Note that we allow bad conversions here because by the time we get to
9042 this point we are committed to doing the conversion. If we end up
9043 doing a bad conversion, convert_like will complain. */
9045 tree
9046 perform_implicit_conversion_flags (tree type, tree expr,
9047 tsubst_flags_t complain, int flags)
9049 conversion *conv;
9050 void *p;
9051 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
9053 if (error_operand_p (expr))
9054 return error_mark_node;
9056 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9057 p = conversion_obstack_alloc (0);
9059 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9060 /*c_cast_p=*/false,
9061 flags, complain);
9063 if (!conv)
9065 if (complain & tf_error)
9067 /* If expr has unknown type, then it is an overloaded function.
9068 Call instantiate_type to get good error messages. */
9069 if (TREE_TYPE (expr) == unknown_type_node)
9070 instantiate_type (type, expr, complain);
9071 else if (invalid_nonstatic_memfn_p (expr, complain))
9072 /* We gave an error. */;
9073 else
9074 error_at (loc, "could not convert %qE from %qT to %qT", expr,
9075 TREE_TYPE (expr), type);
9077 expr = error_mark_node;
9079 else if (processing_template_decl && conv->kind != ck_identity)
9081 /* In a template, we are only concerned about determining the
9082 type of non-dependent expressions, so we do not have to
9083 perform the actual conversion. But for initializers, we
9084 need to be able to perform it at instantiation
9085 (or fold_non_dependent_expr) time. */
9086 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
9087 if (!(flags & LOOKUP_ONLYCONVERTING))
9088 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
9090 else
9091 expr = convert_like (conv, expr, complain);
9093 /* Free all the conversions we allocated. */
9094 obstack_free (&conversion_obstack, p);
9096 return expr;
9099 tree
9100 perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
9102 return perform_implicit_conversion_flags (type, expr, complain,
9103 LOOKUP_IMPLICIT);
9106 /* Convert EXPR to TYPE (as a direct-initialization) if that is
9107 permitted. If the conversion is valid, the converted expression is
9108 returned. Otherwise, NULL_TREE is returned, except in the case
9109 that TYPE is a class type; in that case, an error is issued. If
9110 C_CAST_P is true, then this direct-initialization is taking
9111 place as part of a static_cast being attempted as part of a C-style
9112 cast. */
9114 tree
9115 perform_direct_initialization_if_possible (tree type,
9116 tree expr,
9117 bool c_cast_p,
9118 tsubst_flags_t complain)
9120 conversion *conv;
9121 void *p;
9123 if (type == error_mark_node || error_operand_p (expr))
9124 return error_mark_node;
9125 /* [dcl.init]
9127 If the destination type is a (possibly cv-qualified) class type:
9129 -- If the initialization is direct-initialization ...,
9130 constructors are considered. ... If no constructor applies, or
9131 the overload resolution is ambiguous, the initialization is
9132 ill-formed. */
9133 if (CLASS_TYPE_P (type))
9135 vec<tree, va_gc> *args = make_tree_vector_single (expr);
9136 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
9137 &args, type, LOOKUP_NORMAL, complain);
9138 release_tree_vector (args);
9139 return build_cplus_new (type, expr, complain);
9142 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9143 p = conversion_obstack_alloc (0);
9145 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9146 c_cast_p,
9147 LOOKUP_NORMAL, complain);
9148 if (!conv || conv->bad_p)
9149 expr = NULL_TREE;
9150 else
9151 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
9152 /*issue_conversion_warnings=*/false,
9153 c_cast_p,
9154 complain);
9156 /* Free all the conversions we allocated. */
9157 obstack_free (&conversion_obstack, p);
9159 return expr;
9162 /* When initializing a reference that lasts longer than a full-expression,
9163 this special rule applies:
9165 [class.temporary]
9167 The temporary to which the reference is bound or the temporary
9168 that is the complete object to which the reference is bound
9169 persists for the lifetime of the reference.
9171 The temporaries created during the evaluation of the expression
9172 initializing the reference, except the temporary to which the
9173 reference is bound, are destroyed at the end of the
9174 full-expression in which they are created.
9176 In that case, we store the converted expression into a new
9177 VAR_DECL in a new scope.
9179 However, we want to be careful not to create temporaries when
9180 they are not required. For example, given:
9182 struct B {};
9183 struct D : public B {};
9184 D f();
9185 const B& b = f();
9187 there is no need to copy the return value from "f"; we can just
9188 extend its lifetime. Similarly, given:
9190 struct S {};
9191 struct T { operator S(); };
9192 T t;
9193 const S& s = t;
9195 we can extend the lifetime of the return value of the conversion
9196 operator.
9198 The next several functions are involved in this lifetime extension. */
9200 /* DECL is a VAR_DECL or FIELD_DECL whose type is a REFERENCE_TYPE. The
9201 reference is being bound to a temporary. Create and return a new
9202 VAR_DECL with the indicated TYPE; this variable will store the value to
9203 which the reference is bound. */
9205 tree
9206 make_temporary_var_for_ref_to_temp (tree decl, tree type)
9208 tree var;
9210 /* Create the variable. */
9211 var = create_temporary_var (type);
9213 /* Register the variable. */
9214 if (VAR_P (decl)
9215 && (TREE_STATIC (decl) || DECL_THREAD_LOCAL_P (decl)))
9217 /* Namespace-scope or local static; give it a mangled name. */
9218 /* FIXME share comdat with decl? */
9219 tree name;
9221 TREE_STATIC (var) = TREE_STATIC (decl);
9222 DECL_TLS_MODEL (var) = DECL_TLS_MODEL (decl);
9223 name = mangle_ref_init_variable (decl);
9224 DECL_NAME (var) = name;
9225 SET_DECL_ASSEMBLER_NAME (var, name);
9226 var = pushdecl_top_level (var);
9228 else
9229 /* Create a new cleanup level if necessary. */
9230 maybe_push_cleanup_level (type);
9232 return var;
9235 /* EXPR is the initializer for a variable DECL of reference or
9236 std::initializer_list type. Create, push and return a new VAR_DECL
9237 for the initializer so that it will live as long as DECL. Any
9238 cleanup for the new variable is returned through CLEANUP, and the
9239 code to initialize the new variable is returned through INITP. */
9241 static tree
9242 set_up_extended_ref_temp (tree decl, tree expr, vec<tree, va_gc> **cleanups,
9243 tree *initp)
9245 tree init;
9246 tree type;
9247 tree var;
9249 /* Create the temporary variable. */
9250 type = TREE_TYPE (expr);
9251 var = make_temporary_var_for_ref_to_temp (decl, type);
9252 layout_decl (var, 0);
9253 /* If the rvalue is the result of a function call it will be
9254 a TARGET_EXPR. If it is some other construct (such as a
9255 member access expression where the underlying object is
9256 itself the result of a function call), turn it into a
9257 TARGET_EXPR here. It is important that EXPR be a
9258 TARGET_EXPR below since otherwise the INIT_EXPR will
9259 attempt to make a bitwise copy of EXPR to initialize
9260 VAR. */
9261 if (TREE_CODE (expr) != TARGET_EXPR)
9262 expr = get_target_expr (expr);
9264 if (TREE_CODE (decl) == FIELD_DECL
9265 && extra_warnings && !TREE_NO_WARNING (decl))
9267 warning (OPT_Wextra, "a temporary bound to %qD only persists "
9268 "until the constructor exits", decl);
9269 TREE_NO_WARNING (decl) = true;
9272 /* Recursively extend temps in this initializer. */
9273 TARGET_EXPR_INITIAL (expr)
9274 = extend_ref_init_temps (decl, TARGET_EXPR_INITIAL (expr), cleanups);
9276 /* Any reference temp has a non-trivial initializer. */
9277 DECL_NONTRIVIALLY_INITIALIZED_P (var) = true;
9279 /* If the initializer is constant, put it in DECL_INITIAL so we get
9280 static initialization and use in constant expressions. */
9281 init = maybe_constant_init (expr);
9282 if (TREE_CONSTANT (init))
9284 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
9286 /* 5.19 says that a constant expression can include an
9287 lvalue-rvalue conversion applied to "a glvalue of literal type
9288 that refers to a non-volatile temporary object initialized
9289 with a constant expression". Rather than try to communicate
9290 that this VAR_DECL is a temporary, just mark it constexpr.
9292 Currently this is only useful for initializer_list temporaries,
9293 since reference vars can't appear in constant expressions. */
9294 DECL_DECLARED_CONSTEXPR_P (var) = true;
9295 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var) = true;
9296 TREE_CONSTANT (var) = true;
9298 DECL_INITIAL (var) = init;
9299 init = NULL_TREE;
9301 else
9302 /* Create the INIT_EXPR that will initialize the temporary
9303 variable. */
9304 init = build2 (INIT_EXPR, type, var, expr);
9305 if (at_function_scope_p ())
9307 add_decl_expr (var);
9309 if (TREE_STATIC (var))
9310 init = add_stmt_to_compound (init, register_dtor_fn (var));
9311 else
9313 tree cleanup = cxx_maybe_build_cleanup (var, tf_warning_or_error);
9314 if (cleanup)
9315 vec_safe_push (*cleanups, cleanup);
9318 /* We must be careful to destroy the temporary only
9319 after its initialization has taken place. If the
9320 initialization throws an exception, then the
9321 destructor should not be run. We cannot simply
9322 transform INIT into something like:
9324 (INIT, ({ CLEANUP_STMT; }))
9326 because emit_local_var always treats the
9327 initializer as a full-expression. Thus, the
9328 destructor would run too early; it would run at the
9329 end of initializing the reference variable, rather
9330 than at the end of the block enclosing the
9331 reference variable.
9333 The solution is to pass back a cleanup expression
9334 which the caller is responsible for attaching to
9335 the statement tree. */
9337 else
9339 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
9340 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
9342 if (DECL_THREAD_LOCAL_P (var))
9343 tls_aggregates = tree_cons (NULL_TREE, var,
9344 tls_aggregates);
9345 else
9346 static_aggregates = tree_cons (NULL_TREE, var,
9347 static_aggregates);
9349 else
9350 /* Check whether the dtor is callable. */
9351 cxx_maybe_build_cleanup (var, tf_warning_or_error);
9354 *initp = init;
9355 return var;
9358 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
9359 initializing a variable of that TYPE. */
9361 tree
9362 initialize_reference (tree type, tree expr,
9363 int flags, tsubst_flags_t complain)
9365 conversion *conv;
9366 void *p;
9367 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
9369 if (type == error_mark_node || error_operand_p (expr))
9370 return error_mark_node;
9372 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9373 p = conversion_obstack_alloc (0);
9375 conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
9376 flags, complain);
9377 if (!conv || conv->bad_p)
9379 if (complain & tf_error)
9381 if (conv)
9382 convert_like (conv, expr, complain);
9383 else if (!CP_TYPE_CONST_P (TREE_TYPE (type))
9384 && !TYPE_REF_IS_RVALUE (type)
9385 && !real_lvalue_p (expr))
9386 error_at (loc, "invalid initialization of non-const reference of "
9387 "type %qT from an rvalue of type %qT",
9388 type, TREE_TYPE (expr));
9389 else
9390 error_at (loc, "invalid initialization of reference of type "
9391 "%qT from expression of type %qT", type,
9392 TREE_TYPE (expr));
9394 return error_mark_node;
9397 if (conv->kind == ck_ref_bind)
9398 /* Perform the conversion. */
9399 expr = convert_like (conv, expr, complain);
9400 else if (conv->kind == ck_ambig)
9401 /* We gave an error in build_user_type_conversion_1. */
9402 expr = error_mark_node;
9403 else
9404 gcc_unreachable ();
9406 /* Free all the conversions we allocated. */
9407 obstack_free (&conversion_obstack, p);
9409 return expr;
9412 /* Subroutine of extend_ref_init_temps. Possibly extend one initializer,
9413 which is bound either to a reference or a std::initializer_list. */
9415 static tree
9416 extend_ref_init_temps_1 (tree decl, tree init, vec<tree, va_gc> **cleanups)
9418 tree sub = init;
9419 tree *p;
9420 STRIP_NOPS (sub);
9421 if (TREE_CODE (sub) == COMPOUND_EXPR)
9423 TREE_OPERAND (sub, 1)
9424 = extend_ref_init_temps_1 (decl, TREE_OPERAND (sub, 1), cleanups);
9425 return init;
9427 if (TREE_CODE (sub) != ADDR_EXPR)
9428 return init;
9429 /* Deal with binding to a subobject. */
9430 for (p = &TREE_OPERAND (sub, 0); TREE_CODE (*p) == COMPONENT_REF; )
9431 p = &TREE_OPERAND (*p, 0);
9432 if (TREE_CODE (*p) == TARGET_EXPR)
9434 tree subinit = NULL_TREE;
9435 *p = set_up_extended_ref_temp (decl, *p, cleanups, &subinit);
9436 if (subinit)
9437 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), subinit, init);
9438 recompute_tree_invariant_for_addr_expr (sub);
9440 return init;
9443 /* INIT is part of the initializer for DECL. If there are any
9444 reference or initializer lists being initialized, extend their
9445 lifetime to match that of DECL. */
9447 tree
9448 extend_ref_init_temps (tree decl, tree init, vec<tree, va_gc> **cleanups)
9450 tree type = TREE_TYPE (init);
9451 if (processing_template_decl)
9452 return init;
9453 if (TREE_CODE (type) == REFERENCE_TYPE)
9454 init = extend_ref_init_temps_1 (decl, init, cleanups);
9455 else if (is_std_init_list (type))
9457 /* The temporary array underlying a std::initializer_list
9458 is handled like a reference temporary. */
9459 tree ctor = init;
9460 if (TREE_CODE (ctor) == TARGET_EXPR)
9461 ctor = TARGET_EXPR_INITIAL (ctor);
9462 if (TREE_CODE (ctor) == CONSTRUCTOR)
9464 tree array = CONSTRUCTOR_ELT (ctor, 0)->value;
9465 array = extend_ref_init_temps_1 (decl, array, cleanups);
9466 CONSTRUCTOR_ELT (ctor, 0)->value = array;
9469 else if (TREE_CODE (init) == CONSTRUCTOR)
9471 unsigned i;
9472 constructor_elt *p;
9473 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (init);
9474 FOR_EACH_VEC_SAFE_ELT (elts, i, p)
9475 p->value = extend_ref_init_temps (decl, p->value, cleanups);
9478 return init;
9481 /* Returns true iff an initializer for TYPE could contain temporaries that
9482 need to be extended because they are bound to references or
9483 std::initializer_list. */
9485 bool
9486 type_has_extended_temps (tree type)
9488 type = strip_array_types (type);
9489 if (TREE_CODE (type) == REFERENCE_TYPE)
9490 return true;
9491 if (CLASS_TYPE_P (type))
9493 if (is_std_init_list (type))
9494 return true;
9495 for (tree f = next_initializable_field (TYPE_FIELDS (type));
9496 f; f = next_initializable_field (DECL_CHAIN (f)))
9497 if (type_has_extended_temps (TREE_TYPE (f)))
9498 return true;
9500 return false;
9503 /* Returns true iff TYPE is some variant of std::initializer_list. */
9505 bool
9506 is_std_init_list (tree type)
9508 /* Look through typedefs. */
9509 if (!TYPE_P (type))
9510 return false;
9511 if (cxx_dialect == cxx98)
9512 return false;
9513 type = TYPE_MAIN_VARIANT (type);
9514 return (CLASS_TYPE_P (type)
9515 && CP_TYPE_CONTEXT (type) == std_node
9516 && strcmp (TYPE_NAME_STRING (type), "initializer_list") == 0);
9519 /* Returns true iff DECL is a list constructor: i.e. a constructor which
9520 will accept an argument list of a single std::initializer_list<T>. */
9522 bool
9523 is_list_ctor (tree decl)
9525 tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
9526 tree arg;
9528 if (!args || args == void_list_node)
9529 return false;
9531 arg = non_reference (TREE_VALUE (args));
9532 if (!is_std_init_list (arg))
9533 return false;
9535 args = TREE_CHAIN (args);
9537 if (args && args != void_list_node && !TREE_PURPOSE (args))
9538 /* There are more non-defaulted parms. */
9539 return false;
9541 return true;
9544 #include "gt-cp-call.h"