* config/i386/i386.c (ix86_legitimize_address): Declare
[official-gcc.git] / gcc / cp / call.c
blob86c78ab47f604053ad797ec7e09949ac7938c6db
1 /* Functions related to invoking methods and overloaded functions.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com) and
4 modified by Brendan Kehoe (brendan@cygnus.com).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
23 /* High-level class interface. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "tree.h"
30 #include "stor-layout.h"
31 #include "trans-mem.h"
32 #include "stringpool.h"
33 #include "cp-tree.h"
34 #include "flags.h"
35 #include "toplev.h"
36 #include "diagnostic-core.h"
37 #include "intl.h"
38 #include "target.h"
39 #include "convert.h"
40 #include "langhooks.h"
41 #include "c-family/c-objc.h"
42 #include "timevar.h"
43 #include "hash-map.h"
44 #include "is-a.h"
45 #include "plugin-api.h"
46 #include "vec.h"
47 #include "hashtab.h"
48 #include "hash-set.h"
49 #include "machmode.h"
50 #include "hard-reg-set.h"
51 #include "input.h"
52 #include "function.h"
53 #include "ipa-ref.h"
54 #include "cgraph.h"
55 #include "wide-int.h"
57 /* The various kinds of conversion. */
59 typedef enum conversion_kind {
60 ck_identity,
61 ck_lvalue,
62 ck_qual,
63 ck_std,
64 ck_ptr,
65 ck_pmem,
66 ck_base,
67 ck_ref_bind,
68 ck_user,
69 ck_ambig,
70 ck_list,
71 ck_aggr,
72 ck_rvalue
73 } conversion_kind;
75 /* The rank of the conversion. Order of the enumerals matters; better
76 conversions should come earlier in the list. */
78 typedef enum conversion_rank {
79 cr_identity,
80 cr_exact,
81 cr_promotion,
82 cr_std,
83 cr_pbool,
84 cr_user,
85 cr_ellipsis,
86 cr_bad
87 } conversion_rank;
89 /* An implicit conversion sequence, in the sense of [over.best.ics].
90 The first conversion to be performed is at the end of the chain.
91 That conversion is always a cr_identity conversion. */
93 typedef struct conversion conversion;
94 struct conversion {
95 /* The kind of conversion represented by this step. */
96 conversion_kind kind;
97 /* The rank of this conversion. */
98 conversion_rank rank;
99 BOOL_BITFIELD user_conv_p : 1;
100 BOOL_BITFIELD ellipsis_p : 1;
101 BOOL_BITFIELD this_p : 1;
102 /* True if this conversion would be permitted with a bending of
103 language standards, e.g. disregarding pointer qualifiers or
104 converting integers to pointers. */
105 BOOL_BITFIELD bad_p : 1;
106 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
107 temporary should be created to hold the result of the
108 conversion. */
109 BOOL_BITFIELD need_temporary_p : 1;
110 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
111 from a pointer-to-derived to pointer-to-base is being performed. */
112 BOOL_BITFIELD base_p : 1;
113 /* If KIND is ck_ref_bind, true when either an lvalue reference is
114 being bound to an lvalue expression or an rvalue reference is
115 being bound to an rvalue expression. If KIND is ck_rvalue,
116 true when we should treat an lvalue as an rvalue (12.8p33). If
117 KIND is ck_base, always false. */
118 BOOL_BITFIELD rvaluedness_matches_p: 1;
119 BOOL_BITFIELD check_narrowing: 1;
120 /* The type of the expression resulting from the conversion. */
121 tree type;
122 union {
123 /* The next conversion in the chain. Since the conversions are
124 arranged from outermost to innermost, the NEXT conversion will
125 actually be performed before this conversion. This variant is
126 used only when KIND is neither ck_identity, ck_ambig nor
127 ck_list. Please use the next_conversion function instead
128 of using this field directly. */
129 conversion *next;
130 /* The expression at the beginning of the conversion chain. This
131 variant is used only if KIND is ck_identity or ck_ambig. */
132 tree expr;
133 /* The array of conversions for an initializer_list, so this
134 variant is used only when KIN D is ck_list. */
135 conversion **list;
136 } u;
137 /* The function candidate corresponding to this conversion
138 sequence. This field is only used if KIND is ck_user. */
139 struct z_candidate *cand;
142 #define CONVERSION_RANK(NODE) \
143 ((NODE)->bad_p ? cr_bad \
144 : (NODE)->ellipsis_p ? cr_ellipsis \
145 : (NODE)->user_conv_p ? cr_user \
146 : (NODE)->rank)
148 #define BAD_CONVERSION_RANK(NODE) \
149 ((NODE)->ellipsis_p ? cr_ellipsis \
150 : (NODE)->user_conv_p ? cr_user \
151 : (NODE)->rank)
153 static struct obstack conversion_obstack;
154 static bool conversion_obstack_initialized;
155 struct rejection_reason;
157 static struct z_candidate * tourney (struct z_candidate *, tsubst_flags_t);
158 static int equal_functions (tree, tree);
159 static int joust (struct z_candidate *, struct z_candidate *, bool,
160 tsubst_flags_t);
161 static int compare_ics (conversion *, conversion *);
162 static tree build_over_call (struct z_candidate *, int, tsubst_flags_t);
163 static tree build_java_interface_fn_ref (tree, tree);
164 #define convert_like(CONV, EXPR, COMPLAIN) \
165 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
166 /*issue_conversion_warnings=*/true, \
167 /*c_cast_p=*/false, (COMPLAIN))
168 #define convert_like_with_context(CONV, EXPR, FN, ARGNO, COMPLAIN ) \
169 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
170 /*issue_conversion_warnings=*/true, \
171 /*c_cast_p=*/false, (COMPLAIN))
172 static tree convert_like_real (conversion *, tree, tree, int, int, bool,
173 bool, tsubst_flags_t);
174 static void op_error (location_t, enum tree_code, enum tree_code, tree,
175 tree, tree, bool);
176 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int,
177 tsubst_flags_t);
178 static void print_z_candidate (location_t, const char *, struct z_candidate *);
179 static void print_z_candidates (location_t, struct z_candidate *);
180 static tree build_this (tree);
181 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
182 static bool any_strictly_viable (struct z_candidate *);
183 static struct z_candidate *add_template_candidate
184 (struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
185 tree, tree, tree, int, unification_kind_t, tsubst_flags_t);
186 static struct z_candidate *add_template_candidate_real
187 (struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
188 tree, tree, tree, int, tree, unification_kind_t, tsubst_flags_t);
189 static struct z_candidate *add_template_conv_candidate
190 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *,
191 tree, tree, tree, tsubst_flags_t);
192 static void add_builtin_candidates
193 (struct z_candidate **, enum tree_code, enum tree_code,
194 tree, tree *, int, tsubst_flags_t);
195 static void add_builtin_candidate
196 (struct z_candidate **, enum tree_code, enum tree_code,
197 tree, tree, tree, tree *, tree *, int, tsubst_flags_t);
198 static bool is_complete (tree);
199 static void build_builtin_candidate
200 (struct z_candidate **, tree, tree, tree, tree *, tree *,
201 int, tsubst_flags_t);
202 static struct z_candidate *add_conv_candidate
203 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *, tree,
204 tree, tsubst_flags_t);
205 static struct z_candidate *add_function_candidate
206 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *, tree,
207 tree, int, tsubst_flags_t);
208 static conversion *implicit_conversion (tree, tree, tree, bool, int,
209 tsubst_flags_t);
210 static conversion *standard_conversion (tree, tree, tree, bool, int);
211 static conversion *reference_binding (tree, tree, tree, bool, int,
212 tsubst_flags_t);
213 static conversion *build_conv (conversion_kind, tree, conversion *);
214 static conversion *build_list_conv (tree, tree, int, tsubst_flags_t);
215 static conversion *next_conversion (conversion *);
216 static bool is_subseq (conversion *, conversion *);
217 static conversion *maybe_handle_ref_bind (conversion **);
218 static void maybe_handle_implicit_object (conversion **);
219 static struct z_candidate *add_candidate
220 (struct z_candidate **, tree, tree, const vec<tree, va_gc> *, size_t,
221 conversion **, tree, tree, int, struct rejection_reason *, int);
222 static tree source_type (conversion *);
223 static void add_warning (struct z_candidate *, struct z_candidate *);
224 static bool reference_compatible_p (tree, tree);
225 static conversion *direct_reference_binding (tree, conversion *);
226 static bool promoted_arithmetic_type_p (tree);
227 static conversion *conditional_conversion (tree, tree, tsubst_flags_t);
228 static char *name_as_c_string (tree, tree, bool *);
229 static tree prep_operand (tree);
230 static void add_candidates (tree, tree, const vec<tree, va_gc> *, tree, tree,
231 bool, tree, tree, int, struct z_candidate **,
232 tsubst_flags_t);
233 static conversion *merge_conversion_sequences (conversion *, conversion *);
234 static tree build_temp (tree, tree, int, diagnostic_t *, tsubst_flags_t);
236 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
237 NAME can take many forms... */
239 bool
240 check_dtor_name (tree basetype, tree name)
242 /* Just accept something we've already complained about. */
243 if (name == error_mark_node)
244 return true;
246 if (TREE_CODE (name) == TYPE_DECL)
247 name = TREE_TYPE (name);
248 else if (TYPE_P (name))
249 /* OK */;
250 else if (identifier_p (name))
252 if ((MAYBE_CLASS_TYPE_P (basetype)
253 && name == constructor_name (basetype))
254 || (TREE_CODE (basetype) == ENUMERAL_TYPE
255 && name == TYPE_IDENTIFIER (basetype)))
256 return true;
257 else
258 name = get_type_value (name);
260 else
262 /* In the case of:
264 template <class T> struct S { ~S(); };
265 int i;
266 i.~S();
268 NAME will be a class template. */
269 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
270 return false;
273 if (!name || name == error_mark_node)
274 return false;
275 return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
278 /* We want the address of a function or method. We avoid creating a
279 pointer-to-member function. */
281 tree
282 build_addr_func (tree function, tsubst_flags_t complain)
284 tree type = TREE_TYPE (function);
286 /* We have to do these by hand to avoid real pointer to member
287 functions. */
288 if (TREE_CODE (type) == METHOD_TYPE)
290 if (TREE_CODE (function) == OFFSET_REF)
292 tree object = build_address (TREE_OPERAND (function, 0));
293 return get_member_function_from_ptrfunc (&object,
294 TREE_OPERAND (function, 1),
295 complain);
297 function = build_address (function);
299 else
300 function = decay_conversion (function, complain);
302 return function;
305 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
306 POINTER_TYPE to those. Note, pointer to member function types
307 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
308 two variants. build_call_a is the primitive taking an array of
309 arguments, while build_call_n is a wrapper that handles varargs. */
311 tree
312 build_call_n (tree function, int n, ...)
314 if (n == 0)
315 return build_call_a (function, 0, NULL);
316 else
318 tree *argarray = XALLOCAVEC (tree, n);
319 va_list ap;
320 int i;
322 va_start (ap, n);
323 for (i = 0; i < n; i++)
324 argarray[i] = va_arg (ap, tree);
325 va_end (ap);
326 return build_call_a (function, n, argarray);
330 /* Update various flags in cfun and the call itself based on what is being
331 called. Split out of build_call_a so that bot_manip can use it too. */
333 void
334 set_flags_from_callee (tree call)
336 int nothrow;
337 tree decl = get_callee_fndecl (call);
339 /* We check both the decl and the type; a function may be known not to
340 throw without being declared throw(). */
341 nothrow = ((decl && TREE_NOTHROW (decl))
342 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (call)))));
344 if (!nothrow && at_function_scope_p () && cfun && cp_function_chain)
345 cp_function_chain->can_throw = 1;
347 if (decl && TREE_THIS_VOLATILE (decl) && cfun && cp_function_chain)
348 current_function_returns_abnormally = 1;
350 TREE_NOTHROW (call) = nothrow;
353 tree
354 build_call_a (tree function, int n, tree *argarray)
356 tree decl;
357 tree result_type;
358 tree fntype;
359 int i;
361 function = build_addr_func (function, tf_warning_or_error);
363 gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
364 fntype = TREE_TYPE (TREE_TYPE (function));
365 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
366 || TREE_CODE (fntype) == METHOD_TYPE);
367 result_type = TREE_TYPE (fntype);
368 /* An rvalue has no cv-qualifiers. */
369 if (SCALAR_TYPE_P (result_type) || VOID_TYPE_P (result_type))
370 result_type = cv_unqualified (result_type);
372 function = build_call_array_loc (input_location,
373 result_type, function, n, argarray);
374 set_flags_from_callee (function);
376 decl = get_callee_fndecl (function);
378 if (decl && !TREE_USED (decl))
380 /* We invoke build_call directly for several library
381 functions. These may have been declared normally if
382 we're building libgcc, so we can't just check
383 DECL_ARTIFICIAL. */
384 gcc_assert (DECL_ARTIFICIAL (decl)
385 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
386 "__", 2));
387 mark_used (decl);
390 require_complete_eh_spec_types (fntype, decl);
392 TREE_HAS_CONSTRUCTOR (function) = (decl && DECL_CONSTRUCTOR_P (decl));
394 /* Don't pass empty class objects by value. This is useful
395 for tags in STL, which are used to control overload resolution.
396 We don't need to handle other cases of copying empty classes. */
397 if (! decl || ! DECL_BUILT_IN (decl))
398 for (i = 0; i < n; i++)
400 tree arg = CALL_EXPR_ARG (function, i);
401 if (is_empty_class (TREE_TYPE (arg))
402 && ! TREE_ADDRESSABLE (TREE_TYPE (arg)))
404 tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (arg));
405 arg = build2 (COMPOUND_EXPR, TREE_TYPE (t), arg, t);
406 CALL_EXPR_ARG (function, i) = arg;
410 return function;
413 /* Build something of the form ptr->method (args)
414 or object.method (args). This can also build
415 calls to constructors, and find friends.
417 Member functions always take their class variable
418 as a pointer.
420 INSTANCE is a class instance.
422 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
424 PARMS help to figure out what that NAME really refers to.
426 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
427 down to the real instance type to use for access checking. We need this
428 information to get protected accesses correct.
430 FLAGS is the logical disjunction of zero or more LOOKUP_
431 flags. See cp-tree.h for more info.
433 If this is all OK, calls build_function_call with the resolved
434 member function.
436 This function must also handle being called to perform
437 initialization, promotion/coercion of arguments, and
438 instantiation of default parameters.
440 Note that NAME may refer to an instance variable name. If
441 `operator()()' is defined for the type of that field, then we return
442 that result. */
444 /* New overloading code. */
446 typedef struct z_candidate z_candidate;
448 typedef struct candidate_warning candidate_warning;
449 struct candidate_warning {
450 z_candidate *loser;
451 candidate_warning *next;
454 /* Information for providing diagnostics about why overloading failed. */
456 enum rejection_reason_code {
457 rr_none,
458 rr_arity,
459 rr_explicit_conversion,
460 rr_template_conversion,
461 rr_arg_conversion,
462 rr_bad_arg_conversion,
463 rr_template_unification,
464 rr_invalid_copy
467 struct conversion_info {
468 /* The index of the argument, 0-based. */
469 int n_arg;
470 /* The actual argument or its type. */
471 tree from;
472 /* The type of the parameter. */
473 tree to_type;
476 struct rejection_reason {
477 enum rejection_reason_code code;
478 union {
479 /* Information about an arity mismatch. */
480 struct {
481 /* The expected number of arguments. */
482 int expected;
483 /* The actual number of arguments in the call. */
484 int actual;
485 /* Whether the call was a varargs call. */
486 bool call_varargs_p;
487 } arity;
488 /* Information about an argument conversion mismatch. */
489 struct conversion_info conversion;
490 /* Same, but for bad argument conversions. */
491 struct conversion_info bad_conversion;
492 /* Information about template unification failures. These are the
493 parameters passed to fn_type_unification. */
494 struct {
495 tree tmpl;
496 tree explicit_targs;
497 int num_targs;
498 const tree *args;
499 unsigned int nargs;
500 tree return_type;
501 unification_kind_t strict;
502 int flags;
503 } template_unification;
504 /* Information about template instantiation failures. These are the
505 parameters passed to instantiate_template. */
506 struct {
507 tree tmpl;
508 tree targs;
509 } template_instantiation;
510 } u;
513 struct z_candidate {
514 /* The FUNCTION_DECL that will be called if this candidate is
515 selected by overload resolution. */
516 tree fn;
517 /* If not NULL_TREE, the first argument to use when calling this
518 function. */
519 tree first_arg;
520 /* The rest of the arguments to use when calling this function. If
521 there are no further arguments this may be NULL or it may be an
522 empty vector. */
523 const vec<tree, va_gc> *args;
524 /* The implicit conversion sequences for each of the arguments to
525 FN. */
526 conversion **convs;
527 /* The number of implicit conversion sequences. */
528 size_t num_convs;
529 /* If FN is a user-defined conversion, the standard conversion
530 sequence from the type returned by FN to the desired destination
531 type. */
532 conversion *second_conv;
533 struct rejection_reason *reason;
534 /* If FN is a member function, the binfo indicating the path used to
535 qualify the name of FN at the call site. This path is used to
536 determine whether or not FN is accessible if it is selected by
537 overload resolution. The DECL_CONTEXT of FN will always be a
538 (possibly improper) base of this binfo. */
539 tree access_path;
540 /* If FN is a non-static member function, the binfo indicating the
541 subobject to which the `this' pointer should be converted if FN
542 is selected by overload resolution. The type pointed to by
543 the `this' pointer must correspond to the most derived class
544 indicated by the CONVERSION_PATH. */
545 tree conversion_path;
546 tree template_decl;
547 tree explicit_targs;
548 candidate_warning *warnings;
549 z_candidate *next;
550 int viable;
552 /* The flags active in add_candidate. */
553 int flags;
556 /* Returns true iff T is a null pointer constant in the sense of
557 [conv.ptr]. */
559 bool
560 null_ptr_cst_p (tree t)
562 /* [conv.ptr]
564 A null pointer constant is an integral constant expression
565 (_expr.const_) rvalue of integer type that evaluates to zero or
566 an rvalue of type std::nullptr_t. */
567 if (NULLPTR_TYPE_P (TREE_TYPE (t)))
568 return true;
569 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)))
571 /* Core issue 903 says only literal 0 is a null pointer constant. */
572 if (cxx_dialect < cxx11)
573 t = fold_non_dependent_expr (t);
574 STRIP_NOPS (t);
575 if (integer_zerop (t) && !TREE_OVERFLOW (t))
576 return true;
578 return false;
581 /* Returns true iff T is a null member pointer value (4.11). */
583 bool
584 null_member_pointer_value_p (tree t)
586 tree type = TREE_TYPE (t);
587 if (!type)
588 return false;
589 else if (TYPE_PTRMEMFUNC_P (type))
590 return (TREE_CODE (t) == CONSTRUCTOR
591 && integer_zerop (CONSTRUCTOR_ELT (t, 0)->value));
592 else if (TYPE_PTRDATAMEM_P (type))
593 return integer_all_onesp (t);
594 else
595 return false;
598 /* Returns nonzero if PARMLIST consists of only default parms,
599 ellipsis, and/or undeduced parameter packs. */
601 bool
602 sufficient_parms_p (const_tree parmlist)
604 for (; parmlist && parmlist != void_list_node;
605 parmlist = TREE_CHAIN (parmlist))
606 if (!TREE_PURPOSE (parmlist)
607 && !PACK_EXPANSION_P (TREE_VALUE (parmlist)))
608 return false;
609 return true;
612 /* Allocate N bytes of memory from the conversion obstack. The memory
613 is zeroed before being returned. */
615 static void *
616 conversion_obstack_alloc (size_t n)
618 void *p;
619 if (!conversion_obstack_initialized)
621 gcc_obstack_init (&conversion_obstack);
622 conversion_obstack_initialized = true;
624 p = obstack_alloc (&conversion_obstack, n);
625 memset (p, 0, n);
626 return p;
629 /* Allocate rejection reasons. */
631 static struct rejection_reason *
632 alloc_rejection (enum rejection_reason_code code)
634 struct rejection_reason *p;
635 p = (struct rejection_reason *) conversion_obstack_alloc (sizeof *p);
636 p->code = code;
637 return p;
640 static struct rejection_reason *
641 arity_rejection (tree first_arg, int expected, int actual)
643 struct rejection_reason *r = alloc_rejection (rr_arity);
644 int adjust = first_arg != NULL_TREE;
645 r->u.arity.expected = expected - adjust;
646 r->u.arity.actual = actual - adjust;
647 return r;
650 static struct rejection_reason *
651 arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
653 struct rejection_reason *r = alloc_rejection (rr_arg_conversion);
654 int adjust = first_arg != NULL_TREE;
655 r->u.conversion.n_arg = n_arg - adjust;
656 r->u.conversion.from = from;
657 r->u.conversion.to_type = to;
658 return r;
661 static struct rejection_reason *
662 bad_arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
664 struct rejection_reason *r = alloc_rejection (rr_bad_arg_conversion);
665 int adjust = first_arg != NULL_TREE;
666 r->u.bad_conversion.n_arg = n_arg - adjust;
667 r->u.bad_conversion.from = from;
668 r->u.bad_conversion.to_type = to;
669 return r;
672 static struct rejection_reason *
673 explicit_conversion_rejection (tree from, tree to)
675 struct rejection_reason *r = alloc_rejection (rr_explicit_conversion);
676 r->u.conversion.n_arg = 0;
677 r->u.conversion.from = from;
678 r->u.conversion.to_type = to;
679 return r;
682 static struct rejection_reason *
683 template_conversion_rejection (tree from, tree to)
685 struct rejection_reason *r = alloc_rejection (rr_template_conversion);
686 r->u.conversion.n_arg = 0;
687 r->u.conversion.from = from;
688 r->u.conversion.to_type = to;
689 return r;
692 static struct rejection_reason *
693 template_unification_rejection (tree tmpl, tree explicit_targs, tree targs,
694 const tree *args, unsigned int nargs,
695 tree return_type, unification_kind_t strict,
696 int flags)
698 size_t args_n_bytes = sizeof (*args) * nargs;
699 tree *args1 = (tree *) conversion_obstack_alloc (args_n_bytes);
700 struct rejection_reason *r = alloc_rejection (rr_template_unification);
701 r->u.template_unification.tmpl = tmpl;
702 r->u.template_unification.explicit_targs = explicit_targs;
703 r->u.template_unification.num_targs = TREE_VEC_LENGTH (targs);
704 /* Copy args to our own storage. */
705 memcpy (args1, args, args_n_bytes);
706 r->u.template_unification.args = args1;
707 r->u.template_unification.nargs = nargs;
708 r->u.template_unification.return_type = return_type;
709 r->u.template_unification.strict = strict;
710 r->u.template_unification.flags = flags;
711 return r;
714 static struct rejection_reason *
715 template_unification_error_rejection (void)
717 return alloc_rejection (rr_template_unification);
720 static struct rejection_reason *
721 invalid_copy_with_fn_template_rejection (void)
723 struct rejection_reason *r = alloc_rejection (rr_invalid_copy);
724 return r;
727 /* Dynamically allocate a conversion. */
729 static conversion *
730 alloc_conversion (conversion_kind kind)
732 conversion *c;
733 c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
734 c->kind = kind;
735 return c;
738 #ifdef ENABLE_CHECKING
740 /* Make sure that all memory on the conversion obstack has been
741 freed. */
743 void
744 validate_conversion_obstack (void)
746 if (conversion_obstack_initialized)
747 gcc_assert ((obstack_next_free (&conversion_obstack)
748 == obstack_base (&conversion_obstack)));
751 #endif /* ENABLE_CHECKING */
753 /* Dynamically allocate an array of N conversions. */
755 static conversion **
756 alloc_conversions (size_t n)
758 return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
761 static conversion *
762 build_conv (conversion_kind code, tree type, conversion *from)
764 conversion *t;
765 conversion_rank rank = CONVERSION_RANK (from);
767 /* Note that the caller is responsible for filling in t->cand for
768 user-defined conversions. */
769 t = alloc_conversion (code);
770 t->type = type;
771 t->u.next = from;
773 switch (code)
775 case ck_ptr:
776 case ck_pmem:
777 case ck_base:
778 case ck_std:
779 if (rank < cr_std)
780 rank = cr_std;
781 break;
783 case ck_qual:
784 if (rank < cr_exact)
785 rank = cr_exact;
786 break;
788 default:
789 break;
791 t->rank = rank;
792 t->user_conv_p = (code == ck_user || from->user_conv_p);
793 t->bad_p = from->bad_p;
794 t->base_p = false;
795 return t;
798 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
799 specialization of std::initializer_list<T>, if such a conversion is
800 possible. */
802 static conversion *
803 build_list_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
805 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type), 0);
806 unsigned len = CONSTRUCTOR_NELTS (ctor);
807 conversion **subconvs = alloc_conversions (len);
808 conversion *t;
809 unsigned i;
810 tree val;
812 /* Within a list-initialization we can have more user-defined
813 conversions. */
814 flags &= ~LOOKUP_NO_CONVERSION;
815 /* But no narrowing conversions. */
816 flags |= LOOKUP_NO_NARROWING;
818 /* Can't make an array of these types. */
819 if (TREE_CODE (elttype) == REFERENCE_TYPE
820 || TREE_CODE (elttype) == FUNCTION_TYPE
821 || VOID_TYPE_P (elttype))
822 return NULL;
824 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
826 conversion *sub
827 = implicit_conversion (elttype, TREE_TYPE (val), val,
828 false, flags, complain);
829 if (sub == NULL)
830 return NULL;
832 subconvs[i] = sub;
835 t = alloc_conversion (ck_list);
836 t->type = type;
837 t->u.list = subconvs;
838 t->rank = cr_exact;
840 for (i = 0; i < len; ++i)
842 conversion *sub = subconvs[i];
843 if (sub->rank > t->rank)
844 t->rank = sub->rank;
845 if (sub->user_conv_p)
846 t->user_conv_p = true;
847 if (sub->bad_p)
848 t->bad_p = true;
851 return t;
854 /* Return the next conversion of the conversion chain (if applicable),
855 or NULL otherwise. Please use this function instead of directly
856 accessing fields of struct conversion. */
858 static conversion *
859 next_conversion (conversion *conv)
861 if (conv == NULL
862 || conv->kind == ck_identity
863 || conv->kind == ck_ambig
864 || conv->kind == ck_list)
865 return NULL;
866 return conv->u.next;
869 /* Subroutine of build_aggr_conv: check whether CTOR, a braced-init-list,
870 is a valid aggregate initializer for array type ATYPE. */
872 static bool
873 can_convert_array (tree atype, tree ctor, int flags, tsubst_flags_t complain)
875 unsigned i;
876 tree elttype = TREE_TYPE (atype);
877 for (i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
879 tree val = CONSTRUCTOR_ELT (ctor, i)->value;
880 bool ok;
881 if (TREE_CODE (elttype) == ARRAY_TYPE
882 && TREE_CODE (val) == CONSTRUCTOR)
883 ok = can_convert_array (elttype, val, flags, complain);
884 else
885 ok = can_convert_arg (elttype, TREE_TYPE (val), val, flags,
886 complain);
887 if (!ok)
888 return false;
890 return true;
893 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
894 aggregate class, if such a conversion is possible. */
896 static conversion *
897 build_aggr_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
899 unsigned HOST_WIDE_INT i = 0;
900 conversion *c;
901 tree field = next_initializable_field (TYPE_FIELDS (type));
902 tree empty_ctor = NULL_TREE;
904 ctor = reshape_init (type, ctor, tf_none);
905 if (ctor == error_mark_node)
906 return NULL;
908 /* The conversions within the init-list aren't affected by the enclosing
909 context; they're always simple copy-initialization. */
910 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
912 for (; field; field = next_initializable_field (DECL_CHAIN (field)))
914 tree ftype = TREE_TYPE (field);
915 tree val;
916 bool ok;
918 if (i < CONSTRUCTOR_NELTS (ctor))
919 val = CONSTRUCTOR_ELT (ctor, i)->value;
920 else if (TREE_CODE (ftype) == REFERENCE_TYPE)
921 /* Value-initialization of reference is ill-formed. */
922 return NULL;
923 else
925 if (empty_ctor == NULL_TREE)
926 empty_ctor = build_constructor (init_list_type_node, NULL);
927 val = empty_ctor;
929 ++i;
931 if (TREE_CODE (ftype) == ARRAY_TYPE
932 && TREE_CODE (val) == CONSTRUCTOR)
933 ok = can_convert_array (ftype, val, flags, complain);
934 else
935 ok = can_convert_arg (ftype, TREE_TYPE (val), val, flags,
936 complain);
938 if (!ok)
939 return NULL;
941 if (TREE_CODE (type) == UNION_TYPE)
942 break;
945 if (i < CONSTRUCTOR_NELTS (ctor))
946 return NULL;
948 c = alloc_conversion (ck_aggr);
949 c->type = type;
950 c->rank = cr_exact;
951 c->user_conv_p = true;
952 c->check_narrowing = true;
953 c->u.next = NULL;
954 return c;
957 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
958 array type, if such a conversion is possible. */
960 static conversion *
961 build_array_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
963 conversion *c;
964 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
965 tree elttype = TREE_TYPE (type);
966 unsigned i;
967 tree val;
968 bool bad = false;
969 bool user = false;
970 enum conversion_rank rank = cr_exact;
972 /* We might need to propagate the size from the element to the array. */
973 complete_type (type);
975 if (TYPE_DOMAIN (type)
976 && !variably_modified_type_p (TYPE_DOMAIN (type), NULL_TREE))
978 unsigned HOST_WIDE_INT alen = tree_to_uhwi (array_type_nelts_top (type));
979 if (alen < len)
980 return NULL;
983 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
985 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
987 conversion *sub
988 = implicit_conversion (elttype, TREE_TYPE (val), val,
989 false, flags, complain);
990 if (sub == NULL)
991 return NULL;
993 if (sub->rank > rank)
994 rank = sub->rank;
995 if (sub->user_conv_p)
996 user = true;
997 if (sub->bad_p)
998 bad = true;
1001 c = alloc_conversion (ck_aggr);
1002 c->type = type;
1003 c->rank = rank;
1004 c->user_conv_p = user;
1005 c->bad_p = bad;
1006 c->u.next = NULL;
1007 return c;
1010 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
1011 complex type, if such a conversion is possible. */
1013 static conversion *
1014 build_complex_conv (tree type, tree ctor, int flags,
1015 tsubst_flags_t complain)
1017 conversion *c;
1018 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
1019 tree elttype = TREE_TYPE (type);
1020 unsigned i;
1021 tree val;
1022 bool bad = false;
1023 bool user = false;
1024 enum conversion_rank rank = cr_exact;
1026 if (len != 2)
1027 return NULL;
1029 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
1031 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
1033 conversion *sub
1034 = implicit_conversion (elttype, TREE_TYPE (val), val,
1035 false, flags, complain);
1036 if (sub == NULL)
1037 return NULL;
1039 if (sub->rank > rank)
1040 rank = sub->rank;
1041 if (sub->user_conv_p)
1042 user = true;
1043 if (sub->bad_p)
1044 bad = true;
1047 c = alloc_conversion (ck_aggr);
1048 c->type = type;
1049 c->rank = rank;
1050 c->user_conv_p = user;
1051 c->bad_p = bad;
1052 c->u.next = NULL;
1053 return c;
1056 /* Build a representation of the identity conversion from EXPR to
1057 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
1059 static conversion *
1060 build_identity_conv (tree type, tree expr)
1062 conversion *c;
1064 c = alloc_conversion (ck_identity);
1065 c->type = type;
1066 c->u.expr = expr;
1068 return c;
1071 /* Converting from EXPR to TYPE was ambiguous in the sense that there
1072 were multiple user-defined conversions to accomplish the job.
1073 Build a conversion that indicates that ambiguity. */
1075 static conversion *
1076 build_ambiguous_conv (tree type, tree expr)
1078 conversion *c;
1080 c = alloc_conversion (ck_ambig);
1081 c->type = type;
1082 c->u.expr = expr;
1084 return c;
1087 tree
1088 strip_top_quals (tree t)
1090 if (TREE_CODE (t) == ARRAY_TYPE)
1091 return t;
1092 return cp_build_qualified_type (t, 0);
1095 /* Returns the standard conversion path (see [conv]) from type FROM to type
1096 TO, if any. For proper handling of null pointer constants, you must
1097 also pass the expression EXPR to convert from. If C_CAST_P is true,
1098 this conversion is coming from a C-style cast. */
1100 static conversion *
1101 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
1102 int flags)
1104 enum tree_code fcode, tcode;
1105 conversion *conv;
1106 bool fromref = false;
1107 tree qualified_to;
1109 to = non_reference (to);
1110 if (TREE_CODE (from) == REFERENCE_TYPE)
1112 fromref = true;
1113 from = TREE_TYPE (from);
1115 qualified_to = to;
1116 to = strip_top_quals (to);
1117 from = strip_top_quals (from);
1119 if (expr && type_unknown_p (expr))
1121 if (TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
1123 tsubst_flags_t tflags = tf_conv;
1124 expr = instantiate_type (to, expr, tflags);
1125 if (expr == error_mark_node)
1126 return NULL;
1127 from = TREE_TYPE (expr);
1129 else if (TREE_CODE (to) == BOOLEAN_TYPE)
1131 /* Necessary for eg, TEMPLATE_ID_EXPRs (c++/50961). */
1132 expr = resolve_nondeduced_context (expr);
1133 from = TREE_TYPE (expr);
1137 fcode = TREE_CODE (from);
1138 tcode = TREE_CODE (to);
1140 conv = build_identity_conv (from, expr);
1141 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
1143 from = type_decays_to (from);
1144 fcode = TREE_CODE (from);
1145 conv = build_conv (ck_lvalue, from, conv);
1147 else if (fromref || (expr && lvalue_p (expr)))
1149 if (expr)
1151 tree bitfield_type;
1152 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
1153 if (bitfield_type)
1155 from = strip_top_quals (bitfield_type);
1156 fcode = TREE_CODE (from);
1159 conv = build_conv (ck_rvalue, from, conv);
1160 if (flags & LOOKUP_PREFER_RVALUE)
1161 conv->rvaluedness_matches_p = true;
1164 /* Allow conversion between `__complex__' data types. */
1165 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
1167 /* The standard conversion sequence to convert FROM to TO is
1168 the standard conversion sequence to perform componentwise
1169 conversion. */
1170 conversion *part_conv = standard_conversion
1171 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
1173 if (part_conv)
1175 conv = build_conv (part_conv->kind, to, conv);
1176 conv->rank = part_conv->rank;
1178 else
1179 conv = NULL;
1181 return conv;
1184 if (same_type_p (from, to))
1186 if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue)
1187 conv->type = qualified_to;
1188 return conv;
1191 /* [conv.ptr]
1192 A null pointer constant can be converted to a pointer type; ... A
1193 null pointer constant of integral type can be converted to an
1194 rvalue of type std::nullptr_t. */
1195 if ((tcode == POINTER_TYPE || TYPE_PTRMEM_P (to)
1196 || NULLPTR_TYPE_P (to))
1197 && ((expr && null_ptr_cst_p (expr))
1198 || NULLPTR_TYPE_P (from)))
1199 conv = build_conv (ck_std, to, conv);
1200 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
1201 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
1203 /* For backwards brain damage compatibility, allow interconversion of
1204 pointers and integers with a pedwarn. */
1205 conv = build_conv (ck_std, to, conv);
1206 conv->bad_p = true;
1208 else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
1210 /* For backwards brain damage compatibility, allow interconversion of
1211 enums and integers with a pedwarn. */
1212 conv = build_conv (ck_std, to, conv);
1213 conv->bad_p = true;
1215 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
1216 || (TYPE_PTRDATAMEM_P (to) && TYPE_PTRDATAMEM_P (from)))
1218 tree to_pointee;
1219 tree from_pointee;
1221 if (tcode == POINTER_TYPE
1222 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
1223 TREE_TYPE (to)))
1225 else if (VOID_TYPE_P (TREE_TYPE (to))
1226 && !TYPE_PTRDATAMEM_P (from)
1227 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
1229 tree nfrom = TREE_TYPE (from);
1230 /* Don't try to apply restrict to void. */
1231 int quals = cp_type_quals (nfrom) & ~TYPE_QUAL_RESTRICT;
1232 from = build_pointer_type
1233 (cp_build_qualified_type (void_type_node, quals));
1234 conv = build_conv (ck_ptr, from, conv);
1236 else if (TYPE_PTRDATAMEM_P (from))
1238 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
1239 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
1241 if (DERIVED_FROM_P (fbase, tbase)
1242 && (same_type_ignoring_top_level_qualifiers_p
1243 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
1244 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
1246 from = build_ptrmem_type (tbase,
1247 TYPE_PTRMEM_POINTED_TO_TYPE (from));
1248 conv = build_conv (ck_pmem, from, conv);
1250 else if (!same_type_p (fbase, tbase))
1251 return NULL;
1253 else if (CLASS_TYPE_P (TREE_TYPE (from))
1254 && CLASS_TYPE_P (TREE_TYPE (to))
1255 /* [conv.ptr]
1257 An rvalue of type "pointer to cv D," where D is a
1258 class type, can be converted to an rvalue of type
1259 "pointer to cv B," where B is a base class (clause
1260 _class.derived_) of D. If B is an inaccessible
1261 (clause _class.access_) or ambiguous
1262 (_class.member.lookup_) base class of D, a program
1263 that necessitates this conversion is ill-formed.
1264 Therefore, we use DERIVED_FROM_P, and do not check
1265 access or uniqueness. */
1266 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
1268 from =
1269 cp_build_qualified_type (TREE_TYPE (to),
1270 cp_type_quals (TREE_TYPE (from)));
1271 from = build_pointer_type (from);
1272 conv = build_conv (ck_ptr, from, conv);
1273 conv->base_p = true;
1276 if (tcode == POINTER_TYPE)
1278 to_pointee = TREE_TYPE (to);
1279 from_pointee = TREE_TYPE (from);
1281 else
1283 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
1284 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
1287 if (same_type_p (from, to))
1288 /* OK */;
1289 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
1290 /* In a C-style cast, we ignore CV-qualification because we
1291 are allowed to perform a static_cast followed by a
1292 const_cast. */
1293 conv = build_conv (ck_qual, to, conv);
1294 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
1295 conv = build_conv (ck_qual, to, conv);
1296 else if (expr && string_conv_p (to, expr, 0))
1297 /* converting from string constant to char *. */
1298 conv = build_conv (ck_qual, to, conv);
1299 /* Allow conversions among compatible ObjC pointer types (base
1300 conversions have been already handled above). */
1301 else if (c_dialect_objc ()
1302 && objc_compare_types (to, from, -4, NULL_TREE))
1303 conv = build_conv (ck_ptr, to, conv);
1304 else if (ptr_reasonably_similar (to_pointee, from_pointee))
1306 conv = build_conv (ck_ptr, to, conv);
1307 conv->bad_p = true;
1309 else
1310 return NULL;
1312 from = to;
1314 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
1316 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
1317 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
1318 tree fbase = class_of_this_parm (fromfn);
1319 tree tbase = class_of_this_parm (tofn);
1321 if (!DERIVED_FROM_P (fbase, tbase)
1322 || !same_type_p (static_fn_type (fromfn),
1323 static_fn_type (tofn)))
1324 return NULL;
1326 from = build_memfn_type (fromfn,
1327 tbase,
1328 cp_type_quals (tbase),
1329 type_memfn_rqual (tofn));
1330 from = build_ptrmemfunc_type (build_pointer_type (from));
1331 conv = build_conv (ck_pmem, from, conv);
1332 conv->base_p = true;
1334 else if (tcode == BOOLEAN_TYPE)
1336 /* [conv.bool]
1338 A prvalue of arithmetic, unscoped enumeration, pointer, or pointer
1339 to member type can be converted to a prvalue of type bool. ...
1340 For direct-initialization (8.5 [dcl.init]), a prvalue of type
1341 std::nullptr_t can be converted to a prvalue of type bool; */
1342 if (ARITHMETIC_TYPE_P (from)
1343 || UNSCOPED_ENUM_P (from)
1344 || fcode == POINTER_TYPE
1345 || TYPE_PTRMEM_P (from)
1346 || NULLPTR_TYPE_P (from))
1348 conv = build_conv (ck_std, to, conv);
1349 if (fcode == POINTER_TYPE
1350 || TYPE_PTRDATAMEM_P (from)
1351 || (TYPE_PTRMEMFUNC_P (from)
1352 && conv->rank < cr_pbool)
1353 || NULLPTR_TYPE_P (from))
1354 conv->rank = cr_pbool;
1355 if (NULLPTR_TYPE_P (from) && (flags & LOOKUP_ONLYCONVERTING))
1356 conv->bad_p = true;
1357 return conv;
1360 return NULL;
1362 /* We don't check for ENUMERAL_TYPE here because there are no standard
1363 conversions to enum type. */
1364 /* As an extension, allow conversion to complex type. */
1365 else if (ARITHMETIC_TYPE_P (to))
1367 if (! (INTEGRAL_CODE_P (fcode)
1368 || (fcode == REAL_TYPE && !(flags & LOOKUP_NO_NON_INTEGRAL)))
1369 || SCOPED_ENUM_P (from))
1370 return NULL;
1371 conv = build_conv (ck_std, to, conv);
1373 /* Give this a better rank if it's a promotion. */
1374 if (same_type_p (to, type_promotes_to (from))
1375 && next_conversion (conv)->rank <= cr_promotion)
1376 conv->rank = cr_promotion;
1378 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
1379 && vector_types_convertible_p (from, to, false))
1380 return build_conv (ck_std, to, conv);
1381 else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
1382 && is_properly_derived_from (from, to))
1384 if (conv->kind == ck_rvalue)
1385 conv = next_conversion (conv);
1386 conv = build_conv (ck_base, to, conv);
1387 /* The derived-to-base conversion indicates the initialization
1388 of a parameter with base type from an object of a derived
1389 type. A temporary object is created to hold the result of
1390 the conversion unless we're binding directly to a reference. */
1391 conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
1393 else
1394 return NULL;
1396 if (flags & LOOKUP_NO_NARROWING)
1397 conv->check_narrowing = true;
1399 return conv;
1402 /* Returns nonzero if T1 is reference-related to T2. */
1404 bool
1405 reference_related_p (tree t1, tree t2)
1407 if (t1 == error_mark_node || t2 == error_mark_node)
1408 return false;
1410 t1 = TYPE_MAIN_VARIANT (t1);
1411 t2 = TYPE_MAIN_VARIANT (t2);
1413 /* [dcl.init.ref]
1415 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1416 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
1417 of T2. */
1418 return (same_type_p (t1, t2)
1419 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
1420 && DERIVED_FROM_P (t1, t2)));
1423 /* Returns nonzero if T1 is reference-compatible with T2. */
1425 static bool
1426 reference_compatible_p (tree t1, tree t2)
1428 /* [dcl.init.ref]
1430 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
1431 reference-related to T2 and cv1 is the same cv-qualification as,
1432 or greater cv-qualification than, cv2. */
1433 return (reference_related_p (t1, t2)
1434 && at_least_as_qualified_p (t1, t2));
1437 /* A reference of the indicated TYPE is being bound directly to the
1438 expression represented by the implicit conversion sequence CONV.
1439 Return a conversion sequence for this binding. */
1441 static conversion *
1442 direct_reference_binding (tree type, conversion *conv)
1444 tree t;
1446 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
1447 gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
1449 t = TREE_TYPE (type);
1451 /* [over.ics.rank]
1453 When a parameter of reference type binds directly
1454 (_dcl.init.ref_) to an argument expression, the implicit
1455 conversion sequence is the identity conversion, unless the
1456 argument expression has a type that is a derived class of the
1457 parameter type, in which case the implicit conversion sequence is
1458 a derived-to-base Conversion.
1460 If the parameter binds directly to the result of applying a
1461 conversion function to the argument expression, the implicit
1462 conversion sequence is a user-defined conversion sequence
1463 (_over.ics.user_), with the second standard conversion sequence
1464 either an identity conversion or, if the conversion function
1465 returns an entity of a type that is a derived class of the
1466 parameter type, a derived-to-base conversion. */
1467 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
1469 /* Represent the derived-to-base conversion. */
1470 conv = build_conv (ck_base, t, conv);
1471 /* We will actually be binding to the base-class subobject in
1472 the derived class, so we mark this conversion appropriately.
1473 That way, convert_like knows not to generate a temporary. */
1474 conv->need_temporary_p = false;
1476 return build_conv (ck_ref_bind, type, conv);
1479 /* Returns the conversion path from type FROM to reference type TO for
1480 purposes of reference binding. For lvalue binding, either pass a
1481 reference type to FROM or an lvalue expression to EXPR. If the
1482 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1483 the conversion returned. If C_CAST_P is true, this
1484 conversion is coming from a C-style cast. */
1486 static conversion *
1487 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags,
1488 tsubst_flags_t complain)
1490 conversion *conv = NULL;
1491 tree to = TREE_TYPE (rto);
1492 tree from = rfrom;
1493 tree tfrom;
1494 bool related_p;
1495 bool compatible_p;
1496 cp_lvalue_kind gl_kind;
1497 bool is_lvalue;
1499 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1501 expr = instantiate_type (to, expr, tf_none);
1502 if (expr == error_mark_node)
1503 return NULL;
1504 from = TREE_TYPE (expr);
1507 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1509 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
1510 /* DR 1288: Otherwise, if the initializer list has a single element
1511 of type E and ... [T's] referenced type is reference-related to E,
1512 the object or reference is initialized from that element... */
1513 if (CONSTRUCTOR_NELTS (expr) == 1)
1515 tree elt = CONSTRUCTOR_ELT (expr, 0)->value;
1516 if (error_operand_p (elt))
1517 return NULL;
1518 tree etype = TREE_TYPE (elt);
1519 if (reference_related_p (to, etype))
1521 expr = elt;
1522 from = etype;
1523 goto skip;
1526 /* Otherwise, if T is a reference type, a prvalue temporary of the
1527 type referenced by T is copy-list-initialized or
1528 direct-list-initialized, depending on the kind of initialization
1529 for the reference, and the reference is bound to that temporary. */
1530 conv = implicit_conversion (to, from, expr, c_cast_p,
1531 flags|LOOKUP_NO_TEMP_BIND, complain);
1532 skip:;
1535 if (TREE_CODE (from) == REFERENCE_TYPE)
1537 from = TREE_TYPE (from);
1538 if (!TYPE_REF_IS_RVALUE (rfrom)
1539 || TREE_CODE (from) == FUNCTION_TYPE)
1540 gl_kind = clk_ordinary;
1541 else
1542 gl_kind = clk_rvalueref;
1544 else if (expr)
1546 gl_kind = lvalue_kind (expr);
1547 if (gl_kind & clk_class)
1548 /* A class prvalue is not a glvalue. */
1549 gl_kind = clk_none;
1551 else
1552 gl_kind = clk_none;
1553 is_lvalue = gl_kind && !(gl_kind & clk_rvalueref);
1555 tfrom = from;
1556 if ((gl_kind & clk_bitfield) != 0)
1557 tfrom = unlowered_expr_type (expr);
1559 /* Figure out whether or not the types are reference-related and
1560 reference compatible. We have do do this after stripping
1561 references from FROM. */
1562 related_p = reference_related_p (to, tfrom);
1563 /* If this is a C cast, first convert to an appropriately qualified
1564 type, so that we can later do a const_cast to the desired type. */
1565 if (related_p && c_cast_p
1566 && !at_least_as_qualified_p (to, tfrom))
1567 to = cp_build_qualified_type (to, cp_type_quals (tfrom));
1568 compatible_p = reference_compatible_p (to, tfrom);
1570 /* Directly bind reference when target expression's type is compatible with
1571 the reference and expression is an lvalue. In DR391, the wording in
1572 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1573 const and rvalue references to rvalues of compatible class type.
1574 We should also do direct bindings for non-class xvalues. */
1575 if (related_p
1576 && (gl_kind
1577 || (!(flags & LOOKUP_NO_TEMP_BIND)
1578 && (CLASS_TYPE_P (from)
1579 || TREE_CODE (from) == ARRAY_TYPE))))
1581 /* [dcl.init.ref]
1583 If the initializer expression
1585 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1586 is reference-compatible with "cv2 T2,"
1588 the reference is bound directly to the initializer expression
1589 lvalue.
1591 [...]
1592 If the initializer expression is an rvalue, with T2 a class type,
1593 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1594 is bound to the object represented by the rvalue or to a sub-object
1595 within that object. */
1597 conv = build_identity_conv (tfrom, expr);
1598 conv = direct_reference_binding (rto, conv);
1600 if (flags & LOOKUP_PREFER_RVALUE)
1601 /* The top-level caller requested that we pretend that the lvalue
1602 be treated as an rvalue. */
1603 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1604 else if (TREE_CODE (rfrom) == REFERENCE_TYPE)
1605 /* Handle rvalue reference to function properly. */
1606 conv->rvaluedness_matches_p
1607 = (TYPE_REF_IS_RVALUE (rto) == TYPE_REF_IS_RVALUE (rfrom));
1608 else
1609 conv->rvaluedness_matches_p
1610 = (TYPE_REF_IS_RVALUE (rto) == !is_lvalue);
1612 if ((gl_kind & clk_bitfield) != 0
1613 || ((gl_kind & clk_packed) != 0 && !TYPE_PACKED (to)))
1614 /* For the purposes of overload resolution, we ignore the fact
1615 this expression is a bitfield or packed field. (In particular,
1616 [over.ics.ref] says specifically that a function with a
1617 non-const reference parameter is viable even if the
1618 argument is a bitfield.)
1620 However, when we actually call the function we must create
1621 a temporary to which to bind the reference. If the
1622 reference is volatile, or isn't const, then we cannot make
1623 a temporary, so we just issue an error when the conversion
1624 actually occurs. */
1625 conv->need_temporary_p = true;
1627 /* Don't allow binding of lvalues (other than function lvalues) to
1628 rvalue references. */
1629 if (is_lvalue && TYPE_REF_IS_RVALUE (rto)
1630 && TREE_CODE (to) != FUNCTION_TYPE
1631 && !(flags & LOOKUP_PREFER_RVALUE))
1632 conv->bad_p = true;
1634 /* Nor the reverse. */
1635 if (!is_lvalue && !TYPE_REF_IS_RVALUE (rto)
1636 && (!CP_TYPE_CONST_NON_VOLATILE_P (to)
1637 || (flags & LOOKUP_NO_RVAL_BIND))
1638 && TREE_CODE (to) != FUNCTION_TYPE)
1639 conv->bad_p = true;
1641 if (!compatible_p)
1642 conv->bad_p = true;
1644 return conv;
1646 /* [class.conv.fct] A conversion function is never used to convert a
1647 (possibly cv-qualified) object to the (possibly cv-qualified) same
1648 object type (or a reference to it), to a (possibly cv-qualified) base
1649 class of that type (or a reference to it).... */
1650 else if (CLASS_TYPE_P (from) && !related_p
1651 && !(flags & LOOKUP_NO_CONVERSION))
1653 /* [dcl.init.ref]
1655 If the initializer expression
1657 -- has a class type (i.e., T2 is a class type) can be
1658 implicitly converted to an lvalue of type "cv3 T3," where
1659 "cv1 T1" is reference-compatible with "cv3 T3". (this
1660 conversion is selected by enumerating the applicable
1661 conversion functions (_over.match.ref_) and choosing the
1662 best one through overload resolution. (_over.match_).
1664 the reference is bound to the lvalue result of the conversion
1665 in the second case. */
1666 z_candidate *cand = build_user_type_conversion_1 (rto, expr, flags,
1667 complain);
1668 if (cand)
1669 return cand->second_conv;
1672 /* From this point on, we conceptually need temporaries, even if we
1673 elide them. Only the cases above are "direct bindings". */
1674 if (flags & LOOKUP_NO_TEMP_BIND)
1675 return NULL;
1677 /* [over.ics.rank]
1679 When a parameter of reference type is not bound directly to an
1680 argument expression, the conversion sequence is the one required
1681 to convert the argument expression to the underlying type of the
1682 reference according to _over.best.ics_. Conceptually, this
1683 conversion sequence corresponds to copy-initializing a temporary
1684 of the underlying type with the argument expression. Any
1685 difference in top-level cv-qualification is subsumed by the
1686 initialization itself and does not constitute a conversion. */
1688 /* We're generating a temporary now, but don't bind any more in the
1689 conversion (specifically, don't slice the temporary returned by a
1690 conversion operator). */
1691 flags |= LOOKUP_NO_TEMP_BIND;
1693 /* Core issue 899: When [copy-]initializing a temporary to be bound
1694 to the first parameter of a copy constructor (12.8) called with
1695 a single argument in the context of direct-initialization,
1696 explicit conversion functions are also considered.
1698 So don't set LOOKUP_ONLYCONVERTING in that case. */
1699 if (!(flags & LOOKUP_COPY_PARM))
1700 flags |= LOOKUP_ONLYCONVERTING;
1702 if (!conv)
1703 conv = implicit_conversion (to, from, expr, c_cast_p,
1704 flags, complain);
1705 if (!conv)
1706 return NULL;
1708 if (conv->user_conv_p)
1710 /* If initializing the temporary used a conversion function,
1711 recalculate the second conversion sequence. */
1712 for (conversion *t = conv; t; t = next_conversion (t))
1713 if (t->kind == ck_user
1714 && DECL_CONV_FN_P (t->cand->fn))
1716 tree ftype = TREE_TYPE (TREE_TYPE (t->cand->fn));
1717 int sflags = (flags|LOOKUP_NO_CONVERSION)&~LOOKUP_NO_TEMP_BIND;
1718 conversion *new_second
1719 = reference_binding (rto, ftype, NULL_TREE, c_cast_p,
1720 sflags, complain);
1721 if (!new_second)
1722 return NULL;
1723 return merge_conversion_sequences (t, new_second);
1727 conv = build_conv (ck_ref_bind, rto, conv);
1728 /* This reference binding, unlike those above, requires the
1729 creation of a temporary. */
1730 conv->need_temporary_p = true;
1731 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1733 /* [dcl.init.ref]
1735 Otherwise, the reference shall be an lvalue reference to a
1736 non-volatile const type, or the reference shall be an rvalue
1737 reference. */
1738 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1739 conv->bad_p = true;
1741 /* [dcl.init.ref]
1743 Otherwise, a temporary of type "cv1 T1" is created and
1744 initialized from the initializer expression using the rules for a
1745 non-reference copy initialization. If T1 is reference-related to
1746 T2, cv1 must be the same cv-qualification as, or greater
1747 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1748 if (related_p && !at_least_as_qualified_p (to, from))
1749 conv->bad_p = true;
1751 return conv;
1754 /* Returns the implicit conversion sequence (see [over.ics]) from type
1755 FROM to type TO. The optional expression EXPR may affect the
1756 conversion. FLAGS are the usual overloading flags. If C_CAST_P is
1757 true, this conversion is coming from a C-style cast. */
1759 static conversion *
1760 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1761 int flags, tsubst_flags_t complain)
1763 conversion *conv;
1765 if (from == error_mark_node || to == error_mark_node
1766 || expr == error_mark_node)
1767 return NULL;
1769 /* Other flags only apply to the primary function in overload
1770 resolution, or after we've chosen one. */
1771 flags &= (LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION|LOOKUP_COPY_PARM
1772 |LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND|LOOKUP_PREFER_RVALUE
1773 |LOOKUP_NO_NARROWING|LOOKUP_PROTECT|LOOKUP_NO_NON_INTEGRAL);
1775 /* FIXME: actually we don't want warnings either, but we can't just
1776 have 'complain &= ~(tf_warning|tf_error)' because it would cause
1777 the regression of, eg, g++.old-deja/g++.benjamin/16077.C.
1778 We really ought not to issue that warning until we've committed
1779 to that conversion. */
1780 complain &= ~tf_error;
1782 if (TREE_CODE (to) == REFERENCE_TYPE)
1783 conv = reference_binding (to, from, expr, c_cast_p, flags, complain);
1784 else
1785 conv = standard_conversion (to, from, expr, c_cast_p, flags);
1787 if (conv)
1788 return conv;
1790 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1792 if (is_std_init_list (to))
1793 return build_list_conv (to, expr, flags, complain);
1795 /* As an extension, allow list-initialization of _Complex. */
1796 if (TREE_CODE (to) == COMPLEX_TYPE)
1798 conv = build_complex_conv (to, expr, flags, complain);
1799 if (conv)
1800 return conv;
1803 /* Allow conversion from an initializer-list with one element to a
1804 scalar type. */
1805 if (SCALAR_TYPE_P (to))
1807 int nelts = CONSTRUCTOR_NELTS (expr);
1808 tree elt;
1810 if (nelts == 0)
1811 elt = build_value_init (to, tf_none);
1812 else if (nelts == 1)
1813 elt = CONSTRUCTOR_ELT (expr, 0)->value;
1814 else
1815 elt = error_mark_node;
1817 conv = implicit_conversion (to, TREE_TYPE (elt), elt,
1818 c_cast_p, flags, complain);
1819 if (conv)
1821 conv->check_narrowing = true;
1822 if (BRACE_ENCLOSED_INITIALIZER_P (elt))
1823 /* Too many levels of braces, i.e. '{{1}}'. */
1824 conv->bad_p = true;
1825 return conv;
1828 else if (TREE_CODE (to) == ARRAY_TYPE)
1829 return build_array_conv (to, expr, flags, complain);
1832 if (expr != NULL_TREE
1833 && (MAYBE_CLASS_TYPE_P (from)
1834 || MAYBE_CLASS_TYPE_P (to))
1835 && (flags & LOOKUP_NO_CONVERSION) == 0)
1837 struct z_candidate *cand;
1839 if (CLASS_TYPE_P (to)
1840 && BRACE_ENCLOSED_INITIALIZER_P (expr)
1841 && !CLASSTYPE_NON_AGGREGATE (complete_type (to)))
1842 return build_aggr_conv (to, expr, flags, complain);
1844 cand = build_user_type_conversion_1 (to, expr, flags, complain);
1845 if (cand)
1846 conv = cand->second_conv;
1848 /* We used to try to bind a reference to a temporary here, but that
1849 is now handled after the recursive call to this function at the end
1850 of reference_binding. */
1851 return conv;
1854 return NULL;
1857 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1858 functions. ARGS will not be changed until a single candidate is
1859 selected. */
1861 static struct z_candidate *
1862 add_candidate (struct z_candidate **candidates,
1863 tree fn, tree first_arg, const vec<tree, va_gc> *args,
1864 size_t num_convs, conversion **convs,
1865 tree access_path, tree conversion_path,
1866 int viable, struct rejection_reason *reason,
1867 int flags)
1869 struct z_candidate *cand = (struct z_candidate *)
1870 conversion_obstack_alloc (sizeof (struct z_candidate));
1872 cand->fn = fn;
1873 cand->first_arg = first_arg;
1874 cand->args = args;
1875 cand->convs = convs;
1876 cand->num_convs = num_convs;
1877 cand->access_path = access_path;
1878 cand->conversion_path = conversion_path;
1879 cand->viable = viable;
1880 cand->reason = reason;
1881 cand->next = *candidates;
1882 cand->flags = flags;
1883 *candidates = cand;
1885 return cand;
1888 /* Return the number of remaining arguments in the parameter list
1889 beginning with ARG. */
1891 static int
1892 remaining_arguments (tree arg)
1894 int n;
1896 for (n = 0; arg != NULL_TREE && arg != void_list_node;
1897 arg = TREE_CHAIN (arg))
1898 n++;
1900 return n;
1903 /* Create an overload candidate for the function or method FN called
1904 with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
1905 FLAGS is passed on to implicit_conversion.
1907 This does not change ARGS.
1909 CTYPE, if non-NULL, is the type we want to pretend this function
1910 comes from for purposes of overload resolution. */
1912 static struct z_candidate *
1913 add_function_candidate (struct z_candidate **candidates,
1914 tree fn, tree ctype, tree first_arg,
1915 const vec<tree, va_gc> *args, tree access_path,
1916 tree conversion_path, int flags,
1917 tsubst_flags_t complain)
1919 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1920 int i, len;
1921 conversion **convs;
1922 tree parmnode;
1923 tree orig_first_arg = first_arg;
1924 int skip;
1925 int viable = 1;
1926 struct rejection_reason *reason = NULL;
1928 /* At this point we should not see any functions which haven't been
1929 explicitly declared, except for friend functions which will have
1930 been found using argument dependent lookup. */
1931 gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
1933 /* The `this', `in_chrg' and VTT arguments to constructors are not
1934 considered in overload resolution. */
1935 if (DECL_CONSTRUCTOR_P (fn))
1937 parmlist = skip_artificial_parms_for (fn, parmlist);
1938 skip = num_artificial_parms_for (fn);
1939 if (skip > 0 && first_arg != NULL_TREE)
1941 --skip;
1942 first_arg = NULL_TREE;
1945 else
1946 skip = 0;
1948 len = vec_safe_length (args) - skip + (first_arg != NULL_TREE ? 1 : 0);
1949 convs = alloc_conversions (len);
1951 /* 13.3.2 - Viable functions [over.match.viable]
1952 First, to be a viable function, a candidate function shall have enough
1953 parameters to agree in number with the arguments in the list.
1955 We need to check this first; otherwise, checking the ICSes might cause
1956 us to produce an ill-formed template instantiation. */
1958 parmnode = parmlist;
1959 for (i = 0; i < len; ++i)
1961 if (parmnode == NULL_TREE || parmnode == void_list_node)
1962 break;
1963 parmnode = TREE_CHAIN (parmnode);
1966 if ((i < len && parmnode)
1967 || !sufficient_parms_p (parmnode))
1969 int remaining = remaining_arguments (parmnode);
1970 viable = 0;
1971 reason = arity_rejection (first_arg, i + remaining, len);
1973 /* When looking for a function from a subobject from an implicit
1974 copy/move constructor/operator=, don't consider anything that takes (a
1975 reference to) an unrelated type. See c++/44909 and core 1092. */
1976 else if (parmlist && (flags & LOOKUP_DEFAULTED))
1978 if (DECL_CONSTRUCTOR_P (fn))
1979 i = 1;
1980 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
1981 && DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR)
1982 i = 2;
1983 else
1984 i = 0;
1985 if (i && len == i)
1987 parmnode = chain_index (i-1, parmlist);
1988 if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
1989 ctype))
1990 viable = 0;
1993 /* This only applies at the top level. */
1994 flags &= ~LOOKUP_DEFAULTED;
1997 if (! viable)
1998 goto out;
2000 /* Second, for F to be a viable function, there shall exist for each
2001 argument an implicit conversion sequence that converts that argument
2002 to the corresponding parameter of F. */
2004 parmnode = parmlist;
2006 for (i = 0; i < len; ++i)
2008 tree argtype, to_type;
2009 tree arg;
2010 conversion *t;
2011 int is_this;
2013 if (parmnode == void_list_node)
2014 break;
2016 if (i == 0 && first_arg != NULL_TREE)
2017 arg = first_arg;
2018 else
2019 arg = CONST_CAST_TREE (
2020 (*args)[i + skip - (first_arg != NULL_TREE ? 1 : 0)]);
2021 argtype = lvalue_type (arg);
2023 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2024 && ! DECL_CONSTRUCTOR_P (fn));
2026 if (parmnode)
2028 tree parmtype = TREE_VALUE (parmnode);
2029 int lflags = flags;
2031 parmnode = TREE_CHAIN (parmnode);
2033 /* The type of the implicit object parameter ('this') for
2034 overload resolution is not always the same as for the
2035 function itself; conversion functions are considered to
2036 be members of the class being converted, and functions
2037 introduced by a using-declaration are considered to be
2038 members of the class that uses them.
2040 Since build_over_call ignores the ICS for the `this'
2041 parameter, we can just change the parm type. */
2042 if (ctype && is_this)
2044 parmtype = cp_build_qualified_type
2045 (ctype, cp_type_quals (TREE_TYPE (parmtype)));
2046 if (FUNCTION_REF_QUALIFIED (TREE_TYPE (fn)))
2048 /* If the function has a ref-qualifier, the implicit
2049 object parameter has reference type. */
2050 bool rv = FUNCTION_RVALUE_QUALIFIED (TREE_TYPE (fn));
2051 parmtype = cp_build_reference_type (parmtype, rv);
2052 /* The special handling of 'this' conversions in compare_ics
2053 does not apply if there is a ref-qualifier. */
2054 is_this = false;
2056 else
2058 parmtype = build_pointer_type (parmtype);
2059 arg = build_this (arg);
2060 argtype = lvalue_type (arg);
2064 /* Core issue 899: When [copy-]initializing a temporary to be bound
2065 to the first parameter of a copy constructor (12.8) called with
2066 a single argument in the context of direct-initialization,
2067 explicit conversion functions are also considered.
2069 So set LOOKUP_COPY_PARM to let reference_binding know that
2070 it's being called in that context. We generalize the above
2071 to handle move constructors and template constructors as well;
2072 the standardese should soon be updated similarly. */
2073 if (ctype && i == 0 && (len-skip == 1)
2074 && DECL_CONSTRUCTOR_P (fn)
2075 && parmtype != error_mark_node
2076 && (same_type_ignoring_top_level_qualifiers_p
2077 (non_reference (parmtype), ctype)))
2079 if (!(flags & LOOKUP_ONLYCONVERTING))
2080 lflags |= LOOKUP_COPY_PARM;
2081 /* We allow user-defined conversions within init-lists, but
2082 don't list-initialize the copy parm, as that would mean
2083 using two levels of braces for the same type. */
2084 if ((flags & LOOKUP_LIST_INIT_CTOR)
2085 && BRACE_ENCLOSED_INITIALIZER_P (arg))
2086 lflags |= LOOKUP_NO_CONVERSION;
2088 else
2089 lflags |= LOOKUP_ONLYCONVERTING;
2091 t = implicit_conversion (parmtype, argtype, arg,
2092 /*c_cast_p=*/false, lflags, complain);
2093 to_type = parmtype;
2095 else
2097 t = build_identity_conv (argtype, arg);
2098 t->ellipsis_p = true;
2099 to_type = argtype;
2102 if (t && is_this)
2103 t->this_p = true;
2105 convs[i] = t;
2106 if (! t)
2108 viable = 0;
2109 reason = arg_conversion_rejection (first_arg, i, argtype, to_type);
2110 break;
2113 if (t->bad_p)
2115 viable = -1;
2116 reason = bad_arg_conversion_rejection (first_arg, i, arg, to_type);
2120 out:
2121 return add_candidate (candidates, fn, orig_first_arg, args, len, convs,
2122 access_path, conversion_path, viable, reason, flags);
2125 /* Create an overload candidate for the conversion function FN which will
2126 be invoked for expression OBJ, producing a pointer-to-function which
2127 will in turn be called with the argument list FIRST_ARG/ARGLIST,
2128 and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
2129 passed on to implicit_conversion.
2131 Actually, we don't really care about FN; we care about the type it
2132 converts to. There may be multiple conversion functions that will
2133 convert to that type, and we rely on build_user_type_conversion_1 to
2134 choose the best one; so when we create our candidate, we record the type
2135 instead of the function. */
2137 static struct z_candidate *
2138 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
2139 tree first_arg, const vec<tree, va_gc> *arglist,
2140 tree access_path, tree conversion_path,
2141 tsubst_flags_t complain)
2143 tree totype = TREE_TYPE (TREE_TYPE (fn));
2144 int i, len, viable, flags;
2145 tree parmlist, parmnode;
2146 conversion **convs;
2147 struct rejection_reason *reason;
2149 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
2150 parmlist = TREE_TYPE (parmlist);
2151 parmlist = TYPE_ARG_TYPES (parmlist);
2153 len = vec_safe_length (arglist) + (first_arg != NULL_TREE ? 1 : 0) + 1;
2154 convs = alloc_conversions (len);
2155 parmnode = parmlist;
2156 viable = 1;
2157 flags = LOOKUP_IMPLICIT;
2158 reason = NULL;
2160 /* Don't bother looking up the same type twice. */
2161 if (*candidates && (*candidates)->fn == totype)
2162 return NULL;
2164 for (i = 0; i < len; ++i)
2166 tree arg, argtype, convert_type = NULL_TREE;
2167 conversion *t;
2169 if (i == 0)
2170 arg = obj;
2171 else if (i == 1 && first_arg != NULL_TREE)
2172 arg = first_arg;
2173 else
2174 arg = (*arglist)[i - (first_arg != NULL_TREE ? 1 : 0) - 1];
2175 argtype = lvalue_type (arg);
2177 if (i == 0)
2179 t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
2180 flags, complain);
2181 convert_type = totype;
2183 else if (parmnode == void_list_node)
2184 break;
2185 else if (parmnode)
2187 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
2188 /*c_cast_p=*/false, flags, complain);
2189 convert_type = TREE_VALUE (parmnode);
2191 else
2193 t = build_identity_conv (argtype, arg);
2194 t->ellipsis_p = true;
2195 convert_type = argtype;
2198 convs[i] = t;
2199 if (! t)
2200 break;
2202 if (t->bad_p)
2204 viable = -1;
2205 reason = bad_arg_conversion_rejection (NULL_TREE, i, arg, convert_type);
2208 if (i == 0)
2209 continue;
2211 if (parmnode)
2212 parmnode = TREE_CHAIN (parmnode);
2215 if (i < len
2216 || ! sufficient_parms_p (parmnode))
2218 int remaining = remaining_arguments (parmnode);
2219 viable = 0;
2220 reason = arity_rejection (NULL_TREE, i + remaining, len);
2223 return add_candidate (candidates, totype, first_arg, arglist, len, convs,
2224 access_path, conversion_path, viable, reason, flags);
2227 static void
2228 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
2229 tree type1, tree type2, tree *args, tree *argtypes,
2230 int flags, tsubst_flags_t complain)
2232 conversion *t;
2233 conversion **convs;
2234 size_t num_convs;
2235 int viable = 1, i;
2236 tree types[2];
2237 struct rejection_reason *reason = NULL;
2239 types[0] = type1;
2240 types[1] = type2;
2242 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
2243 convs = alloc_conversions (num_convs);
2245 /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2246 conversion ops are allowed. We handle that here by just checking for
2247 boolean_type_node because other operators don't ask for it. COND_EXPR
2248 also does contextual conversion to bool for the first operand, but we
2249 handle that in build_conditional_expr, and type1 here is operand 2. */
2250 if (type1 != boolean_type_node)
2251 flags |= LOOKUP_ONLYCONVERTING;
2253 for (i = 0; i < 2; ++i)
2255 if (! args[i])
2256 break;
2258 t = implicit_conversion (types[i], argtypes[i], args[i],
2259 /*c_cast_p=*/false, flags, complain);
2260 if (! t)
2262 viable = 0;
2263 /* We need something for printing the candidate. */
2264 t = build_identity_conv (types[i], NULL_TREE);
2265 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2266 types[i]);
2268 else if (t->bad_p)
2270 viable = 0;
2271 reason = bad_arg_conversion_rejection (NULL_TREE, i, args[i],
2272 types[i]);
2274 convs[i] = t;
2277 /* For COND_EXPR we rearranged the arguments; undo that now. */
2278 if (args[2])
2280 convs[2] = convs[1];
2281 convs[1] = convs[0];
2282 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2283 /*c_cast_p=*/false, flags,
2284 complain);
2285 if (t)
2286 convs[0] = t;
2287 else
2289 viable = 0;
2290 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2291 boolean_type_node);
2295 add_candidate (candidates, fnname, /*first_arg=*/NULL_TREE, /*args=*/NULL,
2296 num_convs, convs,
2297 /*access_path=*/NULL_TREE,
2298 /*conversion_path=*/NULL_TREE,
2299 viable, reason, flags);
2302 static bool
2303 is_complete (tree t)
2305 return COMPLETE_TYPE_P (complete_type (t));
2308 /* Returns nonzero if TYPE is a promoted arithmetic type. */
2310 static bool
2311 promoted_arithmetic_type_p (tree type)
2313 /* [over.built]
2315 In this section, the term promoted integral type is used to refer
2316 to those integral types which are preserved by integral promotion
2317 (including e.g. int and long but excluding e.g. char).
2318 Similarly, the term promoted arithmetic type refers to promoted
2319 integral types plus floating types. */
2320 return ((CP_INTEGRAL_TYPE_P (type)
2321 && same_type_p (type_promotes_to (type), type))
2322 || TREE_CODE (type) == REAL_TYPE);
2325 /* Create any builtin operator overload candidates for the operator in
2326 question given the converted operand types TYPE1 and TYPE2. The other
2327 args are passed through from add_builtin_candidates to
2328 build_builtin_candidate.
2330 TYPE1 and TYPE2 may not be permissible, and we must filter them.
2331 If CODE is requires candidates operands of the same type of the kind
2332 of which TYPE1 and TYPE2 are, we add both candidates
2333 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
2335 static void
2336 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
2337 enum tree_code code2, tree fnname, tree type1,
2338 tree type2, tree *args, tree *argtypes, int flags,
2339 tsubst_flags_t complain)
2341 switch (code)
2343 case POSTINCREMENT_EXPR:
2344 case POSTDECREMENT_EXPR:
2345 args[1] = integer_zero_node;
2346 type2 = integer_type_node;
2347 break;
2348 default:
2349 break;
2352 switch (code)
2355 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2356 and VQ is either volatile or empty, there exist candidate operator
2357 functions of the form
2358 VQ T& operator++(VQ T&);
2359 T operator++(VQ T&, int);
2360 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
2361 type other than bool, and VQ is either volatile or empty, there exist
2362 candidate operator functions of the form
2363 VQ T& operator--(VQ T&);
2364 T operator--(VQ T&, int);
2365 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
2366 complete object type, and VQ is either volatile or empty, there exist
2367 candidate operator functions of the form
2368 T*VQ& operator++(T*VQ&);
2369 T*VQ& operator--(T*VQ&);
2370 T* operator++(T*VQ&, int);
2371 T* operator--(T*VQ&, int); */
2373 case POSTDECREMENT_EXPR:
2374 case PREDECREMENT_EXPR:
2375 if (TREE_CODE (type1) == BOOLEAN_TYPE)
2376 return;
2377 case POSTINCREMENT_EXPR:
2378 case PREINCREMENT_EXPR:
2379 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
2381 type1 = build_reference_type (type1);
2382 break;
2384 return;
2386 /* 7 For every cv-qualified or cv-unqualified object type T, there
2387 exist candidate operator functions of the form
2389 T& operator*(T*);
2391 8 For every function type T, there exist candidate operator functions of
2392 the form
2393 T& operator*(T*); */
2395 case INDIRECT_REF:
2396 if (TYPE_PTR_P (type1)
2397 && (TYPE_PTROB_P (type1)
2398 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
2399 break;
2400 return;
2402 /* 9 For every type T, there exist candidate operator functions of the form
2403 T* operator+(T*);
2405 10For every promoted arithmetic type T, there exist candidate operator
2406 functions of the form
2407 T operator+(T);
2408 T operator-(T); */
2410 case UNARY_PLUS_EXPR: /* unary + */
2411 if (TYPE_PTR_P (type1))
2412 break;
2413 case NEGATE_EXPR:
2414 if (ARITHMETIC_TYPE_P (type1))
2415 break;
2416 return;
2418 /* 11For every promoted integral type T, there exist candidate operator
2419 functions of the form
2420 T operator~(T); */
2422 case BIT_NOT_EXPR:
2423 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1))
2424 break;
2425 return;
2427 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
2428 is the same type as C2 or is a derived class of C2, T is a complete
2429 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
2430 there exist candidate operator functions of the form
2431 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2432 where CV12 is the union of CV1 and CV2. */
2434 case MEMBER_REF:
2435 if (TYPE_PTR_P (type1) && TYPE_PTRMEM_P (type2))
2437 tree c1 = TREE_TYPE (type1);
2438 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
2440 if (MAYBE_CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
2441 && (TYPE_PTRMEMFUNC_P (type2)
2442 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
2443 break;
2445 return;
2447 /* 13For every pair of promoted arithmetic types L and R, there exist can-
2448 didate operator functions of the form
2449 LR operator*(L, R);
2450 LR operator/(L, R);
2451 LR operator+(L, R);
2452 LR operator-(L, R);
2453 bool operator<(L, R);
2454 bool operator>(L, R);
2455 bool operator<=(L, R);
2456 bool operator>=(L, R);
2457 bool operator==(L, R);
2458 bool operator!=(L, R);
2459 where LR is the result of the usual arithmetic conversions between
2460 types L and R.
2462 14For every pair of types T and I, where T is a cv-qualified or cv-
2463 unqualified complete object type and I is a promoted integral type,
2464 there exist candidate operator functions of the form
2465 T* operator+(T*, I);
2466 T& operator[](T*, I);
2467 T* operator-(T*, I);
2468 T* operator+(I, T*);
2469 T& operator[](I, T*);
2471 15For every T, where T is a pointer to complete object type, there exist
2472 candidate operator functions of the form112)
2473 ptrdiff_t operator-(T, T);
2475 16For every pointer or enumeration type T, there exist candidate operator
2476 functions of the form
2477 bool operator<(T, T);
2478 bool operator>(T, T);
2479 bool operator<=(T, T);
2480 bool operator>=(T, T);
2481 bool operator==(T, T);
2482 bool operator!=(T, T);
2484 17For every pointer to member type T, there exist candidate operator
2485 functions of the form
2486 bool operator==(T, T);
2487 bool operator!=(T, T); */
2489 case MINUS_EXPR:
2490 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
2491 break;
2492 if (TYPE_PTROB_P (type1)
2493 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2495 type2 = ptrdiff_type_node;
2496 break;
2498 case MULT_EXPR:
2499 case TRUNC_DIV_EXPR:
2500 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2501 break;
2502 return;
2504 case EQ_EXPR:
2505 case NE_EXPR:
2506 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2507 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2)))
2508 break;
2509 if (TYPE_PTRMEM_P (type1) && null_ptr_cst_p (args[1]))
2511 type2 = type1;
2512 break;
2514 if (TYPE_PTRMEM_P (type2) && null_ptr_cst_p (args[0]))
2516 type1 = type2;
2517 break;
2519 /* Fall through. */
2520 case LT_EXPR:
2521 case GT_EXPR:
2522 case LE_EXPR:
2523 case GE_EXPR:
2524 case MAX_EXPR:
2525 case MIN_EXPR:
2526 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2527 break;
2528 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2529 break;
2530 if (TREE_CODE (type1) == ENUMERAL_TYPE
2531 && TREE_CODE (type2) == ENUMERAL_TYPE)
2532 break;
2533 if (TYPE_PTR_P (type1)
2534 && null_ptr_cst_p (args[1]))
2536 type2 = type1;
2537 break;
2539 if (null_ptr_cst_p (args[0])
2540 && TYPE_PTR_P (type2))
2542 type1 = type2;
2543 break;
2545 return;
2547 case PLUS_EXPR:
2548 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2549 break;
2550 case ARRAY_REF:
2551 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && TYPE_PTROB_P (type2))
2553 type1 = ptrdiff_type_node;
2554 break;
2556 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2558 type2 = ptrdiff_type_node;
2559 break;
2561 return;
2563 /* 18For every pair of promoted integral types L and R, there exist candi-
2564 date operator functions of the form
2565 LR operator%(L, R);
2566 LR operator&(L, R);
2567 LR operator^(L, R);
2568 LR operator|(L, R);
2569 L operator<<(L, R);
2570 L operator>>(L, R);
2571 where LR is the result of the usual arithmetic conversions between
2572 types L and R. */
2574 case TRUNC_MOD_EXPR:
2575 case BIT_AND_EXPR:
2576 case BIT_IOR_EXPR:
2577 case BIT_XOR_EXPR:
2578 case LSHIFT_EXPR:
2579 case RSHIFT_EXPR:
2580 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2581 break;
2582 return;
2584 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
2585 type, VQ is either volatile or empty, and R is a promoted arithmetic
2586 type, there exist candidate operator functions of the form
2587 VQ L& operator=(VQ L&, R);
2588 VQ L& operator*=(VQ L&, R);
2589 VQ L& operator/=(VQ L&, R);
2590 VQ L& operator+=(VQ L&, R);
2591 VQ L& operator-=(VQ L&, R);
2593 20For every pair T, VQ), where T is any type and VQ is either volatile
2594 or empty, there exist candidate operator functions of the form
2595 T*VQ& operator=(T*VQ&, T*);
2597 21For every pair T, VQ), where T is a pointer to member type and VQ is
2598 either volatile or empty, there exist candidate operator functions of
2599 the form
2600 VQ T& operator=(VQ T&, T);
2602 22For every triple T, VQ, I), where T is a cv-qualified or cv-
2603 unqualified complete object type, VQ is either volatile or empty, and
2604 I is a promoted integral type, there exist candidate operator func-
2605 tions of the form
2606 T*VQ& operator+=(T*VQ&, I);
2607 T*VQ& operator-=(T*VQ&, I);
2609 23For every triple L, VQ, R), where L is an integral or enumeration
2610 type, VQ is either volatile or empty, and R is a promoted integral
2611 type, there exist candidate operator functions of the form
2613 VQ L& operator%=(VQ L&, R);
2614 VQ L& operator<<=(VQ L&, R);
2615 VQ L& operator>>=(VQ L&, R);
2616 VQ L& operator&=(VQ L&, R);
2617 VQ L& operator^=(VQ L&, R);
2618 VQ L& operator|=(VQ L&, R); */
2620 case MODIFY_EXPR:
2621 switch (code2)
2623 case PLUS_EXPR:
2624 case MINUS_EXPR:
2625 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2627 type2 = ptrdiff_type_node;
2628 break;
2630 case MULT_EXPR:
2631 case TRUNC_DIV_EXPR:
2632 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2633 break;
2634 return;
2636 case TRUNC_MOD_EXPR:
2637 case BIT_AND_EXPR:
2638 case BIT_IOR_EXPR:
2639 case BIT_XOR_EXPR:
2640 case LSHIFT_EXPR:
2641 case RSHIFT_EXPR:
2642 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2643 break;
2644 return;
2646 case NOP_EXPR:
2647 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2648 break;
2649 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2650 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2651 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2652 || ((TYPE_PTRMEMFUNC_P (type1)
2653 || TYPE_PTR_P (type1))
2654 && null_ptr_cst_p (args[1])))
2656 type2 = type1;
2657 break;
2659 return;
2661 default:
2662 gcc_unreachable ();
2664 type1 = build_reference_type (type1);
2665 break;
2667 case COND_EXPR:
2668 /* [over.built]
2670 For every pair of promoted arithmetic types L and R, there
2671 exist candidate operator functions of the form
2673 LR operator?(bool, L, R);
2675 where LR is the result of the usual arithmetic conversions
2676 between types L and R.
2678 For every type T, where T is a pointer or pointer-to-member
2679 type, there exist candidate operator functions of the form T
2680 operator?(bool, T, T); */
2682 if (promoted_arithmetic_type_p (type1)
2683 && promoted_arithmetic_type_p (type2))
2684 /* That's OK. */
2685 break;
2687 /* Otherwise, the types should be pointers. */
2688 if (!TYPE_PTR_OR_PTRMEM_P (type1) || !TYPE_PTR_OR_PTRMEM_P (type2))
2689 return;
2691 /* We don't check that the two types are the same; the logic
2692 below will actually create two candidates; one in which both
2693 parameter types are TYPE1, and one in which both parameter
2694 types are TYPE2. */
2695 break;
2697 case REALPART_EXPR:
2698 case IMAGPART_EXPR:
2699 if (ARITHMETIC_TYPE_P (type1))
2700 break;
2701 return;
2703 default:
2704 gcc_unreachable ();
2707 /* Make sure we don't create builtin candidates with dependent types. */
2708 bool u1 = uses_template_parms (type1);
2709 bool u2 = type2 ? uses_template_parms (type2) : false;
2710 if (u1 || u2)
2712 /* Try to recover if one of the types is non-dependent. But if
2713 there's only one type, there's nothing we can do. */
2714 if (!type2)
2715 return;
2716 /* And we lose if both are dependent. */
2717 if (u1 && u2)
2718 return;
2719 /* Or if they have different forms. */
2720 if (TREE_CODE (type1) != TREE_CODE (type2))
2721 return;
2723 if (u1 && !u2)
2724 type1 = type2;
2725 else if (u2 && !u1)
2726 type2 = type1;
2729 /* If we're dealing with two pointer types or two enumeral types,
2730 we need candidates for both of them. */
2731 if (type2 && !same_type_p (type1, type2)
2732 && TREE_CODE (type1) == TREE_CODE (type2)
2733 && (TREE_CODE (type1) == REFERENCE_TYPE
2734 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2735 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2736 || TYPE_PTRMEMFUNC_P (type1)
2737 || MAYBE_CLASS_TYPE_P (type1)
2738 || TREE_CODE (type1) == ENUMERAL_TYPE))
2740 if (TYPE_PTR_OR_PTRMEM_P (type1))
2742 tree cptype = composite_pointer_type (type1, type2,
2743 error_mark_node,
2744 error_mark_node,
2745 CPO_CONVERSION,
2746 tf_none);
2747 if (cptype != error_mark_node)
2749 build_builtin_candidate
2750 (candidates, fnname, cptype, cptype, args, argtypes,
2751 flags, complain);
2752 return;
2756 build_builtin_candidate
2757 (candidates, fnname, type1, type1, args, argtypes, flags, complain);
2758 build_builtin_candidate
2759 (candidates, fnname, type2, type2, args, argtypes, flags, complain);
2760 return;
2763 build_builtin_candidate
2764 (candidates, fnname, type1, type2, args, argtypes, flags, complain);
2767 tree
2768 type_decays_to (tree type)
2770 if (TREE_CODE (type) == ARRAY_TYPE)
2771 return build_pointer_type (TREE_TYPE (type));
2772 if (TREE_CODE (type) == FUNCTION_TYPE)
2773 return build_pointer_type (type);
2774 return type;
2777 /* There are three conditions of builtin candidates:
2779 1) bool-taking candidates. These are the same regardless of the input.
2780 2) pointer-pair taking candidates. These are generated for each type
2781 one of the input types converts to.
2782 3) arithmetic candidates. According to the standard, we should generate
2783 all of these, but I'm trying not to...
2785 Here we generate a superset of the possible candidates for this particular
2786 case. That is a subset of the full set the standard defines, plus some
2787 other cases which the standard disallows. add_builtin_candidate will
2788 filter out the invalid set. */
2790 static void
2791 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2792 enum tree_code code2, tree fnname, tree *args,
2793 int flags, tsubst_flags_t complain)
2795 int ref1, i;
2796 int enum_p = 0;
2797 tree type, argtypes[3], t;
2798 /* TYPES[i] is the set of possible builtin-operator parameter types
2799 we will consider for the Ith argument. */
2800 vec<tree, va_gc> *types[2];
2801 unsigned ix;
2803 for (i = 0; i < 3; ++i)
2805 if (args[i])
2806 argtypes[i] = unlowered_expr_type (args[i]);
2807 else
2808 argtypes[i] = NULL_TREE;
2811 switch (code)
2813 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2814 and VQ is either volatile or empty, there exist candidate operator
2815 functions of the form
2816 VQ T& operator++(VQ T&); */
2818 case POSTINCREMENT_EXPR:
2819 case PREINCREMENT_EXPR:
2820 case POSTDECREMENT_EXPR:
2821 case PREDECREMENT_EXPR:
2822 case MODIFY_EXPR:
2823 ref1 = 1;
2824 break;
2826 /* 24There also exist candidate operator functions of the form
2827 bool operator!(bool);
2828 bool operator&&(bool, bool);
2829 bool operator||(bool, bool); */
2831 case TRUTH_NOT_EXPR:
2832 build_builtin_candidate
2833 (candidates, fnname, boolean_type_node,
2834 NULL_TREE, args, argtypes, flags, complain);
2835 return;
2837 case TRUTH_ORIF_EXPR:
2838 case TRUTH_ANDIF_EXPR:
2839 build_builtin_candidate
2840 (candidates, fnname, boolean_type_node,
2841 boolean_type_node, args, argtypes, flags, complain);
2842 return;
2844 case ADDR_EXPR:
2845 case COMPOUND_EXPR:
2846 case COMPONENT_REF:
2847 return;
2849 case COND_EXPR:
2850 case EQ_EXPR:
2851 case NE_EXPR:
2852 case LT_EXPR:
2853 case LE_EXPR:
2854 case GT_EXPR:
2855 case GE_EXPR:
2856 enum_p = 1;
2857 /* Fall through. */
2859 default:
2860 ref1 = 0;
2863 types[0] = make_tree_vector ();
2864 types[1] = make_tree_vector ();
2866 for (i = 0; i < 2; ++i)
2868 if (! args[i])
2870 else if (MAYBE_CLASS_TYPE_P (argtypes[i]))
2872 tree convs;
2874 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2875 return;
2877 convs = lookup_conversions (argtypes[i]);
2879 if (code == COND_EXPR)
2881 if (real_lvalue_p (args[i]))
2882 vec_safe_push (types[i], build_reference_type (argtypes[i]));
2884 vec_safe_push (types[i], TYPE_MAIN_VARIANT (argtypes[i]));
2887 else if (! convs)
2888 return;
2890 for (; convs; convs = TREE_CHAIN (convs))
2892 type = TREE_TYPE (convs);
2894 if (i == 0 && ref1
2895 && (TREE_CODE (type) != REFERENCE_TYPE
2896 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2897 continue;
2899 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2900 vec_safe_push (types[i], type);
2902 type = non_reference (type);
2903 if (i != 0 || ! ref1)
2905 type = cv_unqualified (type_decays_to (type));
2906 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2907 vec_safe_push (types[i], type);
2908 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2909 type = type_promotes_to (type);
2912 if (! vec_member (type, types[i]))
2913 vec_safe_push (types[i], type);
2916 else
2918 if (code == COND_EXPR && real_lvalue_p (args[i]))
2919 vec_safe_push (types[i], build_reference_type (argtypes[i]));
2920 type = non_reference (argtypes[i]);
2921 if (i != 0 || ! ref1)
2923 type = cv_unqualified (type_decays_to (type));
2924 if (enum_p && UNSCOPED_ENUM_P (type))
2925 vec_safe_push (types[i], type);
2926 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2927 type = type_promotes_to (type);
2929 vec_safe_push (types[i], type);
2933 /* Run through the possible parameter types of both arguments,
2934 creating candidates with those parameter types. */
2935 FOR_EACH_VEC_ELT_REVERSE (*(types[0]), ix, t)
2937 unsigned jx;
2938 tree u;
2940 if (!types[1]->is_empty ())
2941 FOR_EACH_VEC_ELT_REVERSE (*(types[1]), jx, u)
2942 add_builtin_candidate
2943 (candidates, code, code2, fnname, t,
2944 u, args, argtypes, flags, complain);
2945 else
2946 add_builtin_candidate
2947 (candidates, code, code2, fnname, t,
2948 NULL_TREE, args, argtypes, flags, complain);
2951 release_tree_vector (types[0]);
2952 release_tree_vector (types[1]);
2956 /* If TMPL can be successfully instantiated as indicated by
2957 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2959 TMPL is the template. EXPLICIT_TARGS are any explicit template
2960 arguments. ARGLIST is the arguments provided at the call-site.
2961 This does not change ARGLIST. The RETURN_TYPE is the desired type
2962 for conversion operators. If OBJ is NULL_TREE, FLAGS and CTYPE are
2963 as for add_function_candidate. If an OBJ is supplied, FLAGS and
2964 CTYPE are ignored, and OBJ is as for add_conv_candidate. */
2966 static struct z_candidate*
2967 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2968 tree ctype, tree explicit_targs, tree first_arg,
2969 const vec<tree, va_gc> *arglist, tree return_type,
2970 tree access_path, tree conversion_path,
2971 int flags, tree obj, unification_kind_t strict,
2972 tsubst_flags_t complain)
2974 int ntparms = DECL_NTPARMS (tmpl);
2975 tree targs = make_tree_vec (ntparms);
2976 unsigned int len = vec_safe_length (arglist);
2977 unsigned int nargs = (first_arg == NULL_TREE ? 0 : 1) + len;
2978 unsigned int skip_without_in_chrg = 0;
2979 tree first_arg_without_in_chrg = first_arg;
2980 tree *args_without_in_chrg;
2981 unsigned int nargs_without_in_chrg;
2982 unsigned int ia, ix;
2983 tree arg;
2984 struct z_candidate *cand;
2985 tree fn;
2986 struct rejection_reason *reason = NULL;
2987 int errs;
2989 /* We don't do deduction on the in-charge parameter, the VTT
2990 parameter or 'this'. */
2991 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2993 if (first_arg_without_in_chrg != NULL_TREE)
2994 first_arg_without_in_chrg = NULL_TREE;
2995 else
2996 ++skip_without_in_chrg;
2999 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
3000 || DECL_BASE_CONSTRUCTOR_P (tmpl))
3001 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
3003 if (first_arg_without_in_chrg != NULL_TREE)
3004 first_arg_without_in_chrg = NULL_TREE;
3005 else
3006 ++skip_without_in_chrg;
3009 if (len < skip_without_in_chrg)
3010 return NULL;
3012 nargs_without_in_chrg = ((first_arg_without_in_chrg != NULL_TREE ? 1 : 0)
3013 + (len - skip_without_in_chrg));
3014 args_without_in_chrg = XALLOCAVEC (tree, nargs_without_in_chrg);
3015 ia = 0;
3016 if (first_arg_without_in_chrg != NULL_TREE)
3018 args_without_in_chrg[ia] = first_arg_without_in_chrg;
3019 ++ia;
3021 for (ix = skip_without_in_chrg;
3022 vec_safe_iterate (arglist, ix, &arg);
3023 ++ix)
3025 args_without_in_chrg[ia] = arg;
3026 ++ia;
3028 gcc_assert (ia == nargs_without_in_chrg);
3030 errs = errorcount+sorrycount;
3031 fn = fn_type_unification (tmpl, explicit_targs, targs,
3032 args_without_in_chrg,
3033 nargs_without_in_chrg,
3034 return_type, strict, flags, false,
3035 complain & tf_decltype);
3037 if (fn == error_mark_node)
3039 /* Don't repeat unification later if it already resulted in errors. */
3040 if (errorcount+sorrycount == errs)
3041 reason = template_unification_rejection (tmpl, explicit_targs,
3042 targs, args_without_in_chrg,
3043 nargs_without_in_chrg,
3044 return_type, strict, flags);
3045 else
3046 reason = template_unification_error_rejection ();
3047 goto fail;
3050 /* In [class.copy]:
3052 A member function template is never instantiated to perform the
3053 copy of a class object to an object of its class type.
3055 It's a little unclear what this means; the standard explicitly
3056 does allow a template to be used to copy a class. For example,
3059 struct A {
3060 A(A&);
3061 template <class T> A(const T&);
3063 const A f ();
3064 void g () { A a (f ()); }
3066 the member template will be used to make the copy. The section
3067 quoted above appears in the paragraph that forbids constructors
3068 whose only parameter is (a possibly cv-qualified variant of) the
3069 class type, and a logical interpretation is that the intent was
3070 to forbid the instantiation of member templates which would then
3071 have that form. */
3072 if (DECL_CONSTRUCTOR_P (fn) && nargs == 2)
3074 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
3075 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
3076 ctype))
3078 reason = invalid_copy_with_fn_template_rejection ();
3079 goto fail;
3083 if (obj != NULL_TREE)
3084 /* Aha, this is a conversion function. */
3085 cand = add_conv_candidate (candidates, fn, obj, first_arg, arglist,
3086 access_path, conversion_path, complain);
3087 else
3088 cand = add_function_candidate (candidates, fn, ctype,
3089 first_arg, arglist, access_path,
3090 conversion_path, flags, complain);
3091 if (DECL_TI_TEMPLATE (fn) != tmpl)
3092 /* This situation can occur if a member template of a template
3093 class is specialized. Then, instantiate_template might return
3094 an instantiation of the specialization, in which case the
3095 DECL_TI_TEMPLATE field will point at the original
3096 specialization. For example:
3098 template <class T> struct S { template <class U> void f(U);
3099 template <> void f(int) {}; };
3100 S<double> sd;
3101 sd.f(3);
3103 Here, TMPL will be template <class U> S<double>::f(U).
3104 And, instantiate template will give us the specialization
3105 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
3106 for this will point at template <class T> template <> S<T>::f(int),
3107 so that we can find the definition. For the purposes of
3108 overload resolution, however, we want the original TMPL. */
3109 cand->template_decl = build_template_info (tmpl, targs);
3110 else
3111 cand->template_decl = DECL_TEMPLATE_INFO (fn);
3112 cand->explicit_targs = explicit_targs;
3114 return cand;
3115 fail:
3116 return add_candidate (candidates, tmpl, first_arg, arglist, nargs, NULL,
3117 access_path, conversion_path, 0, reason, flags);
3121 static struct z_candidate *
3122 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
3123 tree explicit_targs, tree first_arg,
3124 const vec<tree, va_gc> *arglist, tree return_type,
3125 tree access_path, tree conversion_path, int flags,
3126 unification_kind_t strict, tsubst_flags_t complain)
3128 return
3129 add_template_candidate_real (candidates, tmpl, ctype,
3130 explicit_targs, first_arg, arglist,
3131 return_type, access_path, conversion_path,
3132 flags, NULL_TREE, strict, complain);
3136 static struct z_candidate *
3137 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
3138 tree obj, tree first_arg,
3139 const vec<tree, va_gc> *arglist,
3140 tree return_type, tree access_path,
3141 tree conversion_path, tsubst_flags_t complain)
3143 return
3144 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
3145 first_arg, arglist, return_type, access_path,
3146 conversion_path, 0, obj, DEDUCE_CONV,
3147 complain);
3150 /* The CANDS are the set of candidates that were considered for
3151 overload resolution. Return the set of viable candidates, or CANDS
3152 if none are viable. If any of the candidates were viable, set
3153 *ANY_VIABLE_P to true. STRICT_P is true if a candidate should be
3154 considered viable only if it is strictly viable. */
3156 static struct z_candidate*
3157 splice_viable (struct z_candidate *cands,
3158 bool strict_p,
3159 bool *any_viable_p)
3161 struct z_candidate *viable;
3162 struct z_candidate **last_viable;
3163 struct z_candidate **cand;
3164 bool found_strictly_viable = false;
3166 /* Be strict inside templates, since build_over_call won't actually
3167 do the conversions to get pedwarns. */
3168 if (processing_template_decl)
3169 strict_p = true;
3171 viable = NULL;
3172 last_viable = &viable;
3173 *any_viable_p = false;
3175 cand = &cands;
3176 while (*cand)
3178 struct z_candidate *c = *cand;
3179 if (!strict_p
3180 && (c->viable == 1 || TREE_CODE (c->fn) == TEMPLATE_DECL))
3182 /* Be strict in the presence of a viable candidate. Also if
3183 there are template candidates, so that we get deduction errors
3184 for them instead of silently preferring a bad conversion. */
3185 strict_p = true;
3186 if (viable && !found_strictly_viable)
3188 /* Put any spliced near matches back onto the main list so
3189 that we see them if there is no strict match. */
3190 *any_viable_p = false;
3191 *last_viable = cands;
3192 cands = viable;
3193 viable = NULL;
3194 last_viable = &viable;
3198 if (strict_p ? c->viable == 1 : c->viable)
3200 *last_viable = c;
3201 *cand = c->next;
3202 c->next = NULL;
3203 last_viable = &c->next;
3204 *any_viable_p = true;
3205 if (c->viable == 1)
3206 found_strictly_viable = true;
3208 else
3209 cand = &c->next;
3212 return viable ? viable : cands;
3215 static bool
3216 any_strictly_viable (struct z_candidate *cands)
3218 for (; cands; cands = cands->next)
3219 if (cands->viable == 1)
3220 return true;
3221 return false;
3224 /* OBJ is being used in an expression like "OBJ.f (...)". In other
3225 words, it is about to become the "this" pointer for a member
3226 function call. Take the address of the object. */
3228 static tree
3229 build_this (tree obj)
3231 /* In a template, we are only concerned about the type of the
3232 expression, so we can take a shortcut. */
3233 if (processing_template_decl)
3234 return build_address (obj);
3236 return cp_build_addr_expr (obj, tf_warning_or_error);
3239 /* Returns true iff functions are equivalent. Equivalent functions are
3240 not '==' only if one is a function-local extern function or if
3241 both are extern "C". */
3243 static inline int
3244 equal_functions (tree fn1, tree fn2)
3246 if (TREE_CODE (fn1) != TREE_CODE (fn2))
3247 return 0;
3248 if (TREE_CODE (fn1) == TEMPLATE_DECL)
3249 return fn1 == fn2;
3250 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
3251 || DECL_EXTERN_C_FUNCTION_P (fn1))
3252 return decls_match (fn1, fn2);
3253 return fn1 == fn2;
3256 /* Print information about a candidate being rejected due to INFO. */
3258 static void
3259 print_conversion_rejection (location_t loc, struct conversion_info *info)
3261 tree from = info->from;
3262 if (!TYPE_P (from))
3263 from = lvalue_type (from);
3264 if (info->n_arg == -1)
3266 /* Conversion of implicit `this' argument failed. */
3267 if (!TYPE_P (info->from))
3268 /* A bad conversion for 'this' must be discarding cv-quals. */
3269 inform (loc, " passing %qT as %<this%> "
3270 "argument discards qualifiers",
3271 from);
3272 else
3273 inform (loc, " no known conversion for implicit "
3274 "%<this%> parameter from %qT to %qT",
3275 from, info->to_type);
3277 else if (!TYPE_P (info->from))
3279 if (info->n_arg >= 0)
3280 inform (loc, " conversion of argument %d would be ill-formed:",
3281 info->n_arg + 1);
3282 perform_implicit_conversion (info->to_type, info->from,
3283 tf_warning_or_error);
3285 else if (info->n_arg == -2)
3286 /* Conversion of conversion function return value failed. */
3287 inform (loc, " no known conversion from %qT to %qT",
3288 from, info->to_type);
3289 else
3290 inform (loc, " no known conversion for argument %d from %qT to %qT",
3291 info->n_arg + 1, from, info->to_type);
3294 /* Print information about a candidate with WANT parameters and we found
3295 HAVE. */
3297 static void
3298 print_arity_information (location_t loc, unsigned int have, unsigned int want)
3300 inform_n (loc, want,
3301 " candidate expects %d argument, %d provided",
3302 " candidate expects %d arguments, %d provided",
3303 want, have);
3306 /* Print information about one overload candidate CANDIDATE. MSGSTR
3307 is the text to print before the candidate itself.
3309 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3310 to have been run through gettext by the caller. This wart makes
3311 life simpler in print_z_candidates and for the translators. */
3313 static void
3314 print_z_candidate (location_t loc, const char *msgstr,
3315 struct z_candidate *candidate)
3317 const char *msg = (msgstr == NULL
3318 ? ""
3319 : ACONCAT ((msgstr, " ", NULL)));
3320 location_t cloc = location_of (candidate->fn);
3322 if (identifier_p (candidate->fn))
3324 cloc = loc;
3325 if (candidate->num_convs == 3)
3326 inform (cloc, "%s%D(%T, %T, %T) <built-in>", msg, candidate->fn,
3327 candidate->convs[0]->type,
3328 candidate->convs[1]->type,
3329 candidate->convs[2]->type);
3330 else if (candidate->num_convs == 2)
3331 inform (cloc, "%s%D(%T, %T) <built-in>", msg, candidate->fn,
3332 candidate->convs[0]->type,
3333 candidate->convs[1]->type);
3334 else
3335 inform (cloc, "%s%D(%T) <built-in>", msg, candidate->fn,
3336 candidate->convs[0]->type);
3338 else if (TYPE_P (candidate->fn))
3339 inform (cloc, "%s%T <conversion>", msg, candidate->fn);
3340 else if (candidate->viable == -1)
3341 inform (cloc, "%s%#D <near match>", msg, candidate->fn);
3342 else if (DECL_DELETED_FN (candidate->fn))
3343 inform (cloc, "%s%#D <deleted>", msg, candidate->fn);
3344 else
3345 inform (cloc, "%s%#D", msg, candidate->fn);
3346 /* Give the user some information about why this candidate failed. */
3347 if (candidate->reason != NULL)
3349 struct rejection_reason *r = candidate->reason;
3351 switch (r->code)
3353 case rr_arity:
3354 print_arity_information (cloc, r->u.arity.actual,
3355 r->u.arity.expected);
3356 break;
3357 case rr_arg_conversion:
3358 print_conversion_rejection (cloc, &r->u.conversion);
3359 break;
3360 case rr_bad_arg_conversion:
3361 print_conversion_rejection (cloc, &r->u.bad_conversion);
3362 break;
3363 case rr_explicit_conversion:
3364 inform (cloc, " return type %qT of explicit conversion function "
3365 "cannot be converted to %qT with a qualification "
3366 "conversion", r->u.conversion.from,
3367 r->u.conversion.to_type);
3368 break;
3369 case rr_template_conversion:
3370 inform (cloc, " conversion from return type %qT of template "
3371 "conversion function specialization to %qT is not an "
3372 "exact match", r->u.conversion.from,
3373 r->u.conversion.to_type);
3374 break;
3375 case rr_template_unification:
3376 /* We use template_unification_error_rejection if unification caused
3377 actual non-SFINAE errors, in which case we don't need to repeat
3378 them here. */
3379 if (r->u.template_unification.tmpl == NULL_TREE)
3381 inform (cloc, " substitution of deduced template arguments "
3382 "resulted in errors seen above");
3383 break;
3385 /* Re-run template unification with diagnostics. */
3386 inform (cloc, " template argument deduction/substitution failed:");
3387 fn_type_unification (r->u.template_unification.tmpl,
3388 r->u.template_unification.explicit_targs,
3389 (make_tree_vec
3390 (r->u.template_unification.num_targs)),
3391 r->u.template_unification.args,
3392 r->u.template_unification.nargs,
3393 r->u.template_unification.return_type,
3394 r->u.template_unification.strict,
3395 r->u.template_unification.flags,
3396 true, false);
3397 break;
3398 case rr_invalid_copy:
3399 inform (cloc,
3400 " a constructor taking a single argument of its own "
3401 "class type is invalid");
3402 break;
3403 case rr_none:
3404 default:
3405 /* This candidate didn't have any issues or we failed to
3406 handle a particular code. Either way... */
3407 gcc_unreachable ();
3412 static void
3413 print_z_candidates (location_t loc, struct z_candidate *candidates)
3415 struct z_candidate *cand1;
3416 struct z_candidate **cand2;
3417 int n_candidates;
3419 if (!candidates)
3420 return;
3422 /* Remove non-viable deleted candidates. */
3423 cand1 = candidates;
3424 for (cand2 = &cand1; *cand2; )
3426 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
3427 && !(*cand2)->viable
3428 && DECL_DELETED_FN ((*cand2)->fn))
3429 *cand2 = (*cand2)->next;
3430 else
3431 cand2 = &(*cand2)->next;
3433 /* ...if there are any non-deleted ones. */
3434 if (cand1)
3435 candidates = cand1;
3437 /* There may be duplicates in the set of candidates. We put off
3438 checking this condition as long as possible, since we have no way
3439 to eliminate duplicates from a set of functions in less than n^2
3440 time. Now we are about to emit an error message, so it is more
3441 permissible to go slowly. */
3442 for (cand1 = candidates; cand1; cand1 = cand1->next)
3444 tree fn = cand1->fn;
3445 /* Skip builtin candidates and conversion functions. */
3446 if (!DECL_P (fn))
3447 continue;
3448 cand2 = &cand1->next;
3449 while (*cand2)
3451 if (DECL_P ((*cand2)->fn)
3452 && equal_functions (fn, (*cand2)->fn))
3453 *cand2 = (*cand2)->next;
3454 else
3455 cand2 = &(*cand2)->next;
3459 for (n_candidates = 0, cand1 = candidates; cand1; cand1 = cand1->next)
3460 n_candidates++;
3462 for (; candidates; candidates = candidates->next)
3463 print_z_candidate (loc, "candidate:", candidates);
3466 /* USER_SEQ is a user-defined conversion sequence, beginning with a
3467 USER_CONV. STD_SEQ is the standard conversion sequence applied to
3468 the result of the conversion function to convert it to the final
3469 desired type. Merge the two sequences into a single sequence,
3470 and return the merged sequence. */
3472 static conversion *
3473 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
3475 conversion **t;
3476 bool bad = user_seq->bad_p;
3478 gcc_assert (user_seq->kind == ck_user);
3480 /* Find the end of the second conversion sequence. */
3481 for (t = &std_seq; (*t)->kind != ck_identity; t = &((*t)->u.next))
3483 /* The entire sequence is a user-conversion sequence. */
3484 (*t)->user_conv_p = true;
3485 if (bad)
3486 (*t)->bad_p = true;
3489 /* Replace the identity conversion with the user conversion
3490 sequence. */
3491 *t = user_seq;
3493 return std_seq;
3496 /* Handle overload resolution for initializing an object of class type from
3497 an initializer list. First we look for a suitable constructor that
3498 takes a std::initializer_list; if we don't find one, we then look for a
3499 non-list constructor.
3501 Parameters are as for add_candidates, except that the arguments are in
3502 the form of a CONSTRUCTOR (the initializer list) rather than a vector, and
3503 the RETURN_TYPE parameter is replaced by TOTYPE, the desired type. */
3505 static void
3506 add_list_candidates (tree fns, tree first_arg,
3507 tree init_list, tree totype,
3508 tree explicit_targs, bool template_only,
3509 tree conversion_path, tree access_path,
3510 int flags,
3511 struct z_candidate **candidates,
3512 tsubst_flags_t complain)
3514 vec<tree, va_gc> *args;
3516 gcc_assert (*candidates == NULL);
3518 /* We're looking for a ctor for list-initialization. */
3519 flags |= LOOKUP_LIST_INIT_CTOR;
3520 /* And we don't allow narrowing conversions. We also use this flag to
3521 avoid the copy constructor call for copy-list-initialization. */
3522 flags |= LOOKUP_NO_NARROWING;
3524 /* Always use the default constructor if the list is empty (DR 990). */
3525 if (CONSTRUCTOR_NELTS (init_list) == 0
3526 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
3528 /* If the class has a list ctor, try passing the list as a single
3529 argument first, but only consider list ctors. */
3530 else if (TYPE_HAS_LIST_CTOR (totype))
3532 flags |= LOOKUP_LIST_ONLY;
3533 args = make_tree_vector_single (init_list);
3534 add_candidates (fns, first_arg, args, NULL_TREE,
3535 explicit_targs, template_only, conversion_path,
3536 access_path, flags, candidates, complain);
3537 if (any_strictly_viable (*candidates))
3538 return;
3541 args = ctor_to_vec (init_list);
3543 /* We aren't looking for list-ctors anymore. */
3544 flags &= ~LOOKUP_LIST_ONLY;
3545 /* We allow more user-defined conversions within an init-list. */
3546 flags &= ~LOOKUP_NO_CONVERSION;
3548 add_candidates (fns, first_arg, args, NULL_TREE,
3549 explicit_targs, template_only, conversion_path,
3550 access_path, flags, candidates, complain);
3553 /* Returns the best overload candidate to perform the requested
3554 conversion. This function is used for three the overloading situations
3555 described in [over.match.copy], [over.match.conv], and [over.match.ref].
3556 If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
3557 per [dcl.init.ref], so we ignore temporary bindings. */
3559 static struct z_candidate *
3560 build_user_type_conversion_1 (tree totype, tree expr, int flags,
3561 tsubst_flags_t complain)
3563 struct z_candidate *candidates, *cand;
3564 tree fromtype;
3565 tree ctors = NULL_TREE;
3566 tree conv_fns = NULL_TREE;
3567 conversion *conv = NULL;
3568 tree first_arg = NULL_TREE;
3569 vec<tree, va_gc> *args = NULL;
3570 bool any_viable_p;
3571 int convflags;
3573 if (!expr)
3574 return NULL;
3576 fromtype = TREE_TYPE (expr);
3578 /* We represent conversion within a hierarchy using RVALUE_CONV and
3579 BASE_CONV, as specified by [over.best.ics]; these become plain
3580 constructor calls, as specified in [dcl.init]. */
3581 gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
3582 || !DERIVED_FROM_P (totype, fromtype));
3584 if (MAYBE_CLASS_TYPE_P (totype))
3585 /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
3586 creating a garbage BASELINK; constructors can't be inherited. */
3587 ctors = lookup_fnfields_slot (totype, complete_ctor_identifier);
3589 if (MAYBE_CLASS_TYPE_P (fromtype))
3591 tree to_nonref = non_reference (totype);
3592 if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
3593 (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
3594 && DERIVED_FROM_P (to_nonref, fromtype)))
3596 /* [class.conv.fct] A conversion function is never used to
3597 convert a (possibly cv-qualified) object to the (possibly
3598 cv-qualified) same object type (or a reference to it), to a
3599 (possibly cv-qualified) base class of that type (or a
3600 reference to it)... */
3602 else
3603 conv_fns = lookup_conversions (fromtype);
3606 candidates = 0;
3607 flags |= LOOKUP_NO_CONVERSION;
3608 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3609 flags |= LOOKUP_NO_NARROWING;
3611 /* It's OK to bind a temporary for converting constructor arguments, but
3612 not in converting the return value of a conversion operator. */
3613 convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION
3614 | (flags & LOOKUP_NO_NARROWING));
3615 flags &= ~LOOKUP_NO_TEMP_BIND;
3617 if (ctors)
3619 int ctorflags = flags;
3621 first_arg = build_dummy_object (totype);
3623 /* We should never try to call the abstract or base constructor
3624 from here. */
3625 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
3626 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
3628 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3630 /* List-initialization. */
3631 add_list_candidates (ctors, first_arg, expr, totype, NULL_TREE,
3632 false, TYPE_BINFO (totype), TYPE_BINFO (totype),
3633 ctorflags, &candidates, complain);
3635 else
3637 args = make_tree_vector_single (expr);
3638 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
3639 TYPE_BINFO (totype), TYPE_BINFO (totype),
3640 ctorflags, &candidates, complain);
3643 for (cand = candidates; cand; cand = cand->next)
3645 cand->second_conv = build_identity_conv (totype, NULL_TREE);
3647 /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
3648 set, then this is copy-initialization. In that case, "The
3649 result of the call is then used to direct-initialize the
3650 object that is the destination of the copy-initialization."
3651 [dcl.init]
3653 We represent this in the conversion sequence with an
3654 rvalue conversion, which means a constructor call. */
3655 if (TREE_CODE (totype) != REFERENCE_TYPE
3656 && !(convflags & LOOKUP_NO_TEMP_BIND))
3657 cand->second_conv
3658 = build_conv (ck_rvalue, totype, cand->second_conv);
3662 if (conv_fns)
3663 first_arg = expr;
3665 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
3667 tree conversion_path = TREE_PURPOSE (conv_fns);
3668 struct z_candidate *old_candidates;
3670 /* If we are called to convert to a reference type, we are trying to
3671 find a direct binding, so don't even consider temporaries. If
3672 we don't find a direct binding, the caller will try again to
3673 look for a temporary binding. */
3674 if (TREE_CODE (totype) == REFERENCE_TYPE)
3675 convflags |= LOOKUP_NO_TEMP_BIND;
3677 old_candidates = candidates;
3678 add_candidates (TREE_VALUE (conv_fns), first_arg, NULL, totype,
3679 NULL_TREE, false,
3680 conversion_path, TYPE_BINFO (fromtype),
3681 flags, &candidates, complain);
3683 for (cand = candidates; cand != old_candidates; cand = cand->next)
3685 tree rettype = TREE_TYPE (TREE_TYPE (cand->fn));
3686 conversion *ics
3687 = implicit_conversion (totype,
3688 rettype,
3690 /*c_cast_p=*/false, convflags,
3691 complain);
3693 /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
3694 copy-initialization. In that case, "The result of the
3695 call is then used to direct-initialize the object that is
3696 the destination of the copy-initialization." [dcl.init]
3698 We represent this in the conversion sequence with an
3699 rvalue conversion, which means a constructor call. But
3700 don't add a second rvalue conversion if there's already
3701 one there. Which there really shouldn't be, but it's
3702 harmless since we'd add it here anyway. */
3703 if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
3704 && !(convflags & LOOKUP_NO_TEMP_BIND))
3705 ics = build_conv (ck_rvalue, totype, ics);
3707 cand->second_conv = ics;
3709 if (!ics)
3711 cand->viable = 0;
3712 cand->reason = arg_conversion_rejection (NULL_TREE, -2,
3713 rettype, totype);
3715 else if (DECL_NONCONVERTING_P (cand->fn)
3716 && ics->rank > cr_exact)
3718 /* 13.3.1.5: For direct-initialization, those explicit
3719 conversion functions that are not hidden within S and
3720 yield type T or a type that can be converted to type T
3721 with a qualification conversion (4.4) are also candidate
3722 functions. */
3723 /* 13.3.1.6 doesn't have a parallel restriction, but it should;
3724 I've raised this issue with the committee. --jason 9/2011 */
3725 cand->viable = -1;
3726 cand->reason = explicit_conversion_rejection (rettype, totype);
3728 else if (cand->viable == 1 && ics->bad_p)
3730 cand->viable = -1;
3731 cand->reason
3732 = bad_arg_conversion_rejection (NULL_TREE, -2,
3733 rettype, totype);
3735 else if (primary_template_instantiation_p (cand->fn)
3736 && ics->rank > cr_exact)
3738 /* 13.3.3.1.2: If the user-defined conversion is specified by
3739 a specialization of a conversion function template, the
3740 second standard conversion sequence shall have exact match
3741 rank. */
3742 cand->viable = -1;
3743 cand->reason = template_conversion_rejection (rettype, totype);
3748 candidates = splice_viable (candidates, false, &any_viable_p);
3749 if (!any_viable_p)
3751 if (args)
3752 release_tree_vector (args);
3753 return NULL;
3756 cand = tourney (candidates, complain);
3757 if (cand == 0)
3759 if (complain & tf_error)
3761 error ("conversion from %qT to %qT is ambiguous",
3762 fromtype, totype);
3763 print_z_candidates (location_of (expr), candidates);
3766 cand = candidates; /* any one will do */
3767 cand->second_conv = build_ambiguous_conv (totype, expr);
3768 cand->second_conv->user_conv_p = true;
3769 if (!any_strictly_viable (candidates))
3770 cand->second_conv->bad_p = true;
3771 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
3772 ambiguous conversion is no worse than another user-defined
3773 conversion. */
3775 return cand;
3778 tree convtype;
3779 if (!DECL_CONSTRUCTOR_P (cand->fn))
3780 convtype = non_reference (TREE_TYPE (TREE_TYPE (cand->fn)));
3781 else if (cand->second_conv->kind == ck_rvalue)
3782 /* DR 5: [in the first step of copy-initialization]...if the function
3783 is a constructor, the call initializes a temporary of the
3784 cv-unqualified version of the destination type. */
3785 convtype = cv_unqualified (totype);
3786 else
3787 convtype = totype;
3788 /* Build the user conversion sequence. */
3789 conv = build_conv
3790 (ck_user,
3791 convtype,
3792 build_identity_conv (TREE_TYPE (expr), expr));
3793 conv->cand = cand;
3794 if (cand->viable == -1)
3795 conv->bad_p = true;
3797 /* Remember that this was a list-initialization. */
3798 if (flags & LOOKUP_NO_NARROWING)
3799 conv->check_narrowing = true;
3801 /* Combine it with the second conversion sequence. */
3802 cand->second_conv = merge_conversion_sequences (conv,
3803 cand->second_conv);
3805 return cand;
3808 /* Wrapper for above. */
3810 tree
3811 build_user_type_conversion (tree totype, tree expr, int flags,
3812 tsubst_flags_t complain)
3814 struct z_candidate *cand;
3815 tree ret;
3817 bool subtime = timevar_cond_start (TV_OVERLOAD);
3818 cand = build_user_type_conversion_1 (totype, expr, flags, complain);
3820 if (cand)
3822 if (cand->second_conv->kind == ck_ambig)
3823 ret = error_mark_node;
3824 else
3826 expr = convert_like (cand->second_conv, expr, complain);
3827 ret = convert_from_reference (expr);
3830 else
3831 ret = NULL_TREE;
3833 timevar_cond_stop (TV_OVERLOAD, subtime);
3834 return ret;
3837 /* Subroutine of convert_nontype_argument.
3839 EXPR is an argument for a template non-type parameter of integral or
3840 enumeration type. Do any necessary conversions (that are permitted for
3841 non-type arguments) to convert it to the parameter type.
3843 If conversion is successful, returns the converted expression;
3844 otherwise, returns error_mark_node. */
3846 tree
3847 build_integral_nontype_arg_conv (tree type, tree expr, tsubst_flags_t complain)
3849 conversion *conv;
3850 void *p;
3851 tree t;
3852 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
3854 if (error_operand_p (expr))
3855 return error_mark_node;
3857 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
3859 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3860 p = conversion_obstack_alloc (0);
3862 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
3863 /*c_cast_p=*/false,
3864 LOOKUP_IMPLICIT, complain);
3866 /* for a non-type template-parameter of integral or
3867 enumeration type, integral promotions (4.5) and integral
3868 conversions (4.7) are applied. */
3869 /* It should be sufficient to check the outermost conversion step, since
3870 there are no qualification conversions to integer type. */
3871 if (conv)
3872 switch (conv->kind)
3874 /* A conversion function is OK. If it isn't constexpr, we'll
3875 complain later that the argument isn't constant. */
3876 case ck_user:
3877 /* The lvalue-to-rvalue conversion is OK. */
3878 case ck_rvalue:
3879 case ck_identity:
3880 break;
3882 case ck_std:
3883 t = next_conversion (conv)->type;
3884 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t))
3885 break;
3887 if (complain & tf_error)
3888 error_at (loc, "conversion from %qT to %qT not considered for "
3889 "non-type template argument", t, type);
3890 /* and fall through. */
3892 default:
3893 conv = NULL;
3894 break;
3897 if (conv)
3898 expr = convert_like (conv, expr, complain);
3899 else
3900 expr = error_mark_node;
3902 /* Free all the conversions we allocated. */
3903 obstack_free (&conversion_obstack, p);
3905 return expr;
3908 /* Do any initial processing on the arguments to a function call. */
3910 static vec<tree, va_gc> *
3911 resolve_args (vec<tree, va_gc> *args, tsubst_flags_t complain)
3913 unsigned int ix;
3914 tree arg;
3916 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
3918 if (error_operand_p (arg))
3919 return NULL;
3920 else if (VOID_TYPE_P (TREE_TYPE (arg)))
3922 if (complain & tf_error)
3923 error ("invalid use of void expression");
3924 return NULL;
3926 else if (invalid_nonstatic_memfn_p (arg, complain))
3927 return NULL;
3929 return args;
3932 /* Perform overload resolution on FN, which is called with the ARGS.
3934 Return the candidate function selected by overload resolution, or
3935 NULL if the event that overload resolution failed. In the case
3936 that overload resolution fails, *CANDIDATES will be the set of
3937 candidates considered, and ANY_VIABLE_P will be set to true or
3938 false to indicate whether or not any of the candidates were
3939 viable.
3941 The ARGS should already have gone through RESOLVE_ARGS before this
3942 function is called. */
3944 static struct z_candidate *
3945 perform_overload_resolution (tree fn,
3946 const vec<tree, va_gc> *args,
3947 struct z_candidate **candidates,
3948 bool *any_viable_p, tsubst_flags_t complain)
3950 struct z_candidate *cand;
3951 tree explicit_targs;
3952 int template_only;
3954 bool subtime = timevar_cond_start (TV_OVERLOAD);
3956 explicit_targs = NULL_TREE;
3957 template_only = 0;
3959 *candidates = NULL;
3960 *any_viable_p = true;
3962 /* Check FN. */
3963 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
3964 || TREE_CODE (fn) == TEMPLATE_DECL
3965 || TREE_CODE (fn) == OVERLOAD
3966 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
3968 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3970 explicit_targs = TREE_OPERAND (fn, 1);
3971 fn = TREE_OPERAND (fn, 0);
3972 template_only = 1;
3975 /* Add the various candidate functions. */
3976 add_candidates (fn, NULL_TREE, args, NULL_TREE,
3977 explicit_targs, template_only,
3978 /*conversion_path=*/NULL_TREE,
3979 /*access_path=*/NULL_TREE,
3980 LOOKUP_NORMAL,
3981 candidates, complain);
3983 *candidates = splice_viable (*candidates, false, any_viable_p);
3984 if (*any_viable_p)
3985 cand = tourney (*candidates, complain);
3986 else
3987 cand = NULL;
3989 timevar_cond_stop (TV_OVERLOAD, subtime);
3990 return cand;
3993 /* Print an error message about being unable to build a call to FN with
3994 ARGS. ANY_VIABLE_P indicates whether any candidate functions could
3995 be located; CANDIDATES is a possibly empty list of such
3996 functions. */
3998 static void
3999 print_error_for_call_failure (tree fn, vec<tree, va_gc> *args,
4000 struct z_candidate *candidates)
4002 tree name = DECL_NAME (OVL_CURRENT (fn));
4003 location_t loc = location_of (name);
4005 if (!any_strictly_viable (candidates))
4006 error_at (loc, "no matching function for call to %<%D(%A)%>",
4007 name, build_tree_list_vec (args));
4008 else
4009 error_at (loc, "call of overloaded %<%D(%A)%> is ambiguous",
4010 name, build_tree_list_vec (args));
4011 if (candidates)
4012 print_z_candidates (loc, candidates);
4015 /* Return an expression for a call to FN (a namespace-scope function,
4016 or a static member function) with the ARGS. This may change
4017 ARGS. */
4019 tree
4020 build_new_function_call (tree fn, vec<tree, va_gc> **args, bool koenig_p,
4021 tsubst_flags_t complain)
4023 struct z_candidate *candidates, *cand;
4024 bool any_viable_p;
4025 void *p;
4026 tree result;
4028 if (args != NULL && *args != NULL)
4030 *args = resolve_args (*args, complain);
4031 if (*args == NULL)
4032 return error_mark_node;
4035 if (flag_tm)
4036 tm_malloc_replacement (fn);
4038 /* If this function was found without using argument dependent
4039 lookup, then we want to ignore any undeclared friend
4040 functions. */
4041 if (!koenig_p)
4043 tree orig_fn = fn;
4045 fn = remove_hidden_names (fn);
4046 if (!fn)
4048 if (complain & tf_error)
4049 print_error_for_call_failure (orig_fn, *args, NULL);
4050 return error_mark_node;
4054 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4055 p = conversion_obstack_alloc (0);
4057 cand = perform_overload_resolution (fn, *args, &candidates, &any_viable_p,
4058 complain);
4060 if (!cand)
4062 if (complain & tf_error)
4064 if (!any_viable_p && candidates && ! candidates->next
4065 && (TREE_CODE (candidates->fn) == FUNCTION_DECL))
4066 return cp_build_function_call_vec (candidates->fn, args, complain);
4067 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4068 fn = TREE_OPERAND (fn, 0);
4069 print_error_for_call_failure (fn, *args, candidates);
4071 result = error_mark_node;
4073 else
4075 int flags = LOOKUP_NORMAL;
4076 /* If fn is template_id_expr, the call has explicit template arguments
4077 (e.g. func<int>(5)), communicate this info to build_over_call
4078 through flags so that later we can use it to decide whether to warn
4079 about peculiar null pointer conversion. */
4080 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4081 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
4082 result = build_over_call (cand, flags, complain);
4085 /* Free all the conversions we allocated. */
4086 obstack_free (&conversion_obstack, p);
4088 return result;
4091 /* Build a call to a global operator new. FNNAME is the name of the
4092 operator (either "operator new" or "operator new[]") and ARGS are
4093 the arguments provided. This may change ARGS. *SIZE points to the
4094 total number of bytes required by the allocation, and is updated if
4095 that is changed here. *COOKIE_SIZE is non-NULL if a cookie should
4096 be used. If this function determines that no cookie should be
4097 used, after all, *COOKIE_SIZE is set to NULL_TREE. If SIZE_CHECK
4098 is not NULL_TREE, it is evaluated before calculating the final
4099 array size, and if it fails, the array size is replaced with
4100 (size_t)-1 (usually triggering a std::bad_alloc exception). If FN
4101 is non-NULL, it will be set, upon return, to the allocation
4102 function called. */
4104 tree
4105 build_operator_new_call (tree fnname, vec<tree, va_gc> **args,
4106 tree *size, tree *cookie_size, tree size_check,
4107 tree *fn, tsubst_flags_t complain)
4109 tree original_size = *size;
4110 tree fns;
4111 struct z_candidate *candidates;
4112 struct z_candidate *cand;
4113 bool any_viable_p;
4115 if (fn)
4116 *fn = NULL_TREE;
4117 /* Set to (size_t)-1 if the size check fails. */
4118 if (size_check != NULL_TREE)
4120 tree errval = TYPE_MAX_VALUE (sizetype);
4121 if (cxx_dialect >= cxx11 && flag_exceptions)
4122 errval = throw_bad_array_new_length ();
4123 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4124 original_size, errval);
4126 vec_safe_insert (*args, 0, *size);
4127 *args = resolve_args (*args, complain);
4128 if (*args == NULL)
4129 return error_mark_node;
4131 /* Based on:
4133 [expr.new]
4135 If this lookup fails to find the name, or if the allocated type
4136 is not a class type, the allocation function's name is looked
4137 up in the global scope.
4139 we disregard block-scope declarations of "operator new". */
4140 fns = lookup_function_nonclass (fnname, *args, /*block_p=*/false);
4142 /* Figure out what function is being called. */
4143 cand = perform_overload_resolution (fns, *args, &candidates, &any_viable_p,
4144 complain);
4146 /* If no suitable function could be found, issue an error message
4147 and give up. */
4148 if (!cand)
4150 if (complain & tf_error)
4151 print_error_for_call_failure (fns, *args, candidates);
4152 return error_mark_node;
4155 /* If a cookie is required, add some extra space. Whether
4156 or not a cookie is required cannot be determined until
4157 after we know which function was called. */
4158 if (*cookie_size)
4160 bool use_cookie = true;
4161 tree arg_types;
4163 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
4164 /* Skip the size_t parameter. */
4165 arg_types = TREE_CHAIN (arg_types);
4166 /* Check the remaining parameters (if any). */
4167 if (arg_types
4168 && TREE_CHAIN (arg_types) == void_list_node
4169 && same_type_p (TREE_VALUE (arg_types),
4170 ptr_type_node))
4171 use_cookie = false;
4172 /* If we need a cookie, adjust the number of bytes allocated. */
4173 if (use_cookie)
4175 /* Update the total size. */
4176 *size = size_binop (PLUS_EXPR, original_size, *cookie_size);
4177 /* Set to (size_t)-1 if the size check fails. */
4178 gcc_assert (size_check != NULL_TREE);
4179 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4180 *size, TYPE_MAX_VALUE (sizetype));
4181 /* Update the argument list to reflect the adjusted size. */
4182 (**args)[0] = *size;
4184 else
4185 *cookie_size = NULL_TREE;
4188 /* Tell our caller which function we decided to call. */
4189 if (fn)
4190 *fn = cand->fn;
4192 /* Build the CALL_EXPR. */
4193 return build_over_call (cand, LOOKUP_NORMAL, complain);
4196 /* Build a new call to operator(). This may change ARGS. */
4198 static tree
4199 build_op_call_1 (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4201 struct z_candidate *candidates = 0, *cand;
4202 tree fns, convs, first_mem_arg = NULL_TREE;
4203 tree type = TREE_TYPE (obj);
4204 bool any_viable_p;
4205 tree result = NULL_TREE;
4206 void *p;
4208 if (error_operand_p (obj))
4209 return error_mark_node;
4211 obj = prep_operand (obj);
4213 if (TYPE_PTRMEMFUNC_P (type))
4215 if (complain & tf_error)
4216 /* It's no good looking for an overloaded operator() on a
4217 pointer-to-member-function. */
4218 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
4219 return error_mark_node;
4222 if (TYPE_BINFO (type))
4224 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
4225 if (fns == error_mark_node)
4226 return error_mark_node;
4228 else
4229 fns = NULL_TREE;
4231 if (args != NULL && *args != NULL)
4233 *args = resolve_args (*args, complain);
4234 if (*args == NULL)
4235 return error_mark_node;
4238 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4239 p = conversion_obstack_alloc (0);
4241 if (fns)
4243 first_mem_arg = obj;
4245 add_candidates (BASELINK_FUNCTIONS (fns),
4246 first_mem_arg, *args, NULL_TREE,
4247 NULL_TREE, false,
4248 BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
4249 LOOKUP_NORMAL, &candidates, complain);
4252 convs = lookup_conversions (type);
4254 for (; convs; convs = TREE_CHAIN (convs))
4256 tree fns = TREE_VALUE (convs);
4257 tree totype = TREE_TYPE (convs);
4259 if (TYPE_PTRFN_P (totype)
4260 || TYPE_REFFN_P (totype)
4261 || (TREE_CODE (totype) == REFERENCE_TYPE
4262 && TYPE_PTRFN_P (TREE_TYPE (totype))))
4263 for (; fns; fns = OVL_NEXT (fns))
4265 tree fn = OVL_CURRENT (fns);
4267 if (DECL_NONCONVERTING_P (fn))
4268 continue;
4270 if (TREE_CODE (fn) == TEMPLATE_DECL)
4271 add_template_conv_candidate
4272 (&candidates, fn, obj, NULL_TREE, *args, totype,
4273 /*access_path=*/NULL_TREE,
4274 /*conversion_path=*/NULL_TREE, complain);
4275 else
4276 add_conv_candidate (&candidates, fn, obj, NULL_TREE,
4277 *args, /*conversion_path=*/NULL_TREE,
4278 /*access_path=*/NULL_TREE, complain);
4282 /* Be strict here because if we choose a bad conversion candidate, the
4283 errors we get won't mention the call context. */
4284 candidates = splice_viable (candidates, true, &any_viable_p);
4285 if (!any_viable_p)
4287 if (complain & tf_error)
4289 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj),
4290 build_tree_list_vec (*args));
4291 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4293 result = error_mark_node;
4295 else
4297 cand = tourney (candidates, complain);
4298 if (cand == 0)
4300 if (complain & tf_error)
4302 error ("call of %<(%T) (%A)%> is ambiguous",
4303 TREE_TYPE (obj), build_tree_list_vec (*args));
4304 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4306 result = error_mark_node;
4308 /* Since cand->fn will be a type, not a function, for a conversion
4309 function, we must be careful not to unconditionally look at
4310 DECL_NAME here. */
4311 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
4312 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
4313 result = build_over_call (cand, LOOKUP_NORMAL, complain);
4314 else
4316 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1,
4317 complain);
4318 obj = convert_from_reference (obj);
4319 result = cp_build_function_call_vec (obj, args, complain);
4323 /* Free all the conversions we allocated. */
4324 obstack_free (&conversion_obstack, p);
4326 return result;
4329 /* Wrapper for above. */
4331 tree
4332 build_op_call (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4334 tree ret;
4335 bool subtime = timevar_cond_start (TV_OVERLOAD);
4336 ret = build_op_call_1 (obj, args, complain);
4337 timevar_cond_stop (TV_OVERLOAD, subtime);
4338 return ret;
4341 /* Called by op_error to prepare format strings suitable for the error
4342 function. It concatenates a prefix (controlled by MATCH), ERRMSG,
4343 and a suffix (controlled by NTYPES). */
4345 static const char *
4346 op_error_string (const char *errmsg, int ntypes, bool match)
4348 const char *msg;
4350 const char *msgp = concat (match ? G_("ambiguous overload for ")
4351 : G_("no match for "), errmsg, NULL);
4353 if (ntypes == 3)
4354 msg = concat (msgp, G_(" (operand types are %qT, %qT, and %qT)"), NULL);
4355 else if (ntypes == 2)
4356 msg = concat (msgp, G_(" (operand types are %qT and %qT)"), NULL);
4357 else
4358 msg = concat (msgp, G_(" (operand type is %qT)"), NULL);
4360 return msg;
4363 static void
4364 op_error (location_t loc, enum tree_code code, enum tree_code code2,
4365 tree arg1, tree arg2, tree arg3, bool match)
4367 const char *opname;
4369 if (code == MODIFY_EXPR)
4370 opname = assignment_operator_name_info[code2].name;
4371 else
4372 opname = operator_name_info[code].name;
4374 switch (code)
4376 case COND_EXPR:
4377 if (flag_diagnostics_show_caret)
4378 error_at (loc, op_error_string (G_("ternary %<operator?:%>"),
4379 3, match),
4380 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4381 else
4382 error_at (loc, op_error_string (G_("ternary %<operator?:%> "
4383 "in %<%E ? %E : %E%>"), 3, match),
4384 arg1, arg2, arg3,
4385 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4386 break;
4388 case POSTINCREMENT_EXPR:
4389 case POSTDECREMENT_EXPR:
4390 if (flag_diagnostics_show_caret)
4391 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4392 opname, TREE_TYPE (arg1));
4393 else
4394 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E%s%>"),
4395 1, match),
4396 opname, arg1, opname, TREE_TYPE (arg1));
4397 break;
4399 case ARRAY_REF:
4400 if (flag_diagnostics_show_caret)
4401 error_at (loc, op_error_string (G_("%<operator[]%>"), 2, match),
4402 TREE_TYPE (arg1), TREE_TYPE (arg2));
4403 else
4404 error_at (loc, op_error_string (G_("%<operator[]%> in %<%E[%E]%>"),
4405 2, match),
4406 arg1, arg2, TREE_TYPE (arg1), TREE_TYPE (arg2));
4407 break;
4409 case REALPART_EXPR:
4410 case IMAGPART_EXPR:
4411 if (flag_diagnostics_show_caret)
4412 error_at (loc, op_error_string (G_("%qs"), 1, match),
4413 opname, TREE_TYPE (arg1));
4414 else
4415 error_at (loc, op_error_string (G_("%qs in %<%s %E%>"), 1, match),
4416 opname, opname, arg1, TREE_TYPE (arg1));
4417 break;
4419 default:
4420 if (arg2)
4421 if (flag_diagnostics_show_caret)
4422 error_at (loc, op_error_string (G_("%<operator%s%>"), 2, match),
4423 opname, TREE_TYPE (arg1), TREE_TYPE (arg2));
4424 else
4425 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E %s %E%>"),
4426 2, match),
4427 opname, arg1, opname, arg2,
4428 TREE_TYPE (arg1), TREE_TYPE (arg2));
4429 else
4430 if (flag_diagnostics_show_caret)
4431 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4432 opname, TREE_TYPE (arg1));
4433 else
4434 error_at (loc, op_error_string (G_("%<operator%s%> in %<%s%E%>"),
4435 1, match),
4436 opname, opname, arg1, TREE_TYPE (arg1));
4437 break;
4441 /* Return the implicit conversion sequence that could be used to
4442 convert E1 to E2 in [expr.cond]. */
4444 static conversion *
4445 conditional_conversion (tree e1, tree e2, tsubst_flags_t complain)
4447 tree t1 = non_reference (TREE_TYPE (e1));
4448 tree t2 = non_reference (TREE_TYPE (e2));
4449 conversion *conv;
4450 bool good_base;
4452 /* [expr.cond]
4454 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
4455 implicitly converted (clause _conv_) to the type "lvalue reference to
4456 T2", subject to the constraint that in the conversion the
4457 reference must bind directly (_dcl.init.ref_) to an lvalue.
4459 If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
4460 implicitly converted to the type "rvalue reference to T2", subject to
4461 the constraint that the reference must bind directly. */
4462 if (lvalue_or_rvalue_with_address_p (e2))
4464 tree rtype = cp_build_reference_type (t2, !real_lvalue_p (e2));
4465 conv = implicit_conversion (rtype,
4468 /*c_cast_p=*/false,
4469 LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND
4470 |LOOKUP_ONLYCONVERTING,
4471 complain);
4472 if (conv && !conv->bad_p)
4473 return conv;
4476 /* If E2 is a prvalue or if neither of the conversions above can be done
4477 and at least one of the operands has (possibly cv-qualified) class
4478 type: */
4479 if (!CLASS_TYPE_P (t1) && !CLASS_TYPE_P (t2))
4480 return NULL;
4482 /* [expr.cond]
4484 If E1 and E2 have class type, and the underlying class types are
4485 the same or one is a base class of the other: E1 can be converted
4486 to match E2 if the class of T2 is the same type as, or a base
4487 class of, the class of T1, and the cv-qualification of T2 is the
4488 same cv-qualification as, or a greater cv-qualification than, the
4489 cv-qualification of T1. If the conversion is applied, E1 is
4490 changed to an rvalue of type T2 that still refers to the original
4491 source class object (or the appropriate subobject thereof). */
4492 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
4493 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
4495 if (good_base && at_least_as_qualified_p (t2, t1))
4497 conv = build_identity_conv (t1, e1);
4498 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
4499 TYPE_MAIN_VARIANT (t2)))
4500 conv = build_conv (ck_base, t2, conv);
4501 else
4502 conv = build_conv (ck_rvalue, t2, conv);
4503 return conv;
4505 else
4506 return NULL;
4508 else
4509 /* [expr.cond]
4511 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
4512 converted to the type that expression E2 would have if E2 were
4513 converted to an rvalue (or the type it has, if E2 is an rvalue). */
4514 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
4515 LOOKUP_IMPLICIT, complain);
4518 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4519 arguments to the conditional expression. */
4521 static tree
4522 build_conditional_expr_1 (location_t loc, tree arg1, tree arg2, tree arg3,
4523 tsubst_flags_t complain)
4525 tree arg2_type;
4526 tree arg3_type;
4527 tree result = NULL_TREE;
4528 tree result_type = NULL_TREE;
4529 bool lvalue_p = true;
4530 struct z_candidate *candidates = 0;
4531 struct z_candidate *cand;
4532 void *p;
4533 tree orig_arg2, orig_arg3;
4535 /* As a G++ extension, the second argument to the conditional can be
4536 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
4537 c'.) If the second operand is omitted, make sure it is
4538 calculated only once. */
4539 if (!arg2)
4541 if (complain & tf_error)
4542 pedwarn (loc, OPT_Wpedantic,
4543 "ISO C++ forbids omitting the middle term of a ?: expression");
4545 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
4546 if (real_lvalue_p (arg1))
4547 arg2 = arg1 = stabilize_reference (arg1);
4548 else
4549 arg2 = arg1 = save_expr (arg1);
4552 /* If something has already gone wrong, just pass that fact up the
4553 tree. */
4554 if (error_operand_p (arg1)
4555 || error_operand_p (arg2)
4556 || error_operand_p (arg3))
4557 return error_mark_node;
4559 orig_arg2 = arg2;
4560 orig_arg3 = arg3;
4562 if (VECTOR_INTEGER_TYPE_P (TREE_TYPE (arg1)))
4564 arg1 = force_rvalue (arg1, complain);
4565 arg2 = force_rvalue (arg2, complain);
4566 arg3 = force_rvalue (arg3, complain);
4568 /* force_rvalue can return error_mark on valid arguments. */
4569 if (error_operand_p (arg1)
4570 || error_operand_p (arg2)
4571 || error_operand_p (arg3))
4572 return error_mark_node;
4574 tree arg1_type = TREE_TYPE (arg1);
4575 arg2_type = TREE_TYPE (arg2);
4576 arg3_type = TREE_TYPE (arg3);
4578 if (TREE_CODE (arg2_type) != VECTOR_TYPE
4579 && TREE_CODE (arg3_type) != VECTOR_TYPE)
4581 /* Rely on the error messages of the scalar version. */
4582 tree scal = build_conditional_expr_1 (loc, integer_one_node,
4583 orig_arg2, orig_arg3, complain);
4584 if (scal == error_mark_node)
4585 return error_mark_node;
4586 tree stype = TREE_TYPE (scal);
4587 tree ctype = TREE_TYPE (arg1_type);
4588 if (TYPE_SIZE (stype) != TYPE_SIZE (ctype)
4589 || (!INTEGRAL_TYPE_P (stype) && !SCALAR_FLOAT_TYPE_P (stype)))
4591 if (complain & tf_error)
4592 error_at (loc, "inferred scalar type %qT is not an integer or "
4593 "floating point type of the same size as %qT", stype,
4594 COMPARISON_CLASS_P (arg1)
4595 ? TREE_TYPE (TREE_TYPE (TREE_OPERAND (arg1, 0)))
4596 : ctype);
4597 return error_mark_node;
4600 tree vtype = build_opaque_vector_type (stype,
4601 TYPE_VECTOR_SUBPARTS (arg1_type));
4602 /* We could pass complain & tf_warning to unsafe_conversion_p,
4603 but the warnings (like Wsign-conversion) have already been
4604 given by the scalar build_conditional_expr_1. We still check
4605 unsafe_conversion_p to forbid truncating long long -> float. */
4606 if (unsafe_conversion_p (loc, stype, arg2, false))
4608 if (complain & tf_error)
4609 error_at (loc, "conversion of scalar %qT to vector %qT "
4610 "involves truncation", arg2_type, vtype);
4611 return error_mark_node;
4613 if (unsafe_conversion_p (loc, stype, arg3, false))
4615 if (complain & tf_error)
4616 error_at (loc, "conversion of scalar %qT to vector %qT "
4617 "involves truncation", arg3_type, vtype);
4618 return error_mark_node;
4621 arg2 = cp_convert (stype, arg2, complain);
4622 arg2 = save_expr (arg2);
4623 arg2 = build_vector_from_val (vtype, arg2);
4624 arg2_type = vtype;
4625 arg3 = cp_convert (stype, arg3, complain);
4626 arg3 = save_expr (arg3);
4627 arg3 = build_vector_from_val (vtype, arg3);
4628 arg3_type = vtype;
4631 if ((TREE_CODE (arg2_type) == VECTOR_TYPE)
4632 != (TREE_CODE (arg3_type) == VECTOR_TYPE))
4634 enum stv_conv convert_flag =
4635 scalar_to_vector (loc, VEC_COND_EXPR, arg2, arg3,
4636 complain & tf_error);
4638 switch (convert_flag)
4640 case stv_error:
4641 return error_mark_node;
4642 case stv_firstarg:
4644 arg2 = save_expr (arg2);
4645 arg2 = convert (TREE_TYPE (arg3_type), arg2);
4646 arg2 = build_vector_from_val (arg3_type, arg2);
4647 arg2_type = TREE_TYPE (arg2);
4648 break;
4650 case stv_secondarg:
4652 arg3 = save_expr (arg3);
4653 arg3 = convert (TREE_TYPE (arg2_type), arg3);
4654 arg3 = build_vector_from_val (arg2_type, arg3);
4655 arg3_type = TREE_TYPE (arg3);
4656 break;
4658 default:
4659 break;
4663 if (!same_type_p (arg2_type, arg3_type)
4664 || TYPE_VECTOR_SUBPARTS (arg1_type)
4665 != TYPE_VECTOR_SUBPARTS (arg2_type)
4666 || TYPE_SIZE (arg1_type) != TYPE_SIZE (arg2_type))
4668 if (complain & tf_error)
4669 error_at (loc,
4670 "incompatible vector types in conditional expression: "
4671 "%qT, %qT and %qT", TREE_TYPE (arg1),
4672 TREE_TYPE (orig_arg2), TREE_TYPE (orig_arg3));
4673 return error_mark_node;
4676 if (!COMPARISON_CLASS_P (arg1))
4677 arg1 = cp_build_binary_op (loc, NE_EXPR, arg1,
4678 build_zero_cst (arg1_type), complain);
4679 return fold_build3 (VEC_COND_EXPR, arg2_type, arg1, arg2, arg3);
4682 /* [expr.cond]
4684 The first expression is implicitly converted to bool (clause
4685 _conv_). */
4686 arg1 = perform_implicit_conversion_flags (boolean_type_node, arg1, complain,
4687 LOOKUP_NORMAL);
4688 if (error_operand_p (arg1))
4689 return error_mark_node;
4691 /* [expr.cond]
4693 If either the second or the third operand has type (possibly
4694 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
4695 array-to-pointer (_conv.array_), and function-to-pointer
4696 (_conv.func_) standard conversions are performed on the second
4697 and third operands. */
4698 arg2_type = unlowered_expr_type (arg2);
4699 arg3_type = unlowered_expr_type (arg3);
4700 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
4702 /* Do the conversions. We don't these for `void' type arguments
4703 since it can't have any effect and since decay_conversion
4704 does not handle that case gracefully. */
4705 if (!VOID_TYPE_P (arg2_type))
4706 arg2 = decay_conversion (arg2, complain);
4707 if (!VOID_TYPE_P (arg3_type))
4708 arg3 = decay_conversion (arg3, complain);
4709 arg2_type = TREE_TYPE (arg2);
4710 arg3_type = TREE_TYPE (arg3);
4712 /* [expr.cond]
4714 One of the following shall hold:
4716 --The second or the third operand (but not both) is a
4717 throw-expression (_except.throw_); the result is of the
4718 type of the other and is an rvalue.
4720 --Both the second and the third operands have type void; the
4721 result is of type void and is an rvalue.
4723 We must avoid calling force_rvalue for expressions of type
4724 "void" because it will complain that their value is being
4725 used. */
4726 if (TREE_CODE (arg2) == THROW_EXPR
4727 && TREE_CODE (arg3) != THROW_EXPR)
4729 if (!VOID_TYPE_P (arg3_type))
4731 arg3 = force_rvalue (arg3, complain);
4732 if (arg3 == error_mark_node)
4733 return error_mark_node;
4735 arg3_type = TREE_TYPE (arg3);
4736 result_type = arg3_type;
4738 else if (TREE_CODE (arg2) != THROW_EXPR
4739 && TREE_CODE (arg3) == THROW_EXPR)
4741 if (!VOID_TYPE_P (arg2_type))
4743 arg2 = force_rvalue (arg2, complain);
4744 if (arg2 == error_mark_node)
4745 return error_mark_node;
4747 arg2_type = TREE_TYPE (arg2);
4748 result_type = arg2_type;
4750 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
4751 result_type = void_type_node;
4752 else
4754 if (complain & tf_error)
4756 if (VOID_TYPE_P (arg2_type))
4757 error_at (EXPR_LOC_OR_LOC (arg3, loc),
4758 "second operand to the conditional operator "
4759 "is of type %<void%>, but the third operand is "
4760 "neither a throw-expression nor of type %<void%>");
4761 else
4762 error_at (EXPR_LOC_OR_LOC (arg2, loc),
4763 "third operand to the conditional operator "
4764 "is of type %<void%>, but the second operand is "
4765 "neither a throw-expression nor of type %<void%>");
4767 return error_mark_node;
4770 lvalue_p = false;
4771 goto valid_operands;
4773 /* [expr.cond]
4775 Otherwise, if the second and third operand have different types,
4776 and either has (possibly cv-qualified) class type, or if both are
4777 glvalues of the same value category and the same type except for
4778 cv-qualification, an attempt is made to convert each of those operands
4779 to the type of the other. */
4780 else if (!same_type_p (arg2_type, arg3_type)
4781 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)
4782 || (same_type_ignoring_top_level_qualifiers_p (arg2_type,
4783 arg3_type)
4784 && lvalue_or_rvalue_with_address_p (arg2)
4785 && lvalue_or_rvalue_with_address_p (arg3)
4786 && real_lvalue_p (arg2) == real_lvalue_p (arg3))))
4788 conversion *conv2;
4789 conversion *conv3;
4790 bool converted = false;
4792 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4793 p = conversion_obstack_alloc (0);
4795 conv2 = conditional_conversion (arg2, arg3, complain);
4796 conv3 = conditional_conversion (arg3, arg2, complain);
4798 /* [expr.cond]
4800 If both can be converted, or one can be converted but the
4801 conversion is ambiguous, the program is ill-formed. If
4802 neither can be converted, the operands are left unchanged and
4803 further checking is performed as described below. If exactly
4804 one conversion is possible, that conversion is applied to the
4805 chosen operand and the converted operand is used in place of
4806 the original operand for the remainder of this section. */
4807 if ((conv2 && !conv2->bad_p
4808 && conv3 && !conv3->bad_p)
4809 || (conv2 && conv2->kind == ck_ambig)
4810 || (conv3 && conv3->kind == ck_ambig))
4812 if (complain & tf_error)
4814 error_at (loc, "operands to ?: have different types %qT and %qT",
4815 arg2_type, arg3_type);
4816 if (conv2 && !conv2->bad_p && conv3 && !conv3->bad_p)
4817 inform (loc, " and each type can be converted to the other");
4818 else if (conv2 && conv2->kind == ck_ambig)
4819 convert_like (conv2, arg2, complain);
4820 else
4821 convert_like (conv3, arg3, complain);
4823 result = error_mark_node;
4825 else if (conv2 && !conv2->bad_p)
4827 arg2 = convert_like (conv2, arg2, complain);
4828 arg2 = convert_from_reference (arg2);
4829 arg2_type = TREE_TYPE (arg2);
4830 /* Even if CONV2 is a valid conversion, the result of the
4831 conversion may be invalid. For example, if ARG3 has type
4832 "volatile X", and X does not have a copy constructor
4833 accepting a "volatile X&", then even if ARG2 can be
4834 converted to X, the conversion will fail. */
4835 if (error_operand_p (arg2))
4836 result = error_mark_node;
4837 converted = true;
4839 else if (conv3 && !conv3->bad_p)
4841 arg3 = convert_like (conv3, arg3, complain);
4842 arg3 = convert_from_reference (arg3);
4843 arg3_type = TREE_TYPE (arg3);
4844 if (error_operand_p (arg3))
4845 result = error_mark_node;
4846 converted = true;
4849 /* Free all the conversions we allocated. */
4850 obstack_free (&conversion_obstack, p);
4852 if (result)
4853 return result;
4855 /* If, after the conversion, both operands have class type,
4856 treat the cv-qualification of both operands as if it were the
4857 union of the cv-qualification of the operands.
4859 The standard is not clear about what to do in this
4860 circumstance. For example, if the first operand has type
4861 "const X" and the second operand has a user-defined
4862 conversion to "volatile X", what is the type of the second
4863 operand after this step? Making it be "const X" (matching
4864 the first operand) seems wrong, as that discards the
4865 qualification without actually performing a copy. Leaving it
4866 as "volatile X" seems wrong as that will result in the
4867 conditional expression failing altogether, even though,
4868 according to this step, the one operand could be converted to
4869 the type of the other. */
4870 if (converted
4871 && CLASS_TYPE_P (arg2_type)
4872 && cp_type_quals (arg2_type) != cp_type_quals (arg3_type))
4873 arg2_type = arg3_type =
4874 cp_build_qualified_type (arg2_type,
4875 cp_type_quals (arg2_type)
4876 | cp_type_quals (arg3_type));
4879 /* [expr.cond]
4881 If the second and third operands are glvalues of the same value
4882 category and have the same type, the result is of that type and
4883 value category. */
4884 if (((real_lvalue_p (arg2) && real_lvalue_p (arg3))
4885 || (xvalue_p (arg2) && xvalue_p (arg3)))
4886 && same_type_p (arg2_type, arg3_type))
4888 result_type = arg2_type;
4889 arg2 = mark_lvalue_use (arg2);
4890 arg3 = mark_lvalue_use (arg3);
4891 goto valid_operands;
4894 /* [expr.cond]
4896 Otherwise, the result is an rvalue. If the second and third
4897 operand do not have the same type, and either has (possibly
4898 cv-qualified) class type, overload resolution is used to
4899 determine the conversions (if any) to be applied to the operands
4900 (_over.match.oper_, _over.built_). */
4901 lvalue_p = false;
4902 if (!same_type_p (arg2_type, arg3_type)
4903 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4905 tree args[3];
4906 conversion *conv;
4907 bool any_viable_p;
4909 /* Rearrange the arguments so that add_builtin_candidate only has
4910 to know about two args. In build_builtin_candidate, the
4911 arguments are unscrambled. */
4912 args[0] = arg2;
4913 args[1] = arg3;
4914 args[2] = arg1;
4915 add_builtin_candidates (&candidates,
4916 COND_EXPR,
4917 NOP_EXPR,
4918 ansi_opname (COND_EXPR),
4919 args,
4920 LOOKUP_NORMAL, complain);
4922 /* [expr.cond]
4924 If the overload resolution fails, the program is
4925 ill-formed. */
4926 candidates = splice_viable (candidates, false, &any_viable_p);
4927 if (!any_viable_p)
4929 if (complain & tf_error)
4930 error_at (loc, "operands to ?: have different types %qT and %qT",
4931 arg2_type, arg3_type);
4932 return error_mark_node;
4934 cand = tourney (candidates, complain);
4935 if (!cand)
4937 if (complain & tf_error)
4939 op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
4940 print_z_candidates (loc, candidates);
4942 return error_mark_node;
4945 /* [expr.cond]
4947 Otherwise, the conversions thus determined are applied, and
4948 the converted operands are used in place of the original
4949 operands for the remainder of this section. */
4950 conv = cand->convs[0];
4951 arg1 = convert_like (conv, arg1, complain);
4952 conv = cand->convs[1];
4953 arg2 = convert_like (conv, arg2, complain);
4954 arg2_type = TREE_TYPE (arg2);
4955 conv = cand->convs[2];
4956 arg3 = convert_like (conv, arg3, complain);
4957 arg3_type = TREE_TYPE (arg3);
4960 /* [expr.cond]
4962 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
4963 and function-to-pointer (_conv.func_) standard conversions are
4964 performed on the second and third operands.
4966 We need to force the lvalue-to-rvalue conversion here for class types,
4967 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
4968 that isn't wrapped with a TARGET_EXPR plays havoc with exception
4969 regions. */
4971 arg2 = force_rvalue (arg2, complain);
4972 if (!CLASS_TYPE_P (arg2_type))
4973 arg2_type = TREE_TYPE (arg2);
4975 arg3 = force_rvalue (arg3, complain);
4976 if (!CLASS_TYPE_P (arg3_type))
4977 arg3_type = TREE_TYPE (arg3);
4979 if (arg2 == error_mark_node || arg3 == error_mark_node)
4980 return error_mark_node;
4982 /* [expr.cond]
4984 After those conversions, one of the following shall hold:
4986 --The second and third operands have the same type; the result is of
4987 that type. */
4988 if (same_type_p (arg2_type, arg3_type))
4989 result_type = arg2_type;
4990 /* [expr.cond]
4992 --The second and third operands have arithmetic or enumeration
4993 type; the usual arithmetic conversions are performed to bring
4994 them to a common type, and the result is of that type. */
4995 else if ((ARITHMETIC_TYPE_P (arg2_type)
4996 || UNSCOPED_ENUM_P (arg2_type))
4997 && (ARITHMETIC_TYPE_P (arg3_type)
4998 || UNSCOPED_ENUM_P (arg3_type)))
5000 /* In this case, there is always a common type. */
5001 result_type = type_after_usual_arithmetic_conversions (arg2_type,
5002 arg3_type);
5003 if (complain & tf_warning)
5004 do_warn_double_promotion (result_type, arg2_type, arg3_type,
5005 "implicit conversion from %qT to %qT to "
5006 "match other result of conditional",
5007 loc);
5009 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
5010 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
5012 if (TREE_CODE (orig_arg2) == CONST_DECL
5013 && TREE_CODE (orig_arg3) == CONST_DECL
5014 && DECL_CONTEXT (orig_arg2) == DECL_CONTEXT (orig_arg3))
5015 /* Two enumerators from the same enumeration can have different
5016 types when the enumeration is still being defined. */;
5017 else if (complain & tf_warning)
5018 warning_at (loc, OPT_Wenum_compare, "enumeral mismatch in "
5019 "conditional expression: %qT vs %qT",
5020 arg2_type, arg3_type);
5022 else if (extra_warnings
5023 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
5024 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
5025 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
5026 && !same_type_p (arg2_type,
5027 type_promotes_to (arg3_type)))))
5029 if (complain & tf_warning)
5030 warning_at (loc, OPT_Wextra, "enumeral and non-enumeral type in "
5031 "conditional expression");
5034 arg2 = perform_implicit_conversion (result_type, arg2, complain);
5035 arg3 = perform_implicit_conversion (result_type, arg3, complain);
5037 /* [expr.cond]
5039 --The second and third operands have pointer type, or one has
5040 pointer type and the other is a null pointer constant; pointer
5041 conversions (_conv.ptr_) and qualification conversions
5042 (_conv.qual_) are performed to bring them to their composite
5043 pointer type (_expr.rel_). The result is of the composite
5044 pointer type.
5046 --The second and third operands have pointer to member type, or
5047 one has pointer to member type and the other is a null pointer
5048 constant; pointer to member conversions (_conv.mem_) and
5049 qualification conversions (_conv.qual_) are performed to bring
5050 them to a common type, whose cv-qualification shall match the
5051 cv-qualification of either the second or the third operand.
5052 The result is of the common type. */
5053 else if ((null_ptr_cst_p (arg2)
5054 && TYPE_PTR_OR_PTRMEM_P (arg3_type))
5055 || (null_ptr_cst_p (arg3)
5056 && TYPE_PTR_OR_PTRMEM_P (arg2_type))
5057 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
5058 || (TYPE_PTRDATAMEM_P (arg2_type) && TYPE_PTRDATAMEM_P (arg3_type))
5059 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
5061 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
5062 arg3, CPO_CONDITIONAL_EXPR,
5063 complain);
5064 if (result_type == error_mark_node)
5065 return error_mark_node;
5066 arg2 = perform_implicit_conversion (result_type, arg2, complain);
5067 arg3 = perform_implicit_conversion (result_type, arg3, complain);
5070 if (!result_type)
5072 if (complain & tf_error)
5073 error_at (loc, "operands to ?: have different types %qT and %qT",
5074 arg2_type, arg3_type);
5075 return error_mark_node;
5078 if (arg2 == error_mark_node || arg3 == error_mark_node)
5079 return error_mark_node;
5081 valid_operands:
5082 result = build3 (COND_EXPR, result_type, arg1, arg2, arg3);
5083 if (!cp_unevaluated_operand)
5084 /* Avoid folding within decltype (c++/42013) and noexcept. */
5085 result = fold_if_not_in_template (result);
5087 /* We can't use result_type below, as fold might have returned a
5088 throw_expr. */
5090 if (!lvalue_p)
5092 /* Expand both sides into the same slot, hopefully the target of
5093 the ?: expression. We used to check for TARGET_EXPRs here,
5094 but now we sometimes wrap them in NOP_EXPRs so the test would
5095 fail. */
5096 if (CLASS_TYPE_P (TREE_TYPE (result)))
5097 result = get_target_expr_sfinae (result, complain);
5098 /* If this expression is an rvalue, but might be mistaken for an
5099 lvalue, we must add a NON_LVALUE_EXPR. */
5100 result = rvalue (result);
5102 else
5103 result = force_paren_expr (result);
5105 return result;
5108 /* Wrapper for above. */
5110 tree
5111 build_conditional_expr (location_t loc, tree arg1, tree arg2, tree arg3,
5112 tsubst_flags_t complain)
5114 tree ret;
5115 bool subtime = timevar_cond_start (TV_OVERLOAD);
5116 ret = build_conditional_expr_1 (loc, arg1, arg2, arg3, complain);
5117 timevar_cond_stop (TV_OVERLOAD, subtime);
5118 return ret;
5121 /* OPERAND is an operand to an expression. Perform necessary steps
5122 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
5123 returned. */
5125 static tree
5126 prep_operand (tree operand)
5128 if (operand)
5130 if (CLASS_TYPE_P (TREE_TYPE (operand))
5131 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
5132 /* Make sure the template type is instantiated now. */
5133 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
5136 return operand;
5139 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
5140 OVERLOAD) to the CANDIDATES, returning an updated list of
5141 CANDIDATES. The ARGS are the arguments provided to the call;
5142 if FIRST_ARG is non-null it is the implicit object argument,
5143 otherwise the first element of ARGS is used if needed. The
5144 EXPLICIT_TARGS are explicit template arguments provided.
5145 TEMPLATE_ONLY is true if only template functions should be
5146 considered. CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
5147 add_function_candidate. */
5149 static void
5150 add_candidates (tree fns, tree first_arg, const vec<tree, va_gc> *args,
5151 tree return_type,
5152 tree explicit_targs, bool template_only,
5153 tree conversion_path, tree access_path,
5154 int flags,
5155 struct z_candidate **candidates,
5156 tsubst_flags_t complain)
5158 tree ctype;
5159 const vec<tree, va_gc> *non_static_args;
5160 bool check_list_ctor;
5161 bool check_converting;
5162 unification_kind_t strict;
5163 tree fn;
5165 if (!fns)
5166 return;
5168 /* Precalculate special handling of constructors and conversion ops. */
5169 fn = OVL_CURRENT (fns);
5170 if (DECL_CONV_FN_P (fn))
5172 check_list_ctor = false;
5173 check_converting = !!(flags & LOOKUP_ONLYCONVERTING);
5174 if (flags & LOOKUP_NO_CONVERSION)
5175 /* We're doing return_type(x). */
5176 strict = DEDUCE_CONV;
5177 else
5178 /* We're doing x.operator return_type(). */
5179 strict = DEDUCE_EXACT;
5180 /* [over.match.funcs] For conversion functions, the function
5181 is considered to be a member of the class of the implicit
5182 object argument for the purpose of defining the type of
5183 the implicit object parameter. */
5184 ctype = TYPE_MAIN_VARIANT (TREE_TYPE (first_arg));
5186 else
5188 if (DECL_CONSTRUCTOR_P (fn))
5190 check_list_ctor = !!(flags & LOOKUP_LIST_ONLY);
5191 /* For list-initialization we consider explicit constructors
5192 and complain if one is chosen. */
5193 check_converting
5194 = ((flags & (LOOKUP_ONLYCONVERTING|LOOKUP_LIST_INIT_CTOR))
5195 == LOOKUP_ONLYCONVERTING);
5197 else
5199 check_list_ctor = false;
5200 check_converting = false;
5202 strict = DEDUCE_CALL;
5203 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
5206 if (first_arg)
5207 non_static_args = args;
5208 else
5209 /* Delay creating the implicit this parameter until it is needed. */
5210 non_static_args = NULL;
5212 for (; fns; fns = OVL_NEXT (fns))
5214 tree fn_first_arg;
5215 const vec<tree, va_gc> *fn_args;
5217 fn = OVL_CURRENT (fns);
5219 if (check_converting && DECL_NONCONVERTING_P (fn))
5220 continue;
5221 if (check_list_ctor && !is_list_ctor (fn))
5222 continue;
5224 /* Figure out which set of arguments to use. */
5225 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
5227 /* If this function is a non-static member and we didn't get an
5228 implicit object argument, move it out of args. */
5229 if (first_arg == NULL_TREE)
5231 unsigned int ix;
5232 tree arg;
5233 vec<tree, va_gc> *tempvec;
5234 vec_alloc (tempvec, args->length () - 1);
5235 for (ix = 1; args->iterate (ix, &arg); ++ix)
5236 tempvec->quick_push (arg);
5237 non_static_args = tempvec;
5238 first_arg = (*args)[0];
5241 fn_first_arg = first_arg;
5242 fn_args = non_static_args;
5244 else
5246 /* Otherwise, just use the list of arguments provided. */
5247 fn_first_arg = NULL_TREE;
5248 fn_args = args;
5251 if (TREE_CODE (fn) == TEMPLATE_DECL)
5252 add_template_candidate (candidates,
5254 ctype,
5255 explicit_targs,
5256 fn_first_arg,
5257 fn_args,
5258 return_type,
5259 access_path,
5260 conversion_path,
5261 flags,
5262 strict,
5263 complain);
5264 else if (!template_only)
5265 add_function_candidate (candidates,
5267 ctype,
5268 fn_first_arg,
5269 fn_args,
5270 access_path,
5271 conversion_path,
5272 flags,
5273 complain);
5277 static tree
5278 build_new_op_1 (location_t loc, enum tree_code code, int flags, tree arg1,
5279 tree arg2, tree arg3, tree *overload, tsubst_flags_t complain)
5281 struct z_candidate *candidates = 0, *cand;
5282 vec<tree, va_gc> *arglist;
5283 tree fnname;
5284 tree args[3];
5285 tree result = NULL_TREE;
5286 bool result_valid_p = false;
5287 enum tree_code code2 = NOP_EXPR;
5288 enum tree_code code_orig_arg1 = ERROR_MARK;
5289 enum tree_code code_orig_arg2 = ERROR_MARK;
5290 conversion *conv;
5291 void *p;
5292 bool strict_p;
5293 bool any_viable_p;
5295 if (error_operand_p (arg1)
5296 || error_operand_p (arg2)
5297 || error_operand_p (arg3))
5298 return error_mark_node;
5300 if (code == MODIFY_EXPR)
5302 code2 = TREE_CODE (arg3);
5303 arg3 = NULL_TREE;
5304 fnname = ansi_assopname (code2);
5306 else
5307 fnname = ansi_opname (code);
5309 arg1 = prep_operand (arg1);
5311 bool memonly = false;
5312 switch (code)
5314 case NEW_EXPR:
5315 case VEC_NEW_EXPR:
5316 case VEC_DELETE_EXPR:
5317 case DELETE_EXPR:
5318 /* Use build_op_new_call and build_op_delete_call instead. */
5319 gcc_unreachable ();
5321 case CALL_EXPR:
5322 /* Use build_op_call instead. */
5323 gcc_unreachable ();
5325 case TRUTH_ORIF_EXPR:
5326 case TRUTH_ANDIF_EXPR:
5327 case TRUTH_AND_EXPR:
5328 case TRUTH_OR_EXPR:
5329 /* These are saved for the sake of warn_logical_operator. */
5330 code_orig_arg1 = TREE_CODE (arg1);
5331 code_orig_arg2 = TREE_CODE (arg2);
5332 break;
5333 case GT_EXPR:
5334 case LT_EXPR:
5335 case GE_EXPR:
5336 case LE_EXPR:
5337 case EQ_EXPR:
5338 case NE_EXPR:
5339 /* These are saved for the sake of maybe_warn_bool_compare. */
5340 code_orig_arg1 = TREE_CODE (TREE_TYPE (arg1));
5341 code_orig_arg2 = TREE_CODE (TREE_TYPE (arg2));
5342 break;
5344 /* =, ->, [], () must be non-static member functions. */
5345 case MODIFY_EXPR:
5346 if (code2 != NOP_EXPR)
5347 break;
5348 case COMPONENT_REF:
5349 case ARRAY_REF:
5350 memonly = true;
5351 break;
5353 default:
5354 break;
5357 arg2 = prep_operand (arg2);
5358 arg3 = prep_operand (arg3);
5360 if (code == COND_EXPR)
5361 /* Use build_conditional_expr instead. */
5362 gcc_unreachable ();
5363 else if (! OVERLOAD_TYPE_P (TREE_TYPE (arg1))
5364 && (! arg2 || ! OVERLOAD_TYPE_P (TREE_TYPE (arg2))))
5365 goto builtin;
5367 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
5368 arg2 = integer_zero_node;
5370 vec_alloc (arglist, 3);
5371 arglist->quick_push (arg1);
5372 if (arg2 != NULL_TREE)
5373 arglist->quick_push (arg2);
5374 if (arg3 != NULL_TREE)
5375 arglist->quick_push (arg3);
5377 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5378 p = conversion_obstack_alloc (0);
5380 /* Add namespace-scope operators to the list of functions to
5381 consider. */
5382 if (!memonly)
5383 add_candidates (lookup_function_nonclass (fnname, arglist,
5384 /*block_p=*/true),
5385 NULL_TREE, arglist, NULL_TREE,
5386 NULL_TREE, false, NULL_TREE, NULL_TREE,
5387 flags, &candidates, complain);
5389 args[0] = arg1;
5390 args[1] = arg2;
5391 args[2] = NULL_TREE;
5393 /* Add class-member operators to the candidate set. */
5394 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
5396 tree fns;
5398 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
5399 if (fns == error_mark_node)
5401 result = error_mark_node;
5402 goto user_defined_result_ready;
5404 if (fns)
5405 add_candidates (BASELINK_FUNCTIONS (fns),
5406 NULL_TREE, arglist, NULL_TREE,
5407 NULL_TREE, false,
5408 BASELINK_BINFO (fns),
5409 BASELINK_ACCESS_BINFO (fns),
5410 flags, &candidates, complain);
5412 /* Per 13.3.1.2/3, 2nd bullet, if no operand has a class type, then
5413 only non-member functions that have type T1 or reference to
5414 cv-qualified-opt T1 for the first argument, if the first argument
5415 has an enumeration type, or T2 or reference to cv-qualified-opt
5416 T2 for the second argument, if the the second argument has an
5417 enumeration type. Filter out those that don't match. */
5418 else if (! arg2 || ! CLASS_TYPE_P (TREE_TYPE (arg2)))
5420 struct z_candidate **candp, **next;
5422 for (candp = &candidates; *candp; candp = next)
5424 tree parmlist, parmtype;
5425 int i, nargs = (arg2 ? 2 : 1);
5427 cand = *candp;
5428 next = &cand->next;
5430 parmlist = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
5432 for (i = 0; i < nargs; ++i)
5434 parmtype = TREE_VALUE (parmlist);
5436 if (TREE_CODE (parmtype) == REFERENCE_TYPE)
5437 parmtype = TREE_TYPE (parmtype);
5438 if (TREE_CODE (TREE_TYPE (args[i])) == ENUMERAL_TYPE
5439 && (same_type_ignoring_top_level_qualifiers_p
5440 (TREE_TYPE (args[i]), parmtype)))
5441 break;
5443 parmlist = TREE_CHAIN (parmlist);
5446 /* No argument has an appropriate type, so remove this
5447 candidate function from the list. */
5448 if (i == nargs)
5450 *candp = cand->next;
5451 next = candp;
5456 add_builtin_candidates (&candidates, code, code2, fnname, args,
5457 flags, complain);
5459 switch (code)
5461 case COMPOUND_EXPR:
5462 case ADDR_EXPR:
5463 /* For these, the built-in candidates set is empty
5464 [over.match.oper]/3. We don't want non-strict matches
5465 because exact matches are always possible with built-in
5466 operators. The built-in candidate set for COMPONENT_REF
5467 would be empty too, but since there are no such built-in
5468 operators, we accept non-strict matches for them. */
5469 strict_p = true;
5470 break;
5472 default:
5473 strict_p = false;
5474 break;
5477 candidates = splice_viable (candidates, strict_p, &any_viable_p);
5478 if (!any_viable_p)
5480 switch (code)
5482 case POSTINCREMENT_EXPR:
5483 case POSTDECREMENT_EXPR:
5484 /* Don't try anything fancy if we're not allowed to produce
5485 errors. */
5486 if (!(complain & tf_error))
5487 return error_mark_node;
5489 /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
5490 distinguish between prefix and postfix ++ and
5491 operator++() was used for both, so we allow this with
5492 -fpermissive. */
5493 else
5495 const char *msg = (flag_permissive)
5496 ? G_("no %<%D(int)%> declared for postfix %qs,"
5497 " trying prefix operator instead")
5498 : G_("no %<%D(int)%> declared for postfix %qs");
5499 permerror (loc, msg, fnname, operator_name_info[code].name);
5502 if (!flag_permissive)
5503 return error_mark_node;
5505 if (code == POSTINCREMENT_EXPR)
5506 code = PREINCREMENT_EXPR;
5507 else
5508 code = PREDECREMENT_EXPR;
5509 result = build_new_op_1 (loc, code, flags, arg1, NULL_TREE,
5510 NULL_TREE, overload, complain);
5511 break;
5513 /* The caller will deal with these. */
5514 case ADDR_EXPR:
5515 case COMPOUND_EXPR:
5516 case COMPONENT_REF:
5517 result = NULL_TREE;
5518 result_valid_p = true;
5519 break;
5521 default:
5522 if (complain & tf_error)
5524 /* If one of the arguments of the operator represents
5525 an invalid use of member function pointer, try to report
5526 a meaningful error ... */
5527 if (invalid_nonstatic_memfn_p (arg1, tf_error)
5528 || invalid_nonstatic_memfn_p (arg2, tf_error)
5529 || invalid_nonstatic_memfn_p (arg3, tf_error))
5530 /* We displayed the error message. */;
5531 else
5533 /* ... Otherwise, report the more generic
5534 "no matching operator found" error */
5535 op_error (loc, code, code2, arg1, arg2, arg3, FALSE);
5536 print_z_candidates (loc, candidates);
5539 result = error_mark_node;
5540 break;
5543 else
5545 cand = tourney (candidates, complain);
5546 if (cand == 0)
5548 if (complain & tf_error)
5550 op_error (loc, code, code2, arg1, arg2, arg3, TRUE);
5551 print_z_candidates (loc, candidates);
5553 result = error_mark_node;
5555 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
5557 if (overload)
5558 *overload = cand->fn;
5560 if (resolve_args (arglist, complain) == NULL)
5561 result = error_mark_node;
5562 else
5563 result = build_over_call (cand, LOOKUP_NORMAL, complain);
5565 else
5567 /* Give any warnings we noticed during overload resolution. */
5568 if (cand->warnings && (complain & tf_warning))
5570 struct candidate_warning *w;
5571 for (w = cand->warnings; w; w = w->next)
5572 joust (cand, w->loser, 1, complain);
5575 /* Check for comparison of different enum types. */
5576 switch (code)
5578 case GT_EXPR:
5579 case LT_EXPR:
5580 case GE_EXPR:
5581 case LE_EXPR:
5582 case EQ_EXPR:
5583 case NE_EXPR:
5584 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
5585 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
5586 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
5587 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2)))
5588 && (complain & tf_warning))
5590 warning (OPT_Wenum_compare,
5591 "comparison between %q#T and %q#T",
5592 TREE_TYPE (arg1), TREE_TYPE (arg2));
5594 break;
5595 default:
5596 break;
5599 /* We need to strip any leading REF_BIND so that bitfields
5600 don't cause errors. This should not remove any important
5601 conversions, because builtins don't apply to class
5602 objects directly. */
5603 conv = cand->convs[0];
5604 if (conv->kind == ck_ref_bind)
5605 conv = next_conversion (conv);
5606 arg1 = convert_like (conv, arg1, complain);
5608 if (arg2)
5610 conv = cand->convs[1];
5611 if (conv->kind == ck_ref_bind)
5612 conv = next_conversion (conv);
5613 else
5614 arg2 = decay_conversion (arg2, complain);
5616 /* We need to call warn_logical_operator before
5617 converting arg2 to a boolean_type, but after
5618 decaying an enumerator to its value. */
5619 if (complain & tf_warning)
5620 warn_logical_operator (loc, code, boolean_type_node,
5621 code_orig_arg1, arg1,
5622 code_orig_arg2, arg2);
5624 arg2 = convert_like (conv, arg2, complain);
5626 if (arg3)
5628 conv = cand->convs[2];
5629 if (conv->kind == ck_ref_bind)
5630 conv = next_conversion (conv);
5631 arg3 = convert_like (conv, arg3, complain);
5637 user_defined_result_ready:
5639 /* Free all the conversions we allocated. */
5640 obstack_free (&conversion_obstack, p);
5642 if (result || result_valid_p)
5643 return result;
5645 builtin:
5646 switch (code)
5648 case MODIFY_EXPR:
5649 return cp_build_modify_expr (arg1, code2, arg2, complain);
5651 case INDIRECT_REF:
5652 return cp_build_indirect_ref (arg1, RO_UNARY_STAR, complain);
5654 case TRUTH_ANDIF_EXPR:
5655 case TRUTH_ORIF_EXPR:
5656 case TRUTH_AND_EXPR:
5657 case TRUTH_OR_EXPR:
5658 warn_logical_operator (loc, code, boolean_type_node,
5659 code_orig_arg1, arg1, code_orig_arg2, arg2);
5660 /* Fall through. */
5661 case GT_EXPR:
5662 case LT_EXPR:
5663 case GE_EXPR:
5664 case LE_EXPR:
5665 case EQ_EXPR:
5666 case NE_EXPR:
5667 if ((code_orig_arg1 == BOOLEAN_TYPE)
5668 ^ (code_orig_arg2 == BOOLEAN_TYPE))
5669 maybe_warn_bool_compare (loc, code, arg1, arg2);
5670 /* Fall through. */
5671 case PLUS_EXPR:
5672 case MINUS_EXPR:
5673 case MULT_EXPR:
5674 case TRUNC_DIV_EXPR:
5675 case MAX_EXPR:
5676 case MIN_EXPR:
5677 case LSHIFT_EXPR:
5678 case RSHIFT_EXPR:
5679 case TRUNC_MOD_EXPR:
5680 case BIT_AND_EXPR:
5681 case BIT_IOR_EXPR:
5682 case BIT_XOR_EXPR:
5683 return cp_build_binary_op (loc, code, arg1, arg2, complain);
5685 case UNARY_PLUS_EXPR:
5686 case NEGATE_EXPR:
5687 case BIT_NOT_EXPR:
5688 case TRUTH_NOT_EXPR:
5689 case PREINCREMENT_EXPR:
5690 case POSTINCREMENT_EXPR:
5691 case PREDECREMENT_EXPR:
5692 case POSTDECREMENT_EXPR:
5693 case REALPART_EXPR:
5694 case IMAGPART_EXPR:
5695 case ABS_EXPR:
5696 return cp_build_unary_op (code, arg1, candidates != 0, complain);
5698 case ARRAY_REF:
5699 return cp_build_array_ref (input_location, arg1, arg2, complain);
5701 case MEMBER_REF:
5702 return build_m_component_ref (cp_build_indirect_ref (arg1, RO_ARROW_STAR,
5703 complain),
5704 arg2, complain);
5706 /* The caller will deal with these. */
5707 case ADDR_EXPR:
5708 case COMPONENT_REF:
5709 case COMPOUND_EXPR:
5710 return NULL_TREE;
5712 default:
5713 gcc_unreachable ();
5715 return NULL_TREE;
5718 /* Wrapper for above. */
5720 tree
5721 build_new_op (location_t loc, enum tree_code code, int flags,
5722 tree arg1, tree arg2, tree arg3,
5723 tree *overload, tsubst_flags_t complain)
5725 tree ret;
5726 bool subtime = timevar_cond_start (TV_OVERLOAD);
5727 ret = build_new_op_1 (loc, code, flags, arg1, arg2, arg3,
5728 overload, complain);
5729 timevar_cond_stop (TV_OVERLOAD, subtime);
5730 return ret;
5733 /* Returns true iff T, an element of an OVERLOAD chain, is a usual
5734 deallocation function (3.7.4.2 [basic.stc.dynamic.deallocation]). */
5736 bool
5737 non_placement_deallocation_fn_p (tree t)
5739 /* A template instance is never a usual deallocation function,
5740 regardless of its signature. */
5741 if (TREE_CODE (t) == TEMPLATE_DECL
5742 || primary_template_instantiation_p (t))
5743 return false;
5745 /* If a class T has a member deallocation function named operator delete
5746 with exactly one parameter, then that function is a usual
5747 (non-placement) deallocation function. If class T does not declare
5748 such an operator delete but does declare a member deallocation
5749 function named operator delete with exactly two parameters, the second
5750 of which has type std::size_t (18.2), then this function is a usual
5751 deallocation function. */
5752 bool global = DECL_NAMESPACE_SCOPE_P (t);
5753 t = FUNCTION_ARG_CHAIN (t);
5754 if (t == void_list_node
5755 || (t && same_type_p (TREE_VALUE (t), size_type_node)
5756 && (!global || flag_sized_deallocation)
5757 && TREE_CHAIN (t) == void_list_node))
5758 return true;
5759 return false;
5762 /* Build a call to operator delete. This has to be handled very specially,
5763 because the restrictions on what signatures match are different from all
5764 other call instances. For a normal delete, only a delete taking (void *)
5765 or (void *, size_t) is accepted. For a placement delete, only an exact
5766 match with the placement new is accepted.
5768 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
5769 ADDR is the pointer to be deleted.
5770 SIZE is the size of the memory block to be deleted.
5771 GLOBAL_P is true if the delete-expression should not consider
5772 class-specific delete operators.
5773 PLACEMENT is the corresponding placement new call, or NULL_TREE.
5775 If this call to "operator delete" is being generated as part to
5776 deallocate memory allocated via a new-expression (as per [expr.new]
5777 which requires that if the initialization throws an exception then
5778 we call a deallocation function), then ALLOC_FN is the allocation
5779 function. */
5781 tree
5782 build_op_delete_call (enum tree_code code, tree addr, tree size,
5783 bool global_p, tree placement,
5784 tree alloc_fn, tsubst_flags_t complain)
5786 tree fn = NULL_TREE;
5787 tree fns, fnname, type, t;
5789 if (addr == error_mark_node)
5790 return error_mark_node;
5792 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
5794 fnname = ansi_opname (code);
5796 if (CLASS_TYPE_P (type)
5797 && COMPLETE_TYPE_P (complete_type (type))
5798 && !global_p)
5799 /* In [class.free]
5801 If the result of the lookup is ambiguous or inaccessible, or if
5802 the lookup selects a placement deallocation function, the
5803 program is ill-formed.
5805 Therefore, we ask lookup_fnfields to complain about ambiguity. */
5807 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
5808 if (fns == error_mark_node)
5809 return error_mark_node;
5811 else
5812 fns = NULL_TREE;
5814 if (fns == NULL_TREE)
5815 fns = lookup_name_nonclass (fnname);
5817 /* Strip const and volatile from addr. */
5818 addr = cp_convert (ptr_type_node, addr, complain);
5820 if (placement)
5822 /* "A declaration of a placement deallocation function matches the
5823 declaration of a placement allocation function if it has the same
5824 number of parameters and, after parameter transformations (8.3.5),
5825 all parameter types except the first are identical."
5827 So we build up the function type we want and ask instantiate_type
5828 to get it for us. */
5829 t = FUNCTION_ARG_CHAIN (alloc_fn);
5830 t = tree_cons (NULL_TREE, ptr_type_node, t);
5831 t = build_function_type (void_type_node, t);
5833 fn = instantiate_type (t, fns, tf_none);
5834 if (fn == error_mark_node)
5835 return NULL_TREE;
5837 if (BASELINK_P (fn))
5838 fn = BASELINK_FUNCTIONS (fn);
5840 /* "If the lookup finds the two-parameter form of a usual deallocation
5841 function (3.7.4.2) and that function, considered as a placement
5842 deallocation function, would have been selected as a match for the
5843 allocation function, the program is ill-formed." */
5844 if (non_placement_deallocation_fn_p (fn))
5846 /* But if the class has an operator delete (void *), then that is
5847 the usual deallocation function, so we shouldn't complain
5848 about using the operator delete (void *, size_t). */
5849 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5850 t; t = OVL_NEXT (t))
5852 tree elt = OVL_CURRENT (t);
5853 if (non_placement_deallocation_fn_p (elt)
5854 && FUNCTION_ARG_CHAIN (elt) == void_list_node)
5855 goto ok;
5857 if (complain & tf_error)
5859 permerror (0, "non-placement deallocation function %q+D", fn);
5860 permerror (input_location, "selected for placement delete");
5862 else
5863 return error_mark_node;
5864 ok:;
5867 else
5868 /* "Any non-placement deallocation function matches a non-placement
5869 allocation function. If the lookup finds a single matching
5870 deallocation function, that function will be called; otherwise, no
5871 deallocation function will be called." */
5872 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5873 t; t = OVL_NEXT (t))
5875 tree elt = OVL_CURRENT (t);
5876 if (non_placement_deallocation_fn_p (elt))
5878 fn = elt;
5879 /* "If a class T has a member deallocation function named
5880 operator delete with exactly one parameter, then that
5881 function is a usual (non-placement) deallocation
5882 function. If class T does not declare such an operator
5883 delete but does declare a member deallocation function named
5884 operator delete with exactly two parameters, the second of
5885 which has type std::size_t (18.2), then this function is a
5886 usual deallocation function."
5888 So in a class (void*) beats (void*, size_t). */
5889 if (DECL_CLASS_SCOPE_P (fn))
5891 if (FUNCTION_ARG_CHAIN (fn) == void_list_node)
5892 break;
5894 /* At global scope (in C++14 and above) the rules are different:
5896 If deallocation function lookup finds both a usual
5897 deallocation function with only a pointer parameter and a
5898 usual deallocation function with both a pointer parameter
5899 and a size parameter, the function to be called is selected
5900 as follows:
5902 * If the type is complete and if, for the second alternative
5903 (delete array) only, the operand is a pointer to a class
5904 type with a non-trivial destructor or a (possibly
5905 multi-dimensional) array thereof, the function with two
5906 parameters is selected.
5908 * Otherwise, it is unspecified which of the two deallocation
5909 functions is selected. */
5910 else
5912 bool want_size = COMPLETE_TYPE_P (type);
5913 if (code == VEC_DELETE_EXPR
5914 && !TYPE_VEC_NEW_USES_COOKIE (type))
5915 /* We need a cookie to determine the array size. */
5916 want_size = false;
5917 bool have_size = (FUNCTION_ARG_CHAIN (fn) != void_list_node);
5918 if (want_size == have_size)
5919 break;
5924 /* If we have a matching function, call it. */
5925 if (fn)
5927 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
5929 /* If the FN is a member function, make sure that it is
5930 accessible. */
5931 if (BASELINK_P (fns))
5932 perform_or_defer_access_check (BASELINK_BINFO (fns), fn, fn,
5933 complain);
5935 /* Core issue 901: It's ok to new a type with deleted delete. */
5936 if (DECL_DELETED_FN (fn) && alloc_fn)
5937 return NULL_TREE;
5939 if (placement)
5941 /* The placement args might not be suitable for overload
5942 resolution at this point, so build the call directly. */
5943 int nargs = call_expr_nargs (placement);
5944 tree *argarray = XALLOCAVEC (tree, nargs);
5945 int i;
5946 argarray[0] = addr;
5947 for (i = 1; i < nargs; i++)
5948 argarray[i] = CALL_EXPR_ARG (placement, i);
5949 mark_used (fn);
5950 return build_cxx_call (fn, nargs, argarray, complain);
5952 else
5954 tree ret;
5955 vec<tree, va_gc> *args = make_tree_vector ();
5956 args->quick_push (addr);
5957 if (FUNCTION_ARG_CHAIN (fn) != void_list_node)
5958 args->quick_push (size);
5959 ret = cp_build_function_call_vec (fn, &args, complain);
5960 release_tree_vector (args);
5961 return ret;
5965 /* [expr.new]
5967 If no unambiguous matching deallocation function can be found,
5968 propagating the exception does not cause the object's memory to
5969 be freed. */
5970 if (alloc_fn)
5972 if ((complain & tf_warning)
5973 && !placement)
5974 warning (0, "no corresponding deallocation function for %qD",
5975 alloc_fn);
5976 return NULL_TREE;
5979 if (complain & tf_error)
5980 error ("no suitable %<operator %s%> for %qT",
5981 operator_name_info[(int)code].name, type);
5982 return error_mark_node;
5985 /* If the current scope isn't allowed to access DECL along
5986 BASETYPE_PATH, give an error. The most derived class in
5987 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
5988 the declaration to use in the error diagnostic. */
5990 bool
5991 enforce_access (tree basetype_path, tree decl, tree diag_decl,
5992 tsubst_flags_t complain)
5994 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
5996 if (!accessible_p (basetype_path, decl, true))
5998 if (complain & tf_error)
6000 if (TREE_PRIVATE (decl))
6001 error ("%q+#D is private", diag_decl);
6002 else if (TREE_PROTECTED (decl))
6003 error ("%q+#D is protected", diag_decl);
6004 else
6005 error ("%q+#D is inaccessible", diag_decl);
6006 error ("within this context");
6008 return false;
6011 return true;
6014 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
6015 bitwise or of LOOKUP_* values. If any errors are warnings are
6016 generated, set *DIAGNOSTIC_FN to "error" or "warning",
6017 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
6018 to NULL. */
6020 static tree
6021 build_temp (tree expr, tree type, int flags,
6022 diagnostic_t *diagnostic_kind, tsubst_flags_t complain)
6024 int savew, savee;
6025 vec<tree, va_gc> *args;
6027 savew = warningcount + werrorcount, savee = errorcount;
6028 args = make_tree_vector_single (expr);
6029 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6030 &args, type, flags, complain);
6031 release_tree_vector (args);
6032 if (warningcount + werrorcount > savew)
6033 *diagnostic_kind = DK_WARNING;
6034 else if (errorcount > savee)
6035 *diagnostic_kind = DK_ERROR;
6036 else
6037 *diagnostic_kind = DK_UNSPECIFIED;
6038 return expr;
6041 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
6042 EXPR is implicitly converted to type TOTYPE.
6043 FN and ARGNUM are used for diagnostics. */
6045 static void
6046 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
6048 /* Issue warnings about peculiar, but valid, uses of NULL. */
6049 if (expr == null_node && TREE_CODE (totype) != BOOLEAN_TYPE
6050 && ARITHMETIC_TYPE_P (totype))
6052 source_location loc =
6053 expansion_point_location_if_in_system_header (input_location);
6055 if (fn)
6056 warning_at (loc, OPT_Wconversion_null,
6057 "passing NULL to non-pointer argument %P of %qD",
6058 argnum, fn);
6059 else
6060 warning_at (loc, OPT_Wconversion_null,
6061 "converting to non-pointer type %qT from NULL", totype);
6064 /* Issue warnings if "false" is converted to a NULL pointer */
6065 else if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE
6066 && TYPE_PTR_P (totype))
6068 if (fn)
6069 warning_at (input_location, OPT_Wconversion_null,
6070 "converting %<false%> to pointer type for argument %P "
6071 "of %qD", argnum, fn);
6072 else
6073 warning_at (input_location, OPT_Wconversion_null,
6074 "converting %<false%> to pointer type %qT", totype);
6078 /* We gave a diagnostic during a conversion. If this was in the second
6079 standard conversion sequence of a user-defined conversion sequence, say
6080 which user-defined conversion. */
6082 static void
6083 maybe_print_user_conv_context (conversion *convs)
6085 if (convs->user_conv_p)
6086 for (conversion *t = convs; t; t = next_conversion (t))
6087 if (t->kind == ck_user)
6089 print_z_candidate (0, " after user-defined conversion:",
6090 t->cand);
6091 break;
6095 /* Perform the conversions in CONVS on the expression EXPR. FN and
6096 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
6097 indicates the `this' argument of a method. INNER is nonzero when
6098 being called to continue a conversion chain. It is negative when a
6099 reference binding will be applied, positive otherwise. If
6100 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
6101 conversions will be emitted if appropriate. If C_CAST_P is true,
6102 this conversion is coming from a C-style cast; in that case,
6103 conversions to inaccessible bases are permitted. */
6105 static tree
6106 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
6107 int inner, bool issue_conversion_warnings,
6108 bool c_cast_p, tsubst_flags_t complain)
6110 tree totype = convs->type;
6111 diagnostic_t diag_kind;
6112 int flags;
6113 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
6115 if (convs->bad_p && !(complain & tf_error))
6116 return error_mark_node;
6118 if (convs->bad_p
6119 && convs->kind != ck_user
6120 && convs->kind != ck_list
6121 && convs->kind != ck_ambig
6122 && (convs->kind != ck_ref_bind
6123 || (convs->user_conv_p && next_conversion (convs)->bad_p))
6124 && (convs->kind != ck_rvalue
6125 || SCALAR_TYPE_P (totype))
6126 && convs->kind != ck_base)
6128 bool complained = false;
6129 conversion *t = convs;
6131 /* Give a helpful error if this is bad because of excess braces. */
6132 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6133 && SCALAR_TYPE_P (totype)
6134 && CONSTRUCTOR_NELTS (expr) > 0
6135 && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
6137 complained = permerror (loc, "too many braces around initializer "
6138 "for %qT", totype);
6139 while (BRACE_ENCLOSED_INITIALIZER_P (expr)
6140 && CONSTRUCTOR_NELTS (expr) == 1)
6141 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6144 /* Give a helpful error if this is bad because a conversion to bool
6145 from std::nullptr_t requires direct-initialization. */
6146 if (NULLPTR_TYPE_P (TREE_TYPE (expr))
6147 && TREE_CODE (totype) == BOOLEAN_TYPE)
6148 complained = permerror (loc, "converting to %qT from %qT requires "
6149 "direct-initialization",
6150 totype, TREE_TYPE (expr));
6152 for (; t ; t = next_conversion (t))
6154 if (t->kind == ck_user && t->cand->reason)
6156 complained = permerror (loc, "invalid user-defined conversion "
6157 "from %qT to %qT", TREE_TYPE (expr),
6158 totype);
6159 if (complained)
6160 print_z_candidate (loc, "candidate is:", t->cand);
6161 expr = convert_like_real (t, expr, fn, argnum, 1,
6162 /*issue_conversion_warnings=*/false,
6163 /*c_cast_p=*/false,
6164 complain);
6165 if (convs->kind == ck_ref_bind)
6166 expr = convert_to_reference (totype, expr, CONV_IMPLICIT,
6167 LOOKUP_NORMAL, NULL_TREE,
6168 complain);
6169 else
6170 expr = cp_convert (totype, expr, complain);
6171 if (complained && fn)
6172 inform (DECL_SOURCE_LOCATION (fn),
6173 " initializing argument %P of %qD", argnum, fn);
6174 return expr;
6176 else if (t->kind == ck_user || !t->bad_p)
6178 expr = convert_like_real (t, expr, fn, argnum, 1,
6179 /*issue_conversion_warnings=*/false,
6180 /*c_cast_p=*/false,
6181 complain);
6182 break;
6184 else if (t->kind == ck_ambig)
6185 return convert_like_real (t, expr, fn, argnum, 1,
6186 /*issue_conversion_warnings=*/false,
6187 /*c_cast_p=*/false,
6188 complain);
6189 else if (t->kind == ck_identity)
6190 break;
6192 if (!complained)
6193 complained = permerror (loc, "invalid conversion from %qT to %qT",
6194 TREE_TYPE (expr), totype);
6195 if (complained && fn)
6196 inform (DECL_SOURCE_LOCATION (fn),
6197 " initializing argument %P of %qD", argnum, fn);
6199 return cp_convert (totype, expr, complain);
6202 if (issue_conversion_warnings && (complain & tf_warning))
6203 conversion_null_warnings (totype, expr, fn, argnum);
6205 switch (convs->kind)
6207 case ck_user:
6209 struct z_candidate *cand = convs->cand;
6210 tree convfn = cand->fn;
6211 unsigned i;
6213 /* When converting from an init list we consider explicit
6214 constructors, but actually trying to call one is an error. */
6215 if (DECL_NONCONVERTING_P (convfn) && DECL_CONSTRUCTOR_P (convfn)
6216 /* Unless this is for direct-list-initialization. */
6217 && !DIRECT_LIST_INIT_P (expr))
6219 if (!(complain & tf_error))
6220 return error_mark_node;
6221 error ("converting to %qT from initializer list would use "
6222 "explicit constructor %qD", totype, convfn);
6225 /* If we're initializing from {}, it's value-initialization. */
6226 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6227 && CONSTRUCTOR_NELTS (expr) == 0
6228 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
6230 bool direct = CONSTRUCTOR_IS_DIRECT_INIT (expr);
6231 expr = build_value_init (totype, complain);
6232 expr = get_target_expr_sfinae (expr, complain);
6233 if (expr != error_mark_node)
6235 TARGET_EXPR_LIST_INIT_P (expr) = true;
6236 TARGET_EXPR_DIRECT_INIT_P (expr) = direct;
6238 return expr;
6241 expr = mark_rvalue_use (expr);
6243 /* Set user_conv_p on the argument conversions, so rvalue/base
6244 handling knows not to allow any more UDCs. */
6245 for (i = 0; i < cand->num_convs; ++i)
6246 cand->convs[i]->user_conv_p = true;
6248 expr = build_over_call (cand, LOOKUP_NORMAL, complain);
6250 /* If this is a constructor or a function returning an aggr type,
6251 we need to build up a TARGET_EXPR. */
6252 if (DECL_CONSTRUCTOR_P (convfn))
6254 expr = build_cplus_new (totype, expr, complain);
6256 /* Remember that this was list-initialization. */
6257 if (convs->check_narrowing && expr != error_mark_node)
6258 TARGET_EXPR_LIST_INIT_P (expr) = true;
6261 return expr;
6263 case ck_identity:
6264 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
6266 int nelts = CONSTRUCTOR_NELTS (expr);
6267 if (nelts == 0)
6268 expr = build_value_init (totype, complain);
6269 else if (nelts == 1)
6270 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6271 else
6272 gcc_unreachable ();
6274 expr = mark_rvalue_use (expr);
6276 if (type_unknown_p (expr))
6277 expr = instantiate_type (totype, expr, complain);
6278 /* Convert a constant to its underlying value, unless we are
6279 about to bind it to a reference, in which case we need to
6280 leave it as an lvalue. */
6281 if (inner >= 0)
6283 expr = scalar_constant_value (expr);
6284 if (expr == null_node && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype))
6285 /* If __null has been converted to an integer type, we do not
6286 want to warn about uses of EXPR as an integer, rather than
6287 as a pointer. */
6288 expr = build_int_cst (totype, 0);
6290 return expr;
6291 case ck_ambig:
6292 /* We leave bad_p off ck_ambig because overload resolution considers
6293 it valid, it just fails when we try to perform it. So we need to
6294 check complain here, too. */
6295 if (complain & tf_error)
6297 /* Call build_user_type_conversion again for the error. */
6298 build_user_type_conversion (totype, convs->u.expr, LOOKUP_NORMAL,
6299 complain);
6300 if (fn)
6301 inform (input_location, " initializing argument %P of %q+D",
6302 argnum, fn);
6304 return error_mark_node;
6306 case ck_list:
6308 /* Conversion to std::initializer_list<T>. */
6309 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
6310 tree new_ctor = build_constructor (init_list_type_node, NULL);
6311 unsigned len = CONSTRUCTOR_NELTS (expr);
6312 tree array, val, field;
6313 vec<constructor_elt, va_gc> *vec = NULL;
6314 unsigned ix;
6316 /* Convert all the elements. */
6317 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
6319 tree sub = convert_like_real (convs->u.list[ix], val, fn, argnum,
6320 1, false, false, complain);
6321 if (sub == error_mark_node)
6322 return sub;
6323 if (!BRACE_ENCLOSED_INITIALIZER_P (val)
6324 && !check_narrowing (TREE_TYPE (sub), val, complain))
6325 return error_mark_node;
6326 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor), NULL_TREE, sub);
6327 if (!TREE_CONSTANT (sub))
6328 TREE_CONSTANT (new_ctor) = false;
6330 /* Build up the array. */
6331 elttype = cp_build_qualified_type
6332 (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
6333 array = build_array_of_n_type (elttype, len);
6334 array = finish_compound_literal (array, new_ctor, complain);
6335 /* Take the address explicitly rather than via decay_conversion
6336 to avoid the error about taking the address of a temporary. */
6337 array = cp_build_addr_expr (array, complain);
6338 array = cp_convert (build_pointer_type (elttype), array, complain);
6339 if (array == error_mark_node)
6340 return error_mark_node;
6342 /* Build up the initializer_list object. */
6343 totype = complete_type (totype);
6344 field = next_initializable_field (TYPE_FIELDS (totype));
6345 CONSTRUCTOR_APPEND_ELT (vec, field, array);
6346 field = next_initializable_field (DECL_CHAIN (field));
6347 CONSTRUCTOR_APPEND_ELT (vec, field, size_int (len));
6348 new_ctor = build_constructor (totype, vec);
6349 return get_target_expr_sfinae (new_ctor, complain);
6352 case ck_aggr:
6353 if (TREE_CODE (totype) == COMPLEX_TYPE)
6355 tree real = CONSTRUCTOR_ELT (expr, 0)->value;
6356 tree imag = CONSTRUCTOR_ELT (expr, 1)->value;
6357 real = perform_implicit_conversion (TREE_TYPE (totype),
6358 real, complain);
6359 imag = perform_implicit_conversion (TREE_TYPE (totype),
6360 imag, complain);
6361 expr = build2 (COMPLEX_EXPR, totype, real, imag);
6362 return fold_if_not_in_template (expr);
6364 expr = reshape_init (totype, expr, complain);
6365 expr = get_target_expr_sfinae (digest_init (totype, expr, complain),
6366 complain);
6367 if (expr != error_mark_node)
6368 TARGET_EXPR_LIST_INIT_P (expr) = true;
6369 return expr;
6371 default:
6372 break;
6375 expr = convert_like_real (next_conversion (convs), expr, fn, argnum,
6376 convs->kind == ck_ref_bind ? -1 : 1,
6377 convs->kind == ck_ref_bind ? issue_conversion_warnings : false,
6378 c_cast_p,
6379 complain);
6380 if (expr == error_mark_node)
6381 return error_mark_node;
6383 switch (convs->kind)
6385 case ck_rvalue:
6386 expr = decay_conversion (expr, complain);
6387 if (expr == error_mark_node)
6388 return error_mark_node;
6390 if (! MAYBE_CLASS_TYPE_P (totype))
6391 return expr;
6392 /* Else fall through. */
6393 case ck_base:
6394 if (convs->kind == ck_base && !convs->need_temporary_p)
6396 /* We are going to bind a reference directly to a base-class
6397 subobject of EXPR. */
6398 /* Build an expression for `*((base*) &expr)'. */
6399 expr = convert_to_base (expr, totype,
6400 !c_cast_p, /*nonnull=*/true, complain);
6401 return expr;
6404 /* Copy-initialization where the cv-unqualified version of the source
6405 type is the same class as, or a derived class of, the class of the
6406 destination [is treated as direct-initialization]. [dcl.init] */
6407 flags = LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING;
6408 if (convs->user_conv_p)
6409 /* This conversion is being done in the context of a user-defined
6410 conversion (i.e. the second step of copy-initialization), so
6411 don't allow any more. */
6412 flags |= LOOKUP_NO_CONVERSION;
6413 if (convs->rvaluedness_matches_p)
6414 flags |= LOOKUP_PREFER_RVALUE;
6415 if (TREE_CODE (expr) == TARGET_EXPR
6416 && TARGET_EXPR_LIST_INIT_P (expr))
6417 /* Copy-list-initialization doesn't actually involve a copy. */
6418 return expr;
6419 expr = build_temp (expr, totype, flags, &diag_kind, complain);
6420 if (diag_kind && complain)
6422 maybe_print_user_conv_context (convs);
6423 if (fn)
6424 inform (DECL_SOURCE_LOCATION (fn),
6425 " initializing argument %P of %qD", argnum, fn);
6428 return build_cplus_new (totype, expr, complain);
6430 case ck_ref_bind:
6432 tree ref_type = totype;
6434 if (convs->bad_p && !next_conversion (convs)->bad_p)
6436 tree extype = TREE_TYPE (expr);
6437 if (TYPE_REF_IS_RVALUE (ref_type)
6438 && real_lvalue_p (expr))
6439 error_at (loc, "cannot bind %qT lvalue to %qT",
6440 extype, totype);
6441 else if (!TYPE_REF_IS_RVALUE (ref_type) && !real_lvalue_p (expr)
6442 && !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)))
6443 error_at (loc, "invalid initialization of non-const reference of "
6444 "type %qT from an rvalue of type %qT", totype, extype);
6445 else if (!reference_compatible_p (TREE_TYPE (totype), extype))
6446 error_at (loc, "binding %qT to reference of type %qT "
6447 "discards qualifiers", extype, totype);
6448 else
6449 gcc_unreachable ();
6450 maybe_print_user_conv_context (convs);
6451 if (fn)
6452 inform (input_location,
6453 " initializing argument %P of %q+D", argnum, fn);
6454 return error_mark_node;
6457 /* If necessary, create a temporary.
6459 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
6460 that need temporaries, even when their types are reference
6461 compatible with the type of reference being bound, so the
6462 upcoming call to cp_build_addr_expr doesn't fail. */
6463 if (convs->need_temporary_p
6464 || TREE_CODE (expr) == CONSTRUCTOR
6465 || TREE_CODE (expr) == VA_ARG_EXPR)
6467 /* Otherwise, a temporary of type "cv1 T1" is created and
6468 initialized from the initializer expression using the rules
6469 for a non-reference copy-initialization (8.5). */
6471 tree type = TREE_TYPE (ref_type);
6472 cp_lvalue_kind lvalue = real_lvalue_p (expr);
6474 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6475 (type, next_conversion (convs)->type));
6476 if (!CP_TYPE_CONST_NON_VOLATILE_P (type)
6477 && !TYPE_REF_IS_RVALUE (ref_type))
6479 /* If the reference is volatile or non-const, we
6480 cannot create a temporary. */
6481 if (lvalue & clk_bitfield)
6482 error_at (loc, "cannot bind bitfield %qE to %qT",
6483 expr, ref_type);
6484 else if (lvalue & clk_packed)
6485 error_at (loc, "cannot bind packed field %qE to %qT",
6486 expr, ref_type);
6487 else
6488 error_at (loc, "cannot bind rvalue %qE to %qT",
6489 expr, ref_type);
6490 return error_mark_node;
6492 /* If the source is a packed field, and we must use a copy
6493 constructor, then building the target expr will require
6494 binding the field to the reference parameter to the
6495 copy constructor, and we'll end up with an infinite
6496 loop. If we can use a bitwise copy, then we'll be
6497 OK. */
6498 if ((lvalue & clk_packed)
6499 && CLASS_TYPE_P (type)
6500 && type_has_nontrivial_copy_init (type))
6502 error_at (loc, "cannot bind packed field %qE to %qT",
6503 expr, ref_type);
6504 return error_mark_node;
6506 if (lvalue & clk_bitfield)
6508 expr = convert_bitfield_to_declared_type (expr);
6509 expr = fold_convert (type, expr);
6511 expr = build_target_expr_with_type (expr, type, complain);
6514 /* Take the address of the thing to which we will bind the
6515 reference. */
6516 expr = cp_build_addr_expr (expr, complain);
6517 if (expr == error_mark_node)
6518 return error_mark_node;
6520 /* Convert it to a pointer to the type referred to by the
6521 reference. This will adjust the pointer if a derived to
6522 base conversion is being performed. */
6523 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
6524 expr, complain);
6525 /* Convert the pointer to the desired reference type. */
6526 return build_nop (ref_type, expr);
6529 case ck_lvalue:
6530 return decay_conversion (expr, complain);
6532 case ck_qual:
6533 /* Warn about deprecated conversion if appropriate. */
6534 string_conv_p (totype, expr, 1);
6535 break;
6537 case ck_ptr:
6538 if (convs->base_p)
6539 expr = convert_to_base (expr, totype, !c_cast_p,
6540 /*nonnull=*/false, complain);
6541 return build_nop (totype, expr);
6543 case ck_pmem:
6544 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
6545 c_cast_p, complain);
6547 default:
6548 break;
6551 if (convs->check_narrowing
6552 && !check_narrowing (totype, expr, complain))
6553 return error_mark_node;
6555 if (issue_conversion_warnings)
6556 expr = cp_convert_and_check (totype, expr, complain);
6557 else
6558 expr = cp_convert (totype, expr, complain);
6560 return expr;
6563 /* ARG is being passed to a varargs function. Perform any conversions
6564 required. Return the converted value. */
6566 tree
6567 convert_arg_to_ellipsis (tree arg, tsubst_flags_t complain)
6569 tree arg_type;
6570 location_t loc = EXPR_LOC_OR_LOC (arg, input_location);
6572 /* [expr.call]
6574 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6575 standard conversions are performed. */
6576 arg = decay_conversion (arg, complain);
6577 arg_type = TREE_TYPE (arg);
6578 /* [expr.call]
6580 If the argument has integral or enumeration type that is subject
6581 to the integral promotions (_conv.prom_), or a floating point
6582 type that is subject to the floating point promotion
6583 (_conv.fpprom_), the value of the argument is converted to the
6584 promoted type before the call. */
6585 if (TREE_CODE (arg_type) == REAL_TYPE
6586 && (TYPE_PRECISION (arg_type)
6587 < TYPE_PRECISION (double_type_node))
6588 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type)))
6590 if ((complain & tf_warning)
6591 && warn_double_promotion && !c_inhibit_evaluation_warnings)
6592 warning_at (loc, OPT_Wdouble_promotion,
6593 "implicit conversion from %qT to %qT when passing "
6594 "argument to function",
6595 arg_type, double_type_node);
6596 arg = convert_to_real (double_type_node, arg);
6598 else if (NULLPTR_TYPE_P (arg_type))
6599 arg = null_pointer_node;
6600 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type))
6602 if (SCOPED_ENUM_P (arg_type))
6604 tree prom = cp_convert (ENUM_UNDERLYING_TYPE (arg_type), arg,
6605 complain);
6606 prom = cp_perform_integral_promotions (prom, complain);
6607 if (abi_version_crosses (6)
6608 && TYPE_MODE (TREE_TYPE (prom)) != TYPE_MODE (arg_type)
6609 && (complain & tf_warning))
6610 warning_at (loc, OPT_Wabi, "scoped enum %qT passed through ... as "
6611 "%qT before -fabi-version=6, %qT after", arg_type,
6612 TREE_TYPE (prom), ENUM_UNDERLYING_TYPE (arg_type));
6613 if (!abi_version_at_least (6))
6614 arg = prom;
6616 else
6617 arg = cp_perform_integral_promotions (arg, complain);
6620 arg = require_complete_type_sfinae (arg, complain);
6621 arg_type = TREE_TYPE (arg);
6623 if (arg != error_mark_node
6624 /* In a template (or ill-formed code), we can have an incomplete type
6625 even after require_complete_type_sfinae, in which case we don't know
6626 whether it has trivial copy or not. */
6627 && COMPLETE_TYPE_P (arg_type))
6629 /* Build up a real lvalue-to-rvalue conversion in case the
6630 copy constructor is trivial but not callable. */
6631 if (!cp_unevaluated_operand && CLASS_TYPE_P (arg_type))
6632 force_rvalue (arg, complain);
6634 /* [expr.call] 5.2.2/7:
6635 Passing a potentially-evaluated argument of class type (Clause 9)
6636 with a non-trivial copy constructor or a non-trivial destructor
6637 with no corresponding parameter is conditionally-supported, with
6638 implementation-defined semantics.
6640 We support it as pass-by-invisible-reference, just like a normal
6641 value parameter.
6643 If the call appears in the context of a sizeof expression,
6644 it is not potentially-evaluated. */
6645 if (cp_unevaluated_operand == 0
6646 && (type_has_nontrivial_copy_init (arg_type)
6647 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type)))
6649 if (complain & tf_warning)
6650 warning (OPT_Wconditionally_supported,
6651 "passing objects of non-trivially-copyable "
6652 "type %q#T through %<...%> is conditionally supported",
6653 arg_type);
6654 return cp_build_addr_expr (arg, complain);
6658 return arg;
6661 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
6663 tree
6664 build_x_va_arg (source_location loc, tree expr, tree type)
6666 if (processing_template_decl)
6668 tree r = build_min (VA_ARG_EXPR, type, expr);
6669 SET_EXPR_LOCATION (r, loc);
6670 return r;
6673 type = complete_type_or_else (type, NULL_TREE);
6675 if (expr == error_mark_node || !type)
6676 return error_mark_node;
6678 expr = mark_lvalue_use (expr);
6680 if (TREE_CODE (type) == REFERENCE_TYPE)
6682 error ("cannot receive reference type %qT through %<...%>", type);
6683 return error_mark_node;
6686 if (type_has_nontrivial_copy_init (type)
6687 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6689 /* conditionally-supported behavior [expr.call] 5.2.2/7. Let's treat
6690 it as pass by invisible reference. */
6691 warning_at (loc, OPT_Wconditionally_supported,
6692 "receiving objects of non-trivially-copyable type %q#T "
6693 "through %<...%> is conditionally-supported", type);
6695 tree ref = cp_build_reference_type (type, false);
6696 expr = build_va_arg (loc, expr, ref);
6697 return convert_from_reference (expr);
6700 return build_va_arg (loc, expr, type);
6703 /* TYPE has been given to va_arg. Apply the default conversions which
6704 would have happened when passed via ellipsis. Return the promoted
6705 type, or the passed type if there is no change. */
6707 tree
6708 cxx_type_promotes_to (tree type)
6710 tree promote;
6712 /* Perform the array-to-pointer and function-to-pointer
6713 conversions. */
6714 type = type_decays_to (type);
6716 promote = type_promotes_to (type);
6717 if (same_type_p (type, promote))
6718 promote = type;
6720 return promote;
6723 /* ARG is a default argument expression being passed to a parameter of
6724 the indicated TYPE, which is a parameter to FN. PARMNUM is the
6725 zero-based argument number. Do any required conversions. Return
6726 the converted value. */
6728 static GTY(()) vec<tree, va_gc> *default_arg_context;
6729 void
6730 push_defarg_context (tree fn)
6731 { vec_safe_push (default_arg_context, fn); }
6733 void
6734 pop_defarg_context (void)
6735 { default_arg_context->pop (); }
6737 tree
6738 convert_default_arg (tree type, tree arg, tree fn, int parmnum,
6739 tsubst_flags_t complain)
6741 int i;
6742 tree t;
6744 /* See through clones. */
6745 fn = DECL_ORIGIN (fn);
6747 /* Detect recursion. */
6748 FOR_EACH_VEC_SAFE_ELT (default_arg_context, i, t)
6749 if (t == fn)
6751 if (complain & tf_error)
6752 error ("recursive evaluation of default argument for %q#D", fn);
6753 return error_mark_node;
6756 /* If the ARG is an unparsed default argument expression, the
6757 conversion cannot be performed. */
6758 if (TREE_CODE (arg) == DEFAULT_ARG)
6760 if (complain & tf_error)
6761 error ("call to %qD uses the default argument for parameter %P, which "
6762 "is not yet defined", fn, parmnum);
6763 return error_mark_node;
6766 push_defarg_context (fn);
6768 if (fn && DECL_TEMPLATE_INFO (fn))
6769 arg = tsubst_default_argument (fn, type, arg, complain);
6771 /* Due to:
6773 [dcl.fct.default]
6775 The names in the expression are bound, and the semantic
6776 constraints are checked, at the point where the default
6777 expressions appears.
6779 we must not perform access checks here. */
6780 push_deferring_access_checks (dk_no_check);
6781 /* We must make a copy of ARG, in case subsequent processing
6782 alters any part of it. */
6783 arg = break_out_target_exprs (arg);
6784 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
6785 ICR_DEFAULT_ARGUMENT, fn, parmnum,
6786 complain);
6787 arg = convert_for_arg_passing (type, arg, complain);
6788 pop_deferring_access_checks();
6790 pop_defarg_context ();
6792 return arg;
6795 /* Returns the type which will really be used for passing an argument of
6796 type TYPE. */
6798 tree
6799 type_passed_as (tree type)
6801 /* Pass classes with copy ctors by invisible reference. */
6802 if (TREE_ADDRESSABLE (type))
6804 type = build_reference_type (type);
6805 /* There are no other pointers to this temporary. */
6806 type = cp_build_qualified_type (type, TYPE_QUAL_RESTRICT);
6808 else if (targetm.calls.promote_prototypes (type)
6809 && INTEGRAL_TYPE_P (type)
6810 && COMPLETE_TYPE_P (type)
6811 && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
6812 type = integer_type_node;
6814 return type;
6817 /* Actually perform the appropriate conversion. */
6819 tree
6820 convert_for_arg_passing (tree type, tree val, tsubst_flags_t complain)
6822 tree bitfield_type;
6824 /* If VAL is a bitfield, then -- since it has already been converted
6825 to TYPE -- it cannot have a precision greater than TYPE.
6827 If it has a smaller precision, we must widen it here. For
6828 example, passing "int f:3;" to a function expecting an "int" will
6829 not result in any conversion before this point.
6831 If the precision is the same we must not risk widening. For
6832 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
6833 often have type "int", even though the C++ type for the field is
6834 "long long". If the value is being passed to a function
6835 expecting an "int", then no conversions will be required. But,
6836 if we call convert_bitfield_to_declared_type, the bitfield will
6837 be converted to "long long". */
6838 bitfield_type = is_bitfield_expr_with_lowered_type (val);
6839 if (bitfield_type
6840 && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
6841 val = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type), val);
6843 if (val == error_mark_node)
6845 /* Pass classes with copy ctors by invisible reference. */
6846 else if (TREE_ADDRESSABLE (type))
6847 val = build1 (ADDR_EXPR, build_reference_type (type), val);
6848 else if (targetm.calls.promote_prototypes (type)
6849 && INTEGRAL_TYPE_P (type)
6850 && COMPLETE_TYPE_P (type)
6851 && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
6852 val = cp_perform_integral_promotions (val, complain);
6853 if ((complain & tf_warning)
6854 && warn_suggest_attribute_format)
6856 tree rhstype = TREE_TYPE (val);
6857 const enum tree_code coder = TREE_CODE (rhstype);
6858 const enum tree_code codel = TREE_CODE (type);
6859 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
6860 && coder == codel
6861 && check_missing_format_attribute (type, rhstype))
6862 warning (OPT_Wsuggest_attribute_format,
6863 "argument of function call might be a candidate for a format attribute");
6865 return val;
6868 /* Returns true iff FN is a function with magic varargs, i.e. ones for
6869 which no conversions at all should be done. This is true for some
6870 builtins which don't act like normal functions. */
6872 bool
6873 magic_varargs_p (tree fn)
6875 if (flag_cilkplus && is_cilkplus_reduce_builtin (fn) != BUILT_IN_NONE)
6876 return true;
6878 if (DECL_BUILT_IN (fn))
6879 switch (DECL_FUNCTION_CODE (fn))
6881 case BUILT_IN_CLASSIFY_TYPE:
6882 case BUILT_IN_CONSTANT_P:
6883 case BUILT_IN_NEXT_ARG:
6884 case BUILT_IN_VA_START:
6885 return true;
6887 default:;
6888 return lookup_attribute ("type generic",
6889 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
6892 return false;
6895 /* Returns the decl of the dispatcher function if FN is a function version. */
6897 tree
6898 get_function_version_dispatcher (tree fn)
6900 tree dispatcher_decl = NULL;
6902 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
6903 && DECL_FUNCTION_VERSIONED (fn));
6905 gcc_assert (targetm.get_function_versions_dispatcher);
6906 dispatcher_decl = targetm.get_function_versions_dispatcher (fn);
6908 if (dispatcher_decl == NULL)
6910 error_at (input_location, "use of multiversioned function "
6911 "without a default");
6912 return NULL;
6915 retrofit_lang_decl (dispatcher_decl);
6916 gcc_assert (dispatcher_decl != NULL);
6917 return dispatcher_decl;
6920 /* fn is a function version dispatcher that is marked used. Mark all the
6921 semantically identical function versions it will dispatch as used. */
6923 void
6924 mark_versions_used (tree fn)
6926 struct cgraph_node *node;
6927 struct cgraph_function_version_info *node_v;
6928 struct cgraph_function_version_info *it_v;
6930 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
6932 node = cgraph_node::get (fn);
6933 if (node == NULL)
6934 return;
6936 gcc_assert (node->dispatcher_function);
6938 node_v = node->function_version ();
6939 if (node_v == NULL)
6940 return;
6942 /* All semantically identical versions are chained. Traverse and mark each
6943 one of them as used. */
6944 it_v = node_v->next;
6945 while (it_v != NULL)
6947 mark_used (it_v->this_node->decl);
6948 it_v = it_v->next;
6952 /* Build a call to "the copy constructor" for the type of A, even if it
6953 wouldn't be selected by normal overload resolution. Used for
6954 diagnostics. */
6956 static tree
6957 call_copy_ctor (tree a, tsubst_flags_t complain)
6959 tree ctype = TYPE_MAIN_VARIANT (TREE_TYPE (a));
6960 tree binfo = TYPE_BINFO (ctype);
6961 tree copy = get_copy_ctor (ctype, complain);
6962 copy = build_baselink (binfo, binfo, copy, NULL_TREE);
6963 tree ob = build_dummy_object (ctype);
6964 vec<tree, va_gc>* args = make_tree_vector_single (a);
6965 tree r = build_new_method_call (ob, copy, &args, NULL_TREE,
6966 LOOKUP_NORMAL, NULL, complain);
6967 release_tree_vector (args);
6968 return r;
6971 /* Subroutine of the various build_*_call functions. Overload resolution
6972 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
6973 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
6974 bitmask of various LOOKUP_* flags which apply to the call itself. */
6976 static tree
6977 build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
6979 tree fn = cand->fn;
6980 const vec<tree, va_gc> *args = cand->args;
6981 tree first_arg = cand->first_arg;
6982 conversion **convs = cand->convs;
6983 conversion *conv;
6984 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
6985 int parmlen;
6986 tree val;
6987 int i = 0;
6988 int j = 0;
6989 unsigned int arg_index = 0;
6990 int is_method = 0;
6991 int nargs;
6992 tree *argarray;
6993 bool already_used = false;
6995 /* In a template, there is no need to perform all of the work that
6996 is normally done. We are only interested in the type of the call
6997 expression, i.e., the return type of the function. Any semantic
6998 errors will be deferred until the template is instantiated. */
6999 if (processing_template_decl)
7001 tree expr, addr;
7002 tree return_type;
7003 const tree *argarray;
7004 unsigned int nargs;
7006 return_type = TREE_TYPE (TREE_TYPE (fn));
7007 nargs = vec_safe_length (args);
7008 if (first_arg == NULL_TREE)
7009 argarray = args->address ();
7010 else
7012 tree *alcarray;
7013 unsigned int ix;
7014 tree arg;
7016 ++nargs;
7017 alcarray = XALLOCAVEC (tree, nargs);
7018 alcarray[0] = build_this (first_arg);
7019 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
7020 alcarray[ix + 1] = arg;
7021 argarray = alcarray;
7024 addr = build_addr_func (fn, complain);
7025 if (addr == error_mark_node)
7026 return error_mark_node;
7027 expr = build_call_array_loc (input_location, return_type,
7028 addr, nargs, argarray);
7029 if (TREE_THIS_VOLATILE (fn) && cfun)
7030 current_function_returns_abnormally = 1;
7031 return convert_from_reference (expr);
7034 /* Give any warnings we noticed during overload resolution. */
7035 if (cand->warnings && (complain & tf_warning))
7037 struct candidate_warning *w;
7038 for (w = cand->warnings; w; w = w->next)
7039 joust (cand, w->loser, 1, complain);
7042 /* Make =delete work with SFINAE. */
7043 if (DECL_DELETED_FN (fn) && !(complain & tf_error))
7044 return error_mark_node;
7046 if (DECL_FUNCTION_MEMBER_P (fn))
7048 tree access_fn;
7049 /* If FN is a template function, two cases must be considered.
7050 For example:
7052 struct A {
7053 protected:
7054 template <class T> void f();
7056 template <class T> struct B {
7057 protected:
7058 void g();
7060 struct C : A, B<int> {
7061 using A::f; // #1
7062 using B<int>::g; // #2
7065 In case #1 where `A::f' is a member template, DECL_ACCESS is
7066 recorded in the primary template but not in its specialization.
7067 We check access of FN using its primary template.
7069 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
7070 because it is a member of class template B, DECL_ACCESS is
7071 recorded in the specialization `B<int>::g'. We cannot use its
7072 primary template because `B<T>::g' and `B<int>::g' may have
7073 different access. */
7074 if (DECL_TEMPLATE_INFO (fn)
7075 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
7076 access_fn = DECL_TI_TEMPLATE (fn);
7077 else
7078 access_fn = fn;
7079 if (!perform_or_defer_access_check (cand->access_path, access_fn,
7080 fn, complain))
7081 return error_mark_node;
7084 /* If we're checking for implicit delete, don't bother with argument
7085 conversions. */
7086 if (flags & LOOKUP_SPECULATIVE)
7088 if (DECL_DELETED_FN (fn))
7090 if (complain & tf_error)
7091 mark_used (fn);
7092 return error_mark_node;
7094 if (cand->viable == 1)
7095 return fn;
7096 else if (!(complain & tf_error))
7097 /* Reject bad conversions now. */
7098 return error_mark_node;
7099 /* else continue to get conversion error. */
7102 /* N3276 magic doesn't apply to nested calls. */
7103 int decltype_flag = (complain & tf_decltype);
7104 complain &= ~tf_decltype;
7106 /* Find maximum size of vector to hold converted arguments. */
7107 parmlen = list_length (parm);
7108 nargs = vec_safe_length (args) + (first_arg != NULL_TREE ? 1 : 0);
7109 if (parmlen > nargs)
7110 nargs = parmlen;
7111 argarray = XALLOCAVEC (tree, nargs);
7113 /* The implicit parameters to a constructor are not considered by overload
7114 resolution, and must be of the proper type. */
7115 if (DECL_CONSTRUCTOR_P (fn))
7117 tree object_arg;
7118 if (first_arg != NULL_TREE)
7120 object_arg = first_arg;
7121 first_arg = NULL_TREE;
7123 else
7125 object_arg = (*args)[arg_index];
7126 ++arg_index;
7128 argarray[j++] = build_this (object_arg);
7129 parm = TREE_CHAIN (parm);
7130 /* We should never try to call the abstract constructor. */
7131 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
7133 if (DECL_HAS_VTT_PARM_P (fn))
7135 argarray[j++] = (*args)[arg_index];
7136 ++arg_index;
7137 parm = TREE_CHAIN (parm);
7140 /* Bypass access control for 'this' parameter. */
7141 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
7143 tree parmtype = TREE_VALUE (parm);
7144 tree arg = build_this (first_arg != NULL_TREE
7145 ? first_arg
7146 : (*args)[arg_index]);
7147 tree argtype = TREE_TYPE (arg);
7148 tree converted_arg;
7149 tree base_binfo;
7151 if (convs[i]->bad_p)
7153 if (complain & tf_error)
7155 if (permerror (input_location, "passing %qT as %<this%> "
7156 "argument discards qualifiers",
7157 TREE_TYPE (argtype)))
7158 inform (DECL_SOURCE_LOCATION (fn), " in call to %qD", fn);
7160 else
7161 return error_mark_node;
7164 /* See if the function member or the whole class type is declared
7165 final and the call can be devirtualized. */
7166 if (DECL_FINAL_P (fn)
7167 || CLASSTYPE_FINAL (TYPE_METHOD_BASETYPE (TREE_TYPE (fn))))
7168 flags |= LOOKUP_NONVIRTUAL;
7170 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
7171 X is called for an object that is not of type X, or of a type
7172 derived from X, the behavior is undefined.
7174 So we can assume that anything passed as 'this' is non-null, and
7175 optimize accordingly. */
7176 gcc_assert (TYPE_PTR_P (parmtype));
7177 /* Convert to the base in which the function was declared. */
7178 gcc_assert (cand->conversion_path != NULL_TREE);
7179 converted_arg = build_base_path (PLUS_EXPR,
7180 arg,
7181 cand->conversion_path,
7182 1, complain);
7183 /* Check that the base class is accessible. */
7184 if (!accessible_base_p (TREE_TYPE (argtype),
7185 BINFO_TYPE (cand->conversion_path), true))
7187 if (complain & tf_error)
7188 error ("%qT is not an accessible base of %qT",
7189 BINFO_TYPE (cand->conversion_path),
7190 TREE_TYPE (argtype));
7191 else
7192 return error_mark_node;
7194 /* If fn was found by a using declaration, the conversion path
7195 will be to the derived class, not the base declaring fn. We
7196 must convert from derived to base. */
7197 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
7198 TREE_TYPE (parmtype), ba_unique,
7199 NULL, complain);
7200 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
7201 base_binfo, 1, complain);
7203 argarray[j++] = converted_arg;
7204 parm = TREE_CHAIN (parm);
7205 if (first_arg != NULL_TREE)
7206 first_arg = NULL_TREE;
7207 else
7208 ++arg_index;
7209 ++i;
7210 is_method = 1;
7213 gcc_assert (first_arg == NULL_TREE);
7214 for (; arg_index < vec_safe_length (args) && parm;
7215 parm = TREE_CHAIN (parm), ++arg_index, ++i)
7217 tree type = TREE_VALUE (parm);
7218 tree arg = (*args)[arg_index];
7219 bool conversion_warning = true;
7221 conv = convs[i];
7223 /* If the argument is NULL and used to (implicitly) instantiate a
7224 template function (and bind one of the template arguments to
7225 the type of 'long int'), we don't want to warn about passing NULL
7226 to non-pointer argument.
7227 For example, if we have this template function:
7229 template<typename T> void func(T x) {}
7231 we want to warn (when -Wconversion is enabled) in this case:
7233 void foo() {
7234 func<int>(NULL);
7237 but not in this case:
7239 void foo() {
7240 func(NULL);
7243 if (arg == null_node
7244 && DECL_TEMPLATE_INFO (fn)
7245 && cand->template_decl
7246 && !(flags & LOOKUP_EXPLICIT_TMPL_ARGS))
7247 conversion_warning = false;
7249 /* Warn about initializer_list deduction that isn't currently in the
7250 working draft. */
7251 if (cxx_dialect > cxx98
7252 && flag_deduce_init_list
7253 && cand->template_decl
7254 && is_std_init_list (non_reference (type))
7255 && BRACE_ENCLOSED_INITIALIZER_P (arg))
7257 tree tmpl = TI_TEMPLATE (cand->template_decl);
7258 tree realparm = chain_index (j, DECL_ARGUMENTS (cand->fn));
7259 tree patparm = get_pattern_parm (realparm, tmpl);
7260 tree pattype = TREE_TYPE (patparm);
7261 if (PACK_EXPANSION_P (pattype))
7262 pattype = PACK_EXPANSION_PATTERN (pattype);
7263 pattype = non_reference (pattype);
7265 if (TREE_CODE (pattype) == TEMPLATE_TYPE_PARM
7266 && (cand->explicit_targs == NULL_TREE
7267 || (TREE_VEC_LENGTH (cand->explicit_targs)
7268 <= TEMPLATE_TYPE_IDX (pattype))))
7270 pedwarn (input_location, 0, "deducing %qT as %qT",
7271 non_reference (TREE_TYPE (patparm)),
7272 non_reference (type));
7273 pedwarn (input_location, 0, " in call to %q+D", cand->fn);
7274 pedwarn (input_location, 0,
7275 " (you can disable this with -fno-deduce-init-list)");
7278 val = convert_like_with_context (conv, arg, fn, i - is_method,
7279 conversion_warning
7280 ? complain
7281 : complain & (~tf_warning));
7283 val = convert_for_arg_passing (type, val, complain);
7285 if (val == error_mark_node)
7286 return error_mark_node;
7287 else
7288 argarray[j++] = val;
7291 /* Default arguments */
7292 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
7294 if (TREE_VALUE (parm) == error_mark_node)
7295 return error_mark_node;
7296 argarray[j++] = convert_default_arg (TREE_VALUE (parm),
7297 TREE_PURPOSE (parm),
7298 fn, i - is_method,
7299 complain);
7302 /* Ellipsis */
7303 for (; arg_index < vec_safe_length (args); ++arg_index)
7305 tree a = (*args)[arg_index];
7306 if (magic_varargs_p (fn))
7307 /* Do no conversions for magic varargs. */
7308 a = mark_type_use (a);
7309 else if (DECL_CONSTRUCTOR_P (fn)
7310 && same_type_ignoring_top_level_qualifiers_p (DECL_CONTEXT (fn),
7311 TREE_TYPE (a)))
7313 /* Avoid infinite recursion trying to call A(...). */
7314 if (complain & tf_error)
7315 /* Try to call the actual copy constructor for a good error. */
7316 call_copy_ctor (a, complain);
7317 return error_mark_node;
7319 else
7320 a = convert_arg_to_ellipsis (a, complain);
7321 argarray[j++] = a;
7324 gcc_assert (j <= nargs);
7325 nargs = j;
7327 check_function_arguments (TREE_TYPE (fn), nargs, argarray);
7329 /* Avoid actually calling copy constructors and copy assignment operators,
7330 if possible. */
7332 if (! flag_elide_constructors)
7333 /* Do things the hard way. */;
7334 else if (cand->num_convs == 1
7335 && (DECL_COPY_CONSTRUCTOR_P (fn)
7336 || DECL_MOVE_CONSTRUCTOR_P (fn))
7337 /* It's unsafe to elide the constructor when handling
7338 a noexcept-expression, it may evaluate to the wrong
7339 value (c++/53025). */
7340 && cp_noexcept_operand == 0)
7342 tree targ;
7343 tree arg = argarray[num_artificial_parms_for (fn)];
7344 tree fa;
7345 bool trivial = trivial_fn_p (fn);
7347 /* Pull out the real argument, disregarding const-correctness. */
7348 targ = arg;
7349 while (CONVERT_EXPR_P (targ)
7350 || TREE_CODE (targ) == NON_LVALUE_EXPR)
7351 targ = TREE_OPERAND (targ, 0);
7352 if (TREE_CODE (targ) == ADDR_EXPR)
7354 targ = TREE_OPERAND (targ, 0);
7355 if (!same_type_ignoring_top_level_qualifiers_p
7356 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
7357 targ = NULL_TREE;
7359 else
7360 targ = NULL_TREE;
7362 if (targ)
7363 arg = targ;
7364 else
7365 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
7367 /* [class.copy]: the copy constructor is implicitly defined even if
7368 the implementation elided its use. */
7369 if (!trivial || DECL_DELETED_FN (fn))
7371 mark_used (fn);
7372 already_used = true;
7375 /* If we're creating a temp and we already have one, don't create a
7376 new one. If we're not creating a temp but we get one, use
7377 INIT_EXPR to collapse the temp into our target. Otherwise, if the
7378 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
7379 temp or an INIT_EXPR otherwise. */
7380 fa = argarray[0];
7381 if (is_dummy_object (fa))
7383 if (TREE_CODE (arg) == TARGET_EXPR)
7384 return arg;
7385 else if (trivial)
7386 return force_target_expr (DECL_CONTEXT (fn), arg, complain);
7388 else if (TREE_CODE (arg) == TARGET_EXPR || trivial)
7390 tree to = stabilize_reference (cp_build_indirect_ref (fa, RO_NULL,
7391 complain));
7393 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
7394 return val;
7397 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
7398 && trivial_fn_p (fn)
7399 && !DECL_DELETED_FN (fn))
7401 tree to = stabilize_reference
7402 (cp_build_indirect_ref (argarray[0], RO_NULL, complain));
7403 tree type = TREE_TYPE (to);
7404 tree as_base = CLASSTYPE_AS_BASE (type);
7405 tree arg = argarray[1];
7407 if (is_really_empty_class (type))
7409 /* Avoid copying empty classes. */
7410 val = build2 (COMPOUND_EXPR, void_type_node, to, arg);
7411 TREE_NO_WARNING (val) = 1;
7412 val = build2 (COMPOUND_EXPR, type, val, to);
7413 TREE_NO_WARNING (val) = 1;
7415 else if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
7417 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
7418 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
7420 else
7422 /* We must only copy the non-tail padding parts. */
7423 tree arg0, arg2, t;
7424 tree array_type, alias_set;
7426 arg2 = TYPE_SIZE_UNIT (as_base);
7427 arg0 = cp_build_addr_expr (to, complain);
7429 array_type = build_array_type (char_type_node,
7430 build_index_type
7431 (size_binop (MINUS_EXPR,
7432 arg2, size_int (1))));
7433 alias_set = build_int_cst (build_pointer_type (type), 0);
7434 t = build2 (MODIFY_EXPR, void_type_node,
7435 build2 (MEM_REF, array_type, arg0, alias_set),
7436 build2 (MEM_REF, array_type, arg, alias_set));
7437 val = build2 (COMPOUND_EXPR, TREE_TYPE (to), t, to);
7438 TREE_NO_WARNING (val) = 1;
7441 return val;
7443 else if (DECL_DESTRUCTOR_P (fn)
7444 && trivial_fn_p (fn)
7445 && !DECL_DELETED_FN (fn))
7446 return fold_convert (void_type_node, argarray[0]);
7447 /* FIXME handle trivial default constructor, too. */
7449 /* For calls to a multi-versioned function, overload resolution
7450 returns the function with the highest target priority, that is,
7451 the version that will checked for dispatching first. If this
7452 version is inlinable, a direct call to this version can be made
7453 otherwise the call should go through the dispatcher. */
7455 if (DECL_FUNCTION_VERSIONED (fn)
7456 && (current_function_decl == NULL
7457 || !targetm.target_option.can_inline_p (current_function_decl, fn)))
7459 fn = get_function_version_dispatcher (fn);
7460 if (fn == NULL)
7461 return NULL;
7462 if (!already_used)
7463 mark_versions_used (fn);
7466 if (!already_used
7467 && !mark_used (fn))
7468 return error_mark_node;
7470 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0
7471 /* Don't mess with virtual lookup in instantiate_non_dependent_expr;
7472 virtual functions can't be constexpr. */
7473 && !in_template_function ())
7475 tree t;
7476 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
7477 DECL_CONTEXT (fn),
7478 ba_any, NULL, complain);
7479 gcc_assert (binfo && binfo != error_mark_node);
7481 argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1,
7482 complain);
7483 if (TREE_SIDE_EFFECTS (argarray[0]))
7484 argarray[0] = save_expr (argarray[0]);
7485 t = build_pointer_type (TREE_TYPE (fn));
7486 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
7487 fn = build_java_interface_fn_ref (fn, argarray[0]);
7488 else
7489 fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
7490 TREE_TYPE (fn) = t;
7492 else
7494 fn = build_addr_func (fn, complain);
7495 if (fn == error_mark_node)
7496 return error_mark_node;
7499 tree call = build_cxx_call (fn, nargs, argarray, complain|decltype_flag);
7500 if (TREE_CODE (call) == CALL_EXPR
7501 && (cand->flags & LOOKUP_LIST_INIT_CTOR))
7502 CALL_EXPR_LIST_INIT_P (call) = true;
7503 return call;
7506 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
7507 This function performs no overload resolution, conversion, or other
7508 high-level operations. */
7510 tree
7511 build_cxx_call (tree fn, int nargs, tree *argarray,
7512 tsubst_flags_t complain)
7514 tree fndecl;
7515 int optimize_sav;
7517 /* Remember roughly where this call is. */
7518 location_t loc = EXPR_LOC_OR_LOC (fn, input_location);
7519 fn = build_call_a (fn, nargs, argarray);
7520 SET_EXPR_LOCATION (fn, loc);
7522 fndecl = get_callee_fndecl (fn);
7524 /* Check that arguments to builtin functions match the expectations. */
7525 if (fndecl
7526 && DECL_BUILT_IN (fndecl)
7527 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
7528 && !check_builtin_function_arguments (fndecl, nargs, argarray))
7529 return error_mark_node;
7531 /* If it is a built-in array notation function, then the return type of
7532 the function is the element type of the array passed in as array
7533 notation (i.e. the first parameter of the function). */
7534 if (flag_cilkplus && TREE_CODE (fn) == CALL_EXPR)
7536 enum built_in_function bif =
7537 is_cilkplus_reduce_builtin (CALL_EXPR_FN (fn));
7538 if (bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ADD
7539 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MUL
7540 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MAX
7541 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MIN
7542 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE
7543 || bif == BUILT_IN_CILKPLUS_SEC_REDUCE_MUTATING)
7545 if (call_expr_nargs (fn) == 0)
7547 error_at (EXPR_LOCATION (fn), "Invalid builtin arguments");
7548 return error_mark_node;
7550 /* for bif == BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_ZERO or
7551 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_ZERO or
7552 BUILT_IN_CILKPLUS_SEC_REDUCE_ANY_NONZERO or
7553 BUILT_IN_CILKPLUS_SEC_REDUCE_ALL_NONZERO or
7554 BUILT_IN_CILKPLUS_SEC_REDUCE_MIN_IND or
7555 BUILT_IN_CILKPLUS_SEC_REDUCE_MAX_IND
7556 The pre-defined return-type is the correct one. */
7557 tree array_ntn = CALL_EXPR_ARG (fn, 0);
7558 TREE_TYPE (fn) = TREE_TYPE (array_ntn);
7559 return fn;
7563 /* Some built-in function calls will be evaluated at compile-time in
7564 fold (). Set optimize to 1 when folding __builtin_constant_p inside
7565 a constexpr function so that fold_builtin_1 doesn't fold it to 0. */
7566 optimize_sav = optimize;
7567 if (!optimize && fndecl && DECL_IS_BUILTIN_CONSTANT_P (fndecl)
7568 && current_function_decl
7569 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
7570 optimize = 1;
7571 fn = fold_if_not_in_template (fn);
7572 optimize = optimize_sav;
7574 if (VOID_TYPE_P (TREE_TYPE (fn)))
7575 return fn;
7577 /* 5.2.2/11: If a function call is a prvalue of object type: if the
7578 function call is either the operand of a decltype-specifier or the
7579 right operand of a comma operator that is the operand of a
7580 decltype-specifier, a temporary object is not introduced for the
7581 prvalue. The type of the prvalue may be incomplete. */
7582 if (!(complain & tf_decltype))
7584 fn = require_complete_type_sfinae (fn, complain);
7585 if (fn == error_mark_node)
7586 return error_mark_node;
7588 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
7589 fn = build_cplus_new (TREE_TYPE (fn), fn, complain);
7591 return convert_from_reference (fn);
7594 static GTY(()) tree java_iface_lookup_fn;
7596 /* Make an expression which yields the address of the Java interface
7597 method FN. This is achieved by generating a call to libjava's
7598 _Jv_LookupInterfaceMethodIdx(). */
7600 static tree
7601 build_java_interface_fn_ref (tree fn, tree instance)
7603 tree lookup_fn, method, idx;
7604 tree klass_ref, iface, iface_ref;
7605 int i;
7607 if (!java_iface_lookup_fn)
7609 tree ftype = build_function_type_list (ptr_type_node,
7610 ptr_type_node, ptr_type_node,
7611 java_int_type_node, NULL_TREE);
7612 java_iface_lookup_fn
7613 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx", ftype,
7614 0, NOT_BUILT_IN, NULL, NULL_TREE);
7617 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
7618 This is the first entry in the vtable. */
7619 klass_ref = build_vtbl_ref (cp_build_indirect_ref (instance, RO_NULL,
7620 tf_warning_or_error),
7621 integer_zero_node);
7623 /* Get the java.lang.Class pointer for the interface being called. */
7624 iface = DECL_CONTEXT (fn);
7625 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
7626 if (!iface_ref || !VAR_P (iface_ref)
7627 || DECL_CONTEXT (iface_ref) != iface)
7629 error ("could not find class$ field in java interface type %qT",
7630 iface);
7631 return error_mark_node;
7633 iface_ref = build_address (iface_ref);
7634 iface_ref = convert (build_pointer_type (iface), iface_ref);
7636 /* Determine the itable index of FN. */
7637 i = 1;
7638 for (method = TYPE_METHODS (iface); method; method = DECL_CHAIN (method))
7640 if (!DECL_VIRTUAL_P (method))
7641 continue;
7642 if (fn == method)
7643 break;
7644 i++;
7646 idx = build_int_cst (NULL_TREE, i);
7648 lookup_fn = build1 (ADDR_EXPR,
7649 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
7650 java_iface_lookup_fn);
7651 return build_call_nary (ptr_type_node, lookup_fn,
7652 3, klass_ref, iface_ref, idx);
7655 /* Returns the value to use for the in-charge parameter when making a
7656 call to a function with the indicated NAME.
7658 FIXME:Can't we find a neater way to do this mapping? */
7660 tree
7661 in_charge_arg_for_name (tree name)
7663 if (name == base_ctor_identifier
7664 || name == base_dtor_identifier)
7665 return integer_zero_node;
7666 else if (name == complete_ctor_identifier)
7667 return integer_one_node;
7668 else if (name == complete_dtor_identifier)
7669 return integer_two_node;
7670 else if (name == deleting_dtor_identifier)
7671 return integer_three_node;
7673 /* This function should only be called with one of the names listed
7674 above. */
7675 gcc_unreachable ();
7676 return NULL_TREE;
7679 /* Build a call to a constructor, destructor, or an assignment
7680 operator for INSTANCE, an expression with class type. NAME
7681 indicates the special member function to call; *ARGS are the
7682 arguments. ARGS may be NULL. This may change ARGS. BINFO
7683 indicates the base of INSTANCE that is to be passed as the `this'
7684 parameter to the member function called.
7686 FLAGS are the LOOKUP_* flags to use when processing the call.
7688 If NAME indicates a complete object constructor, INSTANCE may be
7689 NULL_TREE. In this case, the caller will call build_cplus_new to
7690 store the newly constructed object into a VAR_DECL. */
7692 tree
7693 build_special_member_call (tree instance, tree name, vec<tree, va_gc> **args,
7694 tree binfo, int flags, tsubst_flags_t complain)
7696 tree fns;
7697 /* The type of the subobject to be constructed or destroyed. */
7698 tree class_type;
7699 vec<tree, va_gc> *allocated = NULL;
7700 tree ret;
7702 gcc_assert (name == complete_ctor_identifier
7703 || name == base_ctor_identifier
7704 || name == complete_dtor_identifier
7705 || name == base_dtor_identifier
7706 || name == deleting_dtor_identifier
7707 || name == ansi_assopname (NOP_EXPR));
7708 if (TYPE_P (binfo))
7710 /* Resolve the name. */
7711 if (!complete_type_or_maybe_complain (binfo, NULL_TREE, complain))
7712 return error_mark_node;
7714 binfo = TYPE_BINFO (binfo);
7717 gcc_assert (binfo != NULL_TREE);
7719 class_type = BINFO_TYPE (binfo);
7721 /* Handle the special case where INSTANCE is NULL_TREE. */
7722 if (name == complete_ctor_identifier && !instance)
7723 instance = build_dummy_object (class_type);
7724 else
7726 if (name == complete_dtor_identifier
7727 || name == base_dtor_identifier
7728 || name == deleting_dtor_identifier)
7729 gcc_assert (args == NULL || vec_safe_is_empty (*args));
7731 /* Convert to the base class, if necessary. */
7732 if (!same_type_ignoring_top_level_qualifiers_p
7733 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
7735 if (name != ansi_assopname (NOP_EXPR))
7736 /* For constructors and destructors, either the base is
7737 non-virtual, or it is virtual but we are doing the
7738 conversion from a constructor or destructor for the
7739 complete object. In either case, we can convert
7740 statically. */
7741 instance = convert_to_base_statically (instance, binfo);
7742 else
7743 /* However, for assignment operators, we must convert
7744 dynamically if the base is virtual. */
7745 instance = build_base_path (PLUS_EXPR, instance,
7746 binfo, /*nonnull=*/1, complain);
7750 gcc_assert (instance != NULL_TREE);
7752 fns = lookup_fnfields (binfo, name, 1);
7754 /* When making a call to a constructor or destructor for a subobject
7755 that uses virtual base classes, pass down a pointer to a VTT for
7756 the subobject. */
7757 if ((name == base_ctor_identifier
7758 || name == base_dtor_identifier)
7759 && CLASSTYPE_VBASECLASSES (class_type))
7761 tree vtt;
7762 tree sub_vtt;
7764 /* If the current function is a complete object constructor
7765 or destructor, then we fetch the VTT directly.
7766 Otherwise, we look it up using the VTT we were given. */
7767 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
7768 vtt = decay_conversion (vtt, complain);
7769 if (vtt == error_mark_node)
7770 return error_mark_node;
7771 vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
7772 build2 (EQ_EXPR, boolean_type_node,
7773 current_in_charge_parm, integer_zero_node),
7774 current_vtt_parm,
7775 vtt);
7776 if (BINFO_SUBVTT_INDEX (binfo))
7777 sub_vtt = fold_build_pointer_plus (vtt, BINFO_SUBVTT_INDEX (binfo));
7778 else
7779 sub_vtt = vtt;
7781 if (args == NULL)
7783 allocated = make_tree_vector ();
7784 args = &allocated;
7787 vec_safe_insert (*args, 0, sub_vtt);
7790 ret = build_new_method_call (instance, fns, args,
7791 TYPE_BINFO (BINFO_TYPE (binfo)),
7792 flags, /*fn=*/NULL,
7793 complain);
7795 if (allocated != NULL)
7796 release_tree_vector (allocated);
7798 if ((complain & tf_error)
7799 && (flags & LOOKUP_DELEGATING_CONS)
7800 && name == complete_ctor_identifier
7801 && TREE_CODE (ret) == CALL_EXPR
7802 && (DECL_ABSTRACT_ORIGIN (TREE_OPERAND (CALL_EXPR_FN (ret), 0))
7803 == current_function_decl))
7804 error ("constructor delegates to itself");
7806 return ret;
7809 /* Return the NAME, as a C string. The NAME indicates a function that
7810 is a member of TYPE. *FREE_P is set to true if the caller must
7811 free the memory returned.
7813 Rather than go through all of this, we should simply set the names
7814 of constructors and destructors appropriately, and dispense with
7815 ctor_identifier, dtor_identifier, etc. */
7817 static char *
7818 name_as_c_string (tree name, tree type, bool *free_p)
7820 char *pretty_name;
7822 /* Assume that we will not allocate memory. */
7823 *free_p = false;
7824 /* Constructors and destructors are special. */
7825 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7827 pretty_name
7828 = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type))));
7829 /* For a destructor, add the '~'. */
7830 if (name == complete_dtor_identifier
7831 || name == base_dtor_identifier
7832 || name == deleting_dtor_identifier)
7834 pretty_name = concat ("~", pretty_name, NULL);
7835 /* Remember that we need to free the memory allocated. */
7836 *free_p = true;
7839 else if (IDENTIFIER_TYPENAME_P (name))
7841 pretty_name = concat ("operator ",
7842 type_as_string_translate (TREE_TYPE (name),
7843 TFF_PLAIN_IDENTIFIER),
7844 NULL);
7845 /* Remember that we need to free the memory allocated. */
7846 *free_p = true;
7848 else
7849 pretty_name = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (name)));
7851 return pretty_name;
7854 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
7855 be set, upon return, to the function called. ARGS may be NULL.
7856 This may change ARGS. */
7858 static tree
7859 build_new_method_call_1 (tree instance, tree fns, vec<tree, va_gc> **args,
7860 tree conversion_path, int flags,
7861 tree *fn_p, tsubst_flags_t complain)
7863 struct z_candidate *candidates = 0, *cand;
7864 tree explicit_targs = NULL_TREE;
7865 tree basetype = NULL_TREE;
7866 tree access_binfo, binfo;
7867 tree optype;
7868 tree first_mem_arg = NULL_TREE;
7869 tree name;
7870 bool skip_first_for_error;
7871 vec<tree, va_gc> *user_args;
7872 tree call;
7873 tree fn;
7874 int template_only = 0;
7875 bool any_viable_p;
7876 tree orig_instance;
7877 tree orig_fns;
7878 vec<tree, va_gc> *orig_args = NULL;
7879 void *p;
7881 gcc_assert (instance != NULL_TREE);
7883 /* We don't know what function we're going to call, yet. */
7884 if (fn_p)
7885 *fn_p = NULL_TREE;
7887 if (error_operand_p (instance)
7888 || !fns || error_operand_p (fns))
7889 return error_mark_node;
7891 if (!BASELINK_P (fns))
7893 if (complain & tf_error)
7894 error ("call to non-function %qD", fns);
7895 return error_mark_node;
7898 orig_instance = instance;
7899 orig_fns = fns;
7901 /* Dismantle the baselink to collect all the information we need. */
7902 if (!conversion_path)
7903 conversion_path = BASELINK_BINFO (fns);
7904 access_binfo = BASELINK_ACCESS_BINFO (fns);
7905 binfo = BASELINK_BINFO (fns);
7906 optype = BASELINK_OPTYPE (fns);
7907 fns = BASELINK_FUNCTIONS (fns);
7908 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7910 explicit_targs = TREE_OPERAND (fns, 1);
7911 fns = TREE_OPERAND (fns, 0);
7912 template_only = 1;
7914 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
7915 || TREE_CODE (fns) == TEMPLATE_DECL
7916 || TREE_CODE (fns) == OVERLOAD);
7917 fn = get_first_fn (fns);
7918 name = DECL_NAME (fn);
7920 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
7921 gcc_assert (CLASS_TYPE_P (basetype));
7923 if (processing_template_decl)
7925 orig_args = args == NULL ? NULL : make_tree_vector_copy (*args);
7926 instance = build_non_dependent_expr (instance);
7927 if (args != NULL)
7928 make_args_non_dependent (*args);
7931 user_args = args == NULL ? NULL : *args;
7932 /* Under DR 147 A::A() is an invalid constructor call,
7933 not a functional cast. */
7934 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
7936 if (! (complain & tf_error))
7937 return error_mark_node;
7939 if (permerror (input_location,
7940 "cannot call constructor %<%T::%D%> directly",
7941 basetype, name))
7942 inform (input_location, "for a function-style cast, remove the "
7943 "redundant %<::%D%>", name);
7944 call = build_functional_cast (basetype, build_tree_list_vec (user_args),
7945 complain);
7946 return call;
7949 /* Figure out whether to skip the first argument for the error
7950 message we will display to users if an error occurs. We don't
7951 want to display any compiler-generated arguments. The "this"
7952 pointer hasn't been added yet. However, we must remove the VTT
7953 pointer if this is a call to a base-class constructor or
7954 destructor. */
7955 skip_first_for_error = false;
7956 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7958 /* Callers should explicitly indicate whether they want to construct
7959 the complete object or just the part without virtual bases. */
7960 gcc_assert (name != ctor_identifier);
7961 /* Similarly for destructors. */
7962 gcc_assert (name != dtor_identifier);
7963 /* Remove the VTT pointer, if present. */
7964 if ((name == base_ctor_identifier || name == base_dtor_identifier)
7965 && CLASSTYPE_VBASECLASSES (basetype))
7966 skip_first_for_error = true;
7969 /* Process the argument list. */
7970 if (args != NULL && *args != NULL)
7972 *args = resolve_args (*args, complain);
7973 if (*args == NULL)
7974 return error_mark_node;
7977 /* Consider the object argument to be used even if we end up selecting a
7978 static member function. */
7979 instance = mark_type_use (instance);
7981 /* It's OK to call destructors and constructors on cv-qualified objects.
7982 Therefore, convert the INSTANCE to the unqualified type, if
7983 necessary. */
7984 if (DECL_DESTRUCTOR_P (fn)
7985 || DECL_CONSTRUCTOR_P (fn))
7987 if (!same_type_p (basetype, TREE_TYPE (instance)))
7989 instance = build_this (instance);
7990 instance = build_nop (build_pointer_type (basetype), instance);
7991 instance = build_fold_indirect_ref (instance);
7994 if (DECL_DESTRUCTOR_P (fn))
7995 name = complete_dtor_identifier;
7997 /* For the overload resolution we need to find the actual `this`
7998 that would be captured if the call turns out to be to a
7999 non-static member function. Do not actually capture it at this
8000 point. */
8001 first_mem_arg = maybe_resolve_dummy (instance, false);
8003 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8004 p = conversion_obstack_alloc (0);
8006 /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
8007 initializer, not T({ }). */
8008 if (DECL_CONSTRUCTOR_P (fn) && args != NULL && !vec_safe_is_empty (*args)
8009 && DIRECT_LIST_INIT_P ((**args)[0]))
8011 tree init_list = (**args)[0];
8012 tree init = NULL_TREE;
8014 gcc_assert ((*args)->length () == 1
8015 && !(flags & LOOKUP_ONLYCONVERTING));
8017 /* If the initializer list has no elements and T is a class type with
8018 a default constructor, the object is value-initialized. Handle
8019 this here so we don't need to handle it wherever we use
8020 build_special_member_call. */
8021 if (CONSTRUCTOR_NELTS (init_list) == 0
8022 && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
8023 /* For a user-provided default constructor, use the normal
8024 mechanisms so that protected access works. */
8025 && type_has_non_user_provided_default_constructor (basetype)
8026 && !processing_template_decl)
8027 init = build_value_init (basetype, complain);
8029 /* If BASETYPE is an aggregate, we need to do aggregate
8030 initialization. */
8031 else if (CP_AGGREGATE_TYPE_P (basetype))
8032 init = digest_init (basetype, init_list, complain);
8034 if (init)
8036 if (is_dummy_object (instance))
8037 return get_target_expr_sfinae (init, complain);
8038 init = build2 (INIT_EXPR, TREE_TYPE (instance), instance, init);
8039 TREE_SIDE_EFFECTS (init) = true;
8040 return init;
8043 /* Otherwise go ahead with overload resolution. */
8044 add_list_candidates (fns, first_mem_arg, init_list,
8045 basetype, explicit_targs, template_only,
8046 conversion_path, access_binfo, flags,
8047 &candidates, complain);
8049 else
8051 add_candidates (fns, first_mem_arg, user_args, optype,
8052 explicit_targs, template_only, conversion_path,
8053 access_binfo, flags, &candidates, complain);
8055 any_viable_p = false;
8056 candidates = splice_viable (candidates, false, &any_viable_p);
8058 if (!any_viable_p)
8060 if (complain & tf_error)
8062 if (!COMPLETE_OR_OPEN_TYPE_P (basetype))
8063 cxx_incomplete_type_error (instance, basetype);
8064 else if (optype)
8065 error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
8066 basetype, optype, build_tree_list_vec (user_args),
8067 TREE_TYPE (instance));
8068 else
8070 char *pretty_name;
8071 bool free_p;
8072 tree arglist;
8074 pretty_name = name_as_c_string (name, basetype, &free_p);
8075 arglist = build_tree_list_vec (user_args);
8076 if (skip_first_for_error)
8077 arglist = TREE_CHAIN (arglist);
8078 error ("no matching function for call to %<%T::%s(%A)%#V%>",
8079 basetype, pretty_name, arglist,
8080 TREE_TYPE (instance));
8081 if (free_p)
8082 free (pretty_name);
8084 print_z_candidates (location_of (name), candidates);
8086 call = error_mark_node;
8088 else
8090 cand = tourney (candidates, complain);
8091 if (cand == 0)
8093 char *pretty_name;
8094 bool free_p;
8095 tree arglist;
8097 if (complain & tf_error)
8099 pretty_name = name_as_c_string (name, basetype, &free_p);
8100 arglist = build_tree_list_vec (user_args);
8101 if (skip_first_for_error)
8102 arglist = TREE_CHAIN (arglist);
8103 if (!any_strictly_viable (candidates))
8104 error ("no matching function for call to %<%s(%A)%>",
8105 pretty_name, arglist);
8106 else
8107 error ("call of overloaded %<%s(%A)%> is ambiguous",
8108 pretty_name, arglist);
8109 print_z_candidates (location_of (name), candidates);
8110 if (free_p)
8111 free (pretty_name);
8113 call = error_mark_node;
8115 else
8117 fn = cand->fn;
8118 call = NULL_TREE;
8120 if (!(flags & LOOKUP_NONVIRTUAL)
8121 && DECL_PURE_VIRTUAL_P (fn)
8122 && instance == current_class_ref
8123 && (complain & tf_warning))
8125 /* This is not an error, it is runtime undefined
8126 behavior. */
8127 if (!current_function_decl)
8128 warning (0, "pure virtual %q#D called from "
8129 "non-static data member initializer", fn);
8130 else if (DECL_CONSTRUCTOR_P (current_function_decl)
8131 || DECL_DESTRUCTOR_P (current_function_decl))
8132 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl)
8133 ? "pure virtual %q#D called from constructor"
8134 : "pure virtual %q#D called from destructor"),
8135 fn);
8138 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
8139 && !DECL_CONSTRUCTOR_P (fn)
8140 && is_dummy_object (instance))
8142 instance = maybe_resolve_dummy (instance, true);
8143 if (instance == error_mark_node)
8144 call = error_mark_node;
8145 else if (!is_dummy_object (instance))
8147 /* We captured 'this' in the current lambda now that
8148 we know we really need it. */
8149 cand->first_arg = instance;
8151 else
8153 if (complain & tf_error)
8154 error ("cannot call member function %qD without object",
8155 fn);
8156 call = error_mark_node;
8160 if (call != error_mark_node)
8162 /* Optimize away vtable lookup if we know that this
8163 function can't be overridden. We need to check if
8164 the context and the type where we found fn are the same,
8165 actually FN might be defined in a different class
8166 type because of a using-declaration. In this case, we
8167 do not want to perform a non-virtual call. */
8168 if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
8169 && same_type_ignoring_top_level_qualifiers_p
8170 (DECL_CONTEXT (fn), BINFO_TYPE (binfo))
8171 && resolves_to_fixed_type_p (instance, 0))
8172 flags |= LOOKUP_NONVIRTUAL;
8173 if (explicit_targs)
8174 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
8175 /* Now we know what function is being called. */
8176 if (fn_p)
8177 *fn_p = fn;
8178 /* Build the actual CALL_EXPR. */
8179 call = build_over_call (cand, flags, complain);
8180 /* In an expression of the form `a->f()' where `f' turns
8181 out to be a static member function, `a' is
8182 none-the-less evaluated. */
8183 if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
8184 && !is_dummy_object (instance)
8185 && TREE_SIDE_EFFECTS (instance))
8186 call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
8187 instance, call);
8188 else if (call != error_mark_node
8189 && DECL_DESTRUCTOR_P (cand->fn)
8190 && !VOID_TYPE_P (TREE_TYPE (call)))
8191 /* An explicit call of the form "x->~X()" has type
8192 "void". However, on platforms where destructors
8193 return "this" (i.e., those where
8194 targetm.cxx.cdtor_returns_this is true), such calls
8195 will appear to have a return value of pointer type
8196 to the low-level call machinery. We do not want to
8197 change the low-level machinery, since we want to be
8198 able to optimize "delete f()" on such platforms as
8199 "operator delete(~X(f()))" (rather than generating
8200 "t = f(), ~X(t), operator delete (t)"). */
8201 call = build_nop (void_type_node, call);
8206 if (processing_template_decl && call != error_mark_node)
8208 bool cast_to_void = false;
8210 if (TREE_CODE (call) == COMPOUND_EXPR)
8211 call = TREE_OPERAND (call, 1);
8212 else if (TREE_CODE (call) == NOP_EXPR)
8214 cast_to_void = true;
8215 call = TREE_OPERAND (call, 0);
8217 if (INDIRECT_REF_P (call))
8218 call = TREE_OPERAND (call, 0);
8219 call = (build_min_non_dep_call_vec
8220 (call,
8221 build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
8222 orig_instance, orig_fns, NULL_TREE),
8223 orig_args));
8224 SET_EXPR_LOCATION (call, input_location);
8225 call = convert_from_reference (call);
8226 if (cast_to_void)
8227 call = build_nop (void_type_node, call);
8230 /* Free all the conversions we allocated. */
8231 obstack_free (&conversion_obstack, p);
8233 if (orig_args != NULL)
8234 release_tree_vector (orig_args);
8236 return call;
8239 /* Wrapper for above. */
8241 tree
8242 build_new_method_call (tree instance, tree fns, vec<tree, va_gc> **args,
8243 tree conversion_path, int flags,
8244 tree *fn_p, tsubst_flags_t complain)
8246 tree ret;
8247 bool subtime = timevar_cond_start (TV_OVERLOAD);
8248 ret = build_new_method_call_1 (instance, fns, args, conversion_path, flags,
8249 fn_p, complain);
8250 timevar_cond_stop (TV_OVERLOAD, subtime);
8251 return ret;
8254 /* Returns true iff standard conversion sequence ICS1 is a proper
8255 subsequence of ICS2. */
8257 static bool
8258 is_subseq (conversion *ics1, conversion *ics2)
8260 /* We can assume that a conversion of the same code
8261 between the same types indicates a subsequence since we only get
8262 here if the types we are converting from are the same. */
8264 while (ics1->kind == ck_rvalue
8265 || ics1->kind == ck_lvalue)
8266 ics1 = next_conversion (ics1);
8268 while (1)
8270 while (ics2->kind == ck_rvalue
8271 || ics2->kind == ck_lvalue)
8272 ics2 = next_conversion (ics2);
8274 if (ics2->kind == ck_user
8275 || ics2->kind == ck_ambig
8276 || ics2->kind == ck_aggr
8277 || ics2->kind == ck_list
8278 || ics2->kind == ck_identity)
8279 /* At this point, ICS1 cannot be a proper subsequence of
8280 ICS2. We can get a USER_CONV when we are comparing the
8281 second standard conversion sequence of two user conversion
8282 sequences. */
8283 return false;
8285 ics2 = next_conversion (ics2);
8287 if (ics2->kind == ics1->kind
8288 && same_type_p (ics2->type, ics1->type)
8289 && same_type_p (next_conversion (ics2)->type,
8290 next_conversion (ics1)->type))
8291 return true;
8295 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
8296 be any _TYPE nodes. */
8298 bool
8299 is_properly_derived_from (tree derived, tree base)
8301 if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
8302 return false;
8304 /* We only allow proper derivation here. The DERIVED_FROM_P macro
8305 considers every class derived from itself. */
8306 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
8307 && DERIVED_FROM_P (base, derived));
8310 /* We build the ICS for an implicit object parameter as a pointer
8311 conversion sequence. However, such a sequence should be compared
8312 as if it were a reference conversion sequence. If ICS is the
8313 implicit conversion sequence for an implicit object parameter,
8314 modify it accordingly. */
8316 static void
8317 maybe_handle_implicit_object (conversion **ics)
8319 if ((*ics)->this_p)
8321 /* [over.match.funcs]
8323 For non-static member functions, the type of the
8324 implicit object parameter is "reference to cv X"
8325 where X is the class of which the function is a
8326 member and cv is the cv-qualification on the member
8327 function declaration. */
8328 conversion *t = *ics;
8329 tree reference_type;
8331 /* The `this' parameter is a pointer to a class type. Make the
8332 implicit conversion talk about a reference to that same class
8333 type. */
8334 reference_type = TREE_TYPE (t->type);
8335 reference_type = build_reference_type (reference_type);
8337 if (t->kind == ck_qual)
8338 t = next_conversion (t);
8339 if (t->kind == ck_ptr)
8340 t = next_conversion (t);
8341 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
8342 t = direct_reference_binding (reference_type, t);
8343 t->this_p = 1;
8344 t->rvaluedness_matches_p = 0;
8345 *ics = t;
8349 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
8350 and return the initial reference binding conversion. Otherwise,
8351 leave *ICS unchanged and return NULL. */
8353 static conversion *
8354 maybe_handle_ref_bind (conversion **ics)
8356 if ((*ics)->kind == ck_ref_bind)
8358 conversion *old_ics = *ics;
8359 *ics = next_conversion (old_ics);
8360 (*ics)->user_conv_p = old_ics->user_conv_p;
8361 return old_ics;
8364 return NULL;
8367 /* Compare two implicit conversion sequences according to the rules set out in
8368 [over.ics.rank]. Return values:
8370 1: ics1 is better than ics2
8371 -1: ics2 is better than ics1
8372 0: ics1 and ics2 are indistinguishable */
8374 static int
8375 compare_ics (conversion *ics1, conversion *ics2)
8377 tree from_type1;
8378 tree from_type2;
8379 tree to_type1;
8380 tree to_type2;
8381 tree deref_from_type1 = NULL_TREE;
8382 tree deref_from_type2 = NULL_TREE;
8383 tree deref_to_type1 = NULL_TREE;
8384 tree deref_to_type2 = NULL_TREE;
8385 conversion_rank rank1, rank2;
8387 /* REF_BINDING is nonzero if the result of the conversion sequence
8388 is a reference type. In that case REF_CONV is the reference
8389 binding conversion. */
8390 conversion *ref_conv1;
8391 conversion *ref_conv2;
8393 /* Compare badness before stripping the reference conversion. */
8394 if (ics1->bad_p > ics2->bad_p)
8395 return -1;
8396 else if (ics1->bad_p < ics2->bad_p)
8397 return 1;
8399 /* Handle implicit object parameters. */
8400 maybe_handle_implicit_object (&ics1);
8401 maybe_handle_implicit_object (&ics2);
8403 /* Handle reference parameters. */
8404 ref_conv1 = maybe_handle_ref_bind (&ics1);
8405 ref_conv2 = maybe_handle_ref_bind (&ics2);
8407 /* List-initialization sequence L1 is a better conversion sequence than
8408 list-initialization sequence L2 if L1 converts to
8409 std::initializer_list<X> for some X and L2 does not. */
8410 if (ics1->kind == ck_list && ics2->kind != ck_list)
8411 return 1;
8412 if (ics2->kind == ck_list && ics1->kind != ck_list)
8413 return -1;
8415 /* [over.ics.rank]
8417 When comparing the basic forms of implicit conversion sequences (as
8418 defined in _over.best.ics_)
8420 --a standard conversion sequence (_over.ics.scs_) is a better
8421 conversion sequence than a user-defined conversion sequence
8422 or an ellipsis conversion sequence, and
8424 --a user-defined conversion sequence (_over.ics.user_) is a
8425 better conversion sequence than an ellipsis conversion sequence
8426 (_over.ics.ellipsis_). */
8427 /* Use BAD_CONVERSION_RANK because we already checked for a badness
8428 mismatch. If both ICS are bad, we try to make a decision based on
8429 what would have happened if they'd been good. This is not an
8430 extension, we'll still give an error when we build up the call; this
8431 just helps us give a more helpful error message. */
8432 rank1 = BAD_CONVERSION_RANK (ics1);
8433 rank2 = BAD_CONVERSION_RANK (ics2);
8435 if (rank1 > rank2)
8436 return -1;
8437 else if (rank1 < rank2)
8438 return 1;
8440 if (ics1->ellipsis_p)
8441 /* Both conversions are ellipsis conversions. */
8442 return 0;
8444 /* User-defined conversion sequence U1 is a better conversion sequence
8445 than another user-defined conversion sequence U2 if they contain the
8446 same user-defined conversion operator or constructor and if the sec-
8447 ond standard conversion sequence of U1 is better than the second
8448 standard conversion sequence of U2. */
8450 /* Handle list-conversion with the same code even though it isn't always
8451 ranked as a user-defined conversion and it doesn't have a second
8452 standard conversion sequence; it will still have the desired effect.
8453 Specifically, we need to do the reference binding comparison at the
8454 end of this function. */
8456 if (ics1->user_conv_p || ics1->kind == ck_list || ics1->kind == ck_aggr)
8458 conversion *t1;
8459 conversion *t2;
8461 for (t1 = ics1; t1->kind != ck_user; t1 = next_conversion (t1))
8462 if (t1->kind == ck_ambig || t1->kind == ck_aggr
8463 || t1->kind == ck_list)
8464 break;
8465 for (t2 = ics2; t2->kind != ck_user; t2 = next_conversion (t2))
8466 if (t2->kind == ck_ambig || t2->kind == ck_aggr
8467 || t2->kind == ck_list)
8468 break;
8470 if (t1->kind != t2->kind)
8471 return 0;
8472 else if (t1->kind == ck_user)
8474 if (t1->cand->fn != t2->cand->fn)
8475 return 0;
8477 else
8479 /* For ambiguous or aggregate conversions, use the target type as
8480 a proxy for the conversion function. */
8481 if (!same_type_ignoring_top_level_qualifiers_p (t1->type, t2->type))
8482 return 0;
8485 /* We can just fall through here, after setting up
8486 FROM_TYPE1 and FROM_TYPE2. */
8487 from_type1 = t1->type;
8488 from_type2 = t2->type;
8490 else
8492 conversion *t1;
8493 conversion *t2;
8495 /* We're dealing with two standard conversion sequences.
8497 [over.ics.rank]
8499 Standard conversion sequence S1 is a better conversion
8500 sequence than standard conversion sequence S2 if
8502 --S1 is a proper subsequence of S2 (comparing the conversion
8503 sequences in the canonical form defined by _over.ics.scs_,
8504 excluding any Lvalue Transformation; the identity
8505 conversion sequence is considered to be a subsequence of
8506 any non-identity conversion sequence */
8508 t1 = ics1;
8509 while (t1->kind != ck_identity)
8510 t1 = next_conversion (t1);
8511 from_type1 = t1->type;
8513 t2 = ics2;
8514 while (t2->kind != ck_identity)
8515 t2 = next_conversion (t2);
8516 from_type2 = t2->type;
8519 /* One sequence can only be a subsequence of the other if they start with
8520 the same type. They can start with different types when comparing the
8521 second standard conversion sequence in two user-defined conversion
8522 sequences. */
8523 if (same_type_p (from_type1, from_type2))
8525 if (is_subseq (ics1, ics2))
8526 return 1;
8527 if (is_subseq (ics2, ics1))
8528 return -1;
8531 /* [over.ics.rank]
8533 Or, if not that,
8535 --the rank of S1 is better than the rank of S2 (by the rules
8536 defined below):
8538 Standard conversion sequences are ordered by their ranks: an Exact
8539 Match is a better conversion than a Promotion, which is a better
8540 conversion than a Conversion.
8542 Two conversion sequences with the same rank are indistinguishable
8543 unless one of the following rules applies:
8545 --A conversion that does not a convert a pointer, pointer to member,
8546 or std::nullptr_t to bool is better than one that does.
8548 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
8549 so that we do not have to check it explicitly. */
8550 if (ics1->rank < ics2->rank)
8551 return 1;
8552 else if (ics2->rank < ics1->rank)
8553 return -1;
8555 to_type1 = ics1->type;
8556 to_type2 = ics2->type;
8558 /* A conversion from scalar arithmetic type to complex is worse than a
8559 conversion between scalar arithmetic types. */
8560 if (same_type_p (from_type1, from_type2)
8561 && ARITHMETIC_TYPE_P (from_type1)
8562 && ARITHMETIC_TYPE_P (to_type1)
8563 && ARITHMETIC_TYPE_P (to_type2)
8564 && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
8565 != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
8567 if (TREE_CODE (to_type1) == COMPLEX_TYPE)
8568 return -1;
8569 else
8570 return 1;
8573 if (TYPE_PTR_P (from_type1)
8574 && TYPE_PTR_P (from_type2)
8575 && TYPE_PTR_P (to_type1)
8576 && TYPE_PTR_P (to_type2))
8578 deref_from_type1 = TREE_TYPE (from_type1);
8579 deref_from_type2 = TREE_TYPE (from_type2);
8580 deref_to_type1 = TREE_TYPE (to_type1);
8581 deref_to_type2 = TREE_TYPE (to_type2);
8583 /* The rules for pointers to members A::* are just like the rules
8584 for pointers A*, except opposite: if B is derived from A then
8585 A::* converts to B::*, not vice versa. For that reason, we
8586 switch the from_ and to_ variables here. */
8587 else if ((TYPE_PTRDATAMEM_P (from_type1) && TYPE_PTRDATAMEM_P (from_type2)
8588 && TYPE_PTRDATAMEM_P (to_type1) && TYPE_PTRDATAMEM_P (to_type2))
8589 || (TYPE_PTRMEMFUNC_P (from_type1)
8590 && TYPE_PTRMEMFUNC_P (from_type2)
8591 && TYPE_PTRMEMFUNC_P (to_type1)
8592 && TYPE_PTRMEMFUNC_P (to_type2)))
8594 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
8595 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
8596 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
8597 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
8600 if (deref_from_type1 != NULL_TREE
8601 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
8602 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
8604 /* This was one of the pointer or pointer-like conversions.
8606 [over.ics.rank]
8608 --If class B is derived directly or indirectly from class A,
8609 conversion of B* to A* is better than conversion of B* to
8610 void*, and conversion of A* to void* is better than
8611 conversion of B* to void*. */
8612 if (VOID_TYPE_P (deref_to_type1)
8613 && VOID_TYPE_P (deref_to_type2))
8615 if (is_properly_derived_from (deref_from_type1,
8616 deref_from_type2))
8617 return -1;
8618 else if (is_properly_derived_from (deref_from_type2,
8619 deref_from_type1))
8620 return 1;
8622 else if (VOID_TYPE_P (deref_to_type1)
8623 || VOID_TYPE_P (deref_to_type2))
8625 if (same_type_p (deref_from_type1, deref_from_type2))
8627 if (VOID_TYPE_P (deref_to_type2))
8629 if (is_properly_derived_from (deref_from_type1,
8630 deref_to_type1))
8631 return 1;
8633 /* We know that DEREF_TO_TYPE1 is `void' here. */
8634 else if (is_properly_derived_from (deref_from_type1,
8635 deref_to_type2))
8636 return -1;
8639 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
8640 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
8642 /* [over.ics.rank]
8644 --If class B is derived directly or indirectly from class A
8645 and class C is derived directly or indirectly from B,
8647 --conversion of C* to B* is better than conversion of C* to
8650 --conversion of B* to A* is better than conversion of C* to
8651 A* */
8652 if (same_type_p (deref_from_type1, deref_from_type2))
8654 if (is_properly_derived_from (deref_to_type1,
8655 deref_to_type2))
8656 return 1;
8657 else if (is_properly_derived_from (deref_to_type2,
8658 deref_to_type1))
8659 return -1;
8661 else if (same_type_p (deref_to_type1, deref_to_type2))
8663 if (is_properly_derived_from (deref_from_type2,
8664 deref_from_type1))
8665 return 1;
8666 else if (is_properly_derived_from (deref_from_type1,
8667 deref_from_type2))
8668 return -1;
8672 else if (CLASS_TYPE_P (non_reference (from_type1))
8673 && same_type_p (from_type1, from_type2))
8675 tree from = non_reference (from_type1);
8677 /* [over.ics.rank]
8679 --binding of an expression of type C to a reference of type
8680 B& is better than binding an expression of type C to a
8681 reference of type A&
8683 --conversion of C to B is better than conversion of C to A, */
8684 if (is_properly_derived_from (from, to_type1)
8685 && is_properly_derived_from (from, to_type2))
8687 if (is_properly_derived_from (to_type1, to_type2))
8688 return 1;
8689 else if (is_properly_derived_from (to_type2, to_type1))
8690 return -1;
8693 else if (CLASS_TYPE_P (non_reference (to_type1))
8694 && same_type_p (to_type1, to_type2))
8696 tree to = non_reference (to_type1);
8698 /* [over.ics.rank]
8700 --binding of an expression of type B to a reference of type
8701 A& is better than binding an expression of type C to a
8702 reference of type A&,
8704 --conversion of B to A is better than conversion of C to A */
8705 if (is_properly_derived_from (from_type1, to)
8706 && is_properly_derived_from (from_type2, to))
8708 if (is_properly_derived_from (from_type2, from_type1))
8709 return 1;
8710 else if (is_properly_derived_from (from_type1, from_type2))
8711 return -1;
8715 /* [over.ics.rank]
8717 --S1 and S2 differ only in their qualification conversion and yield
8718 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
8719 qualification signature of type T1 is a proper subset of the cv-
8720 qualification signature of type T2 */
8721 if (ics1->kind == ck_qual
8722 && ics2->kind == ck_qual
8723 && same_type_p (from_type1, from_type2))
8725 int result = comp_cv_qual_signature (to_type1, to_type2);
8726 if (result != 0)
8727 return result;
8730 /* [over.ics.rank]
8732 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
8733 to an implicit object parameter of a non-static member function
8734 declared without a ref-qualifier, and either S1 binds an lvalue
8735 reference to an lvalue and S2 binds an rvalue reference or S1 binds an
8736 rvalue reference to an rvalue and S2 binds an lvalue reference (C++0x
8737 draft standard, 13.3.3.2)
8739 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
8740 types to which the references refer are the same type except for
8741 top-level cv-qualifiers, and the type to which the reference
8742 initialized by S2 refers is more cv-qualified than the type to
8743 which the reference initialized by S1 refers.
8745 DR 1328 [over.match.best]: the context is an initialization by
8746 conversion function for direct reference binding (13.3.1.6) of a
8747 reference to function type, the return type of F1 is the same kind of
8748 reference (i.e. lvalue or rvalue) as the reference being initialized,
8749 and the return type of F2 is not. */
8751 if (ref_conv1 && ref_conv2)
8753 if (!ref_conv1->this_p && !ref_conv2->this_p
8754 && (ref_conv1->rvaluedness_matches_p
8755 != ref_conv2->rvaluedness_matches_p)
8756 && (same_type_p (ref_conv1->type, ref_conv2->type)
8757 || (TYPE_REF_IS_RVALUE (ref_conv1->type)
8758 != TYPE_REF_IS_RVALUE (ref_conv2->type))))
8760 if (ref_conv1->bad_p
8761 && !same_type_p (TREE_TYPE (ref_conv1->type),
8762 TREE_TYPE (ref_conv2->type)))
8763 /* Don't prefer a bad conversion that drops cv-quals to a bad
8764 conversion with the wrong rvalueness. */
8765 return 0;
8766 return (ref_conv1->rvaluedness_matches_p
8767 - ref_conv2->rvaluedness_matches_p);
8770 if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
8772 int q1 = cp_type_quals (TREE_TYPE (ref_conv1->type));
8773 int q2 = cp_type_quals (TREE_TYPE (ref_conv2->type));
8774 if (ref_conv1->bad_p)
8776 /* Prefer the one that drops fewer cv-quals. */
8777 tree ftype = next_conversion (ref_conv1)->type;
8778 int fquals = cp_type_quals (ftype);
8779 q1 ^= fquals;
8780 q2 ^= fquals;
8782 return comp_cv_qualification (q2, q1);
8786 /* Neither conversion sequence is better than the other. */
8787 return 0;
8790 /* The source type for this standard conversion sequence. */
8792 static tree
8793 source_type (conversion *t)
8795 for (;; t = next_conversion (t))
8797 if (t->kind == ck_user
8798 || t->kind == ck_ambig
8799 || t->kind == ck_identity)
8800 return t->type;
8802 gcc_unreachable ();
8805 /* Note a warning about preferring WINNER to LOSER. We do this by storing
8806 a pointer to LOSER and re-running joust to produce the warning if WINNER
8807 is actually used. */
8809 static void
8810 add_warning (struct z_candidate *winner, struct z_candidate *loser)
8812 candidate_warning *cw = (candidate_warning *)
8813 conversion_obstack_alloc (sizeof (candidate_warning));
8814 cw->loser = loser;
8815 cw->next = winner->warnings;
8816 winner->warnings = cw;
8819 /* Compare two candidates for overloading as described in
8820 [over.match.best]. Return values:
8822 1: cand1 is better than cand2
8823 -1: cand2 is better than cand1
8824 0: cand1 and cand2 are indistinguishable */
8826 static int
8827 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn,
8828 tsubst_flags_t complain)
8830 int winner = 0;
8831 int off1 = 0, off2 = 0;
8832 size_t i;
8833 size_t len;
8835 /* Candidates that involve bad conversions are always worse than those
8836 that don't. */
8837 if (cand1->viable > cand2->viable)
8838 return 1;
8839 if (cand1->viable < cand2->viable)
8840 return -1;
8842 /* If we have two pseudo-candidates for conversions to the same type,
8843 or two candidates for the same function, arbitrarily pick one. */
8844 if (cand1->fn == cand2->fn
8845 && (IS_TYPE_OR_DECL_P (cand1->fn)))
8846 return 1;
8848 /* Prefer a non-deleted function over an implicitly deleted move
8849 constructor or assignment operator. This differs slightly from the
8850 wording for issue 1402 (which says the move op is ignored by overload
8851 resolution), but this way produces better error messages. */
8852 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
8853 && TREE_CODE (cand2->fn) == FUNCTION_DECL
8854 && DECL_DELETED_FN (cand1->fn) != DECL_DELETED_FN (cand2->fn))
8856 if (DECL_DELETED_FN (cand1->fn) && DECL_DEFAULTED_FN (cand1->fn)
8857 && move_fn_p (cand1->fn))
8858 return -1;
8859 if (DECL_DELETED_FN (cand2->fn) && DECL_DEFAULTED_FN (cand2->fn)
8860 && move_fn_p (cand2->fn))
8861 return 1;
8864 /* a viable function F1
8865 is defined to be a better function than another viable function F2 if
8866 for all arguments i, ICSi(F1) is not a worse conversion sequence than
8867 ICSi(F2), and then */
8869 /* for some argument j, ICSj(F1) is a better conversion sequence than
8870 ICSj(F2) */
8872 /* For comparing static and non-static member functions, we ignore
8873 the implicit object parameter of the non-static function. The
8874 standard says to pretend that the static function has an object
8875 parm, but that won't work with operator overloading. */
8876 len = cand1->num_convs;
8877 if (len != cand2->num_convs)
8879 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
8880 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
8882 if (DECL_CONSTRUCTOR_P (cand1->fn)
8883 && is_list_ctor (cand1->fn) != is_list_ctor (cand2->fn))
8884 /* We're comparing a near-match list constructor and a near-match
8885 non-list constructor. Just treat them as unordered. */
8886 return 0;
8888 gcc_assert (static_1 != static_2);
8890 if (static_1)
8891 off2 = 1;
8892 else
8894 off1 = 1;
8895 --len;
8899 for (i = 0; i < len; ++i)
8901 conversion *t1 = cand1->convs[i + off1];
8902 conversion *t2 = cand2->convs[i + off2];
8903 int comp = compare_ics (t1, t2);
8905 if (comp != 0)
8907 if ((complain & tf_warning)
8908 && warn_sign_promo
8909 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
8910 == cr_std + cr_promotion)
8911 && t1->kind == ck_std
8912 && t2->kind == ck_std
8913 && TREE_CODE (t1->type) == INTEGER_TYPE
8914 && TREE_CODE (t2->type) == INTEGER_TYPE
8915 && (TYPE_PRECISION (t1->type)
8916 == TYPE_PRECISION (t2->type))
8917 && (TYPE_UNSIGNED (next_conversion (t1)->type)
8918 || (TREE_CODE (next_conversion (t1)->type)
8919 == ENUMERAL_TYPE)))
8921 tree type = next_conversion (t1)->type;
8922 tree type1, type2;
8923 struct z_candidate *w, *l;
8924 if (comp > 0)
8925 type1 = t1->type, type2 = t2->type,
8926 w = cand1, l = cand2;
8927 else
8928 type1 = t2->type, type2 = t1->type,
8929 w = cand2, l = cand1;
8931 if (warn)
8933 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
8934 type, type1, type2);
8935 warning (OPT_Wsign_promo, " in call to %qD", w->fn);
8937 else
8938 add_warning (w, l);
8941 if (winner && comp != winner)
8943 winner = 0;
8944 goto tweak;
8946 winner = comp;
8950 /* warn about confusing overload resolution for user-defined conversions,
8951 either between a constructor and a conversion op, or between two
8952 conversion ops. */
8953 if ((complain & tf_warning)
8954 && winner && warn_conversion && cand1->second_conv
8955 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
8956 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
8958 struct z_candidate *w, *l;
8959 bool give_warning = false;
8961 if (winner == 1)
8962 w = cand1, l = cand2;
8963 else
8964 w = cand2, l = cand1;
8966 /* We don't want to complain about `X::operator T1 ()'
8967 beating `X::operator T2 () const', when T2 is a no less
8968 cv-qualified version of T1. */
8969 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
8970 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
8972 tree t = TREE_TYPE (TREE_TYPE (l->fn));
8973 tree f = TREE_TYPE (TREE_TYPE (w->fn));
8975 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
8977 t = TREE_TYPE (t);
8978 f = TREE_TYPE (f);
8980 if (!comp_ptr_ttypes (t, f))
8981 give_warning = true;
8983 else
8984 give_warning = true;
8986 if (!give_warning)
8987 /*NOP*/;
8988 else if (warn)
8990 tree source = source_type (w->convs[0]);
8991 if (! DECL_CONSTRUCTOR_P (w->fn))
8992 source = TREE_TYPE (source);
8993 if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
8994 && warning (OPT_Wconversion, " for conversion from %qT to %qT",
8995 source, w->second_conv->type))
8997 inform (input_location, " because conversion sequence for the argument is better");
9000 else
9001 add_warning (w, l);
9004 if (winner)
9005 return winner;
9007 /* DR 495 moved this tiebreaker above the template ones. */
9008 /* or, if not that,
9009 the context is an initialization by user-defined conversion (see
9010 _dcl.init_ and _over.match.user_) and the standard conversion
9011 sequence from the return type of F1 to the destination type (i.e.,
9012 the type of the entity being initialized) is a better conversion
9013 sequence than the standard conversion sequence from the return type
9014 of F2 to the destination type. */
9016 if (cand1->second_conv)
9018 winner = compare_ics (cand1->second_conv, cand2->second_conv);
9019 if (winner)
9020 return winner;
9023 /* or, if not that,
9024 F1 is a non-template function and F2 is a template function
9025 specialization. */
9027 if (!cand1->template_decl && cand2->template_decl)
9028 return 1;
9029 else if (cand1->template_decl && !cand2->template_decl)
9030 return -1;
9032 /* or, if not that,
9033 F1 and F2 are template functions and the function template for F1 is
9034 more specialized than the template for F2 according to the partial
9035 ordering rules. */
9037 if (cand1->template_decl && cand2->template_decl)
9039 winner = more_specialized_fn
9040 (TI_TEMPLATE (cand1->template_decl),
9041 TI_TEMPLATE (cand2->template_decl),
9042 /* [temp.func.order]: The presence of unused ellipsis and default
9043 arguments has no effect on the partial ordering of function
9044 templates. add_function_candidate() will not have
9045 counted the "this" argument for constructors. */
9046 cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
9047 if (winner)
9048 return winner;
9051 /* Check whether we can discard a builtin candidate, either because we
9052 have two identical ones or matching builtin and non-builtin candidates.
9054 (Pedantically in the latter case the builtin which matched the user
9055 function should not be added to the overload set, but we spot it here.
9057 [over.match.oper]
9058 ... the builtin candidates include ...
9059 - do not have the same parameter type list as any non-template
9060 non-member candidate. */
9062 if (identifier_p (cand1->fn) || identifier_p (cand2->fn))
9064 for (i = 0; i < len; ++i)
9065 if (!same_type_p (cand1->convs[i]->type,
9066 cand2->convs[i]->type))
9067 break;
9068 if (i == cand1->num_convs)
9070 if (cand1->fn == cand2->fn)
9071 /* Two built-in candidates; arbitrarily pick one. */
9072 return 1;
9073 else if (identifier_p (cand1->fn))
9074 /* cand1 is built-in; prefer cand2. */
9075 return -1;
9076 else
9077 /* cand2 is built-in; prefer cand1. */
9078 return 1;
9082 /* For candidates of a multi-versioned function, make the version with
9083 the highest priority win. This version will be checked for dispatching
9084 first. If this version can be inlined into the caller, the front-end
9085 will simply make a direct call to this function. */
9087 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
9088 && DECL_FUNCTION_VERSIONED (cand1->fn)
9089 && TREE_CODE (cand2->fn) == FUNCTION_DECL
9090 && DECL_FUNCTION_VERSIONED (cand2->fn))
9092 tree f1 = TREE_TYPE (cand1->fn);
9093 tree f2 = TREE_TYPE (cand2->fn);
9094 tree p1 = TYPE_ARG_TYPES (f1);
9095 tree p2 = TYPE_ARG_TYPES (f2);
9097 /* Check if cand1->fn and cand2->fn are versions of the same function. It
9098 is possible that cand1->fn and cand2->fn are function versions but of
9099 different functions. Check types to see if they are versions of the same
9100 function. */
9101 if (compparms (p1, p2)
9102 && same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
9104 /* Always make the version with the higher priority, more
9105 specialized, win. */
9106 gcc_assert (targetm.compare_version_priority);
9107 if (targetm.compare_version_priority (cand1->fn, cand2->fn) >= 0)
9108 return 1;
9109 else
9110 return -1;
9114 /* If the two function declarations represent the same function (this can
9115 happen with declarations in multiple scopes and arg-dependent lookup),
9116 arbitrarily choose one. But first make sure the default args we're
9117 using match. */
9118 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
9119 && equal_functions (cand1->fn, cand2->fn))
9121 tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
9122 tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
9124 gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
9126 for (i = 0; i < len; ++i)
9128 /* Don't crash if the fn is variadic. */
9129 if (!parms1)
9130 break;
9131 parms1 = TREE_CHAIN (parms1);
9132 parms2 = TREE_CHAIN (parms2);
9135 if (off1)
9136 parms1 = TREE_CHAIN (parms1);
9137 else if (off2)
9138 parms2 = TREE_CHAIN (parms2);
9140 for (; parms1; ++i)
9142 if (!cp_tree_equal (TREE_PURPOSE (parms1),
9143 TREE_PURPOSE (parms2)))
9145 if (warn)
9147 if (complain & tf_error)
9149 if (permerror (input_location,
9150 "default argument mismatch in "
9151 "overload resolution"))
9153 inform (input_location,
9154 " candidate 1: %q+#F", cand1->fn);
9155 inform (input_location,
9156 " candidate 2: %q+#F", cand2->fn);
9159 else
9160 return 0;
9162 else
9163 add_warning (cand1, cand2);
9164 break;
9166 parms1 = TREE_CHAIN (parms1);
9167 parms2 = TREE_CHAIN (parms2);
9170 return 1;
9173 tweak:
9175 /* Extension: If the worst conversion for one candidate is worse than the
9176 worst conversion for the other, take the first. */
9177 if (!pedantic && (complain & tf_warning_or_error))
9179 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
9180 struct z_candidate *w = 0, *l = 0;
9182 for (i = 0; i < len; ++i)
9184 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
9185 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
9186 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
9187 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
9189 if (rank1 < rank2)
9190 winner = 1, w = cand1, l = cand2;
9191 if (rank1 > rank2)
9192 winner = -1, w = cand2, l = cand1;
9193 if (winner)
9195 /* Don't choose a deleted function over ambiguity. */
9196 if (DECL_P (w->fn) && DECL_DELETED_FN (w->fn))
9197 return 0;
9198 if (warn)
9200 pedwarn (input_location, 0,
9201 "ISO C++ says that these are ambiguous, even "
9202 "though the worst conversion for the first is better than "
9203 "the worst conversion for the second:");
9204 print_z_candidate (input_location, _("candidate 1:"), w);
9205 print_z_candidate (input_location, _("candidate 2:"), l);
9207 else
9208 add_warning (w, l);
9209 return winner;
9213 gcc_assert (!winner);
9214 return 0;
9217 /* Given a list of candidates for overloading, find the best one, if any.
9218 This algorithm has a worst case of O(2n) (winner is last), and a best
9219 case of O(n/2) (totally ambiguous); much better than a sorting
9220 algorithm. */
9222 static struct z_candidate *
9223 tourney (struct z_candidate *candidates, tsubst_flags_t complain)
9225 struct z_candidate *champ = candidates, *challenger;
9226 int fate;
9227 int champ_compared_to_predecessor = 0;
9229 /* Walk through the list once, comparing each current champ to the next
9230 candidate, knocking out a candidate or two with each comparison. */
9232 for (challenger = champ->next; challenger; )
9234 fate = joust (champ, challenger, 0, complain);
9235 if (fate == 1)
9236 challenger = challenger->next;
9237 else
9239 if (fate == 0)
9241 champ = challenger->next;
9242 if (champ == 0)
9243 return NULL;
9244 champ_compared_to_predecessor = 0;
9246 else
9248 champ = challenger;
9249 champ_compared_to_predecessor = 1;
9252 challenger = champ->next;
9256 /* Make sure the champ is better than all the candidates it hasn't yet
9257 been compared to. */
9259 for (challenger = candidates;
9260 challenger != champ
9261 && !(champ_compared_to_predecessor && challenger->next == champ);
9262 challenger = challenger->next)
9264 fate = joust (champ, challenger, 0, complain);
9265 if (fate != 1)
9266 return NULL;
9269 return champ;
9272 /* Returns nonzero if things of type FROM can be converted to TO. */
9274 bool
9275 can_convert (tree to, tree from, tsubst_flags_t complain)
9277 tree arg = NULL_TREE;
9278 /* implicit_conversion only considers user-defined conversions
9279 if it has an expression for the call argument list. */
9280 if (CLASS_TYPE_P (from) || CLASS_TYPE_P (to))
9281 arg = build1 (CAST_EXPR, from, NULL_TREE);
9282 return can_convert_arg (to, from, arg, LOOKUP_IMPLICIT, complain);
9285 /* Returns nonzero if things of type FROM can be converted to TO with a
9286 standard conversion. */
9288 bool
9289 can_convert_standard (tree to, tree from, tsubst_flags_t complain)
9291 return can_convert_arg (to, from, NULL_TREE, LOOKUP_IMPLICIT, complain);
9294 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
9296 bool
9297 can_convert_arg (tree to, tree from, tree arg, int flags,
9298 tsubst_flags_t complain)
9300 conversion *t;
9301 void *p;
9302 bool ok_p;
9304 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9305 p = conversion_obstack_alloc (0);
9306 /* We want to discard any access checks done for this test,
9307 as we might not be in the appropriate access context and
9308 we'll do the check again when we actually perform the
9309 conversion. */
9310 push_deferring_access_checks (dk_deferred);
9312 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
9313 flags, complain);
9314 ok_p = (t && !t->bad_p);
9316 /* Discard the access checks now. */
9317 pop_deferring_access_checks ();
9318 /* Free all the conversions we allocated. */
9319 obstack_free (&conversion_obstack, p);
9321 return ok_p;
9324 /* Like can_convert_arg, but allows dubious conversions as well. */
9326 bool
9327 can_convert_arg_bad (tree to, tree from, tree arg, int flags,
9328 tsubst_flags_t complain)
9330 conversion *t;
9331 void *p;
9333 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9334 p = conversion_obstack_alloc (0);
9335 /* Try to perform the conversion. */
9336 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
9337 flags, complain);
9338 /* Free all the conversions we allocated. */
9339 obstack_free (&conversion_obstack, p);
9341 return t != NULL;
9344 /* Convert EXPR to TYPE. Return the converted expression.
9346 Note that we allow bad conversions here because by the time we get to
9347 this point we are committed to doing the conversion. If we end up
9348 doing a bad conversion, convert_like will complain. */
9350 tree
9351 perform_implicit_conversion_flags (tree type, tree expr,
9352 tsubst_flags_t complain, int flags)
9354 conversion *conv;
9355 void *p;
9356 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
9358 if (error_operand_p (expr))
9359 return error_mark_node;
9361 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9362 p = conversion_obstack_alloc (0);
9364 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9365 /*c_cast_p=*/false,
9366 flags, complain);
9368 if (!conv)
9370 if (complain & tf_error)
9372 /* If expr has unknown type, then it is an overloaded function.
9373 Call instantiate_type to get good error messages. */
9374 if (TREE_TYPE (expr) == unknown_type_node)
9375 instantiate_type (type, expr, complain);
9376 else if (invalid_nonstatic_memfn_p (expr, complain))
9377 /* We gave an error. */;
9378 else
9379 error_at (loc, "could not convert %qE from %qT to %qT", expr,
9380 TREE_TYPE (expr), type);
9382 expr = error_mark_node;
9384 else if (processing_template_decl && conv->kind != ck_identity)
9386 /* In a template, we are only concerned about determining the
9387 type of non-dependent expressions, so we do not have to
9388 perform the actual conversion. But for initializers, we
9389 need to be able to perform it at instantiation
9390 (or instantiate_non_dependent_expr) time. */
9391 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
9392 if (!(flags & LOOKUP_ONLYCONVERTING))
9393 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
9395 else
9396 expr = convert_like (conv, expr, complain);
9398 /* Free all the conversions we allocated. */
9399 obstack_free (&conversion_obstack, p);
9401 return expr;
9404 tree
9405 perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
9407 return perform_implicit_conversion_flags (type, expr, complain,
9408 LOOKUP_IMPLICIT);
9411 /* Convert EXPR to TYPE (as a direct-initialization) if that is
9412 permitted. If the conversion is valid, the converted expression is
9413 returned. Otherwise, NULL_TREE is returned, except in the case
9414 that TYPE is a class type; in that case, an error is issued. If
9415 C_CAST_P is true, then this direct-initialization is taking
9416 place as part of a static_cast being attempted as part of a C-style
9417 cast. */
9419 tree
9420 perform_direct_initialization_if_possible (tree type,
9421 tree expr,
9422 bool c_cast_p,
9423 tsubst_flags_t complain)
9425 conversion *conv;
9426 void *p;
9428 if (type == error_mark_node || error_operand_p (expr))
9429 return error_mark_node;
9430 /* [dcl.init]
9432 If the destination type is a (possibly cv-qualified) class type:
9434 -- If the initialization is direct-initialization ...,
9435 constructors are considered. ... If no constructor applies, or
9436 the overload resolution is ambiguous, the initialization is
9437 ill-formed. */
9438 if (CLASS_TYPE_P (type))
9440 vec<tree, va_gc> *args = make_tree_vector_single (expr);
9441 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
9442 &args, type, LOOKUP_NORMAL, complain);
9443 release_tree_vector (args);
9444 return build_cplus_new (type, expr, complain);
9447 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9448 p = conversion_obstack_alloc (0);
9450 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9451 c_cast_p,
9452 LOOKUP_NORMAL, complain);
9453 if (!conv || conv->bad_p)
9454 expr = NULL_TREE;
9455 else
9456 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
9457 /*issue_conversion_warnings=*/false,
9458 c_cast_p,
9459 complain);
9461 /* Free all the conversions we allocated. */
9462 obstack_free (&conversion_obstack, p);
9464 return expr;
9467 /* When initializing a reference that lasts longer than a full-expression,
9468 this special rule applies:
9470 [class.temporary]
9472 The temporary to which the reference is bound or the temporary
9473 that is the complete object to which the reference is bound
9474 persists for the lifetime of the reference.
9476 The temporaries created during the evaluation of the expression
9477 initializing the reference, except the temporary to which the
9478 reference is bound, are destroyed at the end of the
9479 full-expression in which they are created.
9481 In that case, we store the converted expression into a new
9482 VAR_DECL in a new scope.
9484 However, we want to be careful not to create temporaries when
9485 they are not required. For example, given:
9487 struct B {};
9488 struct D : public B {};
9489 D f();
9490 const B& b = f();
9492 there is no need to copy the return value from "f"; we can just
9493 extend its lifetime. Similarly, given:
9495 struct S {};
9496 struct T { operator S(); };
9497 T t;
9498 const S& s = t;
9500 we can extend the lifetime of the return value of the conversion
9501 operator.
9503 The next several functions are involved in this lifetime extension. */
9505 /* DECL is a VAR_DECL or FIELD_DECL whose type is a REFERENCE_TYPE. The
9506 reference is being bound to a temporary. Create and return a new
9507 VAR_DECL with the indicated TYPE; this variable will store the value to
9508 which the reference is bound. */
9510 tree
9511 make_temporary_var_for_ref_to_temp (tree decl, tree type)
9513 tree var;
9515 /* Create the variable. */
9516 var = create_temporary_var (type);
9518 /* Register the variable. */
9519 if (VAR_P (decl)
9520 && (TREE_STATIC (decl) || DECL_THREAD_LOCAL_P (decl)))
9522 /* Namespace-scope or local static; give it a mangled name. */
9523 /* FIXME share comdat with decl? */
9524 tree name;
9526 TREE_STATIC (var) = TREE_STATIC (decl);
9527 set_decl_tls_model (var, DECL_TLS_MODEL (decl));
9528 name = mangle_ref_init_variable (decl);
9529 DECL_NAME (var) = name;
9530 SET_DECL_ASSEMBLER_NAME (var, name);
9531 var = pushdecl_top_level (var);
9533 else
9534 /* Create a new cleanup level if necessary. */
9535 maybe_push_cleanup_level (type);
9537 return var;
9540 /* EXPR is the initializer for a variable DECL of reference or
9541 std::initializer_list type. Create, push and return a new VAR_DECL
9542 for the initializer so that it will live as long as DECL. Any
9543 cleanup for the new variable is returned through CLEANUP, and the
9544 code to initialize the new variable is returned through INITP. */
9546 static tree
9547 set_up_extended_ref_temp (tree decl, tree expr, vec<tree, va_gc> **cleanups,
9548 tree *initp)
9550 tree init;
9551 tree type;
9552 tree var;
9554 /* Create the temporary variable. */
9555 type = TREE_TYPE (expr);
9556 var = make_temporary_var_for_ref_to_temp (decl, type);
9557 layout_decl (var, 0);
9558 /* If the rvalue is the result of a function call it will be
9559 a TARGET_EXPR. If it is some other construct (such as a
9560 member access expression where the underlying object is
9561 itself the result of a function call), turn it into a
9562 TARGET_EXPR here. It is important that EXPR be a
9563 TARGET_EXPR below since otherwise the INIT_EXPR will
9564 attempt to make a bitwise copy of EXPR to initialize
9565 VAR. */
9566 if (TREE_CODE (expr) != TARGET_EXPR)
9567 expr = get_target_expr (expr);
9569 if (TREE_CODE (decl) == FIELD_DECL
9570 && extra_warnings && !TREE_NO_WARNING (decl))
9572 warning (OPT_Wextra, "a temporary bound to %qD only persists "
9573 "until the constructor exits", decl);
9574 TREE_NO_WARNING (decl) = true;
9577 /* Recursively extend temps in this initializer. */
9578 TARGET_EXPR_INITIAL (expr)
9579 = extend_ref_init_temps (decl, TARGET_EXPR_INITIAL (expr), cleanups);
9581 /* Any reference temp has a non-trivial initializer. */
9582 DECL_NONTRIVIALLY_INITIALIZED_P (var) = true;
9584 /* If the initializer is constant, put it in DECL_INITIAL so we get
9585 static initialization and use in constant expressions. */
9586 init = maybe_constant_init (expr);
9587 if (TREE_CONSTANT (init))
9589 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
9591 /* 5.19 says that a constant expression can include an
9592 lvalue-rvalue conversion applied to "a glvalue of literal type
9593 that refers to a non-volatile temporary object initialized
9594 with a constant expression". Rather than try to communicate
9595 that this VAR_DECL is a temporary, just mark it constexpr.
9597 Currently this is only useful for initializer_list temporaries,
9598 since reference vars can't appear in constant expressions. */
9599 DECL_DECLARED_CONSTEXPR_P (var) = true;
9600 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var) = true;
9601 TREE_CONSTANT (var) = true;
9603 DECL_INITIAL (var) = init;
9604 init = NULL_TREE;
9606 else
9607 /* Create the INIT_EXPR that will initialize the temporary
9608 variable. */
9609 init = split_nonconstant_init (var, expr);
9610 if (at_function_scope_p ())
9612 add_decl_expr (var);
9614 if (TREE_STATIC (var))
9615 init = add_stmt_to_compound (init, register_dtor_fn (var));
9616 else
9618 tree cleanup = cxx_maybe_build_cleanup (var, tf_warning_or_error);
9619 if (cleanup)
9620 vec_safe_push (*cleanups, cleanup);
9623 /* We must be careful to destroy the temporary only
9624 after its initialization has taken place. If the
9625 initialization throws an exception, then the
9626 destructor should not be run. We cannot simply
9627 transform INIT into something like:
9629 (INIT, ({ CLEANUP_STMT; }))
9631 because emit_local_var always treats the
9632 initializer as a full-expression. Thus, the
9633 destructor would run too early; it would run at the
9634 end of initializing the reference variable, rather
9635 than at the end of the block enclosing the
9636 reference variable.
9638 The solution is to pass back a cleanup expression
9639 which the caller is responsible for attaching to
9640 the statement tree. */
9642 else
9644 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
9645 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
9647 if (DECL_THREAD_LOCAL_P (var))
9648 tls_aggregates = tree_cons (NULL_TREE, var,
9649 tls_aggregates);
9650 else
9651 static_aggregates = tree_cons (NULL_TREE, var,
9652 static_aggregates);
9654 else
9655 /* Check whether the dtor is callable. */
9656 cxx_maybe_build_cleanup (var, tf_warning_or_error);
9658 /* Avoid -Wunused-variable warning (c++/38958). */
9659 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
9660 && TREE_CODE (decl) == VAR_DECL)
9661 TREE_USED (decl) = DECL_READ_P (decl) = true;
9663 *initp = init;
9664 return var;
9667 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
9668 initializing a variable of that TYPE. */
9670 tree
9671 initialize_reference (tree type, tree expr,
9672 int flags, tsubst_flags_t complain)
9674 conversion *conv;
9675 void *p;
9676 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
9678 if (type == error_mark_node || error_operand_p (expr))
9679 return error_mark_node;
9681 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9682 p = conversion_obstack_alloc (0);
9684 conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
9685 flags, complain);
9686 if (!conv || conv->bad_p)
9688 if (complain & tf_error)
9690 if (conv)
9691 convert_like (conv, expr, complain);
9692 else if (!CP_TYPE_CONST_P (TREE_TYPE (type))
9693 && !TYPE_REF_IS_RVALUE (type)
9694 && !real_lvalue_p (expr))
9695 error_at (loc, "invalid initialization of non-const reference of "
9696 "type %qT from an rvalue of type %qT",
9697 type, TREE_TYPE (expr));
9698 else
9699 error_at (loc, "invalid initialization of reference of type "
9700 "%qT from expression of type %qT", type,
9701 TREE_TYPE (expr));
9703 return error_mark_node;
9706 if (conv->kind == ck_ref_bind)
9707 /* Perform the conversion. */
9708 expr = convert_like (conv, expr, complain);
9709 else if (conv->kind == ck_ambig)
9710 /* We gave an error in build_user_type_conversion_1. */
9711 expr = error_mark_node;
9712 else
9713 gcc_unreachable ();
9715 /* Free all the conversions we allocated. */
9716 obstack_free (&conversion_obstack, p);
9718 return expr;
9721 /* Subroutine of extend_ref_init_temps. Possibly extend one initializer,
9722 which is bound either to a reference or a std::initializer_list. */
9724 static tree
9725 extend_ref_init_temps_1 (tree decl, tree init, vec<tree, va_gc> **cleanups)
9727 tree sub = init;
9728 tree *p;
9729 STRIP_NOPS (sub);
9730 if (TREE_CODE (sub) == COMPOUND_EXPR)
9732 TREE_OPERAND (sub, 1)
9733 = extend_ref_init_temps_1 (decl, TREE_OPERAND (sub, 1), cleanups);
9734 return init;
9736 if (TREE_CODE (sub) != ADDR_EXPR)
9737 return init;
9738 /* Deal with binding to a subobject. */
9739 for (p = &TREE_OPERAND (sub, 0); TREE_CODE (*p) == COMPONENT_REF; )
9740 p = &TREE_OPERAND (*p, 0);
9741 if (TREE_CODE (*p) == TARGET_EXPR)
9743 tree subinit = NULL_TREE;
9744 *p = set_up_extended_ref_temp (decl, *p, cleanups, &subinit);
9745 recompute_tree_invariant_for_addr_expr (sub);
9746 if (init != sub)
9747 init = fold_convert (TREE_TYPE (init), sub);
9748 if (subinit)
9749 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), subinit, init);
9751 return init;
9754 /* INIT is part of the initializer for DECL. If there are any
9755 reference or initializer lists being initialized, extend their
9756 lifetime to match that of DECL. */
9758 tree
9759 extend_ref_init_temps (tree decl, tree init, vec<tree, va_gc> **cleanups)
9761 tree type = TREE_TYPE (init);
9762 if (processing_template_decl)
9763 return init;
9764 if (TREE_CODE (type) == REFERENCE_TYPE)
9765 init = extend_ref_init_temps_1 (decl, init, cleanups);
9766 else if (is_std_init_list (type))
9768 /* The temporary array underlying a std::initializer_list
9769 is handled like a reference temporary. */
9770 tree ctor = init;
9771 if (TREE_CODE (ctor) == TARGET_EXPR)
9772 ctor = TARGET_EXPR_INITIAL (ctor);
9773 if (TREE_CODE (ctor) == CONSTRUCTOR)
9775 tree array = CONSTRUCTOR_ELT (ctor, 0)->value;
9776 array = extend_ref_init_temps_1 (decl, array, cleanups);
9777 CONSTRUCTOR_ELT (ctor, 0)->value = array;
9780 else if (TREE_CODE (init) == CONSTRUCTOR)
9782 unsigned i;
9783 constructor_elt *p;
9784 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (init);
9785 FOR_EACH_VEC_SAFE_ELT (elts, i, p)
9786 p->value = extend_ref_init_temps (decl, p->value, cleanups);
9789 return init;
9792 /* Returns true iff an initializer for TYPE could contain temporaries that
9793 need to be extended because they are bound to references or
9794 std::initializer_list. */
9796 bool
9797 type_has_extended_temps (tree type)
9799 type = strip_array_types (type);
9800 if (TREE_CODE (type) == REFERENCE_TYPE)
9801 return true;
9802 if (CLASS_TYPE_P (type))
9804 if (is_std_init_list (type))
9805 return true;
9806 for (tree f = next_initializable_field (TYPE_FIELDS (type));
9807 f; f = next_initializable_field (DECL_CHAIN (f)))
9808 if (type_has_extended_temps (TREE_TYPE (f)))
9809 return true;
9811 return false;
9814 /* Returns true iff TYPE is some variant of std::initializer_list. */
9816 bool
9817 is_std_init_list (tree type)
9819 /* Look through typedefs. */
9820 if (!TYPE_P (type))
9821 return false;
9822 if (cxx_dialect == cxx98)
9823 return false;
9824 type = TYPE_MAIN_VARIANT (type);
9825 return (CLASS_TYPE_P (type)
9826 && CP_TYPE_CONTEXT (type) == std_node
9827 && strcmp (TYPE_NAME_STRING (type), "initializer_list") == 0);
9830 /* Returns true iff DECL is a list constructor: i.e. a constructor which
9831 will accept an argument list of a single std::initializer_list<T>. */
9833 bool
9834 is_list_ctor (tree decl)
9836 tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
9837 tree arg;
9839 if (!args || args == void_list_node)
9840 return false;
9842 arg = non_reference (TREE_VALUE (args));
9843 if (!is_std_init_list (arg))
9844 return false;
9846 args = TREE_CHAIN (args);
9848 if (args && args != void_list_node && !TREE_PURPOSE (args))
9849 /* There are more non-defaulted parms. */
9850 return false;
9852 return true;
9855 #include "gt-cp-call.h"