Move array-type va_list handling to build_va_arg
[official-gcc.git] / gcc / cp / call.c
blob07ccea99971e0ae17d92dc7991549ec78185785f
1 /* Functions related to invoking methods and overloaded functions.
2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com) and
4 modified by Brendan Kehoe (brendan@cygnus.com).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
23 /* High-level class interface. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "hash-set.h"
30 #include "machmode.h"
31 #include "vec.h"
32 #include "double-int.h"
33 #include "input.h"
34 #include "alias.h"
35 #include "symtab.h"
36 #include "wide-int.h"
37 #include "inchash.h"
38 #include "tree.h"
39 #include "stor-layout.h"
40 #include "trans-mem.h"
41 #include "stringpool.h"
42 #include "cp-tree.h"
43 #include "flags.h"
44 #include "toplev.h"
45 #include "diagnostic-core.h"
46 #include "intl.h"
47 #include "target.h"
48 #include "convert.h"
49 #include "langhooks.h"
50 #include "c-family/c-objc.h"
51 #include "timevar.h"
52 #include "hash-map.h"
53 #include "is-a.h"
54 #include "plugin-api.h"
55 #include "hard-reg-set.h"
56 #include "input.h"
57 #include "function.h"
58 #include "ipa-ref.h"
59 #include "cgraph.h"
60 #include "wide-int.h"
61 #include "internal-fn.h"
63 /* The various kinds of conversion. */
65 typedef enum conversion_kind {
66 ck_identity,
67 ck_lvalue,
68 ck_qual,
69 ck_std,
70 ck_ptr,
71 ck_pmem,
72 ck_base,
73 ck_ref_bind,
74 ck_user,
75 ck_ambig,
76 ck_list,
77 ck_aggr,
78 ck_rvalue
79 } conversion_kind;
81 /* The rank of the conversion. Order of the enumerals matters; better
82 conversions should come earlier in the list. */
84 typedef enum conversion_rank {
85 cr_identity,
86 cr_exact,
87 cr_promotion,
88 cr_std,
89 cr_pbool,
90 cr_user,
91 cr_ellipsis,
92 cr_bad
93 } conversion_rank;
95 /* An implicit conversion sequence, in the sense of [over.best.ics].
96 The first conversion to be performed is at the end of the chain.
97 That conversion is always a cr_identity conversion. */
99 typedef struct conversion conversion;
100 struct conversion {
101 /* The kind of conversion represented by this step. */
102 conversion_kind kind;
103 /* The rank of this conversion. */
104 conversion_rank rank;
105 BOOL_BITFIELD user_conv_p : 1;
106 BOOL_BITFIELD ellipsis_p : 1;
107 BOOL_BITFIELD this_p : 1;
108 /* True if this conversion would be permitted with a bending of
109 language standards, e.g. disregarding pointer qualifiers or
110 converting integers to pointers. */
111 BOOL_BITFIELD bad_p : 1;
112 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
113 temporary should be created to hold the result of the
114 conversion. */
115 BOOL_BITFIELD need_temporary_p : 1;
116 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
117 from a pointer-to-derived to pointer-to-base is being performed. */
118 BOOL_BITFIELD base_p : 1;
119 /* If KIND is ck_ref_bind, true when either an lvalue reference is
120 being bound to an lvalue expression or an rvalue reference is
121 being bound to an rvalue expression. If KIND is ck_rvalue,
122 true when we should treat an lvalue as an rvalue (12.8p33). If
123 KIND is ck_base, always false. */
124 BOOL_BITFIELD rvaluedness_matches_p: 1;
125 BOOL_BITFIELD check_narrowing: 1;
126 /* The type of the expression resulting from the conversion. */
127 tree type;
128 union {
129 /* The next conversion in the chain. Since the conversions are
130 arranged from outermost to innermost, the NEXT conversion will
131 actually be performed before this conversion. This variant is
132 used only when KIND is neither ck_identity, ck_ambig nor
133 ck_list. Please use the next_conversion function instead
134 of using this field directly. */
135 conversion *next;
136 /* The expression at the beginning of the conversion chain. This
137 variant is used only if KIND is ck_identity or ck_ambig. */
138 tree expr;
139 /* The array of conversions for an initializer_list, so this
140 variant is used only when KIN D is ck_list. */
141 conversion **list;
142 } u;
143 /* The function candidate corresponding to this conversion
144 sequence. This field is only used if KIND is ck_user. */
145 struct z_candidate *cand;
148 #define CONVERSION_RANK(NODE) \
149 ((NODE)->bad_p ? cr_bad \
150 : (NODE)->ellipsis_p ? cr_ellipsis \
151 : (NODE)->user_conv_p ? cr_user \
152 : (NODE)->rank)
154 #define BAD_CONVERSION_RANK(NODE) \
155 ((NODE)->ellipsis_p ? cr_ellipsis \
156 : (NODE)->user_conv_p ? cr_user \
157 : (NODE)->rank)
159 static struct obstack conversion_obstack;
160 static bool conversion_obstack_initialized;
161 struct rejection_reason;
163 static struct z_candidate * tourney (struct z_candidate *, tsubst_flags_t);
164 static int equal_functions (tree, tree);
165 static int joust (struct z_candidate *, struct z_candidate *, bool,
166 tsubst_flags_t);
167 static int compare_ics (conversion *, conversion *);
168 static tree build_over_call (struct z_candidate *, int, tsubst_flags_t);
169 static tree build_java_interface_fn_ref (tree, tree);
170 #define convert_like(CONV, EXPR, COMPLAIN) \
171 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
172 /*issue_conversion_warnings=*/true, \
173 /*c_cast_p=*/false, (COMPLAIN))
174 #define convert_like_with_context(CONV, EXPR, FN, ARGNO, COMPLAIN ) \
175 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
176 /*issue_conversion_warnings=*/true, \
177 /*c_cast_p=*/false, (COMPLAIN))
178 static tree convert_like_real (conversion *, tree, tree, int, int, bool,
179 bool, tsubst_flags_t);
180 static void op_error (location_t, enum tree_code, enum tree_code, tree,
181 tree, tree, bool);
182 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int,
183 tsubst_flags_t);
184 static void print_z_candidate (location_t, const char *, struct z_candidate *);
185 static void print_z_candidates (location_t, struct z_candidate *);
186 static tree build_this (tree);
187 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
188 static bool any_strictly_viable (struct z_candidate *);
189 static struct z_candidate *add_template_candidate
190 (struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
191 tree, tree, tree, int, unification_kind_t, tsubst_flags_t);
192 static struct z_candidate *add_template_candidate_real
193 (struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
194 tree, tree, tree, int, tree, unification_kind_t, tsubst_flags_t);
195 static struct z_candidate *add_template_conv_candidate
196 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *,
197 tree, tree, tree, tsubst_flags_t);
198 static void add_builtin_candidates
199 (struct z_candidate **, enum tree_code, enum tree_code,
200 tree, tree *, int, tsubst_flags_t);
201 static void add_builtin_candidate
202 (struct z_candidate **, enum tree_code, enum tree_code,
203 tree, tree, tree, tree *, tree *, int, tsubst_flags_t);
204 static bool is_complete (tree);
205 static void build_builtin_candidate
206 (struct z_candidate **, tree, tree, tree, tree *, tree *,
207 int, tsubst_flags_t);
208 static struct z_candidate *add_conv_candidate
209 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *, tree,
210 tree, tsubst_flags_t);
211 static struct z_candidate *add_function_candidate
212 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *, tree,
213 tree, int, tsubst_flags_t);
214 static conversion *implicit_conversion (tree, tree, tree, bool, int,
215 tsubst_flags_t);
216 static conversion *standard_conversion (tree, tree, tree, bool, int);
217 static conversion *reference_binding (tree, tree, tree, bool, int,
218 tsubst_flags_t);
219 static conversion *build_conv (conversion_kind, tree, conversion *);
220 static conversion *build_list_conv (tree, tree, int, tsubst_flags_t);
221 static conversion *next_conversion (conversion *);
222 static bool is_subseq (conversion *, conversion *);
223 static conversion *maybe_handle_ref_bind (conversion **);
224 static void maybe_handle_implicit_object (conversion **);
225 static struct z_candidate *add_candidate
226 (struct z_candidate **, tree, tree, const vec<tree, va_gc> *, size_t,
227 conversion **, tree, tree, int, struct rejection_reason *, int);
228 static tree source_type (conversion *);
229 static void add_warning (struct z_candidate *, struct z_candidate *);
230 static bool reference_compatible_p (tree, tree);
231 static conversion *direct_reference_binding (tree, conversion *);
232 static bool promoted_arithmetic_type_p (tree);
233 static conversion *conditional_conversion (tree, tree, tsubst_flags_t);
234 static char *name_as_c_string (tree, tree, bool *);
235 static tree prep_operand (tree);
236 static void add_candidates (tree, tree, const vec<tree, va_gc> *, tree, tree,
237 bool, tree, tree, int, struct z_candidate **,
238 tsubst_flags_t);
239 static conversion *merge_conversion_sequences (conversion *, conversion *);
240 static tree build_temp (tree, tree, int, diagnostic_t *, tsubst_flags_t);
242 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
243 NAME can take many forms... */
245 bool
246 check_dtor_name (tree basetype, tree name)
248 /* Just accept something we've already complained about. */
249 if (name == error_mark_node)
250 return true;
252 if (TREE_CODE (name) == TYPE_DECL)
253 name = TREE_TYPE (name);
254 else if (TYPE_P (name))
255 /* OK */;
256 else if (identifier_p (name))
258 if ((MAYBE_CLASS_TYPE_P (basetype)
259 && name == constructor_name (basetype))
260 || (TREE_CODE (basetype) == ENUMERAL_TYPE
261 && name == TYPE_IDENTIFIER (basetype)))
262 return true;
263 else
264 name = get_type_value (name);
266 else
268 /* In the case of:
270 template <class T> struct S { ~S(); };
271 int i;
272 i.~S();
274 NAME will be a class template. */
275 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
276 return false;
279 if (!name || name == error_mark_node)
280 return false;
281 return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
284 /* We want the address of a function or method. We avoid creating a
285 pointer-to-member function. */
287 tree
288 build_addr_func (tree function, tsubst_flags_t complain)
290 tree type = TREE_TYPE (function);
292 /* We have to do these by hand to avoid real pointer to member
293 functions. */
294 if (TREE_CODE (type) == METHOD_TYPE)
296 if (TREE_CODE (function) == OFFSET_REF)
298 tree object = build_address (TREE_OPERAND (function, 0));
299 return get_member_function_from_ptrfunc (&object,
300 TREE_OPERAND (function, 1),
301 complain);
303 function = build_address (function);
305 else
306 function = decay_conversion (function, complain);
308 return function;
311 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
312 POINTER_TYPE to those. Note, pointer to member function types
313 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
314 two variants. build_call_a is the primitive taking an array of
315 arguments, while build_call_n is a wrapper that handles varargs. */
317 tree
318 build_call_n (tree function, int n, ...)
320 if (n == 0)
321 return build_call_a (function, 0, NULL);
322 else
324 tree *argarray = XALLOCAVEC (tree, n);
325 va_list ap;
326 int i;
328 va_start (ap, n);
329 for (i = 0; i < n; i++)
330 argarray[i] = va_arg (ap, tree);
331 va_end (ap);
332 return build_call_a (function, n, argarray);
336 /* Update various flags in cfun and the call itself based on what is being
337 called. Split out of build_call_a so that bot_manip can use it too. */
339 void
340 set_flags_from_callee (tree call)
342 bool nothrow;
343 tree decl = get_callee_fndecl (call);
345 /* We check both the decl and the type; a function may be known not to
346 throw without being declared throw(). */
347 nothrow = decl && TREE_NOTHROW (decl);
348 if (CALL_EXPR_FN (call))
349 nothrow |= TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (call))));
350 else if (internal_fn_flags (CALL_EXPR_IFN (call)) & ECF_NOTHROW)
351 nothrow = true;
353 if (!nothrow && at_function_scope_p () && cfun && cp_function_chain)
354 cp_function_chain->can_throw = 1;
356 if (decl && TREE_THIS_VOLATILE (decl) && cfun && cp_function_chain)
357 current_function_returns_abnormally = 1;
359 TREE_NOTHROW (call) = nothrow;
362 tree
363 build_call_a (tree function, int n, tree *argarray)
365 tree decl;
366 tree result_type;
367 tree fntype;
368 int i;
370 function = build_addr_func (function, tf_warning_or_error);
372 gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
373 fntype = TREE_TYPE (TREE_TYPE (function));
374 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
375 || TREE_CODE (fntype) == METHOD_TYPE);
376 result_type = TREE_TYPE (fntype);
377 /* An rvalue has no cv-qualifiers. */
378 if (SCALAR_TYPE_P (result_type) || VOID_TYPE_P (result_type))
379 result_type = cv_unqualified (result_type);
381 function = build_call_array_loc (input_location,
382 result_type, function, n, argarray);
383 set_flags_from_callee (function);
385 decl = get_callee_fndecl (function);
387 if (decl && !TREE_USED (decl))
389 /* We invoke build_call directly for several library
390 functions. These may have been declared normally if
391 we're building libgcc, so we can't just check
392 DECL_ARTIFICIAL. */
393 gcc_assert (DECL_ARTIFICIAL (decl)
394 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
395 "__", 2));
396 mark_used (decl);
399 require_complete_eh_spec_types (fntype, decl);
401 TREE_HAS_CONSTRUCTOR (function) = (decl && DECL_CONSTRUCTOR_P (decl));
403 /* Don't pass empty class objects by value. This is useful
404 for tags in STL, which are used to control overload resolution.
405 We don't need to handle other cases of copying empty classes. */
406 if (! decl || ! DECL_BUILT_IN (decl))
407 for (i = 0; i < n; i++)
409 tree arg = CALL_EXPR_ARG (function, i);
410 if (is_empty_class (TREE_TYPE (arg))
411 && ! TREE_ADDRESSABLE (TREE_TYPE (arg)))
413 tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (arg));
414 arg = build2 (COMPOUND_EXPR, TREE_TYPE (t), arg, t);
415 CALL_EXPR_ARG (function, i) = arg;
419 return function;
422 /* Build something of the form ptr->method (args)
423 or object.method (args). This can also build
424 calls to constructors, and find friends.
426 Member functions always take their class variable
427 as a pointer.
429 INSTANCE is a class instance.
431 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
433 PARMS help to figure out what that NAME really refers to.
435 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
436 down to the real instance type to use for access checking. We need this
437 information to get protected accesses correct.
439 FLAGS is the logical disjunction of zero or more LOOKUP_
440 flags. See cp-tree.h for more info.
442 If this is all OK, calls build_function_call with the resolved
443 member function.
445 This function must also handle being called to perform
446 initialization, promotion/coercion of arguments, and
447 instantiation of default parameters.
449 Note that NAME may refer to an instance variable name. If
450 `operator()()' is defined for the type of that field, then we return
451 that result. */
453 /* New overloading code. */
455 typedef struct z_candidate z_candidate;
457 typedef struct candidate_warning candidate_warning;
458 struct candidate_warning {
459 z_candidate *loser;
460 candidate_warning *next;
463 /* Information for providing diagnostics about why overloading failed. */
465 enum rejection_reason_code {
466 rr_none,
467 rr_arity,
468 rr_explicit_conversion,
469 rr_template_conversion,
470 rr_arg_conversion,
471 rr_bad_arg_conversion,
472 rr_template_unification,
473 rr_invalid_copy
476 struct conversion_info {
477 /* The index of the argument, 0-based. */
478 int n_arg;
479 /* The actual argument or its type. */
480 tree from;
481 /* The type of the parameter. */
482 tree to_type;
485 struct rejection_reason {
486 enum rejection_reason_code code;
487 union {
488 /* Information about an arity mismatch. */
489 struct {
490 /* The expected number of arguments. */
491 int expected;
492 /* The actual number of arguments in the call. */
493 int actual;
494 /* Whether the call was a varargs call. */
495 bool call_varargs_p;
496 } arity;
497 /* Information about an argument conversion mismatch. */
498 struct conversion_info conversion;
499 /* Same, but for bad argument conversions. */
500 struct conversion_info bad_conversion;
501 /* Information about template unification failures. These are the
502 parameters passed to fn_type_unification. */
503 struct {
504 tree tmpl;
505 tree explicit_targs;
506 int num_targs;
507 const tree *args;
508 unsigned int nargs;
509 tree return_type;
510 unification_kind_t strict;
511 int flags;
512 } template_unification;
513 /* Information about template instantiation failures. These are the
514 parameters passed to instantiate_template. */
515 struct {
516 tree tmpl;
517 tree targs;
518 } template_instantiation;
519 } u;
522 struct z_candidate {
523 /* The FUNCTION_DECL that will be called if this candidate is
524 selected by overload resolution. */
525 tree fn;
526 /* If not NULL_TREE, the first argument to use when calling this
527 function. */
528 tree first_arg;
529 /* The rest of the arguments to use when calling this function. If
530 there are no further arguments this may be NULL or it may be an
531 empty vector. */
532 const vec<tree, va_gc> *args;
533 /* The implicit conversion sequences for each of the arguments to
534 FN. */
535 conversion **convs;
536 /* The number of implicit conversion sequences. */
537 size_t num_convs;
538 /* If FN is a user-defined conversion, the standard conversion
539 sequence from the type returned by FN to the desired destination
540 type. */
541 conversion *second_conv;
542 struct rejection_reason *reason;
543 /* If FN is a member function, the binfo indicating the path used to
544 qualify the name of FN at the call site. This path is used to
545 determine whether or not FN is accessible if it is selected by
546 overload resolution. The DECL_CONTEXT of FN will always be a
547 (possibly improper) base of this binfo. */
548 tree access_path;
549 /* If FN is a non-static member function, the binfo indicating the
550 subobject to which the `this' pointer should be converted if FN
551 is selected by overload resolution. The type pointed to by
552 the `this' pointer must correspond to the most derived class
553 indicated by the CONVERSION_PATH. */
554 tree conversion_path;
555 tree template_decl;
556 tree explicit_targs;
557 candidate_warning *warnings;
558 z_candidate *next;
559 int viable;
561 /* The flags active in add_candidate. */
562 int flags;
565 /* Returns true iff T is a null pointer constant in the sense of
566 [conv.ptr]. */
568 bool
569 null_ptr_cst_p (tree t)
571 /* [conv.ptr]
573 A null pointer constant is an integral constant expression
574 (_expr.const_) rvalue of integer type that evaluates to zero or
575 an rvalue of type std::nullptr_t. */
576 if (NULLPTR_TYPE_P (TREE_TYPE (t)))
577 return true;
578 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)))
580 /* Core issue 903 says only literal 0 is a null pointer constant. */
581 if (cxx_dialect < cxx11)
582 t = fold_non_dependent_expr (t);
583 STRIP_NOPS (t);
584 if (integer_zerop (t) && !TREE_OVERFLOW (t))
585 return true;
587 return false;
590 /* Returns true iff T is a null member pointer value (4.11). */
592 bool
593 null_member_pointer_value_p (tree t)
595 tree type = TREE_TYPE (t);
596 if (!type)
597 return false;
598 else if (TYPE_PTRMEMFUNC_P (type))
599 return (TREE_CODE (t) == CONSTRUCTOR
600 && integer_zerop (CONSTRUCTOR_ELT (t, 0)->value));
601 else if (TYPE_PTRDATAMEM_P (type))
602 return integer_all_onesp (t);
603 else
604 return false;
607 /* Returns nonzero if PARMLIST consists of only default parms,
608 ellipsis, and/or undeduced parameter packs. */
610 bool
611 sufficient_parms_p (const_tree parmlist)
613 for (; parmlist && parmlist != void_list_node;
614 parmlist = TREE_CHAIN (parmlist))
615 if (!TREE_PURPOSE (parmlist)
616 && !PACK_EXPANSION_P (TREE_VALUE (parmlist)))
617 return false;
618 return true;
621 /* Allocate N bytes of memory from the conversion obstack. The memory
622 is zeroed before being returned. */
624 static void *
625 conversion_obstack_alloc (size_t n)
627 void *p;
628 if (!conversion_obstack_initialized)
630 gcc_obstack_init (&conversion_obstack);
631 conversion_obstack_initialized = true;
633 p = obstack_alloc (&conversion_obstack, n);
634 memset (p, 0, n);
635 return p;
638 /* Allocate rejection reasons. */
640 static struct rejection_reason *
641 alloc_rejection (enum rejection_reason_code code)
643 struct rejection_reason *p;
644 p = (struct rejection_reason *) conversion_obstack_alloc (sizeof *p);
645 p->code = code;
646 return p;
649 static struct rejection_reason *
650 arity_rejection (tree first_arg, int expected, int actual)
652 struct rejection_reason *r = alloc_rejection (rr_arity);
653 int adjust = first_arg != NULL_TREE;
654 r->u.arity.expected = expected - adjust;
655 r->u.arity.actual = actual - adjust;
656 return r;
659 static struct rejection_reason *
660 arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
662 struct rejection_reason *r = alloc_rejection (rr_arg_conversion);
663 int adjust = first_arg != NULL_TREE;
664 r->u.conversion.n_arg = n_arg - adjust;
665 r->u.conversion.from = from;
666 r->u.conversion.to_type = to;
667 return r;
670 static struct rejection_reason *
671 bad_arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
673 struct rejection_reason *r = alloc_rejection (rr_bad_arg_conversion);
674 int adjust = first_arg != NULL_TREE;
675 r->u.bad_conversion.n_arg = n_arg - adjust;
676 r->u.bad_conversion.from = from;
677 r->u.bad_conversion.to_type = to;
678 return r;
681 static struct rejection_reason *
682 explicit_conversion_rejection (tree from, tree to)
684 struct rejection_reason *r = alloc_rejection (rr_explicit_conversion);
685 r->u.conversion.n_arg = 0;
686 r->u.conversion.from = from;
687 r->u.conversion.to_type = to;
688 return r;
691 static struct rejection_reason *
692 template_conversion_rejection (tree from, tree to)
694 struct rejection_reason *r = alloc_rejection (rr_template_conversion);
695 r->u.conversion.n_arg = 0;
696 r->u.conversion.from = from;
697 r->u.conversion.to_type = to;
698 return r;
701 static struct rejection_reason *
702 template_unification_rejection (tree tmpl, tree explicit_targs, tree targs,
703 const tree *args, unsigned int nargs,
704 tree return_type, unification_kind_t strict,
705 int flags)
707 size_t args_n_bytes = sizeof (*args) * nargs;
708 tree *args1 = (tree *) conversion_obstack_alloc (args_n_bytes);
709 struct rejection_reason *r = alloc_rejection (rr_template_unification);
710 r->u.template_unification.tmpl = tmpl;
711 r->u.template_unification.explicit_targs = explicit_targs;
712 r->u.template_unification.num_targs = TREE_VEC_LENGTH (targs);
713 /* Copy args to our own storage. */
714 memcpy (args1, args, args_n_bytes);
715 r->u.template_unification.args = args1;
716 r->u.template_unification.nargs = nargs;
717 r->u.template_unification.return_type = return_type;
718 r->u.template_unification.strict = strict;
719 r->u.template_unification.flags = flags;
720 return r;
723 static struct rejection_reason *
724 template_unification_error_rejection (void)
726 return alloc_rejection (rr_template_unification);
729 static struct rejection_reason *
730 invalid_copy_with_fn_template_rejection (void)
732 struct rejection_reason *r = alloc_rejection (rr_invalid_copy);
733 return r;
736 /* Dynamically allocate a conversion. */
738 static conversion *
739 alloc_conversion (conversion_kind kind)
741 conversion *c;
742 c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
743 c->kind = kind;
744 return c;
747 #ifdef ENABLE_CHECKING
749 /* Make sure that all memory on the conversion obstack has been
750 freed. */
752 void
753 validate_conversion_obstack (void)
755 if (conversion_obstack_initialized)
756 gcc_assert ((obstack_next_free (&conversion_obstack)
757 == obstack_base (&conversion_obstack)));
760 #endif /* ENABLE_CHECKING */
762 /* Dynamically allocate an array of N conversions. */
764 static conversion **
765 alloc_conversions (size_t n)
767 return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
770 static conversion *
771 build_conv (conversion_kind code, tree type, conversion *from)
773 conversion *t;
774 conversion_rank rank = CONVERSION_RANK (from);
776 /* Note that the caller is responsible for filling in t->cand for
777 user-defined conversions. */
778 t = alloc_conversion (code);
779 t->type = type;
780 t->u.next = from;
782 switch (code)
784 case ck_ptr:
785 case ck_pmem:
786 case ck_base:
787 case ck_std:
788 if (rank < cr_std)
789 rank = cr_std;
790 break;
792 case ck_qual:
793 if (rank < cr_exact)
794 rank = cr_exact;
795 break;
797 default:
798 break;
800 t->rank = rank;
801 t->user_conv_p = (code == ck_user || from->user_conv_p);
802 t->bad_p = from->bad_p;
803 t->base_p = false;
804 return t;
807 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
808 specialization of std::initializer_list<T>, if such a conversion is
809 possible. */
811 static conversion *
812 build_list_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
814 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type), 0);
815 unsigned len = CONSTRUCTOR_NELTS (ctor);
816 conversion **subconvs = alloc_conversions (len);
817 conversion *t;
818 unsigned i;
819 tree val;
821 /* Within a list-initialization we can have more user-defined
822 conversions. */
823 flags &= ~LOOKUP_NO_CONVERSION;
824 /* But no narrowing conversions. */
825 flags |= LOOKUP_NO_NARROWING;
827 /* Can't make an array of these types. */
828 if (TREE_CODE (elttype) == REFERENCE_TYPE
829 || TREE_CODE (elttype) == FUNCTION_TYPE
830 || VOID_TYPE_P (elttype))
831 return NULL;
833 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
835 conversion *sub
836 = implicit_conversion (elttype, TREE_TYPE (val), val,
837 false, flags, complain);
838 if (sub == NULL)
839 return NULL;
841 subconvs[i] = sub;
844 t = alloc_conversion (ck_list);
845 t->type = type;
846 t->u.list = subconvs;
847 t->rank = cr_exact;
849 for (i = 0; i < len; ++i)
851 conversion *sub = subconvs[i];
852 if (sub->rank > t->rank)
853 t->rank = sub->rank;
854 if (sub->user_conv_p)
855 t->user_conv_p = true;
856 if (sub->bad_p)
857 t->bad_p = true;
860 return t;
863 /* Return the next conversion of the conversion chain (if applicable),
864 or NULL otherwise. Please use this function instead of directly
865 accessing fields of struct conversion. */
867 static conversion *
868 next_conversion (conversion *conv)
870 if (conv == NULL
871 || conv->kind == ck_identity
872 || conv->kind == ck_ambig
873 || conv->kind == ck_list)
874 return NULL;
875 return conv->u.next;
878 /* Subroutine of build_aggr_conv: check whether CTOR, a braced-init-list,
879 is a valid aggregate initializer for array type ATYPE. */
881 static bool
882 can_convert_array (tree atype, tree ctor, int flags, tsubst_flags_t complain)
884 unsigned i;
885 tree elttype = TREE_TYPE (atype);
886 for (i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
888 tree val = CONSTRUCTOR_ELT (ctor, i)->value;
889 bool ok;
890 if (TREE_CODE (elttype) == ARRAY_TYPE
891 && TREE_CODE (val) == CONSTRUCTOR)
892 ok = can_convert_array (elttype, val, flags, complain);
893 else
894 ok = can_convert_arg (elttype, TREE_TYPE (val), val, flags,
895 complain);
896 if (!ok)
897 return false;
899 return true;
902 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
903 aggregate class, if such a conversion is possible. */
905 static conversion *
906 build_aggr_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
908 unsigned HOST_WIDE_INT i = 0;
909 conversion *c;
910 tree field = next_initializable_field (TYPE_FIELDS (type));
911 tree empty_ctor = NULL_TREE;
913 ctor = reshape_init (type, ctor, tf_none);
914 if (ctor == error_mark_node)
915 return NULL;
917 /* The conversions within the init-list aren't affected by the enclosing
918 context; they're always simple copy-initialization. */
919 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
921 for (; field; field = next_initializable_field (DECL_CHAIN (field)))
923 tree ftype = TREE_TYPE (field);
924 tree val;
925 bool ok;
927 if (i < CONSTRUCTOR_NELTS (ctor))
928 val = CONSTRUCTOR_ELT (ctor, i)->value;
929 else if (TREE_CODE (ftype) == REFERENCE_TYPE)
930 /* Value-initialization of reference is ill-formed. */
931 return NULL;
932 else
934 if (empty_ctor == NULL_TREE)
935 empty_ctor = build_constructor (init_list_type_node, NULL);
936 val = empty_ctor;
938 ++i;
940 if (TREE_CODE (ftype) == ARRAY_TYPE
941 && TREE_CODE (val) == CONSTRUCTOR)
942 ok = can_convert_array (ftype, val, flags, complain);
943 else
944 ok = can_convert_arg (ftype, TREE_TYPE (val), val, flags,
945 complain);
947 if (!ok)
948 return NULL;
950 if (TREE_CODE (type) == UNION_TYPE)
951 break;
954 if (i < CONSTRUCTOR_NELTS (ctor))
955 return NULL;
957 c = alloc_conversion (ck_aggr);
958 c->type = type;
959 c->rank = cr_exact;
960 c->user_conv_p = true;
961 c->check_narrowing = true;
962 c->u.next = NULL;
963 return c;
966 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
967 array type, if such a conversion is possible. */
969 static conversion *
970 build_array_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
972 conversion *c;
973 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
974 tree elttype = TREE_TYPE (type);
975 unsigned i;
976 tree val;
977 bool bad = false;
978 bool user = false;
979 enum conversion_rank rank = cr_exact;
981 /* We might need to propagate the size from the element to the array. */
982 complete_type (type);
984 if (TYPE_DOMAIN (type)
985 && !variably_modified_type_p (TYPE_DOMAIN (type), NULL_TREE))
987 unsigned HOST_WIDE_INT alen = tree_to_uhwi (array_type_nelts_top (type));
988 if (alen < len)
989 return NULL;
992 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
994 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
996 conversion *sub
997 = implicit_conversion (elttype, TREE_TYPE (val), val,
998 false, flags, complain);
999 if (sub == NULL)
1000 return NULL;
1002 if (sub->rank > rank)
1003 rank = sub->rank;
1004 if (sub->user_conv_p)
1005 user = true;
1006 if (sub->bad_p)
1007 bad = true;
1010 c = alloc_conversion (ck_aggr);
1011 c->type = type;
1012 c->rank = rank;
1013 c->user_conv_p = user;
1014 c->bad_p = bad;
1015 c->u.next = NULL;
1016 return c;
1019 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
1020 complex type, if such a conversion is possible. */
1022 static conversion *
1023 build_complex_conv (tree type, tree ctor, int flags,
1024 tsubst_flags_t complain)
1026 conversion *c;
1027 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
1028 tree elttype = TREE_TYPE (type);
1029 unsigned i;
1030 tree val;
1031 bool bad = false;
1032 bool user = false;
1033 enum conversion_rank rank = cr_exact;
1035 if (len != 2)
1036 return NULL;
1038 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
1040 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
1042 conversion *sub
1043 = implicit_conversion (elttype, TREE_TYPE (val), val,
1044 false, flags, complain);
1045 if (sub == NULL)
1046 return NULL;
1048 if (sub->rank > rank)
1049 rank = sub->rank;
1050 if (sub->user_conv_p)
1051 user = true;
1052 if (sub->bad_p)
1053 bad = true;
1056 c = alloc_conversion (ck_aggr);
1057 c->type = type;
1058 c->rank = rank;
1059 c->user_conv_p = user;
1060 c->bad_p = bad;
1061 c->u.next = NULL;
1062 return c;
1065 /* Build a representation of the identity conversion from EXPR to
1066 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
1068 static conversion *
1069 build_identity_conv (tree type, tree expr)
1071 conversion *c;
1073 c = alloc_conversion (ck_identity);
1074 c->type = type;
1075 c->u.expr = expr;
1077 return c;
1080 /* Converting from EXPR to TYPE was ambiguous in the sense that there
1081 were multiple user-defined conversions to accomplish the job.
1082 Build a conversion that indicates that ambiguity. */
1084 static conversion *
1085 build_ambiguous_conv (tree type, tree expr)
1087 conversion *c;
1089 c = alloc_conversion (ck_ambig);
1090 c->type = type;
1091 c->u.expr = expr;
1093 return c;
1096 tree
1097 strip_top_quals (tree t)
1099 if (TREE_CODE (t) == ARRAY_TYPE)
1100 return t;
1101 return cp_build_qualified_type (t, 0);
1104 /* Returns the standard conversion path (see [conv]) from type FROM to type
1105 TO, if any. For proper handling of null pointer constants, you must
1106 also pass the expression EXPR to convert from. If C_CAST_P is true,
1107 this conversion is coming from a C-style cast. */
1109 static conversion *
1110 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
1111 int flags)
1113 enum tree_code fcode, tcode;
1114 conversion *conv;
1115 bool fromref = false;
1116 tree qualified_to;
1118 to = non_reference (to);
1119 if (TREE_CODE (from) == REFERENCE_TYPE)
1121 fromref = true;
1122 from = TREE_TYPE (from);
1124 qualified_to = to;
1125 to = strip_top_quals (to);
1126 from = strip_top_quals (from);
1128 if (expr && type_unknown_p (expr))
1130 if (TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
1132 tsubst_flags_t tflags = tf_conv;
1133 expr = instantiate_type (to, expr, tflags);
1134 if (expr == error_mark_node)
1135 return NULL;
1136 from = TREE_TYPE (expr);
1138 else if (TREE_CODE (to) == BOOLEAN_TYPE)
1140 /* Necessary for eg, TEMPLATE_ID_EXPRs (c++/50961). */
1141 expr = resolve_nondeduced_context (expr);
1142 from = TREE_TYPE (expr);
1146 fcode = TREE_CODE (from);
1147 tcode = TREE_CODE (to);
1149 conv = build_identity_conv (from, expr);
1150 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
1152 from = type_decays_to (from);
1153 fcode = TREE_CODE (from);
1154 conv = build_conv (ck_lvalue, from, conv);
1156 else if (fromref || (expr && lvalue_p (expr)))
1158 if (expr)
1160 tree bitfield_type;
1161 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
1162 if (bitfield_type)
1164 from = strip_top_quals (bitfield_type);
1165 fcode = TREE_CODE (from);
1168 conv = build_conv (ck_rvalue, from, conv);
1169 if (flags & LOOKUP_PREFER_RVALUE)
1170 conv->rvaluedness_matches_p = true;
1173 /* Allow conversion between `__complex__' data types. */
1174 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
1176 /* The standard conversion sequence to convert FROM to TO is
1177 the standard conversion sequence to perform componentwise
1178 conversion. */
1179 conversion *part_conv = standard_conversion
1180 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
1182 if (part_conv)
1184 conv = build_conv (part_conv->kind, to, conv);
1185 conv->rank = part_conv->rank;
1187 else
1188 conv = NULL;
1190 return conv;
1193 if (same_type_p (from, to))
1195 if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue)
1196 conv->type = qualified_to;
1197 return conv;
1200 /* [conv.ptr]
1201 A null pointer constant can be converted to a pointer type; ... A
1202 null pointer constant of integral type can be converted to an
1203 rvalue of type std::nullptr_t. */
1204 if ((tcode == POINTER_TYPE || TYPE_PTRMEM_P (to)
1205 || NULLPTR_TYPE_P (to))
1206 && ((expr && null_ptr_cst_p (expr))
1207 || NULLPTR_TYPE_P (from)))
1208 conv = build_conv (ck_std, to, conv);
1209 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
1210 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
1212 /* For backwards brain damage compatibility, allow interconversion of
1213 pointers and integers with a pedwarn. */
1214 conv = build_conv (ck_std, to, conv);
1215 conv->bad_p = true;
1217 else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
1219 /* For backwards brain damage compatibility, allow interconversion of
1220 enums and integers with a pedwarn. */
1221 conv = build_conv (ck_std, to, conv);
1222 conv->bad_p = true;
1224 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
1225 || (TYPE_PTRDATAMEM_P (to) && TYPE_PTRDATAMEM_P (from)))
1227 tree to_pointee;
1228 tree from_pointee;
1230 if (tcode == POINTER_TYPE
1231 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
1232 TREE_TYPE (to)))
1234 else if (VOID_TYPE_P (TREE_TYPE (to))
1235 && !TYPE_PTRDATAMEM_P (from)
1236 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
1238 tree nfrom = TREE_TYPE (from);
1239 /* Don't try to apply restrict to void. */
1240 int quals = cp_type_quals (nfrom) & ~TYPE_QUAL_RESTRICT;
1241 from = build_pointer_type
1242 (cp_build_qualified_type (void_type_node, quals));
1243 conv = build_conv (ck_ptr, from, conv);
1245 else if (TYPE_PTRDATAMEM_P (from))
1247 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
1248 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
1250 if (DERIVED_FROM_P (fbase, tbase)
1251 && (same_type_ignoring_top_level_qualifiers_p
1252 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
1253 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
1255 from = build_ptrmem_type (tbase,
1256 TYPE_PTRMEM_POINTED_TO_TYPE (from));
1257 conv = build_conv (ck_pmem, from, conv);
1259 else if (!same_type_p (fbase, tbase))
1260 return NULL;
1262 else if (CLASS_TYPE_P (TREE_TYPE (from))
1263 && CLASS_TYPE_P (TREE_TYPE (to))
1264 /* [conv.ptr]
1266 An rvalue of type "pointer to cv D," where D is a
1267 class type, can be converted to an rvalue of type
1268 "pointer to cv B," where B is a base class (clause
1269 _class.derived_) of D. If B is an inaccessible
1270 (clause _class.access_) or ambiguous
1271 (_class.member.lookup_) base class of D, a program
1272 that necessitates this conversion is ill-formed.
1273 Therefore, we use DERIVED_FROM_P, and do not check
1274 access or uniqueness. */
1275 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
1277 from =
1278 cp_build_qualified_type (TREE_TYPE (to),
1279 cp_type_quals (TREE_TYPE (from)));
1280 from = build_pointer_type (from);
1281 conv = build_conv (ck_ptr, from, conv);
1282 conv->base_p = true;
1285 if (tcode == POINTER_TYPE)
1287 to_pointee = TREE_TYPE (to);
1288 from_pointee = TREE_TYPE (from);
1290 else
1292 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
1293 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
1296 if (same_type_p (from, to))
1297 /* OK */;
1298 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
1299 /* In a C-style cast, we ignore CV-qualification because we
1300 are allowed to perform a static_cast followed by a
1301 const_cast. */
1302 conv = build_conv (ck_qual, to, conv);
1303 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
1304 conv = build_conv (ck_qual, to, conv);
1305 else if (expr && string_conv_p (to, expr, 0))
1306 /* converting from string constant to char *. */
1307 conv = build_conv (ck_qual, to, conv);
1308 /* Allow conversions among compatible ObjC pointer types (base
1309 conversions have been already handled above). */
1310 else if (c_dialect_objc ()
1311 && objc_compare_types (to, from, -4, NULL_TREE))
1312 conv = build_conv (ck_ptr, to, conv);
1313 else if (ptr_reasonably_similar (to_pointee, from_pointee))
1315 conv = build_conv (ck_ptr, to, conv);
1316 conv->bad_p = true;
1318 else
1319 return NULL;
1321 from = to;
1323 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
1325 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
1326 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
1327 tree fbase = class_of_this_parm (fromfn);
1328 tree tbase = class_of_this_parm (tofn);
1330 if (!DERIVED_FROM_P (fbase, tbase)
1331 || !same_type_p (static_fn_type (fromfn),
1332 static_fn_type (tofn)))
1333 return NULL;
1335 from = build_memfn_type (fromfn,
1336 tbase,
1337 cp_type_quals (tbase),
1338 type_memfn_rqual (tofn));
1339 from = build_ptrmemfunc_type (build_pointer_type (from));
1340 conv = build_conv (ck_pmem, from, conv);
1341 conv->base_p = true;
1343 else if (tcode == BOOLEAN_TYPE)
1345 /* [conv.bool]
1347 A prvalue of arithmetic, unscoped enumeration, pointer, or pointer
1348 to member type can be converted to a prvalue of type bool. ...
1349 For direct-initialization (8.5 [dcl.init]), a prvalue of type
1350 std::nullptr_t can be converted to a prvalue of type bool; */
1351 if (ARITHMETIC_TYPE_P (from)
1352 || UNSCOPED_ENUM_P (from)
1353 || fcode == POINTER_TYPE
1354 || TYPE_PTRMEM_P (from)
1355 || NULLPTR_TYPE_P (from))
1357 conv = build_conv (ck_std, to, conv);
1358 if (fcode == POINTER_TYPE
1359 || TYPE_PTRDATAMEM_P (from)
1360 || (TYPE_PTRMEMFUNC_P (from)
1361 && conv->rank < cr_pbool)
1362 || NULLPTR_TYPE_P (from))
1363 conv->rank = cr_pbool;
1364 if (NULLPTR_TYPE_P (from) && (flags & LOOKUP_ONLYCONVERTING))
1365 conv->bad_p = true;
1366 return conv;
1369 return NULL;
1371 /* We don't check for ENUMERAL_TYPE here because there are no standard
1372 conversions to enum type. */
1373 /* As an extension, allow conversion to complex type. */
1374 else if (ARITHMETIC_TYPE_P (to))
1376 if (! (INTEGRAL_CODE_P (fcode)
1377 || (fcode == REAL_TYPE && !(flags & LOOKUP_NO_NON_INTEGRAL)))
1378 || SCOPED_ENUM_P (from))
1379 return NULL;
1380 conv = build_conv (ck_std, to, conv);
1382 /* Give this a better rank if it's a promotion. */
1383 if (same_type_p (to, type_promotes_to (from))
1384 && next_conversion (conv)->rank <= cr_promotion)
1385 conv->rank = cr_promotion;
1387 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
1388 && vector_types_convertible_p (from, to, false))
1389 return build_conv (ck_std, to, conv);
1390 else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
1391 && is_properly_derived_from (from, to))
1393 if (conv->kind == ck_rvalue)
1394 conv = next_conversion (conv);
1395 conv = build_conv (ck_base, to, conv);
1396 /* The derived-to-base conversion indicates the initialization
1397 of a parameter with base type from an object of a derived
1398 type. A temporary object is created to hold the result of
1399 the conversion unless we're binding directly to a reference. */
1400 conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
1402 else
1403 return NULL;
1405 if (flags & LOOKUP_NO_NARROWING)
1406 conv->check_narrowing = true;
1408 return conv;
1411 /* Returns nonzero if T1 is reference-related to T2. */
1413 bool
1414 reference_related_p (tree t1, tree t2)
1416 if (t1 == error_mark_node || t2 == error_mark_node)
1417 return false;
1419 t1 = TYPE_MAIN_VARIANT (t1);
1420 t2 = TYPE_MAIN_VARIANT (t2);
1422 /* [dcl.init.ref]
1424 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1425 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
1426 of T2. */
1427 return (same_type_p (t1, t2)
1428 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
1429 && DERIVED_FROM_P (t1, t2)));
1432 /* Returns nonzero if T1 is reference-compatible with T2. */
1434 static bool
1435 reference_compatible_p (tree t1, tree t2)
1437 /* [dcl.init.ref]
1439 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
1440 reference-related to T2 and cv1 is the same cv-qualification as,
1441 or greater cv-qualification than, cv2. */
1442 return (reference_related_p (t1, t2)
1443 && at_least_as_qualified_p (t1, t2));
1446 /* A reference of the indicated TYPE is being bound directly to the
1447 expression represented by the implicit conversion sequence CONV.
1448 Return a conversion sequence for this binding. */
1450 static conversion *
1451 direct_reference_binding (tree type, conversion *conv)
1453 tree t;
1455 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
1456 gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
1458 t = TREE_TYPE (type);
1460 /* [over.ics.rank]
1462 When a parameter of reference type binds directly
1463 (_dcl.init.ref_) to an argument expression, the implicit
1464 conversion sequence is the identity conversion, unless the
1465 argument expression has a type that is a derived class of the
1466 parameter type, in which case the implicit conversion sequence is
1467 a derived-to-base Conversion.
1469 If the parameter binds directly to the result of applying a
1470 conversion function to the argument expression, the implicit
1471 conversion sequence is a user-defined conversion sequence
1472 (_over.ics.user_), with the second standard conversion sequence
1473 either an identity conversion or, if the conversion function
1474 returns an entity of a type that is a derived class of the
1475 parameter type, a derived-to-base conversion. */
1476 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
1478 /* Represent the derived-to-base conversion. */
1479 conv = build_conv (ck_base, t, conv);
1480 /* We will actually be binding to the base-class subobject in
1481 the derived class, so we mark this conversion appropriately.
1482 That way, convert_like knows not to generate a temporary. */
1483 conv->need_temporary_p = false;
1485 return build_conv (ck_ref_bind, type, conv);
1488 /* Returns the conversion path from type FROM to reference type TO for
1489 purposes of reference binding. For lvalue binding, either pass a
1490 reference type to FROM or an lvalue expression to EXPR. If the
1491 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1492 the conversion returned. If C_CAST_P is true, this
1493 conversion is coming from a C-style cast. */
1495 static conversion *
1496 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags,
1497 tsubst_flags_t complain)
1499 conversion *conv = NULL;
1500 tree to = TREE_TYPE (rto);
1501 tree from = rfrom;
1502 tree tfrom;
1503 bool related_p;
1504 bool compatible_p;
1505 cp_lvalue_kind gl_kind;
1506 bool is_lvalue;
1508 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1510 expr = instantiate_type (to, expr, tf_none);
1511 if (expr == error_mark_node)
1512 return NULL;
1513 from = TREE_TYPE (expr);
1516 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1518 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
1519 /* DR 1288: Otherwise, if the initializer list has a single element
1520 of type E and ... [T's] referenced type is reference-related to E,
1521 the object or reference is initialized from that element... */
1522 if (CONSTRUCTOR_NELTS (expr) == 1)
1524 tree elt = CONSTRUCTOR_ELT (expr, 0)->value;
1525 if (error_operand_p (elt))
1526 return NULL;
1527 tree etype = TREE_TYPE (elt);
1528 if (reference_related_p (to, etype))
1530 expr = elt;
1531 from = etype;
1532 goto skip;
1535 /* Otherwise, if T is a reference type, a prvalue temporary of the
1536 type referenced by T is copy-list-initialized or
1537 direct-list-initialized, depending on the kind of initialization
1538 for the reference, and the reference is bound to that temporary. */
1539 conv = implicit_conversion (to, from, expr, c_cast_p,
1540 flags|LOOKUP_NO_TEMP_BIND, complain);
1541 skip:;
1544 if (TREE_CODE (from) == REFERENCE_TYPE)
1546 from = TREE_TYPE (from);
1547 if (!TYPE_REF_IS_RVALUE (rfrom)
1548 || TREE_CODE (from) == FUNCTION_TYPE)
1549 gl_kind = clk_ordinary;
1550 else
1551 gl_kind = clk_rvalueref;
1553 else if (expr)
1555 gl_kind = lvalue_kind (expr);
1556 if (gl_kind & clk_class)
1557 /* A class prvalue is not a glvalue. */
1558 gl_kind = clk_none;
1560 else
1561 gl_kind = clk_none;
1562 is_lvalue = gl_kind && !(gl_kind & clk_rvalueref);
1564 tfrom = from;
1565 if ((gl_kind & clk_bitfield) != 0)
1566 tfrom = unlowered_expr_type (expr);
1568 /* Figure out whether or not the types are reference-related and
1569 reference compatible. We have do do this after stripping
1570 references from FROM. */
1571 related_p = reference_related_p (to, tfrom);
1572 /* If this is a C cast, first convert to an appropriately qualified
1573 type, so that we can later do a const_cast to the desired type. */
1574 if (related_p && c_cast_p
1575 && !at_least_as_qualified_p (to, tfrom))
1576 to = cp_build_qualified_type (to, cp_type_quals (tfrom));
1577 compatible_p = reference_compatible_p (to, tfrom);
1579 /* Directly bind reference when target expression's type is compatible with
1580 the reference and expression is an lvalue. In DR391, the wording in
1581 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1582 const and rvalue references to rvalues of compatible class type.
1583 We should also do direct bindings for non-class xvalues. */
1584 if (related_p
1585 && (gl_kind
1586 || (!(flags & LOOKUP_NO_TEMP_BIND)
1587 && (CLASS_TYPE_P (from)
1588 || TREE_CODE (from) == ARRAY_TYPE))))
1590 /* [dcl.init.ref]
1592 If the initializer expression
1594 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1595 is reference-compatible with "cv2 T2,"
1597 the reference is bound directly to the initializer expression
1598 lvalue.
1600 [...]
1601 If the initializer expression is an rvalue, with T2 a class type,
1602 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1603 is bound to the object represented by the rvalue or to a sub-object
1604 within that object. */
1606 conv = build_identity_conv (tfrom, expr);
1607 conv = direct_reference_binding (rto, conv);
1609 if (flags & LOOKUP_PREFER_RVALUE)
1610 /* The top-level caller requested that we pretend that the lvalue
1611 be treated as an rvalue. */
1612 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1613 else if (TREE_CODE (rfrom) == REFERENCE_TYPE)
1614 /* Handle rvalue reference to function properly. */
1615 conv->rvaluedness_matches_p
1616 = (TYPE_REF_IS_RVALUE (rto) == TYPE_REF_IS_RVALUE (rfrom));
1617 else
1618 conv->rvaluedness_matches_p
1619 = (TYPE_REF_IS_RVALUE (rto) == !is_lvalue);
1621 if ((gl_kind & clk_bitfield) != 0
1622 || ((gl_kind & clk_packed) != 0 && !TYPE_PACKED (to)))
1623 /* For the purposes of overload resolution, we ignore the fact
1624 this expression is a bitfield or packed field. (In particular,
1625 [over.ics.ref] says specifically that a function with a
1626 non-const reference parameter is viable even if the
1627 argument is a bitfield.)
1629 However, when we actually call the function we must create
1630 a temporary to which to bind the reference. If the
1631 reference is volatile, or isn't const, then we cannot make
1632 a temporary, so we just issue an error when the conversion
1633 actually occurs. */
1634 conv->need_temporary_p = true;
1636 /* Don't allow binding of lvalues (other than function lvalues) to
1637 rvalue references. */
1638 if (is_lvalue && TYPE_REF_IS_RVALUE (rto)
1639 && TREE_CODE (to) != FUNCTION_TYPE
1640 && !(flags & LOOKUP_PREFER_RVALUE))
1641 conv->bad_p = true;
1643 /* Nor the reverse. */
1644 if (!is_lvalue && !TYPE_REF_IS_RVALUE (rto)
1645 && (!CP_TYPE_CONST_NON_VOLATILE_P (to)
1646 || (flags & LOOKUP_NO_RVAL_BIND))
1647 && TREE_CODE (to) != FUNCTION_TYPE)
1648 conv->bad_p = true;
1650 if (!compatible_p)
1651 conv->bad_p = true;
1653 return conv;
1655 /* [class.conv.fct] A conversion function is never used to convert a
1656 (possibly cv-qualified) object to the (possibly cv-qualified) same
1657 object type (or a reference to it), to a (possibly cv-qualified) base
1658 class of that type (or a reference to it).... */
1659 else if (CLASS_TYPE_P (from) && !related_p
1660 && !(flags & LOOKUP_NO_CONVERSION))
1662 /* [dcl.init.ref]
1664 If the initializer expression
1666 -- has a class type (i.e., T2 is a class type) can be
1667 implicitly converted to an lvalue of type "cv3 T3," where
1668 "cv1 T1" is reference-compatible with "cv3 T3". (this
1669 conversion is selected by enumerating the applicable
1670 conversion functions (_over.match.ref_) and choosing the
1671 best one through overload resolution. (_over.match_).
1673 the reference is bound to the lvalue result of the conversion
1674 in the second case. */
1675 z_candidate *cand = build_user_type_conversion_1 (rto, expr, flags,
1676 complain);
1677 if (cand)
1678 return cand->second_conv;
1681 /* From this point on, we conceptually need temporaries, even if we
1682 elide them. Only the cases above are "direct bindings". */
1683 if (flags & LOOKUP_NO_TEMP_BIND)
1684 return NULL;
1686 /* [over.ics.rank]
1688 When a parameter of reference type is not bound directly to an
1689 argument expression, the conversion sequence is the one required
1690 to convert the argument expression to the underlying type of the
1691 reference according to _over.best.ics_. Conceptually, this
1692 conversion sequence corresponds to copy-initializing a temporary
1693 of the underlying type with the argument expression. Any
1694 difference in top-level cv-qualification is subsumed by the
1695 initialization itself and does not constitute a conversion. */
1697 /* [dcl.init.ref]
1699 Otherwise, the reference shall be an lvalue reference to a
1700 non-volatile const type, or the reference shall be an rvalue
1701 reference.
1703 We try below to treat this as a bad conversion to improve diagnostics,
1704 but if TO is an incomplete class, we need to reject this conversion
1705 now to avoid unnecessary instantiation. */
1706 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto)
1707 && !COMPLETE_TYPE_P (to))
1708 return NULL;
1710 /* We're generating a temporary now, but don't bind any more in the
1711 conversion (specifically, don't slice the temporary returned by a
1712 conversion operator). */
1713 flags |= LOOKUP_NO_TEMP_BIND;
1715 /* Core issue 899: When [copy-]initializing a temporary to be bound
1716 to the first parameter of a copy constructor (12.8) called with
1717 a single argument in the context of direct-initialization,
1718 explicit conversion functions are also considered.
1720 So don't set LOOKUP_ONLYCONVERTING in that case. */
1721 if (!(flags & LOOKUP_COPY_PARM))
1722 flags |= LOOKUP_ONLYCONVERTING;
1724 if (!conv)
1725 conv = implicit_conversion (to, from, expr, c_cast_p,
1726 flags, complain);
1727 if (!conv)
1728 return NULL;
1730 if (conv->user_conv_p)
1732 /* If initializing the temporary used a conversion function,
1733 recalculate the second conversion sequence. */
1734 for (conversion *t = conv; t; t = next_conversion (t))
1735 if (t->kind == ck_user
1736 && DECL_CONV_FN_P (t->cand->fn))
1738 tree ftype = TREE_TYPE (TREE_TYPE (t->cand->fn));
1739 int sflags = (flags|LOOKUP_NO_CONVERSION)&~LOOKUP_NO_TEMP_BIND;
1740 conversion *new_second
1741 = reference_binding (rto, ftype, NULL_TREE, c_cast_p,
1742 sflags, complain);
1743 if (!new_second)
1744 return NULL;
1745 return merge_conversion_sequences (t, new_second);
1749 conv = build_conv (ck_ref_bind, rto, conv);
1750 /* This reference binding, unlike those above, requires the
1751 creation of a temporary. */
1752 conv->need_temporary_p = true;
1753 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1755 /* [dcl.init.ref]
1757 Otherwise, the reference shall be an lvalue reference to a
1758 non-volatile const type, or the reference shall be an rvalue
1759 reference. */
1760 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1761 conv->bad_p = true;
1763 /* [dcl.init.ref]
1765 Otherwise, a temporary of type "cv1 T1" is created and
1766 initialized from the initializer expression using the rules for a
1767 non-reference copy initialization. If T1 is reference-related to
1768 T2, cv1 must be the same cv-qualification as, or greater
1769 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1770 if (related_p && !at_least_as_qualified_p (to, from))
1771 conv->bad_p = true;
1773 return conv;
1776 /* Returns the implicit conversion sequence (see [over.ics]) from type
1777 FROM to type TO. The optional expression EXPR may affect the
1778 conversion. FLAGS are the usual overloading flags. If C_CAST_P is
1779 true, this conversion is coming from a C-style cast. */
1781 static conversion *
1782 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1783 int flags, tsubst_flags_t complain)
1785 conversion *conv;
1787 if (from == error_mark_node || to == error_mark_node
1788 || expr == error_mark_node)
1789 return NULL;
1791 /* Other flags only apply to the primary function in overload
1792 resolution, or after we've chosen one. */
1793 flags &= (LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION|LOOKUP_COPY_PARM
1794 |LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND|LOOKUP_PREFER_RVALUE
1795 |LOOKUP_NO_NARROWING|LOOKUP_PROTECT|LOOKUP_NO_NON_INTEGRAL);
1797 /* FIXME: actually we don't want warnings either, but we can't just
1798 have 'complain &= ~(tf_warning|tf_error)' because it would cause
1799 the regression of, eg, g++.old-deja/g++.benjamin/16077.C.
1800 We really ought not to issue that warning until we've committed
1801 to that conversion. */
1802 complain &= ~tf_error;
1804 if (TREE_CODE (to) == REFERENCE_TYPE)
1805 conv = reference_binding (to, from, expr, c_cast_p, flags, complain);
1806 else
1807 conv = standard_conversion (to, from, expr, c_cast_p, flags);
1809 if (conv)
1810 return conv;
1812 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1814 if (is_std_init_list (to))
1815 return build_list_conv (to, expr, flags, complain);
1817 /* As an extension, allow list-initialization of _Complex. */
1818 if (TREE_CODE (to) == COMPLEX_TYPE)
1820 conv = build_complex_conv (to, expr, flags, complain);
1821 if (conv)
1822 return conv;
1825 /* Allow conversion from an initializer-list with one element to a
1826 scalar type. */
1827 if (SCALAR_TYPE_P (to))
1829 int nelts = CONSTRUCTOR_NELTS (expr);
1830 tree elt;
1832 if (nelts == 0)
1833 elt = build_value_init (to, tf_none);
1834 else if (nelts == 1)
1835 elt = CONSTRUCTOR_ELT (expr, 0)->value;
1836 else
1837 elt = error_mark_node;
1839 conv = implicit_conversion (to, TREE_TYPE (elt), elt,
1840 c_cast_p, flags, complain);
1841 if (conv)
1843 conv->check_narrowing = true;
1844 if (BRACE_ENCLOSED_INITIALIZER_P (elt))
1845 /* Too many levels of braces, i.e. '{{1}}'. */
1846 conv->bad_p = true;
1847 return conv;
1850 else if (TREE_CODE (to) == ARRAY_TYPE)
1851 return build_array_conv (to, expr, flags, complain);
1854 if (expr != NULL_TREE
1855 && (MAYBE_CLASS_TYPE_P (from)
1856 || MAYBE_CLASS_TYPE_P (to))
1857 && (flags & LOOKUP_NO_CONVERSION) == 0)
1859 struct z_candidate *cand;
1861 if (CLASS_TYPE_P (to)
1862 && BRACE_ENCLOSED_INITIALIZER_P (expr)
1863 && !CLASSTYPE_NON_AGGREGATE (complete_type (to)))
1864 return build_aggr_conv (to, expr, flags, complain);
1866 cand = build_user_type_conversion_1 (to, expr, flags, complain);
1867 if (cand)
1868 conv = cand->second_conv;
1870 /* We used to try to bind a reference to a temporary here, but that
1871 is now handled after the recursive call to this function at the end
1872 of reference_binding. */
1873 return conv;
1876 return NULL;
1879 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1880 functions. ARGS will not be changed until a single candidate is
1881 selected. */
1883 static struct z_candidate *
1884 add_candidate (struct z_candidate **candidates,
1885 tree fn, tree first_arg, const vec<tree, va_gc> *args,
1886 size_t num_convs, conversion **convs,
1887 tree access_path, tree conversion_path,
1888 int viable, struct rejection_reason *reason,
1889 int flags)
1891 struct z_candidate *cand = (struct z_candidate *)
1892 conversion_obstack_alloc (sizeof (struct z_candidate));
1894 cand->fn = fn;
1895 cand->first_arg = first_arg;
1896 cand->args = args;
1897 cand->convs = convs;
1898 cand->num_convs = num_convs;
1899 cand->access_path = access_path;
1900 cand->conversion_path = conversion_path;
1901 cand->viable = viable;
1902 cand->reason = reason;
1903 cand->next = *candidates;
1904 cand->flags = flags;
1905 *candidates = cand;
1907 return cand;
1910 /* Return the number of remaining arguments in the parameter list
1911 beginning with ARG. */
1913 static int
1914 remaining_arguments (tree arg)
1916 int n;
1918 for (n = 0; arg != NULL_TREE && arg != void_list_node;
1919 arg = TREE_CHAIN (arg))
1920 n++;
1922 return n;
1925 /* Create an overload candidate for the function or method FN called
1926 with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
1927 FLAGS is passed on to implicit_conversion.
1929 This does not change ARGS.
1931 CTYPE, if non-NULL, is the type we want to pretend this function
1932 comes from for purposes of overload resolution. */
1934 static struct z_candidate *
1935 add_function_candidate (struct z_candidate **candidates,
1936 tree fn, tree ctype, tree first_arg,
1937 const vec<tree, va_gc> *args, tree access_path,
1938 tree conversion_path, int flags,
1939 tsubst_flags_t complain)
1941 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1942 int i, len;
1943 conversion **convs;
1944 tree parmnode;
1945 tree orig_first_arg = first_arg;
1946 int skip;
1947 int viable = 1;
1948 struct rejection_reason *reason = NULL;
1950 /* At this point we should not see any functions which haven't been
1951 explicitly declared, except for friend functions which will have
1952 been found using argument dependent lookup. */
1953 gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
1955 /* The `this', `in_chrg' and VTT arguments to constructors are not
1956 considered in overload resolution. */
1957 if (DECL_CONSTRUCTOR_P (fn))
1959 parmlist = skip_artificial_parms_for (fn, parmlist);
1960 skip = num_artificial_parms_for (fn);
1961 if (skip > 0 && first_arg != NULL_TREE)
1963 --skip;
1964 first_arg = NULL_TREE;
1967 else
1968 skip = 0;
1970 len = vec_safe_length (args) - skip + (first_arg != NULL_TREE ? 1 : 0);
1971 convs = alloc_conversions (len);
1973 /* 13.3.2 - Viable functions [over.match.viable]
1974 First, to be a viable function, a candidate function shall have enough
1975 parameters to agree in number with the arguments in the list.
1977 We need to check this first; otherwise, checking the ICSes might cause
1978 us to produce an ill-formed template instantiation. */
1980 parmnode = parmlist;
1981 for (i = 0; i < len; ++i)
1983 if (parmnode == NULL_TREE || parmnode == void_list_node)
1984 break;
1985 parmnode = TREE_CHAIN (parmnode);
1988 if ((i < len && parmnode)
1989 || !sufficient_parms_p (parmnode))
1991 int remaining = remaining_arguments (parmnode);
1992 viable = 0;
1993 reason = arity_rejection (first_arg, i + remaining, len);
1995 /* When looking for a function from a subobject from an implicit
1996 copy/move constructor/operator=, don't consider anything that takes (a
1997 reference to) an unrelated type. See c++/44909 and core 1092. */
1998 else if (parmlist && (flags & LOOKUP_DEFAULTED))
2000 if (DECL_CONSTRUCTOR_P (fn))
2001 i = 1;
2002 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
2003 && DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR)
2004 i = 2;
2005 else
2006 i = 0;
2007 if (i && len == i)
2009 parmnode = chain_index (i-1, parmlist);
2010 if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
2011 ctype))
2012 viable = 0;
2015 /* This only applies at the top level. */
2016 flags &= ~LOOKUP_DEFAULTED;
2019 if (! viable)
2020 goto out;
2022 /* Second, for F to be a viable function, there shall exist for each
2023 argument an implicit conversion sequence that converts that argument
2024 to the corresponding parameter of F. */
2026 parmnode = parmlist;
2028 for (i = 0; i < len; ++i)
2030 tree argtype, to_type;
2031 tree arg;
2032 conversion *t;
2033 int is_this;
2035 if (parmnode == void_list_node)
2036 break;
2038 if (i == 0 && first_arg != NULL_TREE)
2039 arg = first_arg;
2040 else
2041 arg = CONST_CAST_TREE (
2042 (*args)[i + skip - (first_arg != NULL_TREE ? 1 : 0)]);
2043 argtype = lvalue_type (arg);
2045 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2046 && ! DECL_CONSTRUCTOR_P (fn));
2048 if (parmnode)
2050 tree parmtype = TREE_VALUE (parmnode);
2051 int lflags = flags;
2053 parmnode = TREE_CHAIN (parmnode);
2055 /* The type of the implicit object parameter ('this') for
2056 overload resolution is not always the same as for the
2057 function itself; conversion functions are considered to
2058 be members of the class being converted, and functions
2059 introduced by a using-declaration are considered to be
2060 members of the class that uses them.
2062 Since build_over_call ignores the ICS for the `this'
2063 parameter, we can just change the parm type. */
2064 if (ctype && is_this)
2066 parmtype = cp_build_qualified_type
2067 (ctype, cp_type_quals (TREE_TYPE (parmtype)));
2068 if (FUNCTION_REF_QUALIFIED (TREE_TYPE (fn)))
2070 /* If the function has a ref-qualifier, the implicit
2071 object parameter has reference type. */
2072 bool rv = FUNCTION_RVALUE_QUALIFIED (TREE_TYPE (fn));
2073 parmtype = cp_build_reference_type (parmtype, rv);
2074 /* The special handling of 'this' conversions in compare_ics
2075 does not apply if there is a ref-qualifier. */
2076 is_this = false;
2078 else
2080 parmtype = build_pointer_type (parmtype);
2081 arg = build_this (arg);
2082 argtype = lvalue_type (arg);
2086 /* Core issue 899: When [copy-]initializing a temporary to be bound
2087 to the first parameter of a copy constructor (12.8) called with
2088 a single argument in the context of direct-initialization,
2089 explicit conversion functions are also considered.
2091 So set LOOKUP_COPY_PARM to let reference_binding know that
2092 it's being called in that context. We generalize the above
2093 to handle move constructors and template constructors as well;
2094 the standardese should soon be updated similarly. */
2095 if (ctype && i == 0 && (len-skip == 1)
2096 && DECL_CONSTRUCTOR_P (fn)
2097 && parmtype != error_mark_node
2098 && (same_type_ignoring_top_level_qualifiers_p
2099 (non_reference (parmtype), ctype)))
2101 if (!(flags & LOOKUP_ONLYCONVERTING))
2102 lflags |= LOOKUP_COPY_PARM;
2103 /* We allow user-defined conversions within init-lists, but
2104 don't list-initialize the copy parm, as that would mean
2105 using two levels of braces for the same type. */
2106 if ((flags & LOOKUP_LIST_INIT_CTOR)
2107 && BRACE_ENCLOSED_INITIALIZER_P (arg))
2108 lflags |= LOOKUP_NO_CONVERSION;
2110 else
2111 lflags |= LOOKUP_ONLYCONVERTING;
2113 t = implicit_conversion (parmtype, argtype, arg,
2114 /*c_cast_p=*/false, lflags, complain);
2115 to_type = parmtype;
2117 else
2119 t = build_identity_conv (argtype, arg);
2120 t->ellipsis_p = true;
2121 to_type = argtype;
2124 if (t && is_this)
2125 t->this_p = true;
2127 convs[i] = t;
2128 if (! t)
2130 viable = 0;
2131 reason = arg_conversion_rejection (first_arg, i, argtype, to_type);
2132 break;
2135 if (t->bad_p)
2137 viable = -1;
2138 reason = bad_arg_conversion_rejection (first_arg, i, arg, to_type);
2142 out:
2143 return add_candidate (candidates, fn, orig_first_arg, args, len, convs,
2144 access_path, conversion_path, viable, reason, flags);
2147 /* Create an overload candidate for the conversion function FN which will
2148 be invoked for expression OBJ, producing a pointer-to-function which
2149 will in turn be called with the argument list FIRST_ARG/ARGLIST,
2150 and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
2151 passed on to implicit_conversion.
2153 Actually, we don't really care about FN; we care about the type it
2154 converts to. There may be multiple conversion functions that will
2155 convert to that type, and we rely on build_user_type_conversion_1 to
2156 choose the best one; so when we create our candidate, we record the type
2157 instead of the function. */
2159 static struct z_candidate *
2160 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
2161 tree first_arg, const vec<tree, va_gc> *arglist,
2162 tree access_path, tree conversion_path,
2163 tsubst_flags_t complain)
2165 tree totype = TREE_TYPE (TREE_TYPE (fn));
2166 int i, len, viable, flags;
2167 tree parmlist, parmnode;
2168 conversion **convs;
2169 struct rejection_reason *reason;
2171 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
2172 parmlist = TREE_TYPE (parmlist);
2173 parmlist = TYPE_ARG_TYPES (parmlist);
2175 len = vec_safe_length (arglist) + (first_arg != NULL_TREE ? 1 : 0) + 1;
2176 convs = alloc_conversions (len);
2177 parmnode = parmlist;
2178 viable = 1;
2179 flags = LOOKUP_IMPLICIT;
2180 reason = NULL;
2182 /* Don't bother looking up the same type twice. */
2183 if (*candidates && (*candidates)->fn == totype)
2184 return NULL;
2186 for (i = 0; i < len; ++i)
2188 tree arg, argtype, convert_type = NULL_TREE;
2189 conversion *t;
2191 if (i == 0)
2192 arg = obj;
2193 else if (i == 1 && first_arg != NULL_TREE)
2194 arg = first_arg;
2195 else
2196 arg = (*arglist)[i - (first_arg != NULL_TREE ? 1 : 0) - 1];
2197 argtype = lvalue_type (arg);
2199 if (i == 0)
2201 t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
2202 flags, complain);
2203 convert_type = totype;
2205 else if (parmnode == void_list_node)
2206 break;
2207 else if (parmnode)
2209 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
2210 /*c_cast_p=*/false, flags, complain);
2211 convert_type = TREE_VALUE (parmnode);
2213 else
2215 t = build_identity_conv (argtype, arg);
2216 t->ellipsis_p = true;
2217 convert_type = argtype;
2220 convs[i] = t;
2221 if (! t)
2222 break;
2224 if (t->bad_p)
2226 viable = -1;
2227 reason = bad_arg_conversion_rejection (NULL_TREE, i, arg, convert_type);
2230 if (i == 0)
2231 continue;
2233 if (parmnode)
2234 parmnode = TREE_CHAIN (parmnode);
2237 if (i < len
2238 || ! sufficient_parms_p (parmnode))
2240 int remaining = remaining_arguments (parmnode);
2241 viable = 0;
2242 reason = arity_rejection (NULL_TREE, i + remaining, len);
2245 return add_candidate (candidates, totype, first_arg, arglist, len, convs,
2246 access_path, conversion_path, viable, reason, flags);
2249 static void
2250 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
2251 tree type1, tree type2, tree *args, tree *argtypes,
2252 int flags, tsubst_flags_t complain)
2254 conversion *t;
2255 conversion **convs;
2256 size_t num_convs;
2257 int viable = 1, i;
2258 tree types[2];
2259 struct rejection_reason *reason = NULL;
2261 types[0] = type1;
2262 types[1] = type2;
2264 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
2265 convs = alloc_conversions (num_convs);
2267 /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2268 conversion ops are allowed. We handle that here by just checking for
2269 boolean_type_node because other operators don't ask for it. COND_EXPR
2270 also does contextual conversion to bool for the first operand, but we
2271 handle that in build_conditional_expr, and type1 here is operand 2. */
2272 if (type1 != boolean_type_node)
2273 flags |= LOOKUP_ONLYCONVERTING;
2275 for (i = 0; i < 2; ++i)
2277 if (! args[i])
2278 break;
2280 t = implicit_conversion (types[i], argtypes[i], args[i],
2281 /*c_cast_p=*/false, flags, complain);
2282 if (! t)
2284 viable = 0;
2285 /* We need something for printing the candidate. */
2286 t = build_identity_conv (types[i], NULL_TREE);
2287 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2288 types[i]);
2290 else if (t->bad_p)
2292 viable = 0;
2293 reason = bad_arg_conversion_rejection (NULL_TREE, i, args[i],
2294 types[i]);
2296 convs[i] = t;
2299 /* For COND_EXPR we rearranged the arguments; undo that now. */
2300 if (args[2])
2302 convs[2] = convs[1];
2303 convs[1] = convs[0];
2304 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2305 /*c_cast_p=*/false, flags,
2306 complain);
2307 if (t)
2308 convs[0] = t;
2309 else
2311 viable = 0;
2312 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2313 boolean_type_node);
2317 add_candidate (candidates, fnname, /*first_arg=*/NULL_TREE, /*args=*/NULL,
2318 num_convs, convs,
2319 /*access_path=*/NULL_TREE,
2320 /*conversion_path=*/NULL_TREE,
2321 viable, reason, flags);
2324 static bool
2325 is_complete (tree t)
2327 return COMPLETE_TYPE_P (complete_type (t));
2330 /* Returns nonzero if TYPE is a promoted arithmetic type. */
2332 static bool
2333 promoted_arithmetic_type_p (tree type)
2335 /* [over.built]
2337 In this section, the term promoted integral type is used to refer
2338 to those integral types which are preserved by integral promotion
2339 (including e.g. int and long but excluding e.g. char).
2340 Similarly, the term promoted arithmetic type refers to promoted
2341 integral types plus floating types. */
2342 return ((CP_INTEGRAL_TYPE_P (type)
2343 && same_type_p (type_promotes_to (type), type))
2344 || TREE_CODE (type) == REAL_TYPE);
2347 /* Create any builtin operator overload candidates for the operator in
2348 question given the converted operand types TYPE1 and TYPE2. The other
2349 args are passed through from add_builtin_candidates to
2350 build_builtin_candidate.
2352 TYPE1 and TYPE2 may not be permissible, and we must filter them.
2353 If CODE is requires candidates operands of the same type of the kind
2354 of which TYPE1 and TYPE2 are, we add both candidates
2355 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
2357 static void
2358 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
2359 enum tree_code code2, tree fnname, tree type1,
2360 tree type2, tree *args, tree *argtypes, int flags,
2361 tsubst_flags_t complain)
2363 switch (code)
2365 case POSTINCREMENT_EXPR:
2366 case POSTDECREMENT_EXPR:
2367 args[1] = integer_zero_node;
2368 type2 = integer_type_node;
2369 break;
2370 default:
2371 break;
2374 switch (code)
2377 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2378 and VQ is either volatile or empty, there exist candidate operator
2379 functions of the form
2380 VQ T& operator++(VQ T&);
2381 T operator++(VQ T&, int);
2382 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
2383 type other than bool, and VQ is either volatile or empty, there exist
2384 candidate operator functions of the form
2385 VQ T& operator--(VQ T&);
2386 T operator--(VQ T&, int);
2387 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
2388 complete object type, and VQ is either volatile or empty, there exist
2389 candidate operator functions of the form
2390 T*VQ& operator++(T*VQ&);
2391 T*VQ& operator--(T*VQ&);
2392 T* operator++(T*VQ&, int);
2393 T* operator--(T*VQ&, int); */
2395 case POSTDECREMENT_EXPR:
2396 case PREDECREMENT_EXPR:
2397 if (TREE_CODE (type1) == BOOLEAN_TYPE)
2398 return;
2399 case POSTINCREMENT_EXPR:
2400 case PREINCREMENT_EXPR:
2401 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
2403 type1 = build_reference_type (type1);
2404 break;
2406 return;
2408 /* 7 For every cv-qualified or cv-unqualified object type T, there
2409 exist candidate operator functions of the form
2411 T& operator*(T*);
2413 8 For every function type T, there exist candidate operator functions of
2414 the form
2415 T& operator*(T*); */
2417 case INDIRECT_REF:
2418 if (TYPE_PTR_P (type1)
2419 && (TYPE_PTROB_P (type1)
2420 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
2421 break;
2422 return;
2424 /* 9 For every type T, there exist candidate operator functions of the form
2425 T* operator+(T*);
2427 10For every promoted arithmetic type T, there exist candidate operator
2428 functions of the form
2429 T operator+(T);
2430 T operator-(T); */
2432 case UNARY_PLUS_EXPR: /* unary + */
2433 if (TYPE_PTR_P (type1))
2434 break;
2435 case NEGATE_EXPR:
2436 if (ARITHMETIC_TYPE_P (type1))
2437 break;
2438 return;
2440 /* 11For every promoted integral type T, there exist candidate operator
2441 functions of the form
2442 T operator~(T); */
2444 case BIT_NOT_EXPR:
2445 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1))
2446 break;
2447 return;
2449 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
2450 is the same type as C2 or is a derived class of C2, T is a complete
2451 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
2452 there exist candidate operator functions of the form
2453 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2454 where CV12 is the union of CV1 and CV2. */
2456 case MEMBER_REF:
2457 if (TYPE_PTR_P (type1) && TYPE_PTRMEM_P (type2))
2459 tree c1 = TREE_TYPE (type1);
2460 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
2462 if (MAYBE_CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
2463 && (TYPE_PTRMEMFUNC_P (type2)
2464 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
2465 break;
2467 return;
2469 /* 13For every pair of promoted arithmetic types L and R, there exist can-
2470 didate operator functions of the form
2471 LR operator*(L, R);
2472 LR operator/(L, R);
2473 LR operator+(L, R);
2474 LR operator-(L, R);
2475 bool operator<(L, R);
2476 bool operator>(L, R);
2477 bool operator<=(L, R);
2478 bool operator>=(L, R);
2479 bool operator==(L, R);
2480 bool operator!=(L, R);
2481 where LR is the result of the usual arithmetic conversions between
2482 types L and R.
2484 14For every pair of types T and I, where T is a cv-qualified or cv-
2485 unqualified complete object type and I is a promoted integral type,
2486 there exist candidate operator functions of the form
2487 T* operator+(T*, I);
2488 T& operator[](T*, I);
2489 T* operator-(T*, I);
2490 T* operator+(I, T*);
2491 T& operator[](I, T*);
2493 15For every T, where T is a pointer to complete object type, there exist
2494 candidate operator functions of the form112)
2495 ptrdiff_t operator-(T, T);
2497 16For every pointer or enumeration type T, there exist candidate operator
2498 functions of the form
2499 bool operator<(T, T);
2500 bool operator>(T, T);
2501 bool operator<=(T, T);
2502 bool operator>=(T, T);
2503 bool operator==(T, T);
2504 bool operator!=(T, T);
2506 17For every pointer to member type T, there exist candidate operator
2507 functions of the form
2508 bool operator==(T, T);
2509 bool operator!=(T, T); */
2511 case MINUS_EXPR:
2512 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
2513 break;
2514 if (TYPE_PTROB_P (type1)
2515 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2517 type2 = ptrdiff_type_node;
2518 break;
2520 case MULT_EXPR:
2521 case TRUNC_DIV_EXPR:
2522 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2523 break;
2524 return;
2526 case EQ_EXPR:
2527 case NE_EXPR:
2528 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2529 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2)))
2530 break;
2531 if (TYPE_PTRMEM_P (type1) && null_ptr_cst_p (args[1]))
2533 type2 = type1;
2534 break;
2536 if (TYPE_PTRMEM_P (type2) && null_ptr_cst_p (args[0]))
2538 type1 = type2;
2539 break;
2541 /* Fall through. */
2542 case LT_EXPR:
2543 case GT_EXPR:
2544 case LE_EXPR:
2545 case GE_EXPR:
2546 case MAX_EXPR:
2547 case MIN_EXPR:
2548 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2549 break;
2550 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2551 break;
2552 if (TREE_CODE (type1) == ENUMERAL_TYPE
2553 && TREE_CODE (type2) == ENUMERAL_TYPE)
2554 break;
2555 if (TYPE_PTR_P (type1)
2556 && null_ptr_cst_p (args[1]))
2558 type2 = type1;
2559 break;
2561 if (null_ptr_cst_p (args[0])
2562 && TYPE_PTR_P (type2))
2564 type1 = type2;
2565 break;
2567 return;
2569 case PLUS_EXPR:
2570 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2571 break;
2572 case ARRAY_REF:
2573 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && TYPE_PTROB_P (type2))
2575 type1 = ptrdiff_type_node;
2576 break;
2578 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2580 type2 = ptrdiff_type_node;
2581 break;
2583 return;
2585 /* 18For every pair of promoted integral types L and R, there exist candi-
2586 date operator functions of the form
2587 LR operator%(L, R);
2588 LR operator&(L, R);
2589 LR operator^(L, R);
2590 LR operator|(L, R);
2591 L operator<<(L, R);
2592 L operator>>(L, R);
2593 where LR is the result of the usual arithmetic conversions between
2594 types L and R. */
2596 case TRUNC_MOD_EXPR:
2597 case BIT_AND_EXPR:
2598 case BIT_IOR_EXPR:
2599 case BIT_XOR_EXPR:
2600 case LSHIFT_EXPR:
2601 case RSHIFT_EXPR:
2602 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2603 break;
2604 return;
2606 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
2607 type, VQ is either volatile or empty, and R is a promoted arithmetic
2608 type, there exist candidate operator functions of the form
2609 VQ L& operator=(VQ L&, R);
2610 VQ L& operator*=(VQ L&, R);
2611 VQ L& operator/=(VQ L&, R);
2612 VQ L& operator+=(VQ L&, R);
2613 VQ L& operator-=(VQ L&, R);
2615 20For every pair T, VQ), where T is any type and VQ is either volatile
2616 or empty, there exist candidate operator functions of the form
2617 T*VQ& operator=(T*VQ&, T*);
2619 21For every pair T, VQ), where T is a pointer to member type and VQ is
2620 either volatile or empty, there exist candidate operator functions of
2621 the form
2622 VQ T& operator=(VQ T&, T);
2624 22For every triple T, VQ, I), where T is a cv-qualified or cv-
2625 unqualified complete object type, VQ is either volatile or empty, and
2626 I is a promoted integral type, there exist candidate operator func-
2627 tions of the form
2628 T*VQ& operator+=(T*VQ&, I);
2629 T*VQ& operator-=(T*VQ&, I);
2631 23For every triple L, VQ, R), where L is an integral or enumeration
2632 type, VQ is either volatile or empty, and R is a promoted integral
2633 type, there exist candidate operator functions of the form
2635 VQ L& operator%=(VQ L&, R);
2636 VQ L& operator<<=(VQ L&, R);
2637 VQ L& operator>>=(VQ L&, R);
2638 VQ L& operator&=(VQ L&, R);
2639 VQ L& operator^=(VQ L&, R);
2640 VQ L& operator|=(VQ L&, R); */
2642 case MODIFY_EXPR:
2643 switch (code2)
2645 case PLUS_EXPR:
2646 case MINUS_EXPR:
2647 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2649 type2 = ptrdiff_type_node;
2650 break;
2652 case MULT_EXPR:
2653 case TRUNC_DIV_EXPR:
2654 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2655 break;
2656 return;
2658 case TRUNC_MOD_EXPR:
2659 case BIT_AND_EXPR:
2660 case BIT_IOR_EXPR:
2661 case BIT_XOR_EXPR:
2662 case LSHIFT_EXPR:
2663 case RSHIFT_EXPR:
2664 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2665 break;
2666 return;
2668 case NOP_EXPR:
2669 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2670 break;
2671 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2672 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2673 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2674 || ((TYPE_PTRMEMFUNC_P (type1)
2675 || TYPE_PTR_P (type1))
2676 && null_ptr_cst_p (args[1])))
2678 type2 = type1;
2679 break;
2681 return;
2683 default:
2684 gcc_unreachable ();
2686 type1 = build_reference_type (type1);
2687 break;
2689 case COND_EXPR:
2690 /* [over.built]
2692 For every pair of promoted arithmetic types L and R, there
2693 exist candidate operator functions of the form
2695 LR operator?(bool, L, R);
2697 where LR is the result of the usual arithmetic conversions
2698 between types L and R.
2700 For every type T, where T is a pointer or pointer-to-member
2701 type, there exist candidate operator functions of the form T
2702 operator?(bool, T, T); */
2704 if (promoted_arithmetic_type_p (type1)
2705 && promoted_arithmetic_type_p (type2))
2706 /* That's OK. */
2707 break;
2709 /* Otherwise, the types should be pointers. */
2710 if (!TYPE_PTR_OR_PTRMEM_P (type1) || !TYPE_PTR_OR_PTRMEM_P (type2))
2711 return;
2713 /* We don't check that the two types are the same; the logic
2714 below will actually create two candidates; one in which both
2715 parameter types are TYPE1, and one in which both parameter
2716 types are TYPE2. */
2717 break;
2719 case REALPART_EXPR:
2720 case IMAGPART_EXPR:
2721 if (ARITHMETIC_TYPE_P (type1))
2722 break;
2723 return;
2725 default:
2726 gcc_unreachable ();
2729 /* Make sure we don't create builtin candidates with dependent types. */
2730 bool u1 = uses_template_parms (type1);
2731 bool u2 = type2 ? uses_template_parms (type2) : false;
2732 if (u1 || u2)
2734 /* Try to recover if one of the types is non-dependent. But if
2735 there's only one type, there's nothing we can do. */
2736 if (!type2)
2737 return;
2738 /* And we lose if both are dependent. */
2739 if (u1 && u2)
2740 return;
2741 /* Or if they have different forms. */
2742 if (TREE_CODE (type1) != TREE_CODE (type2))
2743 return;
2745 if (u1 && !u2)
2746 type1 = type2;
2747 else if (u2 && !u1)
2748 type2 = type1;
2751 /* If we're dealing with two pointer types or two enumeral types,
2752 we need candidates for both of them. */
2753 if (type2 && !same_type_p (type1, type2)
2754 && TREE_CODE (type1) == TREE_CODE (type2)
2755 && (TREE_CODE (type1) == REFERENCE_TYPE
2756 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2757 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2758 || TYPE_PTRMEMFUNC_P (type1)
2759 || MAYBE_CLASS_TYPE_P (type1)
2760 || TREE_CODE (type1) == ENUMERAL_TYPE))
2762 if (TYPE_PTR_OR_PTRMEM_P (type1))
2764 tree cptype = composite_pointer_type (type1, type2,
2765 error_mark_node,
2766 error_mark_node,
2767 CPO_CONVERSION,
2768 tf_none);
2769 if (cptype != error_mark_node)
2771 build_builtin_candidate
2772 (candidates, fnname, cptype, cptype, args, argtypes,
2773 flags, complain);
2774 return;
2778 build_builtin_candidate
2779 (candidates, fnname, type1, type1, args, argtypes, flags, complain);
2780 build_builtin_candidate
2781 (candidates, fnname, type2, type2, args, argtypes, flags, complain);
2782 return;
2785 build_builtin_candidate
2786 (candidates, fnname, type1, type2, args, argtypes, flags, complain);
2789 tree
2790 type_decays_to (tree type)
2792 if (TREE_CODE (type) == ARRAY_TYPE)
2793 return build_pointer_type (TREE_TYPE (type));
2794 if (TREE_CODE (type) == FUNCTION_TYPE)
2795 return build_pointer_type (type);
2796 return type;
2799 /* There are three conditions of builtin candidates:
2801 1) bool-taking candidates. These are the same regardless of the input.
2802 2) pointer-pair taking candidates. These are generated for each type
2803 one of the input types converts to.
2804 3) arithmetic candidates. According to the standard, we should generate
2805 all of these, but I'm trying not to...
2807 Here we generate a superset of the possible candidates for this particular
2808 case. That is a subset of the full set the standard defines, plus some
2809 other cases which the standard disallows. add_builtin_candidate will
2810 filter out the invalid set. */
2812 static void
2813 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2814 enum tree_code code2, tree fnname, tree *args,
2815 int flags, tsubst_flags_t complain)
2817 int ref1, i;
2818 int enum_p = 0;
2819 tree type, argtypes[3], t;
2820 /* TYPES[i] is the set of possible builtin-operator parameter types
2821 we will consider for the Ith argument. */
2822 vec<tree, va_gc> *types[2];
2823 unsigned ix;
2825 for (i = 0; i < 3; ++i)
2827 if (args[i])
2828 argtypes[i] = unlowered_expr_type (args[i]);
2829 else
2830 argtypes[i] = NULL_TREE;
2833 switch (code)
2835 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2836 and VQ is either volatile or empty, there exist candidate operator
2837 functions of the form
2838 VQ T& operator++(VQ T&); */
2840 case POSTINCREMENT_EXPR:
2841 case PREINCREMENT_EXPR:
2842 case POSTDECREMENT_EXPR:
2843 case PREDECREMENT_EXPR:
2844 case MODIFY_EXPR:
2845 ref1 = 1;
2846 break;
2848 /* 24There also exist candidate operator functions of the form
2849 bool operator!(bool);
2850 bool operator&&(bool, bool);
2851 bool operator||(bool, bool); */
2853 case TRUTH_NOT_EXPR:
2854 build_builtin_candidate
2855 (candidates, fnname, boolean_type_node,
2856 NULL_TREE, args, argtypes, flags, complain);
2857 return;
2859 case TRUTH_ORIF_EXPR:
2860 case TRUTH_ANDIF_EXPR:
2861 build_builtin_candidate
2862 (candidates, fnname, boolean_type_node,
2863 boolean_type_node, args, argtypes, flags, complain);
2864 return;
2866 case ADDR_EXPR:
2867 case COMPOUND_EXPR:
2868 case COMPONENT_REF:
2869 return;
2871 case COND_EXPR:
2872 case EQ_EXPR:
2873 case NE_EXPR:
2874 case LT_EXPR:
2875 case LE_EXPR:
2876 case GT_EXPR:
2877 case GE_EXPR:
2878 enum_p = 1;
2879 /* Fall through. */
2881 default:
2882 ref1 = 0;
2885 types[0] = make_tree_vector ();
2886 types[1] = make_tree_vector ();
2888 for (i = 0; i < 2; ++i)
2890 if (! args[i])
2892 else if (MAYBE_CLASS_TYPE_P (argtypes[i]))
2894 tree convs;
2896 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2897 return;
2899 convs = lookup_conversions (argtypes[i]);
2901 if (code == COND_EXPR)
2903 if (real_lvalue_p (args[i]))
2904 vec_safe_push (types[i], build_reference_type (argtypes[i]));
2906 vec_safe_push (types[i], TYPE_MAIN_VARIANT (argtypes[i]));
2909 else if (! convs)
2910 return;
2912 for (; convs; convs = TREE_CHAIN (convs))
2914 type = TREE_TYPE (convs);
2916 if (i == 0 && ref1
2917 && (TREE_CODE (type) != REFERENCE_TYPE
2918 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2919 continue;
2921 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2922 vec_safe_push (types[i], type);
2924 type = non_reference (type);
2925 if (i != 0 || ! ref1)
2927 type = cv_unqualified (type_decays_to (type));
2928 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2929 vec_safe_push (types[i], type);
2930 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2931 type = type_promotes_to (type);
2934 if (! vec_member (type, types[i]))
2935 vec_safe_push (types[i], type);
2938 else
2940 if (code == COND_EXPR && real_lvalue_p (args[i]))
2941 vec_safe_push (types[i], build_reference_type (argtypes[i]));
2942 type = non_reference (argtypes[i]);
2943 if (i != 0 || ! ref1)
2945 type = cv_unqualified (type_decays_to (type));
2946 if (enum_p && UNSCOPED_ENUM_P (type))
2947 vec_safe_push (types[i], type);
2948 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2949 type = type_promotes_to (type);
2951 vec_safe_push (types[i], type);
2955 /* Run through the possible parameter types of both arguments,
2956 creating candidates with those parameter types. */
2957 FOR_EACH_VEC_ELT_REVERSE (*(types[0]), ix, t)
2959 unsigned jx;
2960 tree u;
2962 if (!types[1]->is_empty ())
2963 FOR_EACH_VEC_ELT_REVERSE (*(types[1]), jx, u)
2964 add_builtin_candidate
2965 (candidates, code, code2, fnname, t,
2966 u, args, argtypes, flags, complain);
2967 else
2968 add_builtin_candidate
2969 (candidates, code, code2, fnname, t,
2970 NULL_TREE, args, argtypes, flags, complain);
2973 release_tree_vector (types[0]);
2974 release_tree_vector (types[1]);
2978 /* If TMPL can be successfully instantiated as indicated by
2979 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2981 TMPL is the template. EXPLICIT_TARGS are any explicit template
2982 arguments. ARGLIST is the arguments provided at the call-site.
2983 This does not change ARGLIST. The RETURN_TYPE is the desired type
2984 for conversion operators. If OBJ is NULL_TREE, FLAGS and CTYPE are
2985 as for add_function_candidate. If an OBJ is supplied, FLAGS and
2986 CTYPE are ignored, and OBJ is as for add_conv_candidate. */
2988 static struct z_candidate*
2989 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2990 tree ctype, tree explicit_targs, tree first_arg,
2991 const vec<tree, va_gc> *arglist, tree return_type,
2992 tree access_path, tree conversion_path,
2993 int flags, tree obj, unification_kind_t strict,
2994 tsubst_flags_t complain)
2996 int ntparms = DECL_NTPARMS (tmpl);
2997 tree targs = make_tree_vec (ntparms);
2998 unsigned int len = vec_safe_length (arglist);
2999 unsigned int nargs = (first_arg == NULL_TREE ? 0 : 1) + len;
3000 unsigned int skip_without_in_chrg = 0;
3001 tree first_arg_without_in_chrg = first_arg;
3002 tree *args_without_in_chrg;
3003 unsigned int nargs_without_in_chrg;
3004 unsigned int ia, ix;
3005 tree arg;
3006 struct z_candidate *cand;
3007 tree fn;
3008 struct rejection_reason *reason = NULL;
3009 int errs;
3011 /* We don't do deduction on the in-charge parameter, the VTT
3012 parameter or 'this'. */
3013 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
3015 if (first_arg_without_in_chrg != NULL_TREE)
3016 first_arg_without_in_chrg = NULL_TREE;
3017 else
3018 ++skip_without_in_chrg;
3021 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
3022 || DECL_BASE_CONSTRUCTOR_P (tmpl))
3023 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
3025 if (first_arg_without_in_chrg != NULL_TREE)
3026 first_arg_without_in_chrg = NULL_TREE;
3027 else
3028 ++skip_without_in_chrg;
3031 if (len < skip_without_in_chrg)
3032 return NULL;
3034 nargs_without_in_chrg = ((first_arg_without_in_chrg != NULL_TREE ? 1 : 0)
3035 + (len - skip_without_in_chrg));
3036 args_without_in_chrg = XALLOCAVEC (tree, nargs_without_in_chrg);
3037 ia = 0;
3038 if (first_arg_without_in_chrg != NULL_TREE)
3040 args_without_in_chrg[ia] = first_arg_without_in_chrg;
3041 ++ia;
3043 for (ix = skip_without_in_chrg;
3044 vec_safe_iterate (arglist, ix, &arg);
3045 ++ix)
3047 args_without_in_chrg[ia] = arg;
3048 ++ia;
3050 gcc_assert (ia == nargs_without_in_chrg);
3052 errs = errorcount+sorrycount;
3053 fn = fn_type_unification (tmpl, explicit_targs, targs,
3054 args_without_in_chrg,
3055 nargs_without_in_chrg,
3056 return_type, strict, flags, false,
3057 complain & tf_decltype);
3059 if (fn == error_mark_node)
3061 /* Don't repeat unification later if it already resulted in errors. */
3062 if (errorcount+sorrycount == errs)
3063 reason = template_unification_rejection (tmpl, explicit_targs,
3064 targs, args_without_in_chrg,
3065 nargs_without_in_chrg,
3066 return_type, strict, flags);
3067 else
3068 reason = template_unification_error_rejection ();
3069 goto fail;
3072 /* In [class.copy]:
3074 A member function template is never instantiated to perform the
3075 copy of a class object to an object of its class type.
3077 It's a little unclear what this means; the standard explicitly
3078 does allow a template to be used to copy a class. For example,
3081 struct A {
3082 A(A&);
3083 template <class T> A(const T&);
3085 const A f ();
3086 void g () { A a (f ()); }
3088 the member template will be used to make the copy. The section
3089 quoted above appears in the paragraph that forbids constructors
3090 whose only parameter is (a possibly cv-qualified variant of) the
3091 class type, and a logical interpretation is that the intent was
3092 to forbid the instantiation of member templates which would then
3093 have that form. */
3094 if (DECL_CONSTRUCTOR_P (fn) && nargs == 2)
3096 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
3097 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
3098 ctype))
3100 reason = invalid_copy_with_fn_template_rejection ();
3101 goto fail;
3105 if (obj != NULL_TREE)
3106 /* Aha, this is a conversion function. */
3107 cand = add_conv_candidate (candidates, fn, obj, first_arg, arglist,
3108 access_path, conversion_path, complain);
3109 else
3110 cand = add_function_candidate (candidates, fn, ctype,
3111 first_arg, arglist, access_path,
3112 conversion_path, flags, complain);
3113 if (DECL_TI_TEMPLATE (fn) != tmpl)
3114 /* This situation can occur if a member template of a template
3115 class is specialized. Then, instantiate_template might return
3116 an instantiation of the specialization, in which case the
3117 DECL_TI_TEMPLATE field will point at the original
3118 specialization. For example:
3120 template <class T> struct S { template <class U> void f(U);
3121 template <> void f(int) {}; };
3122 S<double> sd;
3123 sd.f(3);
3125 Here, TMPL will be template <class U> S<double>::f(U).
3126 And, instantiate template will give us the specialization
3127 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
3128 for this will point at template <class T> template <> S<T>::f(int),
3129 so that we can find the definition. For the purposes of
3130 overload resolution, however, we want the original TMPL. */
3131 cand->template_decl = build_template_info (tmpl, targs);
3132 else
3133 cand->template_decl = DECL_TEMPLATE_INFO (fn);
3134 cand->explicit_targs = explicit_targs;
3136 return cand;
3137 fail:
3138 return add_candidate (candidates, tmpl, first_arg, arglist, nargs, NULL,
3139 access_path, conversion_path, 0, reason, flags);
3143 static struct z_candidate *
3144 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
3145 tree explicit_targs, tree first_arg,
3146 const vec<tree, va_gc> *arglist, tree return_type,
3147 tree access_path, tree conversion_path, int flags,
3148 unification_kind_t strict, tsubst_flags_t complain)
3150 return
3151 add_template_candidate_real (candidates, tmpl, ctype,
3152 explicit_targs, first_arg, arglist,
3153 return_type, access_path, conversion_path,
3154 flags, NULL_TREE, strict, complain);
3158 static struct z_candidate *
3159 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
3160 tree obj, tree first_arg,
3161 const vec<tree, va_gc> *arglist,
3162 tree return_type, tree access_path,
3163 tree conversion_path, tsubst_flags_t complain)
3165 return
3166 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
3167 first_arg, arglist, return_type, access_path,
3168 conversion_path, 0, obj, DEDUCE_CONV,
3169 complain);
3172 /* The CANDS are the set of candidates that were considered for
3173 overload resolution. Return the set of viable candidates, or CANDS
3174 if none are viable. If any of the candidates were viable, set
3175 *ANY_VIABLE_P to true. STRICT_P is true if a candidate should be
3176 considered viable only if it is strictly viable. */
3178 static struct z_candidate*
3179 splice_viable (struct z_candidate *cands,
3180 bool strict_p,
3181 bool *any_viable_p)
3183 struct z_candidate *viable;
3184 struct z_candidate **last_viable;
3185 struct z_candidate **cand;
3186 bool found_strictly_viable = false;
3188 /* Be strict inside templates, since build_over_call won't actually
3189 do the conversions to get pedwarns. */
3190 if (processing_template_decl)
3191 strict_p = true;
3193 viable = NULL;
3194 last_viable = &viable;
3195 *any_viable_p = false;
3197 cand = &cands;
3198 while (*cand)
3200 struct z_candidate *c = *cand;
3201 if (!strict_p
3202 && (c->viable == 1 || TREE_CODE (c->fn) == TEMPLATE_DECL))
3204 /* Be strict in the presence of a viable candidate. Also if
3205 there are template candidates, so that we get deduction errors
3206 for them instead of silently preferring a bad conversion. */
3207 strict_p = true;
3208 if (viable && !found_strictly_viable)
3210 /* Put any spliced near matches back onto the main list so
3211 that we see them if there is no strict match. */
3212 *any_viable_p = false;
3213 *last_viable = cands;
3214 cands = viable;
3215 viable = NULL;
3216 last_viable = &viable;
3220 if (strict_p ? c->viable == 1 : c->viable)
3222 *last_viable = c;
3223 *cand = c->next;
3224 c->next = NULL;
3225 last_viable = &c->next;
3226 *any_viable_p = true;
3227 if (c->viable == 1)
3228 found_strictly_viable = true;
3230 else
3231 cand = &c->next;
3234 return viable ? viable : cands;
3237 static bool
3238 any_strictly_viable (struct z_candidate *cands)
3240 for (; cands; cands = cands->next)
3241 if (cands->viable == 1)
3242 return true;
3243 return false;
3246 /* OBJ is being used in an expression like "OBJ.f (...)". In other
3247 words, it is about to become the "this" pointer for a member
3248 function call. Take the address of the object. */
3250 static tree
3251 build_this (tree obj)
3253 /* In a template, we are only concerned about the type of the
3254 expression, so we can take a shortcut. */
3255 if (processing_template_decl)
3256 return build_address (obj);
3258 return cp_build_addr_expr (obj, tf_warning_or_error);
3261 /* Returns true iff functions are equivalent. Equivalent functions are
3262 not '==' only if one is a function-local extern function or if
3263 both are extern "C". */
3265 static inline int
3266 equal_functions (tree fn1, tree fn2)
3268 if (TREE_CODE (fn1) != TREE_CODE (fn2))
3269 return 0;
3270 if (TREE_CODE (fn1) == TEMPLATE_DECL)
3271 return fn1 == fn2;
3272 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
3273 || DECL_EXTERN_C_FUNCTION_P (fn1))
3274 return decls_match (fn1, fn2);
3275 return fn1 == fn2;
3278 /* Print information about a candidate being rejected due to INFO. */
3280 static void
3281 print_conversion_rejection (location_t loc, struct conversion_info *info)
3283 tree from = info->from;
3284 if (!TYPE_P (from))
3285 from = lvalue_type (from);
3286 if (info->n_arg == -1)
3288 /* Conversion of implicit `this' argument failed. */
3289 if (!TYPE_P (info->from))
3290 /* A bad conversion for 'this' must be discarding cv-quals. */
3291 inform (loc, " passing %qT as %<this%> "
3292 "argument discards qualifiers",
3293 from);
3294 else
3295 inform (loc, " no known conversion for implicit "
3296 "%<this%> parameter from %qT to %qT",
3297 from, info->to_type);
3299 else if (!TYPE_P (info->from))
3301 if (info->n_arg >= 0)
3302 inform (loc, " conversion of argument %d would be ill-formed:",
3303 info->n_arg + 1);
3304 perform_implicit_conversion (info->to_type, info->from,
3305 tf_warning_or_error);
3307 else if (info->n_arg == -2)
3308 /* Conversion of conversion function return value failed. */
3309 inform (loc, " no known conversion from %qT to %qT",
3310 from, info->to_type);
3311 else
3312 inform (loc, " no known conversion for argument %d from %qT to %qT",
3313 info->n_arg + 1, from, info->to_type);
3316 /* Print information about a candidate with WANT parameters and we found
3317 HAVE. */
3319 static void
3320 print_arity_information (location_t loc, unsigned int have, unsigned int want)
3322 inform_n (loc, want,
3323 " candidate expects %d argument, %d provided",
3324 " candidate expects %d arguments, %d provided",
3325 want, have);
3328 /* Print information about one overload candidate CANDIDATE. MSGSTR
3329 is the text to print before the candidate itself.
3331 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3332 to have been run through gettext by the caller. This wart makes
3333 life simpler in print_z_candidates and for the translators. */
3335 static void
3336 print_z_candidate (location_t loc, const char *msgstr,
3337 struct z_candidate *candidate)
3339 const char *msg = (msgstr == NULL
3340 ? ""
3341 : ACONCAT ((msgstr, " ", NULL)));
3342 location_t cloc = location_of (candidate->fn);
3344 if (identifier_p (candidate->fn))
3346 cloc = loc;
3347 if (candidate->num_convs == 3)
3348 inform (cloc, "%s%D(%T, %T, %T) <built-in>", msg, candidate->fn,
3349 candidate->convs[0]->type,
3350 candidate->convs[1]->type,
3351 candidate->convs[2]->type);
3352 else if (candidate->num_convs == 2)
3353 inform (cloc, "%s%D(%T, %T) <built-in>", msg, candidate->fn,
3354 candidate->convs[0]->type,
3355 candidate->convs[1]->type);
3356 else
3357 inform (cloc, "%s%D(%T) <built-in>", msg, candidate->fn,
3358 candidate->convs[0]->type);
3360 else if (TYPE_P (candidate->fn))
3361 inform (cloc, "%s%T <conversion>", msg, candidate->fn);
3362 else if (candidate->viable == -1)
3363 inform (cloc, "%s%#D <near match>", msg, candidate->fn);
3364 else if (DECL_DELETED_FN (candidate->fn))
3365 inform (cloc, "%s%#D <deleted>", msg, candidate->fn);
3366 else
3367 inform (cloc, "%s%#D", msg, candidate->fn);
3368 /* Give the user some information about why this candidate failed. */
3369 if (candidate->reason != NULL)
3371 struct rejection_reason *r = candidate->reason;
3373 switch (r->code)
3375 case rr_arity:
3376 print_arity_information (cloc, r->u.arity.actual,
3377 r->u.arity.expected);
3378 break;
3379 case rr_arg_conversion:
3380 print_conversion_rejection (cloc, &r->u.conversion);
3381 break;
3382 case rr_bad_arg_conversion:
3383 print_conversion_rejection (cloc, &r->u.bad_conversion);
3384 break;
3385 case rr_explicit_conversion:
3386 inform (cloc, " return type %qT of explicit conversion function "
3387 "cannot be converted to %qT with a qualification "
3388 "conversion", r->u.conversion.from,
3389 r->u.conversion.to_type);
3390 break;
3391 case rr_template_conversion:
3392 inform (cloc, " conversion from return type %qT of template "
3393 "conversion function specialization to %qT is not an "
3394 "exact match", r->u.conversion.from,
3395 r->u.conversion.to_type);
3396 break;
3397 case rr_template_unification:
3398 /* We use template_unification_error_rejection if unification caused
3399 actual non-SFINAE errors, in which case we don't need to repeat
3400 them here. */
3401 if (r->u.template_unification.tmpl == NULL_TREE)
3403 inform (cloc, " substitution of deduced template arguments "
3404 "resulted in errors seen above");
3405 break;
3407 /* Re-run template unification with diagnostics. */
3408 inform (cloc, " template argument deduction/substitution failed:");
3409 fn_type_unification (r->u.template_unification.tmpl,
3410 r->u.template_unification.explicit_targs,
3411 (make_tree_vec
3412 (r->u.template_unification.num_targs)),
3413 r->u.template_unification.args,
3414 r->u.template_unification.nargs,
3415 r->u.template_unification.return_type,
3416 r->u.template_unification.strict,
3417 r->u.template_unification.flags,
3418 true, false);
3419 break;
3420 case rr_invalid_copy:
3421 inform (cloc,
3422 " a constructor taking a single argument of its own "
3423 "class type is invalid");
3424 break;
3425 case rr_none:
3426 default:
3427 /* This candidate didn't have any issues or we failed to
3428 handle a particular code. Either way... */
3429 gcc_unreachable ();
3434 static void
3435 print_z_candidates (location_t loc, struct z_candidate *candidates)
3437 struct z_candidate *cand1;
3438 struct z_candidate **cand2;
3440 if (!candidates)
3441 return;
3443 /* Remove non-viable deleted candidates. */
3444 cand1 = candidates;
3445 for (cand2 = &cand1; *cand2; )
3447 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
3448 && !(*cand2)->viable
3449 && DECL_DELETED_FN ((*cand2)->fn))
3450 *cand2 = (*cand2)->next;
3451 else
3452 cand2 = &(*cand2)->next;
3454 /* ...if there are any non-deleted ones. */
3455 if (cand1)
3456 candidates = cand1;
3458 /* There may be duplicates in the set of candidates. We put off
3459 checking this condition as long as possible, since we have no way
3460 to eliminate duplicates from a set of functions in less than n^2
3461 time. Now we are about to emit an error message, so it is more
3462 permissible to go slowly. */
3463 for (cand1 = candidates; cand1; cand1 = cand1->next)
3465 tree fn = cand1->fn;
3466 /* Skip builtin candidates and conversion functions. */
3467 if (!DECL_P (fn))
3468 continue;
3469 cand2 = &cand1->next;
3470 while (*cand2)
3472 if (DECL_P ((*cand2)->fn)
3473 && equal_functions (fn, (*cand2)->fn))
3474 *cand2 = (*cand2)->next;
3475 else
3476 cand2 = &(*cand2)->next;
3480 for (; candidates; candidates = candidates->next)
3481 print_z_candidate (loc, "candidate:", candidates);
3484 /* USER_SEQ is a user-defined conversion sequence, beginning with a
3485 USER_CONV. STD_SEQ is the standard conversion sequence applied to
3486 the result of the conversion function to convert it to the final
3487 desired type. Merge the two sequences into a single sequence,
3488 and return the merged sequence. */
3490 static conversion *
3491 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
3493 conversion **t;
3494 bool bad = user_seq->bad_p;
3496 gcc_assert (user_seq->kind == ck_user);
3498 /* Find the end of the second conversion sequence. */
3499 for (t = &std_seq; (*t)->kind != ck_identity; t = &((*t)->u.next))
3501 /* The entire sequence is a user-conversion sequence. */
3502 (*t)->user_conv_p = true;
3503 if (bad)
3504 (*t)->bad_p = true;
3507 /* Replace the identity conversion with the user conversion
3508 sequence. */
3509 *t = user_seq;
3511 return std_seq;
3514 /* Handle overload resolution for initializing an object of class type from
3515 an initializer list. First we look for a suitable constructor that
3516 takes a std::initializer_list; if we don't find one, we then look for a
3517 non-list constructor.
3519 Parameters are as for add_candidates, except that the arguments are in
3520 the form of a CONSTRUCTOR (the initializer list) rather than a vector, and
3521 the RETURN_TYPE parameter is replaced by TOTYPE, the desired type. */
3523 static void
3524 add_list_candidates (tree fns, tree first_arg,
3525 tree init_list, tree totype,
3526 tree explicit_targs, bool template_only,
3527 tree conversion_path, tree access_path,
3528 int flags,
3529 struct z_candidate **candidates,
3530 tsubst_flags_t complain)
3532 vec<tree, va_gc> *args;
3534 gcc_assert (*candidates == NULL);
3536 /* We're looking for a ctor for list-initialization. */
3537 flags |= LOOKUP_LIST_INIT_CTOR;
3538 /* And we don't allow narrowing conversions. We also use this flag to
3539 avoid the copy constructor call for copy-list-initialization. */
3540 flags |= LOOKUP_NO_NARROWING;
3542 /* Always use the default constructor if the list is empty (DR 990). */
3543 if (CONSTRUCTOR_NELTS (init_list) == 0
3544 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
3546 /* If the class has a list ctor, try passing the list as a single
3547 argument first, but only consider list ctors. */
3548 else if (TYPE_HAS_LIST_CTOR (totype))
3550 flags |= LOOKUP_LIST_ONLY;
3551 args = make_tree_vector_single (init_list);
3552 add_candidates (fns, first_arg, args, NULL_TREE,
3553 explicit_targs, template_only, conversion_path,
3554 access_path, flags, candidates, complain);
3555 if (any_strictly_viable (*candidates))
3556 return;
3559 args = ctor_to_vec (init_list);
3561 /* We aren't looking for list-ctors anymore. */
3562 flags &= ~LOOKUP_LIST_ONLY;
3563 /* We allow more user-defined conversions within an init-list. */
3564 flags &= ~LOOKUP_NO_CONVERSION;
3566 add_candidates (fns, first_arg, args, NULL_TREE,
3567 explicit_targs, template_only, conversion_path,
3568 access_path, flags, candidates, complain);
3571 /* Returns the best overload candidate to perform the requested
3572 conversion. This function is used for three the overloading situations
3573 described in [over.match.copy], [over.match.conv], and [over.match.ref].
3574 If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
3575 per [dcl.init.ref], so we ignore temporary bindings. */
3577 static struct z_candidate *
3578 build_user_type_conversion_1 (tree totype, tree expr, int flags,
3579 tsubst_flags_t complain)
3581 struct z_candidate *candidates, *cand;
3582 tree fromtype;
3583 tree ctors = NULL_TREE;
3584 tree conv_fns = NULL_TREE;
3585 conversion *conv = NULL;
3586 tree first_arg = NULL_TREE;
3587 vec<tree, va_gc> *args = NULL;
3588 bool any_viable_p;
3589 int convflags;
3591 if (!expr)
3592 return NULL;
3594 fromtype = TREE_TYPE (expr);
3596 /* We represent conversion within a hierarchy using RVALUE_CONV and
3597 BASE_CONV, as specified by [over.best.ics]; these become plain
3598 constructor calls, as specified in [dcl.init]. */
3599 gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
3600 || !DERIVED_FROM_P (totype, fromtype));
3602 if (MAYBE_CLASS_TYPE_P (totype))
3603 /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
3604 creating a garbage BASELINK; constructors can't be inherited. */
3605 ctors = lookup_fnfields_slot (totype, complete_ctor_identifier);
3607 if (MAYBE_CLASS_TYPE_P (fromtype))
3609 tree to_nonref = non_reference (totype);
3610 if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
3611 (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
3612 && DERIVED_FROM_P (to_nonref, fromtype)))
3614 /* [class.conv.fct] A conversion function is never used to
3615 convert a (possibly cv-qualified) object to the (possibly
3616 cv-qualified) same object type (or a reference to it), to a
3617 (possibly cv-qualified) base class of that type (or a
3618 reference to it)... */
3620 else
3621 conv_fns = lookup_conversions (fromtype);
3624 candidates = 0;
3625 flags |= LOOKUP_NO_CONVERSION;
3626 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3627 flags |= LOOKUP_NO_NARROWING;
3629 /* It's OK to bind a temporary for converting constructor arguments, but
3630 not in converting the return value of a conversion operator. */
3631 convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION
3632 | (flags & LOOKUP_NO_NARROWING));
3633 flags &= ~LOOKUP_NO_TEMP_BIND;
3635 if (ctors)
3637 int ctorflags = flags;
3639 first_arg = build_dummy_object (totype);
3641 /* We should never try to call the abstract or base constructor
3642 from here. */
3643 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
3644 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
3646 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3648 /* List-initialization. */
3649 add_list_candidates (ctors, first_arg, expr, totype, NULL_TREE,
3650 false, TYPE_BINFO (totype), TYPE_BINFO (totype),
3651 ctorflags, &candidates, complain);
3653 else
3655 args = make_tree_vector_single (expr);
3656 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
3657 TYPE_BINFO (totype), TYPE_BINFO (totype),
3658 ctorflags, &candidates, complain);
3661 for (cand = candidates; cand; cand = cand->next)
3663 cand->second_conv = build_identity_conv (totype, NULL_TREE);
3665 /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
3666 set, then this is copy-initialization. In that case, "The
3667 result of the call is then used to direct-initialize the
3668 object that is the destination of the copy-initialization."
3669 [dcl.init]
3671 We represent this in the conversion sequence with an
3672 rvalue conversion, which means a constructor call. */
3673 if (TREE_CODE (totype) != REFERENCE_TYPE
3674 && !(convflags & LOOKUP_NO_TEMP_BIND))
3675 cand->second_conv
3676 = build_conv (ck_rvalue, totype, cand->second_conv);
3680 if (conv_fns)
3681 first_arg = expr;
3683 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
3685 tree conversion_path = TREE_PURPOSE (conv_fns);
3686 struct z_candidate *old_candidates;
3688 /* If we are called to convert to a reference type, we are trying to
3689 find a direct binding, so don't even consider temporaries. If
3690 we don't find a direct binding, the caller will try again to
3691 look for a temporary binding. */
3692 if (TREE_CODE (totype) == REFERENCE_TYPE)
3693 convflags |= LOOKUP_NO_TEMP_BIND;
3695 old_candidates = candidates;
3696 add_candidates (TREE_VALUE (conv_fns), first_arg, NULL, totype,
3697 NULL_TREE, false,
3698 conversion_path, TYPE_BINFO (fromtype),
3699 flags, &candidates, complain);
3701 for (cand = candidates; cand != old_candidates; cand = cand->next)
3703 tree rettype = TREE_TYPE (TREE_TYPE (cand->fn));
3704 conversion *ics
3705 = implicit_conversion (totype,
3706 rettype,
3708 /*c_cast_p=*/false, convflags,
3709 complain);
3711 /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
3712 copy-initialization. In that case, "The result of the
3713 call is then used to direct-initialize the object that is
3714 the destination of the copy-initialization." [dcl.init]
3716 We represent this in the conversion sequence with an
3717 rvalue conversion, which means a constructor call. But
3718 don't add a second rvalue conversion if there's already
3719 one there. Which there really shouldn't be, but it's
3720 harmless since we'd add it here anyway. */
3721 if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
3722 && !(convflags & LOOKUP_NO_TEMP_BIND))
3723 ics = build_conv (ck_rvalue, totype, ics);
3725 cand->second_conv = ics;
3727 if (!ics)
3729 cand->viable = 0;
3730 cand->reason = arg_conversion_rejection (NULL_TREE, -2,
3731 rettype, totype);
3733 else if (DECL_NONCONVERTING_P (cand->fn)
3734 && ics->rank > cr_exact)
3736 /* 13.3.1.5: For direct-initialization, those explicit
3737 conversion functions that are not hidden within S and
3738 yield type T or a type that can be converted to type T
3739 with a qualification conversion (4.4) are also candidate
3740 functions. */
3741 /* 13.3.1.6 doesn't have a parallel restriction, but it should;
3742 I've raised this issue with the committee. --jason 9/2011 */
3743 cand->viable = -1;
3744 cand->reason = explicit_conversion_rejection (rettype, totype);
3746 else if (cand->viable == 1 && ics->bad_p)
3748 cand->viable = -1;
3749 cand->reason
3750 = bad_arg_conversion_rejection (NULL_TREE, -2,
3751 rettype, totype);
3753 else if (primary_template_instantiation_p (cand->fn)
3754 && ics->rank > cr_exact)
3756 /* 13.3.3.1.2: If the user-defined conversion is specified by
3757 a specialization of a conversion function template, the
3758 second standard conversion sequence shall have exact match
3759 rank. */
3760 cand->viable = -1;
3761 cand->reason = template_conversion_rejection (rettype, totype);
3766 candidates = splice_viable (candidates, false, &any_viable_p);
3767 if (!any_viable_p)
3769 if (args)
3770 release_tree_vector (args);
3771 return NULL;
3774 cand = tourney (candidates, complain);
3775 if (cand == 0)
3777 if (complain & tf_error)
3779 error ("conversion from %qT to %qT is ambiguous",
3780 fromtype, totype);
3781 print_z_candidates (location_of (expr), candidates);
3784 cand = candidates; /* any one will do */
3785 cand->second_conv = build_ambiguous_conv (totype, expr);
3786 cand->second_conv->user_conv_p = true;
3787 if (!any_strictly_viable (candidates))
3788 cand->second_conv->bad_p = true;
3789 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
3790 ambiguous conversion is no worse than another user-defined
3791 conversion. */
3793 return cand;
3796 tree convtype;
3797 if (!DECL_CONSTRUCTOR_P (cand->fn))
3798 convtype = non_reference (TREE_TYPE (TREE_TYPE (cand->fn)));
3799 else if (cand->second_conv->kind == ck_rvalue)
3800 /* DR 5: [in the first step of copy-initialization]...if the function
3801 is a constructor, the call initializes a temporary of the
3802 cv-unqualified version of the destination type. */
3803 convtype = cv_unqualified (totype);
3804 else
3805 convtype = totype;
3806 /* Build the user conversion sequence. */
3807 conv = build_conv
3808 (ck_user,
3809 convtype,
3810 build_identity_conv (TREE_TYPE (expr), expr));
3811 conv->cand = cand;
3812 if (cand->viable == -1)
3813 conv->bad_p = true;
3815 /* Remember that this was a list-initialization. */
3816 if (flags & LOOKUP_NO_NARROWING)
3817 conv->check_narrowing = true;
3819 /* Combine it with the second conversion sequence. */
3820 cand->second_conv = merge_conversion_sequences (conv,
3821 cand->second_conv);
3823 return cand;
3826 /* Wrapper for above. */
3828 tree
3829 build_user_type_conversion (tree totype, tree expr, int flags,
3830 tsubst_flags_t complain)
3832 struct z_candidate *cand;
3833 tree ret;
3835 bool subtime = timevar_cond_start (TV_OVERLOAD);
3836 cand = build_user_type_conversion_1 (totype, expr, flags, complain);
3838 if (cand)
3840 if (cand->second_conv->kind == ck_ambig)
3841 ret = error_mark_node;
3842 else
3844 expr = convert_like (cand->second_conv, expr, complain);
3845 ret = convert_from_reference (expr);
3848 else
3849 ret = NULL_TREE;
3851 timevar_cond_stop (TV_OVERLOAD, subtime);
3852 return ret;
3855 /* Subroutine of convert_nontype_argument.
3857 EXPR is an argument for a template non-type parameter of integral or
3858 enumeration type. Do any necessary conversions (that are permitted for
3859 non-type arguments) to convert it to the parameter type.
3861 If conversion is successful, returns the converted expression;
3862 otherwise, returns error_mark_node. */
3864 tree
3865 build_integral_nontype_arg_conv (tree type, tree expr, tsubst_flags_t complain)
3867 conversion *conv;
3868 void *p;
3869 tree t;
3870 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
3872 if (error_operand_p (expr))
3873 return error_mark_node;
3875 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
3877 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3878 p = conversion_obstack_alloc (0);
3880 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
3881 /*c_cast_p=*/false,
3882 LOOKUP_IMPLICIT, complain);
3884 /* for a non-type template-parameter of integral or
3885 enumeration type, integral promotions (4.5) and integral
3886 conversions (4.7) are applied. */
3887 /* It should be sufficient to check the outermost conversion step, since
3888 there are no qualification conversions to integer type. */
3889 if (conv)
3890 switch (conv->kind)
3892 /* A conversion function is OK. If it isn't constexpr, we'll
3893 complain later that the argument isn't constant. */
3894 case ck_user:
3895 /* The lvalue-to-rvalue conversion is OK. */
3896 case ck_rvalue:
3897 case ck_identity:
3898 break;
3900 case ck_std:
3901 t = next_conversion (conv)->type;
3902 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t))
3903 break;
3905 if (complain & tf_error)
3906 error_at (loc, "conversion from %qT to %qT not considered for "
3907 "non-type template argument", t, type);
3908 /* and fall through. */
3910 default:
3911 conv = NULL;
3912 break;
3915 if (conv)
3916 expr = convert_like (conv, expr, complain);
3917 else
3918 expr = error_mark_node;
3920 /* Free all the conversions we allocated. */
3921 obstack_free (&conversion_obstack, p);
3923 return expr;
3926 /* Do any initial processing on the arguments to a function call. */
3928 static vec<tree, va_gc> *
3929 resolve_args (vec<tree, va_gc> *args, tsubst_flags_t complain)
3931 unsigned int ix;
3932 tree arg;
3934 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
3936 if (error_operand_p (arg))
3937 return NULL;
3938 else if (VOID_TYPE_P (TREE_TYPE (arg)))
3940 if (complain & tf_error)
3941 error ("invalid use of void expression");
3942 return NULL;
3944 else if (invalid_nonstatic_memfn_p (arg, complain))
3945 return NULL;
3947 return args;
3950 /* Perform overload resolution on FN, which is called with the ARGS.
3952 Return the candidate function selected by overload resolution, or
3953 NULL if the event that overload resolution failed. In the case
3954 that overload resolution fails, *CANDIDATES will be the set of
3955 candidates considered, and ANY_VIABLE_P will be set to true or
3956 false to indicate whether or not any of the candidates were
3957 viable.
3959 The ARGS should already have gone through RESOLVE_ARGS before this
3960 function is called. */
3962 static struct z_candidate *
3963 perform_overload_resolution (tree fn,
3964 const vec<tree, va_gc> *args,
3965 struct z_candidate **candidates,
3966 bool *any_viable_p, tsubst_flags_t complain)
3968 struct z_candidate *cand;
3969 tree explicit_targs;
3970 int template_only;
3972 bool subtime = timevar_cond_start (TV_OVERLOAD);
3974 explicit_targs = NULL_TREE;
3975 template_only = 0;
3977 *candidates = NULL;
3978 *any_viable_p = true;
3980 /* Check FN. */
3981 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
3982 || TREE_CODE (fn) == TEMPLATE_DECL
3983 || TREE_CODE (fn) == OVERLOAD
3984 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
3986 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3988 explicit_targs = TREE_OPERAND (fn, 1);
3989 fn = TREE_OPERAND (fn, 0);
3990 template_only = 1;
3993 /* Add the various candidate functions. */
3994 add_candidates (fn, NULL_TREE, args, NULL_TREE,
3995 explicit_targs, template_only,
3996 /*conversion_path=*/NULL_TREE,
3997 /*access_path=*/NULL_TREE,
3998 LOOKUP_NORMAL,
3999 candidates, complain);
4001 *candidates = splice_viable (*candidates, false, any_viable_p);
4002 if (*any_viable_p)
4003 cand = tourney (*candidates, complain);
4004 else
4005 cand = NULL;
4007 timevar_cond_stop (TV_OVERLOAD, subtime);
4008 return cand;
4011 /* Print an error message about being unable to build a call to FN with
4012 ARGS. ANY_VIABLE_P indicates whether any candidate functions could
4013 be located; CANDIDATES is a possibly empty list of such
4014 functions. */
4016 static void
4017 print_error_for_call_failure (tree fn, vec<tree, va_gc> *args,
4018 struct z_candidate *candidates)
4020 tree name = DECL_NAME (OVL_CURRENT (fn));
4021 location_t loc = location_of (name);
4023 if (!any_strictly_viable (candidates))
4024 error_at (loc, "no matching function for call to %<%D(%A)%>",
4025 name, build_tree_list_vec (args));
4026 else
4027 error_at (loc, "call of overloaded %<%D(%A)%> is ambiguous",
4028 name, build_tree_list_vec (args));
4029 if (candidates)
4030 print_z_candidates (loc, candidates);
4033 /* Return an expression for a call to FN (a namespace-scope function,
4034 or a static member function) with the ARGS. This may change
4035 ARGS. */
4037 tree
4038 build_new_function_call (tree fn, vec<tree, va_gc> **args, bool koenig_p,
4039 tsubst_flags_t complain)
4041 struct z_candidate *candidates, *cand;
4042 bool any_viable_p;
4043 void *p;
4044 tree result;
4046 if (args != NULL && *args != NULL)
4048 *args = resolve_args (*args, complain);
4049 if (*args == NULL)
4050 return error_mark_node;
4053 if (flag_tm)
4054 tm_malloc_replacement (fn);
4056 /* If this function was found without using argument dependent
4057 lookup, then we want to ignore any undeclared friend
4058 functions. */
4059 if (!koenig_p)
4061 tree orig_fn = fn;
4063 fn = remove_hidden_names (fn);
4064 if (!fn)
4066 if (complain & tf_error)
4067 print_error_for_call_failure (orig_fn, *args, NULL);
4068 return error_mark_node;
4072 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4073 p = conversion_obstack_alloc (0);
4075 cand = perform_overload_resolution (fn, *args, &candidates, &any_viable_p,
4076 complain);
4078 if (!cand)
4080 if (complain & tf_error)
4082 if (!any_viable_p && candidates && ! candidates->next
4083 && (TREE_CODE (candidates->fn) == FUNCTION_DECL))
4084 return cp_build_function_call_vec (candidates->fn, args, complain);
4085 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4086 fn = TREE_OPERAND (fn, 0);
4087 print_error_for_call_failure (fn, *args, candidates);
4089 result = error_mark_node;
4091 else
4093 int flags = LOOKUP_NORMAL;
4094 /* If fn is template_id_expr, the call has explicit template arguments
4095 (e.g. func<int>(5)), communicate this info to build_over_call
4096 through flags so that later we can use it to decide whether to warn
4097 about peculiar null pointer conversion. */
4098 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4099 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
4100 result = build_over_call (cand, flags, complain);
4103 /* Free all the conversions we allocated. */
4104 obstack_free (&conversion_obstack, p);
4106 return result;
4109 /* Build a call to a global operator new. FNNAME is the name of the
4110 operator (either "operator new" or "operator new[]") and ARGS are
4111 the arguments provided. This may change ARGS. *SIZE points to the
4112 total number of bytes required by the allocation, and is updated if
4113 that is changed here. *COOKIE_SIZE is non-NULL if a cookie should
4114 be used. If this function determines that no cookie should be
4115 used, after all, *COOKIE_SIZE is set to NULL_TREE. If SIZE_CHECK
4116 is not NULL_TREE, it is evaluated before calculating the final
4117 array size, and if it fails, the array size is replaced with
4118 (size_t)-1 (usually triggering a std::bad_alloc exception). If FN
4119 is non-NULL, it will be set, upon return, to the allocation
4120 function called. */
4122 tree
4123 build_operator_new_call (tree fnname, vec<tree, va_gc> **args,
4124 tree *size, tree *cookie_size, tree size_check,
4125 tree *fn, tsubst_flags_t complain)
4127 tree original_size = *size;
4128 tree fns;
4129 struct z_candidate *candidates;
4130 struct z_candidate *cand;
4131 bool any_viable_p;
4133 if (fn)
4134 *fn = NULL_TREE;
4135 /* Set to (size_t)-1 if the size check fails. */
4136 if (size_check != NULL_TREE)
4138 tree errval = TYPE_MAX_VALUE (sizetype);
4139 if (cxx_dialect >= cxx11 && flag_exceptions)
4140 errval = throw_bad_array_new_length ();
4141 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4142 original_size, errval);
4144 vec_safe_insert (*args, 0, *size);
4145 *args = resolve_args (*args, complain);
4146 if (*args == NULL)
4147 return error_mark_node;
4149 /* Based on:
4151 [expr.new]
4153 If this lookup fails to find the name, or if the allocated type
4154 is not a class type, the allocation function's name is looked
4155 up in the global scope.
4157 we disregard block-scope declarations of "operator new". */
4158 fns = lookup_function_nonclass (fnname, *args, /*block_p=*/false);
4160 /* Figure out what function is being called. */
4161 cand = perform_overload_resolution (fns, *args, &candidates, &any_viable_p,
4162 complain);
4164 /* If no suitable function could be found, issue an error message
4165 and give up. */
4166 if (!cand)
4168 if (complain & tf_error)
4169 print_error_for_call_failure (fns, *args, candidates);
4170 return error_mark_node;
4173 /* If a cookie is required, add some extra space. Whether
4174 or not a cookie is required cannot be determined until
4175 after we know which function was called. */
4176 if (*cookie_size)
4178 bool use_cookie = true;
4179 tree arg_types;
4181 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
4182 /* Skip the size_t parameter. */
4183 arg_types = TREE_CHAIN (arg_types);
4184 /* Check the remaining parameters (if any). */
4185 if (arg_types
4186 && TREE_CHAIN (arg_types) == void_list_node
4187 && same_type_p (TREE_VALUE (arg_types),
4188 ptr_type_node))
4189 use_cookie = false;
4190 /* If we need a cookie, adjust the number of bytes allocated. */
4191 if (use_cookie)
4193 /* Update the total size. */
4194 *size = size_binop (PLUS_EXPR, original_size, *cookie_size);
4195 /* Set to (size_t)-1 if the size check fails. */
4196 gcc_assert (size_check != NULL_TREE);
4197 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4198 *size, TYPE_MAX_VALUE (sizetype));
4199 /* Update the argument list to reflect the adjusted size. */
4200 (**args)[0] = *size;
4202 else
4203 *cookie_size = NULL_TREE;
4206 /* Tell our caller which function we decided to call. */
4207 if (fn)
4208 *fn = cand->fn;
4210 /* Build the CALL_EXPR. */
4211 return build_over_call (cand, LOOKUP_NORMAL, complain);
4214 /* Build a new call to operator(). This may change ARGS. */
4216 static tree
4217 build_op_call_1 (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4219 struct z_candidate *candidates = 0, *cand;
4220 tree fns, convs, first_mem_arg = NULL_TREE;
4221 tree type = TREE_TYPE (obj);
4222 bool any_viable_p;
4223 tree result = NULL_TREE;
4224 void *p;
4226 if (error_operand_p (obj))
4227 return error_mark_node;
4229 obj = prep_operand (obj);
4231 if (TYPE_PTRMEMFUNC_P (type))
4233 if (complain & tf_error)
4234 /* It's no good looking for an overloaded operator() on a
4235 pointer-to-member-function. */
4236 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
4237 return error_mark_node;
4240 if (TYPE_BINFO (type))
4242 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
4243 if (fns == error_mark_node)
4244 return error_mark_node;
4246 else
4247 fns = NULL_TREE;
4249 if (args != NULL && *args != NULL)
4251 *args = resolve_args (*args, complain);
4252 if (*args == NULL)
4253 return error_mark_node;
4256 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4257 p = conversion_obstack_alloc (0);
4259 if (fns)
4261 first_mem_arg = obj;
4263 add_candidates (BASELINK_FUNCTIONS (fns),
4264 first_mem_arg, *args, NULL_TREE,
4265 NULL_TREE, false,
4266 BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
4267 LOOKUP_NORMAL, &candidates, complain);
4270 convs = lookup_conversions (type);
4272 for (; convs; convs = TREE_CHAIN (convs))
4274 tree fns = TREE_VALUE (convs);
4275 tree totype = TREE_TYPE (convs);
4277 if (TYPE_PTRFN_P (totype)
4278 || TYPE_REFFN_P (totype)
4279 || (TREE_CODE (totype) == REFERENCE_TYPE
4280 && TYPE_PTRFN_P (TREE_TYPE (totype))))
4281 for (; fns; fns = OVL_NEXT (fns))
4283 tree fn = OVL_CURRENT (fns);
4285 if (DECL_NONCONVERTING_P (fn))
4286 continue;
4288 if (TREE_CODE (fn) == TEMPLATE_DECL)
4289 add_template_conv_candidate
4290 (&candidates, fn, obj, NULL_TREE, *args, totype,
4291 /*access_path=*/NULL_TREE,
4292 /*conversion_path=*/NULL_TREE, complain);
4293 else
4294 add_conv_candidate (&candidates, fn, obj, NULL_TREE,
4295 *args, /*conversion_path=*/NULL_TREE,
4296 /*access_path=*/NULL_TREE, complain);
4300 /* Be strict here because if we choose a bad conversion candidate, the
4301 errors we get won't mention the call context. */
4302 candidates = splice_viable (candidates, true, &any_viable_p);
4303 if (!any_viable_p)
4305 if (complain & tf_error)
4307 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj),
4308 build_tree_list_vec (*args));
4309 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4311 result = error_mark_node;
4313 else
4315 cand = tourney (candidates, complain);
4316 if (cand == 0)
4318 if (complain & tf_error)
4320 error ("call of %<(%T) (%A)%> is ambiguous",
4321 TREE_TYPE (obj), build_tree_list_vec (*args));
4322 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4324 result = error_mark_node;
4326 /* Since cand->fn will be a type, not a function, for a conversion
4327 function, we must be careful not to unconditionally look at
4328 DECL_NAME here. */
4329 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
4330 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
4331 result = build_over_call (cand, LOOKUP_NORMAL, complain);
4332 else
4334 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1,
4335 complain);
4336 obj = convert_from_reference (obj);
4337 result = cp_build_function_call_vec (obj, args, complain);
4341 /* Free all the conversions we allocated. */
4342 obstack_free (&conversion_obstack, p);
4344 return result;
4347 /* Wrapper for above. */
4349 tree
4350 build_op_call (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4352 tree ret;
4353 bool subtime = timevar_cond_start (TV_OVERLOAD);
4354 ret = build_op_call_1 (obj, args, complain);
4355 timevar_cond_stop (TV_OVERLOAD, subtime);
4356 return ret;
4359 /* Called by op_error to prepare format strings suitable for the error
4360 function. It concatenates a prefix (controlled by MATCH), ERRMSG,
4361 and a suffix (controlled by NTYPES). */
4363 static const char *
4364 op_error_string (const char *errmsg, int ntypes, bool match)
4366 const char *msg;
4368 const char *msgp = concat (match ? G_("ambiguous overload for ")
4369 : G_("no match for "), errmsg, NULL);
4371 if (ntypes == 3)
4372 msg = concat (msgp, G_(" (operand types are %qT, %qT, and %qT)"), NULL);
4373 else if (ntypes == 2)
4374 msg = concat (msgp, G_(" (operand types are %qT and %qT)"), NULL);
4375 else
4376 msg = concat (msgp, G_(" (operand type is %qT)"), NULL);
4378 return msg;
4381 static void
4382 op_error (location_t loc, enum tree_code code, enum tree_code code2,
4383 tree arg1, tree arg2, tree arg3, bool match)
4385 const char *opname;
4387 if (code == MODIFY_EXPR)
4388 opname = assignment_operator_name_info[code2].name;
4389 else
4390 opname = operator_name_info[code].name;
4392 switch (code)
4394 case COND_EXPR:
4395 if (flag_diagnostics_show_caret)
4396 error_at (loc, op_error_string (G_("ternary %<operator?:%>"),
4397 3, match),
4398 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4399 else
4400 error_at (loc, op_error_string (G_("ternary %<operator?:%> "
4401 "in %<%E ? %E : %E%>"), 3, match),
4402 arg1, arg2, arg3,
4403 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4404 break;
4406 case POSTINCREMENT_EXPR:
4407 case POSTDECREMENT_EXPR:
4408 if (flag_diagnostics_show_caret)
4409 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4410 opname, TREE_TYPE (arg1));
4411 else
4412 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E%s%>"),
4413 1, match),
4414 opname, arg1, opname, TREE_TYPE (arg1));
4415 break;
4417 case ARRAY_REF:
4418 if (flag_diagnostics_show_caret)
4419 error_at (loc, op_error_string (G_("%<operator[]%>"), 2, match),
4420 TREE_TYPE (arg1), TREE_TYPE (arg2));
4421 else
4422 error_at (loc, op_error_string (G_("%<operator[]%> in %<%E[%E]%>"),
4423 2, match),
4424 arg1, arg2, TREE_TYPE (arg1), TREE_TYPE (arg2));
4425 break;
4427 case REALPART_EXPR:
4428 case IMAGPART_EXPR:
4429 if (flag_diagnostics_show_caret)
4430 error_at (loc, op_error_string (G_("%qs"), 1, match),
4431 opname, TREE_TYPE (arg1));
4432 else
4433 error_at (loc, op_error_string (G_("%qs in %<%s %E%>"), 1, match),
4434 opname, opname, arg1, TREE_TYPE (arg1));
4435 break;
4437 default:
4438 if (arg2)
4439 if (flag_diagnostics_show_caret)
4440 error_at (loc, op_error_string (G_("%<operator%s%>"), 2, match),
4441 opname, TREE_TYPE (arg1), TREE_TYPE (arg2));
4442 else
4443 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E %s %E%>"),
4444 2, match),
4445 opname, arg1, opname, arg2,
4446 TREE_TYPE (arg1), TREE_TYPE (arg2));
4447 else
4448 if (flag_diagnostics_show_caret)
4449 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4450 opname, TREE_TYPE (arg1));
4451 else
4452 error_at (loc, op_error_string (G_("%<operator%s%> in %<%s%E%>"),
4453 1, match),
4454 opname, opname, arg1, TREE_TYPE (arg1));
4455 break;
4459 /* Return the implicit conversion sequence that could be used to
4460 convert E1 to E2 in [expr.cond]. */
4462 static conversion *
4463 conditional_conversion (tree e1, tree e2, tsubst_flags_t complain)
4465 tree t1 = non_reference (TREE_TYPE (e1));
4466 tree t2 = non_reference (TREE_TYPE (e2));
4467 conversion *conv;
4468 bool good_base;
4470 /* [expr.cond]
4472 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
4473 implicitly converted (clause _conv_) to the type "lvalue reference to
4474 T2", subject to the constraint that in the conversion the
4475 reference must bind directly (_dcl.init.ref_) to an lvalue.
4477 If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
4478 implicitly converted to the type "rvalue reference to T2", subject to
4479 the constraint that the reference must bind directly. */
4480 if (lvalue_or_rvalue_with_address_p (e2))
4482 tree rtype = cp_build_reference_type (t2, !real_lvalue_p (e2));
4483 conv = implicit_conversion (rtype,
4486 /*c_cast_p=*/false,
4487 LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND
4488 |LOOKUP_ONLYCONVERTING,
4489 complain);
4490 if (conv && !conv->bad_p)
4491 return conv;
4494 /* If E2 is a prvalue or if neither of the conversions above can be done
4495 and at least one of the operands has (possibly cv-qualified) class
4496 type: */
4497 if (!CLASS_TYPE_P (t1) && !CLASS_TYPE_P (t2))
4498 return NULL;
4500 /* [expr.cond]
4502 If E1 and E2 have class type, and the underlying class types are
4503 the same or one is a base class of the other: E1 can be converted
4504 to match E2 if the class of T2 is the same type as, or a base
4505 class of, the class of T1, and the cv-qualification of T2 is the
4506 same cv-qualification as, or a greater cv-qualification than, the
4507 cv-qualification of T1. If the conversion is applied, E1 is
4508 changed to an rvalue of type T2 that still refers to the original
4509 source class object (or the appropriate subobject thereof). */
4510 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
4511 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
4513 if (good_base && at_least_as_qualified_p (t2, t1))
4515 conv = build_identity_conv (t1, e1);
4516 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
4517 TYPE_MAIN_VARIANT (t2)))
4518 conv = build_conv (ck_base, t2, conv);
4519 else
4520 conv = build_conv (ck_rvalue, t2, conv);
4521 return conv;
4523 else
4524 return NULL;
4526 else
4527 /* [expr.cond]
4529 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
4530 converted to the type that expression E2 would have if E2 were
4531 converted to an rvalue (or the type it has, if E2 is an rvalue). */
4532 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
4533 LOOKUP_IMPLICIT, complain);
4536 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4537 arguments to the conditional expression. */
4539 static tree
4540 build_conditional_expr_1 (location_t loc, tree arg1, tree arg2, tree arg3,
4541 tsubst_flags_t complain)
4543 tree arg2_type;
4544 tree arg3_type;
4545 tree result = NULL_TREE;
4546 tree result_type = NULL_TREE;
4547 bool lvalue_p = true;
4548 struct z_candidate *candidates = 0;
4549 struct z_candidate *cand;
4550 void *p;
4551 tree orig_arg2, orig_arg3;
4553 /* As a G++ extension, the second argument to the conditional can be
4554 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
4555 c'.) If the second operand is omitted, make sure it is
4556 calculated only once. */
4557 if (!arg2)
4559 if (complain & tf_error)
4560 pedwarn (loc, OPT_Wpedantic,
4561 "ISO C++ forbids omitting the middle term of a ?: expression");
4563 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
4564 if (real_lvalue_p (arg1))
4565 arg2 = arg1 = stabilize_reference (arg1);
4566 else
4567 arg2 = arg1 = save_expr (arg1);
4570 /* If something has already gone wrong, just pass that fact up the
4571 tree. */
4572 if (error_operand_p (arg1)
4573 || error_operand_p (arg2)
4574 || error_operand_p (arg3))
4575 return error_mark_node;
4577 orig_arg2 = arg2;
4578 orig_arg3 = arg3;
4580 if (VECTOR_INTEGER_TYPE_P (TREE_TYPE (arg1)))
4582 arg1 = force_rvalue (arg1, complain);
4583 arg2 = force_rvalue (arg2, complain);
4584 arg3 = force_rvalue (arg3, complain);
4586 /* force_rvalue can return error_mark on valid arguments. */
4587 if (error_operand_p (arg1)
4588 || error_operand_p (arg2)
4589 || error_operand_p (arg3))
4590 return error_mark_node;
4592 tree arg1_type = TREE_TYPE (arg1);
4593 arg2_type = TREE_TYPE (arg2);
4594 arg3_type = TREE_TYPE (arg3);
4596 if (TREE_CODE (arg2_type) != VECTOR_TYPE
4597 && TREE_CODE (arg3_type) != VECTOR_TYPE)
4599 /* Rely on the error messages of the scalar version. */
4600 tree scal = build_conditional_expr_1 (loc, integer_one_node,
4601 orig_arg2, orig_arg3, complain);
4602 if (scal == error_mark_node)
4603 return error_mark_node;
4604 tree stype = TREE_TYPE (scal);
4605 tree ctype = TREE_TYPE (arg1_type);
4606 if (TYPE_SIZE (stype) != TYPE_SIZE (ctype)
4607 || (!INTEGRAL_TYPE_P (stype) && !SCALAR_FLOAT_TYPE_P (stype)))
4609 if (complain & tf_error)
4610 error_at (loc, "inferred scalar type %qT is not an integer or "
4611 "floating point type of the same size as %qT", stype,
4612 COMPARISON_CLASS_P (arg1)
4613 ? TREE_TYPE (TREE_TYPE (TREE_OPERAND (arg1, 0)))
4614 : ctype);
4615 return error_mark_node;
4618 tree vtype = build_opaque_vector_type (stype,
4619 TYPE_VECTOR_SUBPARTS (arg1_type));
4620 /* We could pass complain & tf_warning to unsafe_conversion_p,
4621 but the warnings (like Wsign-conversion) have already been
4622 given by the scalar build_conditional_expr_1. We still check
4623 unsafe_conversion_p to forbid truncating long long -> float. */
4624 if (unsafe_conversion_p (loc, stype, arg2, false))
4626 if (complain & tf_error)
4627 error_at (loc, "conversion of scalar %qT to vector %qT "
4628 "involves truncation", arg2_type, vtype);
4629 return error_mark_node;
4631 if (unsafe_conversion_p (loc, stype, arg3, false))
4633 if (complain & tf_error)
4634 error_at (loc, "conversion of scalar %qT to vector %qT "
4635 "involves truncation", arg3_type, vtype);
4636 return error_mark_node;
4639 arg2 = cp_convert (stype, arg2, complain);
4640 arg2 = save_expr (arg2);
4641 arg2 = build_vector_from_val (vtype, arg2);
4642 arg2_type = vtype;
4643 arg3 = cp_convert (stype, arg3, complain);
4644 arg3 = save_expr (arg3);
4645 arg3 = build_vector_from_val (vtype, arg3);
4646 arg3_type = vtype;
4649 if ((TREE_CODE (arg2_type) == VECTOR_TYPE)
4650 != (TREE_CODE (arg3_type) == VECTOR_TYPE))
4652 enum stv_conv convert_flag =
4653 scalar_to_vector (loc, VEC_COND_EXPR, arg2, arg3,
4654 complain & tf_error);
4656 switch (convert_flag)
4658 case stv_error:
4659 return error_mark_node;
4660 case stv_firstarg:
4662 arg2 = save_expr (arg2);
4663 arg2 = convert (TREE_TYPE (arg3_type), arg2);
4664 arg2 = build_vector_from_val (arg3_type, arg2);
4665 arg2_type = TREE_TYPE (arg2);
4666 break;
4668 case stv_secondarg:
4670 arg3 = save_expr (arg3);
4671 arg3 = convert (TREE_TYPE (arg2_type), arg3);
4672 arg3 = build_vector_from_val (arg2_type, arg3);
4673 arg3_type = TREE_TYPE (arg3);
4674 break;
4676 default:
4677 break;
4681 if (!same_type_p (arg2_type, arg3_type)
4682 || TYPE_VECTOR_SUBPARTS (arg1_type)
4683 != TYPE_VECTOR_SUBPARTS (arg2_type)
4684 || TYPE_SIZE (arg1_type) != TYPE_SIZE (arg2_type))
4686 if (complain & tf_error)
4687 error_at (loc,
4688 "incompatible vector types in conditional expression: "
4689 "%qT, %qT and %qT", TREE_TYPE (arg1),
4690 TREE_TYPE (orig_arg2), TREE_TYPE (orig_arg3));
4691 return error_mark_node;
4694 if (!COMPARISON_CLASS_P (arg1))
4695 arg1 = cp_build_binary_op (loc, NE_EXPR, arg1,
4696 build_zero_cst (arg1_type), complain);
4697 return fold_build3 (VEC_COND_EXPR, arg2_type, arg1, arg2, arg3);
4700 /* [expr.cond]
4702 The first expression is implicitly converted to bool (clause
4703 _conv_). */
4704 arg1 = perform_implicit_conversion_flags (boolean_type_node, arg1, complain,
4705 LOOKUP_NORMAL);
4706 if (error_operand_p (arg1))
4707 return error_mark_node;
4709 /* [expr.cond]
4711 If either the second or the third operand has type (possibly
4712 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
4713 array-to-pointer (_conv.array_), and function-to-pointer
4714 (_conv.func_) standard conversions are performed on the second
4715 and third operands. */
4716 arg2_type = unlowered_expr_type (arg2);
4717 arg3_type = unlowered_expr_type (arg3);
4718 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
4720 /* Do the conversions. We don't these for `void' type arguments
4721 since it can't have any effect and since decay_conversion
4722 does not handle that case gracefully. */
4723 if (!VOID_TYPE_P (arg2_type))
4724 arg2 = decay_conversion (arg2, complain);
4725 if (!VOID_TYPE_P (arg3_type))
4726 arg3 = decay_conversion (arg3, complain);
4727 arg2_type = TREE_TYPE (arg2);
4728 arg3_type = TREE_TYPE (arg3);
4730 /* [expr.cond]
4732 One of the following shall hold:
4734 --The second or the third operand (but not both) is a
4735 throw-expression (_except.throw_); the result is of the
4736 type of the other and is an rvalue.
4738 --Both the second and the third operands have type void; the
4739 result is of type void and is an rvalue.
4741 We must avoid calling force_rvalue for expressions of type
4742 "void" because it will complain that their value is being
4743 used. */
4744 if (TREE_CODE (arg2) == THROW_EXPR
4745 && TREE_CODE (arg3) != THROW_EXPR)
4747 if (!VOID_TYPE_P (arg3_type))
4749 arg3 = force_rvalue (arg3, complain);
4750 if (arg3 == error_mark_node)
4751 return error_mark_node;
4753 arg3_type = TREE_TYPE (arg3);
4754 result_type = arg3_type;
4756 else if (TREE_CODE (arg2) != THROW_EXPR
4757 && TREE_CODE (arg3) == THROW_EXPR)
4759 if (!VOID_TYPE_P (arg2_type))
4761 arg2 = force_rvalue (arg2, complain);
4762 if (arg2 == error_mark_node)
4763 return error_mark_node;
4765 arg2_type = TREE_TYPE (arg2);
4766 result_type = arg2_type;
4768 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
4769 result_type = void_type_node;
4770 else
4772 if (complain & tf_error)
4774 if (VOID_TYPE_P (arg2_type))
4775 error_at (EXPR_LOC_OR_LOC (arg3, loc),
4776 "second operand to the conditional operator "
4777 "is of type %<void%>, but the third operand is "
4778 "neither a throw-expression nor of type %<void%>");
4779 else
4780 error_at (EXPR_LOC_OR_LOC (arg2, loc),
4781 "third operand to the conditional operator "
4782 "is of type %<void%>, but the second operand is "
4783 "neither a throw-expression nor of type %<void%>");
4785 return error_mark_node;
4788 lvalue_p = false;
4789 goto valid_operands;
4791 /* [expr.cond]
4793 Otherwise, if the second and third operand have different types,
4794 and either has (possibly cv-qualified) class type, or if both are
4795 glvalues of the same value category and the same type except for
4796 cv-qualification, an attempt is made to convert each of those operands
4797 to the type of the other. */
4798 else if (!same_type_p (arg2_type, arg3_type)
4799 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)
4800 || (same_type_ignoring_top_level_qualifiers_p (arg2_type,
4801 arg3_type)
4802 && lvalue_or_rvalue_with_address_p (arg2)
4803 && lvalue_or_rvalue_with_address_p (arg3)
4804 && real_lvalue_p (arg2) == real_lvalue_p (arg3))))
4806 conversion *conv2;
4807 conversion *conv3;
4808 bool converted = false;
4810 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4811 p = conversion_obstack_alloc (0);
4813 conv2 = conditional_conversion (arg2, arg3, complain);
4814 conv3 = conditional_conversion (arg3, arg2, complain);
4816 /* [expr.cond]
4818 If both can be converted, or one can be converted but the
4819 conversion is ambiguous, the program is ill-formed. If
4820 neither can be converted, the operands are left unchanged and
4821 further checking is performed as described below. If exactly
4822 one conversion is possible, that conversion is applied to the
4823 chosen operand and the converted operand is used in place of
4824 the original operand for the remainder of this section. */
4825 if ((conv2 && !conv2->bad_p
4826 && conv3 && !conv3->bad_p)
4827 || (conv2 && conv2->kind == ck_ambig)
4828 || (conv3 && conv3->kind == ck_ambig))
4830 if (complain & tf_error)
4832 error_at (loc, "operands to ?: have different types %qT and %qT",
4833 arg2_type, arg3_type);
4834 if (conv2 && !conv2->bad_p && conv3 && !conv3->bad_p)
4835 inform (loc, " and each type can be converted to the other");
4836 else if (conv2 && conv2->kind == ck_ambig)
4837 convert_like (conv2, arg2, complain);
4838 else
4839 convert_like (conv3, arg3, complain);
4841 result = error_mark_node;
4843 else if (conv2 && !conv2->bad_p)
4845 arg2 = convert_like (conv2, arg2, complain);
4846 arg2 = convert_from_reference (arg2);
4847 arg2_type = TREE_TYPE (arg2);
4848 /* Even if CONV2 is a valid conversion, the result of the
4849 conversion may be invalid. For example, if ARG3 has type
4850 "volatile X", and X does not have a copy constructor
4851 accepting a "volatile X&", then even if ARG2 can be
4852 converted to X, the conversion will fail. */
4853 if (error_operand_p (arg2))
4854 result = error_mark_node;
4855 converted = true;
4857 else if (conv3 && !conv3->bad_p)
4859 arg3 = convert_like (conv3, arg3, complain);
4860 arg3 = convert_from_reference (arg3);
4861 arg3_type = TREE_TYPE (arg3);
4862 if (error_operand_p (arg3))
4863 result = error_mark_node;
4864 converted = true;
4867 /* Free all the conversions we allocated. */
4868 obstack_free (&conversion_obstack, p);
4870 if (result)
4871 return result;
4873 /* If, after the conversion, both operands have class type,
4874 treat the cv-qualification of both operands as if it were the
4875 union of the cv-qualification of the operands.
4877 The standard is not clear about what to do in this
4878 circumstance. For example, if the first operand has type
4879 "const X" and the second operand has a user-defined
4880 conversion to "volatile X", what is the type of the second
4881 operand after this step? Making it be "const X" (matching
4882 the first operand) seems wrong, as that discards the
4883 qualification without actually performing a copy. Leaving it
4884 as "volatile X" seems wrong as that will result in the
4885 conditional expression failing altogether, even though,
4886 according to this step, the one operand could be converted to
4887 the type of the other. */
4888 if (converted
4889 && CLASS_TYPE_P (arg2_type)
4890 && cp_type_quals (arg2_type) != cp_type_quals (arg3_type))
4891 arg2_type = arg3_type =
4892 cp_build_qualified_type (arg2_type,
4893 cp_type_quals (arg2_type)
4894 | cp_type_quals (arg3_type));
4897 /* [expr.cond]
4899 If the second and third operands are glvalues of the same value
4900 category and have the same type, the result is of that type and
4901 value category. */
4902 if (((real_lvalue_p (arg2) && real_lvalue_p (arg3))
4903 || (xvalue_p (arg2) && xvalue_p (arg3)))
4904 && same_type_p (arg2_type, arg3_type))
4906 result_type = arg2_type;
4907 arg2 = mark_lvalue_use (arg2);
4908 arg3 = mark_lvalue_use (arg3);
4909 goto valid_operands;
4912 /* [expr.cond]
4914 Otherwise, the result is an rvalue. If the second and third
4915 operand do not have the same type, and either has (possibly
4916 cv-qualified) class type, overload resolution is used to
4917 determine the conversions (if any) to be applied to the operands
4918 (_over.match.oper_, _over.built_). */
4919 lvalue_p = false;
4920 if (!same_type_p (arg2_type, arg3_type)
4921 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4923 tree args[3];
4924 conversion *conv;
4925 bool any_viable_p;
4927 /* Rearrange the arguments so that add_builtin_candidate only has
4928 to know about two args. In build_builtin_candidate, the
4929 arguments are unscrambled. */
4930 args[0] = arg2;
4931 args[1] = arg3;
4932 args[2] = arg1;
4933 add_builtin_candidates (&candidates,
4934 COND_EXPR,
4935 NOP_EXPR,
4936 ansi_opname (COND_EXPR),
4937 args,
4938 LOOKUP_NORMAL, complain);
4940 /* [expr.cond]
4942 If the overload resolution fails, the program is
4943 ill-formed. */
4944 candidates = splice_viable (candidates, false, &any_viable_p);
4945 if (!any_viable_p)
4947 if (complain & tf_error)
4948 error_at (loc, "operands to ?: have different types %qT and %qT",
4949 arg2_type, arg3_type);
4950 return error_mark_node;
4952 cand = tourney (candidates, complain);
4953 if (!cand)
4955 if (complain & tf_error)
4957 op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
4958 print_z_candidates (loc, candidates);
4960 return error_mark_node;
4963 /* [expr.cond]
4965 Otherwise, the conversions thus determined are applied, and
4966 the converted operands are used in place of the original
4967 operands for the remainder of this section. */
4968 conv = cand->convs[0];
4969 arg1 = convert_like (conv, arg1, complain);
4970 conv = cand->convs[1];
4971 arg2 = convert_like (conv, arg2, complain);
4972 arg2_type = TREE_TYPE (arg2);
4973 conv = cand->convs[2];
4974 arg3 = convert_like (conv, arg3, complain);
4975 arg3_type = TREE_TYPE (arg3);
4978 /* [expr.cond]
4980 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
4981 and function-to-pointer (_conv.func_) standard conversions are
4982 performed on the second and third operands.
4984 We need to force the lvalue-to-rvalue conversion here for class types,
4985 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
4986 that isn't wrapped with a TARGET_EXPR plays havoc with exception
4987 regions. */
4989 arg2 = force_rvalue (arg2, complain);
4990 if (!CLASS_TYPE_P (arg2_type))
4991 arg2_type = TREE_TYPE (arg2);
4993 arg3 = force_rvalue (arg3, complain);
4994 if (!CLASS_TYPE_P (arg3_type))
4995 arg3_type = TREE_TYPE (arg3);
4997 if (arg2 == error_mark_node || arg3 == error_mark_node)
4998 return error_mark_node;
5000 /* [expr.cond]
5002 After those conversions, one of the following shall hold:
5004 --The second and third operands have the same type; the result is of
5005 that type. */
5006 if (same_type_p (arg2_type, arg3_type))
5007 result_type = arg2_type;
5008 /* [expr.cond]
5010 --The second and third operands have arithmetic or enumeration
5011 type; the usual arithmetic conversions are performed to bring
5012 them to a common type, and the result is of that type. */
5013 else if ((ARITHMETIC_TYPE_P (arg2_type)
5014 || UNSCOPED_ENUM_P (arg2_type))
5015 && (ARITHMETIC_TYPE_P (arg3_type)
5016 || UNSCOPED_ENUM_P (arg3_type)))
5018 /* In this case, there is always a common type. */
5019 result_type = type_after_usual_arithmetic_conversions (arg2_type,
5020 arg3_type);
5021 if (complain & tf_warning)
5022 do_warn_double_promotion (result_type, arg2_type, arg3_type,
5023 "implicit conversion from %qT to %qT to "
5024 "match other result of conditional",
5025 loc);
5027 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
5028 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
5030 if (TREE_CODE (orig_arg2) == CONST_DECL
5031 && TREE_CODE (orig_arg3) == CONST_DECL
5032 && DECL_CONTEXT (orig_arg2) == DECL_CONTEXT (orig_arg3))
5033 /* Two enumerators from the same enumeration can have different
5034 types when the enumeration is still being defined. */;
5035 else if (complain & tf_warning)
5036 warning_at (loc, OPT_Wenum_compare, "enumeral mismatch in "
5037 "conditional expression: %qT vs %qT",
5038 arg2_type, arg3_type);
5040 else if (extra_warnings
5041 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
5042 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
5043 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
5044 && !same_type_p (arg2_type,
5045 type_promotes_to (arg3_type)))))
5047 if (complain & tf_warning)
5048 warning_at (loc, OPT_Wextra, "enumeral and non-enumeral type in "
5049 "conditional expression");
5052 arg2 = perform_implicit_conversion (result_type, arg2, complain);
5053 arg3 = perform_implicit_conversion (result_type, arg3, complain);
5055 /* [expr.cond]
5057 --The second and third operands have pointer type, or one has
5058 pointer type and the other is a null pointer constant; pointer
5059 conversions (_conv.ptr_) and qualification conversions
5060 (_conv.qual_) are performed to bring them to their composite
5061 pointer type (_expr.rel_). The result is of the composite
5062 pointer type.
5064 --The second and third operands have pointer to member type, or
5065 one has pointer to member type and the other is a null pointer
5066 constant; pointer to member conversions (_conv.mem_) and
5067 qualification conversions (_conv.qual_) are performed to bring
5068 them to a common type, whose cv-qualification shall match the
5069 cv-qualification of either the second or the third operand.
5070 The result is of the common type. */
5071 else if ((null_ptr_cst_p (arg2)
5072 && TYPE_PTR_OR_PTRMEM_P (arg3_type))
5073 || (null_ptr_cst_p (arg3)
5074 && TYPE_PTR_OR_PTRMEM_P (arg2_type))
5075 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
5076 || (TYPE_PTRDATAMEM_P (arg2_type) && TYPE_PTRDATAMEM_P (arg3_type))
5077 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
5079 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
5080 arg3, CPO_CONDITIONAL_EXPR,
5081 complain);
5082 if (result_type == error_mark_node)
5083 return error_mark_node;
5084 arg2 = perform_implicit_conversion (result_type, arg2, complain);
5085 arg3 = perform_implicit_conversion (result_type, arg3, complain);
5088 if (!result_type)
5090 if (complain & tf_error)
5091 error_at (loc, "operands to ?: have different types %qT and %qT",
5092 arg2_type, arg3_type);
5093 return error_mark_node;
5096 if (arg2 == error_mark_node || arg3 == error_mark_node)
5097 return error_mark_node;
5099 valid_operands:
5100 result = build3 (COND_EXPR, result_type, arg1, arg2, arg3);
5101 if (!cp_unevaluated_operand)
5102 /* Avoid folding within decltype (c++/42013) and noexcept. */
5103 result = fold_if_not_in_template (result);
5105 /* We can't use result_type below, as fold might have returned a
5106 throw_expr. */
5108 if (!lvalue_p)
5110 /* Expand both sides into the same slot, hopefully the target of
5111 the ?: expression. We used to check for TARGET_EXPRs here,
5112 but now we sometimes wrap them in NOP_EXPRs so the test would
5113 fail. */
5114 if (CLASS_TYPE_P (TREE_TYPE (result)))
5115 result = get_target_expr_sfinae (result, complain);
5116 /* If this expression is an rvalue, but might be mistaken for an
5117 lvalue, we must add a NON_LVALUE_EXPR. */
5118 result = rvalue (result);
5120 else
5121 result = force_paren_expr (result);
5123 return result;
5126 /* Wrapper for above. */
5128 tree
5129 build_conditional_expr (location_t loc, tree arg1, tree arg2, tree arg3,
5130 tsubst_flags_t complain)
5132 tree ret;
5133 bool subtime = timevar_cond_start (TV_OVERLOAD);
5134 ret = build_conditional_expr_1 (loc, arg1, arg2, arg3, complain);
5135 timevar_cond_stop (TV_OVERLOAD, subtime);
5136 return ret;
5139 /* OPERAND is an operand to an expression. Perform necessary steps
5140 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
5141 returned. */
5143 static tree
5144 prep_operand (tree operand)
5146 if (operand)
5148 if (CLASS_TYPE_P (TREE_TYPE (operand))
5149 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
5150 /* Make sure the template type is instantiated now. */
5151 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
5154 return operand;
5157 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
5158 OVERLOAD) to the CANDIDATES, returning an updated list of
5159 CANDIDATES. The ARGS are the arguments provided to the call;
5160 if FIRST_ARG is non-null it is the implicit object argument,
5161 otherwise the first element of ARGS is used if needed. The
5162 EXPLICIT_TARGS are explicit template arguments provided.
5163 TEMPLATE_ONLY is true if only template functions should be
5164 considered. CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
5165 add_function_candidate. */
5167 static void
5168 add_candidates (tree fns, tree first_arg, const vec<tree, va_gc> *args,
5169 tree return_type,
5170 tree explicit_targs, bool template_only,
5171 tree conversion_path, tree access_path,
5172 int flags,
5173 struct z_candidate **candidates,
5174 tsubst_flags_t complain)
5176 tree ctype;
5177 const vec<tree, va_gc> *non_static_args;
5178 bool check_list_ctor;
5179 bool check_converting;
5180 unification_kind_t strict;
5181 tree fn;
5183 if (!fns)
5184 return;
5186 /* Precalculate special handling of constructors and conversion ops. */
5187 fn = OVL_CURRENT (fns);
5188 if (DECL_CONV_FN_P (fn))
5190 check_list_ctor = false;
5191 check_converting = !!(flags & LOOKUP_ONLYCONVERTING);
5192 if (flags & LOOKUP_NO_CONVERSION)
5193 /* We're doing return_type(x). */
5194 strict = DEDUCE_CONV;
5195 else
5196 /* We're doing x.operator return_type(). */
5197 strict = DEDUCE_EXACT;
5198 /* [over.match.funcs] For conversion functions, the function
5199 is considered to be a member of the class of the implicit
5200 object argument for the purpose of defining the type of
5201 the implicit object parameter. */
5202 ctype = TYPE_MAIN_VARIANT (TREE_TYPE (first_arg));
5204 else
5206 if (DECL_CONSTRUCTOR_P (fn))
5208 check_list_ctor = !!(flags & LOOKUP_LIST_ONLY);
5209 /* For list-initialization we consider explicit constructors
5210 and complain if one is chosen. */
5211 check_converting
5212 = ((flags & (LOOKUP_ONLYCONVERTING|LOOKUP_LIST_INIT_CTOR))
5213 == LOOKUP_ONLYCONVERTING);
5215 else
5217 check_list_ctor = false;
5218 check_converting = false;
5220 strict = DEDUCE_CALL;
5221 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
5224 if (first_arg)
5225 non_static_args = args;
5226 else
5227 /* Delay creating the implicit this parameter until it is needed. */
5228 non_static_args = NULL;
5230 for (; fns; fns = OVL_NEXT (fns))
5232 tree fn_first_arg;
5233 const vec<tree, va_gc> *fn_args;
5235 fn = OVL_CURRENT (fns);
5237 if (check_converting && DECL_NONCONVERTING_P (fn))
5238 continue;
5239 if (check_list_ctor && !is_list_ctor (fn))
5240 continue;
5242 /* Figure out which set of arguments to use. */
5243 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
5245 /* If this function is a non-static member and we didn't get an
5246 implicit object argument, move it out of args. */
5247 if (first_arg == NULL_TREE)
5249 unsigned int ix;
5250 tree arg;
5251 vec<tree, va_gc> *tempvec;
5252 vec_alloc (tempvec, args->length () - 1);
5253 for (ix = 1; args->iterate (ix, &arg); ++ix)
5254 tempvec->quick_push (arg);
5255 non_static_args = tempvec;
5256 first_arg = (*args)[0];
5259 fn_first_arg = first_arg;
5260 fn_args = non_static_args;
5262 else
5264 /* Otherwise, just use the list of arguments provided. */
5265 fn_first_arg = NULL_TREE;
5266 fn_args = args;
5269 if (TREE_CODE (fn) == TEMPLATE_DECL)
5270 add_template_candidate (candidates,
5272 ctype,
5273 explicit_targs,
5274 fn_first_arg,
5275 fn_args,
5276 return_type,
5277 access_path,
5278 conversion_path,
5279 flags,
5280 strict,
5281 complain);
5282 else if (!template_only)
5283 add_function_candidate (candidates,
5285 ctype,
5286 fn_first_arg,
5287 fn_args,
5288 access_path,
5289 conversion_path,
5290 flags,
5291 complain);
5295 static tree
5296 build_new_op_1 (location_t loc, enum tree_code code, int flags, tree arg1,
5297 tree arg2, tree arg3, tree *overload, tsubst_flags_t complain)
5299 struct z_candidate *candidates = 0, *cand;
5300 vec<tree, va_gc> *arglist;
5301 tree fnname;
5302 tree args[3];
5303 tree result = NULL_TREE;
5304 bool result_valid_p = false;
5305 enum tree_code code2 = NOP_EXPR;
5306 enum tree_code code_orig_arg1 = ERROR_MARK;
5307 enum tree_code code_orig_arg2 = ERROR_MARK;
5308 conversion *conv;
5309 void *p;
5310 bool strict_p;
5311 bool any_viable_p;
5313 if (error_operand_p (arg1)
5314 || error_operand_p (arg2)
5315 || error_operand_p (arg3))
5316 return error_mark_node;
5318 if (code == MODIFY_EXPR)
5320 code2 = TREE_CODE (arg3);
5321 arg3 = NULL_TREE;
5322 fnname = ansi_assopname (code2);
5324 else
5325 fnname = ansi_opname (code);
5327 arg1 = prep_operand (arg1);
5329 bool memonly = false;
5330 switch (code)
5332 case NEW_EXPR:
5333 case VEC_NEW_EXPR:
5334 case VEC_DELETE_EXPR:
5335 case DELETE_EXPR:
5336 /* Use build_op_new_call and build_op_delete_call instead. */
5337 gcc_unreachable ();
5339 case CALL_EXPR:
5340 /* Use build_op_call instead. */
5341 gcc_unreachable ();
5343 case TRUTH_ORIF_EXPR:
5344 case TRUTH_ANDIF_EXPR:
5345 case TRUTH_AND_EXPR:
5346 case TRUTH_OR_EXPR:
5347 /* These are saved for the sake of warn_logical_operator. */
5348 code_orig_arg1 = TREE_CODE (arg1);
5349 code_orig_arg2 = TREE_CODE (arg2);
5350 break;
5351 case GT_EXPR:
5352 case LT_EXPR:
5353 case GE_EXPR:
5354 case LE_EXPR:
5355 case EQ_EXPR:
5356 case NE_EXPR:
5357 /* These are saved for the sake of maybe_warn_bool_compare. */
5358 code_orig_arg1 = TREE_CODE (TREE_TYPE (arg1));
5359 code_orig_arg2 = TREE_CODE (TREE_TYPE (arg2));
5360 break;
5362 /* =, ->, [], () must be non-static member functions. */
5363 case MODIFY_EXPR:
5364 if (code2 != NOP_EXPR)
5365 break;
5366 case COMPONENT_REF:
5367 case ARRAY_REF:
5368 memonly = true;
5369 break;
5371 default:
5372 break;
5375 arg2 = prep_operand (arg2);
5376 arg3 = prep_operand (arg3);
5378 if (code == COND_EXPR)
5379 /* Use build_conditional_expr instead. */
5380 gcc_unreachable ();
5381 else if (! OVERLOAD_TYPE_P (TREE_TYPE (arg1))
5382 && (! arg2 || ! OVERLOAD_TYPE_P (TREE_TYPE (arg2))))
5383 goto builtin;
5385 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
5386 arg2 = integer_zero_node;
5388 vec_alloc (arglist, 3);
5389 arglist->quick_push (arg1);
5390 if (arg2 != NULL_TREE)
5391 arglist->quick_push (arg2);
5392 if (arg3 != NULL_TREE)
5393 arglist->quick_push (arg3);
5395 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5396 p = conversion_obstack_alloc (0);
5398 /* Add namespace-scope operators to the list of functions to
5399 consider. */
5400 if (!memonly)
5401 add_candidates (lookup_function_nonclass (fnname, arglist,
5402 /*block_p=*/true),
5403 NULL_TREE, arglist, NULL_TREE,
5404 NULL_TREE, false, NULL_TREE, NULL_TREE,
5405 flags, &candidates, complain);
5407 args[0] = arg1;
5408 args[1] = arg2;
5409 args[2] = NULL_TREE;
5411 /* Add class-member operators to the candidate set. */
5412 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
5414 tree fns;
5416 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
5417 if (fns == error_mark_node)
5419 result = error_mark_node;
5420 goto user_defined_result_ready;
5422 if (fns)
5423 add_candidates (BASELINK_FUNCTIONS (fns),
5424 NULL_TREE, arglist, NULL_TREE,
5425 NULL_TREE, false,
5426 BASELINK_BINFO (fns),
5427 BASELINK_ACCESS_BINFO (fns),
5428 flags, &candidates, complain);
5430 /* Per 13.3.1.2/3, 2nd bullet, if no operand has a class type, then
5431 only non-member functions that have type T1 or reference to
5432 cv-qualified-opt T1 for the first argument, if the first argument
5433 has an enumeration type, or T2 or reference to cv-qualified-opt
5434 T2 for the second argument, if the the second argument has an
5435 enumeration type. Filter out those that don't match. */
5436 else if (! arg2 || ! CLASS_TYPE_P (TREE_TYPE (arg2)))
5438 struct z_candidate **candp, **next;
5440 for (candp = &candidates; *candp; candp = next)
5442 tree parmlist, parmtype;
5443 int i, nargs = (arg2 ? 2 : 1);
5445 cand = *candp;
5446 next = &cand->next;
5448 parmlist = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
5450 for (i = 0; i < nargs; ++i)
5452 parmtype = TREE_VALUE (parmlist);
5454 if (TREE_CODE (parmtype) == REFERENCE_TYPE)
5455 parmtype = TREE_TYPE (parmtype);
5456 if (TREE_CODE (TREE_TYPE (args[i])) == ENUMERAL_TYPE
5457 && (same_type_ignoring_top_level_qualifiers_p
5458 (TREE_TYPE (args[i]), parmtype)))
5459 break;
5461 parmlist = TREE_CHAIN (parmlist);
5464 /* No argument has an appropriate type, so remove this
5465 candidate function from the list. */
5466 if (i == nargs)
5468 *candp = cand->next;
5469 next = candp;
5474 add_builtin_candidates (&candidates, code, code2, fnname, args,
5475 flags, complain);
5477 switch (code)
5479 case COMPOUND_EXPR:
5480 case ADDR_EXPR:
5481 /* For these, the built-in candidates set is empty
5482 [over.match.oper]/3. We don't want non-strict matches
5483 because exact matches are always possible with built-in
5484 operators. The built-in candidate set for COMPONENT_REF
5485 would be empty too, but since there are no such built-in
5486 operators, we accept non-strict matches for them. */
5487 strict_p = true;
5488 break;
5490 default:
5491 strict_p = false;
5492 break;
5495 candidates = splice_viable (candidates, strict_p, &any_viable_p);
5496 if (!any_viable_p)
5498 switch (code)
5500 case POSTINCREMENT_EXPR:
5501 case POSTDECREMENT_EXPR:
5502 /* Don't try anything fancy if we're not allowed to produce
5503 errors. */
5504 if (!(complain & tf_error))
5505 return error_mark_node;
5507 /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
5508 distinguish between prefix and postfix ++ and
5509 operator++() was used for both, so we allow this with
5510 -fpermissive. */
5511 else
5513 const char *msg = (flag_permissive)
5514 ? G_("no %<%D(int)%> declared for postfix %qs,"
5515 " trying prefix operator instead")
5516 : G_("no %<%D(int)%> declared for postfix %qs");
5517 permerror (loc, msg, fnname, operator_name_info[code].name);
5520 if (!flag_permissive)
5521 return error_mark_node;
5523 if (code == POSTINCREMENT_EXPR)
5524 code = PREINCREMENT_EXPR;
5525 else
5526 code = PREDECREMENT_EXPR;
5527 result = build_new_op_1 (loc, code, flags, arg1, NULL_TREE,
5528 NULL_TREE, overload, complain);
5529 break;
5531 /* The caller will deal with these. */
5532 case ADDR_EXPR:
5533 case COMPOUND_EXPR:
5534 case COMPONENT_REF:
5535 result = NULL_TREE;
5536 result_valid_p = true;
5537 break;
5539 default:
5540 if (complain & tf_error)
5542 /* If one of the arguments of the operator represents
5543 an invalid use of member function pointer, try to report
5544 a meaningful error ... */
5545 if (invalid_nonstatic_memfn_p (arg1, tf_error)
5546 || invalid_nonstatic_memfn_p (arg2, tf_error)
5547 || invalid_nonstatic_memfn_p (arg3, tf_error))
5548 /* We displayed the error message. */;
5549 else
5551 /* ... Otherwise, report the more generic
5552 "no matching operator found" error */
5553 op_error (loc, code, code2, arg1, arg2, arg3, FALSE);
5554 print_z_candidates (loc, candidates);
5557 result = error_mark_node;
5558 break;
5561 else
5563 cand = tourney (candidates, complain);
5564 if (cand == 0)
5566 if (complain & tf_error)
5568 op_error (loc, code, code2, arg1, arg2, arg3, TRUE);
5569 print_z_candidates (loc, candidates);
5571 result = error_mark_node;
5573 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
5575 if (overload)
5576 *overload = cand->fn;
5578 if (resolve_args (arglist, complain) == NULL)
5579 result = error_mark_node;
5580 else
5581 result = build_over_call (cand, LOOKUP_NORMAL, complain);
5583 else
5585 /* Give any warnings we noticed during overload resolution. */
5586 if (cand->warnings && (complain & tf_warning))
5588 struct candidate_warning *w;
5589 for (w = cand->warnings; w; w = w->next)
5590 joust (cand, w->loser, 1, complain);
5593 /* Check for comparison of different enum types. */
5594 switch (code)
5596 case GT_EXPR:
5597 case LT_EXPR:
5598 case GE_EXPR:
5599 case LE_EXPR:
5600 case EQ_EXPR:
5601 case NE_EXPR:
5602 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
5603 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
5604 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
5605 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2)))
5606 && (complain & tf_warning))
5608 warning (OPT_Wenum_compare,
5609 "comparison between %q#T and %q#T",
5610 TREE_TYPE (arg1), TREE_TYPE (arg2));
5612 break;
5613 default:
5614 break;
5617 /* We need to strip any leading REF_BIND so that bitfields
5618 don't cause errors. This should not remove any important
5619 conversions, because builtins don't apply to class
5620 objects directly. */
5621 conv = cand->convs[0];
5622 if (conv->kind == ck_ref_bind)
5623 conv = next_conversion (conv);
5624 arg1 = convert_like (conv, arg1, complain);
5626 if (arg2)
5628 conv = cand->convs[1];
5629 if (conv->kind == ck_ref_bind)
5630 conv = next_conversion (conv);
5631 else
5632 arg2 = decay_conversion (arg2, complain);
5634 /* We need to call warn_logical_operator before
5635 converting arg2 to a boolean_type, but after
5636 decaying an enumerator to its value. */
5637 if (complain & tf_warning)
5638 warn_logical_operator (loc, code, boolean_type_node,
5639 code_orig_arg1, arg1,
5640 code_orig_arg2, arg2);
5642 arg2 = convert_like (conv, arg2, complain);
5644 if (arg3)
5646 conv = cand->convs[2];
5647 if (conv->kind == ck_ref_bind)
5648 conv = next_conversion (conv);
5649 arg3 = convert_like (conv, arg3, complain);
5655 user_defined_result_ready:
5657 /* Free all the conversions we allocated. */
5658 obstack_free (&conversion_obstack, p);
5660 if (result || result_valid_p)
5661 return result;
5663 builtin:
5664 switch (code)
5666 case MODIFY_EXPR:
5667 return cp_build_modify_expr (arg1, code2, arg2, complain);
5669 case INDIRECT_REF:
5670 return cp_build_indirect_ref (arg1, RO_UNARY_STAR, complain);
5672 case TRUTH_ANDIF_EXPR:
5673 case TRUTH_ORIF_EXPR:
5674 case TRUTH_AND_EXPR:
5675 case TRUTH_OR_EXPR:
5676 warn_logical_operator (loc, code, boolean_type_node,
5677 code_orig_arg1, arg1, code_orig_arg2, arg2);
5678 /* Fall through. */
5679 case GT_EXPR:
5680 case LT_EXPR:
5681 case GE_EXPR:
5682 case LE_EXPR:
5683 case EQ_EXPR:
5684 case NE_EXPR:
5685 if ((code_orig_arg1 == BOOLEAN_TYPE)
5686 ^ (code_orig_arg2 == BOOLEAN_TYPE))
5687 maybe_warn_bool_compare (loc, code, arg1, arg2);
5688 /* Fall through. */
5689 case PLUS_EXPR:
5690 case MINUS_EXPR:
5691 case MULT_EXPR:
5692 case TRUNC_DIV_EXPR:
5693 case MAX_EXPR:
5694 case MIN_EXPR:
5695 case LSHIFT_EXPR:
5696 case RSHIFT_EXPR:
5697 case TRUNC_MOD_EXPR:
5698 case BIT_AND_EXPR:
5699 case BIT_IOR_EXPR:
5700 case BIT_XOR_EXPR:
5701 return cp_build_binary_op (loc, code, arg1, arg2, complain);
5703 case UNARY_PLUS_EXPR:
5704 case NEGATE_EXPR:
5705 case BIT_NOT_EXPR:
5706 case TRUTH_NOT_EXPR:
5707 case PREINCREMENT_EXPR:
5708 case POSTINCREMENT_EXPR:
5709 case PREDECREMENT_EXPR:
5710 case POSTDECREMENT_EXPR:
5711 case REALPART_EXPR:
5712 case IMAGPART_EXPR:
5713 case ABS_EXPR:
5714 return cp_build_unary_op (code, arg1, candidates != 0, complain);
5716 case ARRAY_REF:
5717 return cp_build_array_ref (input_location, arg1, arg2, complain);
5719 case MEMBER_REF:
5720 return build_m_component_ref (cp_build_indirect_ref (arg1, RO_ARROW_STAR,
5721 complain),
5722 arg2, complain);
5724 /* The caller will deal with these. */
5725 case ADDR_EXPR:
5726 case COMPONENT_REF:
5727 case COMPOUND_EXPR:
5728 return NULL_TREE;
5730 default:
5731 gcc_unreachable ();
5733 return NULL_TREE;
5736 /* Wrapper for above. */
5738 tree
5739 build_new_op (location_t loc, enum tree_code code, int flags,
5740 tree arg1, tree arg2, tree arg3,
5741 tree *overload, tsubst_flags_t complain)
5743 tree ret;
5744 bool subtime = timevar_cond_start (TV_OVERLOAD);
5745 ret = build_new_op_1 (loc, code, flags, arg1, arg2, arg3,
5746 overload, complain);
5747 timevar_cond_stop (TV_OVERLOAD, subtime);
5748 return ret;
5751 /* Returns true iff T, an element of an OVERLOAD chain, is a usual
5752 deallocation function (3.7.4.2 [basic.stc.dynamic.deallocation]). */
5754 bool
5755 non_placement_deallocation_fn_p (tree t)
5757 /* A template instance is never a usual deallocation function,
5758 regardless of its signature. */
5759 if (TREE_CODE (t) == TEMPLATE_DECL
5760 || primary_template_instantiation_p (t))
5761 return false;
5763 /* If a class T has a member deallocation function named operator delete
5764 with exactly one parameter, then that function is a usual
5765 (non-placement) deallocation function. If class T does not declare
5766 such an operator delete but does declare a member deallocation
5767 function named operator delete with exactly two parameters, the second
5768 of which has type std::size_t (18.2), then this function is a usual
5769 deallocation function. */
5770 bool global = DECL_NAMESPACE_SCOPE_P (t);
5771 t = FUNCTION_ARG_CHAIN (t);
5772 if (t == void_list_node
5773 || (t && same_type_p (TREE_VALUE (t), size_type_node)
5774 && (!global || flag_sized_deallocation)
5775 && TREE_CHAIN (t) == void_list_node))
5776 return true;
5777 return false;
5780 /* Build a call to operator delete. This has to be handled very specially,
5781 because the restrictions on what signatures match are different from all
5782 other call instances. For a normal delete, only a delete taking (void *)
5783 or (void *, size_t) is accepted. For a placement delete, only an exact
5784 match with the placement new is accepted.
5786 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
5787 ADDR is the pointer to be deleted.
5788 SIZE is the size of the memory block to be deleted.
5789 GLOBAL_P is true if the delete-expression should not consider
5790 class-specific delete operators.
5791 PLACEMENT is the corresponding placement new call, or NULL_TREE.
5793 If this call to "operator delete" is being generated as part to
5794 deallocate memory allocated via a new-expression (as per [expr.new]
5795 which requires that if the initialization throws an exception then
5796 we call a deallocation function), then ALLOC_FN is the allocation
5797 function. */
5799 tree
5800 build_op_delete_call (enum tree_code code, tree addr, tree size,
5801 bool global_p, tree placement,
5802 tree alloc_fn, tsubst_flags_t complain)
5804 tree fn = NULL_TREE;
5805 tree fns, fnname, type, t;
5807 if (addr == error_mark_node)
5808 return error_mark_node;
5810 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
5812 fnname = ansi_opname (code);
5814 if (CLASS_TYPE_P (type)
5815 && COMPLETE_TYPE_P (complete_type (type))
5816 && !global_p)
5817 /* In [class.free]
5819 If the result of the lookup is ambiguous or inaccessible, or if
5820 the lookup selects a placement deallocation function, the
5821 program is ill-formed.
5823 Therefore, we ask lookup_fnfields to complain about ambiguity. */
5825 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
5826 if (fns == error_mark_node)
5827 return error_mark_node;
5829 else
5830 fns = NULL_TREE;
5832 if (fns == NULL_TREE)
5833 fns = lookup_name_nonclass (fnname);
5835 /* Strip const and volatile from addr. */
5836 addr = cp_convert (ptr_type_node, addr, complain);
5838 if (placement)
5840 /* "A declaration of a placement deallocation function matches the
5841 declaration of a placement allocation function if it has the same
5842 number of parameters and, after parameter transformations (8.3.5),
5843 all parameter types except the first are identical."
5845 So we build up the function type we want and ask instantiate_type
5846 to get it for us. */
5847 t = FUNCTION_ARG_CHAIN (alloc_fn);
5848 t = tree_cons (NULL_TREE, ptr_type_node, t);
5849 t = build_function_type (void_type_node, t);
5851 fn = instantiate_type (t, fns, tf_none);
5852 if (fn == error_mark_node)
5853 return NULL_TREE;
5855 if (BASELINK_P (fn))
5856 fn = BASELINK_FUNCTIONS (fn);
5858 /* "If the lookup finds the two-parameter form of a usual deallocation
5859 function (3.7.4.2) and that function, considered as a placement
5860 deallocation function, would have been selected as a match for the
5861 allocation function, the program is ill-formed." */
5862 if (non_placement_deallocation_fn_p (fn))
5864 /* But if the class has an operator delete (void *), then that is
5865 the usual deallocation function, so we shouldn't complain
5866 about using the operator delete (void *, size_t). */
5867 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5868 t; t = OVL_NEXT (t))
5870 tree elt = OVL_CURRENT (t);
5871 if (non_placement_deallocation_fn_p (elt)
5872 && FUNCTION_ARG_CHAIN (elt) == void_list_node)
5873 goto ok;
5875 if (complain & tf_error)
5877 permerror (0, "non-placement deallocation function %q+D", fn);
5878 permerror (input_location, "selected for placement delete");
5880 else
5881 return error_mark_node;
5882 ok:;
5885 else
5886 /* "Any non-placement deallocation function matches a non-placement
5887 allocation function. If the lookup finds a single matching
5888 deallocation function, that function will be called; otherwise, no
5889 deallocation function will be called." */
5890 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5891 t; t = OVL_NEXT (t))
5893 tree elt = OVL_CURRENT (t);
5894 if (non_placement_deallocation_fn_p (elt))
5896 fn = elt;
5897 /* "If a class T has a member deallocation function named
5898 operator delete with exactly one parameter, then that
5899 function is a usual (non-placement) deallocation
5900 function. If class T does not declare such an operator
5901 delete but does declare a member deallocation function named
5902 operator delete with exactly two parameters, the second of
5903 which has type std::size_t (18.2), then this function is a
5904 usual deallocation function."
5906 So in a class (void*) beats (void*, size_t). */
5907 if (DECL_CLASS_SCOPE_P (fn))
5909 if (FUNCTION_ARG_CHAIN (fn) == void_list_node)
5910 break;
5912 /* At global scope (in C++14 and above) the rules are different:
5914 If deallocation function lookup finds both a usual
5915 deallocation function with only a pointer parameter and a
5916 usual deallocation function with both a pointer parameter
5917 and a size parameter, the function to be called is selected
5918 as follows:
5920 * If the type is complete and if, for the second alternative
5921 (delete array) only, the operand is a pointer to a class
5922 type with a non-trivial destructor or a (possibly
5923 multi-dimensional) array thereof, the function with two
5924 parameters is selected.
5926 * Otherwise, it is unspecified which of the two deallocation
5927 functions is selected. */
5928 else
5930 bool want_size = COMPLETE_TYPE_P (type);
5931 if (code == VEC_DELETE_EXPR
5932 && !TYPE_VEC_NEW_USES_COOKIE (type))
5933 /* We need a cookie to determine the array size. */
5934 want_size = false;
5935 bool have_size = (FUNCTION_ARG_CHAIN (fn) != void_list_node);
5936 if (want_size == have_size)
5937 break;
5942 /* If we have a matching function, call it. */
5943 if (fn)
5945 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
5947 /* If the FN is a member function, make sure that it is
5948 accessible. */
5949 if (BASELINK_P (fns))
5950 perform_or_defer_access_check (BASELINK_BINFO (fns), fn, fn,
5951 complain);
5953 /* Core issue 901: It's ok to new a type with deleted delete. */
5954 if (DECL_DELETED_FN (fn) && alloc_fn)
5955 return NULL_TREE;
5957 if (placement)
5959 /* The placement args might not be suitable for overload
5960 resolution at this point, so build the call directly. */
5961 int nargs = call_expr_nargs (placement);
5962 tree *argarray = XALLOCAVEC (tree, nargs);
5963 int i;
5964 argarray[0] = addr;
5965 for (i = 1; i < nargs; i++)
5966 argarray[i] = CALL_EXPR_ARG (placement, i);
5967 if (!mark_used (fn, complain) && !(complain & tf_error))
5968 return error_mark_node;
5969 return build_cxx_call (fn, nargs, argarray, complain);
5971 else
5973 tree ret;
5974 vec<tree, va_gc> *args = make_tree_vector ();
5975 args->quick_push (addr);
5976 if (FUNCTION_ARG_CHAIN (fn) != void_list_node)
5977 args->quick_push (size);
5978 ret = cp_build_function_call_vec (fn, &args, complain);
5979 release_tree_vector (args);
5980 return ret;
5984 /* [expr.new]
5986 If no unambiguous matching deallocation function can be found,
5987 propagating the exception does not cause the object's memory to
5988 be freed. */
5989 if (alloc_fn)
5991 if ((complain & tf_warning)
5992 && !placement)
5993 warning (0, "no corresponding deallocation function for %qD",
5994 alloc_fn);
5995 return NULL_TREE;
5998 if (complain & tf_error)
5999 error ("no suitable %<operator %s%> for %qT",
6000 operator_name_info[(int)code].name, type);
6001 return error_mark_node;
6004 /* If the current scope isn't allowed to access DECL along
6005 BASETYPE_PATH, give an error. The most derived class in
6006 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
6007 the declaration to use in the error diagnostic. */
6009 bool
6010 enforce_access (tree basetype_path, tree decl, tree diag_decl,
6011 tsubst_flags_t complain)
6013 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
6015 if (!accessible_p (basetype_path, decl, true))
6017 if (complain & tf_error)
6019 if (TREE_PRIVATE (decl))
6021 error ("%q#D is private within this context", diag_decl);
6022 inform (DECL_SOURCE_LOCATION (diag_decl),
6023 "declared private here");
6025 else if (TREE_PROTECTED (decl))
6027 error ("%q#D is protected within this context", diag_decl);
6028 inform (DECL_SOURCE_LOCATION (diag_decl),
6029 "declared protected here");
6031 else
6033 error ("%q#D is inaccessible within this context", diag_decl);
6034 inform (DECL_SOURCE_LOCATION (diag_decl), "declared here");
6037 return false;
6040 return true;
6043 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
6044 bitwise or of LOOKUP_* values. If any errors are warnings are
6045 generated, set *DIAGNOSTIC_FN to "error" or "warning",
6046 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
6047 to NULL. */
6049 static tree
6050 build_temp (tree expr, tree type, int flags,
6051 diagnostic_t *diagnostic_kind, tsubst_flags_t complain)
6053 int savew, savee;
6054 vec<tree, va_gc> *args;
6056 savew = warningcount + werrorcount, savee = errorcount;
6057 args = make_tree_vector_single (expr);
6058 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6059 &args, type, flags, complain);
6060 release_tree_vector (args);
6061 if (warningcount + werrorcount > savew)
6062 *diagnostic_kind = DK_WARNING;
6063 else if (errorcount > savee)
6064 *diagnostic_kind = DK_ERROR;
6065 else
6066 *diagnostic_kind = DK_UNSPECIFIED;
6067 return expr;
6070 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
6071 EXPR is implicitly converted to type TOTYPE.
6072 FN and ARGNUM are used for diagnostics. */
6074 static void
6075 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
6077 /* Issue warnings about peculiar, but valid, uses of NULL. */
6078 if (expr == null_node && TREE_CODE (totype) != BOOLEAN_TYPE
6079 && ARITHMETIC_TYPE_P (totype))
6081 source_location loc =
6082 expansion_point_location_if_in_system_header (input_location);
6084 if (fn)
6085 warning_at (loc, OPT_Wconversion_null,
6086 "passing NULL to non-pointer argument %P of %qD",
6087 argnum, fn);
6088 else
6089 warning_at (loc, OPT_Wconversion_null,
6090 "converting to non-pointer type %qT from NULL", totype);
6093 /* Issue warnings if "false" is converted to a NULL pointer */
6094 else if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE
6095 && TYPE_PTR_P (totype))
6097 if (fn)
6098 warning_at (input_location, OPT_Wconversion_null,
6099 "converting %<false%> to pointer type for argument %P "
6100 "of %qD", argnum, fn);
6101 else
6102 warning_at (input_location, OPT_Wconversion_null,
6103 "converting %<false%> to pointer type %qT", totype);
6107 /* We gave a diagnostic during a conversion. If this was in the second
6108 standard conversion sequence of a user-defined conversion sequence, say
6109 which user-defined conversion. */
6111 static void
6112 maybe_print_user_conv_context (conversion *convs)
6114 if (convs->user_conv_p)
6115 for (conversion *t = convs; t; t = next_conversion (t))
6116 if (t->kind == ck_user)
6118 print_z_candidate (0, " after user-defined conversion:",
6119 t->cand);
6120 break;
6124 /* Perform the conversions in CONVS on the expression EXPR. FN and
6125 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
6126 indicates the `this' argument of a method. INNER is nonzero when
6127 being called to continue a conversion chain. It is negative when a
6128 reference binding will be applied, positive otherwise. If
6129 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
6130 conversions will be emitted if appropriate. If C_CAST_P is true,
6131 this conversion is coming from a C-style cast; in that case,
6132 conversions to inaccessible bases are permitted. */
6134 static tree
6135 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
6136 int inner, bool issue_conversion_warnings,
6137 bool c_cast_p, tsubst_flags_t complain)
6139 tree totype = convs->type;
6140 diagnostic_t diag_kind;
6141 int flags;
6142 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
6144 if (convs->bad_p && !(complain & tf_error))
6145 return error_mark_node;
6147 if (convs->bad_p
6148 && convs->kind != ck_user
6149 && convs->kind != ck_list
6150 && convs->kind != ck_ambig
6151 && (convs->kind != ck_ref_bind
6152 || (convs->user_conv_p && next_conversion (convs)->bad_p))
6153 && (convs->kind != ck_rvalue
6154 || SCALAR_TYPE_P (totype))
6155 && convs->kind != ck_base)
6157 bool complained = false;
6158 conversion *t = convs;
6160 /* Give a helpful error if this is bad because of excess braces. */
6161 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6162 && SCALAR_TYPE_P (totype)
6163 && CONSTRUCTOR_NELTS (expr) > 0
6164 && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
6166 complained = permerror (loc, "too many braces around initializer "
6167 "for %qT", totype);
6168 while (BRACE_ENCLOSED_INITIALIZER_P (expr)
6169 && CONSTRUCTOR_NELTS (expr) == 1)
6170 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6173 /* Give a helpful error if this is bad because a conversion to bool
6174 from std::nullptr_t requires direct-initialization. */
6175 if (NULLPTR_TYPE_P (TREE_TYPE (expr))
6176 && TREE_CODE (totype) == BOOLEAN_TYPE)
6177 complained = permerror (loc, "converting to %qT from %qT requires "
6178 "direct-initialization",
6179 totype, TREE_TYPE (expr));
6181 for (; t ; t = next_conversion (t))
6183 if (t->kind == ck_user && t->cand->reason)
6185 complained = permerror (loc, "invalid user-defined conversion "
6186 "from %qT to %qT", TREE_TYPE (expr),
6187 totype);
6188 if (complained)
6189 print_z_candidate (loc, "candidate is:", t->cand);
6190 expr = convert_like_real (t, expr, fn, argnum, 1,
6191 /*issue_conversion_warnings=*/false,
6192 /*c_cast_p=*/false,
6193 complain);
6194 if (convs->kind == ck_ref_bind)
6195 expr = convert_to_reference (totype, expr, CONV_IMPLICIT,
6196 LOOKUP_NORMAL, NULL_TREE,
6197 complain);
6198 else
6199 expr = cp_convert (totype, expr, complain);
6200 if (complained && fn)
6201 inform (DECL_SOURCE_LOCATION (fn),
6202 " initializing argument %P of %qD", argnum, fn);
6203 return expr;
6205 else if (t->kind == ck_user || !t->bad_p)
6207 expr = convert_like_real (t, expr, fn, argnum, 1,
6208 /*issue_conversion_warnings=*/false,
6209 /*c_cast_p=*/false,
6210 complain);
6211 break;
6213 else if (t->kind == ck_ambig)
6214 return convert_like_real (t, expr, fn, argnum, 1,
6215 /*issue_conversion_warnings=*/false,
6216 /*c_cast_p=*/false,
6217 complain);
6218 else if (t->kind == ck_identity)
6219 break;
6221 if (!complained)
6222 complained = permerror (loc, "invalid conversion from %qT to %qT",
6223 TREE_TYPE (expr), totype);
6224 if (complained && fn)
6225 inform (DECL_SOURCE_LOCATION (fn),
6226 " initializing argument %P of %qD", argnum, fn);
6228 return cp_convert (totype, expr, complain);
6231 if (issue_conversion_warnings && (complain & tf_warning))
6232 conversion_null_warnings (totype, expr, fn, argnum);
6234 switch (convs->kind)
6236 case ck_user:
6238 struct z_candidate *cand = convs->cand;
6239 tree convfn = cand->fn;
6240 unsigned i;
6242 /* If we're initializing from {}, it's value-initialization. Note
6243 that under the resolution of core 1630, value-initialization can
6244 use explicit constructors. */
6245 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6246 && CONSTRUCTOR_NELTS (expr) == 0
6247 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
6249 bool direct = CONSTRUCTOR_IS_DIRECT_INIT (expr);
6250 expr = build_value_init (totype, complain);
6251 expr = get_target_expr_sfinae (expr, complain);
6252 if (expr != error_mark_node)
6254 TARGET_EXPR_LIST_INIT_P (expr) = true;
6255 TARGET_EXPR_DIRECT_INIT_P (expr) = direct;
6257 return expr;
6260 /* When converting from an init list we consider explicit
6261 constructors, but actually trying to call one is an error. */
6262 if (DECL_NONCONVERTING_P (convfn) && DECL_CONSTRUCTOR_P (convfn)
6263 /* Unless this is for direct-list-initialization. */
6264 && !DIRECT_LIST_INIT_P (expr))
6266 if (!(complain & tf_error))
6267 return error_mark_node;
6268 error ("converting to %qT from initializer list would use "
6269 "explicit constructor %qD", totype, convfn);
6272 expr = mark_rvalue_use (expr);
6274 /* Set user_conv_p on the argument conversions, so rvalue/base
6275 handling knows not to allow any more UDCs. */
6276 for (i = 0; i < cand->num_convs; ++i)
6277 cand->convs[i]->user_conv_p = true;
6279 expr = build_over_call (cand, LOOKUP_NORMAL, complain);
6281 /* If this is a constructor or a function returning an aggr type,
6282 we need to build up a TARGET_EXPR. */
6283 if (DECL_CONSTRUCTOR_P (convfn))
6285 expr = build_cplus_new (totype, expr, complain);
6287 /* Remember that this was list-initialization. */
6288 if (convs->check_narrowing && expr != error_mark_node)
6289 TARGET_EXPR_LIST_INIT_P (expr) = true;
6292 return expr;
6294 case ck_identity:
6295 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
6297 int nelts = CONSTRUCTOR_NELTS (expr);
6298 if (nelts == 0)
6299 expr = build_value_init (totype, complain);
6300 else if (nelts == 1)
6301 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6302 else
6303 gcc_unreachable ();
6305 expr = mark_rvalue_use (expr);
6307 if (type_unknown_p (expr))
6308 expr = instantiate_type (totype, expr, complain);
6309 /* Convert a constant to its underlying value, unless we are
6310 about to bind it to a reference, in which case we need to
6311 leave it as an lvalue. */
6312 if (inner >= 0)
6314 expr = scalar_constant_value (expr);
6315 if (expr == null_node && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype))
6316 /* If __null has been converted to an integer type, we do not
6317 want to warn about uses of EXPR as an integer, rather than
6318 as a pointer. */
6319 expr = build_int_cst (totype, 0);
6321 return expr;
6322 case ck_ambig:
6323 /* We leave bad_p off ck_ambig because overload resolution considers
6324 it valid, it just fails when we try to perform it. So we need to
6325 check complain here, too. */
6326 if (complain & tf_error)
6328 /* Call build_user_type_conversion again for the error. */
6329 build_user_type_conversion (totype, convs->u.expr, LOOKUP_NORMAL,
6330 complain);
6331 if (fn)
6332 inform (input_location, " initializing argument %P of %q+D",
6333 argnum, fn);
6335 return error_mark_node;
6337 case ck_list:
6339 /* Conversion to std::initializer_list<T>. */
6340 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
6341 tree new_ctor = build_constructor (init_list_type_node, NULL);
6342 unsigned len = CONSTRUCTOR_NELTS (expr);
6343 tree array, val, field;
6344 vec<constructor_elt, va_gc> *vec = NULL;
6345 unsigned ix;
6347 /* Convert all the elements. */
6348 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
6350 tree sub = convert_like_real (convs->u.list[ix], val, fn, argnum,
6351 1, false, false, complain);
6352 if (sub == error_mark_node)
6353 return sub;
6354 if (!BRACE_ENCLOSED_INITIALIZER_P (val)
6355 && !check_narrowing (TREE_TYPE (sub), val, complain))
6356 return error_mark_node;
6357 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor), NULL_TREE, sub);
6358 if (!TREE_CONSTANT (sub))
6359 TREE_CONSTANT (new_ctor) = false;
6361 /* Build up the array. */
6362 elttype = cp_build_qualified_type
6363 (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
6364 array = build_array_of_n_type (elttype, len);
6365 array = finish_compound_literal (array, new_ctor, complain);
6366 /* Take the address explicitly rather than via decay_conversion
6367 to avoid the error about taking the address of a temporary. */
6368 array = cp_build_addr_expr (array, complain);
6369 array = cp_convert (build_pointer_type (elttype), array, complain);
6370 if (array == error_mark_node)
6371 return error_mark_node;
6373 /* Build up the initializer_list object. */
6374 totype = complete_type (totype);
6375 field = next_initializable_field (TYPE_FIELDS (totype));
6376 CONSTRUCTOR_APPEND_ELT (vec, field, array);
6377 field = next_initializable_field (DECL_CHAIN (field));
6378 CONSTRUCTOR_APPEND_ELT (vec, field, size_int (len));
6379 new_ctor = build_constructor (totype, vec);
6380 return get_target_expr_sfinae (new_ctor, complain);
6383 case ck_aggr:
6384 if (TREE_CODE (totype) == COMPLEX_TYPE)
6386 tree real = CONSTRUCTOR_ELT (expr, 0)->value;
6387 tree imag = CONSTRUCTOR_ELT (expr, 1)->value;
6388 real = perform_implicit_conversion (TREE_TYPE (totype),
6389 real, complain);
6390 imag = perform_implicit_conversion (TREE_TYPE (totype),
6391 imag, complain);
6392 expr = build2 (COMPLEX_EXPR, totype, real, imag);
6393 return fold_if_not_in_template (expr);
6395 expr = reshape_init (totype, expr, complain);
6396 expr = get_target_expr_sfinae (digest_init (totype, expr, complain),
6397 complain);
6398 if (expr != error_mark_node)
6399 TARGET_EXPR_LIST_INIT_P (expr) = true;
6400 return expr;
6402 default:
6403 break;
6406 expr = convert_like_real (next_conversion (convs), expr, fn, argnum,
6407 convs->kind == ck_ref_bind ? -1 : 1,
6408 convs->kind == ck_ref_bind ? issue_conversion_warnings : false,
6409 c_cast_p,
6410 complain);
6411 if (expr == error_mark_node)
6412 return error_mark_node;
6414 switch (convs->kind)
6416 case ck_rvalue:
6417 expr = decay_conversion (expr, complain);
6418 if (expr == error_mark_node)
6419 return error_mark_node;
6421 if (! MAYBE_CLASS_TYPE_P (totype))
6422 return expr;
6423 /* Else fall through. */
6424 case ck_base:
6425 if (convs->kind == ck_base && !convs->need_temporary_p)
6427 /* We are going to bind a reference directly to a base-class
6428 subobject of EXPR. */
6429 /* Build an expression for `*((base*) &expr)'. */
6430 expr = convert_to_base (expr, totype,
6431 !c_cast_p, /*nonnull=*/true, complain);
6432 return expr;
6435 /* Copy-initialization where the cv-unqualified version of the source
6436 type is the same class as, or a derived class of, the class of the
6437 destination [is treated as direct-initialization]. [dcl.init] */
6438 flags = LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING;
6439 if (convs->user_conv_p)
6440 /* This conversion is being done in the context of a user-defined
6441 conversion (i.e. the second step of copy-initialization), so
6442 don't allow any more. */
6443 flags |= LOOKUP_NO_CONVERSION;
6444 if (convs->rvaluedness_matches_p)
6445 flags |= LOOKUP_PREFER_RVALUE;
6446 if (TREE_CODE (expr) == TARGET_EXPR
6447 && TARGET_EXPR_LIST_INIT_P (expr))
6448 /* Copy-list-initialization doesn't actually involve a copy. */
6449 return expr;
6450 expr = build_temp (expr, totype, flags, &diag_kind, complain);
6451 if (diag_kind && complain)
6453 maybe_print_user_conv_context (convs);
6454 if (fn)
6455 inform (DECL_SOURCE_LOCATION (fn),
6456 " initializing argument %P of %qD", argnum, fn);
6459 return build_cplus_new (totype, expr, complain);
6461 case ck_ref_bind:
6463 tree ref_type = totype;
6465 if (convs->bad_p && !next_conversion (convs)->bad_p)
6467 tree extype = TREE_TYPE (expr);
6468 if (TYPE_REF_IS_RVALUE (ref_type)
6469 && real_lvalue_p (expr))
6470 error_at (loc, "cannot bind %qT lvalue to %qT",
6471 extype, totype);
6472 else if (!TYPE_REF_IS_RVALUE (ref_type) && !real_lvalue_p (expr)
6473 && !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)))
6474 error_at (loc, "invalid initialization of non-const reference of "
6475 "type %qT from an rvalue of type %qT", totype, extype);
6476 else if (!reference_compatible_p (TREE_TYPE (totype), extype))
6477 error_at (loc, "binding %qT to reference of type %qT "
6478 "discards qualifiers", extype, totype);
6479 else
6480 gcc_unreachable ();
6481 maybe_print_user_conv_context (convs);
6482 if (fn)
6483 inform (input_location,
6484 " initializing argument %P of %q+D", argnum, fn);
6485 return error_mark_node;
6488 /* If necessary, create a temporary.
6490 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
6491 that need temporaries, even when their types are reference
6492 compatible with the type of reference being bound, so the
6493 upcoming call to cp_build_addr_expr doesn't fail. */
6494 if (convs->need_temporary_p
6495 || TREE_CODE (expr) == CONSTRUCTOR
6496 || TREE_CODE (expr) == VA_ARG_EXPR)
6498 /* Otherwise, a temporary of type "cv1 T1" is created and
6499 initialized from the initializer expression using the rules
6500 for a non-reference copy-initialization (8.5). */
6502 tree type = TREE_TYPE (ref_type);
6503 cp_lvalue_kind lvalue = real_lvalue_p (expr);
6505 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6506 (type, next_conversion (convs)->type));
6507 if (!CP_TYPE_CONST_NON_VOLATILE_P (type)
6508 && !TYPE_REF_IS_RVALUE (ref_type))
6510 /* If the reference is volatile or non-const, we
6511 cannot create a temporary. */
6512 if (lvalue & clk_bitfield)
6513 error_at (loc, "cannot bind bitfield %qE to %qT",
6514 expr, ref_type);
6515 else if (lvalue & clk_packed)
6516 error_at (loc, "cannot bind packed field %qE to %qT",
6517 expr, ref_type);
6518 else
6519 error_at (loc, "cannot bind rvalue %qE to %qT",
6520 expr, ref_type);
6521 return error_mark_node;
6523 /* If the source is a packed field, and we must use a copy
6524 constructor, then building the target expr will require
6525 binding the field to the reference parameter to the
6526 copy constructor, and we'll end up with an infinite
6527 loop. If we can use a bitwise copy, then we'll be
6528 OK. */
6529 if ((lvalue & clk_packed)
6530 && CLASS_TYPE_P (type)
6531 && type_has_nontrivial_copy_init (type))
6533 error_at (loc, "cannot bind packed field %qE to %qT",
6534 expr, ref_type);
6535 return error_mark_node;
6537 if (lvalue & clk_bitfield)
6539 expr = convert_bitfield_to_declared_type (expr);
6540 expr = fold_convert (type, expr);
6542 expr = build_target_expr_with_type (expr, type, complain);
6545 /* Take the address of the thing to which we will bind the
6546 reference. */
6547 expr = cp_build_addr_expr (expr, complain);
6548 if (expr == error_mark_node)
6549 return error_mark_node;
6551 /* Convert it to a pointer to the type referred to by the
6552 reference. This will adjust the pointer if a derived to
6553 base conversion is being performed. */
6554 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
6555 expr, complain);
6556 /* Convert the pointer to the desired reference type. */
6557 return build_nop (ref_type, expr);
6560 case ck_lvalue:
6561 return decay_conversion (expr, complain);
6563 case ck_qual:
6564 /* Warn about deprecated conversion if appropriate. */
6565 string_conv_p (totype, expr, 1);
6566 break;
6568 case ck_ptr:
6569 if (convs->base_p)
6570 expr = convert_to_base (expr, totype, !c_cast_p,
6571 /*nonnull=*/false, complain);
6572 return build_nop (totype, expr);
6574 case ck_pmem:
6575 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
6576 c_cast_p, complain);
6578 default:
6579 break;
6582 if (convs->check_narrowing
6583 && !check_narrowing (totype, expr, complain))
6584 return error_mark_node;
6586 if (issue_conversion_warnings)
6587 expr = cp_convert_and_check (totype, expr, complain);
6588 else
6589 expr = cp_convert (totype, expr, complain);
6591 return expr;
6594 /* ARG is being passed to a varargs function. Perform any conversions
6595 required. Return the converted value. */
6597 tree
6598 convert_arg_to_ellipsis (tree arg, tsubst_flags_t complain)
6600 tree arg_type;
6601 location_t loc = EXPR_LOC_OR_LOC (arg, input_location);
6603 /* [expr.call]
6605 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6606 standard conversions are performed. */
6607 arg = decay_conversion (arg, complain);
6608 arg_type = TREE_TYPE (arg);
6609 /* [expr.call]
6611 If the argument has integral or enumeration type that is subject
6612 to the integral promotions (_conv.prom_), or a floating point
6613 type that is subject to the floating point promotion
6614 (_conv.fpprom_), the value of the argument is converted to the
6615 promoted type before the call. */
6616 if (TREE_CODE (arg_type) == REAL_TYPE
6617 && (TYPE_PRECISION (arg_type)
6618 < TYPE_PRECISION (double_type_node))
6619 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type)))
6621 if ((complain & tf_warning)
6622 && warn_double_promotion && !c_inhibit_evaluation_warnings)
6623 warning_at (loc, OPT_Wdouble_promotion,
6624 "implicit conversion from %qT to %qT when passing "
6625 "argument to function",
6626 arg_type, double_type_node);
6627 arg = convert_to_real (double_type_node, arg);
6629 else if (NULLPTR_TYPE_P (arg_type))
6630 arg = null_pointer_node;
6631 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type))
6633 if (SCOPED_ENUM_P (arg_type))
6635 tree prom = cp_convert (ENUM_UNDERLYING_TYPE (arg_type), arg,
6636 complain);
6637 prom = cp_perform_integral_promotions (prom, complain);
6638 if (abi_version_crosses (6)
6639 && TYPE_MODE (TREE_TYPE (prom)) != TYPE_MODE (arg_type)
6640 && (complain & tf_warning))
6641 warning_at (loc, OPT_Wabi, "scoped enum %qT passed through ... as "
6642 "%qT before -fabi-version=6, %qT after", arg_type,
6643 TREE_TYPE (prom), ENUM_UNDERLYING_TYPE (arg_type));
6644 if (!abi_version_at_least (6))
6645 arg = prom;
6647 else
6648 arg = cp_perform_integral_promotions (arg, complain);
6651 arg = require_complete_type_sfinae (arg, complain);
6652 arg_type = TREE_TYPE (arg);
6654 if (arg != error_mark_node
6655 /* In a template (or ill-formed code), we can have an incomplete type
6656 even after require_complete_type_sfinae, in which case we don't know
6657 whether it has trivial copy or not. */
6658 && COMPLETE_TYPE_P (arg_type))
6660 /* Build up a real lvalue-to-rvalue conversion in case the
6661 copy constructor is trivial but not callable. */
6662 if (!cp_unevaluated_operand && CLASS_TYPE_P (arg_type))
6663 force_rvalue (arg, complain);
6665 /* [expr.call] 5.2.2/7:
6666 Passing a potentially-evaluated argument of class type (Clause 9)
6667 with a non-trivial copy constructor or a non-trivial destructor
6668 with no corresponding parameter is conditionally-supported, with
6669 implementation-defined semantics.
6671 We support it as pass-by-invisible-reference, just like a normal
6672 value parameter.
6674 If the call appears in the context of a sizeof expression,
6675 it is not potentially-evaluated. */
6676 if (cp_unevaluated_operand == 0
6677 && (type_has_nontrivial_copy_init (arg_type)
6678 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type)))
6680 if (complain & tf_warning)
6681 warning (OPT_Wconditionally_supported,
6682 "passing objects of non-trivially-copyable "
6683 "type %q#T through %<...%> is conditionally supported",
6684 arg_type);
6685 return cp_build_addr_expr (arg, complain);
6689 return arg;
6692 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
6694 tree
6695 build_x_va_arg (source_location loc, tree expr, tree type)
6697 if (processing_template_decl)
6699 tree r = build_min (VA_ARG_EXPR, type, expr);
6700 SET_EXPR_LOCATION (r, loc);
6701 return r;
6704 type = complete_type_or_else (type, NULL_TREE);
6706 if (expr == error_mark_node || !type)
6707 return error_mark_node;
6709 expr = mark_lvalue_use (expr);
6711 if (TREE_CODE (type) == REFERENCE_TYPE)
6713 error ("cannot receive reference type %qT through %<...%>", type);
6714 return error_mark_node;
6717 if (type_has_nontrivial_copy_init (type)
6718 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6720 /* conditionally-supported behavior [expr.call] 5.2.2/7. Let's treat
6721 it as pass by invisible reference. */
6722 warning_at (loc, OPT_Wconditionally_supported,
6723 "receiving objects of non-trivially-copyable type %q#T "
6724 "through %<...%> is conditionally-supported", type);
6726 tree ref = cp_build_reference_type (type, false);
6727 expr = build_va_arg (loc, expr, ref);
6728 return convert_from_reference (expr);
6731 return build_va_arg (loc, expr, type);
6734 /* TYPE has been given to va_arg. Apply the default conversions which
6735 would have happened when passed via ellipsis. Return the promoted
6736 type, or the passed type if there is no change. */
6738 tree
6739 cxx_type_promotes_to (tree type)
6741 tree promote;
6743 /* Perform the array-to-pointer and function-to-pointer
6744 conversions. */
6745 type = type_decays_to (type);
6747 promote = type_promotes_to (type);
6748 if (same_type_p (type, promote))
6749 promote = type;
6751 return promote;
6754 /* ARG is a default argument expression being passed to a parameter of
6755 the indicated TYPE, which is a parameter to FN. PARMNUM is the
6756 zero-based argument number. Do any required conversions. Return
6757 the converted value. */
6759 static GTY(()) vec<tree, va_gc> *default_arg_context;
6760 void
6761 push_defarg_context (tree fn)
6762 { vec_safe_push (default_arg_context, fn); }
6764 void
6765 pop_defarg_context (void)
6766 { default_arg_context->pop (); }
6768 tree
6769 convert_default_arg (tree type, tree arg, tree fn, int parmnum,
6770 tsubst_flags_t complain)
6772 int i;
6773 tree t;
6775 /* See through clones. */
6776 fn = DECL_ORIGIN (fn);
6778 /* Detect recursion. */
6779 FOR_EACH_VEC_SAFE_ELT (default_arg_context, i, t)
6780 if (t == fn)
6782 if (complain & tf_error)
6783 error ("recursive evaluation of default argument for %q#D", fn);
6784 return error_mark_node;
6787 /* If the ARG is an unparsed default argument expression, the
6788 conversion cannot be performed. */
6789 if (TREE_CODE (arg) == DEFAULT_ARG)
6791 if (complain & tf_error)
6792 error ("call to %qD uses the default argument for parameter %P, which "
6793 "is not yet defined", fn, parmnum);
6794 return error_mark_node;
6797 push_defarg_context (fn);
6799 if (fn && DECL_TEMPLATE_INFO (fn))
6800 arg = tsubst_default_argument (fn, type, arg, complain);
6802 /* Due to:
6804 [dcl.fct.default]
6806 The names in the expression are bound, and the semantic
6807 constraints are checked, at the point where the default
6808 expressions appears.
6810 we must not perform access checks here. */
6811 push_deferring_access_checks (dk_no_check);
6812 /* We must make a copy of ARG, in case subsequent processing
6813 alters any part of it. */
6814 arg = break_out_target_exprs (arg);
6815 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
6816 ICR_DEFAULT_ARGUMENT, fn, parmnum,
6817 complain);
6818 arg = convert_for_arg_passing (type, arg, complain);
6819 pop_deferring_access_checks();
6821 pop_defarg_context ();
6823 return arg;
6826 /* Returns the type which will really be used for passing an argument of
6827 type TYPE. */
6829 tree
6830 type_passed_as (tree type)
6832 /* Pass classes with copy ctors by invisible reference. */
6833 if (TREE_ADDRESSABLE (type))
6835 type = build_reference_type (type);
6836 /* There are no other pointers to this temporary. */
6837 type = cp_build_qualified_type (type, TYPE_QUAL_RESTRICT);
6839 else if (targetm.calls.promote_prototypes (type)
6840 && INTEGRAL_TYPE_P (type)
6841 && COMPLETE_TYPE_P (type)
6842 && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
6843 type = integer_type_node;
6845 return type;
6848 /* Actually perform the appropriate conversion. */
6850 tree
6851 convert_for_arg_passing (tree type, tree val, tsubst_flags_t complain)
6853 tree bitfield_type;
6855 /* If VAL is a bitfield, then -- since it has already been converted
6856 to TYPE -- it cannot have a precision greater than TYPE.
6858 If it has a smaller precision, we must widen it here. For
6859 example, passing "int f:3;" to a function expecting an "int" will
6860 not result in any conversion before this point.
6862 If the precision is the same we must not risk widening. For
6863 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
6864 often have type "int", even though the C++ type for the field is
6865 "long long". If the value is being passed to a function
6866 expecting an "int", then no conversions will be required. But,
6867 if we call convert_bitfield_to_declared_type, the bitfield will
6868 be converted to "long long". */
6869 bitfield_type = is_bitfield_expr_with_lowered_type (val);
6870 if (bitfield_type
6871 && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
6872 val = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type), val);
6874 if (val == error_mark_node)
6876 /* Pass classes with copy ctors by invisible reference. */
6877 else if (TREE_ADDRESSABLE (type))
6878 val = build1 (ADDR_EXPR, build_reference_type (type), val);
6879 else if (targetm.calls.promote_prototypes (type)
6880 && INTEGRAL_TYPE_P (type)
6881 && COMPLETE_TYPE_P (type)
6882 && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
6883 val = cp_perform_integral_promotions (val, complain);
6884 if ((complain & tf_warning)
6885 && warn_suggest_attribute_format)
6887 tree rhstype = TREE_TYPE (val);
6888 const enum tree_code coder = TREE_CODE (rhstype);
6889 const enum tree_code codel = TREE_CODE (type);
6890 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
6891 && coder == codel
6892 && check_missing_format_attribute (type, rhstype))
6893 warning (OPT_Wsuggest_attribute_format,
6894 "argument of function call might be a candidate for a format attribute");
6896 return val;
6899 /* Returns true iff FN is a function with magic varargs, i.e. ones for
6900 which no conversions at all should be done. This is true for some
6901 builtins which don't act like normal functions. */
6903 bool
6904 magic_varargs_p (tree fn)
6906 if (flag_cilkplus && is_cilkplus_reduce_builtin (fn) != BUILT_IN_NONE)
6907 return true;
6909 if (DECL_BUILT_IN (fn))
6910 switch (DECL_FUNCTION_CODE (fn))
6912 case BUILT_IN_CLASSIFY_TYPE:
6913 case BUILT_IN_CONSTANT_P:
6914 case BUILT_IN_NEXT_ARG:
6915 case BUILT_IN_VA_START:
6916 return true;
6918 default:;
6919 return lookup_attribute ("type generic",
6920 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
6923 return false;
6926 /* Returns the decl of the dispatcher function if FN is a function version. */
6928 tree
6929 get_function_version_dispatcher (tree fn)
6931 tree dispatcher_decl = NULL;
6933 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
6934 && DECL_FUNCTION_VERSIONED (fn));
6936 gcc_assert (targetm.get_function_versions_dispatcher);
6937 dispatcher_decl = targetm.get_function_versions_dispatcher (fn);
6939 if (dispatcher_decl == NULL)
6941 error_at (input_location, "use of multiversioned function "
6942 "without a default");
6943 return NULL;
6946 retrofit_lang_decl (dispatcher_decl);
6947 gcc_assert (dispatcher_decl != NULL);
6948 return dispatcher_decl;
6951 /* fn is a function version dispatcher that is marked used. Mark all the
6952 semantically identical function versions it will dispatch as used. */
6954 void
6955 mark_versions_used (tree fn)
6957 struct cgraph_node *node;
6958 struct cgraph_function_version_info *node_v;
6959 struct cgraph_function_version_info *it_v;
6961 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
6963 node = cgraph_node::get (fn);
6964 if (node == NULL)
6965 return;
6967 gcc_assert (node->dispatcher_function);
6969 node_v = node->function_version ();
6970 if (node_v == NULL)
6971 return;
6973 /* All semantically identical versions are chained. Traverse and mark each
6974 one of them as used. */
6975 it_v = node_v->next;
6976 while (it_v != NULL)
6978 mark_used (it_v->this_node->decl);
6979 it_v = it_v->next;
6983 /* Build a call to "the copy constructor" for the type of A, even if it
6984 wouldn't be selected by normal overload resolution. Used for
6985 diagnostics. */
6987 static tree
6988 call_copy_ctor (tree a, tsubst_flags_t complain)
6990 tree ctype = TYPE_MAIN_VARIANT (TREE_TYPE (a));
6991 tree binfo = TYPE_BINFO (ctype);
6992 tree copy = get_copy_ctor (ctype, complain);
6993 copy = build_baselink (binfo, binfo, copy, NULL_TREE);
6994 tree ob = build_dummy_object (ctype);
6995 vec<tree, va_gc>* args = make_tree_vector_single (a);
6996 tree r = build_new_method_call (ob, copy, &args, NULL_TREE,
6997 LOOKUP_NORMAL, NULL, complain);
6998 release_tree_vector (args);
6999 return r;
7002 /* Subroutine of the various build_*_call functions. Overload resolution
7003 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
7004 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
7005 bitmask of various LOOKUP_* flags which apply to the call itself. */
7007 static tree
7008 build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
7010 tree fn = cand->fn;
7011 const vec<tree, va_gc> *args = cand->args;
7012 tree first_arg = cand->first_arg;
7013 conversion **convs = cand->convs;
7014 conversion *conv;
7015 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
7016 int parmlen;
7017 tree val;
7018 int i = 0;
7019 int j = 0;
7020 unsigned int arg_index = 0;
7021 int is_method = 0;
7022 int nargs;
7023 tree *argarray;
7024 bool already_used = false;
7026 /* In a template, there is no need to perform all of the work that
7027 is normally done. We are only interested in the type of the call
7028 expression, i.e., the return type of the function. Any semantic
7029 errors will be deferred until the template is instantiated. */
7030 if (processing_template_decl)
7032 tree expr, addr;
7033 tree return_type;
7034 const tree *argarray;
7035 unsigned int nargs;
7037 return_type = TREE_TYPE (TREE_TYPE (fn));
7038 nargs = vec_safe_length (args);
7039 if (first_arg == NULL_TREE)
7040 argarray = args->address ();
7041 else
7043 tree *alcarray;
7044 unsigned int ix;
7045 tree arg;
7047 ++nargs;
7048 alcarray = XALLOCAVEC (tree, nargs);
7049 alcarray[0] = build_this (first_arg);
7050 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
7051 alcarray[ix + 1] = arg;
7052 argarray = alcarray;
7055 addr = build_addr_func (fn, complain);
7056 if (addr == error_mark_node)
7057 return error_mark_node;
7058 expr = build_call_array_loc (input_location, return_type,
7059 addr, nargs, argarray);
7060 if (TREE_THIS_VOLATILE (fn) && cfun)
7061 current_function_returns_abnormally = 1;
7062 return convert_from_reference (expr);
7065 /* Give any warnings we noticed during overload resolution. */
7066 if (cand->warnings && (complain & tf_warning))
7068 struct candidate_warning *w;
7069 for (w = cand->warnings; w; w = w->next)
7070 joust (cand, w->loser, 1, complain);
7073 /* Make =delete work with SFINAE. */
7074 if (DECL_DELETED_FN (fn) && !(complain & tf_error))
7075 return error_mark_node;
7077 if (DECL_FUNCTION_MEMBER_P (fn))
7079 tree access_fn;
7080 /* If FN is a template function, two cases must be considered.
7081 For example:
7083 struct A {
7084 protected:
7085 template <class T> void f();
7087 template <class T> struct B {
7088 protected:
7089 void g();
7091 struct C : A, B<int> {
7092 using A::f; // #1
7093 using B<int>::g; // #2
7096 In case #1 where `A::f' is a member template, DECL_ACCESS is
7097 recorded in the primary template but not in its specialization.
7098 We check access of FN using its primary template.
7100 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
7101 because it is a member of class template B, DECL_ACCESS is
7102 recorded in the specialization `B<int>::g'. We cannot use its
7103 primary template because `B<T>::g' and `B<int>::g' may have
7104 different access. */
7105 if (DECL_TEMPLATE_INFO (fn)
7106 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
7107 access_fn = DECL_TI_TEMPLATE (fn);
7108 else
7109 access_fn = fn;
7110 if (!perform_or_defer_access_check (cand->access_path, access_fn,
7111 fn, complain))
7112 return error_mark_node;
7115 /* If we're checking for implicit delete, don't bother with argument
7116 conversions. */
7117 if (flags & LOOKUP_SPECULATIVE)
7119 if (DECL_DELETED_FN (fn))
7121 if (complain & tf_error)
7122 mark_used (fn);
7123 return error_mark_node;
7125 if (cand->viable == 1)
7126 return fn;
7127 else if (!(complain & tf_error))
7128 /* Reject bad conversions now. */
7129 return error_mark_node;
7130 /* else continue to get conversion error. */
7133 /* N3276 magic doesn't apply to nested calls. */
7134 int decltype_flag = (complain & tf_decltype);
7135 complain &= ~tf_decltype;
7137 /* Find maximum size of vector to hold converted arguments. */
7138 parmlen = list_length (parm);
7139 nargs = vec_safe_length (args) + (first_arg != NULL_TREE ? 1 : 0);
7140 if (parmlen > nargs)
7141 nargs = parmlen;
7142 argarray = XALLOCAVEC (tree, nargs);
7144 /* The implicit parameters to a constructor are not considered by overload
7145 resolution, and must be of the proper type. */
7146 if (DECL_CONSTRUCTOR_P (fn))
7148 tree object_arg;
7149 if (first_arg != NULL_TREE)
7151 object_arg = first_arg;
7152 first_arg = NULL_TREE;
7154 else
7156 object_arg = (*args)[arg_index];
7157 ++arg_index;
7159 argarray[j++] = build_this (object_arg);
7160 parm = TREE_CHAIN (parm);
7161 /* We should never try to call the abstract constructor. */
7162 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
7164 if (DECL_HAS_VTT_PARM_P (fn))
7166 argarray[j++] = (*args)[arg_index];
7167 ++arg_index;
7168 parm = TREE_CHAIN (parm);
7171 /* Bypass access control for 'this' parameter. */
7172 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
7174 tree parmtype = TREE_VALUE (parm);
7175 tree arg = build_this (first_arg != NULL_TREE
7176 ? first_arg
7177 : (*args)[arg_index]);
7178 tree argtype = TREE_TYPE (arg);
7179 tree converted_arg;
7180 tree base_binfo;
7182 if (convs[i]->bad_p)
7184 if (complain & tf_error)
7186 if (permerror (input_location, "passing %qT as %<this%> "
7187 "argument discards qualifiers",
7188 TREE_TYPE (argtype)))
7189 inform (DECL_SOURCE_LOCATION (fn), " in call to %qD", fn);
7191 else
7192 return error_mark_node;
7195 /* See if the function member or the whole class type is declared
7196 final and the call can be devirtualized. */
7197 if (DECL_FINAL_P (fn)
7198 || CLASSTYPE_FINAL (TYPE_METHOD_BASETYPE (TREE_TYPE (fn))))
7199 flags |= LOOKUP_NONVIRTUAL;
7201 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
7202 X is called for an object that is not of type X, or of a type
7203 derived from X, the behavior is undefined.
7205 So we can assume that anything passed as 'this' is non-null, and
7206 optimize accordingly. */
7207 gcc_assert (TYPE_PTR_P (parmtype));
7208 /* Convert to the base in which the function was declared. */
7209 gcc_assert (cand->conversion_path != NULL_TREE);
7210 converted_arg = build_base_path (PLUS_EXPR,
7211 arg,
7212 cand->conversion_path,
7213 1, complain);
7214 /* Check that the base class is accessible. */
7215 if (!accessible_base_p (TREE_TYPE (argtype),
7216 BINFO_TYPE (cand->conversion_path), true))
7218 if (complain & tf_error)
7219 error ("%qT is not an accessible base of %qT",
7220 BINFO_TYPE (cand->conversion_path),
7221 TREE_TYPE (argtype));
7222 else
7223 return error_mark_node;
7225 /* If fn was found by a using declaration, the conversion path
7226 will be to the derived class, not the base declaring fn. We
7227 must convert from derived to base. */
7228 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
7229 TREE_TYPE (parmtype), ba_unique,
7230 NULL, complain);
7231 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
7232 base_binfo, 1, complain);
7234 argarray[j++] = converted_arg;
7235 parm = TREE_CHAIN (parm);
7236 if (first_arg != NULL_TREE)
7237 first_arg = NULL_TREE;
7238 else
7239 ++arg_index;
7240 ++i;
7241 is_method = 1;
7244 gcc_assert (first_arg == NULL_TREE);
7245 for (; arg_index < vec_safe_length (args) && parm;
7246 parm = TREE_CHAIN (parm), ++arg_index, ++i)
7248 tree type = TREE_VALUE (parm);
7249 tree arg = (*args)[arg_index];
7250 bool conversion_warning = true;
7252 conv = convs[i];
7254 /* If the argument is NULL and used to (implicitly) instantiate a
7255 template function (and bind one of the template arguments to
7256 the type of 'long int'), we don't want to warn about passing NULL
7257 to non-pointer argument.
7258 For example, if we have this template function:
7260 template<typename T> void func(T x) {}
7262 we want to warn (when -Wconversion is enabled) in this case:
7264 void foo() {
7265 func<int>(NULL);
7268 but not in this case:
7270 void foo() {
7271 func(NULL);
7274 if (arg == null_node
7275 && DECL_TEMPLATE_INFO (fn)
7276 && cand->template_decl
7277 && !(flags & LOOKUP_EXPLICIT_TMPL_ARGS))
7278 conversion_warning = false;
7280 /* Warn about initializer_list deduction that isn't currently in the
7281 working draft. */
7282 if (cxx_dialect > cxx98
7283 && flag_deduce_init_list
7284 && cand->template_decl
7285 && is_std_init_list (non_reference (type))
7286 && BRACE_ENCLOSED_INITIALIZER_P (arg))
7288 tree tmpl = TI_TEMPLATE (cand->template_decl);
7289 tree realparm = chain_index (j, DECL_ARGUMENTS (cand->fn));
7290 tree patparm = get_pattern_parm (realparm, tmpl);
7291 tree pattype = TREE_TYPE (patparm);
7292 if (PACK_EXPANSION_P (pattype))
7293 pattype = PACK_EXPANSION_PATTERN (pattype);
7294 pattype = non_reference (pattype);
7296 if (TREE_CODE (pattype) == TEMPLATE_TYPE_PARM
7297 && (cand->explicit_targs == NULL_TREE
7298 || (TREE_VEC_LENGTH (cand->explicit_targs)
7299 <= TEMPLATE_TYPE_IDX (pattype))))
7301 pedwarn (input_location, 0, "deducing %qT as %qT",
7302 non_reference (TREE_TYPE (patparm)),
7303 non_reference (type));
7304 pedwarn (input_location, 0, " in call to %q+D", cand->fn);
7305 pedwarn (input_location, 0,
7306 " (you can disable this with -fno-deduce-init-list)");
7309 val = convert_like_with_context (conv, arg, fn, i - is_method,
7310 conversion_warning
7311 ? complain
7312 : complain & (~tf_warning));
7314 val = convert_for_arg_passing (type, val, complain);
7316 if (val == error_mark_node)
7317 return error_mark_node;
7318 else
7319 argarray[j++] = val;
7322 /* Default arguments */
7323 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
7325 if (TREE_VALUE (parm) == error_mark_node)
7326 return error_mark_node;
7327 argarray[j++] = convert_default_arg (TREE_VALUE (parm),
7328 TREE_PURPOSE (parm),
7329 fn, i - is_method,
7330 complain);
7333 /* Ellipsis */
7334 for (; arg_index < vec_safe_length (args); ++arg_index)
7336 tree a = (*args)[arg_index];
7337 if (magic_varargs_p (fn))
7338 /* Do no conversions for magic varargs. */
7339 a = mark_type_use (a);
7340 else if (DECL_CONSTRUCTOR_P (fn)
7341 && same_type_ignoring_top_level_qualifiers_p (DECL_CONTEXT (fn),
7342 TREE_TYPE (a)))
7344 /* Avoid infinite recursion trying to call A(...). */
7345 if (complain & tf_error)
7346 /* Try to call the actual copy constructor for a good error. */
7347 call_copy_ctor (a, complain);
7348 return error_mark_node;
7350 else
7351 a = convert_arg_to_ellipsis (a, complain);
7352 argarray[j++] = a;
7355 gcc_assert (j <= nargs);
7356 nargs = j;
7358 check_function_arguments (TREE_TYPE (fn), nargs, argarray);
7360 /* Avoid actually calling copy constructors and copy assignment operators,
7361 if possible. */
7363 if (! flag_elide_constructors)
7364 /* Do things the hard way. */;
7365 else if (cand->num_convs == 1
7366 && (DECL_COPY_CONSTRUCTOR_P (fn)
7367 || DECL_MOVE_CONSTRUCTOR_P (fn))
7368 /* It's unsafe to elide the constructor when handling
7369 a noexcept-expression, it may evaluate to the wrong
7370 value (c++/53025). */
7371 && cp_noexcept_operand == 0)
7373 tree targ;
7374 tree arg = argarray[num_artificial_parms_for (fn)];
7375 tree fa;
7376 bool trivial = trivial_fn_p (fn);
7378 /* Pull out the real argument, disregarding const-correctness. */
7379 targ = arg;
7380 while (CONVERT_EXPR_P (targ)
7381 || TREE_CODE (targ) == NON_LVALUE_EXPR)
7382 targ = TREE_OPERAND (targ, 0);
7383 if (TREE_CODE (targ) == ADDR_EXPR)
7385 targ = TREE_OPERAND (targ, 0);
7386 if (!same_type_ignoring_top_level_qualifiers_p
7387 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
7388 targ = NULL_TREE;
7390 else
7391 targ = NULL_TREE;
7393 if (targ)
7394 arg = targ;
7395 else
7396 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
7398 /* [class.copy]: the copy constructor is implicitly defined even if
7399 the implementation elided its use. */
7400 if (!trivial || DECL_DELETED_FN (fn))
7402 if (!mark_used (fn, complain) && !(complain & tf_error))
7403 return error_mark_node;
7404 already_used = true;
7407 /* If we're creating a temp and we already have one, don't create a
7408 new one. If we're not creating a temp but we get one, use
7409 INIT_EXPR to collapse the temp into our target. Otherwise, if the
7410 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
7411 temp or an INIT_EXPR otherwise. */
7412 fa = argarray[0];
7413 if (is_dummy_object (fa))
7415 if (TREE_CODE (arg) == TARGET_EXPR)
7416 return arg;
7417 else if (trivial)
7418 return force_target_expr (DECL_CONTEXT (fn), arg, complain);
7420 else if (TREE_CODE (arg) == TARGET_EXPR || trivial)
7422 tree to = stabilize_reference (cp_build_indirect_ref (fa, RO_NULL,
7423 complain));
7425 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
7426 return val;
7429 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
7430 && trivial_fn_p (fn)
7431 && !DECL_DELETED_FN (fn))
7433 tree to = stabilize_reference
7434 (cp_build_indirect_ref (argarray[0], RO_NULL, complain));
7435 tree type = TREE_TYPE (to);
7436 tree as_base = CLASSTYPE_AS_BASE (type);
7437 tree arg = argarray[1];
7439 if (is_really_empty_class (type))
7441 /* Avoid copying empty classes. */
7442 val = build2 (COMPOUND_EXPR, void_type_node, to, arg);
7443 TREE_NO_WARNING (val) = 1;
7444 val = build2 (COMPOUND_EXPR, type, val, to);
7445 TREE_NO_WARNING (val) = 1;
7447 else if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
7449 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
7450 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
7452 else
7454 /* We must only copy the non-tail padding parts. */
7455 tree arg0, arg2, t;
7456 tree array_type, alias_set;
7458 arg2 = TYPE_SIZE_UNIT (as_base);
7459 arg0 = cp_build_addr_expr (to, complain);
7461 array_type = build_array_type (char_type_node,
7462 build_index_type
7463 (size_binop (MINUS_EXPR,
7464 arg2, size_int (1))));
7465 alias_set = build_int_cst (build_pointer_type (type), 0);
7466 t = build2 (MODIFY_EXPR, void_type_node,
7467 build2 (MEM_REF, array_type, arg0, alias_set),
7468 build2 (MEM_REF, array_type, arg, alias_set));
7469 val = build2 (COMPOUND_EXPR, TREE_TYPE (to), t, to);
7470 TREE_NO_WARNING (val) = 1;
7473 return val;
7475 else if (DECL_DESTRUCTOR_P (fn)
7476 && trivial_fn_p (fn)
7477 && !DECL_DELETED_FN (fn))
7478 return fold_convert (void_type_node, argarray[0]);
7479 /* FIXME handle trivial default constructor, too. */
7481 /* For calls to a multi-versioned function, overload resolution
7482 returns the function with the highest target priority, that is,
7483 the version that will checked for dispatching first. If this
7484 version is inlinable, a direct call to this version can be made
7485 otherwise the call should go through the dispatcher. */
7487 if (DECL_FUNCTION_VERSIONED (fn)
7488 && (current_function_decl == NULL
7489 || !targetm.target_option.can_inline_p (current_function_decl, fn)))
7491 fn = get_function_version_dispatcher (fn);
7492 if (fn == NULL)
7493 return NULL;
7494 if (!already_used)
7495 mark_versions_used (fn);
7498 if (!already_used
7499 && !mark_used (fn, complain))
7500 return error_mark_node;
7502 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0
7503 /* Don't mess with virtual lookup in instantiate_non_dependent_expr;
7504 virtual functions can't be constexpr. */
7505 && !in_template_function ())
7507 tree t;
7508 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
7509 DECL_CONTEXT (fn),
7510 ba_any, NULL, complain);
7511 gcc_assert (binfo && binfo != error_mark_node);
7513 argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1,
7514 complain);
7515 if (TREE_SIDE_EFFECTS (argarray[0]))
7516 argarray[0] = save_expr (argarray[0]);
7517 t = build_pointer_type (TREE_TYPE (fn));
7518 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
7519 fn = build_java_interface_fn_ref (fn, argarray[0]);
7520 else
7521 fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
7522 TREE_TYPE (fn) = t;
7524 else
7526 fn = build_addr_func (fn, complain);
7527 if (fn == error_mark_node)
7528 return error_mark_node;
7531 tree call = build_cxx_call (fn, nargs, argarray, complain|decltype_flag);
7532 if (TREE_CODE (call) == CALL_EXPR
7533 && (cand->flags & LOOKUP_LIST_INIT_CTOR))
7534 CALL_EXPR_LIST_INIT_P (call) = true;
7535 return call;
7538 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
7539 This function performs no overload resolution, conversion, or other
7540 high-level operations. */
7542 tree
7543 build_cxx_call (tree fn, int nargs, tree *argarray,
7544 tsubst_flags_t complain)
7546 tree fndecl;
7547 int optimize_sav;
7549 /* Remember roughly where this call is. */
7550 location_t loc = EXPR_LOC_OR_LOC (fn, input_location);
7551 fn = build_call_a (fn, nargs, argarray);
7552 SET_EXPR_LOCATION (fn, loc);
7554 fndecl = get_callee_fndecl (fn);
7556 /* Check that arguments to builtin functions match the expectations. */
7557 if (fndecl
7558 && DECL_BUILT_IN (fndecl)
7559 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
7560 && !check_builtin_function_arguments (fndecl, nargs, argarray))
7561 return error_mark_node;
7563 /* If it is a built-in array notation function, then the return type of
7564 the function is the element type of the array passed in as array
7565 notation (i.e. the first parameter of the function). */
7566 if (flag_cilkplus && TREE_CODE (fn) == CALL_EXPR)
7568 enum built_in_function bif =
7569 is_cilkplus_reduce_builtin (CALL_EXPR_FN (fn));
7570 if (bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ADD
7571 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MUL
7572 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MAX
7573 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MIN
7574 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE
7575 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MUTATING)
7577 if (call_expr_nargs (fn) == 0)
7579 error_at (EXPR_LOCATION (fn), "Invalid builtin arguments");
7580 return error_mark_node;
7582 /* for bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_ZERO or
7583 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_ZERO or
7584 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_NONZERO or
7585 BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_NONZERO or
7586 BUILT_IN_CILKPLUS_SEC_REDUCE_MIN_IND or
7587 BUILT_IN_CILKPLUS_SEC_REDUCE_MAX_IND
7588 The pre-defined return-type is the correct one. */
7589 tree array_ntn = CALL_EXPR_ARG (fn, 0);
7590 TREE_TYPE (fn) = TREE_TYPE (array_ntn);
7591 return fn;
7595 /* Some built-in function calls will be evaluated at compile-time in
7596 fold (). Set optimize to 1 when folding __builtin_constant_p inside
7597 a constexpr function so that fold_builtin_1 doesn't fold it to 0. */
7598 optimize_sav = optimize;
7599 if (!optimize && fndecl && DECL_IS_BUILTIN_CONSTANT_P (fndecl)
7600 && current_function_decl
7601 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
7602 optimize = 1;
7603 fn = fold_if_not_in_template (fn);
7604 optimize = optimize_sav;
7606 if (VOID_TYPE_P (TREE_TYPE (fn)))
7607 return fn;
7609 /* 5.2.2/11: If a function call is a prvalue of object type: if the
7610 function call is either the operand of a decltype-specifier or the
7611 right operand of a comma operator that is the operand of a
7612 decltype-specifier, a temporary object is not introduced for the
7613 prvalue. The type of the prvalue may be incomplete. */
7614 if (!(complain & tf_decltype))
7616 fn = require_complete_type_sfinae (fn, complain);
7617 if (fn == error_mark_node)
7618 return error_mark_node;
7620 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
7621 fn = build_cplus_new (TREE_TYPE (fn), fn, complain);
7623 return convert_from_reference (fn);
7626 static GTY(()) tree java_iface_lookup_fn;
7628 /* Make an expression which yields the address of the Java interface
7629 method FN. This is achieved by generating a call to libjava's
7630 _Jv_LookupInterfaceMethodIdx(). */
7632 static tree
7633 build_java_interface_fn_ref (tree fn, tree instance)
7635 tree lookup_fn, method, idx;
7636 tree klass_ref, iface, iface_ref;
7637 int i;
7639 if (!java_iface_lookup_fn)
7641 tree ftype = build_function_type_list (ptr_type_node,
7642 ptr_type_node, ptr_type_node,
7643 java_int_type_node, NULL_TREE);
7644 java_iface_lookup_fn
7645 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx", ftype,
7646 0, NOT_BUILT_IN, NULL, NULL_TREE);
7649 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
7650 This is the first entry in the vtable. */
7651 klass_ref = build_vtbl_ref (cp_build_indirect_ref (instance, RO_NULL,
7652 tf_warning_or_error),
7653 integer_zero_node);
7655 /* Get the java.lang.Class pointer for the interface being called. */
7656 iface = DECL_CONTEXT (fn);
7657 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
7658 if (!iface_ref || !VAR_P (iface_ref)
7659 || DECL_CONTEXT (iface_ref) != iface)
7661 error ("could not find class$ field in java interface type %qT",
7662 iface);
7663 return error_mark_node;
7665 iface_ref = build_address (iface_ref);
7666 iface_ref = convert (build_pointer_type (iface), iface_ref);
7668 /* Determine the itable index of FN. */
7669 i = 1;
7670 for (method = TYPE_METHODS (iface); method; method = DECL_CHAIN (method))
7672 if (!DECL_VIRTUAL_P (method))
7673 continue;
7674 if (fn == method)
7675 break;
7676 i++;
7678 idx = build_int_cst (NULL_TREE, i);
7680 lookup_fn = build1 (ADDR_EXPR,
7681 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
7682 java_iface_lookup_fn);
7683 return build_call_nary (ptr_type_node, lookup_fn,
7684 3, klass_ref, iface_ref, idx);
7687 /* Returns the value to use for the in-charge parameter when making a
7688 call to a function with the indicated NAME.
7690 FIXME:Can't we find a neater way to do this mapping? */
7692 tree
7693 in_charge_arg_for_name (tree name)
7695 if (name == base_ctor_identifier
7696 || name == base_dtor_identifier)
7697 return integer_zero_node;
7698 else if (name == complete_ctor_identifier)
7699 return integer_one_node;
7700 else if (name == complete_dtor_identifier)
7701 return integer_two_node;
7702 else if (name == deleting_dtor_identifier)
7703 return integer_three_node;
7705 /* This function should only be called with one of the names listed
7706 above. */
7707 gcc_unreachable ();
7708 return NULL_TREE;
7711 /* Build a call to a constructor, destructor, or an assignment
7712 operator for INSTANCE, an expression with class type. NAME
7713 indicates the special member function to call; *ARGS are the
7714 arguments. ARGS may be NULL. This may change ARGS. BINFO
7715 indicates the base of INSTANCE that is to be passed as the `this'
7716 parameter to the member function called.
7718 FLAGS are the LOOKUP_* flags to use when processing the call.
7720 If NAME indicates a complete object constructor, INSTANCE may be
7721 NULL_TREE. In this case, the caller will call build_cplus_new to
7722 store the newly constructed object into a VAR_DECL. */
7724 tree
7725 build_special_member_call (tree instance, tree name, vec<tree, va_gc> **args,
7726 tree binfo, int flags, tsubst_flags_t complain)
7728 tree fns;
7729 /* The type of the subobject to be constructed or destroyed. */
7730 tree class_type;
7731 vec<tree, va_gc> *allocated = NULL;
7732 tree ret;
7734 gcc_assert (name == complete_ctor_identifier
7735 || name == base_ctor_identifier
7736 || name == complete_dtor_identifier
7737 || name == base_dtor_identifier
7738 || name == deleting_dtor_identifier
7739 || name == ansi_assopname (NOP_EXPR));
7740 if (TYPE_P (binfo))
7742 /* Resolve the name. */
7743 if (!complete_type_or_maybe_complain (binfo, NULL_TREE, complain))
7744 return error_mark_node;
7746 binfo = TYPE_BINFO (binfo);
7749 gcc_assert (binfo != NULL_TREE);
7751 class_type = BINFO_TYPE (binfo);
7753 /* Handle the special case where INSTANCE is NULL_TREE. */
7754 if (name == complete_ctor_identifier && !instance)
7755 instance = build_dummy_object (class_type);
7756 else
7758 if (name == complete_dtor_identifier
7759 || name == base_dtor_identifier
7760 || name == deleting_dtor_identifier)
7761 gcc_assert (args == NULL || vec_safe_is_empty (*args));
7763 /* Convert to the base class, if necessary. */
7764 if (!same_type_ignoring_top_level_qualifiers_p
7765 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
7767 if (name != ansi_assopname (NOP_EXPR))
7768 /* For constructors and destructors, either the base is
7769 non-virtual, or it is virtual but we are doing the
7770 conversion from a constructor or destructor for the
7771 complete object. In either case, we can convert
7772 statically. */
7773 instance = convert_to_base_statically (instance, binfo);
7774 else
7775 /* However, for assignment operators, we must convert
7776 dynamically if the base is virtual. */
7777 instance = build_base_path (PLUS_EXPR, instance,
7778 binfo, /*nonnull=*/1, complain);
7782 gcc_assert (instance != NULL_TREE);
7784 fns = lookup_fnfields (binfo, name, 1);
7786 /* When making a call to a constructor or destructor for a subobject
7787 that uses virtual base classes, pass down a pointer to a VTT for
7788 the subobject. */
7789 if ((name == base_ctor_identifier
7790 || name == base_dtor_identifier)
7791 && CLASSTYPE_VBASECLASSES (class_type))
7793 tree vtt;
7794 tree sub_vtt;
7796 /* If the current function is a complete object constructor
7797 or destructor, then we fetch the VTT directly.
7798 Otherwise, we look it up using the VTT we were given. */
7799 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
7800 vtt = decay_conversion (vtt, complain);
7801 if (vtt == error_mark_node)
7802 return error_mark_node;
7803 vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
7804 build2 (EQ_EXPR, boolean_type_node,
7805 current_in_charge_parm, integer_zero_node),
7806 current_vtt_parm,
7807 vtt);
7808 if (BINFO_SUBVTT_INDEX (binfo))
7809 sub_vtt = fold_build_pointer_plus (vtt, BINFO_SUBVTT_INDEX (binfo));
7810 else
7811 sub_vtt = vtt;
7813 if (args == NULL)
7815 allocated = make_tree_vector ();
7816 args = &allocated;
7819 vec_safe_insert (*args, 0, sub_vtt);
7822 ret = build_new_method_call (instance, fns, args,
7823 TYPE_BINFO (BINFO_TYPE (binfo)),
7824 flags, /*fn=*/NULL,
7825 complain);
7827 if (allocated != NULL)
7828 release_tree_vector (allocated);
7830 if ((complain & tf_error)
7831 && (flags & LOOKUP_DELEGATING_CONS)
7832 && name == complete_ctor_identifier
7833 && TREE_CODE (ret) == CALL_EXPR
7834 && (DECL_ABSTRACT_ORIGIN (TREE_OPERAND (CALL_EXPR_FN (ret), 0))
7835 == current_function_decl))
7836 error ("constructor delegates to itself");
7838 return ret;
7841 /* Return the NAME, as a C string. The NAME indicates a function that
7842 is a member of TYPE. *FREE_P is set to true if the caller must
7843 free the memory returned.
7845 Rather than go through all of this, we should simply set the names
7846 of constructors and destructors appropriately, and dispense with
7847 ctor_identifier, dtor_identifier, etc. */
7849 static char *
7850 name_as_c_string (tree name, tree type, bool *free_p)
7852 char *pretty_name;
7854 /* Assume that we will not allocate memory. */
7855 *free_p = false;
7856 /* Constructors and destructors are special. */
7857 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7859 pretty_name
7860 = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type))));
7861 /* For a destructor, add the '~'. */
7862 if (name == complete_dtor_identifier
7863 || name == base_dtor_identifier
7864 || name == deleting_dtor_identifier)
7866 pretty_name = concat ("~", pretty_name, NULL);
7867 /* Remember that we need to free the memory allocated. */
7868 *free_p = true;
7871 else if (IDENTIFIER_TYPENAME_P (name))
7873 pretty_name = concat ("operator ",
7874 type_as_string_translate (TREE_TYPE (name),
7875 TFF_PLAIN_IDENTIFIER),
7876 NULL);
7877 /* Remember that we need to free the memory allocated. */
7878 *free_p = true;
7880 else
7881 pretty_name = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (name)));
7883 return pretty_name;
7886 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
7887 be set, upon return, to the function called. ARGS may be NULL.
7888 This may change ARGS. */
7890 static tree
7891 build_new_method_call_1 (tree instance, tree fns, vec<tree, va_gc> **args,
7892 tree conversion_path, int flags,
7893 tree *fn_p, tsubst_flags_t complain)
7895 struct z_candidate *candidates = 0, *cand;
7896 tree explicit_targs = NULL_TREE;
7897 tree basetype = NULL_TREE;
7898 tree access_binfo, binfo;
7899 tree optype;
7900 tree first_mem_arg = NULL_TREE;
7901 tree name;
7902 bool skip_first_for_error;
7903 vec<tree, va_gc> *user_args;
7904 tree call;
7905 tree fn;
7906 int template_only = 0;
7907 bool any_viable_p;
7908 tree orig_instance;
7909 tree orig_fns;
7910 vec<tree, va_gc> *orig_args = NULL;
7911 void *p;
7913 gcc_assert (instance != NULL_TREE);
7915 /* We don't know what function we're going to call, yet. */
7916 if (fn_p)
7917 *fn_p = NULL_TREE;
7919 if (error_operand_p (instance)
7920 || !fns || error_operand_p (fns))
7921 return error_mark_node;
7923 if (!BASELINK_P (fns))
7925 if (complain & tf_error)
7926 error ("call to non-function %qD", fns);
7927 return error_mark_node;
7930 orig_instance = instance;
7931 orig_fns = fns;
7933 /* Dismantle the baselink to collect all the information we need. */
7934 if (!conversion_path)
7935 conversion_path = BASELINK_BINFO (fns);
7936 access_binfo = BASELINK_ACCESS_BINFO (fns);
7937 binfo = BASELINK_BINFO (fns);
7938 optype = BASELINK_OPTYPE (fns);
7939 fns = BASELINK_FUNCTIONS (fns);
7940 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7942 explicit_targs = TREE_OPERAND (fns, 1);
7943 fns = TREE_OPERAND (fns, 0);
7944 template_only = 1;
7946 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
7947 || TREE_CODE (fns) == TEMPLATE_DECL
7948 || TREE_CODE (fns) == OVERLOAD);
7949 fn = get_first_fn (fns);
7950 name = DECL_NAME (fn);
7952 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
7953 gcc_assert (CLASS_TYPE_P (basetype));
7955 if (processing_template_decl)
7957 orig_args = args == NULL ? NULL : make_tree_vector_copy (*args);
7958 instance = build_non_dependent_expr (instance);
7959 if (args != NULL)
7960 make_args_non_dependent (*args);
7963 user_args = args == NULL ? NULL : *args;
7964 /* Under DR 147 A::A() is an invalid constructor call,
7965 not a functional cast. */
7966 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
7968 if (! (complain & tf_error))
7969 return error_mark_node;
7971 if (permerror (input_location,
7972 "cannot call constructor %<%T::%D%> directly",
7973 basetype, name))
7974 inform (input_location, "for a function-style cast, remove the "
7975 "redundant %<::%D%>", name);
7976 call = build_functional_cast (basetype, build_tree_list_vec (user_args),
7977 complain);
7978 return call;
7981 /* Figure out whether to skip the first argument for the error
7982 message we will display to users if an error occurs. We don't
7983 want to display any compiler-generated arguments. The "this"
7984 pointer hasn't been added yet. However, we must remove the VTT
7985 pointer if this is a call to a base-class constructor or
7986 destructor. */
7987 skip_first_for_error = false;
7988 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7990 /* Callers should explicitly indicate whether they want to construct
7991 the complete object or just the part without virtual bases. */
7992 gcc_assert (name != ctor_identifier);
7993 /* Similarly for destructors. */
7994 gcc_assert (name != dtor_identifier);
7995 /* Remove the VTT pointer, if present. */
7996 if ((name == base_ctor_identifier || name == base_dtor_identifier)
7997 && CLASSTYPE_VBASECLASSES (basetype))
7998 skip_first_for_error = true;
8001 /* Process the argument list. */
8002 if (args != NULL && *args != NULL)
8004 *args = resolve_args (*args, complain);
8005 if (*args == NULL)
8006 return error_mark_node;
8009 /* Consider the object argument to be used even if we end up selecting a
8010 static member function. */
8011 instance = mark_type_use (instance);
8013 /* It's OK to call destructors and constructors on cv-qualified objects.
8014 Therefore, convert the INSTANCE to the unqualified type, if
8015 necessary. */
8016 if (DECL_DESTRUCTOR_P (fn)
8017 || DECL_CONSTRUCTOR_P (fn))
8019 if (!same_type_p (basetype, TREE_TYPE (instance)))
8021 instance = build_this (instance);
8022 instance = build_nop (build_pointer_type (basetype), instance);
8023 instance = build_fold_indirect_ref (instance);
8026 if (DECL_DESTRUCTOR_P (fn))
8027 name = complete_dtor_identifier;
8029 /* For the overload resolution we need to find the actual `this`
8030 that would be captured if the call turns out to be to a
8031 non-static member function. Do not actually capture it at this
8032 point. */
8033 if (DECL_CONSTRUCTOR_P (fn))
8034 /* Constructors don't use the enclosing 'this'. */
8035 first_mem_arg = instance;
8036 else
8037 first_mem_arg = maybe_resolve_dummy (instance, false);
8039 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8040 p = conversion_obstack_alloc (0);
8042 /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
8043 initializer, not T({ }). */
8044 if (DECL_CONSTRUCTOR_P (fn) && args != NULL && !vec_safe_is_empty (*args)
8045 && DIRECT_LIST_INIT_P ((**args)[0]))
8047 tree init_list = (**args)[0];
8048 tree init = NULL_TREE;
8050 gcc_assert ((*args)->length () == 1
8051 && !(flags & LOOKUP_ONLYCONVERTING));
8053 /* If the initializer list has no elements and T is a class type with
8054 a default constructor, the object is value-initialized. Handle
8055 this here so we don't need to handle it wherever we use
8056 build_special_member_call. */
8057 if (CONSTRUCTOR_NELTS (init_list) == 0
8058 && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
8059 /* For a user-provided default constructor, use the normal
8060 mechanisms so that protected access works. */
8061 && type_has_non_user_provided_default_constructor (basetype)
8062 && !processing_template_decl)
8063 init = build_value_init (basetype, complain);
8065 /* If BASETYPE is an aggregate, we need to do aggregate
8066 initialization. */
8067 else if (CP_AGGREGATE_TYPE_P (basetype))
8068 init = digest_init (basetype, init_list, complain);
8070 if (init)
8072 if (is_dummy_object (instance))
8073 return get_target_expr_sfinae (init, complain);
8074 init = build2 (INIT_EXPR, TREE_TYPE (instance), instance, init);
8075 TREE_SIDE_EFFECTS (init) = true;
8076 return init;
8079 /* Otherwise go ahead with overload resolution. */
8080 add_list_candidates (fns, first_mem_arg, init_list,
8081 basetype, explicit_targs, template_only,
8082 conversion_path, access_binfo, flags,
8083 &candidates, complain);
8085 else
8087 add_candidates (fns, first_mem_arg, user_args, optype,
8088 explicit_targs, template_only, conversion_path,
8089 access_binfo, flags, &candidates, complain);
8091 any_viable_p = false;
8092 candidates = splice_viable (candidates, false, &any_viable_p);
8094 if (!any_viable_p)
8096 if (complain & tf_error)
8098 if (!COMPLETE_OR_OPEN_TYPE_P (basetype))
8099 cxx_incomplete_type_error (instance, basetype);
8100 else if (optype)
8101 error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
8102 basetype, optype, build_tree_list_vec (user_args),
8103 TREE_TYPE (instance));
8104 else
8106 char *pretty_name;
8107 bool free_p;
8108 tree arglist;
8110 pretty_name = name_as_c_string (name, basetype, &free_p);
8111 arglist = build_tree_list_vec (user_args);
8112 if (skip_first_for_error)
8113 arglist = TREE_CHAIN (arglist);
8114 error ("no matching function for call to %<%T::%s(%A)%#V%>",
8115 basetype, pretty_name, arglist,
8116 TREE_TYPE (instance));
8117 if (free_p)
8118 free (pretty_name);
8120 print_z_candidates (location_of (name), candidates);
8122 call = error_mark_node;
8124 else
8126 cand = tourney (candidates, complain);
8127 if (cand == 0)
8129 char *pretty_name;
8130 bool free_p;
8131 tree arglist;
8133 if (complain & tf_error)
8135 pretty_name = name_as_c_string (name, basetype, &free_p);
8136 arglist = build_tree_list_vec (user_args);
8137 if (skip_first_for_error)
8138 arglist = TREE_CHAIN (arglist);
8139 if (!any_strictly_viable (candidates))
8140 error ("no matching function for call to %<%s(%A)%>",
8141 pretty_name, arglist);
8142 else
8143 error ("call of overloaded %<%s(%A)%> is ambiguous",
8144 pretty_name, arglist);
8145 print_z_candidates (location_of (name), candidates);
8146 if (free_p)
8147 free (pretty_name);
8149 call = error_mark_node;
8151 else
8153 fn = cand->fn;
8154 call = NULL_TREE;
8156 if (!(flags & LOOKUP_NONVIRTUAL)
8157 && DECL_PURE_VIRTUAL_P (fn)
8158 && instance == current_class_ref
8159 && (complain & tf_warning))
8161 /* This is not an error, it is runtime undefined
8162 behavior. */
8163 if (!current_function_decl)
8164 warning (0, "pure virtual %q#D called from "
8165 "non-static data member initializer", fn);
8166 else if (DECL_CONSTRUCTOR_P (current_function_decl)
8167 || DECL_DESTRUCTOR_P (current_function_decl))
8168 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl)
8169 ? "pure virtual %q#D called from constructor"
8170 : "pure virtual %q#D called from destructor"),
8171 fn);
8174 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
8175 && !DECL_CONSTRUCTOR_P (fn)
8176 && is_dummy_object (instance))
8178 instance = maybe_resolve_dummy (instance, true);
8179 if (instance == error_mark_node)
8180 call = error_mark_node;
8181 else if (!is_dummy_object (instance))
8183 /* We captured 'this' in the current lambda now that
8184 we know we really need it. */
8185 cand->first_arg = instance;
8187 else
8189 if (complain & tf_error)
8190 error ("cannot call member function %qD without object",
8191 fn);
8192 call = error_mark_node;
8196 if (call != error_mark_node)
8198 /* Optimize away vtable lookup if we know that this
8199 function can't be overridden. We need to check if
8200 the context and the type where we found fn are the same,
8201 actually FN might be defined in a different class
8202 type because of a using-declaration. In this case, we
8203 do not want to perform a non-virtual call. */
8204 if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
8205 && same_type_ignoring_top_level_qualifiers_p
8206 (DECL_CONTEXT (fn), BINFO_TYPE (binfo))
8207 && resolves_to_fixed_type_p (instance, 0))
8208 flags |= LOOKUP_NONVIRTUAL;
8209 if (explicit_targs)
8210 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
8211 /* Now we know what function is being called. */
8212 if (fn_p)
8213 *fn_p = fn;
8214 /* Build the actual CALL_EXPR. */
8215 call = build_over_call (cand, flags, complain);
8216 /* In an expression of the form `a->f()' where `f' turns
8217 out to be a static member function, `a' is
8218 none-the-less evaluated. */
8219 if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
8220 && !is_dummy_object (instance)
8221 && TREE_SIDE_EFFECTS (instance))
8222 call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
8223 instance, call);
8224 else if (call != error_mark_node
8225 && DECL_DESTRUCTOR_P (cand->fn)
8226 && !VOID_TYPE_P (TREE_TYPE (call)))
8227 /* An explicit call of the form "x->~X()" has type
8228 "void". However, on platforms where destructors
8229 return "this" (i.e., those where
8230 targetm.cxx.cdtor_returns_this is true), such calls
8231 will appear to have a return value of pointer type
8232 to the low-level call machinery. We do not want to
8233 change the low-level machinery, since we want to be
8234 able to optimize "delete f()" on such platforms as
8235 "operator delete(~X(f()))" (rather than generating
8236 "t = f(), ~X(t), operator delete (t)"). */
8237 call = build_nop (void_type_node, call);
8242 if (processing_template_decl && call != error_mark_node)
8244 bool cast_to_void = false;
8246 if (TREE_CODE (call) == COMPOUND_EXPR)
8247 call = TREE_OPERAND (call, 1);
8248 else if (TREE_CODE (call) == NOP_EXPR)
8250 cast_to_void = true;
8251 call = TREE_OPERAND (call, 0);
8253 if (INDIRECT_REF_P (call))
8254 call = TREE_OPERAND (call, 0);
8255 call = (build_min_non_dep_call_vec
8256 (call,
8257 build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
8258 orig_instance, orig_fns, NULL_TREE),
8259 orig_args));
8260 SET_EXPR_LOCATION (call, input_location);
8261 call = convert_from_reference (call);
8262 if (cast_to_void)
8263 call = build_nop (void_type_node, call);
8266 /* Free all the conversions we allocated. */
8267 obstack_free (&conversion_obstack, p);
8269 if (orig_args != NULL)
8270 release_tree_vector (orig_args);
8272 return call;
8275 /* Wrapper for above. */
8277 tree
8278 build_new_method_call (tree instance, tree fns, vec<tree, va_gc> **args,
8279 tree conversion_path, int flags,
8280 tree *fn_p, tsubst_flags_t complain)
8282 tree ret;
8283 bool subtime = timevar_cond_start (TV_OVERLOAD);
8284 ret = build_new_method_call_1 (instance, fns, args, conversion_path, flags,
8285 fn_p, complain);
8286 timevar_cond_stop (TV_OVERLOAD, subtime);
8287 return ret;
8290 /* Returns true iff standard conversion sequence ICS1 is a proper
8291 subsequence of ICS2. */
8293 static bool
8294 is_subseq (conversion *ics1, conversion *ics2)
8296 /* We can assume that a conversion of the same code
8297 between the same types indicates a subsequence since we only get
8298 here if the types we are converting from are the same. */
8300 while (ics1->kind == ck_rvalue
8301 || ics1->kind == ck_lvalue)
8302 ics1 = next_conversion (ics1);
8304 while (1)
8306 while (ics2->kind == ck_rvalue
8307 || ics2->kind == ck_lvalue)
8308 ics2 = next_conversion (ics2);
8310 if (ics2->kind == ck_user
8311 || ics2->kind == ck_ambig
8312 || ics2->kind == ck_aggr
8313 || ics2->kind == ck_list
8314 || ics2->kind == ck_identity)
8315 /* At this point, ICS1 cannot be a proper subsequence of
8316 ICS2. We can get a USER_CONV when we are comparing the
8317 second standard conversion sequence of two user conversion
8318 sequences. */
8319 return false;
8321 ics2 = next_conversion (ics2);
8323 if (ics2->kind == ics1->kind
8324 && same_type_p (ics2->type, ics1->type)
8325 && same_type_p (next_conversion (ics2)->type,
8326 next_conversion (ics1)->type))
8327 return true;
8331 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
8332 be any _TYPE nodes. */
8334 bool
8335 is_properly_derived_from (tree derived, tree base)
8337 if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
8338 return false;
8340 /* We only allow proper derivation here. The DERIVED_FROM_P macro
8341 considers every class derived from itself. */
8342 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
8343 && DERIVED_FROM_P (base, derived));
8346 /* We build the ICS for an implicit object parameter as a pointer
8347 conversion sequence. However, such a sequence should be compared
8348 as if it were a reference conversion sequence. If ICS is the
8349 implicit conversion sequence for an implicit object parameter,
8350 modify it accordingly. */
8352 static void
8353 maybe_handle_implicit_object (conversion **ics)
8355 if ((*ics)->this_p)
8357 /* [over.match.funcs]
8359 For non-static member functions, the type of the
8360 implicit object parameter is "reference to cv X"
8361 where X is the class of which the function is a
8362 member and cv is the cv-qualification on the member
8363 function declaration. */
8364 conversion *t = *ics;
8365 tree reference_type;
8367 /* The `this' parameter is a pointer to a class type. Make the
8368 implicit conversion talk about a reference to that same class
8369 type. */
8370 reference_type = TREE_TYPE (t->type);
8371 reference_type = build_reference_type (reference_type);
8373 if (t->kind == ck_qual)
8374 t = next_conversion (t);
8375 if (t->kind == ck_ptr)
8376 t = next_conversion (t);
8377 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
8378 t = direct_reference_binding (reference_type, t);
8379 t->this_p = 1;
8380 t->rvaluedness_matches_p = 0;
8381 *ics = t;
8385 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
8386 and return the initial reference binding conversion. Otherwise,
8387 leave *ICS unchanged and return NULL. */
8389 static conversion *
8390 maybe_handle_ref_bind (conversion **ics)
8392 if ((*ics)->kind == ck_ref_bind)
8394 conversion *old_ics = *ics;
8395 *ics = next_conversion (old_ics);
8396 (*ics)->user_conv_p = old_ics->user_conv_p;
8397 return old_ics;
8400 return NULL;
8403 /* Compare two implicit conversion sequences according to the rules set out in
8404 [over.ics.rank]. Return values:
8406 1: ics1 is better than ics2
8407 -1: ics2 is better than ics1
8408 0: ics1 and ics2 are indistinguishable */
8410 static int
8411 compare_ics (conversion *ics1, conversion *ics2)
8413 tree from_type1;
8414 tree from_type2;
8415 tree to_type1;
8416 tree to_type2;
8417 tree deref_from_type1 = NULL_TREE;
8418 tree deref_from_type2 = NULL_TREE;
8419 tree deref_to_type1 = NULL_TREE;
8420 tree deref_to_type2 = NULL_TREE;
8421 conversion_rank rank1, rank2;
8423 /* REF_BINDING is nonzero if the result of the conversion sequence
8424 is a reference type. In that case REF_CONV is the reference
8425 binding conversion. */
8426 conversion *ref_conv1;
8427 conversion *ref_conv2;
8429 /* Compare badness before stripping the reference conversion. */
8430 if (ics1->bad_p > ics2->bad_p)
8431 return -1;
8432 else if (ics1->bad_p < ics2->bad_p)
8433 return 1;
8435 /* Handle implicit object parameters. */
8436 maybe_handle_implicit_object (&ics1);
8437 maybe_handle_implicit_object (&ics2);
8439 /* Handle reference parameters. */
8440 ref_conv1 = maybe_handle_ref_bind (&ics1);
8441 ref_conv2 = maybe_handle_ref_bind (&ics2);
8443 /* List-initialization sequence L1 is a better conversion sequence than
8444 list-initialization sequence L2 if L1 converts to
8445 std::initializer_list<X> for some X and L2 does not. */
8446 if (ics1->kind == ck_list && ics2->kind != ck_list)
8447 return 1;
8448 if (ics2->kind == ck_list && ics1->kind != ck_list)
8449 return -1;
8451 /* [over.ics.rank]
8453 When comparing the basic forms of implicit conversion sequences (as
8454 defined in _over.best.ics_)
8456 --a standard conversion sequence (_over.ics.scs_) is a better
8457 conversion sequence than a user-defined conversion sequence
8458 or an ellipsis conversion sequence, and
8460 --a user-defined conversion sequence (_over.ics.user_) is a
8461 better conversion sequence than an ellipsis conversion sequence
8462 (_over.ics.ellipsis_). */
8463 /* Use BAD_CONVERSION_RANK because we already checked for a badness
8464 mismatch. If both ICS are bad, we try to make a decision based on
8465 what would have happened if they'd been good. This is not an
8466 extension, we'll still give an error when we build up the call; this
8467 just helps us give a more helpful error message. */
8468 rank1 = BAD_CONVERSION_RANK (ics1);
8469 rank2 = BAD_CONVERSION_RANK (ics2);
8471 if (rank1 > rank2)
8472 return -1;
8473 else if (rank1 < rank2)
8474 return 1;
8476 if (ics1->ellipsis_p)
8477 /* Both conversions are ellipsis conversions. */
8478 return 0;
8480 /* User-defined conversion sequence U1 is a better conversion sequence
8481 than another user-defined conversion sequence U2 if they contain the
8482 same user-defined conversion operator or constructor and if the sec-
8483 ond standard conversion sequence of U1 is better than the second
8484 standard conversion sequence of U2. */
8486 /* Handle list-conversion with the same code even though it isn't always
8487 ranked as a user-defined conversion and it doesn't have a second
8488 standard conversion sequence; it will still have the desired effect.
8489 Specifically, we need to do the reference binding comparison at the
8490 end of this function. */
8492 if (ics1->user_conv_p || ics1->kind == ck_list || ics1->kind == ck_aggr)
8494 conversion *t1;
8495 conversion *t2;
8497 for (t1 = ics1; t1->kind != ck_user; t1 = next_conversion (t1))
8498 if (t1->kind == ck_ambig || t1->kind == ck_aggr
8499 || t1->kind == ck_list)
8500 break;
8501 for (t2 = ics2; t2->kind != ck_user; t2 = next_conversion (t2))
8502 if (t2->kind == ck_ambig || t2->kind == ck_aggr
8503 || t2->kind == ck_list)
8504 break;
8506 if (t1->kind != t2->kind)
8507 return 0;
8508 else if (t1->kind == ck_user)
8510 if (t1->cand->fn != t2->cand->fn)
8511 return 0;
8513 else
8515 /* For ambiguous or aggregate conversions, use the target type as
8516 a proxy for the conversion function. */
8517 if (!same_type_ignoring_top_level_qualifiers_p (t1->type, t2->type))
8518 return 0;
8521 /* We can just fall through here, after setting up
8522 FROM_TYPE1 and FROM_TYPE2. */
8523 from_type1 = t1->type;
8524 from_type2 = t2->type;
8526 else
8528 conversion *t1;
8529 conversion *t2;
8531 /* We're dealing with two standard conversion sequences.
8533 [over.ics.rank]
8535 Standard conversion sequence S1 is a better conversion
8536 sequence than standard conversion sequence S2 if
8538 --S1 is a proper subsequence of S2 (comparing the conversion
8539 sequences in the canonical form defined by _over.ics.scs_,
8540 excluding any Lvalue Transformation; the identity
8541 conversion sequence is considered to be a subsequence of
8542 any non-identity conversion sequence */
8544 t1 = ics1;
8545 while (t1->kind != ck_identity)
8546 t1 = next_conversion (t1);
8547 from_type1 = t1->type;
8549 t2 = ics2;
8550 while (t2->kind != ck_identity)
8551 t2 = next_conversion (t2);
8552 from_type2 = t2->type;
8555 /* One sequence can only be a subsequence of the other if they start with
8556 the same type. They can start with different types when comparing the
8557 second standard conversion sequence in two user-defined conversion
8558 sequences. */
8559 if (same_type_p (from_type1, from_type2))
8561 if (is_subseq (ics1, ics2))
8562 return 1;
8563 if (is_subseq (ics2, ics1))
8564 return -1;
8567 /* [over.ics.rank]
8569 Or, if not that,
8571 --the rank of S1 is better than the rank of S2 (by the rules
8572 defined below):
8574 Standard conversion sequences are ordered by their ranks: an Exact
8575 Match is a better conversion than a Promotion, which is a better
8576 conversion than a Conversion.
8578 Two conversion sequences with the same rank are indistinguishable
8579 unless one of the following rules applies:
8581 --A conversion that does not a convert a pointer, pointer to member,
8582 or std::nullptr_t to bool is better than one that does.
8584 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
8585 so that we do not have to check it explicitly. */
8586 if (ics1->rank < ics2->rank)
8587 return 1;
8588 else if (ics2->rank < ics1->rank)
8589 return -1;
8591 to_type1 = ics1->type;
8592 to_type2 = ics2->type;
8594 /* A conversion from scalar arithmetic type to complex is worse than a
8595 conversion between scalar arithmetic types. */
8596 if (same_type_p (from_type1, from_type2)
8597 && ARITHMETIC_TYPE_P (from_type1)
8598 && ARITHMETIC_TYPE_P (to_type1)
8599 && ARITHMETIC_TYPE_P (to_type2)
8600 && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
8601 != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
8603 if (TREE_CODE (to_type1) == COMPLEX_TYPE)
8604 return -1;
8605 else
8606 return 1;
8609 if (TYPE_PTR_P (from_type1)
8610 && TYPE_PTR_P (from_type2)
8611 && TYPE_PTR_P (to_type1)
8612 && TYPE_PTR_P (to_type2))
8614 deref_from_type1 = TREE_TYPE (from_type1);
8615 deref_from_type2 = TREE_TYPE (from_type2);
8616 deref_to_type1 = TREE_TYPE (to_type1);
8617 deref_to_type2 = TREE_TYPE (to_type2);
8619 /* The rules for pointers to members A::* are just like the rules
8620 for pointers A*, except opposite: if B is derived from A then
8621 A::* converts to B::*, not vice versa. For that reason, we
8622 switch the from_ and to_ variables here. */
8623 else if ((TYPE_PTRDATAMEM_P (from_type1) && TYPE_PTRDATAMEM_P (from_type2)
8624 && TYPE_PTRDATAMEM_P (to_type1) && TYPE_PTRDATAMEM_P (to_type2))
8625 || (TYPE_PTRMEMFUNC_P (from_type1)
8626 && TYPE_PTRMEMFUNC_P (from_type2)
8627 && TYPE_PTRMEMFUNC_P (to_type1)
8628 && TYPE_PTRMEMFUNC_P (to_type2)))
8630 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
8631 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
8632 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
8633 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
8636 if (deref_from_type1 != NULL_TREE
8637 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
8638 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
8640 /* This was one of the pointer or pointer-like conversions.
8642 [over.ics.rank]
8644 --If class B is derived directly or indirectly from class A,
8645 conversion of B* to A* is better than conversion of B* to
8646 void*, and conversion of A* to void* is better than
8647 conversion of B* to void*. */
8648 if (VOID_TYPE_P (deref_to_type1)
8649 && VOID_TYPE_P (deref_to_type2))
8651 if (is_properly_derived_from (deref_from_type1,
8652 deref_from_type2))
8653 return -1;
8654 else if (is_properly_derived_from (deref_from_type2,
8655 deref_from_type1))
8656 return 1;
8658 else if (VOID_TYPE_P (deref_to_type1)
8659 || VOID_TYPE_P (deref_to_type2))
8661 if (same_type_p (deref_from_type1, deref_from_type2))
8663 if (VOID_TYPE_P (deref_to_type2))
8665 if (is_properly_derived_from (deref_from_type1,
8666 deref_to_type1))
8667 return 1;
8669 /* We know that DEREF_TO_TYPE1 is `void' here. */
8670 else if (is_properly_derived_from (deref_from_type1,
8671 deref_to_type2))
8672 return -1;
8675 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
8676 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
8678 /* [over.ics.rank]
8680 --If class B is derived directly or indirectly from class A
8681 and class C is derived directly or indirectly from B,
8683 --conversion of C* to B* is better than conversion of C* to
8686 --conversion of B* to A* is better than conversion of C* to
8687 A* */
8688 if (same_type_p (deref_from_type1, deref_from_type2))
8690 if (is_properly_derived_from (deref_to_type1,
8691 deref_to_type2))
8692 return 1;
8693 else if (is_properly_derived_from (deref_to_type2,
8694 deref_to_type1))
8695 return -1;
8697 else if (same_type_p (deref_to_type1, deref_to_type2))
8699 if (is_properly_derived_from (deref_from_type2,
8700 deref_from_type1))
8701 return 1;
8702 else if (is_properly_derived_from (deref_from_type1,
8703 deref_from_type2))
8704 return -1;
8708 else if (CLASS_TYPE_P (non_reference (from_type1))
8709 && same_type_p (from_type1, from_type2))
8711 tree from = non_reference (from_type1);
8713 /* [over.ics.rank]
8715 --binding of an expression of type C to a reference of type
8716 B& is better than binding an expression of type C to a
8717 reference of type A&
8719 --conversion of C to B is better than conversion of C to A, */
8720 if (is_properly_derived_from (from, to_type1)
8721 && is_properly_derived_from (from, to_type2))
8723 if (is_properly_derived_from (to_type1, to_type2))
8724 return 1;
8725 else if (is_properly_derived_from (to_type2, to_type1))
8726 return -1;
8729 else if (CLASS_TYPE_P (non_reference (to_type1))
8730 && same_type_p (to_type1, to_type2))
8732 tree to = non_reference (to_type1);
8734 /* [over.ics.rank]
8736 --binding of an expression of type B to a reference of type
8737 A& is better than binding an expression of type C to a
8738 reference of type A&,
8740 --conversion of B to A is better than conversion of C to A */
8741 if (is_properly_derived_from (from_type1, to)
8742 && is_properly_derived_from (from_type2, to))
8744 if (is_properly_derived_from (from_type2, from_type1))
8745 return 1;
8746 else if (is_properly_derived_from (from_type1, from_type2))
8747 return -1;
8751 /* [over.ics.rank]
8753 --S1 and S2 differ only in their qualification conversion and yield
8754 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
8755 qualification signature of type T1 is a proper subset of the cv-
8756 qualification signature of type T2 */
8757 if (ics1->kind == ck_qual
8758 && ics2->kind == ck_qual
8759 && same_type_p (from_type1, from_type2))
8761 int result = comp_cv_qual_signature (to_type1, to_type2);
8762 if (result != 0)
8763 return result;
8766 /* [over.ics.rank]
8768 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
8769 to an implicit object parameter of a non-static member function
8770 declared without a ref-qualifier, and either S1 binds an lvalue
8771 reference to an lvalue and S2 binds an rvalue reference or S1 binds an
8772 rvalue reference to an rvalue and S2 binds an lvalue reference (C++0x
8773 draft standard, 13.3.3.2)
8775 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
8776 types to which the references refer are the same type except for
8777 top-level cv-qualifiers, and the type to which the reference
8778 initialized by S2 refers is more cv-qualified than the type to
8779 which the reference initialized by S1 refers.
8781 DR 1328 [over.match.best]: the context is an initialization by
8782 conversion function for direct reference binding (13.3.1.6) of a
8783 reference to function type, the return type of F1 is the same kind of
8784 reference (i.e. lvalue or rvalue) as the reference being initialized,
8785 and the return type of F2 is not. */
8787 if (ref_conv1 && ref_conv2)
8789 if (!ref_conv1->this_p && !ref_conv2->this_p
8790 && (ref_conv1->rvaluedness_matches_p
8791 != ref_conv2->rvaluedness_matches_p)
8792 && (same_type_p (ref_conv1->type, ref_conv2->type)
8793 || (TYPE_REF_IS_RVALUE (ref_conv1->type)
8794 != TYPE_REF_IS_RVALUE (ref_conv2->type))))
8796 if (ref_conv1->bad_p
8797 && !same_type_p (TREE_TYPE (ref_conv1->type),
8798 TREE_TYPE (ref_conv2->type)))
8799 /* Don't prefer a bad conversion that drops cv-quals to a bad
8800 conversion with the wrong rvalueness. */
8801 return 0;
8802 return (ref_conv1->rvaluedness_matches_p
8803 - ref_conv2->rvaluedness_matches_p);
8806 if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
8808 int q1 = cp_type_quals (TREE_TYPE (ref_conv1->type));
8809 int q2 = cp_type_quals (TREE_TYPE (ref_conv2->type));
8810 if (ref_conv1->bad_p)
8812 /* Prefer the one that drops fewer cv-quals. */
8813 tree ftype = next_conversion (ref_conv1)->type;
8814 int fquals = cp_type_quals (ftype);
8815 q1 ^= fquals;
8816 q2 ^= fquals;
8818 return comp_cv_qualification (q2, q1);
8822 /* Neither conversion sequence is better than the other. */
8823 return 0;
8826 /* The source type for this standard conversion sequence. */
8828 static tree
8829 source_type (conversion *t)
8831 for (;; t = next_conversion (t))
8833 if (t->kind == ck_user
8834 || t->kind == ck_ambig
8835 || t->kind == ck_identity)
8836 return t->type;
8838 gcc_unreachable ();
8841 /* Note a warning about preferring WINNER to LOSER. We do this by storing
8842 a pointer to LOSER and re-running joust to produce the warning if WINNER
8843 is actually used. */
8845 static void
8846 add_warning (struct z_candidate *winner, struct z_candidate *loser)
8848 candidate_warning *cw = (candidate_warning *)
8849 conversion_obstack_alloc (sizeof (candidate_warning));
8850 cw->loser = loser;
8851 cw->next = winner->warnings;
8852 winner->warnings = cw;
8855 /* Compare two candidates for overloading as described in
8856 [over.match.best]. Return values:
8858 1: cand1 is better than cand2
8859 -1: cand2 is better than cand1
8860 0: cand1 and cand2 are indistinguishable */
8862 static int
8863 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn,
8864 tsubst_flags_t complain)
8866 int winner = 0;
8867 int off1 = 0, off2 = 0;
8868 size_t i;
8869 size_t len;
8871 /* Candidates that involve bad conversions are always worse than those
8872 that don't. */
8873 if (cand1->viable > cand2->viable)
8874 return 1;
8875 if (cand1->viable < cand2->viable)
8876 return -1;
8878 /* If we have two pseudo-candidates for conversions to the same type,
8879 or two candidates for the same function, arbitrarily pick one. */
8880 if (cand1->fn == cand2->fn
8881 && (IS_TYPE_OR_DECL_P (cand1->fn)))
8882 return 1;
8884 /* Prefer a non-deleted function over an implicitly deleted move
8885 constructor or assignment operator. This differs slightly from the
8886 wording for issue 1402 (which says the move op is ignored by overload
8887 resolution), but this way produces better error messages. */
8888 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
8889 && TREE_CODE (cand2->fn) == FUNCTION_DECL
8890 && DECL_DELETED_FN (cand1->fn) != DECL_DELETED_FN (cand2->fn))
8892 if (DECL_DELETED_FN (cand1->fn) && DECL_DEFAULTED_FN (cand1->fn)
8893 && move_fn_p (cand1->fn))
8894 return -1;
8895 if (DECL_DELETED_FN (cand2->fn) && DECL_DEFAULTED_FN (cand2->fn)
8896 && move_fn_p (cand2->fn))
8897 return 1;
8900 /* a viable function F1
8901 is defined to be a better function than another viable function F2 if
8902 for all arguments i, ICSi(F1) is not a worse conversion sequence than
8903 ICSi(F2), and then */
8905 /* for some argument j, ICSj(F1) is a better conversion sequence than
8906 ICSj(F2) */
8908 /* For comparing static and non-static member functions, we ignore
8909 the implicit object parameter of the non-static function. The
8910 standard says to pretend that the static function has an object
8911 parm, but that won't work with operator overloading. */
8912 len = cand1->num_convs;
8913 if (len != cand2->num_convs)
8915 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
8916 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
8918 if (DECL_CONSTRUCTOR_P (cand1->fn)
8919 && is_list_ctor (cand1->fn) != is_list_ctor (cand2->fn))
8920 /* We're comparing a near-match list constructor and a near-match
8921 non-list constructor. Just treat them as unordered. */
8922 return 0;
8924 gcc_assert (static_1 != static_2);
8926 if (static_1)
8927 off2 = 1;
8928 else
8930 off1 = 1;
8931 --len;
8935 for (i = 0; i < len; ++i)
8937 conversion *t1 = cand1->convs[i + off1];
8938 conversion *t2 = cand2->convs[i + off2];
8939 int comp = compare_ics (t1, t2);
8941 if (comp != 0)
8943 if ((complain & tf_warning)
8944 && warn_sign_promo
8945 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
8946 == cr_std + cr_promotion)
8947 && t1->kind == ck_std
8948 && t2->kind == ck_std
8949 && TREE_CODE (t1->type) == INTEGER_TYPE
8950 && TREE_CODE (t2->type) == INTEGER_TYPE
8951 && (TYPE_PRECISION (t1->type)
8952 == TYPE_PRECISION (t2->type))
8953 && (TYPE_UNSIGNED (next_conversion (t1)->type)
8954 || (TREE_CODE (next_conversion (t1)->type)
8955 == ENUMERAL_TYPE)))
8957 tree type = next_conversion (t1)->type;
8958 tree type1, type2;
8959 struct z_candidate *w, *l;
8960 if (comp > 0)
8961 type1 = t1->type, type2 = t2->type,
8962 w = cand1, l = cand2;
8963 else
8964 type1 = t2->type, type2 = t1->type,
8965 w = cand2, l = cand1;
8967 if (warn)
8969 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
8970 type, type1, type2);
8971 warning (OPT_Wsign_promo, " in call to %qD", w->fn);
8973 else
8974 add_warning (w, l);
8977 if (winner && comp != winner)
8979 winner = 0;
8980 goto tweak;
8982 winner = comp;
8986 /* warn about confusing overload resolution for user-defined conversions,
8987 either between a constructor and a conversion op, or between two
8988 conversion ops. */
8989 if ((complain & tf_warning)
8990 && winner && warn_conversion && cand1->second_conv
8991 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
8992 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
8994 struct z_candidate *w, *l;
8995 bool give_warning = false;
8997 if (winner == 1)
8998 w = cand1, l = cand2;
8999 else
9000 w = cand2, l = cand1;
9002 /* We don't want to complain about `X::operator T1 ()'
9003 beating `X::operator T2 () const', when T2 is a no less
9004 cv-qualified version of T1. */
9005 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
9006 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
9008 tree t = TREE_TYPE (TREE_TYPE (l->fn));
9009 tree f = TREE_TYPE (TREE_TYPE (w->fn));
9011 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
9013 t = TREE_TYPE (t);
9014 f = TREE_TYPE (f);
9016 if (!comp_ptr_ttypes (t, f))
9017 give_warning = true;
9019 else
9020 give_warning = true;
9022 if (!give_warning)
9023 /*NOP*/;
9024 else if (warn)
9026 tree source = source_type (w->convs[0]);
9027 if (! DECL_CONSTRUCTOR_P (w->fn))
9028 source = TREE_TYPE (source);
9029 if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
9030 && warning (OPT_Wconversion, " for conversion from %qT to %qT",
9031 source, w->second_conv->type))
9033 inform (input_location, " because conversion sequence for the argument is better");
9036 else
9037 add_warning (w, l);
9040 if (winner)
9041 return winner;
9043 /* DR 495 moved this tiebreaker above the template ones. */
9044 /* or, if not that,
9045 the context is an initialization by user-defined conversion (see
9046 _dcl.init_ and _over.match.user_) and the standard conversion
9047 sequence from the return type of F1 to the destination type (i.e.,
9048 the type of the entity being initialized) is a better conversion
9049 sequence than the standard conversion sequence from the return type
9050 of F2 to the destination type. */
9052 if (cand1->second_conv)
9054 winner = compare_ics (cand1->second_conv, cand2->second_conv);
9055 if (winner)
9056 return winner;
9059 /* or, if not that,
9060 F1 is a non-template function and F2 is a template function
9061 specialization. */
9063 if (!cand1->template_decl && cand2->template_decl)
9064 return 1;
9065 else if (cand1->template_decl && !cand2->template_decl)
9066 return -1;
9068 /* or, if not that,
9069 F1 and F2 are template functions and the function template for F1 is
9070 more specialized than the template for F2 according to the partial
9071 ordering rules. */
9073 if (cand1->template_decl && cand2->template_decl)
9075 winner = more_specialized_fn
9076 (TI_TEMPLATE (cand1->template_decl),
9077 TI_TEMPLATE (cand2->template_decl),
9078 /* [temp.func.order]: The presence of unused ellipsis and default
9079 arguments has no effect on the partial ordering of function
9080 templates. add_function_candidate() will not have
9081 counted the "this" argument for constructors. */
9082 cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
9083 if (winner)
9084 return winner;
9087 /* Check whether we can discard a builtin candidate, either because we
9088 have two identical ones or matching builtin and non-builtin candidates.
9090 (Pedantically in the latter case the builtin which matched the user
9091 function should not be added to the overload set, but we spot it here.
9093 [over.match.oper]
9094 ... the builtin candidates include ...
9095 - do not have the same parameter type list as any non-template
9096 non-member candidate. */
9098 if (identifier_p (cand1->fn) || identifier_p (cand2->fn))
9100 for (i = 0; i < len; ++i)
9101 if (!same_type_p (cand1->convs[i]->type,
9102 cand2->convs[i]->type))
9103 break;
9104 if (i == cand1->num_convs)
9106 if (cand1->fn == cand2->fn)
9107 /* Two built-in candidates; arbitrarily pick one. */
9108 return 1;
9109 else if (identifier_p (cand1->fn))
9110 /* cand1 is built-in; prefer cand2. */
9111 return -1;
9112 else
9113 /* cand2 is built-in; prefer cand1. */
9114 return 1;
9118 /* For candidates of a multi-versioned function, make the version with
9119 the highest priority win. This version will be checked for dispatching
9120 first. If this version can be inlined into the caller, the front-end
9121 will simply make a direct call to this function. */
9123 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
9124 && DECL_FUNCTION_VERSIONED (cand1->fn)
9125 && TREE_CODE (cand2->fn) == FUNCTION_DECL
9126 && DECL_FUNCTION_VERSIONED (cand2->fn))
9128 tree f1 = TREE_TYPE (cand1->fn);
9129 tree f2 = TREE_TYPE (cand2->fn);
9130 tree p1 = TYPE_ARG_TYPES (f1);
9131 tree p2 = TYPE_ARG_TYPES (f2);
9133 /* Check if cand1->fn and cand2->fn are versions of the same function. It
9134 is possible that cand1->fn and cand2->fn are function versions but of
9135 different functions. Check types to see if they are versions of the same
9136 function. */
9137 if (compparms (p1, p2)
9138 && same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
9140 /* Always make the version with the higher priority, more
9141 specialized, win. */
9142 gcc_assert (targetm.compare_version_priority);
9143 if (targetm.compare_version_priority (cand1->fn, cand2->fn) >= 0)
9144 return 1;
9145 else
9146 return -1;
9150 /* If the two function declarations represent the same function (this can
9151 happen with declarations in multiple scopes and arg-dependent lookup),
9152 arbitrarily choose one. But first make sure the default args we're
9153 using match. */
9154 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
9155 && equal_functions (cand1->fn, cand2->fn))
9157 tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
9158 tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
9160 gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
9162 for (i = 0; i < len; ++i)
9164 /* Don't crash if the fn is variadic. */
9165 if (!parms1)
9166 break;
9167 parms1 = TREE_CHAIN (parms1);
9168 parms2 = TREE_CHAIN (parms2);
9171 if (off1)
9172 parms1 = TREE_CHAIN (parms1);
9173 else if (off2)
9174 parms2 = TREE_CHAIN (parms2);
9176 for (; parms1; ++i)
9178 if (!cp_tree_equal (TREE_PURPOSE (parms1),
9179 TREE_PURPOSE (parms2)))
9181 if (warn)
9183 if (complain & tf_error)
9185 if (permerror (input_location,
9186 "default argument mismatch in "
9187 "overload resolution"))
9189 inform (input_location,
9190 " candidate 1: %q+#F", cand1->fn);
9191 inform (input_location,
9192 " candidate 2: %q+#F", cand2->fn);
9195 else
9196 return 0;
9198 else
9199 add_warning (cand1, cand2);
9200 break;
9202 parms1 = TREE_CHAIN (parms1);
9203 parms2 = TREE_CHAIN (parms2);
9206 return 1;
9209 tweak:
9211 /* Extension: If the worst conversion for one candidate is worse than the
9212 worst conversion for the other, take the first. */
9213 if (!pedantic && (complain & tf_warning_or_error))
9215 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
9216 struct z_candidate *w = 0, *l = 0;
9218 for (i = 0; i < len; ++i)
9220 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
9221 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
9222 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
9223 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
9225 if (rank1 < rank2)
9226 winner = 1, w = cand1, l = cand2;
9227 if (rank1 > rank2)
9228 winner = -1, w = cand2, l = cand1;
9229 if (winner)
9231 /* Don't choose a deleted function over ambiguity. */
9232 if (DECL_P (w->fn) && DECL_DELETED_FN (w->fn))
9233 return 0;
9234 if (warn)
9236 pedwarn (input_location, 0,
9237 "ISO C++ says that these are ambiguous, even "
9238 "though the worst conversion for the first is better than "
9239 "the worst conversion for the second:");
9240 print_z_candidate (input_location, _("candidate 1:"), w);
9241 print_z_candidate (input_location, _("candidate 2:"), l);
9243 else
9244 add_warning (w, l);
9245 return winner;
9249 gcc_assert (!winner);
9250 return 0;
9253 /* Given a list of candidates for overloading, find the best one, if any.
9254 This algorithm has a worst case of O(2n) (winner is last), and a best
9255 case of O(n/2) (totally ambiguous); much better than a sorting
9256 algorithm. */
9258 static struct z_candidate *
9259 tourney (struct z_candidate *candidates, tsubst_flags_t complain)
9261 struct z_candidate *champ = candidates, *challenger;
9262 int fate;
9263 int champ_compared_to_predecessor = 0;
9265 /* Walk through the list once, comparing each current champ to the next
9266 candidate, knocking out a candidate or two with each comparison. */
9268 for (challenger = champ->next; challenger; )
9270 fate = joust (champ, challenger, 0, complain);
9271 if (fate == 1)
9272 challenger = challenger->next;
9273 else
9275 if (fate == 0)
9277 champ = challenger->next;
9278 if (champ == 0)
9279 return NULL;
9280 champ_compared_to_predecessor = 0;
9282 else
9284 champ = challenger;
9285 champ_compared_to_predecessor = 1;
9288 challenger = champ->next;
9292 /* Make sure the champ is better than all the candidates it hasn't yet
9293 been compared to. */
9295 for (challenger = candidates;
9296 challenger != champ
9297 && !(champ_compared_to_predecessor && challenger->next == champ);
9298 challenger = challenger->next)
9300 fate = joust (champ, challenger, 0, complain);
9301 if (fate != 1)
9302 return NULL;
9305 return champ;
9308 /* Returns nonzero if things of type FROM can be converted to TO. */
9310 bool
9311 can_convert (tree to, tree from, tsubst_flags_t complain)
9313 tree arg = NULL_TREE;
9314 /* implicit_conversion only considers user-defined conversions
9315 if it has an expression for the call argument list. */
9316 if (CLASS_TYPE_P (from) || CLASS_TYPE_P (to))
9317 arg = build1 (CAST_EXPR, from, NULL_TREE);
9318 return can_convert_arg (to, from, arg, LOOKUP_IMPLICIT, complain);
9321 /* Returns nonzero if things of type FROM can be converted to TO with a
9322 standard conversion. */
9324 bool
9325 can_convert_standard (tree to, tree from, tsubst_flags_t complain)
9327 return can_convert_arg (to, from, NULL_TREE, LOOKUP_IMPLICIT, complain);
9330 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
9332 bool
9333 can_convert_arg (tree to, tree from, tree arg, int flags,
9334 tsubst_flags_t complain)
9336 conversion *t;
9337 void *p;
9338 bool ok_p;
9340 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9341 p = conversion_obstack_alloc (0);
9342 /* We want to discard any access checks done for this test,
9343 as we might not be in the appropriate access context and
9344 we'll do the check again when we actually perform the
9345 conversion. */
9346 push_deferring_access_checks (dk_deferred);
9348 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
9349 flags, complain);
9350 ok_p = (t && !t->bad_p);
9352 /* Discard the access checks now. */
9353 pop_deferring_access_checks ();
9354 /* Free all the conversions we allocated. */
9355 obstack_free (&conversion_obstack, p);
9357 return ok_p;
9360 /* Like can_convert_arg, but allows dubious conversions as well. */
9362 bool
9363 can_convert_arg_bad (tree to, tree from, tree arg, int flags,
9364 tsubst_flags_t complain)
9366 conversion *t;
9367 void *p;
9369 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9370 p = conversion_obstack_alloc (0);
9371 /* Try to perform the conversion. */
9372 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
9373 flags, complain);
9374 /* Free all the conversions we allocated. */
9375 obstack_free (&conversion_obstack, p);
9377 return t != NULL;
9380 /* Convert EXPR to TYPE. Return the converted expression.
9382 Note that we allow bad conversions here because by the time we get to
9383 this point we are committed to doing the conversion. If we end up
9384 doing a bad conversion, convert_like will complain. */
9386 tree
9387 perform_implicit_conversion_flags (tree type, tree expr,
9388 tsubst_flags_t complain, int flags)
9390 conversion *conv;
9391 void *p;
9392 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
9394 if (error_operand_p (expr))
9395 return error_mark_node;
9397 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9398 p = conversion_obstack_alloc (0);
9400 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9401 /*c_cast_p=*/false,
9402 flags, complain);
9404 if (!conv)
9406 if (complain & tf_error)
9408 /* If expr has unknown type, then it is an overloaded function.
9409 Call instantiate_type to get good error messages. */
9410 if (TREE_TYPE (expr) == unknown_type_node)
9411 instantiate_type (type, expr, complain);
9412 else if (invalid_nonstatic_memfn_p (expr, complain))
9413 /* We gave an error. */;
9414 else
9415 error_at (loc, "could not convert %qE from %qT to %qT", expr,
9416 TREE_TYPE (expr), type);
9418 expr = error_mark_node;
9420 else if (processing_template_decl && conv->kind != ck_identity)
9422 /* In a template, we are only concerned about determining the
9423 type of non-dependent expressions, so we do not have to
9424 perform the actual conversion. But for initializers, we
9425 need to be able to perform it at instantiation
9426 (or instantiate_non_dependent_expr) time. */
9427 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
9428 if (!(flags & LOOKUP_ONLYCONVERTING))
9429 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
9431 else
9432 expr = convert_like (conv, expr, complain);
9434 /* Free all the conversions we allocated. */
9435 obstack_free (&conversion_obstack, p);
9437 return expr;
9440 tree
9441 perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
9443 return perform_implicit_conversion_flags (type, expr, complain,
9444 LOOKUP_IMPLICIT);
9447 /* Convert EXPR to TYPE (as a direct-initialization) if that is
9448 permitted. If the conversion is valid, the converted expression is
9449 returned. Otherwise, NULL_TREE is returned, except in the case
9450 that TYPE is a class type; in that case, an error is issued. If
9451 C_CAST_P is true, then this direct-initialization is taking
9452 place as part of a static_cast being attempted as part of a C-style
9453 cast. */
9455 tree
9456 perform_direct_initialization_if_possible (tree type,
9457 tree expr,
9458 bool c_cast_p,
9459 tsubst_flags_t complain)
9461 conversion *conv;
9462 void *p;
9464 if (type == error_mark_node || error_operand_p (expr))
9465 return error_mark_node;
9466 /* [dcl.init]
9468 If the destination type is a (possibly cv-qualified) class type:
9470 -- If the initialization is direct-initialization ...,
9471 constructors are considered. ... If no constructor applies, or
9472 the overload resolution is ambiguous, the initialization is
9473 ill-formed. */
9474 if (CLASS_TYPE_P (type))
9476 vec<tree, va_gc> *args = make_tree_vector_single (expr);
9477 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
9478 &args, type, LOOKUP_NORMAL, complain);
9479 release_tree_vector (args);
9480 return build_cplus_new (type, expr, complain);
9483 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9484 p = conversion_obstack_alloc (0);
9486 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9487 c_cast_p,
9488 LOOKUP_NORMAL, complain);
9489 if (!conv || conv->bad_p)
9490 expr = NULL_TREE;
9491 else
9492 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
9493 /*issue_conversion_warnings=*/false,
9494 c_cast_p,
9495 complain);
9497 /* Free all the conversions we allocated. */
9498 obstack_free (&conversion_obstack, p);
9500 return expr;
9503 /* When initializing a reference that lasts longer than a full-expression,
9504 this special rule applies:
9506 [class.temporary]
9508 The temporary to which the reference is bound or the temporary
9509 that is the complete object to which the reference is bound
9510 persists for the lifetime of the reference.
9512 The temporaries created during the evaluation of the expression
9513 initializing the reference, except the temporary to which the
9514 reference is bound, are destroyed at the end of the
9515 full-expression in which they are created.
9517 In that case, we store the converted expression into a new
9518 VAR_DECL in a new scope.
9520 However, we want to be careful not to create temporaries when
9521 they are not required. For example, given:
9523 struct B {};
9524 struct D : public B {};
9525 D f();
9526 const B& b = f();
9528 there is no need to copy the return value from "f"; we can just
9529 extend its lifetime. Similarly, given:
9531 struct S {};
9532 struct T { operator S(); };
9533 T t;
9534 const S& s = t;
9536 we can extend the lifetime of the return value of the conversion
9537 operator.
9539 The next several functions are involved in this lifetime extension. */
9541 /* DECL is a VAR_DECL or FIELD_DECL whose type is a REFERENCE_TYPE. The
9542 reference is being bound to a temporary. Create and return a new
9543 VAR_DECL with the indicated TYPE; this variable will store the value to
9544 which the reference is bound. */
9546 tree
9547 make_temporary_var_for_ref_to_temp (tree decl, tree type)
9549 tree var;
9551 /* Create the variable. */
9552 var = create_temporary_var (type);
9554 /* Register the variable. */
9555 if (VAR_P (decl)
9556 && (TREE_STATIC (decl) || DECL_THREAD_LOCAL_P (decl)))
9558 /* Namespace-scope or local static; give it a mangled name. */
9559 /* FIXME share comdat with decl? */
9560 tree name;
9562 TREE_STATIC (var) = TREE_STATIC (decl);
9563 set_decl_tls_model (var, DECL_TLS_MODEL (decl));
9564 name = mangle_ref_init_variable (decl);
9565 DECL_NAME (var) = name;
9566 SET_DECL_ASSEMBLER_NAME (var, name);
9567 var = pushdecl_top_level (var);
9569 else
9570 /* Create a new cleanup level if necessary. */
9571 maybe_push_cleanup_level (type);
9573 return var;
9576 /* EXPR is the initializer for a variable DECL of reference or
9577 std::initializer_list type. Create, push and return a new VAR_DECL
9578 for the initializer so that it will live as long as DECL. Any
9579 cleanup for the new variable is returned through CLEANUP, and the
9580 code to initialize the new variable is returned through INITP. */
9582 static tree
9583 set_up_extended_ref_temp (tree decl, tree expr, vec<tree, va_gc> **cleanups,
9584 tree *initp)
9586 tree init;
9587 tree type;
9588 tree var;
9590 /* Create the temporary variable. */
9591 type = TREE_TYPE (expr);
9592 var = make_temporary_var_for_ref_to_temp (decl, type);
9593 layout_decl (var, 0);
9594 /* If the rvalue is the result of a function call it will be
9595 a TARGET_EXPR. If it is some other construct (such as a
9596 member access expression where the underlying object is
9597 itself the result of a function call), turn it into a
9598 TARGET_EXPR here. It is important that EXPR be a
9599 TARGET_EXPR below since otherwise the INIT_EXPR will
9600 attempt to make a bitwise copy of EXPR to initialize
9601 VAR. */
9602 if (TREE_CODE (expr) != TARGET_EXPR)
9603 expr = get_target_expr (expr);
9605 if (TREE_CODE (decl) == FIELD_DECL
9606 && extra_warnings && !TREE_NO_WARNING (decl))
9608 warning (OPT_Wextra, "a temporary bound to %qD only persists "
9609 "until the constructor exits", decl);
9610 TREE_NO_WARNING (decl) = true;
9613 /* Recursively extend temps in this initializer. */
9614 TARGET_EXPR_INITIAL (expr)
9615 = extend_ref_init_temps (decl, TARGET_EXPR_INITIAL (expr), cleanups);
9617 /* Any reference temp has a non-trivial initializer. */
9618 DECL_NONTRIVIALLY_INITIALIZED_P (var) = true;
9620 /* If the initializer is constant, put it in DECL_INITIAL so we get
9621 static initialization and use in constant expressions. */
9622 init = maybe_constant_init (expr);
9623 if (TREE_CONSTANT (init))
9625 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
9627 /* 5.19 says that a constant expression can include an
9628 lvalue-rvalue conversion applied to "a glvalue of literal type
9629 that refers to a non-volatile temporary object initialized
9630 with a constant expression". Rather than try to communicate
9631 that this VAR_DECL is a temporary, just mark it constexpr.
9633 Currently this is only useful for initializer_list temporaries,
9634 since reference vars can't appear in constant expressions. */
9635 DECL_DECLARED_CONSTEXPR_P (var) = true;
9636 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var) = true;
9637 TREE_CONSTANT (var) = true;
9639 DECL_INITIAL (var) = init;
9640 init = NULL_TREE;
9642 else
9643 /* Create the INIT_EXPR that will initialize the temporary
9644 variable. */
9645 init = split_nonconstant_init (var, expr);
9646 if (at_function_scope_p ())
9648 add_decl_expr (var);
9650 if (TREE_STATIC (var))
9651 init = add_stmt_to_compound (init, register_dtor_fn (var));
9652 else
9654 tree cleanup = cxx_maybe_build_cleanup (var, tf_warning_or_error);
9655 if (cleanup)
9656 vec_safe_push (*cleanups, cleanup);
9659 /* We must be careful to destroy the temporary only
9660 after its initialization has taken place. If the
9661 initialization throws an exception, then the
9662 destructor should not be run. We cannot simply
9663 transform INIT into something like:
9665 (INIT, ({ CLEANUP_STMT; }))
9667 because emit_local_var always treats the
9668 initializer as a full-expression. Thus, the
9669 destructor would run too early; it would run at the
9670 end of initializing the reference variable, rather
9671 than at the end of the block enclosing the
9672 reference variable.
9674 The solution is to pass back a cleanup expression
9675 which the caller is responsible for attaching to
9676 the statement tree. */
9678 else
9680 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
9681 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
9683 if (DECL_THREAD_LOCAL_P (var))
9684 tls_aggregates = tree_cons (NULL_TREE, var,
9685 tls_aggregates);
9686 else
9687 static_aggregates = tree_cons (NULL_TREE, var,
9688 static_aggregates);
9690 else
9691 /* Check whether the dtor is callable. */
9692 cxx_maybe_build_cleanup (var, tf_warning_or_error);
9694 /* Avoid -Wunused-variable warning (c++/38958). */
9695 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
9696 && TREE_CODE (decl) == VAR_DECL)
9697 TREE_USED (decl) = DECL_READ_P (decl) = true;
9699 *initp = init;
9700 return var;
9703 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
9704 initializing a variable of that TYPE. */
9706 tree
9707 initialize_reference (tree type, tree expr,
9708 int flags, tsubst_flags_t complain)
9710 conversion *conv;
9711 void *p;
9712 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
9714 if (type == error_mark_node || error_operand_p (expr))
9715 return error_mark_node;
9717 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9718 p = conversion_obstack_alloc (0);
9720 conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
9721 flags, complain);
9722 if (!conv || conv->bad_p)
9724 if (complain & tf_error)
9726 if (conv)
9727 convert_like (conv, expr, complain);
9728 else if (!CP_TYPE_CONST_P (TREE_TYPE (type))
9729 && !TYPE_REF_IS_RVALUE (type)
9730 && !real_lvalue_p (expr))
9731 error_at (loc, "invalid initialization of non-const reference of "
9732 "type %qT from an rvalue of type %qT",
9733 type, TREE_TYPE (expr));
9734 else
9735 error_at (loc, "invalid initialization of reference of type "
9736 "%qT from expression of type %qT", type,
9737 TREE_TYPE (expr));
9739 return error_mark_node;
9742 if (conv->kind == ck_ref_bind)
9743 /* Perform the conversion. */
9744 expr = convert_like (conv, expr, complain);
9745 else if (conv->kind == ck_ambig)
9746 /* We gave an error in build_user_type_conversion_1. */
9747 expr = error_mark_node;
9748 else
9749 gcc_unreachable ();
9751 /* Free all the conversions we allocated. */
9752 obstack_free (&conversion_obstack, p);
9754 return expr;
9757 /* Subroutine of extend_ref_init_temps. Possibly extend one initializer,
9758 which is bound either to a reference or a std::initializer_list. */
9760 static tree
9761 extend_ref_init_temps_1 (tree decl, tree init, vec<tree, va_gc> **cleanups)
9763 tree sub = init;
9764 tree *p;
9765 STRIP_NOPS (sub);
9766 if (TREE_CODE (sub) == COMPOUND_EXPR)
9768 TREE_OPERAND (sub, 1)
9769 = extend_ref_init_temps_1 (decl, TREE_OPERAND (sub, 1), cleanups);
9770 return init;
9772 if (TREE_CODE (sub) != ADDR_EXPR)
9773 return init;
9774 /* Deal with binding to a subobject. */
9775 for (p = &TREE_OPERAND (sub, 0); TREE_CODE (*p) == COMPONENT_REF; )
9776 p = &TREE_OPERAND (*p, 0);
9777 if (TREE_CODE (*p) == TARGET_EXPR)
9779 tree subinit = NULL_TREE;
9780 *p = set_up_extended_ref_temp (decl, *p, cleanups, &subinit);
9781 recompute_tree_invariant_for_addr_expr (sub);
9782 if (init != sub)
9783 init = fold_convert (TREE_TYPE (init), sub);
9784 if (subinit)
9785 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), subinit, init);
9787 return init;
9790 /* INIT is part of the initializer for DECL. If there are any
9791 reference or initializer lists being initialized, extend their
9792 lifetime to match that of DECL. */
9794 tree
9795 extend_ref_init_temps (tree decl, tree init, vec<tree, va_gc> **cleanups)
9797 tree type = TREE_TYPE (init);
9798 if (processing_template_decl)
9799 return init;
9800 if (TREE_CODE (type) == REFERENCE_TYPE)
9801 init = extend_ref_init_temps_1 (decl, init, cleanups);
9802 else if (is_std_init_list (type))
9804 /* The temporary array underlying a std::initializer_list
9805 is handled like a reference temporary. */
9806 tree ctor = init;
9807 if (TREE_CODE (ctor) == TARGET_EXPR)
9808 ctor = TARGET_EXPR_INITIAL (ctor);
9809 if (TREE_CODE (ctor) == CONSTRUCTOR)
9811 tree array = CONSTRUCTOR_ELT (ctor, 0)->value;
9812 array = extend_ref_init_temps_1 (decl, array, cleanups);
9813 CONSTRUCTOR_ELT (ctor, 0)->value = array;
9816 else if (TREE_CODE (init) == CONSTRUCTOR)
9818 unsigned i;
9819 constructor_elt *p;
9820 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (init);
9821 FOR_EACH_VEC_SAFE_ELT (elts, i, p)
9822 p->value = extend_ref_init_temps (decl, p->value, cleanups);
9825 return init;
9828 /* Returns true iff an initializer for TYPE could contain temporaries that
9829 need to be extended because they are bound to references or
9830 std::initializer_list. */
9832 bool
9833 type_has_extended_temps (tree type)
9835 type = strip_array_types (type);
9836 if (TREE_CODE (type) == REFERENCE_TYPE)
9837 return true;
9838 if (CLASS_TYPE_P (type))
9840 if (is_std_init_list (type))
9841 return true;
9842 for (tree f = next_initializable_field (TYPE_FIELDS (type));
9843 f; f = next_initializable_field (DECL_CHAIN (f)))
9844 if (type_has_extended_temps (TREE_TYPE (f)))
9845 return true;
9847 return false;
9850 /* Returns true iff TYPE is some variant of std::initializer_list. */
9852 bool
9853 is_std_init_list (tree type)
9855 /* Look through typedefs. */
9856 if (!TYPE_P (type))
9857 return false;
9858 if (cxx_dialect == cxx98)
9859 return false;
9860 type = TYPE_MAIN_VARIANT (type);
9861 return (CLASS_TYPE_P (type)
9862 && CP_TYPE_CONTEXT (type) == std_node
9863 && strcmp (TYPE_NAME_STRING (type), "initializer_list") == 0);
9866 /* Returns true iff DECL is a list constructor: i.e. a constructor which
9867 will accept an argument list of a single std::initializer_list<T>. */
9869 bool
9870 is_list_ctor (tree decl)
9872 tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
9873 tree arg;
9875 if (!args || args == void_list_node)
9876 return false;
9878 arg = non_reference (TREE_VALUE (args));
9879 if (!is_std_init_list (arg))
9880 return false;
9882 args = TREE_CHAIN (args);
9884 if (args && args != void_list_node && !TREE_PURPOSE (args))
9885 /* There are more non-defaulted parms. */
9886 return false;
9888 return true;
9891 #include "gt-cp-call.h"