* call.c (build_new_method_call_1): Handle aggregate initialization.
[official-gcc.git] / gcc / cp / call.c
blob548a36bf8e502f2b51984152041f70d02cd587e9
1 /* Functions related to invoking methods and overloaded functions.
2 Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2010, 2011
5 Free Software Foundation, Inc.
6 Contributed by Michael Tiemann (tiemann@cygnus.com) and
7 modified by Brendan Kehoe (brendan@cygnus.com).
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3, or (at your option)
14 any later version.
16 GCC is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
26 /* High-level class interface. */
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "tree.h"
33 #include "cp-tree.h"
34 #include "output.h"
35 #include "flags.h"
36 #include "toplev.h"
37 #include "diagnostic-core.h"
38 #include "intl.h"
39 #include "target.h"
40 #include "convert.h"
41 #include "langhooks.h"
42 #include "c-family/c-objc.h"
43 #include "timevar.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 nor ck_ambig. */
115 conversion *next;
116 /* The expression at the beginning of the conversion chain. This
117 variant is used only if KIND is ck_identity or ck_ambig. */
118 tree expr;
119 /* The array of conversions for an initializer_list. */
120 conversion **list;
121 } u;
122 /* The function candidate corresponding to this conversion
123 sequence. This field is only used if KIND is ck_user. */
124 struct z_candidate *cand;
127 #define CONVERSION_RANK(NODE) \
128 ((NODE)->bad_p ? cr_bad \
129 : (NODE)->ellipsis_p ? cr_ellipsis \
130 : (NODE)->user_conv_p ? cr_user \
131 : (NODE)->rank)
133 #define BAD_CONVERSION_RANK(NODE) \
134 ((NODE)->ellipsis_p ? cr_ellipsis \
135 : (NODE)->user_conv_p ? cr_user \
136 : (NODE)->rank)
138 static struct obstack conversion_obstack;
139 static bool conversion_obstack_initialized;
140 struct rejection_reason;
142 static struct z_candidate * tourney (struct z_candidate *);
143 static int equal_functions (tree, tree);
144 static int joust (struct z_candidate *, struct z_candidate *, bool);
145 static int compare_ics (conversion *, conversion *);
146 static tree build_over_call (struct z_candidate *, int, tsubst_flags_t);
147 static tree build_java_interface_fn_ref (tree, tree);
148 #define convert_like(CONV, EXPR, COMPLAIN) \
149 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
150 /*issue_conversion_warnings=*/true, \
151 /*c_cast_p=*/false, (COMPLAIN))
152 #define convert_like_with_context(CONV, EXPR, FN, ARGNO, COMPLAIN ) \
153 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
154 /*issue_conversion_warnings=*/true, \
155 /*c_cast_p=*/false, (COMPLAIN))
156 static tree convert_like_real (conversion *, tree, tree, int, int, bool,
157 bool, tsubst_flags_t);
158 static void op_error (enum tree_code, enum tree_code, tree, tree,
159 tree, bool);
160 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int);
161 static void print_z_candidate (const char *, struct z_candidate *);
162 static void print_z_candidates (location_t, struct z_candidate *);
163 static tree build_this (tree);
164 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
165 static bool any_strictly_viable (struct z_candidate *);
166 static struct z_candidate *add_template_candidate
167 (struct z_candidate **, tree, tree, tree, tree, const VEC(tree,gc) *,
168 tree, tree, tree, int, unification_kind_t);
169 static struct z_candidate *add_template_candidate_real
170 (struct z_candidate **, tree, tree, tree, tree, const VEC(tree,gc) *,
171 tree, tree, tree, int, tree, unification_kind_t);
172 static struct z_candidate *add_template_conv_candidate
173 (struct z_candidate **, tree, tree, tree, const VEC(tree,gc) *, tree,
174 tree, tree);
175 static void add_builtin_candidates
176 (struct z_candidate **, enum tree_code, enum tree_code,
177 tree, tree *, int);
178 static void add_builtin_candidate
179 (struct z_candidate **, enum tree_code, enum tree_code,
180 tree, tree, tree, tree *, tree *, int);
181 static bool is_complete (tree);
182 static void build_builtin_candidate
183 (struct z_candidate **, tree, tree, tree, tree *, tree *,
184 int);
185 static struct z_candidate *add_conv_candidate
186 (struct z_candidate **, tree, tree, tree, const VEC(tree,gc) *, tree,
187 tree);
188 static struct z_candidate *add_function_candidate
189 (struct z_candidate **, tree, tree, tree, const VEC(tree,gc) *, tree,
190 tree, int);
191 static conversion *implicit_conversion (tree, tree, tree, bool, int);
192 static conversion *standard_conversion (tree, tree, tree, bool, int);
193 static conversion *reference_binding (tree, tree, tree, bool, int);
194 static conversion *build_conv (conversion_kind, tree, conversion *);
195 static conversion *build_list_conv (tree, tree, int);
196 static bool is_subseq (conversion *, conversion *);
197 static conversion *maybe_handle_ref_bind (conversion **);
198 static void maybe_handle_implicit_object (conversion **);
199 static struct z_candidate *add_candidate
200 (struct z_candidate **, tree, tree, const VEC(tree,gc) *, size_t,
201 conversion **, tree, tree, int, struct rejection_reason *);
202 static tree source_type (conversion *);
203 static void add_warning (struct z_candidate *, struct z_candidate *);
204 static bool reference_compatible_p (tree, tree);
205 static conversion *direct_reference_binding (tree, conversion *);
206 static bool promoted_arithmetic_type_p (tree);
207 static conversion *conditional_conversion (tree, tree);
208 static char *name_as_c_string (tree, tree, bool *);
209 static tree prep_operand (tree);
210 static void add_candidates (tree, tree, const VEC(tree,gc) *, tree, tree, bool,
211 tree, tree, int, struct z_candidate **);
212 static conversion *merge_conversion_sequences (conversion *, conversion *);
213 static bool magic_varargs_p (tree);
214 static tree build_temp (tree, tree, int, diagnostic_t *, tsubst_flags_t);
216 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
217 NAME can take many forms... */
219 bool
220 check_dtor_name (tree basetype, tree name)
222 /* Just accept something we've already complained about. */
223 if (name == error_mark_node)
224 return true;
226 if (TREE_CODE (name) == TYPE_DECL)
227 name = TREE_TYPE (name);
228 else if (TYPE_P (name))
229 /* OK */;
230 else if (TREE_CODE (name) == IDENTIFIER_NODE)
232 if ((MAYBE_CLASS_TYPE_P (basetype)
233 && name == constructor_name (basetype))
234 || (TREE_CODE (basetype) == ENUMERAL_TYPE
235 && name == TYPE_IDENTIFIER (basetype)))
236 return true;
237 else
238 name = get_type_value (name);
240 else
242 /* In the case of:
244 template <class T> struct S { ~S(); };
245 int i;
246 i.~S();
248 NAME will be a class template. */
249 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
250 return false;
253 if (!name || name == error_mark_node)
254 return false;
255 return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
258 /* We want the address of a function or method. We avoid creating a
259 pointer-to-member function. */
261 tree
262 build_addr_func (tree function)
264 tree type = TREE_TYPE (function);
266 /* We have to do these by hand to avoid real pointer to member
267 functions. */
268 if (TREE_CODE (type) == METHOD_TYPE)
270 if (TREE_CODE (function) == OFFSET_REF)
272 tree object = build_address (TREE_OPERAND (function, 0));
273 return get_member_function_from_ptrfunc (&object,
274 TREE_OPERAND (function, 1));
276 function = build_address (function);
278 else
279 function = decay_conversion (function);
281 return function;
284 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
285 POINTER_TYPE to those. Note, pointer to member function types
286 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
287 two variants. build_call_a is the primitive taking an array of
288 arguments, while build_call_n is a wrapper that handles varargs. */
290 tree
291 build_call_n (tree function, int n, ...)
293 if (n == 0)
294 return build_call_a (function, 0, NULL);
295 else
297 tree *argarray = XALLOCAVEC (tree, n);
298 va_list ap;
299 int i;
301 va_start (ap, n);
302 for (i = 0; i < n; i++)
303 argarray[i] = va_arg (ap, tree);
304 va_end (ap);
305 return build_call_a (function, n, argarray);
309 /* Update various flags in cfun and the call itself based on what is being
310 called. Split out of build_call_a so that bot_manip can use it too. */
312 void
313 set_flags_from_callee (tree call)
315 int nothrow;
316 tree decl = get_callee_fndecl (call);
318 /* We check both the decl and the type; a function may be known not to
319 throw without being declared throw(). */
320 nothrow = ((decl && TREE_NOTHROW (decl))
321 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (call)))));
323 if (!nothrow && at_function_scope_p () && cfun && cp_function_chain)
324 cp_function_chain->can_throw = 1;
326 if (decl && TREE_THIS_VOLATILE (decl) && cfun && cp_function_chain)
327 current_function_returns_abnormally = 1;
329 TREE_NOTHROW (call) = nothrow;
332 tree
333 build_call_a (tree function, int n, tree *argarray)
335 tree decl;
336 tree result_type;
337 tree fntype;
338 int i;
340 function = build_addr_func (function);
342 gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
343 fntype = TREE_TYPE (TREE_TYPE (function));
344 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
345 || TREE_CODE (fntype) == METHOD_TYPE);
346 result_type = TREE_TYPE (fntype);
347 /* An rvalue has no cv-qualifiers. */
348 if (SCALAR_TYPE_P (result_type) || VOID_TYPE_P (result_type))
349 result_type = cv_unqualified (result_type);
351 function = build_call_array_loc (input_location,
352 result_type, function, n, argarray);
353 set_flags_from_callee (function);
355 decl = get_callee_fndecl (function);
357 if (decl && !TREE_USED (decl))
359 /* We invoke build_call directly for several library
360 functions. These may have been declared normally if
361 we're building libgcc, so we can't just check
362 DECL_ARTIFICIAL. */
363 gcc_assert (DECL_ARTIFICIAL (decl)
364 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
365 "__", 2));
366 mark_used (decl);
369 if (decl && TREE_DEPRECATED (decl))
370 warn_deprecated_use (decl, NULL_TREE);
371 require_complete_eh_spec_types (fntype, decl);
373 TREE_HAS_CONSTRUCTOR (function) = (decl && DECL_CONSTRUCTOR_P (decl));
375 /* Don't pass empty class objects by value. This is useful
376 for tags in STL, which are used to control overload resolution.
377 We don't need to handle other cases of copying empty classes. */
378 if (! decl || ! DECL_BUILT_IN (decl))
379 for (i = 0; i < n; i++)
381 tree arg = CALL_EXPR_ARG (function, i);
382 if (is_empty_class (TREE_TYPE (arg))
383 && ! TREE_ADDRESSABLE (TREE_TYPE (arg)))
385 tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (arg));
386 arg = build2 (COMPOUND_EXPR, TREE_TYPE (t), arg, t);
387 CALL_EXPR_ARG (function, i) = arg;
391 return function;
394 /* Build something of the form ptr->method (args)
395 or object.method (args). This can also build
396 calls to constructors, and find friends.
398 Member functions always take their class variable
399 as a pointer.
401 INSTANCE is a class instance.
403 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
405 PARMS help to figure out what that NAME really refers to.
407 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
408 down to the real instance type to use for access checking. We need this
409 information to get protected accesses correct.
411 FLAGS is the logical disjunction of zero or more LOOKUP_
412 flags. See cp-tree.h for more info.
414 If this is all OK, calls build_function_call with the resolved
415 member function.
417 This function must also handle being called to perform
418 initialization, promotion/coercion of arguments, and
419 instantiation of default parameters.
421 Note that NAME may refer to an instance variable name. If
422 `operator()()' is defined for the type of that field, then we return
423 that result. */
425 /* New overloading code. */
427 typedef struct z_candidate z_candidate;
429 typedef struct candidate_warning candidate_warning;
430 struct candidate_warning {
431 z_candidate *loser;
432 candidate_warning *next;
435 /* Information for providing diagnostics about why overloading failed. */
437 enum rejection_reason_code {
438 rr_none,
439 rr_arity,
440 rr_explicit_conversion,
441 rr_template_conversion,
442 rr_arg_conversion,
443 rr_bad_arg_conversion,
444 rr_template_unification,
445 rr_template_instantiation,
446 rr_invalid_copy
449 struct conversion_info {
450 /* The index of the argument, 0-based. */
451 int n_arg;
452 /* The type of the actual argument. */
453 tree from_type;
454 /* The type of the formal argument. */
455 tree to_type;
458 struct rejection_reason {
459 enum rejection_reason_code code;
460 union {
461 /* Information about an arity mismatch. */
462 struct {
463 /* The expected number of arguments. */
464 int expected;
465 /* The actual number of arguments in the call. */
466 int actual;
467 /* Whether the call was a varargs call. */
468 bool call_varargs_p;
469 } arity;
470 /* Information about an argument conversion mismatch. */
471 struct conversion_info conversion;
472 /* Same, but for bad argument conversions. */
473 struct conversion_info bad_conversion;
474 /* Information about template unification failures. These are the
475 parameters passed to fn_type_unification. */
476 struct {
477 tree tmpl;
478 tree explicit_targs;
479 tree targs;
480 const tree *args;
481 unsigned int nargs;
482 tree return_type;
483 unification_kind_t strict;
484 int flags;
485 } template_unification;
486 /* Information about template instantiation failures. These are the
487 parameters passed to instantiate_template. */
488 struct {
489 tree tmpl;
490 tree targs;
491 } template_instantiation;
492 } u;
495 struct z_candidate {
496 /* The FUNCTION_DECL that will be called if this candidate is
497 selected by overload resolution. */
498 tree fn;
499 /* If not NULL_TREE, the first argument to use when calling this
500 function. */
501 tree first_arg;
502 /* The rest of the arguments to use when calling this function. If
503 there are no further arguments this may be NULL or it may be an
504 empty vector. */
505 const VEC(tree,gc) *args;
506 /* The implicit conversion sequences for each of the arguments to
507 FN. */
508 conversion **convs;
509 /* The number of implicit conversion sequences. */
510 size_t num_convs;
511 /* If FN is a user-defined conversion, the standard conversion
512 sequence from the type returned by FN to the desired destination
513 type. */
514 conversion *second_conv;
515 int viable;
516 struct rejection_reason *reason;
517 /* If FN is a member function, the binfo indicating the path used to
518 qualify the name of FN at the call site. This path is used to
519 determine whether or not FN is accessible if it is selected by
520 overload resolution. The DECL_CONTEXT of FN will always be a
521 (possibly improper) base of this binfo. */
522 tree access_path;
523 /* If FN is a non-static member function, the binfo indicating the
524 subobject to which the `this' pointer should be converted if FN
525 is selected by overload resolution. The type pointed to the by
526 the `this' pointer must correspond to the most derived class
527 indicated by the CONVERSION_PATH. */
528 tree conversion_path;
529 tree template_decl;
530 tree explicit_targs;
531 candidate_warning *warnings;
532 z_candidate *next;
535 /* Returns true iff T is a null pointer constant in the sense of
536 [conv.ptr]. */
538 bool
539 null_ptr_cst_p (tree t)
541 /* [conv.ptr]
543 A null pointer constant is an integral constant expression
544 (_expr.const_) rvalue of integer type that evaluates to zero or
545 an rvalue of type std::nullptr_t. */
546 if (NULLPTR_TYPE_P (TREE_TYPE (t)))
547 return true;
548 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)))
550 /* Core issue 903 says only literal 0 is a null pointer constant. */
551 if (cxx_dialect < cxx0x)
553 t = integral_constant_value (t);
554 STRIP_NOPS (t);
556 if (integer_zerop (t) && !TREE_OVERFLOW (t))
557 return true;
559 return false;
562 /* Returns true iff T is a null member pointer value (4.11). */
564 bool
565 null_member_pointer_value_p (tree t)
567 tree type = TREE_TYPE (t);
568 if (!type)
569 return false;
570 else if (TYPE_PTRMEMFUNC_P (type))
571 return (TREE_CODE (t) == CONSTRUCTOR
572 && integer_zerop (CONSTRUCTOR_ELT (t, 0)->value));
573 else if (TYPE_PTRMEM_P (type))
574 return integer_all_onesp (t);
575 else
576 return false;
579 /* Returns nonzero if PARMLIST consists of only default parms,
580 ellipsis, and/or undeduced parameter packs. */
582 bool
583 sufficient_parms_p (const_tree parmlist)
585 for (; parmlist && parmlist != void_list_node;
586 parmlist = TREE_CHAIN (parmlist))
587 if (!TREE_PURPOSE (parmlist)
588 && !PACK_EXPANSION_P (TREE_VALUE (parmlist)))
589 return false;
590 return true;
593 /* Allocate N bytes of memory from the conversion obstack. The memory
594 is zeroed before being returned. */
596 static void *
597 conversion_obstack_alloc (size_t n)
599 void *p;
600 if (!conversion_obstack_initialized)
602 gcc_obstack_init (&conversion_obstack);
603 conversion_obstack_initialized = true;
605 p = obstack_alloc (&conversion_obstack, n);
606 memset (p, 0, n);
607 return p;
610 /* Allocate rejection reasons. */
612 static struct rejection_reason *
613 alloc_rejection (enum rejection_reason_code code)
615 struct rejection_reason *p;
616 p = (struct rejection_reason *) conversion_obstack_alloc (sizeof *p);
617 p->code = code;
618 return p;
621 static struct rejection_reason *
622 arity_rejection (tree first_arg, int expected, int actual)
624 struct rejection_reason *r = alloc_rejection (rr_arity);
625 int adjust = first_arg != NULL_TREE;
626 r->u.arity.expected = expected - adjust;
627 r->u.arity.actual = actual - adjust;
628 return r;
631 static struct rejection_reason *
632 arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
634 struct rejection_reason *r = alloc_rejection (rr_arg_conversion);
635 int adjust = first_arg != NULL_TREE;
636 r->u.conversion.n_arg = n_arg - adjust;
637 r->u.conversion.from_type = from;
638 r->u.conversion.to_type = to;
639 return r;
642 static struct rejection_reason *
643 bad_arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
645 struct rejection_reason *r = alloc_rejection (rr_bad_arg_conversion);
646 int adjust = first_arg != NULL_TREE;
647 r->u.bad_conversion.n_arg = n_arg - adjust;
648 r->u.bad_conversion.from_type = from;
649 r->u.bad_conversion.to_type = to;
650 return r;
653 static struct rejection_reason *
654 explicit_conversion_rejection (tree from, tree to)
656 struct rejection_reason *r = alloc_rejection (rr_explicit_conversion);
657 r->u.conversion.n_arg = 0;
658 r->u.conversion.from_type = from;
659 r->u.conversion.to_type = to;
660 return r;
663 static struct rejection_reason *
664 template_conversion_rejection (tree from, tree to)
666 struct rejection_reason *r = alloc_rejection (rr_template_conversion);
667 r->u.conversion.n_arg = 0;
668 r->u.conversion.from_type = from;
669 r->u.conversion.to_type = to;
670 return r;
673 static struct rejection_reason *
674 template_unification_rejection (tree tmpl, tree explicit_targs, tree targs,
675 const tree *args, unsigned int nargs,
676 tree return_type, unification_kind_t strict,
677 int flags)
679 size_t args_n_bytes = sizeof (*args) * nargs;
680 tree *args1 = (tree *) conversion_obstack_alloc (args_n_bytes);
681 struct rejection_reason *r = alloc_rejection (rr_template_unification);
682 r->u.template_unification.tmpl = tmpl;
683 r->u.template_unification.explicit_targs = explicit_targs;
684 r->u.template_unification.targs = targs;
685 /* Copy args to our own storage. */
686 memcpy (args1, args, args_n_bytes);
687 r->u.template_unification.args = args1;
688 r->u.template_unification.nargs = nargs;
689 r->u.template_unification.return_type = return_type;
690 r->u.template_unification.strict = strict;
691 r->u.template_unification.flags = flags;
692 return r;
695 static struct rejection_reason *
696 template_unification_error_rejection (void)
698 return alloc_rejection (rr_template_unification);
701 static struct rejection_reason *
702 template_instantiation_rejection (tree tmpl, tree targs)
704 struct rejection_reason *r = alloc_rejection (rr_template_instantiation);
705 r->u.template_instantiation.tmpl = tmpl;
706 r->u.template_instantiation.targs = targs;
707 return r;
710 static struct rejection_reason *
711 invalid_copy_with_fn_template_rejection (void)
713 struct rejection_reason *r = alloc_rejection (rr_invalid_copy);
714 return r;
717 /* Dynamically allocate a conversion. */
719 static conversion *
720 alloc_conversion (conversion_kind kind)
722 conversion *c;
723 c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
724 c->kind = kind;
725 return c;
728 #ifdef ENABLE_CHECKING
730 /* Make sure that all memory on the conversion obstack has been
731 freed. */
733 void
734 validate_conversion_obstack (void)
736 if (conversion_obstack_initialized)
737 gcc_assert ((obstack_next_free (&conversion_obstack)
738 == obstack_base (&conversion_obstack)));
741 #endif /* ENABLE_CHECKING */
743 /* Dynamically allocate an array of N conversions. */
745 static conversion **
746 alloc_conversions (size_t n)
748 return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
751 static conversion *
752 build_conv (conversion_kind code, tree type, conversion *from)
754 conversion *t;
755 conversion_rank rank = CONVERSION_RANK (from);
757 /* Note that the caller is responsible for filling in t->cand for
758 user-defined conversions. */
759 t = alloc_conversion (code);
760 t->type = type;
761 t->u.next = from;
763 switch (code)
765 case ck_ptr:
766 case ck_pmem:
767 case ck_base:
768 case ck_std:
769 if (rank < cr_std)
770 rank = cr_std;
771 break;
773 case ck_qual:
774 if (rank < cr_exact)
775 rank = cr_exact;
776 break;
778 default:
779 break;
781 t->rank = rank;
782 t->user_conv_p = (code == ck_user || from->user_conv_p);
783 t->bad_p = from->bad_p;
784 t->base_p = false;
785 return t;
788 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
789 specialization of std::initializer_list<T>, if such a conversion is
790 possible. */
792 static conversion *
793 build_list_conv (tree type, tree ctor, int flags)
795 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type), 0);
796 unsigned len = CONSTRUCTOR_NELTS (ctor);
797 conversion **subconvs = alloc_conversions (len);
798 conversion *t;
799 unsigned i;
800 tree val;
802 /* Within a list-initialization we can have more user-defined
803 conversions. */
804 flags &= ~LOOKUP_NO_CONVERSION;
805 /* But no narrowing conversions. */
806 flags |= LOOKUP_NO_NARROWING;
808 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
810 conversion *sub
811 = implicit_conversion (elttype, TREE_TYPE (val), val,
812 false, flags);
813 if (sub == NULL)
814 return NULL;
816 subconvs[i] = sub;
819 t = alloc_conversion (ck_list);
820 t->type = type;
821 t->u.list = subconvs;
822 t->rank = cr_exact;
824 for (i = 0; i < len; ++i)
826 conversion *sub = subconvs[i];
827 if (sub->rank > t->rank)
828 t->rank = sub->rank;
829 if (sub->user_conv_p)
830 t->user_conv_p = true;
831 if (sub->bad_p)
832 t->bad_p = true;
835 return t;
838 /* Subroutine of build_aggr_conv: check whether CTOR, a braced-init-list,
839 is a valid aggregate initializer for array type ATYPE. */
841 static bool
842 can_convert_array (tree atype, tree ctor, int flags)
844 unsigned i;
845 tree elttype = TREE_TYPE (atype);
846 for (i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
848 tree val = CONSTRUCTOR_ELT (ctor, i)->value;
849 bool ok;
850 if (TREE_CODE (elttype) == ARRAY_TYPE
851 && TREE_CODE (val) == CONSTRUCTOR)
852 ok = can_convert_array (elttype, val, flags);
853 else
854 ok = can_convert_arg (elttype, TREE_TYPE (val), val, flags);
855 if (!ok)
856 return false;
858 return true;
861 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
862 aggregate class, if such a conversion is possible. */
864 static conversion *
865 build_aggr_conv (tree type, tree ctor, int flags)
867 unsigned HOST_WIDE_INT i = 0;
868 conversion *c;
869 tree field = next_initializable_field (TYPE_FIELDS (type));
870 tree empty_ctor = NULL_TREE;
872 for (; field; field = next_initializable_field (DECL_CHAIN (field)))
874 tree ftype = TREE_TYPE (field);
875 tree val;
876 bool ok;
878 if (i < CONSTRUCTOR_NELTS (ctor))
879 val = CONSTRUCTOR_ELT (ctor, i)->value;
880 else
882 if (empty_ctor == NULL_TREE)
883 empty_ctor = build_constructor (init_list_type_node, NULL);
884 val = empty_ctor;
886 ++i;
888 if (TREE_CODE (ftype) == ARRAY_TYPE
889 && TREE_CODE (val) == CONSTRUCTOR)
890 ok = can_convert_array (ftype, val, flags);
891 else
892 ok = can_convert_arg (ftype, TREE_TYPE (val), val, flags);
894 if (!ok)
895 return NULL;
897 if (TREE_CODE (type) == UNION_TYPE)
898 break;
901 if (i < CONSTRUCTOR_NELTS (ctor))
902 return NULL;
904 c = alloc_conversion (ck_aggr);
905 c->type = type;
906 c->rank = cr_exact;
907 c->user_conv_p = true;
908 c->u.next = NULL;
909 return c;
912 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
913 array type, if such a conversion is possible. */
915 static conversion *
916 build_array_conv (tree type, tree ctor, int flags)
918 conversion *c;
919 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
920 tree elttype = TREE_TYPE (type);
921 unsigned i;
922 tree val;
923 bool bad = false;
924 bool user = false;
925 enum conversion_rank rank = cr_exact;
927 if (TYPE_DOMAIN (type))
929 unsigned HOST_WIDE_INT alen = tree_low_cst (array_type_nelts_top (type), 1);
930 if (alen < len)
931 return NULL;
934 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
936 conversion *sub
937 = implicit_conversion (elttype, TREE_TYPE (val), val,
938 false, flags);
939 if (sub == NULL)
940 return NULL;
942 if (sub->rank > rank)
943 rank = sub->rank;
944 if (sub->user_conv_p)
945 user = true;
946 if (sub->bad_p)
947 bad = true;
950 c = alloc_conversion (ck_aggr);
951 c->type = type;
952 c->rank = rank;
953 c->user_conv_p = user;
954 c->bad_p = bad;
955 c->u.next = NULL;
956 return c;
959 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
960 complex type, if such a conversion is possible. */
962 static conversion *
963 build_complex_conv (tree type, tree ctor, int flags)
965 conversion *c;
966 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
967 tree elttype = TREE_TYPE (type);
968 unsigned i;
969 tree val;
970 bool bad = false;
971 bool user = false;
972 enum conversion_rank rank = cr_exact;
974 if (len != 2)
975 return NULL;
977 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
979 conversion *sub
980 = implicit_conversion (elttype, TREE_TYPE (val), val,
981 false, flags);
982 if (sub == NULL)
983 return NULL;
985 if (sub->rank > rank)
986 rank = sub->rank;
987 if (sub->user_conv_p)
988 user = true;
989 if (sub->bad_p)
990 bad = true;
993 c = alloc_conversion (ck_aggr);
994 c->type = type;
995 c->rank = rank;
996 c->user_conv_p = user;
997 c->bad_p = bad;
998 c->u.next = NULL;
999 return c;
1002 /* Build a representation of the identity conversion from EXPR to
1003 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
1005 static conversion *
1006 build_identity_conv (tree type, tree expr)
1008 conversion *c;
1010 c = alloc_conversion (ck_identity);
1011 c->type = type;
1012 c->u.expr = expr;
1014 return c;
1017 /* Converting from EXPR to TYPE was ambiguous in the sense that there
1018 were multiple user-defined conversions to accomplish the job.
1019 Build a conversion that indicates that ambiguity. */
1021 static conversion *
1022 build_ambiguous_conv (tree type, tree expr)
1024 conversion *c;
1026 c = alloc_conversion (ck_ambig);
1027 c->type = type;
1028 c->u.expr = expr;
1030 return c;
1033 tree
1034 strip_top_quals (tree t)
1036 if (TREE_CODE (t) == ARRAY_TYPE)
1037 return t;
1038 return cp_build_qualified_type (t, 0);
1041 /* Returns the standard conversion path (see [conv]) from type FROM to type
1042 TO, if any. For proper handling of null pointer constants, you must
1043 also pass the expression EXPR to convert from. If C_CAST_P is true,
1044 this conversion is coming from a C-style cast. */
1046 static conversion *
1047 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
1048 int flags)
1050 enum tree_code fcode, tcode;
1051 conversion *conv;
1052 bool fromref = false;
1053 tree qualified_to;
1055 to = non_reference (to);
1056 if (TREE_CODE (from) == REFERENCE_TYPE)
1058 fromref = true;
1059 from = TREE_TYPE (from);
1061 qualified_to = to;
1062 to = strip_top_quals (to);
1063 from = strip_top_quals (from);
1065 if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
1066 && expr && type_unknown_p (expr))
1068 tsubst_flags_t tflags = tf_conv;
1069 if (!(flags & LOOKUP_PROTECT))
1070 tflags |= tf_no_access_control;
1071 expr = instantiate_type (to, expr, tflags);
1072 if (expr == error_mark_node)
1073 return NULL;
1074 from = TREE_TYPE (expr);
1077 fcode = TREE_CODE (from);
1078 tcode = TREE_CODE (to);
1080 conv = build_identity_conv (from, expr);
1081 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
1083 from = type_decays_to (from);
1084 fcode = TREE_CODE (from);
1085 conv = build_conv (ck_lvalue, from, conv);
1087 else if (fromref || (expr && lvalue_p (expr)))
1089 if (expr)
1091 tree bitfield_type;
1092 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
1093 if (bitfield_type)
1095 from = strip_top_quals (bitfield_type);
1096 fcode = TREE_CODE (from);
1099 conv = build_conv (ck_rvalue, from, conv);
1100 if (flags & LOOKUP_PREFER_RVALUE)
1101 conv->rvaluedness_matches_p = true;
1104 /* Allow conversion between `__complex__' data types. */
1105 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
1107 /* The standard conversion sequence to convert FROM to TO is
1108 the standard conversion sequence to perform componentwise
1109 conversion. */
1110 conversion *part_conv = standard_conversion
1111 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
1113 if (part_conv)
1115 conv = build_conv (part_conv->kind, to, conv);
1116 conv->rank = part_conv->rank;
1118 else
1119 conv = NULL;
1121 return conv;
1124 if (same_type_p (from, to))
1126 if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue)
1127 conv->type = qualified_to;
1128 return conv;
1131 /* [conv.ptr]
1132 A null pointer constant can be converted to a pointer type; ... A
1133 null pointer constant of integral type can be converted to an
1134 rvalue of type std::nullptr_t. */
1135 if ((tcode == POINTER_TYPE || TYPE_PTR_TO_MEMBER_P (to)
1136 || NULLPTR_TYPE_P (to))
1137 && expr && null_ptr_cst_p (expr))
1138 conv = build_conv (ck_std, to, conv);
1139 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
1140 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
1142 /* For backwards brain damage compatibility, allow interconversion of
1143 pointers and integers with a pedwarn. */
1144 conv = build_conv (ck_std, to, conv);
1145 conv->bad_p = true;
1147 else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
1149 /* For backwards brain damage compatibility, allow interconversion of
1150 enums and integers with a pedwarn. */
1151 conv = build_conv (ck_std, to, conv);
1152 conv->bad_p = true;
1154 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
1155 || (TYPE_PTRMEM_P (to) && TYPE_PTRMEM_P (from)))
1157 tree to_pointee;
1158 tree from_pointee;
1160 if (tcode == POINTER_TYPE
1161 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
1162 TREE_TYPE (to)))
1164 else if (VOID_TYPE_P (TREE_TYPE (to))
1165 && !TYPE_PTRMEM_P (from)
1166 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
1168 tree nfrom = TREE_TYPE (from);
1169 from = build_pointer_type
1170 (cp_build_qualified_type (void_type_node,
1171 cp_type_quals (nfrom)));
1172 conv = build_conv (ck_ptr, from, conv);
1174 else if (TYPE_PTRMEM_P (from))
1176 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
1177 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
1179 if (DERIVED_FROM_P (fbase, tbase)
1180 && (same_type_ignoring_top_level_qualifiers_p
1181 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
1182 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
1184 from = build_ptrmem_type (tbase,
1185 TYPE_PTRMEM_POINTED_TO_TYPE (from));
1186 conv = build_conv (ck_pmem, from, conv);
1188 else if (!same_type_p (fbase, tbase))
1189 return NULL;
1191 else if (CLASS_TYPE_P (TREE_TYPE (from))
1192 && CLASS_TYPE_P (TREE_TYPE (to))
1193 /* [conv.ptr]
1195 An rvalue of type "pointer to cv D," where D is a
1196 class type, can be converted to an rvalue of type
1197 "pointer to cv B," where B is a base class (clause
1198 _class.derived_) of D. If B is an inaccessible
1199 (clause _class.access_) or ambiguous
1200 (_class.member.lookup_) base class of D, a program
1201 that necessitates this conversion is ill-formed.
1202 Therefore, we use DERIVED_FROM_P, and do not check
1203 access or uniqueness. */
1204 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
1206 from =
1207 cp_build_qualified_type (TREE_TYPE (to),
1208 cp_type_quals (TREE_TYPE (from)));
1209 from = build_pointer_type (from);
1210 conv = build_conv (ck_ptr, from, conv);
1211 conv->base_p = true;
1214 if (tcode == POINTER_TYPE)
1216 to_pointee = TREE_TYPE (to);
1217 from_pointee = TREE_TYPE (from);
1219 else
1221 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
1222 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
1225 if (same_type_p (from, to))
1226 /* OK */;
1227 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
1228 /* In a C-style cast, we ignore CV-qualification because we
1229 are allowed to perform a static_cast followed by a
1230 const_cast. */
1231 conv = build_conv (ck_qual, to, conv);
1232 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
1233 conv = build_conv (ck_qual, to, conv);
1234 else if (expr && string_conv_p (to, expr, 0))
1235 /* converting from string constant to char *. */
1236 conv = build_conv (ck_qual, to, conv);
1237 /* Allow conversions among compatible ObjC pointer types (base
1238 conversions have been already handled above). */
1239 else if (c_dialect_objc ()
1240 && objc_compare_types (to, from, -4, NULL_TREE))
1241 conv = build_conv (ck_ptr, to, conv);
1242 else if (ptr_reasonably_similar (to_pointee, from_pointee))
1244 conv = build_conv (ck_ptr, to, conv);
1245 conv->bad_p = true;
1247 else
1248 return NULL;
1250 from = to;
1252 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
1254 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
1255 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
1256 tree fbase = class_of_this_parm (fromfn);
1257 tree tbase = class_of_this_parm (tofn);
1259 if (!DERIVED_FROM_P (fbase, tbase)
1260 || !same_type_p (TREE_TYPE (fromfn), TREE_TYPE (tofn))
1261 || !compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn)),
1262 TREE_CHAIN (TYPE_ARG_TYPES (tofn)))
1263 || cp_type_quals (fbase) != cp_type_quals (tbase))
1264 return NULL;
1266 from = build_memfn_type (fromfn, tbase, cp_type_quals (tbase));
1267 from = build_ptrmemfunc_type (build_pointer_type (from));
1268 conv = build_conv (ck_pmem, from, conv);
1269 conv->base_p = true;
1271 else if (tcode == BOOLEAN_TYPE)
1273 /* [conv.bool]
1275 An rvalue of arithmetic, unscoped enumeration, pointer, or
1276 pointer to member type can be converted to an rvalue of type
1277 bool. ... An rvalue of type std::nullptr_t can be converted
1278 to an rvalue of type bool; */
1279 if (ARITHMETIC_TYPE_P (from)
1280 || UNSCOPED_ENUM_P (from)
1281 || fcode == POINTER_TYPE
1282 || TYPE_PTR_TO_MEMBER_P (from)
1283 || NULLPTR_TYPE_P (from))
1285 conv = build_conv (ck_std, to, conv);
1286 if (fcode == POINTER_TYPE
1287 || TYPE_PTRMEM_P (from)
1288 || (TYPE_PTRMEMFUNC_P (from)
1289 && conv->rank < cr_pbool)
1290 || NULLPTR_TYPE_P (from))
1291 conv->rank = cr_pbool;
1292 return conv;
1295 return NULL;
1297 /* We don't check for ENUMERAL_TYPE here because there are no standard
1298 conversions to enum type. */
1299 /* As an extension, allow conversion to complex type. */
1300 else if (ARITHMETIC_TYPE_P (to))
1302 if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE)
1303 || SCOPED_ENUM_P (from))
1304 return NULL;
1305 conv = build_conv (ck_std, to, conv);
1307 /* Give this a better rank if it's a promotion. */
1308 if (same_type_p (to, type_promotes_to (from))
1309 && conv->u.next->rank <= cr_promotion)
1310 conv->rank = cr_promotion;
1312 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
1313 && vector_types_convertible_p (from, to, false))
1314 return build_conv (ck_std, to, conv);
1315 else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
1316 && is_properly_derived_from (from, to))
1318 if (conv->kind == ck_rvalue)
1319 conv = conv->u.next;
1320 conv = build_conv (ck_base, to, conv);
1321 /* The derived-to-base conversion indicates the initialization
1322 of a parameter with base type from an object of a derived
1323 type. A temporary object is created to hold the result of
1324 the conversion unless we're binding directly to a reference. */
1325 conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
1327 else
1328 return NULL;
1330 if (flags & LOOKUP_NO_NARROWING)
1331 conv->check_narrowing = true;
1333 return conv;
1336 /* Returns nonzero if T1 is reference-related to T2. */
1338 bool
1339 reference_related_p (tree t1, tree t2)
1341 if (t1 == error_mark_node || t2 == error_mark_node)
1342 return false;
1344 t1 = TYPE_MAIN_VARIANT (t1);
1345 t2 = TYPE_MAIN_VARIANT (t2);
1347 /* [dcl.init.ref]
1349 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1350 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
1351 of T2. */
1352 return (same_type_p (t1, t2)
1353 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
1354 && DERIVED_FROM_P (t1, t2)));
1357 /* Returns nonzero if T1 is reference-compatible with T2. */
1359 static bool
1360 reference_compatible_p (tree t1, tree t2)
1362 /* [dcl.init.ref]
1364 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
1365 reference-related to T2 and cv1 is the same cv-qualification as,
1366 or greater cv-qualification than, cv2. */
1367 return (reference_related_p (t1, t2)
1368 && at_least_as_qualified_p (t1, t2));
1371 /* A reference of the indicated TYPE is being bound directly to the
1372 expression represented by the implicit conversion sequence CONV.
1373 Return a conversion sequence for this binding. */
1375 static conversion *
1376 direct_reference_binding (tree type, conversion *conv)
1378 tree t;
1380 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
1381 gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
1383 t = TREE_TYPE (type);
1385 /* [over.ics.rank]
1387 When a parameter of reference type binds directly
1388 (_dcl.init.ref_) to an argument expression, the implicit
1389 conversion sequence is the identity conversion, unless the
1390 argument expression has a type that is a derived class of the
1391 parameter type, in which case the implicit conversion sequence is
1392 a derived-to-base Conversion.
1394 If the parameter binds directly to the result of applying a
1395 conversion function to the argument expression, the implicit
1396 conversion sequence is a user-defined conversion sequence
1397 (_over.ics.user_), with the second standard conversion sequence
1398 either an identity conversion or, if the conversion function
1399 returns an entity of a type that is a derived class of the
1400 parameter type, a derived-to-base conversion. */
1401 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
1403 /* Represent the derived-to-base conversion. */
1404 conv = build_conv (ck_base, t, conv);
1405 /* We will actually be binding to the base-class subobject in
1406 the derived class, so we mark this conversion appropriately.
1407 That way, convert_like knows not to generate a temporary. */
1408 conv->need_temporary_p = false;
1410 return build_conv (ck_ref_bind, type, conv);
1413 /* Returns the conversion path from type FROM to reference type TO for
1414 purposes of reference binding. For lvalue binding, either pass a
1415 reference type to FROM or an lvalue expression to EXPR. If the
1416 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1417 the conversion returned. If C_CAST_P is true, this
1418 conversion is coming from a C-style cast. */
1420 static conversion *
1421 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags)
1423 conversion *conv = NULL;
1424 tree to = TREE_TYPE (rto);
1425 tree from = rfrom;
1426 tree tfrom;
1427 bool related_p;
1428 bool compatible_p;
1429 cp_lvalue_kind gl_kind;
1430 bool is_lvalue;
1432 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1434 expr = instantiate_type (to, expr, tf_none);
1435 if (expr == error_mark_node)
1436 return NULL;
1437 from = TREE_TYPE (expr);
1440 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1442 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
1443 conv = implicit_conversion (to, from, expr, c_cast_p,
1444 flags);
1445 if (!CLASS_TYPE_P (to)
1446 && CONSTRUCTOR_NELTS (expr) == 1)
1448 expr = CONSTRUCTOR_ELT (expr, 0)->value;
1449 if (error_operand_p (expr))
1450 return NULL;
1451 from = TREE_TYPE (expr);
1455 if (TREE_CODE (from) == REFERENCE_TYPE)
1457 from = TREE_TYPE (from);
1458 if (!TYPE_REF_IS_RVALUE (rfrom)
1459 || TREE_CODE (from) == FUNCTION_TYPE)
1460 gl_kind = clk_ordinary;
1461 else
1462 gl_kind = clk_rvalueref;
1464 else if (expr)
1466 gl_kind = lvalue_kind (expr);
1467 if (gl_kind & clk_class)
1468 /* A class prvalue is not a glvalue. */
1469 gl_kind = clk_none;
1471 else
1472 gl_kind = clk_none;
1473 is_lvalue = gl_kind && !(gl_kind & clk_rvalueref);
1475 tfrom = from;
1476 if ((gl_kind & clk_bitfield) != 0)
1477 tfrom = unlowered_expr_type (expr);
1479 /* Figure out whether or not the types are reference-related and
1480 reference compatible. We have do do this after stripping
1481 references from FROM. */
1482 related_p = reference_related_p (to, tfrom);
1483 /* If this is a C cast, first convert to an appropriately qualified
1484 type, so that we can later do a const_cast to the desired type. */
1485 if (related_p && c_cast_p
1486 && !at_least_as_qualified_p (to, tfrom))
1487 to = cp_build_qualified_type (to, cp_type_quals (tfrom));
1488 compatible_p = reference_compatible_p (to, tfrom);
1490 /* Directly bind reference when target expression's type is compatible with
1491 the reference and expression is an lvalue. In DR391, the wording in
1492 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1493 const and rvalue references to rvalues of compatible class type.
1494 We should also do direct bindings for non-class xvalues. */
1495 if (compatible_p
1496 && (is_lvalue
1497 || (((CP_TYPE_CONST_NON_VOLATILE_P (to)
1498 && !(flags & LOOKUP_NO_RVAL_BIND))
1499 || TYPE_REF_IS_RVALUE (rto))
1500 && (gl_kind
1501 || (!(flags & LOOKUP_NO_TEMP_BIND)
1502 && (CLASS_TYPE_P (from)
1503 || TREE_CODE (from) == ARRAY_TYPE))))))
1505 /* [dcl.init.ref]
1507 If the initializer expression
1509 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1510 is reference-compatible with "cv2 T2,"
1512 the reference is bound directly to the initializer expression
1513 lvalue.
1515 [...]
1516 If the initializer expression is an rvalue, with T2 a class type,
1517 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1518 is bound to the object represented by the rvalue or to a sub-object
1519 within that object. */
1521 conv = build_identity_conv (tfrom, expr);
1522 conv = direct_reference_binding (rto, conv);
1524 if (flags & LOOKUP_PREFER_RVALUE)
1525 /* The top-level caller requested that we pretend that the lvalue
1526 be treated as an rvalue. */
1527 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1528 else if (TREE_CODE (rfrom) == REFERENCE_TYPE)
1529 /* Handle rvalue reference to function properly. */
1530 conv->rvaluedness_matches_p
1531 = (TYPE_REF_IS_RVALUE (rto) == TYPE_REF_IS_RVALUE (rfrom));
1532 else
1533 conv->rvaluedness_matches_p
1534 = (TYPE_REF_IS_RVALUE (rto) == !is_lvalue);
1536 if ((gl_kind & clk_bitfield) != 0
1537 || ((gl_kind & clk_packed) != 0 && !TYPE_PACKED (to)))
1538 /* For the purposes of overload resolution, we ignore the fact
1539 this expression is a bitfield or packed field. (In particular,
1540 [over.ics.ref] says specifically that a function with a
1541 non-const reference parameter is viable even if the
1542 argument is a bitfield.)
1544 However, when we actually call the function we must create
1545 a temporary to which to bind the reference. If the
1546 reference is volatile, or isn't const, then we cannot make
1547 a temporary, so we just issue an error when the conversion
1548 actually occurs. */
1549 conv->need_temporary_p = true;
1551 /* Don't allow binding of lvalues (other than function lvalues) to
1552 rvalue references. */
1553 if (is_lvalue && TYPE_REF_IS_RVALUE (rto)
1554 && TREE_CODE (to) != FUNCTION_TYPE
1555 && !(flags & LOOKUP_PREFER_RVALUE))
1556 conv->bad_p = true;
1558 return conv;
1560 /* [class.conv.fct] A conversion function is never used to convert a
1561 (possibly cv-qualified) object to the (possibly cv-qualified) same
1562 object type (or a reference to it), to a (possibly cv-qualified) base
1563 class of that type (or a reference to it).... */
1564 else if (CLASS_TYPE_P (from) && !related_p
1565 && !(flags & LOOKUP_NO_CONVERSION))
1567 /* [dcl.init.ref]
1569 If the initializer expression
1571 -- has a class type (i.e., T2 is a class type) can be
1572 implicitly converted to an lvalue of type "cv3 T3," where
1573 "cv1 T1" is reference-compatible with "cv3 T3". (this
1574 conversion is selected by enumerating the applicable
1575 conversion functions (_over.match.ref_) and choosing the
1576 best one through overload resolution. (_over.match_).
1578 the reference is bound to the lvalue result of the conversion
1579 in the second case. */
1580 z_candidate *cand = build_user_type_conversion_1 (rto, expr, flags);
1581 if (cand)
1582 return cand->second_conv;
1585 /* From this point on, we conceptually need temporaries, even if we
1586 elide them. Only the cases above are "direct bindings". */
1587 if (flags & LOOKUP_NO_TEMP_BIND)
1588 return NULL;
1590 /* [over.ics.rank]
1592 When a parameter of reference type is not bound directly to an
1593 argument expression, the conversion sequence is the one required
1594 to convert the argument expression to the underlying type of the
1595 reference according to _over.best.ics_. Conceptually, this
1596 conversion sequence corresponds to copy-initializing a temporary
1597 of the underlying type with the argument expression. Any
1598 difference in top-level cv-qualification is subsumed by the
1599 initialization itself and does not constitute a conversion. */
1601 /* [dcl.init.ref]
1603 Otherwise, the reference shall be to a non-volatile const type.
1605 Under C++0x, [8.5.3/5 dcl.init.ref] it may also be an rvalue reference */
1606 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1607 return NULL;
1609 /* [dcl.init.ref]
1611 Otherwise, a temporary of type "cv1 T1" is created and
1612 initialized from the initializer expression using the rules for a
1613 non-reference copy initialization. If T1 is reference-related to
1614 T2, cv1 must be the same cv-qualification as, or greater
1615 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1616 if (related_p && !at_least_as_qualified_p (to, from))
1617 return NULL;
1619 /* We're generating a temporary now, but don't bind any more in the
1620 conversion (specifically, don't slice the temporary returned by a
1621 conversion operator). */
1622 flags |= LOOKUP_NO_TEMP_BIND;
1624 /* Core issue 899: When [copy-]initializing a temporary to be bound
1625 to the first parameter of a copy constructor (12.8) called with
1626 a single argument in the context of direct-initialization,
1627 explicit conversion functions are also considered.
1629 So don't set LOOKUP_ONLYCONVERTING in that case. */
1630 if (!(flags & LOOKUP_COPY_PARM))
1631 flags |= LOOKUP_ONLYCONVERTING;
1633 if (!conv)
1634 conv = implicit_conversion (to, from, expr, c_cast_p,
1635 flags);
1636 if (!conv)
1637 return NULL;
1639 conv = build_conv (ck_ref_bind, rto, conv);
1640 /* This reference binding, unlike those above, requires the
1641 creation of a temporary. */
1642 conv->need_temporary_p = true;
1643 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1645 return conv;
1648 /* Returns the implicit conversion sequence (see [over.ics]) from type
1649 FROM to type TO. The optional expression EXPR may affect the
1650 conversion. FLAGS are the usual overloading flags. If C_CAST_P is
1651 true, this conversion is coming from a C-style cast. */
1653 static conversion *
1654 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1655 int flags)
1657 conversion *conv;
1659 if (from == error_mark_node || to == error_mark_node
1660 || expr == error_mark_node)
1661 return NULL;
1663 /* Other flags only apply to the primary function in overload
1664 resolution, or after we've chosen one. */
1665 flags &= (LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION|LOOKUP_COPY_PARM
1666 |LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND|LOOKUP_PREFER_RVALUE
1667 |LOOKUP_NO_NARROWING|LOOKUP_PROTECT);
1669 if (TREE_CODE (to) == REFERENCE_TYPE)
1670 conv = reference_binding (to, from, expr, c_cast_p, flags);
1671 else
1672 conv = standard_conversion (to, from, expr, c_cast_p, flags);
1674 if (conv)
1675 return conv;
1677 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1679 if (is_std_init_list (to))
1680 return build_list_conv (to, expr, flags);
1682 /* As an extension, allow list-initialization of _Complex. */
1683 if (TREE_CODE (to) == COMPLEX_TYPE)
1685 conv = build_complex_conv (to, expr, flags);
1686 if (conv)
1687 return conv;
1690 /* Allow conversion from an initializer-list with one element to a
1691 scalar type. */
1692 if (SCALAR_TYPE_P (to))
1694 int nelts = CONSTRUCTOR_NELTS (expr);
1695 tree elt;
1697 if (nelts == 0)
1698 elt = build_value_init (to, tf_none);
1699 else if (nelts == 1)
1700 elt = CONSTRUCTOR_ELT (expr, 0)->value;
1701 else
1702 elt = error_mark_node;
1704 conv = implicit_conversion (to, TREE_TYPE (elt), elt,
1705 c_cast_p, flags);
1706 if (conv)
1708 conv->check_narrowing = true;
1709 if (BRACE_ENCLOSED_INITIALIZER_P (elt))
1710 /* Too many levels of braces, i.e. '{{1}}'. */
1711 conv->bad_p = true;
1712 return conv;
1715 else if (TREE_CODE (to) == ARRAY_TYPE)
1716 return build_array_conv (to, expr, flags);
1719 if (expr != NULL_TREE
1720 && (MAYBE_CLASS_TYPE_P (from)
1721 || MAYBE_CLASS_TYPE_P (to))
1722 && (flags & LOOKUP_NO_CONVERSION) == 0)
1724 struct z_candidate *cand;
1726 if (CLASS_TYPE_P (to)
1727 && BRACE_ENCLOSED_INITIALIZER_P (expr)
1728 && !CLASSTYPE_NON_AGGREGATE (complete_type (to)))
1729 return build_aggr_conv (to, expr, flags);
1731 cand = build_user_type_conversion_1 (to, expr, flags);
1732 if (cand)
1733 conv = cand->second_conv;
1735 /* We used to try to bind a reference to a temporary here, but that
1736 is now handled after the recursive call to this function at the end
1737 of reference_binding. */
1738 return conv;
1741 return NULL;
1744 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1745 functions. ARGS will not be changed until a single candidate is
1746 selected. */
1748 static struct z_candidate *
1749 add_candidate (struct z_candidate **candidates,
1750 tree fn, tree first_arg, const VEC(tree,gc) *args,
1751 size_t num_convs, conversion **convs,
1752 tree access_path, tree conversion_path,
1753 int viable, struct rejection_reason *reason)
1755 struct z_candidate *cand = (struct z_candidate *)
1756 conversion_obstack_alloc (sizeof (struct z_candidate));
1758 cand->fn = fn;
1759 cand->first_arg = first_arg;
1760 cand->args = args;
1761 cand->convs = convs;
1762 cand->num_convs = num_convs;
1763 cand->access_path = access_path;
1764 cand->conversion_path = conversion_path;
1765 cand->viable = viable;
1766 cand->reason = reason;
1767 cand->next = *candidates;
1768 *candidates = cand;
1770 return cand;
1773 /* Return the number of remaining arguments in the parameter list
1774 beginning with ARG. */
1776 static int
1777 remaining_arguments (tree arg)
1779 int n;
1781 for (n = 0; arg != NULL_TREE && arg != void_list_node;
1782 arg = TREE_CHAIN (arg))
1783 n++;
1785 return n;
1788 /* Create an overload candidate for the function or method FN called
1789 with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
1790 FLAGS is passed on to implicit_conversion.
1792 This does not change ARGS.
1794 CTYPE, if non-NULL, is the type we want to pretend this function
1795 comes from for purposes of overload resolution. */
1797 static struct z_candidate *
1798 add_function_candidate (struct z_candidate **candidates,
1799 tree fn, tree ctype, tree first_arg,
1800 const VEC(tree,gc) *args, tree access_path,
1801 tree conversion_path, int flags)
1803 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1804 int i, len;
1805 conversion **convs;
1806 tree parmnode;
1807 tree orig_first_arg = first_arg;
1808 int skip;
1809 int viable = 1;
1810 struct rejection_reason *reason = NULL;
1812 /* At this point we should not see any functions which haven't been
1813 explicitly declared, except for friend functions which will have
1814 been found using argument dependent lookup. */
1815 gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
1817 /* The `this', `in_chrg' and VTT arguments to constructors are not
1818 considered in overload resolution. */
1819 if (DECL_CONSTRUCTOR_P (fn))
1821 parmlist = skip_artificial_parms_for (fn, parmlist);
1822 skip = num_artificial_parms_for (fn);
1823 if (skip > 0 && first_arg != NULL_TREE)
1825 --skip;
1826 first_arg = NULL_TREE;
1829 else
1830 skip = 0;
1832 len = VEC_length (tree, args) - skip + (first_arg != NULL_TREE ? 1 : 0);
1833 convs = alloc_conversions (len);
1835 /* 13.3.2 - Viable functions [over.match.viable]
1836 First, to be a viable function, a candidate function shall have enough
1837 parameters to agree in number with the arguments in the list.
1839 We need to check this first; otherwise, checking the ICSes might cause
1840 us to produce an ill-formed template instantiation. */
1842 parmnode = parmlist;
1843 for (i = 0; i < len; ++i)
1845 if (parmnode == NULL_TREE || parmnode == void_list_node)
1846 break;
1847 parmnode = TREE_CHAIN (parmnode);
1850 if ((i < len && parmnode)
1851 || !sufficient_parms_p (parmnode))
1853 int remaining = remaining_arguments (parmnode);
1854 viable = 0;
1855 reason = arity_rejection (first_arg, i + remaining, len);
1857 /* When looking for a function from a subobject from an implicit
1858 copy/move constructor/operator=, don't consider anything that takes (a
1859 reference to) an unrelated type. See c++/44909 and core 1092. */
1860 else if (parmlist && (flags & LOOKUP_DEFAULTED))
1862 if (DECL_CONSTRUCTOR_P (fn))
1863 i = 1;
1864 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
1865 && DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR)
1866 i = 2;
1867 else
1868 i = 0;
1869 if (i && len == i)
1871 parmnode = chain_index (i-1, parmlist);
1872 if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
1873 ctype))
1874 viable = 0;
1877 /* This only applies at the top level. */
1878 flags &= ~LOOKUP_DEFAULTED;
1881 if (! viable)
1882 goto out;
1884 /* Second, for F to be a viable function, there shall exist for each
1885 argument an implicit conversion sequence that converts that argument
1886 to the corresponding parameter of F. */
1888 parmnode = parmlist;
1890 for (i = 0; i < len; ++i)
1892 tree arg, argtype, to_type;
1893 conversion *t;
1894 int is_this;
1896 if (parmnode == void_list_node)
1897 break;
1899 if (i == 0 && first_arg != NULL_TREE)
1900 arg = first_arg;
1901 else
1902 arg = VEC_index (tree, args,
1903 i + skip - (first_arg != NULL_TREE ? 1 : 0));
1904 argtype = lvalue_type (arg);
1906 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1907 && ! DECL_CONSTRUCTOR_P (fn));
1909 if (parmnode)
1911 tree parmtype = TREE_VALUE (parmnode);
1912 int lflags = flags;
1914 parmnode = TREE_CHAIN (parmnode);
1916 /* The type of the implicit object parameter ('this') for
1917 overload resolution is not always the same as for the
1918 function itself; conversion functions are considered to
1919 be members of the class being converted, and functions
1920 introduced by a using-declaration are considered to be
1921 members of the class that uses them.
1923 Since build_over_call ignores the ICS for the `this'
1924 parameter, we can just change the parm type. */
1925 if (ctype && is_this)
1927 parmtype = cp_build_qualified_type
1928 (ctype, cp_type_quals (TREE_TYPE (parmtype)));
1929 parmtype = build_pointer_type (parmtype);
1932 /* Core issue 899: When [copy-]initializing a temporary to be bound
1933 to the first parameter of a copy constructor (12.8) called with
1934 a single argument in the context of direct-initialization,
1935 explicit conversion functions are also considered.
1937 So set LOOKUP_COPY_PARM to let reference_binding know that
1938 it's being called in that context. We generalize the above
1939 to handle move constructors and template constructors as well;
1940 the standardese should soon be updated similarly. */
1941 if (ctype && i == 0 && (len-skip == 1)
1942 && !(flags & LOOKUP_ONLYCONVERTING)
1943 && DECL_CONSTRUCTOR_P (fn)
1944 && parmtype != error_mark_node
1945 && (same_type_ignoring_top_level_qualifiers_p
1946 (non_reference (parmtype), ctype)))
1948 lflags |= LOOKUP_COPY_PARM;
1949 /* We allow user-defined conversions within init-lists, but
1950 not for the copy constructor. */
1951 if (flags & LOOKUP_NO_COPY_CTOR_CONVERSION)
1952 lflags |= LOOKUP_NO_CONVERSION;
1954 else
1955 lflags |= LOOKUP_ONLYCONVERTING;
1957 t = implicit_conversion (parmtype, argtype, arg,
1958 /*c_cast_p=*/false, lflags);
1959 to_type = parmtype;
1961 else
1963 t = build_identity_conv (argtype, arg);
1964 t->ellipsis_p = true;
1965 to_type = argtype;
1968 if (t && is_this)
1969 t->this_p = true;
1971 convs[i] = t;
1972 if (! t)
1974 viable = 0;
1975 reason = arg_conversion_rejection (first_arg, i, argtype, to_type);
1976 break;
1979 if (t->bad_p)
1981 viable = -1;
1982 reason = bad_arg_conversion_rejection (first_arg, i, argtype, to_type);
1986 out:
1987 return add_candidate (candidates, fn, orig_first_arg, args, len, convs,
1988 access_path, conversion_path, viable, reason);
1991 /* Create an overload candidate for the conversion function FN which will
1992 be invoked for expression OBJ, producing a pointer-to-function which
1993 will in turn be called with the argument list FIRST_ARG/ARGLIST,
1994 and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
1995 passed on to implicit_conversion.
1997 Actually, we don't really care about FN; we care about the type it
1998 converts to. There may be multiple conversion functions that will
1999 convert to that type, and we rely on build_user_type_conversion_1 to
2000 choose the best one; so when we create our candidate, we record the type
2001 instead of the function. */
2003 static struct z_candidate *
2004 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
2005 tree first_arg, const VEC(tree,gc) *arglist,
2006 tree access_path, tree conversion_path)
2008 tree totype = TREE_TYPE (TREE_TYPE (fn));
2009 int i, len, viable, flags;
2010 tree parmlist, parmnode;
2011 conversion **convs;
2012 struct rejection_reason *reason;
2014 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
2015 parmlist = TREE_TYPE (parmlist);
2016 parmlist = TYPE_ARG_TYPES (parmlist);
2018 len = VEC_length (tree, arglist) + (first_arg != NULL_TREE ? 1 : 0) + 1;
2019 convs = alloc_conversions (len);
2020 parmnode = parmlist;
2021 viable = 1;
2022 flags = LOOKUP_IMPLICIT;
2023 reason = NULL;
2025 /* Don't bother looking up the same type twice. */
2026 if (*candidates && (*candidates)->fn == totype)
2027 return NULL;
2029 for (i = 0; i < len; ++i)
2031 tree arg, argtype, convert_type = NULL_TREE;
2032 conversion *t;
2034 if (i == 0)
2035 arg = obj;
2036 else if (i == 1 && first_arg != NULL_TREE)
2037 arg = first_arg;
2038 else
2039 arg = VEC_index (tree, arglist,
2040 i - (first_arg != NULL_TREE ? 1 : 0) - 1);
2041 argtype = lvalue_type (arg);
2043 if (i == 0)
2045 t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
2046 flags);
2047 convert_type = totype;
2049 else if (parmnode == void_list_node)
2050 break;
2051 else if (parmnode)
2053 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
2054 /*c_cast_p=*/false, flags);
2055 convert_type = TREE_VALUE (parmnode);
2057 else
2059 t = build_identity_conv (argtype, arg);
2060 t->ellipsis_p = true;
2061 convert_type = argtype;
2064 convs[i] = t;
2065 if (! t)
2066 break;
2068 if (t->bad_p)
2070 viable = -1;
2071 reason = bad_arg_conversion_rejection (NULL_TREE, i, argtype, convert_type);
2074 if (i == 0)
2075 continue;
2077 if (parmnode)
2078 parmnode = TREE_CHAIN (parmnode);
2081 if (i < len
2082 || ! sufficient_parms_p (parmnode))
2084 int remaining = remaining_arguments (parmnode);
2085 viable = 0;
2086 reason = arity_rejection (NULL_TREE, i + remaining, len);
2089 return add_candidate (candidates, totype, first_arg, arglist, len, convs,
2090 access_path, conversion_path, viable, reason);
2093 static void
2094 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
2095 tree type1, tree type2, tree *args, tree *argtypes,
2096 int flags)
2098 conversion *t;
2099 conversion **convs;
2100 size_t num_convs;
2101 int viable = 1, i;
2102 tree types[2];
2103 struct rejection_reason *reason = NULL;
2105 types[0] = type1;
2106 types[1] = type2;
2108 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
2109 convs = alloc_conversions (num_convs);
2111 /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2112 conversion ops are allowed. We handle that here by just checking for
2113 boolean_type_node because other operators don't ask for it. COND_EXPR
2114 also does contextual conversion to bool for the first operand, but we
2115 handle that in build_conditional_expr, and type1 here is operand 2. */
2116 if (type1 != boolean_type_node)
2117 flags |= LOOKUP_ONLYCONVERTING;
2119 for (i = 0; i < 2; ++i)
2121 if (! args[i])
2122 break;
2124 t = implicit_conversion (types[i], argtypes[i], args[i],
2125 /*c_cast_p=*/false, flags);
2126 if (! t)
2128 viable = 0;
2129 /* We need something for printing the candidate. */
2130 t = build_identity_conv (types[i], NULL_TREE);
2131 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i], types[i]);
2133 else if (t->bad_p)
2135 viable = 0;
2136 reason = bad_arg_conversion_rejection (NULL_TREE, i, argtypes[i], types[i]);
2138 convs[i] = t;
2141 /* For COND_EXPR we rearranged the arguments; undo that now. */
2142 if (args[2])
2144 convs[2] = convs[1];
2145 convs[1] = convs[0];
2146 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2147 /*c_cast_p=*/false, flags);
2148 if (t)
2149 convs[0] = t;
2150 else
2152 viable = 0;
2153 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2154 boolean_type_node);
2158 add_candidate (candidates, fnname, /*first_arg=*/NULL_TREE, /*args=*/NULL,
2159 num_convs, convs,
2160 /*access_path=*/NULL_TREE,
2161 /*conversion_path=*/NULL_TREE,
2162 viable, reason);
2165 static bool
2166 is_complete (tree t)
2168 return COMPLETE_TYPE_P (complete_type (t));
2171 /* Returns nonzero if TYPE is a promoted arithmetic type. */
2173 static bool
2174 promoted_arithmetic_type_p (tree type)
2176 /* [over.built]
2178 In this section, the term promoted integral type is used to refer
2179 to those integral types which are preserved by integral promotion
2180 (including e.g. int and long but excluding e.g. char).
2181 Similarly, the term promoted arithmetic type refers to promoted
2182 integral types plus floating types. */
2183 return ((CP_INTEGRAL_TYPE_P (type)
2184 && same_type_p (type_promotes_to (type), type))
2185 || TREE_CODE (type) == REAL_TYPE);
2188 /* Create any builtin operator overload candidates for the operator in
2189 question given the converted operand types TYPE1 and TYPE2. The other
2190 args are passed through from add_builtin_candidates to
2191 build_builtin_candidate.
2193 TYPE1 and TYPE2 may not be permissible, and we must filter them.
2194 If CODE is requires candidates operands of the same type of the kind
2195 of which TYPE1 and TYPE2 are, we add both candidates
2196 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
2198 static void
2199 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
2200 enum tree_code code2, tree fnname, tree type1,
2201 tree type2, tree *args, tree *argtypes, int flags)
2203 switch (code)
2205 case POSTINCREMENT_EXPR:
2206 case POSTDECREMENT_EXPR:
2207 args[1] = integer_zero_node;
2208 type2 = integer_type_node;
2209 break;
2210 default:
2211 break;
2214 switch (code)
2217 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2218 and VQ is either volatile or empty, there exist candidate operator
2219 functions of the form
2220 VQ T& operator++(VQ T&);
2221 T operator++(VQ T&, int);
2222 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
2223 type other than bool, and VQ is either volatile or empty, there exist
2224 candidate operator functions of the form
2225 VQ T& operator--(VQ T&);
2226 T operator--(VQ T&, int);
2227 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
2228 complete object type, and VQ is either volatile or empty, there exist
2229 candidate operator functions of the form
2230 T*VQ& operator++(T*VQ&);
2231 T*VQ& operator--(T*VQ&);
2232 T* operator++(T*VQ&, int);
2233 T* operator--(T*VQ&, int); */
2235 case POSTDECREMENT_EXPR:
2236 case PREDECREMENT_EXPR:
2237 if (TREE_CODE (type1) == BOOLEAN_TYPE)
2238 return;
2239 case POSTINCREMENT_EXPR:
2240 case PREINCREMENT_EXPR:
2241 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
2243 type1 = build_reference_type (type1);
2244 break;
2246 return;
2248 /* 7 For every cv-qualified or cv-unqualified object type T, there
2249 exist candidate operator functions of the form
2251 T& operator*(T*);
2253 8 For every function type T, there exist candidate operator functions of
2254 the form
2255 T& operator*(T*); */
2257 case INDIRECT_REF:
2258 if (TREE_CODE (type1) == POINTER_TYPE
2259 && !uses_template_parms (TREE_TYPE (type1))
2260 && (TYPE_PTROB_P (type1)
2261 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
2262 break;
2263 return;
2265 /* 9 For every type T, there exist candidate operator functions of the form
2266 T* operator+(T*);
2268 10For every promoted arithmetic type T, there exist candidate operator
2269 functions of the form
2270 T operator+(T);
2271 T operator-(T); */
2273 case UNARY_PLUS_EXPR: /* unary + */
2274 if (TREE_CODE (type1) == POINTER_TYPE)
2275 break;
2276 case NEGATE_EXPR:
2277 if (ARITHMETIC_TYPE_P (type1))
2278 break;
2279 return;
2281 /* 11For every promoted integral type T, there exist candidate operator
2282 functions of the form
2283 T operator~(T); */
2285 case BIT_NOT_EXPR:
2286 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1))
2287 break;
2288 return;
2290 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
2291 is the same type as C2 or is a derived class of C2, T is a complete
2292 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
2293 there exist candidate operator functions of the form
2294 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2295 where CV12 is the union of CV1 and CV2. */
2297 case MEMBER_REF:
2298 if (TREE_CODE (type1) == POINTER_TYPE
2299 && TYPE_PTR_TO_MEMBER_P (type2))
2301 tree c1 = TREE_TYPE (type1);
2302 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
2304 if (MAYBE_CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
2305 && (TYPE_PTRMEMFUNC_P (type2)
2306 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
2307 break;
2309 return;
2311 /* 13For every pair of promoted arithmetic types L and R, there exist can-
2312 didate operator functions of the form
2313 LR operator*(L, R);
2314 LR operator/(L, R);
2315 LR operator+(L, R);
2316 LR operator-(L, R);
2317 bool operator<(L, R);
2318 bool operator>(L, R);
2319 bool operator<=(L, R);
2320 bool operator>=(L, R);
2321 bool operator==(L, R);
2322 bool operator!=(L, R);
2323 where LR is the result of the usual arithmetic conversions between
2324 types L and R.
2326 14For every pair of types T and I, where T is a cv-qualified or cv-
2327 unqualified complete object type and I is a promoted integral type,
2328 there exist candidate operator functions of the form
2329 T* operator+(T*, I);
2330 T& operator[](T*, I);
2331 T* operator-(T*, I);
2332 T* operator+(I, T*);
2333 T& operator[](I, T*);
2335 15For every T, where T is a pointer to complete object type, there exist
2336 candidate operator functions of the form112)
2337 ptrdiff_t operator-(T, T);
2339 16For every pointer or enumeration type T, there exist candidate operator
2340 functions of the form
2341 bool operator<(T, T);
2342 bool operator>(T, T);
2343 bool operator<=(T, T);
2344 bool operator>=(T, T);
2345 bool operator==(T, T);
2346 bool operator!=(T, T);
2348 17For every pointer to member type T, there exist candidate operator
2349 functions of the form
2350 bool operator==(T, T);
2351 bool operator!=(T, T); */
2353 case MINUS_EXPR:
2354 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
2355 break;
2356 if (TYPE_PTROB_P (type1)
2357 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2359 type2 = ptrdiff_type_node;
2360 break;
2362 case MULT_EXPR:
2363 case TRUNC_DIV_EXPR:
2364 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2365 break;
2366 return;
2368 case EQ_EXPR:
2369 case NE_EXPR:
2370 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2371 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2)))
2372 break;
2373 if (TYPE_PTR_TO_MEMBER_P (type1) && null_ptr_cst_p (args[1]))
2375 type2 = type1;
2376 break;
2378 if (TYPE_PTR_TO_MEMBER_P (type2) && null_ptr_cst_p (args[0]))
2380 type1 = type2;
2381 break;
2383 /* Fall through. */
2384 case LT_EXPR:
2385 case GT_EXPR:
2386 case LE_EXPR:
2387 case GE_EXPR:
2388 case MAX_EXPR:
2389 case MIN_EXPR:
2390 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2391 break;
2392 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2393 break;
2394 if (TREE_CODE (type1) == ENUMERAL_TYPE
2395 && TREE_CODE (type2) == ENUMERAL_TYPE)
2396 break;
2397 if (TYPE_PTR_P (type1)
2398 && null_ptr_cst_p (args[1])
2399 && !uses_template_parms (type1))
2401 type2 = type1;
2402 break;
2404 if (null_ptr_cst_p (args[0])
2405 && TYPE_PTR_P (type2)
2406 && !uses_template_parms (type2))
2408 type1 = type2;
2409 break;
2411 return;
2413 case PLUS_EXPR:
2414 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2415 break;
2416 case ARRAY_REF:
2417 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && TYPE_PTROB_P (type2))
2419 type1 = ptrdiff_type_node;
2420 break;
2422 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2424 type2 = ptrdiff_type_node;
2425 break;
2427 return;
2429 /* 18For every pair of promoted integral types L and R, there exist candi-
2430 date operator functions of the form
2431 LR operator%(L, R);
2432 LR operator&(L, R);
2433 LR operator^(L, R);
2434 LR operator|(L, R);
2435 L operator<<(L, R);
2436 L operator>>(L, R);
2437 where LR is the result of the usual arithmetic conversions between
2438 types L and R. */
2440 case TRUNC_MOD_EXPR:
2441 case BIT_AND_EXPR:
2442 case BIT_IOR_EXPR:
2443 case BIT_XOR_EXPR:
2444 case LSHIFT_EXPR:
2445 case RSHIFT_EXPR:
2446 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2447 break;
2448 return;
2450 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
2451 type, VQ is either volatile or empty, and R is a promoted arithmetic
2452 type, there exist candidate operator functions of the form
2453 VQ L& operator=(VQ L&, R);
2454 VQ L& operator*=(VQ L&, R);
2455 VQ L& operator/=(VQ L&, R);
2456 VQ L& operator+=(VQ L&, R);
2457 VQ L& operator-=(VQ L&, R);
2459 20For every pair T, VQ), where T is any type and VQ is either volatile
2460 or empty, there exist candidate operator functions of the form
2461 T*VQ& operator=(T*VQ&, T*);
2463 21For every pair T, VQ), where T is a pointer to member type and VQ is
2464 either volatile or empty, there exist candidate operator functions of
2465 the form
2466 VQ T& operator=(VQ T&, T);
2468 22For every triple T, VQ, I), where T is a cv-qualified or cv-
2469 unqualified complete object type, VQ is either volatile or empty, and
2470 I is a promoted integral type, there exist candidate operator func-
2471 tions of the form
2472 T*VQ& operator+=(T*VQ&, I);
2473 T*VQ& operator-=(T*VQ&, I);
2475 23For every triple L, VQ, R), where L is an integral or enumeration
2476 type, VQ is either volatile or empty, and R is a promoted integral
2477 type, there exist candidate operator functions of the form
2479 VQ L& operator%=(VQ L&, R);
2480 VQ L& operator<<=(VQ L&, R);
2481 VQ L& operator>>=(VQ L&, R);
2482 VQ L& operator&=(VQ L&, R);
2483 VQ L& operator^=(VQ L&, R);
2484 VQ L& operator|=(VQ L&, R); */
2486 case MODIFY_EXPR:
2487 switch (code2)
2489 case PLUS_EXPR:
2490 case MINUS_EXPR:
2491 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2493 type2 = ptrdiff_type_node;
2494 break;
2496 case MULT_EXPR:
2497 case TRUNC_DIV_EXPR:
2498 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2499 break;
2500 return;
2502 case TRUNC_MOD_EXPR:
2503 case BIT_AND_EXPR:
2504 case BIT_IOR_EXPR:
2505 case BIT_XOR_EXPR:
2506 case LSHIFT_EXPR:
2507 case RSHIFT_EXPR:
2508 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2509 break;
2510 return;
2512 case NOP_EXPR:
2513 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2514 break;
2515 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2516 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2517 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
2518 || ((TYPE_PTRMEMFUNC_P (type1)
2519 || TREE_CODE (type1) == POINTER_TYPE)
2520 && null_ptr_cst_p (args[1])))
2522 type2 = type1;
2523 break;
2525 return;
2527 default:
2528 gcc_unreachable ();
2530 type1 = build_reference_type (type1);
2531 break;
2533 case COND_EXPR:
2534 /* [over.built]
2536 For every pair of promoted arithmetic types L and R, there
2537 exist candidate operator functions of the form
2539 LR operator?(bool, L, R);
2541 where LR is the result of the usual arithmetic conversions
2542 between types L and R.
2544 For every type T, where T is a pointer or pointer-to-member
2545 type, there exist candidate operator functions of the form T
2546 operator?(bool, T, T); */
2548 if (promoted_arithmetic_type_p (type1)
2549 && promoted_arithmetic_type_p (type2))
2550 /* That's OK. */
2551 break;
2553 /* Otherwise, the types should be pointers. */
2554 if (!(TYPE_PTR_P (type1) || TYPE_PTR_TO_MEMBER_P (type1))
2555 || !(TYPE_PTR_P (type2) || TYPE_PTR_TO_MEMBER_P (type2)))
2556 return;
2558 /* We don't check that the two types are the same; the logic
2559 below will actually create two candidates; one in which both
2560 parameter types are TYPE1, and one in which both parameter
2561 types are TYPE2. */
2562 break;
2564 case REALPART_EXPR:
2565 case IMAGPART_EXPR:
2566 if (ARITHMETIC_TYPE_P (type1))
2567 break;
2568 return;
2570 default:
2571 gcc_unreachable ();
2574 /* If we're dealing with two pointer types or two enumeral types,
2575 we need candidates for both of them. */
2576 if (type2 && !same_type_p (type1, type2)
2577 && TREE_CODE (type1) == TREE_CODE (type2)
2578 && (TREE_CODE (type1) == REFERENCE_TYPE
2579 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2580 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
2581 || TYPE_PTRMEMFUNC_P (type1)
2582 || MAYBE_CLASS_TYPE_P (type1)
2583 || TREE_CODE (type1) == ENUMERAL_TYPE))
2585 if (TYPE_PTR_P (type1) || TYPE_PTR_TO_MEMBER_P (type1))
2587 tree cptype = composite_pointer_type (type1, type2,
2588 error_mark_node,
2589 error_mark_node,
2590 CPO_CONVERSION,
2591 tf_none);
2592 if (cptype != error_mark_node)
2594 build_builtin_candidate
2595 (candidates, fnname, cptype, cptype, args, argtypes, flags);
2596 return;
2600 build_builtin_candidate
2601 (candidates, fnname, type1, type1, args, argtypes, flags);
2602 build_builtin_candidate
2603 (candidates, fnname, type2, type2, args, argtypes, flags);
2604 return;
2607 build_builtin_candidate
2608 (candidates, fnname, type1, type2, args, argtypes, flags);
2611 tree
2612 type_decays_to (tree type)
2614 if (TREE_CODE (type) == ARRAY_TYPE)
2615 return build_pointer_type (TREE_TYPE (type));
2616 if (TREE_CODE (type) == FUNCTION_TYPE)
2617 return build_pointer_type (type);
2618 return type;
2621 /* There are three conditions of builtin candidates:
2623 1) bool-taking candidates. These are the same regardless of the input.
2624 2) pointer-pair taking candidates. These are generated for each type
2625 one of the input types converts to.
2626 3) arithmetic candidates. According to the standard, we should generate
2627 all of these, but I'm trying not to...
2629 Here we generate a superset of the possible candidates for this particular
2630 case. That is a subset of the full set the standard defines, plus some
2631 other cases which the standard disallows. add_builtin_candidate will
2632 filter out the invalid set. */
2634 static void
2635 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2636 enum tree_code code2, tree fnname, tree *args,
2637 int flags)
2639 int ref1, i;
2640 int enum_p = 0;
2641 tree type, argtypes[3], t;
2642 /* TYPES[i] is the set of possible builtin-operator parameter types
2643 we will consider for the Ith argument. */
2644 VEC(tree,gc) *types[2];
2645 unsigned ix;
2647 for (i = 0; i < 3; ++i)
2649 if (args[i])
2650 argtypes[i] = unlowered_expr_type (args[i]);
2651 else
2652 argtypes[i] = NULL_TREE;
2655 switch (code)
2657 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2658 and VQ is either volatile or empty, there exist candidate operator
2659 functions of the form
2660 VQ T& operator++(VQ T&); */
2662 case POSTINCREMENT_EXPR:
2663 case PREINCREMENT_EXPR:
2664 case POSTDECREMENT_EXPR:
2665 case PREDECREMENT_EXPR:
2666 case MODIFY_EXPR:
2667 ref1 = 1;
2668 break;
2670 /* 24There also exist candidate operator functions of the form
2671 bool operator!(bool);
2672 bool operator&&(bool, bool);
2673 bool operator||(bool, bool); */
2675 case TRUTH_NOT_EXPR:
2676 build_builtin_candidate
2677 (candidates, fnname, boolean_type_node,
2678 NULL_TREE, args, argtypes, flags);
2679 return;
2681 case TRUTH_ORIF_EXPR:
2682 case TRUTH_ANDIF_EXPR:
2683 build_builtin_candidate
2684 (candidates, fnname, boolean_type_node,
2685 boolean_type_node, args, argtypes, flags);
2686 return;
2688 case ADDR_EXPR:
2689 case COMPOUND_EXPR:
2690 case COMPONENT_REF:
2691 return;
2693 case COND_EXPR:
2694 case EQ_EXPR:
2695 case NE_EXPR:
2696 case LT_EXPR:
2697 case LE_EXPR:
2698 case GT_EXPR:
2699 case GE_EXPR:
2700 enum_p = 1;
2701 /* Fall through. */
2703 default:
2704 ref1 = 0;
2707 types[0] = make_tree_vector ();
2708 types[1] = make_tree_vector ();
2710 for (i = 0; i < 2; ++i)
2712 if (! args[i])
2714 else if (MAYBE_CLASS_TYPE_P (argtypes[i]))
2716 tree convs;
2718 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2719 return;
2721 convs = lookup_conversions (argtypes[i]);
2723 if (code == COND_EXPR)
2725 if (real_lvalue_p (args[i]))
2726 VEC_safe_push (tree, gc, types[i],
2727 build_reference_type (argtypes[i]));
2729 VEC_safe_push (tree, gc, types[i],
2730 TYPE_MAIN_VARIANT (argtypes[i]));
2733 else if (! convs)
2734 return;
2736 for (; convs; convs = TREE_CHAIN (convs))
2738 type = TREE_TYPE (convs);
2740 if (i == 0 && ref1
2741 && (TREE_CODE (type) != REFERENCE_TYPE
2742 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2743 continue;
2745 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2746 VEC_safe_push (tree, gc, types[i], type);
2748 type = non_reference (type);
2749 if (i != 0 || ! ref1)
2751 type = cv_unqualified (type_decays_to (type));
2752 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2753 VEC_safe_push (tree, gc, types[i], type);
2754 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2755 type = type_promotes_to (type);
2758 if (! vec_member (type, types[i]))
2759 VEC_safe_push (tree, gc, types[i], type);
2762 else
2764 if (code == COND_EXPR && real_lvalue_p (args[i]))
2765 VEC_safe_push (tree, gc, types[i],
2766 build_reference_type (argtypes[i]));
2767 type = non_reference (argtypes[i]);
2768 if (i != 0 || ! ref1)
2770 type = cv_unqualified (type_decays_to (type));
2771 if (enum_p && UNSCOPED_ENUM_P (type))
2772 VEC_safe_push (tree, gc, types[i], type);
2773 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2774 type = type_promotes_to (type);
2776 VEC_safe_push (tree, gc, types[i], type);
2780 /* Run through the possible parameter types of both arguments,
2781 creating candidates with those parameter types. */
2782 FOR_EACH_VEC_ELT_REVERSE (tree, types[0], ix, t)
2784 unsigned jx;
2785 tree u;
2787 if (!VEC_empty (tree, types[1]))
2788 FOR_EACH_VEC_ELT_REVERSE (tree, types[1], jx, u)
2789 add_builtin_candidate
2790 (candidates, code, code2, fnname, t,
2791 u, args, argtypes, flags);
2792 else
2793 add_builtin_candidate
2794 (candidates, code, code2, fnname, t,
2795 NULL_TREE, args, argtypes, flags);
2798 release_tree_vector (types[0]);
2799 release_tree_vector (types[1]);
2803 /* If TMPL can be successfully instantiated as indicated by
2804 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2806 TMPL is the template. EXPLICIT_TARGS are any explicit template
2807 arguments. ARGLIST is the arguments provided at the call-site.
2808 This does not change ARGLIST. The RETURN_TYPE is the desired type
2809 for conversion operators. If OBJ is NULL_TREE, FLAGS and CTYPE are
2810 as for add_function_candidate. If an OBJ is supplied, FLAGS and
2811 CTYPE are ignored, and OBJ is as for add_conv_candidate. */
2813 static struct z_candidate*
2814 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2815 tree ctype, tree explicit_targs, tree first_arg,
2816 const VEC(tree,gc) *arglist, tree return_type,
2817 tree access_path, tree conversion_path,
2818 int flags, tree obj, unification_kind_t strict)
2820 int ntparms = DECL_NTPARMS (tmpl);
2821 tree targs = make_tree_vec (ntparms);
2822 unsigned int len = VEC_length (tree, arglist);
2823 unsigned int nargs = (first_arg == NULL_TREE ? 0 : 1) + len;
2824 unsigned int skip_without_in_chrg = 0;
2825 tree first_arg_without_in_chrg = first_arg;
2826 tree *args_without_in_chrg;
2827 unsigned int nargs_without_in_chrg;
2828 unsigned int ia, ix;
2829 tree arg;
2830 struct z_candidate *cand;
2831 int i;
2832 tree fn;
2833 struct rejection_reason *reason = NULL;
2834 int errs;
2836 /* We don't do deduction on the in-charge parameter, the VTT
2837 parameter or 'this'. */
2838 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2840 if (first_arg_without_in_chrg != NULL_TREE)
2841 first_arg_without_in_chrg = NULL_TREE;
2842 else
2843 ++skip_without_in_chrg;
2846 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
2847 || DECL_BASE_CONSTRUCTOR_P (tmpl))
2848 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
2850 if (first_arg_without_in_chrg != NULL_TREE)
2851 first_arg_without_in_chrg = NULL_TREE;
2852 else
2853 ++skip_without_in_chrg;
2856 if (len < skip_without_in_chrg)
2857 return NULL;
2859 nargs_without_in_chrg = ((first_arg_without_in_chrg != NULL_TREE ? 1 : 0)
2860 + (len - skip_without_in_chrg));
2861 args_without_in_chrg = XALLOCAVEC (tree, nargs_without_in_chrg);
2862 ia = 0;
2863 if (first_arg_without_in_chrg != NULL_TREE)
2865 args_without_in_chrg[ia] = first_arg_without_in_chrg;
2866 ++ia;
2868 for (ix = skip_without_in_chrg;
2869 VEC_iterate (tree, arglist, ix, arg);
2870 ++ix)
2872 args_without_in_chrg[ia] = arg;
2873 ++ia;
2875 gcc_assert (ia == nargs_without_in_chrg);
2877 errs = errorcount+sorrycount;
2878 i = fn_type_unification (tmpl, explicit_targs, targs,
2879 args_without_in_chrg,
2880 nargs_without_in_chrg,
2881 return_type, strict, flags, false);
2883 if (i != 0)
2885 /* Don't repeat unification later if it already resulted in errors. */
2886 if (errorcount+sorrycount == errs)
2887 reason = template_unification_rejection (tmpl, explicit_targs,
2888 targs, args_without_in_chrg,
2889 nargs_without_in_chrg,
2890 return_type, strict, flags);
2891 else
2892 reason = template_unification_error_rejection ();
2893 goto fail;
2896 fn = instantiate_template (tmpl, targs, tf_none);
2897 if (fn == error_mark_node)
2899 reason = template_instantiation_rejection (tmpl, targs);
2900 goto fail;
2903 /* In [class.copy]:
2905 A member function template is never instantiated to perform the
2906 copy of a class object to an object of its class type.
2908 It's a little unclear what this means; the standard explicitly
2909 does allow a template to be used to copy a class. For example,
2912 struct A {
2913 A(A&);
2914 template <class T> A(const T&);
2916 const A f ();
2917 void g () { A a (f ()); }
2919 the member template will be used to make the copy. The section
2920 quoted above appears in the paragraph that forbids constructors
2921 whose only parameter is (a possibly cv-qualified variant of) the
2922 class type, and a logical interpretation is that the intent was
2923 to forbid the instantiation of member templates which would then
2924 have that form. */
2925 if (DECL_CONSTRUCTOR_P (fn) && nargs == 2)
2927 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
2928 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
2929 ctype))
2931 reason = invalid_copy_with_fn_template_rejection ();
2932 goto fail;
2936 if (obj != NULL_TREE)
2937 /* Aha, this is a conversion function. */
2938 cand = add_conv_candidate (candidates, fn, obj, first_arg, arglist,
2939 access_path, conversion_path);
2940 else
2941 cand = add_function_candidate (candidates, fn, ctype,
2942 first_arg, arglist, access_path,
2943 conversion_path, flags);
2944 if (DECL_TI_TEMPLATE (fn) != tmpl)
2945 /* This situation can occur if a member template of a template
2946 class is specialized. Then, instantiate_template might return
2947 an instantiation of the specialization, in which case the
2948 DECL_TI_TEMPLATE field will point at the original
2949 specialization. For example:
2951 template <class T> struct S { template <class U> void f(U);
2952 template <> void f(int) {}; };
2953 S<double> sd;
2954 sd.f(3);
2956 Here, TMPL will be template <class U> S<double>::f(U).
2957 And, instantiate template will give us the specialization
2958 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
2959 for this will point at template <class T> template <> S<T>::f(int),
2960 so that we can find the definition. For the purposes of
2961 overload resolution, however, we want the original TMPL. */
2962 cand->template_decl = build_template_info (tmpl, targs);
2963 else
2964 cand->template_decl = DECL_TEMPLATE_INFO (fn);
2965 cand->explicit_targs = explicit_targs;
2967 return cand;
2968 fail:
2969 return add_candidate (candidates, tmpl, first_arg, arglist, nargs, NULL,
2970 access_path, conversion_path, 0, reason);
2974 static struct z_candidate *
2975 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
2976 tree explicit_targs, tree first_arg,
2977 const VEC(tree,gc) *arglist, tree return_type,
2978 tree access_path, tree conversion_path, int flags,
2979 unification_kind_t strict)
2981 return
2982 add_template_candidate_real (candidates, tmpl, ctype,
2983 explicit_targs, first_arg, arglist,
2984 return_type, access_path, conversion_path,
2985 flags, NULL_TREE, strict);
2989 static struct z_candidate *
2990 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
2991 tree obj, tree first_arg,
2992 const VEC(tree,gc) *arglist,
2993 tree return_type, tree access_path,
2994 tree conversion_path)
2996 return
2997 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
2998 first_arg, arglist, return_type, access_path,
2999 conversion_path, 0, obj, DEDUCE_CONV);
3002 /* The CANDS are the set of candidates that were considered for
3003 overload resolution. Return the set of viable candidates, or CANDS
3004 if none are viable. If any of the candidates were viable, set
3005 *ANY_VIABLE_P to true. STRICT_P is true if a candidate should be
3006 considered viable only if it is strictly viable. */
3008 static struct z_candidate*
3009 splice_viable (struct z_candidate *cands,
3010 bool strict_p,
3011 bool *any_viable_p)
3013 struct z_candidate *viable;
3014 struct z_candidate **last_viable;
3015 struct z_candidate **cand;
3017 /* Be strict inside templates, since build_over_call won't actually
3018 do the conversions to get pedwarns. */
3019 if (processing_template_decl)
3020 strict_p = true;
3022 viable = NULL;
3023 last_viable = &viable;
3024 *any_viable_p = false;
3026 cand = &cands;
3027 while (*cand)
3029 struct z_candidate *c = *cand;
3030 if (strict_p ? c->viable == 1 : c->viable)
3032 *last_viable = c;
3033 *cand = c->next;
3034 c->next = NULL;
3035 last_viable = &c->next;
3036 *any_viable_p = true;
3038 else
3039 cand = &c->next;
3042 return viable ? viable : cands;
3045 static bool
3046 any_strictly_viable (struct z_candidate *cands)
3048 for (; cands; cands = cands->next)
3049 if (cands->viable == 1)
3050 return true;
3051 return false;
3054 /* OBJ is being used in an expression like "OBJ.f (...)". In other
3055 words, it is about to become the "this" pointer for a member
3056 function call. Take the address of the object. */
3058 static tree
3059 build_this (tree obj)
3061 /* In a template, we are only concerned about the type of the
3062 expression, so we can take a shortcut. */
3063 if (processing_template_decl)
3064 return build_address (obj);
3066 return cp_build_addr_expr (obj, tf_warning_or_error);
3069 /* Returns true iff functions are equivalent. Equivalent functions are
3070 not '==' only if one is a function-local extern function or if
3071 both are extern "C". */
3073 static inline int
3074 equal_functions (tree fn1, tree fn2)
3076 if (TREE_CODE (fn1) != TREE_CODE (fn2))
3077 return 0;
3078 if (TREE_CODE (fn1) == TEMPLATE_DECL)
3079 return fn1 == fn2;
3080 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
3081 || DECL_EXTERN_C_FUNCTION_P (fn1))
3082 return decls_match (fn1, fn2);
3083 return fn1 == fn2;
3086 /* Print information about a candidate being rejected due to INFO. */
3088 static void
3089 print_conversion_rejection (location_t loc, struct conversion_info *info)
3091 if (info->n_arg == -1)
3092 /* Conversion of implicit `this' argument failed. */
3093 inform (loc, " no known conversion for implicit "
3094 "%<this%> parameter from %qT to %qT",
3095 info->from_type, info->to_type);
3096 else
3097 inform (loc, " no known conversion for argument %d from %qT to %qT",
3098 info->n_arg+1, info->from_type, info->to_type);
3101 /* Print information about a candidate with WANT parameters and we found
3102 HAVE. */
3104 static void
3105 print_arity_information (location_t loc, unsigned int have, unsigned int want)
3107 inform_n (loc, want,
3108 " candidate expects %d argument, %d provided",
3109 " candidate expects %d arguments, %d provided",
3110 want, have);
3113 /* Print information about one overload candidate CANDIDATE. MSGSTR
3114 is the text to print before the candidate itself.
3116 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3117 to have been run through gettext by the caller. This wart makes
3118 life simpler in print_z_candidates and for the translators. */
3120 static void
3121 print_z_candidate (const char *msgstr, struct z_candidate *candidate)
3123 const char *msg = (msgstr == NULL
3124 ? ""
3125 : ACONCAT ((msgstr, " ", NULL)));
3126 location_t loc = location_of (candidate->fn);
3128 if (TREE_CODE (candidate->fn) == IDENTIFIER_NODE)
3130 if (candidate->num_convs == 3)
3131 inform (input_location, "%s%D(%T, %T, %T) <built-in>", msg, candidate->fn,
3132 candidate->convs[0]->type,
3133 candidate->convs[1]->type,
3134 candidate->convs[2]->type);
3135 else if (candidate->num_convs == 2)
3136 inform (input_location, "%s%D(%T, %T) <built-in>", msg, candidate->fn,
3137 candidate->convs[0]->type,
3138 candidate->convs[1]->type);
3139 else
3140 inform (input_location, "%s%D(%T) <built-in>", msg, candidate->fn,
3141 candidate->convs[0]->type);
3143 else if (TYPE_P (candidate->fn))
3144 inform (input_location, "%s%T <conversion>", msg, candidate->fn);
3145 else if (candidate->viable == -1)
3146 inform (loc, "%s%#D <near match>", msg, candidate->fn);
3147 else if (DECL_DELETED_FN (STRIP_TEMPLATE (candidate->fn)))
3148 inform (loc, "%s%#D <deleted>", msg, candidate->fn);
3149 else
3150 inform (loc, "%s%#D", msg, candidate->fn);
3151 /* Give the user some information about why this candidate failed. */
3152 if (candidate->reason != NULL)
3154 struct rejection_reason *r = candidate->reason;
3156 switch (r->code)
3158 case rr_arity:
3159 print_arity_information (loc, r->u.arity.actual,
3160 r->u.arity.expected);
3161 break;
3162 case rr_arg_conversion:
3163 print_conversion_rejection (loc, &r->u.conversion);
3164 break;
3165 case rr_bad_arg_conversion:
3166 print_conversion_rejection (loc, &r->u.bad_conversion);
3167 break;
3168 case rr_explicit_conversion:
3169 inform (loc, " return type %qT of explicit conversion function "
3170 "cannot be converted to %qT with a qualification "
3171 "conversion", r->u.conversion.from_type,
3172 r->u.conversion.to_type);
3173 break;
3174 case rr_template_conversion:
3175 inform (loc, " conversion from return type %qT of template "
3176 "conversion function specialization to %qT is not an "
3177 "exact match", r->u.conversion.from_type,
3178 r->u.conversion.to_type);
3179 break;
3180 case rr_template_unification:
3181 /* We use template_unification_error_rejection if unification caused
3182 actual non-SFINAE errors, in which case we don't need to repeat
3183 them here. */
3184 if (r->u.template_unification.tmpl == NULL_TREE)
3186 inform (loc, " substitution of deduced template arguments "
3187 "resulted in errors seen above");
3188 break;
3190 /* Re-run template unification with diagnostics. */
3191 inform (loc, " template argument deduction/substitution failed:");
3192 fn_type_unification (r->u.template_unification.tmpl,
3193 r->u.template_unification.explicit_targs,
3194 r->u.template_unification.targs,
3195 r->u.template_unification.args,
3196 r->u.template_unification.nargs,
3197 r->u.template_unification.return_type,
3198 r->u.template_unification.strict,
3199 r->u.template_unification.flags,
3200 true);
3201 break;
3202 case rr_template_instantiation:
3203 /* Re-run template instantiation with diagnostics. */
3204 instantiate_template (r->u.template_instantiation.tmpl,
3205 r->u.template_instantiation.targs,
3206 tf_warning_or_error);
3207 break;
3208 case rr_invalid_copy:
3209 inform (loc,
3210 " a constructor taking a single argument of its own "
3211 "class type is invalid");
3212 break;
3213 case rr_none:
3214 default:
3215 /* This candidate didn't have any issues or we failed to
3216 handle a particular code. Either way... */
3217 gcc_unreachable ();
3222 static void
3223 print_z_candidates (location_t loc, struct z_candidate *candidates)
3225 struct z_candidate *cand1;
3226 struct z_candidate **cand2;
3227 int n_candidates;
3229 if (!candidates)
3230 return;
3232 /* Remove non-viable deleted candidates. */
3233 cand1 = candidates;
3234 for (cand2 = &cand1; *cand2; )
3236 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
3237 && !(*cand2)->viable
3238 && DECL_DELETED_FN ((*cand2)->fn))
3239 *cand2 = (*cand2)->next;
3240 else
3241 cand2 = &(*cand2)->next;
3243 /* ...if there are any non-deleted ones. */
3244 if (cand1)
3245 candidates = cand1;
3247 /* There may be duplicates in the set of candidates. We put off
3248 checking this condition as long as possible, since we have no way
3249 to eliminate duplicates from a set of functions in less than n^2
3250 time. Now we are about to emit an error message, so it is more
3251 permissible to go slowly. */
3252 for (cand1 = candidates; cand1; cand1 = cand1->next)
3254 tree fn = cand1->fn;
3255 /* Skip builtin candidates and conversion functions. */
3256 if (!DECL_P (fn))
3257 continue;
3258 cand2 = &cand1->next;
3259 while (*cand2)
3261 if (DECL_P ((*cand2)->fn)
3262 && equal_functions (fn, (*cand2)->fn))
3263 *cand2 = (*cand2)->next;
3264 else
3265 cand2 = &(*cand2)->next;
3269 for (n_candidates = 0, cand1 = candidates; cand1; cand1 = cand1->next)
3270 n_candidates++;
3272 inform_n (loc, n_candidates, "candidate is:", "candidates are:");
3273 for (; candidates; candidates = candidates->next)
3274 print_z_candidate (NULL, candidates);
3277 /* USER_SEQ is a user-defined conversion sequence, beginning with a
3278 USER_CONV. STD_SEQ is the standard conversion sequence applied to
3279 the result of the conversion function to convert it to the final
3280 desired type. Merge the two sequences into a single sequence,
3281 and return the merged sequence. */
3283 static conversion *
3284 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
3286 conversion **t;
3287 bool bad = user_seq->bad_p;
3289 gcc_assert (user_seq->kind == ck_user);
3291 /* Find the end of the second conversion sequence. */
3292 for (t = &std_seq; (*t)->kind != ck_identity; t = &((*t)->u.next))
3294 /* The entire sequence is a user-conversion sequence. */
3295 (*t)->user_conv_p = true;
3296 if (bad)
3297 (*t)->bad_p = true;
3300 /* Replace the identity conversion with the user conversion
3301 sequence. */
3302 *t = user_seq;
3304 return std_seq;
3307 /* Handle overload resolution for initializing an object of class type from
3308 an initializer list. First we look for a suitable constructor that
3309 takes a std::initializer_list; if we don't find one, we then look for a
3310 non-list constructor.
3312 Parameters are as for add_candidates, except that the arguments are in
3313 the form of a CONSTRUCTOR (the initializer list) rather than a VEC, and
3314 the RETURN_TYPE parameter is replaced by TOTYPE, the desired type. */
3316 static void
3317 add_list_candidates (tree fns, tree first_arg,
3318 tree init_list, tree totype,
3319 tree explicit_targs, bool template_only,
3320 tree conversion_path, tree access_path,
3321 int flags,
3322 struct z_candidate **candidates)
3324 VEC(tree,gc) *args;
3326 gcc_assert (*candidates == NULL);
3328 /* For list-initialization we consider explicit constructors, but
3329 give an error if one is selected. */
3330 flags &= ~LOOKUP_ONLYCONVERTING;
3331 /* And we don't allow narrowing conversions. We also use this flag to
3332 avoid the copy constructor call for copy-list-initialization. */
3333 flags |= LOOKUP_NO_NARROWING;
3335 /* Always use the default constructor if the list is empty (DR 990). */
3336 if (CONSTRUCTOR_NELTS (init_list) == 0
3337 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
3339 /* If the class has a list ctor, try passing the list as a single
3340 argument first, but only consider list ctors. */
3341 else if (TYPE_HAS_LIST_CTOR (totype))
3343 flags |= LOOKUP_LIST_ONLY;
3344 args = make_tree_vector_single (init_list);
3345 add_candidates (fns, first_arg, args, NULL_TREE,
3346 explicit_targs, template_only, conversion_path,
3347 access_path, flags, candidates);
3348 if (any_strictly_viable (*candidates))
3349 return;
3352 args = ctor_to_vec (init_list);
3354 /* We aren't looking for list-ctors anymore. */
3355 flags &= ~LOOKUP_LIST_ONLY;
3356 /* We allow more user-defined conversions within an init-list. */
3357 flags &= ~LOOKUP_NO_CONVERSION;
3358 /* But not for the copy ctor. */
3359 flags |= LOOKUP_NO_COPY_CTOR_CONVERSION;
3361 add_candidates (fns, first_arg, args, NULL_TREE,
3362 explicit_targs, template_only, conversion_path,
3363 access_path, flags, candidates);
3366 /* Returns the best overload candidate to perform the requested
3367 conversion. This function is used for three the overloading situations
3368 described in [over.match.copy], [over.match.conv], and [over.match.ref].
3369 If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
3370 per [dcl.init.ref], so we ignore temporary bindings. */
3372 static struct z_candidate *
3373 build_user_type_conversion_1 (tree totype, tree expr, int flags)
3375 struct z_candidate *candidates, *cand;
3376 tree fromtype;
3377 tree ctors = NULL_TREE;
3378 tree conv_fns = NULL_TREE;
3379 conversion *conv = NULL;
3380 tree first_arg = NULL_TREE;
3381 VEC(tree,gc) *args = NULL;
3382 bool any_viable_p;
3383 int convflags;
3385 if (!expr)
3386 return NULL;
3388 fromtype = TREE_TYPE (expr);
3390 /* We represent conversion within a hierarchy using RVALUE_CONV and
3391 BASE_CONV, as specified by [over.best.ics]; these become plain
3392 constructor calls, as specified in [dcl.init]. */
3393 gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
3394 || !DERIVED_FROM_P (totype, fromtype));
3396 if (MAYBE_CLASS_TYPE_P (totype))
3397 /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
3398 creating a garbage BASELINK; constructors can't be inherited. */
3399 ctors = lookup_fnfields_slot (totype, complete_ctor_identifier);
3401 if (MAYBE_CLASS_TYPE_P (fromtype))
3403 tree to_nonref = non_reference (totype);
3404 if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
3405 (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
3406 && DERIVED_FROM_P (to_nonref, fromtype)))
3408 /* [class.conv.fct] A conversion function is never used to
3409 convert a (possibly cv-qualified) object to the (possibly
3410 cv-qualified) same object type (or a reference to it), to a
3411 (possibly cv-qualified) base class of that type (or a
3412 reference to it)... */
3414 else
3415 conv_fns = lookup_conversions (fromtype);
3418 candidates = 0;
3419 flags |= LOOKUP_NO_CONVERSION;
3420 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3421 flags |= LOOKUP_NO_NARROWING;
3423 /* It's OK to bind a temporary for converting constructor arguments, but
3424 not in converting the return value of a conversion operator. */
3425 convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION);
3426 flags &= ~LOOKUP_NO_TEMP_BIND;
3428 if (ctors)
3430 int ctorflags = flags;
3432 first_arg = build_int_cst (build_pointer_type (totype), 0);
3434 /* We should never try to call the abstract or base constructor
3435 from here. */
3436 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
3437 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
3439 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3441 /* List-initialization. */
3442 add_list_candidates (ctors, first_arg, expr, totype, NULL_TREE,
3443 false, TYPE_BINFO (totype), TYPE_BINFO (totype),
3444 ctorflags, &candidates);
3446 else
3448 args = make_tree_vector_single (expr);
3449 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
3450 TYPE_BINFO (totype), TYPE_BINFO (totype),
3451 ctorflags, &candidates);
3454 for (cand = candidates; cand; cand = cand->next)
3456 cand->second_conv = build_identity_conv (totype, NULL_TREE);
3458 /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
3459 set, then this is copy-initialization. In that case, "The
3460 result of the call is then used to direct-initialize the
3461 object that is the destination of the copy-initialization."
3462 [dcl.init]
3464 We represent this in the conversion sequence with an
3465 rvalue conversion, which means a constructor call. */
3466 if (TREE_CODE (totype) != REFERENCE_TYPE
3467 && !(convflags & LOOKUP_NO_TEMP_BIND))
3468 cand->second_conv
3469 = build_conv (ck_rvalue, totype, cand->second_conv);
3473 if (conv_fns)
3474 first_arg = build_this (expr);
3476 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
3478 tree conversion_path = TREE_PURPOSE (conv_fns);
3479 struct z_candidate *old_candidates;
3481 /* If we are called to convert to a reference type, we are trying to
3482 find a direct binding, so don't even consider temporaries. If
3483 we don't find a direct binding, the caller will try again to
3484 look for a temporary binding. */
3485 if (TREE_CODE (totype) == REFERENCE_TYPE)
3486 convflags |= LOOKUP_NO_TEMP_BIND;
3488 old_candidates = candidates;
3489 add_candidates (TREE_VALUE (conv_fns), first_arg, NULL, totype,
3490 NULL_TREE, false,
3491 conversion_path, TYPE_BINFO (fromtype),
3492 flags, &candidates);
3494 for (cand = candidates; cand != old_candidates; cand = cand->next)
3496 tree rettype = TREE_TYPE (TREE_TYPE (cand->fn));
3497 conversion *ics
3498 = implicit_conversion (totype,
3499 rettype,
3501 /*c_cast_p=*/false, convflags);
3503 /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
3504 copy-initialization. In that case, "The result of the
3505 call is then used to direct-initialize the object that is
3506 the destination of the copy-initialization." [dcl.init]
3508 We represent this in the conversion sequence with an
3509 rvalue conversion, which means a constructor call. But
3510 don't add a second rvalue conversion if there's already
3511 one there. Which there really shouldn't be, but it's
3512 harmless since we'd add it here anyway. */
3513 if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
3514 && !(convflags & LOOKUP_NO_TEMP_BIND))
3515 ics = build_conv (ck_rvalue, totype, ics);
3517 cand->second_conv = ics;
3519 if (!ics)
3521 cand->viable = 0;
3522 cand->reason = arg_conversion_rejection (NULL_TREE, -1,
3523 rettype, totype);
3525 else if (DECL_NONCONVERTING_P (cand->fn)
3526 && ics->rank > cr_exact)
3528 /* 13.3.1.5: For direct-initialization, those explicit
3529 conversion functions that are not hidden within S and
3530 yield type T or a type that can be converted to type T
3531 with a qualification conversion (4.4) are also candidate
3532 functions. */
3533 /* 13.3.1.6 doesn't have a parallel restriction, but it should;
3534 I've raised this issue with the committee. --jason 9/2011 */
3535 cand->viable = -1;
3536 cand->reason = explicit_conversion_rejection (rettype, totype);
3538 else if (cand->viable == 1 && ics->bad_p)
3540 cand->viable = -1;
3541 cand->reason
3542 = bad_arg_conversion_rejection (NULL_TREE, -1,
3543 rettype, totype);
3545 else if (primary_template_instantiation_p (cand->fn)
3546 && ics->rank > cr_exact)
3548 /* 13.3.3.1.2: If the user-defined conversion is specified by
3549 a specialization of a conversion function template, the
3550 second standard conversion sequence shall have exact match
3551 rank. */
3552 cand->viable = -1;
3553 cand->reason = template_conversion_rejection (rettype, totype);
3558 candidates = splice_viable (candidates, pedantic, &any_viable_p);
3559 if (!any_viable_p)
3561 if (args)
3562 release_tree_vector (args);
3563 return NULL;
3566 cand = tourney (candidates);
3567 if (cand == 0)
3569 if (flags & LOOKUP_COMPLAIN)
3571 error ("conversion from %qT to %qT is ambiguous",
3572 fromtype, totype);
3573 print_z_candidates (location_of (expr), candidates);
3576 cand = candidates; /* any one will do */
3577 cand->second_conv = build_ambiguous_conv (totype, expr);
3578 cand->second_conv->user_conv_p = true;
3579 if (!any_strictly_viable (candidates))
3580 cand->second_conv->bad_p = true;
3581 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
3582 ambiguous conversion is no worse than another user-defined
3583 conversion. */
3585 return cand;
3588 /* Build the user conversion sequence. */
3589 conv = build_conv
3590 (ck_user,
3591 (DECL_CONSTRUCTOR_P (cand->fn)
3592 ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
3593 build_identity_conv (TREE_TYPE (expr), expr));
3594 conv->cand = cand;
3595 if (cand->viable == -1)
3596 conv->bad_p = true;
3598 /* Remember that this was a list-initialization. */
3599 if (flags & LOOKUP_NO_NARROWING)
3600 conv->check_narrowing = true;
3602 /* Combine it with the second conversion sequence. */
3603 cand->second_conv = merge_conversion_sequences (conv,
3604 cand->second_conv);
3606 return cand;
3609 /* Wrapper for above. */
3611 tree
3612 build_user_type_conversion (tree totype, tree expr, int flags)
3614 struct z_candidate *cand;
3615 tree ret;
3617 bool subtime = timevar_cond_start (TV_OVERLOAD);
3618 cand = build_user_type_conversion_1 (totype, expr, flags);
3620 if (cand)
3622 if (cand->second_conv->kind == ck_ambig)
3623 ret = error_mark_node;
3624 else
3626 expr = convert_like (cand->second_conv, expr, tf_warning_or_error);
3627 ret = convert_from_reference (expr);
3630 else
3631 ret = NULL_TREE;
3633 timevar_cond_stop (TV_OVERLOAD, subtime);
3634 return ret;
3637 /* Subroutine of convert_nontype_argument.
3639 EXPR is an argument for a template non-type parameter of integral or
3640 enumeration type. Do any necessary conversions (that are permitted for
3641 non-type arguments) to convert it to the parameter type.
3643 If conversion is successful, returns the converted expression;
3644 otherwise, returns error_mark_node. */
3646 tree
3647 build_integral_nontype_arg_conv (tree type, tree expr, tsubst_flags_t complain)
3649 conversion *conv;
3650 void *p;
3651 tree t;
3653 if (error_operand_p (expr))
3654 return error_mark_node;
3656 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
3658 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3659 p = conversion_obstack_alloc (0);
3661 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
3662 /*c_cast_p=*/false,
3663 LOOKUP_IMPLICIT);
3665 /* for a non-type template-parameter of integral or
3666 enumeration type, integral promotions (4.5) and integral
3667 conversions (4.7) are applied. */
3668 /* It should be sufficient to check the outermost conversion step, since
3669 there are no qualification conversions to integer type. */
3670 if (conv)
3671 switch (conv->kind)
3673 /* A conversion function is OK. If it isn't constexpr, we'll
3674 complain later that the argument isn't constant. */
3675 case ck_user:
3676 /* The lvalue-to-rvalue conversion is OK. */
3677 case ck_rvalue:
3678 case ck_identity:
3679 break;
3681 case ck_std:
3682 t = conv->u.next->type;
3683 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t))
3684 break;
3686 if (complain & tf_error)
3687 error ("conversion from %qT to %qT not considered for "
3688 "non-type template argument", t, type);
3689 /* and fall through. */
3691 default:
3692 conv = NULL;
3693 break;
3696 if (conv)
3697 expr = convert_like (conv, expr, complain);
3698 else
3699 expr = error_mark_node;
3701 /* Free all the conversions we allocated. */
3702 obstack_free (&conversion_obstack, p);
3704 return expr;
3707 /* Do any initial processing on the arguments to a function call. */
3709 static VEC(tree,gc) *
3710 resolve_args (VEC(tree,gc) *args, tsubst_flags_t complain)
3712 unsigned int ix;
3713 tree arg;
3715 FOR_EACH_VEC_ELT (tree, args, ix, arg)
3717 if (error_operand_p (arg))
3718 return NULL;
3719 else if (VOID_TYPE_P (TREE_TYPE (arg)))
3721 if (complain & tf_error)
3722 error ("invalid use of void expression");
3723 return NULL;
3725 else if (invalid_nonstatic_memfn_p (arg, tf_warning_or_error))
3726 return NULL;
3728 return args;
3731 /* Perform overload resolution on FN, which is called with the ARGS.
3733 Return the candidate function selected by overload resolution, or
3734 NULL if the event that overload resolution failed. In the case
3735 that overload resolution fails, *CANDIDATES will be the set of
3736 candidates considered, and ANY_VIABLE_P will be set to true or
3737 false to indicate whether or not any of the candidates were
3738 viable.
3740 The ARGS should already have gone through RESOLVE_ARGS before this
3741 function is called. */
3743 static struct z_candidate *
3744 perform_overload_resolution (tree fn,
3745 const VEC(tree,gc) *args,
3746 struct z_candidate **candidates,
3747 bool *any_viable_p)
3749 struct z_candidate *cand;
3750 tree explicit_targs;
3751 int template_only;
3753 bool subtime = timevar_cond_start (TV_OVERLOAD);
3755 explicit_targs = NULL_TREE;
3756 template_only = 0;
3758 *candidates = NULL;
3759 *any_viable_p = true;
3761 /* Check FN. */
3762 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
3763 || TREE_CODE (fn) == TEMPLATE_DECL
3764 || TREE_CODE (fn) == OVERLOAD
3765 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
3767 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3769 explicit_targs = TREE_OPERAND (fn, 1);
3770 fn = TREE_OPERAND (fn, 0);
3771 template_only = 1;
3774 /* Add the various candidate functions. */
3775 add_candidates (fn, NULL_TREE, args, NULL_TREE,
3776 explicit_targs, template_only,
3777 /*conversion_path=*/NULL_TREE,
3778 /*access_path=*/NULL_TREE,
3779 LOOKUP_NORMAL,
3780 candidates);
3782 *candidates = splice_viable (*candidates, pedantic, any_viable_p);
3783 if (*any_viable_p)
3784 cand = tourney (*candidates);
3785 else
3786 cand = NULL;
3788 timevar_cond_stop (TV_OVERLOAD, subtime);
3789 return cand;
3792 /* Print an error message about being unable to build a call to FN with
3793 ARGS. ANY_VIABLE_P indicates whether any candidate functions could
3794 be located; CANDIDATES is a possibly empty list of such
3795 functions. */
3797 static void
3798 print_error_for_call_failure (tree fn, VEC(tree,gc) *args, bool any_viable_p,
3799 struct z_candidate *candidates)
3801 tree name = DECL_NAME (OVL_CURRENT (fn));
3802 location_t loc = location_of (name);
3804 if (!any_viable_p)
3805 error_at (loc, "no matching function for call to %<%D(%A)%>",
3806 name, build_tree_list_vec (args));
3807 else
3808 error_at (loc, "call of overloaded %<%D(%A)%> is ambiguous",
3809 name, build_tree_list_vec (args));
3810 if (candidates)
3811 print_z_candidates (loc, candidates);
3814 /* Return an expression for a call to FN (a namespace-scope function,
3815 or a static member function) with the ARGS. This may change
3816 ARGS. */
3818 tree
3819 build_new_function_call (tree fn, VEC(tree,gc) **args, bool koenig_p,
3820 tsubst_flags_t complain)
3822 struct z_candidate *candidates, *cand;
3823 bool any_viable_p;
3824 void *p;
3825 tree result;
3827 if (args != NULL && *args != NULL)
3829 *args = resolve_args (*args, complain);
3830 if (*args == NULL)
3831 return error_mark_node;
3834 if (flag_tm)
3835 tm_malloc_replacement (fn);
3837 /* If this function was found without using argument dependent
3838 lookup, then we want to ignore any undeclared friend
3839 functions. */
3840 if (!koenig_p)
3842 tree orig_fn = fn;
3844 fn = remove_hidden_names (fn);
3845 if (!fn)
3847 if (complain & tf_error)
3848 print_error_for_call_failure (orig_fn, *args, false, NULL);
3849 return error_mark_node;
3853 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3854 p = conversion_obstack_alloc (0);
3856 cand = perform_overload_resolution (fn, *args, &candidates, &any_viable_p);
3858 if (!cand)
3860 if (complain & tf_error)
3862 if (!any_viable_p && candidates && ! candidates->next
3863 && (TREE_CODE (candidates->fn) == FUNCTION_DECL))
3864 return cp_build_function_call_vec (candidates->fn, args, complain);
3865 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3866 fn = TREE_OPERAND (fn, 0);
3867 print_error_for_call_failure (fn, *args, any_viable_p, candidates);
3869 result = error_mark_node;
3871 else
3873 int flags = LOOKUP_NORMAL;
3874 /* If fn is template_id_expr, the call has explicit template arguments
3875 (e.g. func<int>(5)), communicate this info to build_over_call
3876 through flags so that later we can use it to decide whether to warn
3877 about peculiar null pointer conversion. */
3878 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3879 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
3880 result = build_over_call (cand, flags, complain);
3883 /* Free all the conversions we allocated. */
3884 obstack_free (&conversion_obstack, p);
3886 return result;
3889 /* Build a call to a global operator new. FNNAME is the name of the
3890 operator (either "operator new" or "operator new[]") and ARGS are
3891 the arguments provided. This may change ARGS. *SIZE points to the
3892 total number of bytes required by the allocation, and is updated if
3893 that is changed here. *COOKIE_SIZE is non-NULL if a cookie should
3894 be used. If this function determines that no cookie should be
3895 used, after all, *COOKIE_SIZE is set to NULL_TREE. If FN is
3896 non-NULL, it will be set, upon return, to the allocation function
3897 called. */
3899 tree
3900 build_operator_new_call (tree fnname, VEC(tree,gc) **args,
3901 tree *size, tree *cookie_size,
3902 tree *fn)
3904 tree fns;
3905 struct z_candidate *candidates;
3906 struct z_candidate *cand;
3907 bool any_viable_p;
3909 if (fn)
3910 *fn = NULL_TREE;
3911 VEC_safe_insert (tree, gc, *args, 0, *size);
3912 *args = resolve_args (*args, tf_warning_or_error);
3913 if (*args == NULL)
3914 return error_mark_node;
3916 /* Based on:
3918 [expr.new]
3920 If this lookup fails to find the name, or if the allocated type
3921 is not a class type, the allocation function's name is looked
3922 up in the global scope.
3924 we disregard block-scope declarations of "operator new". */
3925 fns = lookup_function_nonclass (fnname, *args, /*block_p=*/false);
3927 /* Figure out what function is being called. */
3928 cand = perform_overload_resolution (fns, *args, &candidates, &any_viable_p);
3930 /* If no suitable function could be found, issue an error message
3931 and give up. */
3932 if (!cand)
3934 print_error_for_call_failure (fns, *args, any_viable_p, candidates);
3935 return error_mark_node;
3938 /* If a cookie is required, add some extra space. Whether
3939 or not a cookie is required cannot be determined until
3940 after we know which function was called. */
3941 if (*cookie_size)
3943 bool use_cookie = true;
3944 if (!abi_version_at_least (2))
3946 /* In G++ 3.2, the check was implemented incorrectly; it
3947 looked at the placement expression, rather than the
3948 type of the function. */
3949 if (VEC_length (tree, *args) == 2
3950 && same_type_p (TREE_TYPE (VEC_index (tree, *args, 1)),
3951 ptr_type_node))
3952 use_cookie = false;
3954 else
3956 tree arg_types;
3958 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
3959 /* Skip the size_t parameter. */
3960 arg_types = TREE_CHAIN (arg_types);
3961 /* Check the remaining parameters (if any). */
3962 if (arg_types
3963 && TREE_CHAIN (arg_types) == void_list_node
3964 && same_type_p (TREE_VALUE (arg_types),
3965 ptr_type_node))
3966 use_cookie = false;
3968 /* If we need a cookie, adjust the number of bytes allocated. */
3969 if (use_cookie)
3971 /* Update the total size. */
3972 *size = size_binop (PLUS_EXPR, *size, *cookie_size);
3973 /* Update the argument list to reflect the adjusted size. */
3974 VEC_replace (tree, *args, 0, *size);
3976 else
3977 *cookie_size = NULL_TREE;
3980 /* Tell our caller which function we decided to call. */
3981 if (fn)
3982 *fn = cand->fn;
3984 /* Build the CALL_EXPR. */
3985 return build_over_call (cand, LOOKUP_NORMAL, tf_warning_or_error);
3988 /* Build a new call to operator(). This may change ARGS. */
3990 static tree
3991 build_op_call_1 (tree obj, VEC(tree,gc) **args, tsubst_flags_t complain)
3993 struct z_candidate *candidates = 0, *cand;
3994 tree fns, convs, first_mem_arg = NULL_TREE;
3995 tree type = TREE_TYPE (obj);
3996 bool any_viable_p;
3997 tree result = NULL_TREE;
3998 void *p;
4000 if (error_operand_p (obj))
4001 return error_mark_node;
4003 obj = prep_operand (obj);
4005 if (TYPE_PTRMEMFUNC_P (type))
4007 if (complain & tf_error)
4008 /* It's no good looking for an overloaded operator() on a
4009 pointer-to-member-function. */
4010 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
4011 return error_mark_node;
4014 if (TYPE_BINFO (type))
4016 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
4017 if (fns == error_mark_node)
4018 return error_mark_node;
4020 else
4021 fns = NULL_TREE;
4023 if (args != NULL && *args != NULL)
4025 *args = resolve_args (*args, complain);
4026 if (*args == NULL)
4027 return error_mark_node;
4030 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4031 p = conversion_obstack_alloc (0);
4033 if (fns)
4035 first_mem_arg = build_this (obj);
4037 add_candidates (BASELINK_FUNCTIONS (fns),
4038 first_mem_arg, *args, NULL_TREE,
4039 NULL_TREE, false,
4040 BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
4041 LOOKUP_NORMAL, &candidates);
4044 convs = lookup_conversions (type);
4046 for (; convs; convs = TREE_CHAIN (convs))
4048 tree fns = TREE_VALUE (convs);
4049 tree totype = TREE_TYPE (convs);
4051 if ((TREE_CODE (totype) == POINTER_TYPE
4052 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
4053 || (TREE_CODE (totype) == REFERENCE_TYPE
4054 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
4055 || (TREE_CODE (totype) == REFERENCE_TYPE
4056 && TREE_CODE (TREE_TYPE (totype)) == POINTER_TYPE
4057 && TREE_CODE (TREE_TYPE (TREE_TYPE (totype))) == FUNCTION_TYPE))
4058 for (; fns; fns = OVL_NEXT (fns))
4060 tree fn = OVL_CURRENT (fns);
4062 if (DECL_NONCONVERTING_P (fn))
4063 continue;
4065 if (TREE_CODE (fn) == TEMPLATE_DECL)
4066 add_template_conv_candidate
4067 (&candidates, fn, obj, NULL_TREE, *args, totype,
4068 /*access_path=*/NULL_TREE,
4069 /*conversion_path=*/NULL_TREE);
4070 else
4071 add_conv_candidate (&candidates, fn, obj, NULL_TREE,
4072 *args, /*conversion_path=*/NULL_TREE,
4073 /*access_path=*/NULL_TREE);
4077 candidates = splice_viable (candidates, pedantic, &any_viable_p);
4078 if (!any_viable_p)
4080 if (complain & tf_error)
4082 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj),
4083 build_tree_list_vec (*args));
4084 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4086 result = error_mark_node;
4088 else
4090 cand = tourney (candidates);
4091 if (cand == 0)
4093 if (complain & tf_error)
4095 error ("call of %<(%T) (%A)%> is ambiguous",
4096 TREE_TYPE (obj), build_tree_list_vec (*args));
4097 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4099 result = error_mark_node;
4101 /* Since cand->fn will be a type, not a function, for a conversion
4102 function, we must be careful not to unconditionally look at
4103 DECL_NAME here. */
4104 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
4105 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
4106 result = build_over_call (cand, LOOKUP_NORMAL, complain);
4107 else
4109 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1,
4110 complain);
4111 obj = convert_from_reference (obj);
4112 result = cp_build_function_call_vec (obj, args, complain);
4116 /* Free all the conversions we allocated. */
4117 obstack_free (&conversion_obstack, p);
4119 return result;
4122 /* Wrapper for above. */
4124 tree
4125 build_op_call (tree obj, VEC(tree,gc) **args, tsubst_flags_t complain)
4127 tree ret;
4128 bool subtime = timevar_cond_start (TV_OVERLOAD);
4129 ret = build_op_call_1 (obj, args, complain);
4130 timevar_cond_stop (TV_OVERLOAD, subtime);
4131 return ret;
4134 static void
4135 op_error (enum tree_code code, enum tree_code code2,
4136 tree arg1, tree arg2, tree arg3, bool match)
4138 const char *opname;
4140 if (code == MODIFY_EXPR)
4141 opname = assignment_operator_name_info[code2].name;
4142 else
4143 opname = operator_name_info[code].name;
4145 switch (code)
4147 case COND_EXPR:
4148 if (match)
4149 error ("ambiguous overload for ternary %<operator?:%> "
4150 "in %<%E ? %E : %E%>", arg1, arg2, arg3);
4151 else
4152 error ("no match for ternary %<operator?:%> "
4153 "in %<%E ? %E : %E%>", arg1, arg2, arg3);
4154 break;
4156 case POSTINCREMENT_EXPR:
4157 case POSTDECREMENT_EXPR:
4158 if (match)
4159 error ("ambiguous overload for %<operator%s%> in %<%E%s%>",
4160 opname, arg1, opname);
4161 else
4162 error ("no match for %<operator%s%> in %<%E%s%>",
4163 opname, arg1, opname);
4164 break;
4166 case ARRAY_REF:
4167 if (match)
4168 error ("ambiguous overload for %<operator[]%> in %<%E[%E]%>",
4169 arg1, arg2);
4170 else
4171 error ("no match for %<operator[]%> in %<%E[%E]%>",
4172 arg1, arg2);
4173 break;
4175 case REALPART_EXPR:
4176 case IMAGPART_EXPR:
4177 if (match)
4178 error ("ambiguous overload for %qs in %<%s %E%>",
4179 opname, opname, arg1);
4180 else
4181 error ("no match for %qs in %<%s %E%>",
4182 opname, opname, arg1);
4183 break;
4185 default:
4186 if (arg2)
4187 if (match)
4188 error ("ambiguous overload for %<operator%s%> in %<%E %s %E%>",
4189 opname, arg1, opname, arg2);
4190 else
4191 error ("no match for %<operator%s%> in %<%E %s %E%>",
4192 opname, arg1, opname, arg2);
4193 else
4194 if (match)
4195 error ("ambiguous overload for %<operator%s%> in %<%s%E%>",
4196 opname, opname, arg1);
4197 else
4198 error ("no match for %<operator%s%> in %<%s%E%>",
4199 opname, opname, arg1);
4200 break;
4204 /* Return the implicit conversion sequence that could be used to
4205 convert E1 to E2 in [expr.cond]. */
4207 static conversion *
4208 conditional_conversion (tree e1, tree e2)
4210 tree t1 = non_reference (TREE_TYPE (e1));
4211 tree t2 = non_reference (TREE_TYPE (e2));
4212 conversion *conv;
4213 bool good_base;
4215 /* [expr.cond]
4217 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
4218 implicitly converted (clause _conv_) to the type "lvalue reference to
4219 T2", subject to the constraint that in the conversion the
4220 reference must bind directly (_dcl.init.ref_) to an lvalue. */
4221 if (real_lvalue_p (e2))
4223 conv = implicit_conversion (build_reference_type (t2),
4226 /*c_cast_p=*/false,
4227 LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND
4228 |LOOKUP_ONLYCONVERTING);
4229 if (conv)
4230 return conv;
4233 /* [expr.cond]
4235 If E1 and E2 have class type, and the underlying class types are
4236 the same or one is a base class of the other: E1 can be converted
4237 to match E2 if the class of T2 is the same type as, or a base
4238 class of, the class of T1, and the cv-qualification of T2 is the
4239 same cv-qualification as, or a greater cv-qualification than, the
4240 cv-qualification of T1. If the conversion is applied, E1 is
4241 changed to an rvalue of type T2 that still refers to the original
4242 source class object (or the appropriate subobject thereof). */
4243 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
4244 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
4246 if (good_base && at_least_as_qualified_p (t2, t1))
4248 conv = build_identity_conv (t1, e1);
4249 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
4250 TYPE_MAIN_VARIANT (t2)))
4251 conv = build_conv (ck_base, t2, conv);
4252 else
4253 conv = build_conv (ck_rvalue, t2, conv);
4254 return conv;
4256 else
4257 return NULL;
4259 else
4260 /* [expr.cond]
4262 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
4263 converted to the type that expression E2 would have if E2 were
4264 converted to an rvalue (or the type it has, if E2 is an rvalue). */
4265 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
4266 LOOKUP_IMPLICIT);
4269 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4270 arguments to the conditional expression. */
4272 static tree
4273 build_conditional_expr_1 (tree arg1, tree arg2, tree arg3,
4274 tsubst_flags_t complain)
4276 tree arg2_type;
4277 tree arg3_type;
4278 tree result = NULL_TREE;
4279 tree result_type = NULL_TREE;
4280 bool lvalue_p = true;
4281 struct z_candidate *candidates = 0;
4282 struct z_candidate *cand;
4283 void *p;
4285 /* As a G++ extension, the second argument to the conditional can be
4286 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
4287 c'.) If the second operand is omitted, make sure it is
4288 calculated only once. */
4289 if (!arg2)
4291 if (complain & tf_error)
4292 pedwarn (input_location, OPT_pedantic,
4293 "ISO C++ forbids omitting the middle term of a ?: expression");
4295 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
4296 if (real_lvalue_p (arg1))
4297 arg2 = arg1 = stabilize_reference (arg1);
4298 else
4299 arg2 = arg1 = save_expr (arg1);
4302 /* [expr.cond]
4304 The first expression is implicitly converted to bool (clause
4305 _conv_). */
4306 arg1 = perform_implicit_conversion_flags (boolean_type_node, arg1, complain,
4307 LOOKUP_NORMAL);
4309 /* If something has already gone wrong, just pass that fact up the
4310 tree. */
4311 if (error_operand_p (arg1)
4312 || error_operand_p (arg2)
4313 || error_operand_p (arg3))
4314 return error_mark_node;
4316 /* [expr.cond]
4318 If either the second or the third operand has type (possibly
4319 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
4320 array-to-pointer (_conv.array_), and function-to-pointer
4321 (_conv.func_) standard conversions are performed on the second
4322 and third operands. */
4323 arg2_type = unlowered_expr_type (arg2);
4324 arg3_type = unlowered_expr_type (arg3);
4325 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
4327 /* Do the conversions. We don't these for `void' type arguments
4328 since it can't have any effect and since decay_conversion
4329 does not handle that case gracefully. */
4330 if (!VOID_TYPE_P (arg2_type))
4331 arg2 = decay_conversion (arg2);
4332 if (!VOID_TYPE_P (arg3_type))
4333 arg3 = decay_conversion (arg3);
4334 arg2_type = TREE_TYPE (arg2);
4335 arg3_type = TREE_TYPE (arg3);
4337 /* [expr.cond]
4339 One of the following shall hold:
4341 --The second or the third operand (but not both) is a
4342 throw-expression (_except.throw_); the result is of the
4343 type of the other and is an rvalue.
4345 --Both the second and the third operands have type void; the
4346 result is of type void and is an rvalue.
4348 We must avoid calling force_rvalue for expressions of type
4349 "void" because it will complain that their value is being
4350 used. */
4351 if (TREE_CODE (arg2) == THROW_EXPR
4352 && TREE_CODE (arg3) != THROW_EXPR)
4354 if (!VOID_TYPE_P (arg3_type))
4356 arg3 = force_rvalue (arg3, complain);
4357 if (arg3 == error_mark_node)
4358 return error_mark_node;
4360 arg3_type = TREE_TYPE (arg3);
4361 result_type = arg3_type;
4363 else if (TREE_CODE (arg2) != THROW_EXPR
4364 && TREE_CODE (arg3) == THROW_EXPR)
4366 if (!VOID_TYPE_P (arg2_type))
4368 arg2 = force_rvalue (arg2, complain);
4369 if (arg2 == error_mark_node)
4370 return error_mark_node;
4372 arg2_type = TREE_TYPE (arg2);
4373 result_type = arg2_type;
4375 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
4376 result_type = void_type_node;
4377 else
4379 if (complain & tf_error)
4381 if (VOID_TYPE_P (arg2_type))
4382 error ("second operand to the conditional operator "
4383 "is of type %<void%>, "
4384 "but the third operand is neither a throw-expression "
4385 "nor of type %<void%>");
4386 else
4387 error ("third operand to the conditional operator "
4388 "is of type %<void%>, "
4389 "but the second operand is neither a throw-expression "
4390 "nor of type %<void%>");
4392 return error_mark_node;
4395 lvalue_p = false;
4396 goto valid_operands;
4398 /* [expr.cond]
4400 Otherwise, if the second and third operand have different types,
4401 and either has (possibly cv-qualified) class type, an attempt is
4402 made to convert each of those operands to the type of the other. */
4403 else if (!same_type_p (arg2_type, arg3_type)
4404 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4406 conversion *conv2;
4407 conversion *conv3;
4409 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4410 p = conversion_obstack_alloc (0);
4412 conv2 = conditional_conversion (arg2, arg3);
4413 conv3 = conditional_conversion (arg3, arg2);
4415 /* [expr.cond]
4417 If both can be converted, or one can be converted but the
4418 conversion is ambiguous, the program is ill-formed. If
4419 neither can be converted, the operands are left unchanged and
4420 further checking is performed as described below. If exactly
4421 one conversion is possible, that conversion is applied to the
4422 chosen operand and the converted operand is used in place of
4423 the original operand for the remainder of this section. */
4424 if ((conv2 && !conv2->bad_p
4425 && conv3 && !conv3->bad_p)
4426 || (conv2 && conv2->kind == ck_ambig)
4427 || (conv3 && conv3->kind == ck_ambig))
4429 error ("operands to ?: have different types %qT and %qT",
4430 arg2_type, arg3_type);
4431 result = error_mark_node;
4433 else if (conv2 && (!conv2->bad_p || !conv3))
4435 arg2 = convert_like (conv2, arg2, complain);
4436 arg2 = convert_from_reference (arg2);
4437 arg2_type = TREE_TYPE (arg2);
4438 /* Even if CONV2 is a valid conversion, the result of the
4439 conversion may be invalid. For example, if ARG3 has type
4440 "volatile X", and X does not have a copy constructor
4441 accepting a "volatile X&", then even if ARG2 can be
4442 converted to X, the conversion will fail. */
4443 if (error_operand_p (arg2))
4444 result = error_mark_node;
4446 else if (conv3 && (!conv3->bad_p || !conv2))
4448 arg3 = convert_like (conv3, arg3, complain);
4449 arg3 = convert_from_reference (arg3);
4450 arg3_type = TREE_TYPE (arg3);
4451 if (error_operand_p (arg3))
4452 result = error_mark_node;
4455 /* Free all the conversions we allocated. */
4456 obstack_free (&conversion_obstack, p);
4458 if (result)
4459 return result;
4461 /* If, after the conversion, both operands have class type,
4462 treat the cv-qualification of both operands as if it were the
4463 union of the cv-qualification of the operands.
4465 The standard is not clear about what to do in this
4466 circumstance. For example, if the first operand has type
4467 "const X" and the second operand has a user-defined
4468 conversion to "volatile X", what is the type of the second
4469 operand after this step? Making it be "const X" (matching
4470 the first operand) seems wrong, as that discards the
4471 qualification without actually performing a copy. Leaving it
4472 as "volatile X" seems wrong as that will result in the
4473 conditional expression failing altogether, even though,
4474 according to this step, the one operand could be converted to
4475 the type of the other. */
4476 if ((conv2 || conv3)
4477 && CLASS_TYPE_P (arg2_type)
4478 && cp_type_quals (arg2_type) != cp_type_quals (arg3_type))
4479 arg2_type = arg3_type =
4480 cp_build_qualified_type (arg2_type,
4481 cp_type_quals (arg2_type)
4482 | cp_type_quals (arg3_type));
4485 /* [expr.cond]
4487 If the second and third operands are lvalues and have the same
4488 type, the result is of that type and is an lvalue. */
4489 if (real_lvalue_p (arg2)
4490 && real_lvalue_p (arg3)
4491 && same_type_p (arg2_type, arg3_type))
4493 result_type = arg2_type;
4494 arg2 = mark_lvalue_use (arg2);
4495 arg3 = mark_lvalue_use (arg3);
4496 goto valid_operands;
4499 /* [expr.cond]
4501 Otherwise, the result is an rvalue. If the second and third
4502 operand do not have the same type, and either has (possibly
4503 cv-qualified) class type, overload resolution is used to
4504 determine the conversions (if any) to be applied to the operands
4505 (_over.match.oper_, _over.built_). */
4506 lvalue_p = false;
4507 if (!same_type_p (arg2_type, arg3_type)
4508 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4510 tree args[3];
4511 conversion *conv;
4512 bool any_viable_p;
4514 /* Rearrange the arguments so that add_builtin_candidate only has
4515 to know about two args. In build_builtin_candidate, the
4516 arguments are unscrambled. */
4517 args[0] = arg2;
4518 args[1] = arg3;
4519 args[2] = arg1;
4520 add_builtin_candidates (&candidates,
4521 COND_EXPR,
4522 NOP_EXPR,
4523 ansi_opname (COND_EXPR),
4524 args,
4525 LOOKUP_NORMAL);
4527 /* [expr.cond]
4529 If the overload resolution fails, the program is
4530 ill-formed. */
4531 candidates = splice_viable (candidates, pedantic, &any_viable_p);
4532 if (!any_viable_p)
4534 if (complain & tf_error)
4536 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
4537 print_z_candidates (location_of (arg1), candidates);
4539 return error_mark_node;
4541 cand = tourney (candidates);
4542 if (!cand)
4544 if (complain & tf_error)
4546 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
4547 print_z_candidates (location_of (arg1), candidates);
4549 return error_mark_node;
4552 /* [expr.cond]
4554 Otherwise, the conversions thus determined are applied, and
4555 the converted operands are used in place of the original
4556 operands for the remainder of this section. */
4557 conv = cand->convs[0];
4558 arg1 = convert_like (conv, arg1, complain);
4559 conv = cand->convs[1];
4560 arg2 = convert_like (conv, arg2, complain);
4561 arg2_type = TREE_TYPE (arg2);
4562 conv = cand->convs[2];
4563 arg3 = convert_like (conv, arg3, complain);
4564 arg3_type = TREE_TYPE (arg3);
4567 /* [expr.cond]
4569 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
4570 and function-to-pointer (_conv.func_) standard conversions are
4571 performed on the second and third operands.
4573 We need to force the lvalue-to-rvalue conversion here for class types,
4574 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
4575 that isn't wrapped with a TARGET_EXPR plays havoc with exception
4576 regions. */
4578 arg2 = force_rvalue (arg2, complain);
4579 if (!CLASS_TYPE_P (arg2_type))
4580 arg2_type = TREE_TYPE (arg2);
4582 arg3 = force_rvalue (arg3, complain);
4583 if (!CLASS_TYPE_P (arg3_type))
4584 arg3_type = TREE_TYPE (arg3);
4586 if (arg2 == error_mark_node || arg3 == error_mark_node)
4587 return error_mark_node;
4589 /* [expr.cond]
4591 After those conversions, one of the following shall hold:
4593 --The second and third operands have the same type; the result is of
4594 that type. */
4595 if (same_type_p (arg2_type, arg3_type))
4596 result_type = arg2_type;
4597 /* [expr.cond]
4599 --The second and third operands have arithmetic or enumeration
4600 type; the usual arithmetic conversions are performed to bring
4601 them to a common type, and the result is of that type. */
4602 else if ((ARITHMETIC_TYPE_P (arg2_type)
4603 || UNSCOPED_ENUM_P (arg2_type))
4604 && (ARITHMETIC_TYPE_P (arg3_type)
4605 || UNSCOPED_ENUM_P (arg3_type)))
4607 /* In this case, there is always a common type. */
4608 result_type = type_after_usual_arithmetic_conversions (arg2_type,
4609 arg3_type);
4610 do_warn_double_promotion (result_type, arg2_type, arg3_type,
4611 "implicit conversion from %qT to %qT to "
4612 "match other result of conditional",
4613 input_location);
4615 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
4616 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
4618 if (complain & tf_warning)
4619 warning (0,
4620 "enumeral mismatch in conditional expression: %qT vs %qT",
4621 arg2_type, arg3_type);
4623 else if (extra_warnings
4624 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
4625 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
4626 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
4627 && !same_type_p (arg2_type, type_promotes_to (arg3_type)))))
4629 if (complain & tf_warning)
4630 warning (0,
4631 "enumeral and non-enumeral type in conditional expression");
4634 arg2 = perform_implicit_conversion (result_type, arg2, complain);
4635 arg3 = perform_implicit_conversion (result_type, arg3, complain);
4637 /* [expr.cond]
4639 --The second and third operands have pointer type, or one has
4640 pointer type and the other is a null pointer constant; pointer
4641 conversions (_conv.ptr_) and qualification conversions
4642 (_conv.qual_) are performed to bring them to their composite
4643 pointer type (_expr.rel_). The result is of the composite
4644 pointer type.
4646 --The second and third operands have pointer to member type, or
4647 one has pointer to member type and the other is a null pointer
4648 constant; pointer to member conversions (_conv.mem_) and
4649 qualification conversions (_conv.qual_) are performed to bring
4650 them to a common type, whose cv-qualification shall match the
4651 cv-qualification of either the second or the third operand.
4652 The result is of the common type. */
4653 else if ((null_ptr_cst_p (arg2)
4654 && (TYPE_PTR_P (arg3_type) || TYPE_PTR_TO_MEMBER_P (arg3_type)))
4655 || (null_ptr_cst_p (arg3)
4656 && (TYPE_PTR_P (arg2_type) || TYPE_PTR_TO_MEMBER_P (arg2_type)))
4657 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
4658 || (TYPE_PTRMEM_P (arg2_type) && TYPE_PTRMEM_P (arg3_type))
4659 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
4661 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
4662 arg3, CPO_CONDITIONAL_EXPR,
4663 complain);
4664 if (result_type == error_mark_node)
4665 return error_mark_node;
4666 arg2 = perform_implicit_conversion (result_type, arg2, complain);
4667 arg3 = perform_implicit_conversion (result_type, arg3, complain);
4670 if (!result_type)
4672 if (complain & tf_error)
4673 error ("operands to ?: have different types %qT and %qT",
4674 arg2_type, arg3_type);
4675 return error_mark_node;
4678 valid_operands:
4679 result = build3 (COND_EXPR, result_type, arg1, arg2, arg3);
4680 if (!cp_unevaluated_operand)
4681 /* Avoid folding within decltype (c++/42013) and noexcept. */
4682 result = fold_if_not_in_template (result);
4684 /* We can't use result_type below, as fold might have returned a
4685 throw_expr. */
4687 if (!lvalue_p)
4689 /* Expand both sides into the same slot, hopefully the target of
4690 the ?: expression. We used to check for TARGET_EXPRs here,
4691 but now we sometimes wrap them in NOP_EXPRs so the test would
4692 fail. */
4693 if (CLASS_TYPE_P (TREE_TYPE (result)))
4694 result = get_target_expr (result);
4695 /* If this expression is an rvalue, but might be mistaken for an
4696 lvalue, we must add a NON_LVALUE_EXPR. */
4697 result = rvalue (result);
4700 return result;
4703 /* Wrapper for above. */
4705 tree
4706 build_conditional_expr (tree arg1, tree arg2, tree arg3,
4707 tsubst_flags_t complain)
4709 tree ret;
4710 bool subtime = timevar_cond_start (TV_OVERLOAD);
4711 ret = build_conditional_expr_1 (arg1, arg2, arg3, complain);
4712 timevar_cond_stop (TV_OVERLOAD, subtime);
4713 return ret;
4716 /* OPERAND is an operand to an expression. Perform necessary steps
4717 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
4718 returned. */
4720 static tree
4721 prep_operand (tree operand)
4723 if (operand)
4725 if (CLASS_TYPE_P (TREE_TYPE (operand))
4726 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
4727 /* Make sure the template type is instantiated now. */
4728 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
4731 return operand;
4734 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
4735 OVERLOAD) to the CANDIDATES, returning an updated list of
4736 CANDIDATES. The ARGS are the arguments provided to the call;
4737 if FIRST_ARG is non-null it is the implicit object argument,
4738 otherwise the first element of ARGS is used if needed. The
4739 EXPLICIT_TARGS are explicit template arguments provided.
4740 TEMPLATE_ONLY is true if only template functions should be
4741 considered. CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
4742 add_function_candidate. */
4744 static void
4745 add_candidates (tree fns, tree first_arg, const VEC(tree,gc) *args,
4746 tree return_type,
4747 tree explicit_targs, bool template_only,
4748 tree conversion_path, tree access_path,
4749 int flags,
4750 struct z_candidate **candidates)
4752 tree ctype;
4753 const VEC(tree,gc) *non_static_args;
4754 bool check_list_ctor;
4755 bool check_converting;
4756 unification_kind_t strict;
4757 tree fn;
4759 if (!fns)
4760 return;
4762 /* Precalculate special handling of constructors and conversion ops. */
4763 fn = OVL_CURRENT (fns);
4764 if (DECL_CONV_FN_P (fn))
4766 check_list_ctor = false;
4767 check_converting = !!(flags & LOOKUP_ONLYCONVERTING);
4768 if (flags & LOOKUP_NO_CONVERSION)
4769 /* We're doing return_type(x). */
4770 strict = DEDUCE_CONV;
4771 else
4772 /* We're doing x.operator return_type(). */
4773 strict = DEDUCE_EXACT;
4774 /* [over.match.funcs] For conversion functions, the function
4775 is considered to be a member of the class of the implicit
4776 object argument for the purpose of defining the type of
4777 the implicit object parameter. */
4778 ctype = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (first_arg)));
4780 else
4782 if (DECL_CONSTRUCTOR_P (fn))
4784 check_list_ctor = !!(flags & LOOKUP_LIST_ONLY);
4785 check_converting = !!(flags & LOOKUP_ONLYCONVERTING);
4787 else
4789 check_list_ctor = false;
4790 check_converting = false;
4792 strict = DEDUCE_CALL;
4793 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
4796 if (first_arg)
4797 non_static_args = args;
4798 else
4799 /* Delay creating the implicit this parameter until it is needed. */
4800 non_static_args = NULL;
4802 for (; fns; fns = OVL_NEXT (fns))
4804 tree fn_first_arg;
4805 const VEC(tree,gc) *fn_args;
4807 fn = OVL_CURRENT (fns);
4809 if (check_converting && DECL_NONCONVERTING_P (fn))
4810 continue;
4811 if (check_list_ctor && !is_list_ctor (fn))
4812 continue;
4814 /* Figure out which set of arguments to use. */
4815 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
4817 /* If this function is a non-static member and we didn't get an
4818 implicit object argument, move it out of args. */
4819 if (first_arg == NULL_TREE)
4821 unsigned int ix;
4822 tree arg;
4823 VEC(tree,gc) *tempvec
4824 = VEC_alloc (tree, gc, VEC_length (tree, args) - 1);
4825 for (ix = 1; VEC_iterate (tree, args, ix, arg); ++ix)
4826 VEC_quick_push (tree, tempvec, arg);
4827 non_static_args = tempvec;
4828 first_arg = build_this (VEC_index (tree, args, 0));
4831 fn_first_arg = first_arg;
4832 fn_args = non_static_args;
4834 else
4836 /* Otherwise, just use the list of arguments provided. */
4837 fn_first_arg = NULL_TREE;
4838 fn_args = args;
4841 if (TREE_CODE (fn) == TEMPLATE_DECL)
4842 add_template_candidate (candidates,
4844 ctype,
4845 explicit_targs,
4846 fn_first_arg,
4847 fn_args,
4848 return_type,
4849 access_path,
4850 conversion_path,
4851 flags,
4852 strict);
4853 else if (!template_only)
4854 add_function_candidate (candidates,
4856 ctype,
4857 fn_first_arg,
4858 fn_args,
4859 access_path,
4860 conversion_path,
4861 flags);
4865 /* Even unsigned enum types promote to signed int. We don't want to
4866 issue -Wsign-compare warnings for this case. Here ORIG_ARG is the
4867 original argument and ARG is the argument after any conversions
4868 have been applied. We set TREE_NO_WARNING if we have added a cast
4869 from an unsigned enum type to a signed integer type. */
4871 static void
4872 avoid_sign_compare_warnings (tree orig_arg, tree arg)
4874 if (orig_arg != NULL_TREE
4875 && arg != NULL_TREE
4876 && orig_arg != arg
4877 && TREE_CODE (TREE_TYPE (orig_arg)) == ENUMERAL_TYPE
4878 && TYPE_UNSIGNED (TREE_TYPE (orig_arg))
4879 && INTEGRAL_TYPE_P (TREE_TYPE (arg))
4880 && !TYPE_UNSIGNED (TREE_TYPE (arg)))
4881 TREE_NO_WARNING (arg) = 1;
4884 static tree
4885 build_new_op_1 (enum tree_code code, int flags, tree arg1, tree arg2, tree arg3,
4886 tree *overload, tsubst_flags_t complain)
4888 tree orig_arg1 = arg1;
4889 tree orig_arg2 = arg2;
4890 tree orig_arg3 = arg3;
4891 struct z_candidate *candidates = 0, *cand;
4892 VEC(tree,gc) *arglist;
4893 tree fnname;
4894 tree args[3];
4895 tree result = NULL_TREE;
4896 bool result_valid_p = false;
4897 enum tree_code code2 = NOP_EXPR;
4898 enum tree_code code_orig_arg1 = ERROR_MARK;
4899 enum tree_code code_orig_arg2 = ERROR_MARK;
4900 conversion *conv;
4901 void *p;
4902 bool strict_p;
4903 bool any_viable_p;
4905 if (error_operand_p (arg1)
4906 || error_operand_p (arg2)
4907 || error_operand_p (arg3))
4908 return error_mark_node;
4910 if (code == MODIFY_EXPR)
4912 code2 = TREE_CODE (arg3);
4913 arg3 = NULL_TREE;
4914 fnname = ansi_assopname (code2);
4916 else
4917 fnname = ansi_opname (code);
4919 arg1 = prep_operand (arg1);
4921 switch (code)
4923 case NEW_EXPR:
4924 case VEC_NEW_EXPR:
4925 case VEC_DELETE_EXPR:
4926 case DELETE_EXPR:
4927 /* Use build_op_new_call and build_op_delete_call instead. */
4928 gcc_unreachable ();
4930 case CALL_EXPR:
4931 /* Use build_op_call instead. */
4932 gcc_unreachable ();
4934 case TRUTH_ORIF_EXPR:
4935 case TRUTH_ANDIF_EXPR:
4936 case TRUTH_AND_EXPR:
4937 case TRUTH_OR_EXPR:
4938 /* These are saved for the sake of warn_logical_operator. */
4939 code_orig_arg1 = TREE_CODE (arg1);
4940 code_orig_arg2 = TREE_CODE (arg2);
4942 default:
4943 break;
4946 arg2 = prep_operand (arg2);
4947 arg3 = prep_operand (arg3);
4949 if (code == COND_EXPR)
4950 /* Use build_conditional_expr instead. */
4951 gcc_unreachable ();
4952 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1))
4953 && (! arg2 || ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))))
4954 goto builtin;
4956 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
4957 arg2 = integer_zero_node;
4959 arglist = VEC_alloc (tree, gc, 3);
4960 VEC_quick_push (tree, arglist, arg1);
4961 if (arg2 != NULL_TREE)
4962 VEC_quick_push (tree, arglist, arg2);
4963 if (arg3 != NULL_TREE)
4964 VEC_quick_push (tree, arglist, arg3);
4966 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4967 p = conversion_obstack_alloc (0);
4969 /* Add namespace-scope operators to the list of functions to
4970 consider. */
4971 add_candidates (lookup_function_nonclass (fnname, arglist, /*block_p=*/true),
4972 NULL_TREE, arglist, NULL_TREE,
4973 NULL_TREE, false, NULL_TREE, NULL_TREE,
4974 flags, &candidates);
4975 /* Add class-member operators to the candidate set. */
4976 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
4978 tree fns;
4980 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
4981 if (fns == error_mark_node)
4983 result = error_mark_node;
4984 goto user_defined_result_ready;
4986 if (fns)
4987 add_candidates (BASELINK_FUNCTIONS (fns),
4988 NULL_TREE, arglist, NULL_TREE,
4989 NULL_TREE, false,
4990 BASELINK_BINFO (fns),
4991 BASELINK_ACCESS_BINFO (fns),
4992 flags, &candidates);
4995 args[0] = arg1;
4996 args[1] = arg2;
4997 args[2] = NULL_TREE;
4999 add_builtin_candidates (&candidates, code, code2, fnname, args, flags);
5001 switch (code)
5003 case COMPOUND_EXPR:
5004 case ADDR_EXPR:
5005 /* For these, the built-in candidates set is empty
5006 [over.match.oper]/3. We don't want non-strict matches
5007 because exact matches are always possible with built-in
5008 operators. The built-in candidate set for COMPONENT_REF
5009 would be empty too, but since there are no such built-in
5010 operators, we accept non-strict matches for them. */
5011 strict_p = true;
5012 break;
5014 default:
5015 strict_p = pedantic;
5016 break;
5019 candidates = splice_viable (candidates, strict_p, &any_viable_p);
5020 if (!any_viable_p)
5022 switch (code)
5024 case POSTINCREMENT_EXPR:
5025 case POSTDECREMENT_EXPR:
5026 /* Don't try anything fancy if we're not allowed to produce
5027 errors. */
5028 if (!(complain & tf_error))
5029 return error_mark_node;
5031 /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
5032 distinguish between prefix and postfix ++ and
5033 operator++() was used for both, so we allow this with
5034 -fpermissive. */
5035 if (flags & LOOKUP_COMPLAIN)
5037 const char *msg = (flag_permissive)
5038 ? G_("no %<%D(int)%> declared for postfix %qs,"
5039 " trying prefix operator instead")
5040 : G_("no %<%D(int)%> declared for postfix %qs");
5041 permerror (input_location, msg, fnname,
5042 operator_name_info[code].name);
5045 if (!flag_permissive)
5046 return error_mark_node;
5048 if (code == POSTINCREMENT_EXPR)
5049 code = PREINCREMENT_EXPR;
5050 else
5051 code = PREDECREMENT_EXPR;
5052 result = build_new_op_1 (code, flags, arg1, NULL_TREE, NULL_TREE,
5053 overload, complain);
5054 break;
5056 /* The caller will deal with these. */
5057 case ADDR_EXPR:
5058 case COMPOUND_EXPR:
5059 case COMPONENT_REF:
5060 result = NULL_TREE;
5061 result_valid_p = true;
5062 break;
5064 default:
5065 if ((flags & LOOKUP_COMPLAIN) && (complain & tf_error))
5067 /* If one of the arguments of the operator represents
5068 an invalid use of member function pointer, try to report
5069 a meaningful error ... */
5070 if (invalid_nonstatic_memfn_p (arg1, tf_error)
5071 || invalid_nonstatic_memfn_p (arg2, tf_error)
5072 || invalid_nonstatic_memfn_p (arg3, tf_error))
5073 /* We displayed the error message. */;
5074 else
5076 /* ... Otherwise, report the more generic
5077 "no matching operator found" error */
5078 op_error (code, code2, arg1, arg2, arg3, FALSE);
5079 print_z_candidates (input_location, candidates);
5082 result = error_mark_node;
5083 break;
5086 else
5088 cand = tourney (candidates);
5089 if (cand == 0)
5091 if ((flags & LOOKUP_COMPLAIN) && (complain & tf_error))
5093 op_error (code, code2, arg1, arg2, arg3, TRUE);
5094 print_z_candidates (input_location, candidates);
5096 result = error_mark_node;
5098 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
5100 if (overload)
5101 *overload = cand->fn;
5103 if (resolve_args (arglist, complain) == NULL)
5104 result = error_mark_node;
5105 else
5106 result = build_over_call (cand, LOOKUP_NORMAL, complain);
5108 else
5110 /* Give any warnings we noticed during overload resolution. */
5111 if (cand->warnings && (complain & tf_warning))
5113 struct candidate_warning *w;
5114 for (w = cand->warnings; w; w = w->next)
5115 joust (cand, w->loser, 1);
5118 /* Check for comparison of different enum types. */
5119 switch (code)
5121 case GT_EXPR:
5122 case LT_EXPR:
5123 case GE_EXPR:
5124 case LE_EXPR:
5125 case EQ_EXPR:
5126 case NE_EXPR:
5127 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
5128 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
5129 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
5130 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2)))
5131 && (complain & tf_warning))
5133 warning (OPT_Wenum_compare,
5134 "comparison between %q#T and %q#T",
5135 TREE_TYPE (arg1), TREE_TYPE (arg2));
5137 break;
5138 default:
5139 break;
5142 /* We need to strip any leading REF_BIND so that bitfields
5143 don't cause errors. This should not remove any important
5144 conversions, because builtins don't apply to class
5145 objects directly. */
5146 conv = cand->convs[0];
5147 if (conv->kind == ck_ref_bind)
5148 conv = conv->u.next;
5149 arg1 = convert_like (conv, arg1, complain);
5151 if (arg2)
5153 /* We need to call warn_logical_operator before
5154 converting arg2 to a boolean_type. */
5155 if (complain & tf_warning)
5156 warn_logical_operator (input_location, code, boolean_type_node,
5157 code_orig_arg1, arg1,
5158 code_orig_arg2, arg2);
5160 conv = cand->convs[1];
5161 if (conv->kind == ck_ref_bind)
5162 conv = conv->u.next;
5163 arg2 = convert_like (conv, arg2, complain);
5165 if (arg3)
5167 conv = cand->convs[2];
5168 if (conv->kind == ck_ref_bind)
5169 conv = conv->u.next;
5170 arg3 = convert_like (conv, arg3, complain);
5176 user_defined_result_ready:
5178 /* Free all the conversions we allocated. */
5179 obstack_free (&conversion_obstack, p);
5181 if (result || result_valid_p)
5182 return result;
5184 builtin:
5185 avoid_sign_compare_warnings (orig_arg1, arg1);
5186 avoid_sign_compare_warnings (orig_arg2, arg2);
5187 avoid_sign_compare_warnings (orig_arg3, arg3);
5189 switch (code)
5191 case MODIFY_EXPR:
5192 return cp_build_modify_expr (arg1, code2, arg2, complain);
5194 case INDIRECT_REF:
5195 return cp_build_indirect_ref (arg1, RO_UNARY_STAR, complain);
5197 case TRUTH_ANDIF_EXPR:
5198 case TRUTH_ORIF_EXPR:
5199 case TRUTH_AND_EXPR:
5200 case TRUTH_OR_EXPR:
5201 warn_logical_operator (input_location, code, boolean_type_node,
5202 code_orig_arg1, arg1, code_orig_arg2, arg2);
5203 /* Fall through. */
5204 case PLUS_EXPR:
5205 case MINUS_EXPR:
5206 case MULT_EXPR:
5207 case TRUNC_DIV_EXPR:
5208 case GT_EXPR:
5209 case LT_EXPR:
5210 case GE_EXPR:
5211 case LE_EXPR:
5212 case EQ_EXPR:
5213 case NE_EXPR:
5214 case MAX_EXPR:
5215 case MIN_EXPR:
5216 case LSHIFT_EXPR:
5217 case RSHIFT_EXPR:
5218 case TRUNC_MOD_EXPR:
5219 case BIT_AND_EXPR:
5220 case BIT_IOR_EXPR:
5221 case BIT_XOR_EXPR:
5222 return cp_build_binary_op (input_location, code, arg1, arg2, complain);
5224 case UNARY_PLUS_EXPR:
5225 case NEGATE_EXPR:
5226 case BIT_NOT_EXPR:
5227 case TRUTH_NOT_EXPR:
5228 case PREINCREMENT_EXPR:
5229 case POSTINCREMENT_EXPR:
5230 case PREDECREMENT_EXPR:
5231 case POSTDECREMENT_EXPR:
5232 case REALPART_EXPR:
5233 case IMAGPART_EXPR:
5234 case ABS_EXPR:
5235 return cp_build_unary_op (code, arg1, candidates != 0, complain);
5237 case ARRAY_REF:
5238 return cp_build_array_ref (input_location, arg1, arg2, complain);
5240 case MEMBER_REF:
5241 return build_m_component_ref (cp_build_indirect_ref (arg1, RO_NULL,
5242 complain),
5243 arg2);
5245 /* The caller will deal with these. */
5246 case ADDR_EXPR:
5247 case COMPONENT_REF:
5248 case COMPOUND_EXPR:
5249 return NULL_TREE;
5251 default:
5252 gcc_unreachable ();
5254 return NULL_TREE;
5257 /* Wrapper for above. */
5259 tree
5260 build_new_op (enum tree_code code, int flags, tree arg1, tree arg2, tree arg3,
5261 tree *overload, tsubst_flags_t complain)
5263 tree ret;
5264 bool subtime = timevar_cond_start (TV_OVERLOAD);
5265 ret = build_new_op_1 (code, flags, arg1, arg2, arg3, overload, complain);
5266 timevar_cond_stop (TV_OVERLOAD, subtime);
5267 return ret;
5270 /* Returns true iff T, an element of an OVERLOAD chain, is a usual
5271 deallocation function (3.7.4.2 [basic.stc.dynamic.deallocation]). */
5273 static bool
5274 non_placement_deallocation_fn_p (tree t)
5276 /* A template instance is never a usual deallocation function,
5277 regardless of its signature. */
5278 if (TREE_CODE (t) == TEMPLATE_DECL
5279 || primary_template_instantiation_p (t))
5280 return false;
5282 /* If a class T has a member deallocation function named operator delete
5283 with exactly one parameter, then that function is a usual
5284 (non-placement) deallocation function. If class T does not declare
5285 such an operator delete but does declare a member deallocation
5286 function named operator delete with exactly two parameters, the second
5287 of which has type std::size_t (18.2), then this function is a usual
5288 deallocation function. */
5289 t = FUNCTION_ARG_CHAIN (t);
5290 if (t == void_list_node
5291 || (t && same_type_p (TREE_VALUE (t), size_type_node)
5292 && TREE_CHAIN (t) == void_list_node))
5293 return true;
5294 return false;
5297 /* Build a call to operator delete. This has to be handled very specially,
5298 because the restrictions on what signatures match are different from all
5299 other call instances. For a normal delete, only a delete taking (void *)
5300 or (void *, size_t) is accepted. For a placement delete, only an exact
5301 match with the placement new is accepted.
5303 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
5304 ADDR is the pointer to be deleted.
5305 SIZE is the size of the memory block to be deleted.
5306 GLOBAL_P is true if the delete-expression should not consider
5307 class-specific delete operators.
5308 PLACEMENT is the corresponding placement new call, or NULL_TREE.
5310 If this call to "operator delete" is being generated as part to
5311 deallocate memory allocated via a new-expression (as per [expr.new]
5312 which requires that if the initialization throws an exception then
5313 we call a deallocation function), then ALLOC_FN is the allocation
5314 function. */
5316 tree
5317 build_op_delete_call (enum tree_code code, tree addr, tree size,
5318 bool global_p, tree placement,
5319 tree alloc_fn)
5321 tree fn = NULL_TREE;
5322 tree fns, fnname, type, t;
5324 if (addr == error_mark_node)
5325 return error_mark_node;
5327 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
5329 fnname = ansi_opname (code);
5331 if (CLASS_TYPE_P (type)
5332 && COMPLETE_TYPE_P (complete_type (type))
5333 && !global_p)
5334 /* In [class.free]
5336 If the result of the lookup is ambiguous or inaccessible, or if
5337 the lookup selects a placement deallocation function, the
5338 program is ill-formed.
5340 Therefore, we ask lookup_fnfields to complain about ambiguity. */
5342 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
5343 if (fns == error_mark_node)
5344 return error_mark_node;
5346 else
5347 fns = NULL_TREE;
5349 if (fns == NULL_TREE)
5350 fns = lookup_name_nonclass (fnname);
5352 /* Strip const and volatile from addr. */
5353 addr = cp_convert (ptr_type_node, addr);
5355 if (placement)
5357 /* "A declaration of a placement deallocation function matches the
5358 declaration of a placement allocation function if it has the same
5359 number of parameters and, after parameter transformations (8.3.5),
5360 all parameter types except the first are identical."
5362 So we build up the function type we want and ask instantiate_type
5363 to get it for us. */
5364 t = FUNCTION_ARG_CHAIN (alloc_fn);
5365 t = tree_cons (NULL_TREE, ptr_type_node, t);
5366 t = build_function_type (void_type_node, t);
5368 fn = instantiate_type (t, fns, tf_none);
5369 if (fn == error_mark_node)
5370 return NULL_TREE;
5372 if (BASELINK_P (fn))
5373 fn = BASELINK_FUNCTIONS (fn);
5375 /* "If the lookup finds the two-parameter form of a usual deallocation
5376 function (3.7.4.2) and that function, considered as a placement
5377 deallocation function, would have been selected as a match for the
5378 allocation function, the program is ill-formed." */
5379 if (non_placement_deallocation_fn_p (fn))
5381 /* But if the class has an operator delete (void *), then that is
5382 the usual deallocation function, so we shouldn't complain
5383 about using the operator delete (void *, size_t). */
5384 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5385 t; t = OVL_NEXT (t))
5387 tree elt = OVL_CURRENT (t);
5388 if (non_placement_deallocation_fn_p (elt)
5389 && FUNCTION_ARG_CHAIN (elt) == void_list_node)
5390 goto ok;
5392 permerror (0, "non-placement deallocation function %q+D", fn);
5393 permerror (input_location, "selected for placement delete");
5394 ok:;
5397 else
5398 /* "Any non-placement deallocation function matches a non-placement
5399 allocation function. If the lookup finds a single matching
5400 deallocation function, that function will be called; otherwise, no
5401 deallocation function will be called." */
5402 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5403 t; t = OVL_NEXT (t))
5405 tree elt = OVL_CURRENT (t);
5406 if (non_placement_deallocation_fn_p (elt))
5408 fn = elt;
5409 /* "If a class T has a member deallocation function named
5410 operator delete with exactly one parameter, then that
5411 function is a usual (non-placement) deallocation
5412 function. If class T does not declare such an operator
5413 delete but does declare a member deallocation function named
5414 operator delete with exactly two parameters, the second of
5415 which has type std::size_t (18.2), then this function is a
5416 usual deallocation function."
5418 So (void*) beats (void*, size_t). */
5419 if (FUNCTION_ARG_CHAIN (fn) == void_list_node)
5420 break;
5424 /* If we have a matching function, call it. */
5425 if (fn)
5427 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
5429 /* If the FN is a member function, make sure that it is
5430 accessible. */
5431 if (BASELINK_P (fns))
5432 perform_or_defer_access_check (BASELINK_BINFO (fns), fn, fn);
5434 /* Core issue 901: It's ok to new a type with deleted delete. */
5435 if (DECL_DELETED_FN (fn) && alloc_fn)
5436 return NULL_TREE;
5438 if (placement)
5440 /* The placement args might not be suitable for overload
5441 resolution at this point, so build the call directly. */
5442 int nargs = call_expr_nargs (placement);
5443 tree *argarray = XALLOCAVEC (tree, nargs);
5444 int i;
5445 argarray[0] = addr;
5446 for (i = 1; i < nargs; i++)
5447 argarray[i] = CALL_EXPR_ARG (placement, i);
5448 mark_used (fn);
5449 return build_cxx_call (fn, nargs, argarray);
5451 else
5453 tree ret;
5454 VEC(tree,gc) *args = VEC_alloc (tree, gc, 2);
5455 VEC_quick_push (tree, args, addr);
5456 if (FUNCTION_ARG_CHAIN (fn) != void_list_node)
5457 VEC_quick_push (tree, args, size);
5458 ret = cp_build_function_call_vec (fn, &args, tf_warning_or_error);
5459 VEC_free (tree, gc, args);
5460 return ret;
5464 /* [expr.new]
5466 If no unambiguous matching deallocation function can be found,
5467 propagating the exception does not cause the object's memory to
5468 be freed. */
5469 if (alloc_fn)
5471 if (!placement)
5472 warning (0, "no corresponding deallocation function for %qD",
5473 alloc_fn);
5474 return NULL_TREE;
5477 error ("no suitable %<operator %s%> for %qT",
5478 operator_name_info[(int)code].name, type);
5479 return error_mark_node;
5482 /* If the current scope isn't allowed to access DECL along
5483 BASETYPE_PATH, give an error. The most derived class in
5484 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
5485 the declaration to use in the error diagnostic. */
5487 bool
5488 enforce_access (tree basetype_path, tree decl, tree diag_decl)
5490 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
5492 if (!accessible_p (basetype_path, decl, true))
5494 if (TREE_PRIVATE (decl))
5495 error ("%q+#D is private", diag_decl);
5496 else if (TREE_PROTECTED (decl))
5497 error ("%q+#D is protected", diag_decl);
5498 else
5499 error ("%q+#D is inaccessible", diag_decl);
5500 error ("within this context");
5501 return false;
5504 return true;
5507 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
5508 bitwise or of LOOKUP_* values. If any errors are warnings are
5509 generated, set *DIAGNOSTIC_FN to "error" or "warning",
5510 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
5511 to NULL. */
5513 static tree
5514 build_temp (tree expr, tree type, int flags,
5515 diagnostic_t *diagnostic_kind, tsubst_flags_t complain)
5517 int savew, savee;
5518 VEC(tree,gc) *args;
5520 savew = warningcount, savee = errorcount;
5521 args = make_tree_vector_single (expr);
5522 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
5523 &args, type, flags, complain);
5524 release_tree_vector (args);
5525 if (warningcount > savew)
5526 *diagnostic_kind = DK_WARNING;
5527 else if (errorcount > savee)
5528 *diagnostic_kind = DK_ERROR;
5529 else
5530 *diagnostic_kind = DK_UNSPECIFIED;
5531 return expr;
5534 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
5535 EXPR is implicitly converted to type TOTYPE.
5536 FN and ARGNUM are used for diagnostics. */
5538 static void
5539 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
5541 /* Issue warnings about peculiar, but valid, uses of NULL. */
5542 if (expr == null_node && TREE_CODE (totype) != BOOLEAN_TYPE
5543 && ARITHMETIC_TYPE_P (totype))
5545 if (fn)
5546 warning_at (input_location, OPT_Wconversion_null,
5547 "passing NULL to non-pointer argument %P of %qD",
5548 argnum, fn);
5549 else
5550 warning_at (input_location, OPT_Wconversion_null,
5551 "converting to non-pointer type %qT from NULL", totype);
5554 /* Issue warnings if "false" is converted to a NULL pointer */
5555 else if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE
5556 && TYPE_PTR_P (totype))
5558 if (fn)
5559 warning_at (input_location, OPT_Wconversion_null,
5560 "converting %<false%> to pointer type for argument %P "
5561 "of %qD", argnum, fn);
5562 else
5563 warning_at (input_location, OPT_Wconversion_null,
5564 "converting %<false%> to pointer type %qT", totype);
5568 /* Perform the conversions in CONVS on the expression EXPR. FN and
5569 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
5570 indicates the `this' argument of a method. INNER is nonzero when
5571 being called to continue a conversion chain. It is negative when a
5572 reference binding will be applied, positive otherwise. If
5573 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
5574 conversions will be emitted if appropriate. If C_CAST_P is true,
5575 this conversion is coming from a C-style cast; in that case,
5576 conversions to inaccessible bases are permitted. */
5578 static tree
5579 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
5580 int inner, bool issue_conversion_warnings,
5581 bool c_cast_p, tsubst_flags_t complain)
5583 tree totype = convs->type;
5584 diagnostic_t diag_kind;
5585 int flags;
5587 if (convs->bad_p && !(complain & tf_error))
5588 return error_mark_node;
5590 if (convs->bad_p
5591 && convs->kind != ck_user
5592 && convs->kind != ck_list
5593 && convs->kind != ck_ambig
5594 && (convs->kind != ck_ref_bind
5595 || convs->user_conv_p)
5596 && convs->kind != ck_rvalue
5597 && convs->kind != ck_base)
5599 conversion *t = convs;
5601 /* Give a helpful error if this is bad because of excess braces. */
5602 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
5603 && SCALAR_TYPE_P (totype)
5604 && CONSTRUCTOR_NELTS (expr) > 0
5605 && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
5606 permerror (input_location, "too many braces around initializer for %qT", totype);
5608 for (; t; t = t->u.next)
5610 if (t->kind == ck_user && t->cand->reason)
5612 permerror (input_location, "invalid user-defined conversion "
5613 "from %qT to %qT", TREE_TYPE (expr), totype);
5614 print_z_candidate ("candidate is:", t->cand);
5615 expr = convert_like_real (t, expr, fn, argnum, 1,
5616 /*issue_conversion_warnings=*/false,
5617 /*c_cast_p=*/false,
5618 complain);
5619 if (convs->kind == ck_ref_bind)
5620 return convert_to_reference (totype, expr, CONV_IMPLICIT,
5621 LOOKUP_NORMAL, NULL_TREE);
5622 else
5623 return cp_convert (totype, expr);
5625 else if (t->kind == ck_user || !t->bad_p)
5627 expr = convert_like_real (t, expr, fn, argnum, 1,
5628 /*issue_conversion_warnings=*/false,
5629 /*c_cast_p=*/false,
5630 complain);
5631 break;
5633 else if (t->kind == ck_ambig)
5634 return convert_like_real (t, expr, fn, argnum, 1,
5635 /*issue_conversion_warnings=*/false,
5636 /*c_cast_p=*/false,
5637 complain);
5638 else if (t->kind == ck_identity)
5639 break;
5642 permerror (input_location, "invalid conversion from %qT to %qT",
5643 TREE_TYPE (expr), totype);
5644 if (fn)
5645 permerror (DECL_SOURCE_LOCATION (fn),
5646 " initializing argument %P of %qD", argnum, fn);
5648 return cp_convert (totype, expr);
5651 if (issue_conversion_warnings && (complain & tf_warning))
5652 conversion_null_warnings (totype, expr, fn, argnum);
5654 switch (convs->kind)
5656 case ck_user:
5658 struct z_candidate *cand = convs->cand;
5659 tree convfn = cand->fn;
5660 unsigned i;
5662 /* If we're initializing from {}, it's value-initialization. */
5663 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
5664 && CONSTRUCTOR_NELTS (expr) == 0
5665 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
5667 bool direct = CONSTRUCTOR_IS_DIRECT_INIT (expr);
5668 expr = build_value_init (totype, complain);
5669 expr = get_target_expr_sfinae (expr, complain);
5670 if (expr != error_mark_node)
5672 TARGET_EXPR_LIST_INIT_P (expr) = true;
5673 TARGET_EXPR_DIRECT_INIT_P (expr) = direct;
5675 return expr;
5678 expr = mark_rvalue_use (expr);
5680 /* When converting from an init list we consider explicit
5681 constructors, but actually trying to call one is an error. */
5682 if (DECL_NONCONVERTING_P (convfn) && DECL_CONSTRUCTOR_P (convfn)
5683 /* Unless this is for direct-list-initialization. */
5684 && !(BRACE_ENCLOSED_INITIALIZER_P (expr)
5685 && CONSTRUCTOR_IS_DIRECT_INIT (expr))
5686 /* Unless we're calling it for value-initialization from an
5687 empty list, since that is handled separately in 8.5.4. */
5688 && cand->num_convs > 0)
5690 error ("converting to %qT from initializer list would use "
5691 "explicit constructor %qD", totype, convfn);
5694 /* Set user_conv_p on the argument conversions, so rvalue/base
5695 handling knows not to allow any more UDCs. */
5696 for (i = 0; i < cand->num_convs; ++i)
5697 cand->convs[i]->user_conv_p = true;
5699 expr = build_over_call (cand, LOOKUP_NORMAL, complain);
5701 /* If this is a constructor or a function returning an aggr type,
5702 we need to build up a TARGET_EXPR. */
5703 if (DECL_CONSTRUCTOR_P (convfn))
5705 expr = build_cplus_new (totype, expr, complain);
5707 /* Remember that this was list-initialization. */
5708 if (convs->check_narrowing && expr != error_mark_node)
5709 TARGET_EXPR_LIST_INIT_P (expr) = true;
5712 return expr;
5714 case ck_identity:
5715 expr = mark_rvalue_use (expr);
5716 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
5718 int nelts = CONSTRUCTOR_NELTS (expr);
5719 if (nelts == 0)
5720 expr = build_value_init (totype, complain);
5721 else if (nelts == 1)
5722 expr = CONSTRUCTOR_ELT (expr, 0)->value;
5723 else
5724 gcc_unreachable ();
5727 if (type_unknown_p (expr))
5728 expr = instantiate_type (totype, expr, complain);
5729 /* Convert a constant to its underlying value, unless we are
5730 about to bind it to a reference, in which case we need to
5731 leave it as an lvalue. */
5732 if (inner >= 0)
5734 expr = decl_constant_value_safe (expr);
5735 if (expr == null_node && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype))
5736 /* If __null has been converted to an integer type, we do not
5737 want to warn about uses of EXPR as an integer, rather than
5738 as a pointer. */
5739 expr = build_int_cst (totype, 0);
5741 return expr;
5742 case ck_ambig:
5743 /* We leave bad_p off ck_ambig because overload resolution considers
5744 it valid, it just fails when we try to perform it. So we need to
5745 check complain here, too. */
5746 if (complain & tf_error)
5748 /* Call build_user_type_conversion again for the error. */
5749 build_user_type_conversion (totype, convs->u.expr, LOOKUP_NORMAL);
5750 if (fn)
5751 error (" initializing argument %P of %q+D", argnum, fn);
5753 return error_mark_node;
5755 case ck_list:
5757 /* Conversion to std::initializer_list<T>. */
5758 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
5759 tree new_ctor = build_constructor (init_list_type_node, NULL);
5760 unsigned len = CONSTRUCTOR_NELTS (expr);
5761 tree array, val, field;
5762 VEC(constructor_elt,gc) *vec = NULL;
5763 unsigned ix;
5765 /* Convert all the elements. */
5766 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
5768 tree sub = convert_like_real (convs->u.list[ix], val, fn, argnum,
5769 1, false, false, complain);
5770 if (sub == error_mark_node)
5771 return sub;
5772 if (!BRACE_ENCLOSED_INITIALIZER_P (val))
5773 check_narrowing (TREE_TYPE (sub), val);
5774 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor), NULL_TREE, sub);
5775 if (!TREE_CONSTANT (sub))
5776 TREE_CONSTANT (new_ctor) = false;
5778 /* Build up the array. */
5779 elttype = cp_build_qualified_type
5780 (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
5781 array = build_array_of_n_type (elttype, len);
5782 array = finish_compound_literal (array, new_ctor, complain);
5784 /* Build up the initializer_list object. */
5785 totype = complete_type (totype);
5786 field = next_initializable_field (TYPE_FIELDS (totype));
5787 CONSTRUCTOR_APPEND_ELT (vec, field, decay_conversion (array));
5788 field = next_initializable_field (DECL_CHAIN (field));
5789 CONSTRUCTOR_APPEND_ELT (vec, field, size_int (len));
5790 new_ctor = build_constructor (totype, vec);
5791 return get_target_expr (new_ctor);
5794 case ck_aggr:
5795 if (TREE_CODE (totype) == COMPLEX_TYPE)
5797 tree real = CONSTRUCTOR_ELT (expr, 0)->value;
5798 tree imag = CONSTRUCTOR_ELT (expr, 1)->value;
5799 real = perform_implicit_conversion (TREE_TYPE (totype),
5800 real, complain);
5801 imag = perform_implicit_conversion (TREE_TYPE (totype),
5802 imag, complain);
5803 expr = build2 (COMPLEX_EXPR, totype, real, imag);
5804 return fold_if_not_in_template (expr);
5806 return get_target_expr (digest_init (totype, expr, complain));
5808 default:
5809 break;
5812 expr = convert_like_real (convs->u.next, expr, fn, argnum,
5813 convs->kind == ck_ref_bind ? -1 : 1,
5814 convs->kind == ck_ref_bind ? issue_conversion_warnings : false,
5815 c_cast_p,
5816 complain);
5817 if (expr == error_mark_node)
5818 return error_mark_node;
5820 switch (convs->kind)
5822 case ck_rvalue:
5823 expr = decay_conversion (expr);
5824 if (! MAYBE_CLASS_TYPE_P (totype))
5825 return expr;
5826 /* Else fall through. */
5827 case ck_base:
5828 if (convs->kind == ck_base && !convs->need_temporary_p)
5830 /* We are going to bind a reference directly to a base-class
5831 subobject of EXPR. */
5832 /* Build an expression for `*((base*) &expr)'. */
5833 expr = cp_build_addr_expr (expr, complain);
5834 expr = convert_to_base (expr, build_pointer_type (totype),
5835 !c_cast_p, /*nonnull=*/true, complain);
5836 expr = cp_build_indirect_ref (expr, RO_IMPLICIT_CONVERSION, complain);
5837 return expr;
5840 /* Copy-initialization where the cv-unqualified version of the source
5841 type is the same class as, or a derived class of, the class of the
5842 destination [is treated as direct-initialization]. [dcl.init] */
5843 flags = LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING;
5844 if (convs->user_conv_p)
5845 /* This conversion is being done in the context of a user-defined
5846 conversion (i.e. the second step of copy-initialization), so
5847 don't allow any more. */
5848 flags |= LOOKUP_NO_CONVERSION;
5849 if (convs->rvaluedness_matches_p)
5850 flags |= LOOKUP_PREFER_RVALUE;
5851 if (TREE_CODE (expr) == TARGET_EXPR
5852 && TARGET_EXPR_LIST_INIT_P (expr))
5853 /* Copy-list-initialization doesn't actually involve a copy. */
5854 return expr;
5855 expr = build_temp (expr, totype, flags, &diag_kind, complain);
5856 if (diag_kind && fn && complain)
5857 emit_diagnostic (diag_kind, DECL_SOURCE_LOCATION (fn), 0,
5858 " initializing argument %P of %qD", argnum, fn);
5859 return build_cplus_new (totype, expr, complain);
5861 case ck_ref_bind:
5863 tree ref_type = totype;
5865 if (convs->bad_p && !convs->u.next->bad_p)
5867 gcc_assert (TYPE_REF_IS_RVALUE (ref_type)
5868 && real_lvalue_p (expr));
5870 error ("cannot bind %qT lvalue to %qT",
5871 TREE_TYPE (expr), totype);
5872 if (fn)
5873 error (" initializing argument %P of %q+D", argnum, fn);
5874 return error_mark_node;
5877 /* If necessary, create a temporary.
5879 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
5880 that need temporaries, even when their types are reference
5881 compatible with the type of reference being bound, so the
5882 upcoming call to cp_build_addr_expr doesn't fail. */
5883 if (convs->need_temporary_p
5884 || TREE_CODE (expr) == CONSTRUCTOR
5885 || TREE_CODE (expr) == VA_ARG_EXPR)
5887 /* Otherwise, a temporary of type "cv1 T1" is created and
5888 initialized from the initializer expression using the rules
5889 for a non-reference copy-initialization (8.5). */
5891 tree type = TREE_TYPE (ref_type);
5892 cp_lvalue_kind lvalue = real_lvalue_p (expr);
5894 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5895 (type, convs->u.next->type));
5896 if (!CP_TYPE_CONST_NON_VOLATILE_P (type)
5897 && !TYPE_REF_IS_RVALUE (ref_type))
5899 /* If the reference is volatile or non-const, we
5900 cannot create a temporary. */
5901 if (lvalue & clk_bitfield)
5902 error ("cannot bind bitfield %qE to %qT",
5903 expr, ref_type);
5904 else if (lvalue & clk_packed)
5905 error ("cannot bind packed field %qE to %qT",
5906 expr, ref_type);
5907 else
5908 error ("cannot bind rvalue %qE to %qT", expr, ref_type);
5909 return error_mark_node;
5911 /* If the source is a packed field, and we must use a copy
5912 constructor, then building the target expr will require
5913 binding the field to the reference parameter to the
5914 copy constructor, and we'll end up with an infinite
5915 loop. If we can use a bitwise copy, then we'll be
5916 OK. */
5917 if ((lvalue & clk_packed)
5918 && CLASS_TYPE_P (type)
5919 && type_has_nontrivial_copy_init (type))
5921 error ("cannot bind packed field %qE to %qT",
5922 expr, ref_type);
5923 return error_mark_node;
5925 if (lvalue & clk_bitfield)
5927 expr = convert_bitfield_to_declared_type (expr);
5928 expr = fold_convert (type, expr);
5930 expr = build_target_expr_with_type (expr, type, complain);
5933 /* Take the address of the thing to which we will bind the
5934 reference. */
5935 expr = cp_build_addr_expr (expr, complain);
5936 if (expr == error_mark_node)
5937 return error_mark_node;
5939 /* Convert it to a pointer to the type referred to by the
5940 reference. This will adjust the pointer if a derived to
5941 base conversion is being performed. */
5942 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
5943 expr);
5944 /* Convert the pointer to the desired reference type. */
5945 return build_nop (ref_type, expr);
5948 case ck_lvalue:
5949 return decay_conversion (expr);
5951 case ck_qual:
5952 /* Warn about deprecated conversion if appropriate. */
5953 string_conv_p (totype, expr, 1);
5954 break;
5956 case ck_ptr:
5957 if (convs->base_p)
5958 expr = convert_to_base (expr, totype, !c_cast_p,
5959 /*nonnull=*/false, complain);
5960 return build_nop (totype, expr);
5962 case ck_pmem:
5963 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
5964 c_cast_p, complain);
5966 default:
5967 break;
5970 if (convs->check_narrowing)
5971 check_narrowing (totype, expr);
5973 if (issue_conversion_warnings && (complain & tf_warning))
5974 expr = convert_and_check (totype, expr);
5975 else
5976 expr = convert (totype, expr);
5978 return expr;
5981 /* ARG is being passed to a varargs function. Perform any conversions
5982 required. Return the converted value. */
5984 tree
5985 convert_arg_to_ellipsis (tree arg)
5987 tree arg_type;
5989 /* [expr.call]
5991 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
5992 standard conversions are performed. */
5993 arg = decay_conversion (arg);
5994 arg_type = TREE_TYPE (arg);
5995 /* [expr.call]
5997 If the argument has integral or enumeration type that is subject
5998 to the integral promotions (_conv.prom_), or a floating point
5999 type that is subject to the floating point promotion
6000 (_conv.fpprom_), the value of the argument is converted to the
6001 promoted type before the call. */
6002 if (TREE_CODE (arg_type) == REAL_TYPE
6003 && (TYPE_PRECISION (arg_type)
6004 < TYPE_PRECISION (double_type_node))
6005 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type)))
6007 if (warn_double_promotion && !c_inhibit_evaluation_warnings)
6008 warning (OPT_Wdouble_promotion,
6009 "implicit conversion from %qT to %qT when passing "
6010 "argument to function",
6011 arg_type, double_type_node);
6012 arg = convert_to_real (double_type_node, arg);
6014 else if (NULLPTR_TYPE_P (arg_type))
6015 arg = null_pointer_node;
6016 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type))
6018 if (SCOPED_ENUM_P (arg_type) && !abi_version_at_least (6))
6020 warning (OPT_Wabi, "scoped enum %qT will not promote to an "
6021 "integral type in a future version of GCC", arg_type);
6022 arg = cp_convert (ENUM_UNDERLYING_TYPE (arg_type), arg);
6024 arg = perform_integral_promotions (arg);
6027 arg = require_complete_type (arg);
6028 arg_type = TREE_TYPE (arg);
6030 if (arg != error_mark_node
6031 /* In a template (or ill-formed code), we can have an incomplete type
6032 even after require_complete_type, in which case we don't know
6033 whether it has trivial copy or not. */
6034 && COMPLETE_TYPE_P (arg_type))
6036 /* Build up a real lvalue-to-rvalue conversion in case the
6037 copy constructor is trivial but not callable. */
6038 if (!cp_unevaluated_operand && CLASS_TYPE_P (arg_type))
6039 force_rvalue (arg, tf_warning_or_error);
6041 /* [expr.call] 5.2.2/7:
6042 Passing a potentially-evaluated argument of class type (Clause 9)
6043 with a non-trivial copy constructor or a non-trivial destructor
6044 with no corresponding parameter is conditionally-supported, with
6045 implementation-defined semantics.
6047 We used to just warn here and do a bitwise copy, but now
6048 cp_expr_size will abort if we try to do that.
6050 If the call appears in the context of a sizeof expression,
6051 it is not potentially-evaluated. */
6052 if (cp_unevaluated_operand == 0
6053 && (type_has_nontrivial_copy_init (arg_type)
6054 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type)))
6055 error ("cannot pass objects of non-trivially-copyable "
6056 "type %q#T through %<...%>", arg_type);
6059 return arg;
6062 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
6064 tree
6065 build_x_va_arg (tree expr, tree type)
6067 if (processing_template_decl)
6068 return build_min (VA_ARG_EXPR, type, expr);
6070 type = complete_type_or_else (type, NULL_TREE);
6072 if (expr == error_mark_node || !type)
6073 return error_mark_node;
6075 expr = mark_lvalue_use (expr);
6077 if (type_has_nontrivial_copy_init (type)
6078 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
6079 || TREE_CODE (type) == REFERENCE_TYPE)
6081 /* Remove reference types so we don't ICE later on. */
6082 tree type1 = non_reference (type);
6083 /* conditionally-supported behavior [expr.call] 5.2.2/7. */
6084 error ("cannot receive objects of non-trivially-copyable type %q#T "
6085 "through %<...%>; ", type);
6086 expr = convert (build_pointer_type (type1), null_node);
6087 expr = cp_build_indirect_ref (expr, RO_NULL, tf_warning_or_error);
6088 return expr;
6091 return build_va_arg (input_location, expr, type);
6094 /* TYPE has been given to va_arg. Apply the default conversions which
6095 would have happened when passed via ellipsis. Return the promoted
6096 type, or the passed type if there is no change. */
6098 tree
6099 cxx_type_promotes_to (tree type)
6101 tree promote;
6103 /* Perform the array-to-pointer and function-to-pointer
6104 conversions. */
6105 type = type_decays_to (type);
6107 promote = type_promotes_to (type);
6108 if (same_type_p (type, promote))
6109 promote = type;
6111 return promote;
6114 /* ARG is a default argument expression being passed to a parameter of
6115 the indicated TYPE, which is a parameter to FN. PARMNUM is the
6116 zero-based argument number. Do any required conversions. Return
6117 the converted value. */
6119 static GTY(()) VEC(tree,gc) *default_arg_context;
6120 void
6121 push_defarg_context (tree fn)
6122 { VEC_safe_push (tree, gc, default_arg_context, fn); }
6123 void
6124 pop_defarg_context (void)
6125 { VEC_pop (tree, default_arg_context); }
6127 tree
6128 convert_default_arg (tree type, tree arg, tree fn, int parmnum)
6130 int i;
6131 tree t;
6133 /* See through clones. */
6134 fn = DECL_ORIGIN (fn);
6136 /* Detect recursion. */
6137 FOR_EACH_VEC_ELT (tree, default_arg_context, i, t)
6138 if (t == fn)
6140 error ("recursive evaluation of default argument for %q#D", fn);
6141 return error_mark_node;
6144 /* If the ARG is an unparsed default argument expression, the
6145 conversion cannot be performed. */
6146 if (TREE_CODE (arg) == DEFAULT_ARG)
6148 error ("call to %qD uses the default argument for parameter %P, which "
6149 "is not yet defined", fn, parmnum);
6150 return error_mark_node;
6153 push_defarg_context (fn);
6155 if (fn && DECL_TEMPLATE_INFO (fn))
6156 arg = tsubst_default_argument (fn, type, arg);
6158 /* Due to:
6160 [dcl.fct.default]
6162 The names in the expression are bound, and the semantic
6163 constraints are checked, at the point where the default
6164 expressions appears.
6166 we must not perform access checks here. */
6167 push_deferring_access_checks (dk_no_check);
6168 /* We must make a copy of ARG, in case subsequent processing
6169 alters any part of it. */
6170 arg = break_out_target_exprs (arg);
6171 if (TREE_CODE (arg) == CONSTRUCTOR)
6173 arg = digest_init (type, arg, tf_warning_or_error);
6174 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
6175 ICR_DEFAULT_ARGUMENT, fn, parmnum,
6176 tf_warning_or_error);
6178 else
6180 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
6181 ICR_DEFAULT_ARGUMENT, fn, parmnum,
6182 tf_warning_or_error);
6183 arg = convert_for_arg_passing (type, arg);
6185 pop_deferring_access_checks();
6187 pop_defarg_context ();
6189 return arg;
6192 /* Returns the type which will really be used for passing an argument of
6193 type TYPE. */
6195 tree
6196 type_passed_as (tree type)
6198 /* Pass classes with copy ctors by invisible reference. */
6199 if (TREE_ADDRESSABLE (type))
6201 type = build_reference_type (type);
6202 /* There are no other pointers to this temporary. */
6203 type = cp_build_qualified_type (type, TYPE_QUAL_RESTRICT);
6205 else if (targetm.calls.promote_prototypes (type)
6206 && INTEGRAL_TYPE_P (type)
6207 && COMPLETE_TYPE_P (type)
6208 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
6209 TYPE_SIZE (integer_type_node)))
6210 type = integer_type_node;
6212 return type;
6215 /* Actually perform the appropriate conversion. */
6217 tree
6218 convert_for_arg_passing (tree type, tree val)
6220 tree bitfield_type;
6222 /* If VAL is a bitfield, then -- since it has already been converted
6223 to TYPE -- it cannot have a precision greater than TYPE.
6225 If it has a smaller precision, we must widen it here. For
6226 example, passing "int f:3;" to a function expecting an "int" will
6227 not result in any conversion before this point.
6229 If the precision is the same we must not risk widening. For
6230 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
6231 often have type "int", even though the C++ type for the field is
6232 "long long". If the value is being passed to a function
6233 expecting an "int", then no conversions will be required. But,
6234 if we call convert_bitfield_to_declared_type, the bitfield will
6235 be converted to "long long". */
6236 bitfield_type = is_bitfield_expr_with_lowered_type (val);
6237 if (bitfield_type
6238 && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
6239 val = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type), val);
6241 if (val == error_mark_node)
6243 /* Pass classes with copy ctors by invisible reference. */
6244 else if (TREE_ADDRESSABLE (type))
6245 val = build1 (ADDR_EXPR, build_reference_type (type), val);
6246 else if (targetm.calls.promote_prototypes (type)
6247 && INTEGRAL_TYPE_P (type)
6248 && COMPLETE_TYPE_P (type)
6249 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
6250 TYPE_SIZE (integer_type_node)))
6251 val = perform_integral_promotions (val);
6252 if (warn_missing_format_attribute)
6254 tree rhstype = TREE_TYPE (val);
6255 const enum tree_code coder = TREE_CODE (rhstype);
6256 const enum tree_code codel = TREE_CODE (type);
6257 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
6258 && coder == codel
6259 && check_missing_format_attribute (type, rhstype))
6260 warning (OPT_Wmissing_format_attribute,
6261 "argument of function call might be a candidate for a format attribute");
6263 return val;
6266 /* Returns true iff FN is a function with magic varargs, i.e. ones for
6267 which no conversions at all should be done. This is true for some
6268 builtins which don't act like normal functions. */
6270 static bool
6271 magic_varargs_p (tree fn)
6273 if (DECL_BUILT_IN (fn))
6274 switch (DECL_FUNCTION_CODE (fn))
6276 case BUILT_IN_CLASSIFY_TYPE:
6277 case BUILT_IN_CONSTANT_P:
6278 case BUILT_IN_NEXT_ARG:
6279 case BUILT_IN_VA_START:
6280 return true;
6282 default:;
6283 return lookup_attribute ("type generic",
6284 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
6287 return false;
6290 /* Subroutine of the various build_*_call functions. Overload resolution
6291 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
6292 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
6293 bitmask of various LOOKUP_* flags which apply to the call itself. */
6295 static tree
6296 build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
6298 tree fn = cand->fn;
6299 const VEC(tree,gc) *args = cand->args;
6300 tree first_arg = cand->first_arg;
6301 conversion **convs = cand->convs;
6302 conversion *conv;
6303 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
6304 int parmlen;
6305 tree val;
6306 int i = 0;
6307 int j = 0;
6308 unsigned int arg_index = 0;
6309 int is_method = 0;
6310 int nargs;
6311 tree *argarray;
6312 bool already_used = false;
6314 /* In a template, there is no need to perform all of the work that
6315 is normally done. We are only interested in the type of the call
6316 expression, i.e., the return type of the function. Any semantic
6317 errors will be deferred until the template is instantiated. */
6318 if (processing_template_decl)
6320 tree expr;
6321 tree return_type;
6322 const tree *argarray;
6323 unsigned int nargs;
6325 return_type = TREE_TYPE (TREE_TYPE (fn));
6326 nargs = VEC_length (tree, args);
6327 if (first_arg == NULL_TREE)
6328 argarray = VEC_address (tree, CONST_CAST (VEC(tree,gc) *, args));
6329 else
6331 tree *alcarray;
6332 unsigned int ix;
6333 tree arg;
6335 ++nargs;
6336 alcarray = XALLOCAVEC (tree, nargs);
6337 alcarray[0] = first_arg;
6338 FOR_EACH_VEC_ELT (tree, args, ix, arg)
6339 alcarray[ix + 1] = arg;
6340 argarray = alcarray;
6342 expr = build_call_array_loc (input_location,
6343 return_type, build_addr_func (fn), nargs,
6344 argarray);
6345 if (TREE_THIS_VOLATILE (fn) && cfun)
6346 current_function_returns_abnormally = 1;
6347 return convert_from_reference (expr);
6350 /* Give any warnings we noticed during overload resolution. */
6351 if (cand->warnings && (complain & tf_warning))
6353 struct candidate_warning *w;
6354 for (w = cand->warnings; w; w = w->next)
6355 joust (cand, w->loser, 1);
6358 /* Make =delete work with SFINAE. */
6359 if (DECL_DELETED_FN (fn) && !(complain & tf_error))
6360 return error_mark_node;
6362 if (DECL_FUNCTION_MEMBER_P (fn))
6364 tree access_fn;
6365 /* If FN is a template function, two cases must be considered.
6366 For example:
6368 struct A {
6369 protected:
6370 template <class T> void f();
6372 template <class T> struct B {
6373 protected:
6374 void g();
6376 struct C : A, B<int> {
6377 using A::f; // #1
6378 using B<int>::g; // #2
6381 In case #1 where `A::f' is a member template, DECL_ACCESS is
6382 recorded in the primary template but not in its specialization.
6383 We check access of FN using its primary template.
6385 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
6386 because it is a member of class template B, DECL_ACCESS is
6387 recorded in the specialization `B<int>::g'. We cannot use its
6388 primary template because `B<T>::g' and `B<int>::g' may have
6389 different access. */
6390 if (DECL_TEMPLATE_INFO (fn)
6391 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
6392 access_fn = DECL_TI_TEMPLATE (fn);
6393 else
6394 access_fn = fn;
6395 if (flags & LOOKUP_SPECULATIVE)
6397 if (!speculative_access_check (cand->access_path, access_fn, fn,
6398 !!(flags & LOOKUP_COMPLAIN)))
6399 return error_mark_node;
6401 else
6402 perform_or_defer_access_check (cand->access_path, access_fn, fn);
6405 /* If we're checking for implicit delete, don't bother with argument
6406 conversions. */
6407 if (flags & LOOKUP_SPECULATIVE)
6409 if (DECL_DELETED_FN (fn))
6411 if (flags & LOOKUP_COMPLAIN)
6412 mark_used (fn);
6413 return error_mark_node;
6415 if (cand->viable == 1)
6416 return fn;
6417 else if (!(flags & LOOKUP_COMPLAIN))
6418 /* Reject bad conversions now. */
6419 return error_mark_node;
6420 /* else continue to get conversion error. */
6423 /* Find maximum size of vector to hold converted arguments. */
6424 parmlen = list_length (parm);
6425 nargs = VEC_length (tree, args) + (first_arg != NULL_TREE ? 1 : 0);
6426 if (parmlen > nargs)
6427 nargs = parmlen;
6428 argarray = XALLOCAVEC (tree, nargs);
6430 /* The implicit parameters to a constructor are not considered by overload
6431 resolution, and must be of the proper type. */
6432 if (DECL_CONSTRUCTOR_P (fn))
6434 if (first_arg != NULL_TREE)
6436 argarray[j++] = first_arg;
6437 first_arg = NULL_TREE;
6439 else
6441 argarray[j++] = VEC_index (tree, args, arg_index);
6442 ++arg_index;
6444 parm = TREE_CHAIN (parm);
6445 /* We should never try to call the abstract constructor. */
6446 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
6448 if (DECL_HAS_VTT_PARM_P (fn))
6450 argarray[j++] = VEC_index (tree, args, arg_index);
6451 ++arg_index;
6452 parm = TREE_CHAIN (parm);
6455 /* Bypass access control for 'this' parameter. */
6456 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
6458 tree parmtype = TREE_VALUE (parm);
6459 tree arg = (first_arg != NULL_TREE
6460 ? first_arg
6461 : VEC_index (tree, args, arg_index));
6462 tree argtype = TREE_TYPE (arg);
6463 tree converted_arg;
6464 tree base_binfo;
6466 if (convs[i]->bad_p)
6468 if (complain & tf_error)
6469 permerror (input_location, "passing %qT as %<this%> argument of %q#D discards qualifiers",
6470 TREE_TYPE (argtype), fn);
6471 else
6472 return error_mark_node;
6475 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
6476 X is called for an object that is not of type X, or of a type
6477 derived from X, the behavior is undefined.
6479 So we can assume that anything passed as 'this' is non-null, and
6480 optimize accordingly. */
6481 gcc_assert (TREE_CODE (parmtype) == POINTER_TYPE);
6482 /* Convert to the base in which the function was declared. */
6483 gcc_assert (cand->conversion_path != NULL_TREE);
6484 converted_arg = build_base_path (PLUS_EXPR,
6485 arg,
6486 cand->conversion_path,
6487 1, complain);
6488 /* Check that the base class is accessible. */
6489 if (!accessible_base_p (TREE_TYPE (argtype),
6490 BINFO_TYPE (cand->conversion_path), true))
6491 error ("%qT is not an accessible base of %qT",
6492 BINFO_TYPE (cand->conversion_path),
6493 TREE_TYPE (argtype));
6494 /* If fn was found by a using declaration, the conversion path
6495 will be to the derived class, not the base declaring fn. We
6496 must convert from derived to base. */
6497 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
6498 TREE_TYPE (parmtype), ba_unique, NULL);
6499 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
6500 base_binfo, 1, complain);
6502 argarray[j++] = converted_arg;
6503 parm = TREE_CHAIN (parm);
6504 if (first_arg != NULL_TREE)
6505 first_arg = NULL_TREE;
6506 else
6507 ++arg_index;
6508 ++i;
6509 is_method = 1;
6512 gcc_assert (first_arg == NULL_TREE);
6513 for (; arg_index < VEC_length (tree, args) && parm;
6514 parm = TREE_CHAIN (parm), ++arg_index, ++i)
6516 tree type = TREE_VALUE (parm);
6517 tree arg = VEC_index (tree, args, arg_index);
6518 bool conversion_warning = true;
6520 conv = convs[i];
6522 /* If the argument is NULL and used to (implicitly) instantiate a
6523 template function (and bind one of the template arguments to
6524 the type of 'long int'), we don't want to warn about passing NULL
6525 to non-pointer argument.
6526 For example, if we have this template function:
6528 template<typename T> void func(T x) {}
6530 we want to warn (when -Wconversion is enabled) in this case:
6532 void foo() {
6533 func<int>(NULL);
6536 but not in this case:
6538 void foo() {
6539 func(NULL);
6542 if (arg == null_node
6543 && DECL_TEMPLATE_INFO (fn)
6544 && cand->template_decl
6545 && !(flags & LOOKUP_EXPLICIT_TMPL_ARGS))
6546 conversion_warning = false;
6548 /* Warn about initializer_list deduction that isn't currently in the
6549 working draft. */
6550 if (cxx_dialect > cxx98
6551 && flag_deduce_init_list
6552 && cand->template_decl
6553 && is_std_init_list (non_reference (type))
6554 && BRACE_ENCLOSED_INITIALIZER_P (arg))
6556 tree tmpl = TI_TEMPLATE (cand->template_decl);
6557 tree realparm = chain_index (j, DECL_ARGUMENTS (cand->fn));
6558 tree patparm = get_pattern_parm (realparm, tmpl);
6559 tree pattype = TREE_TYPE (patparm);
6560 if (PACK_EXPANSION_P (pattype))
6561 pattype = PACK_EXPANSION_PATTERN (pattype);
6562 pattype = non_reference (pattype);
6564 if (TREE_CODE (pattype) == TEMPLATE_TYPE_PARM
6565 && (cand->explicit_targs == NULL_TREE
6566 || (TREE_VEC_LENGTH (cand->explicit_targs)
6567 <= TEMPLATE_TYPE_IDX (pattype))))
6569 pedwarn (input_location, 0, "deducing %qT as %qT",
6570 non_reference (TREE_TYPE (patparm)),
6571 non_reference (type));
6572 pedwarn (input_location, 0, " in call to %q+D", cand->fn);
6573 pedwarn (input_location, 0,
6574 " (you can disable this with -fno-deduce-init-list)");
6578 val = convert_like_with_context (conv, arg, fn, i-is_method,
6579 conversion_warning
6580 ? complain
6581 : complain & (~tf_warning));
6583 val = convert_for_arg_passing (type, val);
6584 if (val == error_mark_node)
6585 return error_mark_node;
6586 else
6587 argarray[j++] = val;
6590 /* Default arguments */
6591 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
6592 argarray[j++] = convert_default_arg (TREE_VALUE (parm),
6593 TREE_PURPOSE (parm),
6594 fn, i - is_method);
6595 /* Ellipsis */
6596 for (; arg_index < VEC_length (tree, args); ++arg_index)
6598 tree a = VEC_index (tree, args, arg_index);
6599 if (magic_varargs_p (fn))
6600 /* Do no conversions for magic varargs. */
6601 a = mark_type_use (a);
6602 else
6603 a = convert_arg_to_ellipsis (a);
6604 argarray[j++] = a;
6607 gcc_assert (j <= nargs);
6608 nargs = j;
6610 check_function_arguments (TREE_TYPE (fn), nargs, argarray);
6612 /* Avoid actually calling copy constructors and copy assignment operators,
6613 if possible. */
6615 if (! flag_elide_constructors)
6616 /* Do things the hard way. */;
6617 else if (cand->num_convs == 1
6618 && (DECL_COPY_CONSTRUCTOR_P (fn)
6619 || DECL_MOVE_CONSTRUCTOR_P (fn)))
6621 tree targ;
6622 tree arg = argarray[num_artificial_parms_for (fn)];
6623 tree fa;
6624 bool trivial = trivial_fn_p (fn);
6626 /* Pull out the real argument, disregarding const-correctness. */
6627 targ = arg;
6628 while (CONVERT_EXPR_P (targ)
6629 || TREE_CODE (targ) == NON_LVALUE_EXPR)
6630 targ = TREE_OPERAND (targ, 0);
6631 if (TREE_CODE (targ) == ADDR_EXPR)
6633 targ = TREE_OPERAND (targ, 0);
6634 if (!same_type_ignoring_top_level_qualifiers_p
6635 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
6636 targ = NULL_TREE;
6638 else
6639 targ = NULL_TREE;
6641 if (targ)
6642 arg = targ;
6643 else
6644 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
6646 /* [class.copy]: the copy constructor is implicitly defined even if
6647 the implementation elided its use. */
6648 if (!trivial || DECL_DELETED_FN (fn))
6650 mark_used (fn);
6651 already_used = true;
6654 /* If we're creating a temp and we already have one, don't create a
6655 new one. If we're not creating a temp but we get one, use
6656 INIT_EXPR to collapse the temp into our target. Otherwise, if the
6657 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
6658 temp or an INIT_EXPR otherwise. */
6659 fa = argarray[0];
6660 if (integer_zerop (fa))
6662 if (TREE_CODE (arg) == TARGET_EXPR)
6663 return arg;
6664 else if (trivial)
6665 return force_target_expr (DECL_CONTEXT (fn), arg, complain);
6667 else if (TREE_CODE (arg) == TARGET_EXPR || trivial)
6669 tree to = stabilize_reference (cp_build_indirect_ref (fa, RO_NULL,
6670 complain));
6672 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
6673 return val;
6676 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
6677 && trivial_fn_p (fn)
6678 && !DECL_DELETED_FN (fn))
6680 tree to = stabilize_reference
6681 (cp_build_indirect_ref (argarray[0], RO_NULL, complain));
6682 tree type = TREE_TYPE (to);
6683 tree as_base = CLASSTYPE_AS_BASE (type);
6684 tree arg = argarray[1];
6686 if (is_really_empty_class (type))
6688 /* Avoid copying empty classes. */
6689 val = build2 (COMPOUND_EXPR, void_type_node, to, arg);
6690 TREE_NO_WARNING (val) = 1;
6691 val = build2 (COMPOUND_EXPR, type, val, to);
6692 TREE_NO_WARNING (val) = 1;
6694 else if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
6696 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
6697 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
6699 else
6701 /* We must only copy the non-tail padding parts. */
6702 tree arg0, arg2, t;
6703 tree array_type, alias_set;
6705 arg2 = TYPE_SIZE_UNIT (as_base);
6706 arg0 = cp_build_addr_expr (to, complain);
6708 array_type = build_array_type (char_type_node,
6709 build_index_type
6710 (size_binop (MINUS_EXPR,
6711 arg2, size_int (1))));
6712 alias_set = build_int_cst (build_pointer_type (type), 0);
6713 t = build2 (MODIFY_EXPR, void_type_node,
6714 build2 (MEM_REF, array_type, arg0, alias_set),
6715 build2 (MEM_REF, array_type, arg, alias_set));
6716 val = build2 (COMPOUND_EXPR, TREE_TYPE (to), t, to);
6717 TREE_NO_WARNING (val) = 1;
6720 return val;
6722 else if (DECL_DESTRUCTOR_P (fn)
6723 && trivial_fn_p (fn)
6724 && !DECL_DELETED_FN (fn))
6725 return fold_convert (void_type_node, argarray[0]);
6726 /* FIXME handle trivial default constructor, too. */
6728 if (!already_used)
6729 mark_used (fn);
6731 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
6733 tree t;
6734 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
6735 DECL_CONTEXT (fn),
6736 ba_any, NULL);
6737 gcc_assert (binfo && binfo != error_mark_node);
6739 /* Warn about deprecated virtual functions now, since we're about
6740 to throw away the decl. */
6741 if (TREE_DEPRECATED (fn))
6742 warn_deprecated_use (fn, NULL_TREE);
6744 argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1,
6745 complain);
6746 if (TREE_SIDE_EFFECTS (argarray[0]))
6747 argarray[0] = save_expr (argarray[0]);
6748 t = build_pointer_type (TREE_TYPE (fn));
6749 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
6750 fn = build_java_interface_fn_ref (fn, argarray[0]);
6751 else
6752 fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
6753 TREE_TYPE (fn) = t;
6755 else
6756 fn = build_addr_func (fn);
6758 return build_cxx_call (fn, nargs, argarray);
6761 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
6762 This function performs no overload resolution, conversion, or other
6763 high-level operations. */
6765 tree
6766 build_cxx_call (tree fn, int nargs, tree *argarray)
6768 tree fndecl;
6770 /* Remember roughly where this call is. */
6771 location_t loc = EXPR_LOC_OR_HERE (fn);
6772 fn = build_call_a (fn, nargs, argarray);
6773 SET_EXPR_LOCATION (fn, loc);
6775 fndecl = get_callee_fndecl (fn);
6777 /* Check that arguments to builtin functions match the expectations. */
6778 if (fndecl
6779 && DECL_BUILT_IN (fndecl)
6780 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
6781 && !check_builtin_function_arguments (fndecl, nargs, argarray))
6782 return error_mark_node;
6784 /* Some built-in function calls will be evaluated at compile-time in
6785 fold (). */
6786 fn = fold_if_not_in_template (fn);
6788 if (VOID_TYPE_P (TREE_TYPE (fn)))
6789 return fn;
6791 fn = require_complete_type (fn);
6792 if (fn == error_mark_node)
6793 return error_mark_node;
6795 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
6796 fn = build_cplus_new (TREE_TYPE (fn), fn, tf_warning_or_error);
6797 return convert_from_reference (fn);
6800 static GTY(()) tree java_iface_lookup_fn;
6802 /* Make an expression which yields the address of the Java interface
6803 method FN. This is achieved by generating a call to libjava's
6804 _Jv_LookupInterfaceMethodIdx(). */
6806 static tree
6807 build_java_interface_fn_ref (tree fn, tree instance)
6809 tree lookup_fn, method, idx;
6810 tree klass_ref, iface, iface_ref;
6811 int i;
6813 if (!java_iface_lookup_fn)
6815 tree ftype = build_function_type_list (ptr_type_node,
6816 ptr_type_node, ptr_type_node,
6817 java_int_type_node, NULL_TREE);
6818 java_iface_lookup_fn
6819 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx", ftype,
6820 0, NOT_BUILT_IN, NULL, NULL_TREE);
6823 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
6824 This is the first entry in the vtable. */
6825 klass_ref = build_vtbl_ref (cp_build_indirect_ref (instance, RO_NULL,
6826 tf_warning_or_error),
6827 integer_zero_node);
6829 /* Get the java.lang.Class pointer for the interface being called. */
6830 iface = DECL_CONTEXT (fn);
6831 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
6832 if (!iface_ref || TREE_CODE (iface_ref) != VAR_DECL
6833 || DECL_CONTEXT (iface_ref) != iface)
6835 error ("could not find class$ field in java interface type %qT",
6836 iface);
6837 return error_mark_node;
6839 iface_ref = build_address (iface_ref);
6840 iface_ref = convert (build_pointer_type (iface), iface_ref);
6842 /* Determine the itable index of FN. */
6843 i = 1;
6844 for (method = TYPE_METHODS (iface); method; method = DECL_CHAIN (method))
6846 if (!DECL_VIRTUAL_P (method))
6847 continue;
6848 if (fn == method)
6849 break;
6850 i++;
6852 idx = build_int_cst (NULL_TREE, i);
6854 lookup_fn = build1 (ADDR_EXPR,
6855 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
6856 java_iface_lookup_fn);
6857 return build_call_nary (ptr_type_node, lookup_fn,
6858 3, klass_ref, iface_ref, idx);
6861 /* Returns the value to use for the in-charge parameter when making a
6862 call to a function with the indicated NAME.
6864 FIXME:Can't we find a neater way to do this mapping? */
6866 tree
6867 in_charge_arg_for_name (tree name)
6869 if (name == base_ctor_identifier
6870 || name == base_dtor_identifier)
6871 return integer_zero_node;
6872 else if (name == complete_ctor_identifier)
6873 return integer_one_node;
6874 else if (name == complete_dtor_identifier)
6875 return integer_two_node;
6876 else if (name == deleting_dtor_identifier)
6877 return integer_three_node;
6879 /* This function should only be called with one of the names listed
6880 above. */
6881 gcc_unreachable ();
6882 return NULL_TREE;
6885 /* Build a call to a constructor, destructor, or an assignment
6886 operator for INSTANCE, an expression with class type. NAME
6887 indicates the special member function to call; *ARGS are the
6888 arguments. ARGS may be NULL. This may change ARGS. BINFO
6889 indicates the base of INSTANCE that is to be passed as the `this'
6890 parameter to the member function called.
6892 FLAGS are the LOOKUP_* flags to use when processing the call.
6894 If NAME indicates a complete object constructor, INSTANCE may be
6895 NULL_TREE. In this case, the caller will call build_cplus_new to
6896 store the newly constructed object into a VAR_DECL. */
6898 tree
6899 build_special_member_call (tree instance, tree name, VEC(tree,gc) **args,
6900 tree binfo, int flags, tsubst_flags_t complain)
6902 tree fns;
6903 /* The type of the subobject to be constructed or destroyed. */
6904 tree class_type;
6905 VEC(tree,gc) *allocated = NULL;
6906 tree ret;
6908 gcc_assert (name == complete_ctor_identifier
6909 || name == base_ctor_identifier
6910 || name == complete_dtor_identifier
6911 || name == base_dtor_identifier
6912 || name == deleting_dtor_identifier
6913 || name == ansi_assopname (NOP_EXPR));
6914 if (TYPE_P (binfo))
6916 /* Resolve the name. */
6917 if (!complete_type_or_maybe_complain (binfo, NULL_TREE, complain))
6918 return error_mark_node;
6920 binfo = TYPE_BINFO (binfo);
6923 gcc_assert (binfo != NULL_TREE);
6925 class_type = BINFO_TYPE (binfo);
6927 /* Handle the special case where INSTANCE is NULL_TREE. */
6928 if (name == complete_ctor_identifier && !instance)
6930 instance = build_int_cst (build_pointer_type (class_type), 0);
6931 instance = build1 (INDIRECT_REF, class_type, instance);
6933 else
6935 if (name == complete_dtor_identifier
6936 || name == base_dtor_identifier
6937 || name == deleting_dtor_identifier)
6938 gcc_assert (args == NULL || VEC_empty (tree, *args));
6940 /* Convert to the base class, if necessary. */
6941 if (!same_type_ignoring_top_level_qualifiers_p
6942 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
6944 if (name != ansi_assopname (NOP_EXPR))
6945 /* For constructors and destructors, either the base is
6946 non-virtual, or it is virtual but we are doing the
6947 conversion from a constructor or destructor for the
6948 complete object. In either case, we can convert
6949 statically. */
6950 instance = convert_to_base_statically (instance, binfo);
6951 else
6952 /* However, for assignment operators, we must convert
6953 dynamically if the base is virtual. */
6954 instance = build_base_path (PLUS_EXPR, instance,
6955 binfo, /*nonnull=*/1, complain);
6959 gcc_assert (instance != NULL_TREE);
6961 fns = lookup_fnfields (binfo, name, 1);
6963 /* When making a call to a constructor or destructor for a subobject
6964 that uses virtual base classes, pass down a pointer to a VTT for
6965 the subobject. */
6966 if ((name == base_ctor_identifier
6967 || name == base_dtor_identifier)
6968 && CLASSTYPE_VBASECLASSES (class_type))
6970 tree vtt;
6971 tree sub_vtt;
6973 /* If the current function is a complete object constructor
6974 or destructor, then we fetch the VTT directly.
6975 Otherwise, we look it up using the VTT we were given. */
6976 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
6977 vtt = decay_conversion (vtt);
6978 vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
6979 build2 (EQ_EXPR, boolean_type_node,
6980 current_in_charge_parm, integer_zero_node),
6981 current_vtt_parm,
6982 vtt);
6983 gcc_assert (BINFO_SUBVTT_INDEX (binfo));
6984 sub_vtt = fold_build_pointer_plus (vtt, BINFO_SUBVTT_INDEX (binfo));
6986 if (args == NULL)
6988 allocated = make_tree_vector ();
6989 args = &allocated;
6992 VEC_safe_insert (tree, gc, *args, 0, sub_vtt);
6995 ret = build_new_method_call (instance, fns, args,
6996 TYPE_BINFO (BINFO_TYPE (binfo)),
6997 flags, /*fn=*/NULL,
6998 complain);
7000 if (allocated != NULL)
7001 release_tree_vector (allocated);
7003 return ret;
7006 /* Return the NAME, as a C string. The NAME indicates a function that
7007 is a member of TYPE. *FREE_P is set to true if the caller must
7008 free the memory returned.
7010 Rather than go through all of this, we should simply set the names
7011 of constructors and destructors appropriately, and dispense with
7012 ctor_identifier, dtor_identifier, etc. */
7014 static char *
7015 name_as_c_string (tree name, tree type, bool *free_p)
7017 char *pretty_name;
7019 /* Assume that we will not allocate memory. */
7020 *free_p = false;
7021 /* Constructors and destructors are special. */
7022 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7024 pretty_name
7025 = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type))));
7026 /* For a destructor, add the '~'. */
7027 if (name == complete_dtor_identifier
7028 || name == base_dtor_identifier
7029 || name == deleting_dtor_identifier)
7031 pretty_name = concat ("~", pretty_name, NULL);
7032 /* Remember that we need to free the memory allocated. */
7033 *free_p = true;
7036 else if (IDENTIFIER_TYPENAME_P (name))
7038 pretty_name = concat ("operator ",
7039 type_as_string_translate (TREE_TYPE (name),
7040 TFF_PLAIN_IDENTIFIER),
7041 NULL);
7042 /* Remember that we need to free the memory allocated. */
7043 *free_p = true;
7045 else
7046 pretty_name = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (name)));
7048 return pretty_name;
7051 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
7052 be set, upon return, to the function called. ARGS may be NULL.
7053 This may change ARGS. */
7055 static tree
7056 build_new_method_call_1 (tree instance, tree fns, VEC(tree,gc) **args,
7057 tree conversion_path, int flags,
7058 tree *fn_p, tsubst_flags_t complain)
7060 struct z_candidate *candidates = 0, *cand;
7061 tree explicit_targs = NULL_TREE;
7062 tree basetype = NULL_TREE;
7063 tree access_binfo;
7064 tree optype;
7065 tree first_mem_arg = NULL_TREE;
7066 tree instance_ptr;
7067 tree name;
7068 bool skip_first_for_error;
7069 VEC(tree,gc) *user_args;
7070 tree call;
7071 tree fn;
7072 int template_only = 0;
7073 bool any_viable_p;
7074 tree orig_instance;
7075 tree orig_fns;
7076 VEC(tree,gc) *orig_args = NULL;
7077 void *p;
7079 gcc_assert (instance != NULL_TREE);
7081 /* We don't know what function we're going to call, yet. */
7082 if (fn_p)
7083 *fn_p = NULL_TREE;
7085 if (error_operand_p (instance)
7086 || !fns || error_operand_p (fns))
7087 return error_mark_node;
7089 if (!BASELINK_P (fns))
7091 if (complain & tf_error)
7092 error ("call to non-function %qD", fns);
7093 return error_mark_node;
7096 orig_instance = instance;
7097 orig_fns = fns;
7099 /* Dismantle the baselink to collect all the information we need. */
7100 if (!conversion_path)
7101 conversion_path = BASELINK_BINFO (fns);
7102 access_binfo = BASELINK_ACCESS_BINFO (fns);
7103 optype = BASELINK_OPTYPE (fns);
7104 fns = BASELINK_FUNCTIONS (fns);
7105 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7107 explicit_targs = TREE_OPERAND (fns, 1);
7108 fns = TREE_OPERAND (fns, 0);
7109 template_only = 1;
7111 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
7112 || TREE_CODE (fns) == TEMPLATE_DECL
7113 || TREE_CODE (fns) == OVERLOAD);
7114 fn = get_first_fn (fns);
7115 name = DECL_NAME (fn);
7117 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
7118 gcc_assert (CLASS_TYPE_P (basetype));
7120 if (processing_template_decl)
7122 orig_args = args == NULL ? NULL : make_tree_vector_copy (*args);
7123 instance = build_non_dependent_expr (instance);
7124 if (args != NULL)
7125 make_args_non_dependent (*args);
7128 user_args = args == NULL ? NULL : *args;
7129 /* Under DR 147 A::A() is an invalid constructor call,
7130 not a functional cast. */
7131 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
7133 if (! (complain & tf_error))
7134 return error_mark_node;
7136 permerror (input_location,
7137 "cannot call constructor %<%T::%D%> directly",
7138 basetype, name);
7139 permerror (input_location, " for a function-style cast, remove the "
7140 "redundant %<::%D%>", name);
7141 call = build_functional_cast (basetype, build_tree_list_vec (user_args),
7142 complain);
7143 return call;
7146 /* Figure out whether to skip the first argument for the error
7147 message we will display to users if an error occurs. We don't
7148 want to display any compiler-generated arguments. The "this"
7149 pointer hasn't been added yet. However, we must remove the VTT
7150 pointer if this is a call to a base-class constructor or
7151 destructor. */
7152 skip_first_for_error = false;
7153 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7155 /* Callers should explicitly indicate whether they want to construct
7156 the complete object or just the part without virtual bases. */
7157 gcc_assert (name != ctor_identifier);
7158 /* Similarly for destructors. */
7159 gcc_assert (name != dtor_identifier);
7160 /* Remove the VTT pointer, if present. */
7161 if ((name == base_ctor_identifier || name == base_dtor_identifier)
7162 && CLASSTYPE_VBASECLASSES (basetype))
7163 skip_first_for_error = true;
7166 /* Process the argument list. */
7167 if (args != NULL && *args != NULL)
7169 *args = resolve_args (*args, complain);
7170 if (*args == NULL)
7171 return error_mark_node;
7174 instance_ptr = build_this (instance);
7176 /* It's OK to call destructors and constructors on cv-qualified objects.
7177 Therefore, convert the INSTANCE_PTR to the unqualified type, if
7178 necessary. */
7179 if (DECL_DESTRUCTOR_P (fn)
7180 || DECL_CONSTRUCTOR_P (fn))
7182 tree type = build_pointer_type (basetype);
7183 if (!same_type_p (type, TREE_TYPE (instance_ptr)))
7184 instance_ptr = build_nop (type, instance_ptr);
7186 if (DECL_DESTRUCTOR_P (fn))
7187 name = complete_dtor_identifier;
7189 first_mem_arg = instance_ptr;
7191 /* Get the high-water mark for the CONVERSION_OBSTACK. */
7192 p = conversion_obstack_alloc (0);
7194 /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
7195 initializer, not T({ }). */
7196 if (DECL_CONSTRUCTOR_P (fn) && args != NULL && !VEC_empty (tree, *args)
7197 && BRACE_ENCLOSED_INITIALIZER_P (VEC_index (tree, *args, 0))
7198 && CONSTRUCTOR_IS_DIRECT_INIT (VEC_index (tree, *args, 0)))
7200 tree init_list = VEC_index (tree, *args, 0);
7201 tree init = NULL_TREE;
7203 gcc_assert (VEC_length (tree, *args) == 1
7204 && !(flags & LOOKUP_ONLYCONVERTING));
7206 /* If the initializer list has no elements and T is a class type with
7207 a default constructor, the object is value-initialized. Handle
7208 this here so we don't need to handle it wherever we use
7209 build_special_member_call. */
7210 if (CONSTRUCTOR_NELTS (init_list) == 0
7211 && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
7212 && !processing_template_decl)
7213 init = build_value_init (basetype, complain);
7215 /* If BASETYPE is an aggregate, we need to do aggregate
7216 initialization. */
7217 else if (CP_AGGREGATE_TYPE_P (basetype))
7218 init = digest_init (basetype, init_list, complain);
7220 if (init)
7222 tree ob;
7223 if (integer_zerop (instance_ptr))
7224 return get_target_expr_sfinae (init, complain);
7225 ob = build_fold_indirect_ref (instance_ptr);
7226 init = build2 (INIT_EXPR, TREE_TYPE (ob), ob, init);
7227 TREE_SIDE_EFFECTS (init) = true;
7228 return init;
7231 /* Otherwise go ahead with overload resolution. */
7232 add_list_candidates (fns, first_mem_arg, init_list,
7233 basetype, explicit_targs, template_only,
7234 conversion_path, access_binfo, flags, &candidates);
7236 else
7238 add_candidates (fns, first_mem_arg, user_args, optype,
7239 explicit_targs, template_only, conversion_path,
7240 access_binfo, flags, &candidates);
7242 any_viable_p = false;
7243 candidates = splice_viable (candidates, pedantic, &any_viable_p);
7245 if (!any_viable_p)
7247 if (complain & tf_error)
7249 if (!COMPLETE_OR_OPEN_TYPE_P (basetype))
7250 cxx_incomplete_type_error (instance_ptr, basetype);
7251 else if (optype)
7252 error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
7253 basetype, optype, build_tree_list_vec (user_args),
7254 TREE_TYPE (TREE_TYPE (instance_ptr)));
7255 else
7257 char *pretty_name;
7258 bool free_p;
7259 tree arglist;
7261 pretty_name = name_as_c_string (name, basetype, &free_p);
7262 arglist = build_tree_list_vec (user_args);
7263 if (skip_first_for_error)
7264 arglist = TREE_CHAIN (arglist);
7265 error ("no matching function for call to %<%T::%s(%A)%#V%>",
7266 basetype, pretty_name, arglist,
7267 TREE_TYPE (TREE_TYPE (instance_ptr)));
7268 if (free_p)
7269 free (pretty_name);
7271 print_z_candidates (location_of (name), candidates);
7273 call = error_mark_node;
7275 else
7277 cand = tourney (candidates);
7278 if (cand == 0)
7280 char *pretty_name;
7281 bool free_p;
7282 tree arglist;
7284 if (complain & tf_error)
7286 pretty_name = name_as_c_string (name, basetype, &free_p);
7287 arglist = build_tree_list_vec (user_args);
7288 if (skip_first_for_error)
7289 arglist = TREE_CHAIN (arglist);
7290 error ("call of overloaded %<%s(%A)%> is ambiguous", pretty_name,
7291 arglist);
7292 print_z_candidates (location_of (name), candidates);
7293 if (free_p)
7294 free (pretty_name);
7296 call = error_mark_node;
7298 else
7300 fn = cand->fn;
7302 if (!(flags & LOOKUP_NONVIRTUAL)
7303 && DECL_PURE_VIRTUAL_P (fn)
7304 && instance == current_class_ref
7305 && (DECL_CONSTRUCTOR_P (current_function_decl)
7306 || DECL_DESTRUCTOR_P (current_function_decl))
7307 && (complain & tf_warning))
7308 /* This is not an error, it is runtime undefined
7309 behavior. */
7310 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl) ?
7311 "pure virtual %q#D called from constructor"
7312 : "pure virtual %q#D called from destructor"),
7313 fn);
7315 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
7316 && is_dummy_object (instance_ptr))
7318 if (complain & tf_error)
7319 error ("cannot call member function %qD without object",
7320 fn);
7321 call = error_mark_node;
7323 else
7325 /* Optimize away vtable lookup if we know that this function
7326 can't be overridden. */
7327 if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
7328 && (resolves_to_fixed_type_p (instance, 0)
7329 || DECL_FINAL_P (fn) || CLASSTYPE_FINAL (basetype)))
7330 flags |= LOOKUP_NONVIRTUAL;
7331 if (explicit_targs)
7332 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
7333 /* Now we know what function is being called. */
7334 if (fn_p)
7335 *fn_p = fn;
7336 /* Build the actual CALL_EXPR. */
7337 call = build_over_call (cand, flags, complain);
7338 /* In an expression of the form `a->f()' where `f' turns
7339 out to be a static member function, `a' is
7340 none-the-less evaluated. */
7341 if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
7342 && !is_dummy_object (instance_ptr)
7343 && TREE_SIDE_EFFECTS (instance_ptr))
7344 call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
7345 instance_ptr, call);
7346 else if (call != error_mark_node
7347 && DECL_DESTRUCTOR_P (cand->fn)
7348 && !VOID_TYPE_P (TREE_TYPE (call)))
7349 /* An explicit call of the form "x->~X()" has type
7350 "void". However, on platforms where destructors
7351 return "this" (i.e., those where
7352 targetm.cxx.cdtor_returns_this is true), such calls
7353 will appear to have a return value of pointer type
7354 to the low-level call machinery. We do not want to
7355 change the low-level machinery, since we want to be
7356 able to optimize "delete f()" on such platforms as
7357 "operator delete(~X(f()))" (rather than generating
7358 "t = f(), ~X(t), operator delete (t)"). */
7359 call = build_nop (void_type_node, call);
7364 if (processing_template_decl && call != error_mark_node)
7366 bool cast_to_void = false;
7368 if (TREE_CODE (call) == COMPOUND_EXPR)
7369 call = TREE_OPERAND (call, 1);
7370 else if (TREE_CODE (call) == NOP_EXPR)
7372 cast_to_void = true;
7373 call = TREE_OPERAND (call, 0);
7375 if (TREE_CODE (call) == INDIRECT_REF)
7376 call = TREE_OPERAND (call, 0);
7377 call = (build_min_non_dep_call_vec
7378 (call,
7379 build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
7380 orig_instance, orig_fns, NULL_TREE),
7381 orig_args));
7382 call = convert_from_reference (call);
7383 if (cast_to_void)
7384 call = build_nop (void_type_node, call);
7387 /* Free all the conversions we allocated. */
7388 obstack_free (&conversion_obstack, p);
7390 if (orig_args != NULL)
7391 release_tree_vector (orig_args);
7393 return call;
7396 /* Wrapper for above. */
7398 tree
7399 build_new_method_call (tree instance, tree fns, VEC(tree,gc) **args,
7400 tree conversion_path, int flags,
7401 tree *fn_p, tsubst_flags_t complain)
7403 tree ret;
7404 bool subtime = timevar_cond_start (TV_OVERLOAD);
7405 ret = build_new_method_call_1 (instance, fns, args, conversion_path, flags,
7406 fn_p, complain);
7407 timevar_cond_stop (TV_OVERLOAD, subtime);
7408 return ret;
7411 /* Returns true iff standard conversion sequence ICS1 is a proper
7412 subsequence of ICS2. */
7414 static bool
7415 is_subseq (conversion *ics1, conversion *ics2)
7417 /* We can assume that a conversion of the same code
7418 between the same types indicates a subsequence since we only get
7419 here if the types we are converting from are the same. */
7421 while (ics1->kind == ck_rvalue
7422 || ics1->kind == ck_lvalue)
7423 ics1 = ics1->u.next;
7425 while (1)
7427 while (ics2->kind == ck_rvalue
7428 || ics2->kind == ck_lvalue)
7429 ics2 = ics2->u.next;
7431 if (ics2->kind == ck_user
7432 || ics2->kind == ck_ambig
7433 || ics2->kind == ck_aggr
7434 || ics2->kind == ck_list
7435 || ics2->kind == ck_identity)
7436 /* At this point, ICS1 cannot be a proper subsequence of
7437 ICS2. We can get a USER_CONV when we are comparing the
7438 second standard conversion sequence of two user conversion
7439 sequences. */
7440 return false;
7442 ics2 = ics2->u.next;
7444 if (ics2->kind == ics1->kind
7445 && same_type_p (ics2->type, ics1->type)
7446 && same_type_p (ics2->u.next->type,
7447 ics1->u.next->type))
7448 return true;
7452 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
7453 be any _TYPE nodes. */
7455 bool
7456 is_properly_derived_from (tree derived, tree base)
7458 if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
7459 return false;
7461 /* We only allow proper derivation here. The DERIVED_FROM_P macro
7462 considers every class derived from itself. */
7463 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
7464 && DERIVED_FROM_P (base, derived));
7467 /* We build the ICS for an implicit object parameter as a pointer
7468 conversion sequence. However, such a sequence should be compared
7469 as if it were a reference conversion sequence. If ICS is the
7470 implicit conversion sequence for an implicit object parameter,
7471 modify it accordingly. */
7473 static void
7474 maybe_handle_implicit_object (conversion **ics)
7476 if ((*ics)->this_p)
7478 /* [over.match.funcs]
7480 For non-static member functions, the type of the
7481 implicit object parameter is "reference to cv X"
7482 where X is the class of which the function is a
7483 member and cv is the cv-qualification on the member
7484 function declaration. */
7485 conversion *t = *ics;
7486 tree reference_type;
7488 /* The `this' parameter is a pointer to a class type. Make the
7489 implicit conversion talk about a reference to that same class
7490 type. */
7491 reference_type = TREE_TYPE (t->type);
7492 reference_type = build_reference_type (reference_type);
7494 if (t->kind == ck_qual)
7495 t = t->u.next;
7496 if (t->kind == ck_ptr)
7497 t = t->u.next;
7498 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
7499 t = direct_reference_binding (reference_type, t);
7500 t->this_p = 1;
7501 t->rvaluedness_matches_p = 0;
7502 *ics = t;
7506 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
7507 and return the initial reference binding conversion. Otherwise,
7508 leave *ICS unchanged and return NULL. */
7510 static conversion *
7511 maybe_handle_ref_bind (conversion **ics)
7513 if ((*ics)->kind == ck_ref_bind)
7515 conversion *old_ics = *ics;
7516 *ics = old_ics->u.next;
7517 (*ics)->user_conv_p = old_ics->user_conv_p;
7518 return old_ics;
7521 return NULL;
7524 /* Compare two implicit conversion sequences according to the rules set out in
7525 [over.ics.rank]. Return values:
7527 1: ics1 is better than ics2
7528 -1: ics2 is better than ics1
7529 0: ics1 and ics2 are indistinguishable */
7531 static int
7532 compare_ics (conversion *ics1, conversion *ics2)
7534 tree from_type1;
7535 tree from_type2;
7536 tree to_type1;
7537 tree to_type2;
7538 tree deref_from_type1 = NULL_TREE;
7539 tree deref_from_type2 = NULL_TREE;
7540 tree deref_to_type1 = NULL_TREE;
7541 tree deref_to_type2 = NULL_TREE;
7542 conversion_rank rank1, rank2;
7544 /* REF_BINDING is nonzero if the result of the conversion sequence
7545 is a reference type. In that case REF_CONV is the reference
7546 binding conversion. */
7547 conversion *ref_conv1;
7548 conversion *ref_conv2;
7550 /* Handle implicit object parameters. */
7551 maybe_handle_implicit_object (&ics1);
7552 maybe_handle_implicit_object (&ics2);
7554 /* Handle reference parameters. */
7555 ref_conv1 = maybe_handle_ref_bind (&ics1);
7556 ref_conv2 = maybe_handle_ref_bind (&ics2);
7558 /* List-initialization sequence L1 is a better conversion sequence than
7559 list-initialization sequence L2 if L1 converts to
7560 std::initializer_list<X> for some X and L2 does not. */
7561 if (ics1->kind == ck_list && ics2->kind != ck_list)
7562 return 1;
7563 if (ics2->kind == ck_list && ics1->kind != ck_list)
7564 return -1;
7566 /* [over.ics.rank]
7568 When comparing the basic forms of implicit conversion sequences (as
7569 defined in _over.best.ics_)
7571 --a standard conversion sequence (_over.ics.scs_) is a better
7572 conversion sequence than a user-defined conversion sequence
7573 or an ellipsis conversion sequence, and
7575 --a user-defined conversion sequence (_over.ics.user_) is a
7576 better conversion sequence than an ellipsis conversion sequence
7577 (_over.ics.ellipsis_). */
7578 rank1 = CONVERSION_RANK (ics1);
7579 rank2 = CONVERSION_RANK (ics2);
7581 if (rank1 > rank2)
7582 return -1;
7583 else if (rank1 < rank2)
7584 return 1;
7586 if (rank1 == cr_bad)
7588 /* Both ICS are bad. We try to make a decision based on what would
7589 have happened if they'd been good. This is not an extension,
7590 we'll still give an error when we build up the call; this just
7591 helps us give a more helpful error message. */
7592 rank1 = BAD_CONVERSION_RANK (ics1);
7593 rank2 = BAD_CONVERSION_RANK (ics2);
7595 if (rank1 > rank2)
7596 return -1;
7597 else if (rank1 < rank2)
7598 return 1;
7600 /* We couldn't make up our minds; try to figure it out below. */
7603 if (ics1->ellipsis_p)
7604 /* Both conversions are ellipsis conversions. */
7605 return 0;
7607 /* User-defined conversion sequence U1 is a better conversion sequence
7608 than another user-defined conversion sequence U2 if they contain the
7609 same user-defined conversion operator or constructor and if the sec-
7610 ond standard conversion sequence of U1 is better than the second
7611 standard conversion sequence of U2. */
7613 /* Handle list-conversion with the same code even though it isn't always
7614 ranked as a user-defined conversion and it doesn't have a second
7615 standard conversion sequence; it will still have the desired effect.
7616 Specifically, we need to do the reference binding comparison at the
7617 end of this function. */
7619 if (ics1->user_conv_p || ics1->kind == ck_list)
7621 conversion *t1;
7622 conversion *t2;
7624 for (t1 = ics1; t1->kind != ck_user; t1 = t1->u.next)
7625 if (t1->kind == ck_ambig || t1->kind == ck_aggr
7626 || t1->kind == ck_list)
7627 break;
7628 for (t2 = ics2; t2->kind != ck_user; t2 = t2->u.next)
7629 if (t2->kind == ck_ambig || t2->kind == ck_aggr
7630 || t2->kind == ck_list)
7631 break;
7633 if (t1->kind != t2->kind)
7634 return 0;
7635 else if (t1->kind == ck_user)
7637 if (t1->cand->fn != t2->cand->fn)
7638 return 0;
7640 else
7642 /* For ambiguous or aggregate conversions, use the target type as
7643 a proxy for the conversion function. */
7644 if (!same_type_ignoring_top_level_qualifiers_p (t1->type, t2->type))
7645 return 0;
7648 /* We can just fall through here, after setting up
7649 FROM_TYPE1 and FROM_TYPE2. */
7650 from_type1 = t1->type;
7651 from_type2 = t2->type;
7653 else
7655 conversion *t1;
7656 conversion *t2;
7658 /* We're dealing with two standard conversion sequences.
7660 [over.ics.rank]
7662 Standard conversion sequence S1 is a better conversion
7663 sequence than standard conversion sequence S2 if
7665 --S1 is a proper subsequence of S2 (comparing the conversion
7666 sequences in the canonical form defined by _over.ics.scs_,
7667 excluding any Lvalue Transformation; the identity
7668 conversion sequence is considered to be a subsequence of
7669 any non-identity conversion sequence */
7671 t1 = ics1;
7672 while (t1->kind != ck_identity)
7673 t1 = t1->u.next;
7674 from_type1 = t1->type;
7676 t2 = ics2;
7677 while (t2->kind != ck_identity)
7678 t2 = t2->u.next;
7679 from_type2 = t2->type;
7682 /* One sequence can only be a subsequence of the other if they start with
7683 the same type. They can start with different types when comparing the
7684 second standard conversion sequence in two user-defined conversion
7685 sequences. */
7686 if (same_type_p (from_type1, from_type2))
7688 if (is_subseq (ics1, ics2))
7689 return 1;
7690 if (is_subseq (ics2, ics1))
7691 return -1;
7694 /* [over.ics.rank]
7696 Or, if not that,
7698 --the rank of S1 is better than the rank of S2 (by the rules
7699 defined below):
7701 Standard conversion sequences are ordered by their ranks: an Exact
7702 Match is a better conversion than a Promotion, which is a better
7703 conversion than a Conversion.
7705 Two conversion sequences with the same rank are indistinguishable
7706 unless one of the following rules applies:
7708 --A conversion that does not a convert a pointer, pointer to member,
7709 or std::nullptr_t to bool is better than one that does.
7711 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
7712 so that we do not have to check it explicitly. */
7713 if (ics1->rank < ics2->rank)
7714 return 1;
7715 else if (ics2->rank < ics1->rank)
7716 return -1;
7718 to_type1 = ics1->type;
7719 to_type2 = ics2->type;
7721 /* A conversion from scalar arithmetic type to complex is worse than a
7722 conversion between scalar arithmetic types. */
7723 if (same_type_p (from_type1, from_type2)
7724 && ARITHMETIC_TYPE_P (from_type1)
7725 && ARITHMETIC_TYPE_P (to_type1)
7726 && ARITHMETIC_TYPE_P (to_type2)
7727 && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
7728 != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
7730 if (TREE_CODE (to_type1) == COMPLEX_TYPE)
7731 return -1;
7732 else
7733 return 1;
7736 if (TYPE_PTR_P (from_type1)
7737 && TYPE_PTR_P (from_type2)
7738 && TYPE_PTR_P (to_type1)
7739 && TYPE_PTR_P (to_type2))
7741 deref_from_type1 = TREE_TYPE (from_type1);
7742 deref_from_type2 = TREE_TYPE (from_type2);
7743 deref_to_type1 = TREE_TYPE (to_type1);
7744 deref_to_type2 = TREE_TYPE (to_type2);
7746 /* The rules for pointers to members A::* are just like the rules
7747 for pointers A*, except opposite: if B is derived from A then
7748 A::* converts to B::*, not vice versa. For that reason, we
7749 switch the from_ and to_ variables here. */
7750 else if ((TYPE_PTRMEM_P (from_type1) && TYPE_PTRMEM_P (from_type2)
7751 && TYPE_PTRMEM_P (to_type1) && TYPE_PTRMEM_P (to_type2))
7752 || (TYPE_PTRMEMFUNC_P (from_type1)
7753 && TYPE_PTRMEMFUNC_P (from_type2)
7754 && TYPE_PTRMEMFUNC_P (to_type1)
7755 && TYPE_PTRMEMFUNC_P (to_type2)))
7757 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
7758 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
7759 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
7760 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
7763 if (deref_from_type1 != NULL_TREE
7764 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
7765 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
7767 /* This was one of the pointer or pointer-like conversions.
7769 [over.ics.rank]
7771 --If class B is derived directly or indirectly from class A,
7772 conversion of B* to A* is better than conversion of B* to
7773 void*, and conversion of A* to void* is better than
7774 conversion of B* to void*. */
7775 if (TREE_CODE (deref_to_type1) == VOID_TYPE
7776 && TREE_CODE (deref_to_type2) == VOID_TYPE)
7778 if (is_properly_derived_from (deref_from_type1,
7779 deref_from_type2))
7780 return -1;
7781 else if (is_properly_derived_from (deref_from_type2,
7782 deref_from_type1))
7783 return 1;
7785 else if (TREE_CODE (deref_to_type1) == VOID_TYPE
7786 || TREE_CODE (deref_to_type2) == VOID_TYPE)
7788 if (same_type_p (deref_from_type1, deref_from_type2))
7790 if (TREE_CODE (deref_to_type2) == VOID_TYPE)
7792 if (is_properly_derived_from (deref_from_type1,
7793 deref_to_type1))
7794 return 1;
7796 /* We know that DEREF_TO_TYPE1 is `void' here. */
7797 else if (is_properly_derived_from (deref_from_type1,
7798 deref_to_type2))
7799 return -1;
7802 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
7803 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
7805 /* [over.ics.rank]
7807 --If class B is derived directly or indirectly from class A
7808 and class C is derived directly or indirectly from B,
7810 --conversion of C* to B* is better than conversion of C* to
7813 --conversion of B* to A* is better than conversion of C* to
7814 A* */
7815 if (same_type_p (deref_from_type1, deref_from_type2))
7817 if (is_properly_derived_from (deref_to_type1,
7818 deref_to_type2))
7819 return 1;
7820 else if (is_properly_derived_from (deref_to_type2,
7821 deref_to_type1))
7822 return -1;
7824 else if (same_type_p (deref_to_type1, deref_to_type2))
7826 if (is_properly_derived_from (deref_from_type2,
7827 deref_from_type1))
7828 return 1;
7829 else if (is_properly_derived_from (deref_from_type1,
7830 deref_from_type2))
7831 return -1;
7835 else if (CLASS_TYPE_P (non_reference (from_type1))
7836 && same_type_p (from_type1, from_type2))
7838 tree from = non_reference (from_type1);
7840 /* [over.ics.rank]
7842 --binding of an expression of type C to a reference of type
7843 B& is better than binding an expression of type C to a
7844 reference of type A&
7846 --conversion of C to B is better than conversion of C to A, */
7847 if (is_properly_derived_from (from, to_type1)
7848 && is_properly_derived_from (from, to_type2))
7850 if (is_properly_derived_from (to_type1, to_type2))
7851 return 1;
7852 else if (is_properly_derived_from (to_type2, to_type1))
7853 return -1;
7856 else if (CLASS_TYPE_P (non_reference (to_type1))
7857 && same_type_p (to_type1, to_type2))
7859 tree to = non_reference (to_type1);
7861 /* [over.ics.rank]
7863 --binding of an expression of type B to a reference of type
7864 A& is better than binding an expression of type C to a
7865 reference of type A&,
7867 --conversion of B to A is better than conversion of C to A */
7868 if (is_properly_derived_from (from_type1, to)
7869 && is_properly_derived_from (from_type2, to))
7871 if (is_properly_derived_from (from_type2, from_type1))
7872 return 1;
7873 else if (is_properly_derived_from (from_type1, from_type2))
7874 return -1;
7878 /* [over.ics.rank]
7880 --S1 and S2 differ only in their qualification conversion and yield
7881 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
7882 qualification signature of type T1 is a proper subset of the cv-
7883 qualification signature of type T2 */
7884 if (ics1->kind == ck_qual
7885 && ics2->kind == ck_qual
7886 && same_type_p (from_type1, from_type2))
7888 int result = comp_cv_qual_signature (to_type1, to_type2);
7889 if (result != 0)
7890 return result;
7893 /* [over.ics.rank]
7895 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
7896 to an implicit object parameter, and either S1 binds an lvalue reference
7897 to an lvalue and S2 binds an rvalue reference or S1 binds an rvalue
7898 reference to an rvalue and S2 binds an lvalue reference
7899 (C++0x draft standard, 13.3.3.2)
7901 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
7902 types to which the references refer are the same type except for
7903 top-level cv-qualifiers, and the type to which the reference
7904 initialized by S2 refers is more cv-qualified than the type to
7905 which the reference initialized by S1 refers.
7907 DR 1328 [over.match.best]: the context is an initialization by
7908 conversion function for direct reference binding (13.3.1.6) of a
7909 reference to function type, the return type of F1 is the same kind of
7910 reference (i.e. lvalue or rvalue) as the reference being initialized,
7911 and the return type of F2 is not. */
7913 if (ref_conv1 && ref_conv2)
7915 if (!ref_conv1->this_p && !ref_conv2->this_p
7916 && (ref_conv1->rvaluedness_matches_p
7917 != ref_conv2->rvaluedness_matches_p)
7918 && (same_type_p (ref_conv1->type, ref_conv2->type)
7919 || (TYPE_REF_IS_RVALUE (ref_conv1->type)
7920 != TYPE_REF_IS_RVALUE (ref_conv2->type))))
7922 return (ref_conv1->rvaluedness_matches_p
7923 - ref_conv2->rvaluedness_matches_p);
7926 if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
7927 return comp_cv_qualification (TREE_TYPE (ref_conv2->type),
7928 TREE_TYPE (ref_conv1->type));
7931 /* Neither conversion sequence is better than the other. */
7932 return 0;
7935 /* The source type for this standard conversion sequence. */
7937 static tree
7938 source_type (conversion *t)
7940 for (;; t = t->u.next)
7942 if (t->kind == ck_user
7943 || t->kind == ck_ambig
7944 || t->kind == ck_identity)
7945 return t->type;
7947 gcc_unreachable ();
7950 /* Note a warning about preferring WINNER to LOSER. We do this by storing
7951 a pointer to LOSER and re-running joust to produce the warning if WINNER
7952 is actually used. */
7954 static void
7955 add_warning (struct z_candidate *winner, struct z_candidate *loser)
7957 candidate_warning *cw = (candidate_warning *)
7958 conversion_obstack_alloc (sizeof (candidate_warning));
7959 cw->loser = loser;
7960 cw->next = winner->warnings;
7961 winner->warnings = cw;
7964 /* Compare two candidates for overloading as described in
7965 [over.match.best]. Return values:
7967 1: cand1 is better than cand2
7968 -1: cand2 is better than cand1
7969 0: cand1 and cand2 are indistinguishable */
7971 static int
7972 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn)
7974 int winner = 0;
7975 int off1 = 0, off2 = 0;
7976 size_t i;
7977 size_t len;
7979 /* Candidates that involve bad conversions are always worse than those
7980 that don't. */
7981 if (cand1->viable > cand2->viable)
7982 return 1;
7983 if (cand1->viable < cand2->viable)
7984 return -1;
7986 /* If we have two pseudo-candidates for conversions to the same type,
7987 or two candidates for the same function, arbitrarily pick one. */
7988 if (cand1->fn == cand2->fn
7989 && (IS_TYPE_OR_DECL_P (cand1->fn)))
7990 return 1;
7992 /* a viable function F1
7993 is defined to be a better function than another viable function F2 if
7994 for all arguments i, ICSi(F1) is not a worse conversion sequence than
7995 ICSi(F2), and then */
7997 /* for some argument j, ICSj(F1) is a better conversion sequence than
7998 ICSj(F2) */
8000 /* For comparing static and non-static member functions, we ignore
8001 the implicit object parameter of the non-static function. The
8002 standard says to pretend that the static function has an object
8003 parm, but that won't work with operator overloading. */
8004 len = cand1->num_convs;
8005 if (len != cand2->num_convs)
8007 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
8008 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
8010 gcc_assert (static_1 != static_2);
8012 if (static_1)
8013 off2 = 1;
8014 else
8016 off1 = 1;
8017 --len;
8021 for (i = 0; i < len; ++i)
8023 conversion *t1 = cand1->convs[i + off1];
8024 conversion *t2 = cand2->convs[i + off2];
8025 int comp = compare_ics (t1, t2);
8027 if (comp != 0)
8029 if (warn_sign_promo
8030 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
8031 == cr_std + cr_promotion)
8032 && t1->kind == ck_std
8033 && t2->kind == ck_std
8034 && TREE_CODE (t1->type) == INTEGER_TYPE
8035 && TREE_CODE (t2->type) == INTEGER_TYPE
8036 && (TYPE_PRECISION (t1->type)
8037 == TYPE_PRECISION (t2->type))
8038 && (TYPE_UNSIGNED (t1->u.next->type)
8039 || (TREE_CODE (t1->u.next->type)
8040 == ENUMERAL_TYPE)))
8042 tree type = t1->u.next->type;
8043 tree type1, type2;
8044 struct z_candidate *w, *l;
8045 if (comp > 0)
8046 type1 = t1->type, type2 = t2->type,
8047 w = cand1, l = cand2;
8048 else
8049 type1 = t2->type, type2 = t1->type,
8050 w = cand2, l = cand1;
8052 if (warn)
8054 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
8055 type, type1, type2);
8056 warning (OPT_Wsign_promo, " in call to %qD", w->fn);
8058 else
8059 add_warning (w, l);
8062 if (winner && comp != winner)
8064 winner = 0;
8065 goto tweak;
8067 winner = comp;
8071 /* warn about confusing overload resolution for user-defined conversions,
8072 either between a constructor and a conversion op, or between two
8073 conversion ops. */
8074 if (winner && warn_conversion && cand1->second_conv
8075 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
8076 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
8078 struct z_candidate *w, *l;
8079 bool give_warning = false;
8081 if (winner == 1)
8082 w = cand1, l = cand2;
8083 else
8084 w = cand2, l = cand1;
8086 /* We don't want to complain about `X::operator T1 ()'
8087 beating `X::operator T2 () const', when T2 is a no less
8088 cv-qualified version of T1. */
8089 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
8090 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
8092 tree t = TREE_TYPE (TREE_TYPE (l->fn));
8093 tree f = TREE_TYPE (TREE_TYPE (w->fn));
8095 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
8097 t = TREE_TYPE (t);
8098 f = TREE_TYPE (f);
8100 if (!comp_ptr_ttypes (t, f))
8101 give_warning = true;
8103 else
8104 give_warning = true;
8106 if (!give_warning)
8107 /*NOP*/;
8108 else if (warn)
8110 tree source = source_type (w->convs[0]);
8111 if (! DECL_CONSTRUCTOR_P (w->fn))
8112 source = TREE_TYPE (source);
8113 if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
8114 && warning (OPT_Wconversion, " for conversion from %qT to %qT",
8115 source, w->second_conv->type))
8117 inform (input_location, " because conversion sequence for the argument is better");
8120 else
8121 add_warning (w, l);
8124 if (winner)
8125 return winner;
8127 /* DR 495 moved this tiebreaker above the template ones. */
8128 /* or, if not that,
8129 the context is an initialization by user-defined conversion (see
8130 _dcl.init_ and _over.match.user_) and the standard conversion
8131 sequence from the return type of F1 to the destination type (i.e.,
8132 the type of the entity being initialized) is a better conversion
8133 sequence than the standard conversion sequence from the return type
8134 of F2 to the destination type. */
8136 if (cand1->second_conv)
8138 winner = compare_ics (cand1->second_conv, cand2->second_conv);
8139 if (winner)
8140 return winner;
8143 /* or, if not that,
8144 F1 is a non-template function and F2 is a template function
8145 specialization. */
8147 if (!cand1->template_decl && cand2->template_decl)
8148 return 1;
8149 else if (cand1->template_decl && !cand2->template_decl)
8150 return -1;
8152 /* or, if not that,
8153 F1 and F2 are template functions and the function template for F1 is
8154 more specialized than the template for F2 according to the partial
8155 ordering rules. */
8157 if (cand1->template_decl && cand2->template_decl)
8159 winner = more_specialized_fn
8160 (TI_TEMPLATE (cand1->template_decl),
8161 TI_TEMPLATE (cand2->template_decl),
8162 /* [temp.func.order]: The presence of unused ellipsis and default
8163 arguments has no effect on the partial ordering of function
8164 templates. add_function_candidate() will not have
8165 counted the "this" argument for constructors. */
8166 cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
8167 if (winner)
8168 return winner;
8171 /* Check whether we can discard a builtin candidate, either because we
8172 have two identical ones or matching builtin and non-builtin candidates.
8174 (Pedantically in the latter case the builtin which matched the user
8175 function should not be added to the overload set, but we spot it here.
8177 [over.match.oper]
8178 ... the builtin candidates include ...
8179 - do not have the same parameter type list as any non-template
8180 non-member candidate. */
8182 if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE
8183 || TREE_CODE (cand2->fn) == IDENTIFIER_NODE)
8185 for (i = 0; i < len; ++i)
8186 if (!same_type_p (cand1->convs[i]->type,
8187 cand2->convs[i]->type))
8188 break;
8189 if (i == cand1->num_convs)
8191 if (cand1->fn == cand2->fn)
8192 /* Two built-in candidates; arbitrarily pick one. */
8193 return 1;
8194 else if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE)
8195 /* cand1 is built-in; prefer cand2. */
8196 return -1;
8197 else
8198 /* cand2 is built-in; prefer cand1. */
8199 return 1;
8203 /* If the two function declarations represent the same function (this can
8204 happen with declarations in multiple scopes and arg-dependent lookup),
8205 arbitrarily choose one. But first make sure the default args we're
8206 using match. */
8207 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
8208 && equal_functions (cand1->fn, cand2->fn))
8210 tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
8211 tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
8213 gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
8215 for (i = 0; i < len; ++i)
8217 /* Don't crash if the fn is variadic. */
8218 if (!parms1)
8219 break;
8220 parms1 = TREE_CHAIN (parms1);
8221 parms2 = TREE_CHAIN (parms2);
8224 if (off1)
8225 parms1 = TREE_CHAIN (parms1);
8226 else if (off2)
8227 parms2 = TREE_CHAIN (parms2);
8229 for (; parms1; ++i)
8231 if (!cp_tree_equal (TREE_PURPOSE (parms1),
8232 TREE_PURPOSE (parms2)))
8234 if (warn)
8236 permerror (input_location, "default argument mismatch in "
8237 "overload resolution");
8238 inform (input_location,
8239 " candidate 1: %q+#F", cand1->fn);
8240 inform (input_location,
8241 " candidate 2: %q+#F", cand2->fn);
8243 else
8244 add_warning (cand1, cand2);
8245 break;
8247 parms1 = TREE_CHAIN (parms1);
8248 parms2 = TREE_CHAIN (parms2);
8251 return 1;
8254 tweak:
8256 /* Extension: If the worst conversion for one candidate is worse than the
8257 worst conversion for the other, take the first. */
8258 if (!pedantic)
8260 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
8261 struct z_candidate *w = 0, *l = 0;
8263 for (i = 0; i < len; ++i)
8265 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
8266 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
8267 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
8268 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
8270 if (rank1 < rank2)
8271 winner = 1, w = cand1, l = cand2;
8272 if (rank1 > rank2)
8273 winner = -1, w = cand2, l = cand1;
8274 if (winner)
8276 /* Don't choose a deleted function over ambiguity. */
8277 if (DECL_P (w->fn) && DECL_DELETED_FN (w->fn))
8278 return 0;
8279 if (warn)
8281 pedwarn (input_location, 0,
8282 "ISO C++ says that these are ambiguous, even "
8283 "though the worst conversion for the first is better than "
8284 "the worst conversion for the second:");
8285 print_z_candidate (_("candidate 1:"), w);
8286 print_z_candidate (_("candidate 2:"), l);
8288 else
8289 add_warning (w, l);
8290 return winner;
8294 gcc_assert (!winner);
8295 return 0;
8298 /* Given a list of candidates for overloading, find the best one, if any.
8299 This algorithm has a worst case of O(2n) (winner is last), and a best
8300 case of O(n/2) (totally ambiguous); much better than a sorting
8301 algorithm. */
8303 static struct z_candidate *
8304 tourney (struct z_candidate *candidates)
8306 struct z_candidate *champ = candidates, *challenger;
8307 int fate;
8308 int champ_compared_to_predecessor = 0;
8310 /* Walk through the list once, comparing each current champ to the next
8311 candidate, knocking out a candidate or two with each comparison. */
8313 for (challenger = champ->next; challenger; )
8315 fate = joust (champ, challenger, 0);
8316 if (fate == 1)
8317 challenger = challenger->next;
8318 else
8320 if (fate == 0)
8322 champ = challenger->next;
8323 if (champ == 0)
8324 return NULL;
8325 champ_compared_to_predecessor = 0;
8327 else
8329 champ = challenger;
8330 champ_compared_to_predecessor = 1;
8333 challenger = champ->next;
8337 /* Make sure the champ is better than all the candidates it hasn't yet
8338 been compared to. */
8340 for (challenger = candidates;
8341 challenger != champ
8342 && !(champ_compared_to_predecessor && challenger->next == champ);
8343 challenger = challenger->next)
8345 fate = joust (champ, challenger, 0);
8346 if (fate != 1)
8347 return NULL;
8350 return champ;
8353 /* Returns nonzero if things of type FROM can be converted to TO. */
8355 bool
8356 can_convert (tree to, tree from)
8358 return can_convert_arg (to, from, NULL_TREE, LOOKUP_IMPLICIT);
8361 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
8363 bool
8364 can_convert_arg (tree to, tree from, tree arg, int flags)
8366 conversion *t;
8367 void *p;
8368 bool ok_p;
8370 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8371 p = conversion_obstack_alloc (0);
8373 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
8374 flags);
8375 ok_p = (t && !t->bad_p);
8377 /* Free all the conversions we allocated. */
8378 obstack_free (&conversion_obstack, p);
8380 return ok_p;
8383 /* Like can_convert_arg, but allows dubious conversions as well. */
8385 bool
8386 can_convert_arg_bad (tree to, tree from, tree arg, int flags)
8388 conversion *t;
8389 void *p;
8391 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8392 p = conversion_obstack_alloc (0);
8393 /* Try to perform the conversion. */
8394 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
8395 flags);
8396 /* Free all the conversions we allocated. */
8397 obstack_free (&conversion_obstack, p);
8399 return t != NULL;
8402 /* Convert EXPR to TYPE. Return the converted expression.
8404 Note that we allow bad conversions here because by the time we get to
8405 this point we are committed to doing the conversion. If we end up
8406 doing a bad conversion, convert_like will complain. */
8408 tree
8409 perform_implicit_conversion_flags (tree type, tree expr, tsubst_flags_t complain, int flags)
8411 conversion *conv;
8412 void *p;
8414 if (error_operand_p (expr))
8415 return error_mark_node;
8417 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8418 p = conversion_obstack_alloc (0);
8420 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
8421 /*c_cast_p=*/false,
8422 flags);
8424 if (!conv)
8426 if (complain & tf_error)
8428 /* If expr has unknown type, then it is an overloaded function.
8429 Call instantiate_type to get good error messages. */
8430 if (TREE_TYPE (expr) == unknown_type_node)
8431 instantiate_type (type, expr, complain);
8432 else if (invalid_nonstatic_memfn_p (expr, complain))
8433 /* We gave an error. */;
8434 else
8435 error ("could not convert %qE from %qT to %qT", expr,
8436 TREE_TYPE (expr), type);
8438 expr = error_mark_node;
8440 else if (processing_template_decl
8441 /* As a kludge, we always perform conversions between scalar
8442 types, as IMPLICIT_CONV_EXPR confuses c_finish_omp_for. */
8443 && !(SCALAR_TYPE_P (type) && SCALAR_TYPE_P (TREE_TYPE (expr))))
8445 /* In a template, we are only concerned about determining the
8446 type of non-dependent expressions, so we do not have to
8447 perform the actual conversion. But for initializers, we
8448 need to be able to perform it at instantiation
8449 (or fold_non_dependent_expr) time. */
8450 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
8451 if (!(flags & LOOKUP_ONLYCONVERTING))
8452 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
8454 else
8455 expr = convert_like (conv, expr, complain);
8457 /* Free all the conversions we allocated. */
8458 obstack_free (&conversion_obstack, p);
8460 return expr;
8463 tree
8464 perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
8466 return perform_implicit_conversion_flags (type, expr, complain, LOOKUP_IMPLICIT);
8469 /* Convert EXPR to TYPE (as a direct-initialization) if that is
8470 permitted. If the conversion is valid, the converted expression is
8471 returned. Otherwise, NULL_TREE is returned, except in the case
8472 that TYPE is a class type; in that case, an error is issued. If
8473 C_CAST_P is true, then this direct-initialization is taking
8474 place as part of a static_cast being attempted as part of a C-style
8475 cast. */
8477 tree
8478 perform_direct_initialization_if_possible (tree type,
8479 tree expr,
8480 bool c_cast_p,
8481 tsubst_flags_t complain)
8483 conversion *conv;
8484 void *p;
8486 if (type == error_mark_node || error_operand_p (expr))
8487 return error_mark_node;
8488 /* [dcl.init]
8490 If the destination type is a (possibly cv-qualified) class type:
8492 -- If the initialization is direct-initialization ...,
8493 constructors are considered. ... If no constructor applies, or
8494 the overload resolution is ambiguous, the initialization is
8495 ill-formed. */
8496 if (CLASS_TYPE_P (type))
8498 VEC(tree,gc) *args = make_tree_vector_single (expr);
8499 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
8500 &args, type, LOOKUP_NORMAL, complain);
8501 release_tree_vector (args);
8502 return build_cplus_new (type, expr, complain);
8505 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8506 p = conversion_obstack_alloc (0);
8508 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
8509 c_cast_p,
8510 LOOKUP_NORMAL);
8511 if (!conv || conv->bad_p)
8512 expr = NULL_TREE;
8513 else
8514 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
8515 /*issue_conversion_warnings=*/false,
8516 c_cast_p,
8517 complain);
8519 /* Free all the conversions we allocated. */
8520 obstack_free (&conversion_obstack, p);
8522 return expr;
8525 /* When initializing a reference that lasts longer than a full-expression,
8526 this special rule applies:
8528 [class.temporary]
8530 The temporary to which the reference is bound or the temporary
8531 that is the complete object to which the reference is bound
8532 persists for the lifetime of the reference.
8534 The temporaries created during the evaluation of the expression
8535 initializing the reference, except the temporary to which the
8536 reference is bound, are destroyed at the end of the
8537 full-expression in which they are created.
8539 In that case, we store the converted expression into a new
8540 VAR_DECL in a new scope.
8542 However, we want to be careful not to create temporaries when
8543 they are not required. For example, given:
8545 struct B {};
8546 struct D : public B {};
8547 D f();
8548 const B& b = f();
8550 there is no need to copy the return value from "f"; we can just
8551 extend its lifetime. Similarly, given:
8553 struct S {};
8554 struct T { operator S(); };
8555 T t;
8556 const S& s = t;
8558 we can extend the lifetime of the return value of the conversion
8559 operator.
8561 The next several functions are involved in this lifetime extension. */
8563 /* DECL is a VAR_DECL whose type is a REFERENCE_TYPE. The reference
8564 is being bound to a temporary. Create and return a new VAR_DECL
8565 with the indicated TYPE; this variable will store the value to
8566 which the reference is bound. */
8568 tree
8569 make_temporary_var_for_ref_to_temp (tree decl, tree type)
8571 tree var;
8573 /* Create the variable. */
8574 var = create_temporary_var (type);
8576 /* Register the variable. */
8577 if (TREE_STATIC (decl))
8579 /* Namespace-scope or local static; give it a mangled name. */
8580 /* FIXME share comdat with decl? */
8581 tree name;
8583 TREE_STATIC (var) = 1;
8584 name = mangle_ref_init_variable (decl);
8585 DECL_NAME (var) = name;
8586 SET_DECL_ASSEMBLER_NAME (var, name);
8587 var = pushdecl_top_level (var);
8589 else
8590 /* Create a new cleanup level if necessary. */
8591 maybe_push_cleanup_level (type);
8593 return var;
8596 /* EXPR is the initializer for a variable DECL of reference or
8597 std::initializer_list type. Create, push and return a new VAR_DECL
8598 for the initializer so that it will live as long as DECL. Any
8599 cleanup for the new variable is returned through CLEANUP, and the
8600 code to initialize the new variable is returned through INITP. */
8602 static tree
8603 set_up_extended_ref_temp (tree decl, tree expr, VEC(tree,gc) **cleanups,
8604 tree *initp)
8606 tree init;
8607 tree type;
8608 tree var;
8610 /* Create the temporary variable. */
8611 type = TREE_TYPE (expr);
8612 var = make_temporary_var_for_ref_to_temp (decl, type);
8613 layout_decl (var, 0);
8614 /* If the rvalue is the result of a function call it will be
8615 a TARGET_EXPR. If it is some other construct (such as a
8616 member access expression where the underlying object is
8617 itself the result of a function call), turn it into a
8618 TARGET_EXPR here. It is important that EXPR be a
8619 TARGET_EXPR below since otherwise the INIT_EXPR will
8620 attempt to make a bitwise copy of EXPR to initialize
8621 VAR. */
8622 if (TREE_CODE (expr) != TARGET_EXPR)
8623 expr = get_target_expr (expr);
8625 if (TREE_CODE (decl) == FIELD_DECL
8626 && extra_warnings && !TREE_NO_WARNING (decl))
8628 warning (OPT_Wextra, "a temporary bound to %qD only persists "
8629 "until the constructor exits", decl);
8630 TREE_NO_WARNING (decl) = true;
8633 /* Recursively extend temps in this initializer. */
8634 TARGET_EXPR_INITIAL (expr)
8635 = extend_ref_init_temps (decl, TARGET_EXPR_INITIAL (expr), cleanups);
8637 /* If the initializer is constant, put it in DECL_INITIAL so we get
8638 static initialization and use in constant expressions. */
8639 init = maybe_constant_init (expr);
8640 if (TREE_CONSTANT (init))
8642 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
8644 /* 5.19 says that a constant expression can include an
8645 lvalue-rvalue conversion applied to "a glvalue of literal type
8646 that refers to a non-volatile temporary object initialized
8647 with a constant expression". Rather than try to communicate
8648 that this VAR_DECL is a temporary, just mark it constexpr.
8650 Currently this is only useful for initializer_list temporaries,
8651 since reference vars can't appear in constant expressions. */
8652 DECL_DECLARED_CONSTEXPR_P (var) = true;
8653 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var) = true;
8654 TREE_CONSTANT (var) = true;
8656 DECL_INITIAL (var) = init;
8657 init = NULL_TREE;
8659 else
8660 /* Create the INIT_EXPR that will initialize the temporary
8661 variable. */
8662 init = build2 (INIT_EXPR, type, var, expr);
8663 if (at_function_scope_p ())
8665 add_decl_expr (var);
8667 if (TREE_STATIC (var))
8668 init = add_stmt_to_compound (init, register_dtor_fn (var));
8669 else
8671 tree cleanup = cxx_maybe_build_cleanup (var, tf_warning_or_error);
8672 if (cleanup)
8673 VEC_safe_push (tree, gc, *cleanups, cleanup);
8676 /* We must be careful to destroy the temporary only
8677 after its initialization has taken place. If the
8678 initialization throws an exception, then the
8679 destructor should not be run. We cannot simply
8680 transform INIT into something like:
8682 (INIT, ({ CLEANUP_STMT; }))
8684 because emit_local_var always treats the
8685 initializer as a full-expression. Thus, the
8686 destructor would run too early; it would run at the
8687 end of initializing the reference variable, rather
8688 than at the end of the block enclosing the
8689 reference variable.
8691 The solution is to pass back a cleanup expression
8692 which the caller is responsible for attaching to
8693 the statement tree. */
8695 else
8697 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
8698 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
8699 static_aggregates = tree_cons (NULL_TREE, var,
8700 static_aggregates);
8703 *initp = init;
8704 return var;
8707 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
8708 initializing a variable of that TYPE. */
8710 tree
8711 initialize_reference (tree type, tree expr,
8712 int flags, tsubst_flags_t complain)
8714 conversion *conv;
8715 void *p;
8717 if (type == error_mark_node || error_operand_p (expr))
8718 return error_mark_node;
8720 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8721 p = conversion_obstack_alloc (0);
8723 conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
8724 flags);
8725 if (!conv || conv->bad_p)
8727 if (complain & tf_error)
8729 if (conv)
8730 convert_like (conv, expr, complain);
8731 else if (!CP_TYPE_CONST_P (TREE_TYPE (type))
8732 && !TYPE_REF_IS_RVALUE (type)
8733 && !real_lvalue_p (expr))
8734 error ("invalid initialization of non-const reference of "
8735 "type %qT from an rvalue of type %qT",
8736 type, TREE_TYPE (expr));
8737 else
8738 error ("invalid initialization of reference of type "
8739 "%qT from expression of type %qT", type,
8740 TREE_TYPE (expr));
8742 return error_mark_node;
8745 gcc_assert (conv->kind == ck_ref_bind);
8747 /* Perform the conversion. */
8748 expr = convert_like (conv, expr, complain);
8750 /* Free all the conversions we allocated. */
8751 obstack_free (&conversion_obstack, p);
8753 return expr;
8756 /* Subroutine of extend_ref_init_temps. Possibly extend one initializer,
8757 which is bound either to a reference or a std::initializer_list. */
8759 static tree
8760 extend_ref_init_temps_1 (tree decl, tree init, VEC(tree,gc) **cleanups)
8762 tree sub = init;
8763 tree *p;
8764 STRIP_NOPS (sub);
8765 if (TREE_CODE (sub) != ADDR_EXPR)
8766 return init;
8767 /* Deal with binding to a subobject. */
8768 for (p = &TREE_OPERAND (sub, 0); TREE_CODE (*p) == COMPONENT_REF; )
8769 p = &TREE_OPERAND (*p, 0);
8770 if (TREE_CODE (*p) == TARGET_EXPR)
8772 tree subinit = NULL_TREE;
8773 *p = set_up_extended_ref_temp (decl, *p, cleanups, &subinit);
8774 if (subinit)
8775 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), subinit, init);
8777 return init;
8780 /* INIT is part of the initializer for DECL. If there are any
8781 reference or initializer lists being initialized, extend their
8782 lifetime to match that of DECL. */
8784 tree
8785 extend_ref_init_temps (tree decl, tree init, VEC(tree,gc) **cleanups)
8787 tree type = TREE_TYPE (init);
8788 if (processing_template_decl)
8789 return init;
8790 if (TREE_CODE (type) == REFERENCE_TYPE)
8791 init = extend_ref_init_temps_1 (decl, init, cleanups);
8792 else if (is_std_init_list (type))
8794 /* The temporary array underlying a std::initializer_list
8795 is handled like a reference temporary. */
8796 tree ctor = init;
8797 if (TREE_CODE (ctor) == TARGET_EXPR)
8798 ctor = TARGET_EXPR_INITIAL (ctor);
8799 if (TREE_CODE (ctor) == CONSTRUCTOR)
8801 tree array = CONSTRUCTOR_ELT (ctor, 0)->value;
8802 array = extend_ref_init_temps_1 (decl, array, cleanups);
8803 CONSTRUCTOR_ELT (ctor, 0)->value = array;
8806 else if (TREE_CODE (init) == CONSTRUCTOR)
8808 unsigned i;
8809 constructor_elt *p;
8810 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (init);
8811 FOR_EACH_VEC_ELT (constructor_elt, elts, i, p)
8812 p->value = extend_ref_init_temps (decl, p->value, cleanups);
8815 return init;
8818 /* Returns true iff TYPE is some variant of std::initializer_list. */
8820 bool
8821 is_std_init_list (tree type)
8823 /* Look through typedefs. */
8824 if (!TYPE_P (type))
8825 return false;
8826 type = TYPE_MAIN_VARIANT (type);
8827 return (CLASS_TYPE_P (type)
8828 && CP_TYPE_CONTEXT (type) == std_node
8829 && strcmp (TYPE_NAME_STRING (type), "initializer_list") == 0);
8832 /* Returns true iff DECL is a list constructor: i.e. a constructor which
8833 will accept an argument list of a single std::initializer_list<T>. */
8835 bool
8836 is_list_ctor (tree decl)
8838 tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
8839 tree arg;
8841 if (!args || args == void_list_node)
8842 return false;
8844 arg = non_reference (TREE_VALUE (args));
8845 if (!is_std_init_list (arg))
8846 return false;
8848 args = TREE_CHAIN (args);
8850 if (args && args != void_list_node && !TREE_PURPOSE (args))
8851 /* There are more non-defaulted parms. */
8852 return false;
8854 return true;
8857 #include "gt-cp-call.h"